[PATCH 0/1] lib: debian support for package arch inspection
by John Eckersberg
This adds package arch inspection for deb-based systems. The patch
returns package arch as given by dpkg, which means that it returns
'amd64' instead of 'x86_64', for example. Whether or not we should
standardize this to match rpm output is up for debate. I see other
places such as guestfs_file_architecture that use the rpm-style arch.
I can understand though where a user of guestfs inspecting deb-based
hosts would rather get back the "native" strings.
Thoughts?
12 years
[PATCH v2 0/3] New inspect_list_applications2 API
by John Eckersberg
Here's the new API method and update to virt-inspector. I still need
to implement app_arch for debian and windows (if applicable), for now
they just return empty strings.
New in v2: incorporated feedback from v1, also added patch #3 which
updates the documentation where it references the deprecated API.
Take it or leave it.
12 years
[PATCH 0/2] New inspect_list_applications2 API
by John Eckersberg
Here's the new API method and update to virt-inspector. I still need
to implement app_arch for debian and windows (if applicable), for now
they just return empty strings.
12 years
[PATCH] message catalogs don't need to be executable
by Hilko Bengen
---
po/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/po/Makefile.am b/po/Makefile.am
index 141896a..f401a6f 100644
--- a/po/Makefile.am
+++ b/po/Makefile.am
@@ -97,7 +97,7 @@ install-data-hook: $(GMOFILES)
for lang in $(linguas); do \
d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
mkdir -p $$d; \
- install -m 0755 $$lang.gmo $$d/$(DOMAIN).mo; \
+ install -m 0644 $$lang.gmo $$d/$(DOMAIN).mo; \
done
.PRECIOUS: $(DOMAIN).pot $(POFILES)
--
1.7.10.4
12 years