Hi, On Wed, Mar 27, 2013 at 01:18:33PM +0100, Andreas Henriksson wrote: > Package: libosinfo-1.0-0 > Version: 0.2.1-1 > Severity: wishlist > Tags: patch > > Dear Maintainer, > As previously discussed I'll upload a NMU to experimental for the new version > as needed by gnome-boxes 3.8.0. > I'm opening this bug to attach the changes I've made to the packaging > (not including the import of the original upstream source).
Thanks for the NMU. libosinfo is built from git instead of tarballs so I'll add back the ./autogen.sh (just in case you'll do another NMU). Cheers, -- Guido > > -- System Information: > Debian Release: 7.0 > APT prefers unstable > APT policy: (300, 'unstable'), (100, 'experimental') > Architecture: amd64 (x86_64) > > Kernel: Linux 3.2.0-4-amd64 (SMP w/1 CPU core) > Locale: LANG=en_US.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8) > Shell: /bin/sh linked to /bin/bash > >From 5f99655f644808e32b134a85d027c47e626d7e03 Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 09:26:33 +0100 > Subject: [PATCH 1/8] Drop patch for pci/usb-ids-path and use configure > arguments instead > > --- > .../patches/0001-Don-t-fetch-pci-and-usb-ids.patch | 34 > -------------------- > debian/patches/series | 1 - > debian/rules | 2 ++ > 3 files changed, 2 insertions(+), 35 deletions(-) > delete mode 100644 debian/patches/0001-Don-t-fetch-pci-and-usb-ids.patch > delete mode 100644 debian/patches/series > > diff --git a/debian/patches/0001-Don-t-fetch-pci-and-usb-ids.patch > b/debian/patches/0001-Don-t-fetch-pci-and-usb-ids.patch > deleted file mode 100644 > index d9298d7..0000000 > --- a/debian/patches/0001-Don-t-fetch-pci-and-usb-ids.patch > +++ /dev/null > @@ -1,34 +0,0 @@ > -From: =?UTF-8?q?Guido=20G=C3=BCnther?= <[email protected]> > -Date: Wed, 11 Jan 2012 20:08:51 +0100 > -Subject: Don't fetch pci and usb ids > - > -We have these in Debian already > ---- > - data/Makefile.am | 8 +------- > - 1 file changed, 1 insertion(+), 7 deletions(-) > - > -diff --git a/data/Makefile.am b/data/Makefile.am > -index 589ce5b..98b6dcd 100644 > ---- a/data/Makefile.am > -+++ b/data/Makefile.am > -@@ -1,10 +1,9 @@ > - > - SUBDIRS = devices oses hypervisors schemas install-scripts > - > --EXTRA_DIST = usb.ids pci.ids 95-osinfo.rules.in > -+EXTRA_DIST = 95-osinfo.rules.in > - > - databasedir = $(pkgdatadir)/db/ > --database_DATA = usb.ids pci.ids > - > - if WITH_UDEV > - BUILT_SOURCES = 95-osinfo.rules > -@@ -20,8 +19,3 @@ endif > - > - CLEANFILES = usb.ids pci.ids > - > --usb.ids: > -- -wget -q -O $@ http://www.linux-usb.org/usb.ids > -- > --pci.ids: > -- -wget -q -O $@ http://pciids.sourceforge.net/v2.2/pci.ids > diff --git a/debian/patches/series b/debian/patches/series > deleted file mode 100644 > index 96e24b0..0000000 > --- a/debian/patches/series > +++ /dev/null > @@ -1 +0,0 @@ > -0001-Don-t-fetch-pci-and-usb-ids.patch > diff --git a/debian/rules b/debian/rules > index 154bcf0..c96af4d 100755 > --- a/debian/rules > +++ b/debian/rules > @@ -21,6 +21,8 @@ export DH_OPTIONS > override_dh_auto_configure: > ./autogen.sh > dh_auto_configure -- --prefix=/usr \ > + --with-usb-ids-path=/usr/share/misc/usb.ids \ > + --with-pci-ids-path=/usr/share/misc/pci.ids \ > --enable-introspection \ > --enable-vala \ > --enable-udev > -- > 1.7.10.4 > > >From ca6368aa9b72bccd06c84fea98768105585342be Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 09:35:46 +0100 > Subject: [PATCH 2/8] Don't run ./autogen.sh before configure, not shipped > anymore. > > --- > debian/rules | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/debian/rules b/debian/rules > index c96af4d..6e6cade 100755 > --- a/debian/rules > +++ b/debian/rules > @@ -19,7 +19,6 @@ export DH_OPTIONS > dh $@ > > override_dh_auto_configure: > - ./autogen.sh > dh_auto_configure -- --prefix=/usr \ > --with-usb-ids-path=/usr/share/misc/usb.ids \ > --with-pci-ids-path=/usr/share/misc/pci.ids \ > -- > 1.7.10.4 > > >From 29fddd2b94b727d6c225e19296e4db7550fd75b3 Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 10:05:39 +0100 > Subject: [PATCH 3/8] Drop creation of pci.ids and usb.ids symlinks > > --- > debian/libosinfo-1.0-0.links | 2 -- > 1 file changed, 2 deletions(-) > delete mode 100644 debian/libosinfo-1.0-0.links > > diff --git a/debian/libosinfo-1.0-0.links b/debian/libosinfo-1.0-0.links > deleted file mode 100644 > index 28d4554..0000000 > --- a/debian/libosinfo-1.0-0.links > +++ /dev/null > @@ -1,2 +0,0 @@ > -/usr/share/hwdata/usb.ids /usr/share/libosinfo/data/usb.ids > -/usr/share/hwdata/pci.ids /usr/share/libosinfo/data/pci.ids > -- > 1.7.10.4 > > >From a443917b4425658559ff5b264639906ea0f10e14 Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 10:19:06 +0100 > Subject: [PATCH 4/8] Add ln-destdir.patch to create *.ids symlinks in correct > place > > The upstream build system tries to create the symlinks directly > in the root filesystem, rather then under debian/tmp/ which the > debian package building tools uses as DESTDIR. > --- > debian/patches/ln-destdir.patch | 22 ++++++++++++++++++++++ > debian/patches/series | 1 + > 2 files changed, 23 insertions(+) > create mode 100644 debian/patches/ln-destdir.patch > create mode 100644 debian/patches/series > > diff --git a/debian/patches/ln-destdir.patch b/debian/patches/ln-destdir.patch > new file mode 100644 > index 0000000..5cdd7d9 > --- /dev/null > +++ b/debian/patches/ln-destdir.patch > @@ -0,0 +1,22 @@ > +diff --git a/data/Makefile.am b/data/Makefile.am > +index 77ad889..37d7e30 100644 > +--- a/data/Makefile.am > ++++ b/data/Makefile.am > +@@ -11,7 +11,7 @@ usb.ids: > + -wget -q -O $@ http://www.linux-usb.org/usb.ids > + else > + usb_ids_install: > +- $(LN_S) $(USB_IDS) $(pkgdatadir)/db/usb.ids > ++ $(LN_S) $(USB_IDS) $(DESTDIR)$(pkgdatadir)/db/usb.ids > + INSTALL_DATA_HOOK_DEPS += usb_ids_install > + endif > + > +@@ -22,7 +22,7 @@ pci.ids: > + -wget -q -O $@ http://pciids.sourceforge.net/v2.2/pci.ids > + else > + pci_ids_install: > +- $(LN_S) $(PCI_IDS) $(pkgdatadir)/db/pci.ids > ++ $(LN_S) $(PCI_IDS) $(DESTDIR)$(pkgdatadir)/db/pci.ids > + INSTALL_DATA_HOOK_DEPS += pci_ids_install > + endif > + > diff --git a/debian/patches/series b/debian/patches/series > new file mode 100644 > index 0000000..4f60713 > --- /dev/null > +++ b/debian/patches/series > @@ -0,0 +1 @@ > +ln-destdir.patch > -- > 1.7.10.4 > > >From fc29e2958c345421adbf4eb889f9c26901d0633b Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 10:24:21 +0100 > Subject: [PATCH 5/8] Add dh-autoreconf to rebuild Makefiles after patching > > This is needed because of the previously added ln-destdir.patch > --- > debian/control | 1 + > debian/rules | 9 ++++++++- > 2 files changed, 9 insertions(+), 1 deletion(-) > > diff --git a/debian/control b/debian/control > index 7371796..1901631 100644 > --- a/debian/control > +++ b/debian/control > @@ -7,6 +7,7 @@ Build-Depends: autoconf, > autotools-dev, > check, > debhelper (>= 8.0.0), > + dh-autoreconf, > gobject-introspection, > gnome-common, > gtk-doc-tools, > diff --git a/debian/rules b/debian/rules > index 6e6cade..87f4be4 100755 > --- a/debian/rules > +++ b/debian/rules > @@ -16,7 +16,14 @@ > export DH_OPTIONS > > %: > - dh $@ > + dh $@ --with autoreconf > + > +override_dh_autoreconf: > + dh_autoreconf debian/rules -- autoreconf > + > +autoreconf: > + autoreconf -f -i > + intltoolize -f > > override_dh_auto_configure: > dh_auto_configure -- --prefix=/usr \ > -- > 1.7.10.4 > > >From 62a616eaf3d22a47f6813ee1049670f997b1d892 Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 10:46:01 +0100 > Subject: [PATCH 6/8] Update libosinfo-1.0-0.symbols > > --- > debian/libosinfo-1.0-0.symbols | 357 > ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 357 insertions(+) > > diff --git a/debian/libosinfo-1.0-0.symbols b/debian/libosinfo-1.0-0.symbols > index 33de7de..be7078c 100644 > --- a/debian/libosinfo-1.0-0.symbols > +++ b/debian/libosinfo-1.0-0.symbols > @@ -6,3 +6,360 @@ libosinfo-1.0.so.0 libosinfo-1.0-0 #MINVER# > *@LIBOSINFO_0.1.0 0.1.1 > *@LIBOSINFO_0.2.0 0.2.1 > *@LIBOSINFO_0.2.1 0.2.1 > + *@LIBOSINFO_0.2.2 0.2.6 > + *@LIBOSINFO_0.2.3 0.2.6 > + *@LIBOSINFO_0.2.6 0.2.6 > + osinfo_avatar_format_get_alpha@LIBOSINFO_0.2.2 0.2.6 > + osinfo_avatar_format_get_height@LIBOSINFO_0.2.2 0.2.6 > + osinfo_avatar_format_get_mime_types@LIBOSINFO_0.2.2 0.2.6 > + osinfo_avatar_format_get_type@LIBOSINFO_0.2.2 0.2.6 > + osinfo_avatar_format_get_width@LIBOSINFO_0.2.2 0.2.6 > + osinfo_datamap_get_type@LIBOSINFO_0.2.3 0.2.6 > + osinfo_datamap_insert@LIBOSINFO_0.2.3 0.2.6 > + osinfo_datamap_lookup@LIBOSINFO_0.2.3 0.2.6 > + osinfo_datamap_new@LIBOSINFO_0.2.3 0.2.6 > + osinfo_datamap_reverse_lookup@LIBOSINFO_0.2.3 0.2.6 > + osinfo_datamaplist_get_type@LIBOSINFO_0.2.3 0.2.6 > + osinfo_datamaplist_new@LIBOSINFO_0.2.3 0.2.6 > + osinfo_db_add_datamap@LIBOSINFO_0.2.3 0.2.6 > + osinfo_db_add_deployment@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_add_device@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_add_install_script@LIBOSINFO_0.2.0 0.2.1 > + osinfo_db_add_os@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_add_platform@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_find_deployment@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_datamap@LIBOSINFO_0.2.3 0.2.6 > + osinfo_db_get_datamap_list@LIBOSINFO_0.2.3 0.2.6 > + osinfo_db_get_deployment@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_deployment_list@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_device@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_device_list@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_install_script@LIBOSINFO_0.2.0 0.2.1 > + osinfo_db_get_install_script_list@LIBOSINFO_0.2.0 0.2.1 > + osinfo_db_get_os@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_os_list@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_platform@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_platform_list@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_guess_os_from_media@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_guess_os_from_tree@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_identify_media@LIBOSINFO_0.2.3 0.2.6 > + osinfo_db_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_unique_values_for_os_relationship@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_unique_values_for_platform_relationship@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_unique_values_for_property_in_deployment@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_unique_values_for_property_in_device@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_unique_values_for_property_in_os@LIBOSINFO_0.0.1 0.1.0 > + osinfo_db_unique_values_for_property_in_platform@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_add_device@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_get_device_links@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_get_devices@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_get_os@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_get_platform@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_get_preferred_device@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_get_preferred_device_link@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deployment_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deploymentlist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deploymentlist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deploymentlist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deploymentlist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deploymentlist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_deploymentlist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_driver_get_architecture@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_driver_get_devices@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_driver_get_files@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_driver_get_location@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_driver_get_pre_installable@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_driver_get_signed@LIBOSINFO_0.2.6 0.2.6 > + osinfo_device_driver_get_type@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_driver_signing_req_get_type@LIBOSINFO_0.2.6 0.2.6 > + osinfo_device_driverlist_get_type@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_driverlist_new@LIBOSINFO_0.2.2 0.2.6 > + osinfo_device_get_bus_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_get_class@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_get_name@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_get_product@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_get_product_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_get_subsystem@LIBOSINFO_0.2.1 0.2.1 > + osinfo_device_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_get_vendor@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_get_vendor_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_device_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelink_get_driver@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelink_get_target@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelink_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelink_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinkfilter_get_target_filter@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinkfilter_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinkfilter_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinklist_get_devices@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinklist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinklist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinklist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinklist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinklist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelinklist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_devicelist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_add_param@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_clear_param@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_get_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_get_param_keys@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_get_param_value@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_get_param_value_boolean@LIBOSINFO_0.2.0 0.2.1 > + osinfo_entity_get_param_value_boolean_with_default@LIBOSINFO_0.2.1 0.2.1 > + osinfo_entity_get_param_value_enum@LIBOSINFO_0.2.2 0.2.6 > + osinfo_entity_get_param_value_int64@LIBOSINFO_0.2.1 0.2.1 > + osinfo_entity_get_param_value_int64_with_default@LIBOSINFO_0.2.1 0.2.1 > + osinfo_entity_get_param_value_list@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_set_param@LIBOSINFO_0.0.1 0.1.0 > + osinfo_entity_set_param_boolean@LIBOSINFO_0.2.0 0.2.1 > + osinfo_entity_set_param_enum@LIBOSINFO_0.2.2 0.2.6 > + osinfo_entity_set_param_int64@LIBOSINFO_0.2.1 0.2.1 > + osinfo_filter_add_constraint@LIBOSINFO_0.0.1 0.1.0 > + osinfo_filter_clear_constraint@LIBOSINFO_0.0.1 0.1.0 > + osinfo_filter_clear_constraints@LIBOSINFO_0.0.1 0.1.0 > + osinfo_filter_get_constraint_keys@LIBOSINFO_0.0.1 0.1.0 > + osinfo_filter_get_constraint_values@LIBOSINFO_0.0.1 0.1.0 > + osinfo_filter_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_filter_matches@LIBOSINFO_0.0.1 0.1.0 > + osinfo_filter_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_install_config_get_admin_password@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_avatar_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_get_avatar_location@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_get_driver_signing@LIBOSINFO_0.2.6 0.2.6 > + osinfo_install_config_get_l10n_keyboard@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_l10n_language@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_l10n_timezone@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_post_install_drivers_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_get_post_install_drivers_location@LIBOSINFO_0.2.2 > 0.2.6 > + osinfo_install_config_get_pre_install_drivers_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_get_pre_install_drivers_location@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_get_script_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_get_target_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_get_type@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_user_administrator@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_user_autologin@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_user_login@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_user_password@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_get_user_realname@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_new@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_param_get_name@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_param_get_policy@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_param_get_type@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_param_is_optional@LIBOSINFO_0.2.1 0.2.1 > + osinfo_install_config_param_is_required@LIBOSINFO_0.2.1 0.2.1 > + osinfo_install_config_param_new@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_param_policy_get_type@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_paramlist_get_type@LIBOSINFO_0.2.3 0.2.6 > + osinfo_install_config_paramlist_new@LIBOSINFO_0.2.3 0.2.6 > + osinfo_install_config_set_admin_password@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_avatar_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_set_avatar_location@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_set_driver_signing@LIBOSINFO_0.2.6 0.2.6 > + osinfo_install_config_set_hardware_arch@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_hostname@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_l10n_keyboard@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_l10n_language@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_l10n_timezone@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_post_install_drivers_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_set_post_install_drivers_location@LIBOSINFO_0.2.2 > 0.2.6 > + osinfo_install_config_set_pre_install_drivers_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_set_pre_install_drivers_location@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_set_reg_login@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_reg_password@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_reg_product_key@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_script_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_set_target_disk@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_config_set_user_administrator@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_user_autologin@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_user_login@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_user_password@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_config_set_user_realname@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_generate@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_generate_async@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_generate_finish@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_generate_output@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_generate_output_async@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_generate_output_finish@LIBOSINFO_0.2.3 0.2.6 > + osinfo_install_script_get_avatar_format@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_script_get_can_post_install_drivers@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_script_get_can_pre_install_drivers@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_script_get_config_param@LIBOSINFO_0.2.1 0.2.1 > + osinfo_install_script_get_config_param_list@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_get_config_params@LIBOSINFO_0.2.3 0.2.6 > + osinfo_install_script_get_expected_filename@LIBOSINFO_0.2.1 0.2.1 > + osinfo_install_script_get_output_filename@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_get_path_format@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_script_get_post_install_drivers_signing_req@LIBOSINFO_0.2.6 > 0.2.6 > + osinfo_install_script_get_pre_install_drivers_signing_req@LIBOSINFO_0.2.6 > 0.2.6 > + osinfo_install_script_get_product_key_format@LIBOSINFO_0.2.2 0.2.6 > + osinfo_install_script_get_profile@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_get_template_data@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_get_template_uri@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_get_type@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_has_config_param@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_has_config_param_name@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_new@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_new_data@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_new_uri@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_script_set_output_prefix@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_scriptlist_get_type@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_scriptlist_new@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_scriptlist_new_copy@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_scriptlist_new_filtered@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_scriptlist_new_intersection@LIBOSINFO_0.2.0 0.2.1 > + osinfo_install_scriptlist_new_union@LIBOSINFO_0.2.0 0.2.1 > + osinfo_list_add@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_add_all@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_add_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_add_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_add_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_find_by_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_get_element_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_get_elements@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_get_length@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_get_nth@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_list_new_copy@LIBOSINFO_0.2.2 0.2.6 > + osinfo_list_new_filtered@LIBOSINFO_0.2.2 0.2.6 > + osinfo_list_new_intersection@LIBOSINFO_0.2.2 0.2.6 > + osinfo_list_new_union@LIBOSINFO_0.2.2 0.2.6 > + osinfo_loader_get_db@LIBOSINFO_0.0.1 0.1.0 > + osinfo_loader_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_loader_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_loader_process_default_path@LIBOSINFO_0.0.1 0.1.0 > + osinfo_loader_process_path@LIBOSINFO_0.0.1 0.1.0 > + osinfo_loader_process_uri@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_create_from_location@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_create_from_location_async@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_create_from_location_finish@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_error_get_type@LIBOSINFO_0.2.2 0.2.6 > + osinfo_media_error_quark@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_application_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_architecture@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_initrd_path@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_installer@LIBOSINFO_0.0.3 0.1.0 > + osinfo_media_get_installer_reboots@LIBOSINFO_0.2.1 0.2.1 > + osinfo_media_get_kernel_path@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_languages@LIBOSINFO_0.2.3 0.2.6 > + osinfo_media_get_live@LIBOSINFO_0.0.3 0.1.0 > + osinfo_media_get_os@LIBOSINFO_0.2.3 0.2.6 > + osinfo_media_get_publisher_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_system_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_url@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_get_volume_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_media_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_medialist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_medialist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_medialist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_medialist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_medialist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_medialist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_add_device@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_add_device_driver@LIBOSINFO_0.2.2 0.2.6 > + osinfo_os_add_install_script@LIBOSINFO_0.2.0 0.2.1 > + osinfo_os_add_media@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_add_minimum_resources@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_add_recommended_resources@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_add_tree@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_find_install_script@LIBOSINFO_0.2.0 0.2.1 > + osinfo_os_get_all_devices@LIBOSINFO_0.0.5 0.1.0 > + osinfo_os_get_device_drivers@LIBOSINFO_0.2.2 0.2.6 > + osinfo_os_get_device_links@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_devices@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_devices_by_property@LIBOSINFO_0.0.6 0.1.0 > + osinfo_os_get_distro@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_family@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_install_script_list@LIBOSINFO_0.2.0 0.2.1 > + osinfo_os_get_media_list@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_minimum_resources@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_recommended_resources@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_tree_list@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_os_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_oslist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_oslist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_oslist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_oslist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_oslist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_oslist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_path_format_get_type@LIBOSINFO_0.2.2 0.2.6 > + osinfo_platform_add_device@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platform_get_device_links@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platform_get_devices@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platform_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platform_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platformlist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platformlist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platformlist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platformlist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platformlist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_platformlist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_add_related@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_get_logo@LIBOSINFO_0.2.0 0.2.1 > + osinfo_product_get_name@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_get_related@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_get_short_id@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_get_vendor@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_get_version@LIBOSINFO_0.0.1 0.1.0 > + osinfo_product_relationship_get_type@LIBOSINFO_0.2.2 0.2.6 > + osinfo_productfilter_add_product_constraint@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productfilter_add_support_date_constraint@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productfilter_clear_product_constraint@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productfilter_clear_product_constraints@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productfilter_get_product_constraint_values@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productfilter_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productfilter_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productlist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productlist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productlist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productlist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productlist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_productlist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_get_architecture@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_get_cpu@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_get_n_cpus@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_get_ram@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_get_storage@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_set_cpu@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_set_n_cpus@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_set_ram@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resources_set_storage@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resourceslist_get_type@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resourceslist_new@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resourceslist_new_copy@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resourceslist_new_filtered@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resourceslist_new_intersection@LIBOSINFO_0.0.1 0.1.0 > + osinfo_resourceslist_new_union@LIBOSINFO_0.0.1 0.1.0 > + osinfo_tree_create_from_location@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_create_from_location_async@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_create_from_location_finish@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_error_quark@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_architecture@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_boot_iso_path@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_initrd_path@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_kernel_path@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_treeinfo_arch@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_treeinfo_family@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_treeinfo_variant@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_treeinfo_version@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_type@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_get_url@LIBOSINFO_0.1.0 0.1.1 > + osinfo_tree_new@LIBOSINFO_0.1.0 0.1.1 > + osinfo_treelist_get_type@LIBOSINFO_0.1.0 0.1.1 > + osinfo_treelist_new@LIBOSINFO_0.1.0 0.1.1 > + osinfo_treelist_new_copy@LIBOSINFO_0.1.0 0.1.1 > + osinfo_treelist_new_filtered@LIBOSINFO_0.1.0 0.1.1 > + osinfo_treelist_new_intersection@LIBOSINFO_0.1.0 0.1.1 > + osinfo_treelist_new_union@LIBOSINFO_0.1.0 0.1.1 > -- > 1.7.10.4 > > >From 1d393b015bb3802efa60f312465e2d96069f6d1a Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 10:46:19 +0100 > Subject: [PATCH 7/8] Change valac-0.14 build-dependency to valac (Closes: > #675658) > > --- > debian/control | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/debian/control b/debian/control > index 1901631..6ae86f3 100644 > --- a/debian/control > +++ b/debian/control > @@ -18,7 +18,7 @@ Build-Depends: autoconf, > libxml2-dev, > libxml2-utils, > libxslt-dev, > - valac-0.14 > + valac > Standards-Version: 3.9.3 > Homepage: https://fedorahosted.org/libosinfo/ > Vcs-Git: git://git.debian.org/git/pkg-libvirt/libosinfo.git > -- > 1.7.10.4 > > >From 477a4cbaeb107be8a1ce4f2bd5ee84fb9d0814da Mon Sep 17 00:00:00 2001 > From: Andreas Henriksson <[email protected]> > Date: Wed, 27 Mar 2013 10:53:44 +0100 > Subject: [PATCH 8/8] Update debian/changelog > > --- > debian/changelog | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/debian/changelog b/debian/changelog > index 4381fb6..9c91256 100644 > --- a/debian/changelog > +++ b/debian/changelog > @@ -1,3 +1,17 @@ > +libosinfo (0.2.6-0.1) experimental; urgency=low > + > + * Non-maintainer upload with maintainer approval. > + * Imported Upstream version 0.2.6 > + * Drop patch for pci/usb-ids-path and use configure arguments instead > + * Don't run ./autogen.sh before configure, not shipped anymore. > + * Drop creation of pci.ids and usb.ids symlinks > + * Add ln-destdir.patch to create *.ids symlinks in correct place > + * Add dh-autoreconf to rebuild Makefiles after patching > + * Update libosinfo-1.0-0.symbols > + * Change valac-0.14 build-dependency to valac (Closes: #675658) > + > + -- Andreas Henriksson <[email protected]> Wed, 27 Mar 2013 10:49:15 +0100 > + > libosinfo (0.2.1-1) experimental; urgency=low > > * New Upstream version 0.2.1 (Closes: #691117) > -- > 1.7.10.4 > -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

