Accepting request 113404 from home:dimstar:branches:hardware
Update to 0.1.1 OBS-URL: https://build.opensuse.org/request/show/113404 OBS-URL: https://build.opensuse.org/package/show/hardware/libosinfo?expand=0&rev=9
This commit is contained in:
parent
0e97ea7d29
commit
b50fc5894e
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:13ab1932cdeca6e4525b6a88bd35b10c9b9abe34dc47f422ea99699cf2d46b9a
|
|
||||||
size 855326
|
|
3
libosinfo-0.1.1.tar.gz
Normal file
3
libosinfo-0.1.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4d36281190c1e8694be98b305d890eb4d0518bcdf0dc51134e57a2f377e1a5ac
|
||||||
|
size 984734
|
@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 13 12:37:46 UTC 2012 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.1.1:
|
||||||
|
+ Fixes the OS media detection
|
||||||
|
+ Add support fro more OSs: NetBSD and Mandrake
|
||||||
|
+ More complete and fixed data
|
||||||
|
+ Add support for install tree metadata
|
||||||
|
+ Add support for filtering products cased on release/EOL dates.
|
||||||
|
+ Add support for product codenames.
|
||||||
|
+ Add support for 'distro'.
|
||||||
|
+ Also extract application ID from ISO9660 media.
|
||||||
|
+ Add test cases for validating ISO9660 data.
|
||||||
|
+ Disable obsolete media URLs.
|
||||||
|
+ Standardize OS family names as all lowercase.
|
||||||
|
+ Standardize format for OS id, short-id, distro, version.
|
||||||
|
+ Add RNG schema for database files.
|
||||||
|
+ Add a 'osinfo-db-validate' command for verifying database files
|
||||||
|
+ Add a 'osinfo-query' command for searching/listing information
|
||||||
|
from database.
|
||||||
|
+ Add a man page for the osinfo-detect command.
|
||||||
|
+ Add support for loading extra local database files. By default,
|
||||||
|
libosinfo will expect them to be in /etc/libosinfo/db and
|
||||||
|
$HOME/.local/config/libosinfo/db but new API is provided to
|
||||||
|
change this behavior.
|
||||||
|
+ Fix generation of docs in a VPATH builder.
|
||||||
|
+ Fix loading of vendor and product names of USB and PCI devices.
|
||||||
|
+ Remove obsolete scripts for PCI/USB id conversion.
|
||||||
|
+ Remove redundant generic linux entries from database.
|
||||||
|
+ Fixes for 'make dist'.
|
||||||
|
+ Actually handle '--enable-vala' configure option and don't
|
||||||
|
mandate vapigen if this option is not specified.
|
||||||
|
+ Add missing export of osinfo_entity_set_param.
|
||||||
|
+ Various other fixes and improvements.
|
||||||
|
- Add pkgconfig(libsoup-2.4) and pkgconfig(libsoup-gnome-2.4)
|
||||||
|
BuildRequires: new upstream dependencies.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 9 17:41:18 UTC 2012 - dimstar@opensuse.org
|
Thu Feb 9 17:41:18 UTC 2012 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
@ -17,8 +17,9 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Name: libosinfo
|
Name: libosinfo
|
||||||
Version: 0.1.0
|
Version: 0.1.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Manage information about operating systems and hypervisors
|
Summary: Manage information about operating systems and hypervisors
|
||||||
License: LGPL-2.1+ and GPL-2.0+
|
License: LGPL-2.1+ and GPL-2.0+
|
||||||
@ -31,6 +32,8 @@ BuildRequires: pkgconfig(check)
|
|||||||
BuildRequires: pkgconfig(gio-2.0)
|
BuildRequires: pkgconfig(gio-2.0)
|
||||||
BuildRequires: pkgconfig(gobject-2.0)
|
BuildRequires: pkgconfig(gobject-2.0)
|
||||||
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
||||||
|
BuildRequires: pkgconfig(libsoup-2.4)
|
||||||
|
BuildRequires: pkgconfig(libsoup-gnome-2.4)
|
||||||
BuildRequires: pkgconfig(libxml-2.0)
|
BuildRequires: pkgconfig(libxml-2.0)
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
@ -96,9 +99,12 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ChangeLog README COPYING
|
%doc ChangeLog README COPYING
|
||||||
%{_bindir}/osinfo-detect
|
%{_bindir}/osinfo-detect
|
||||||
%{_bindir}/osinfo-pciids-convert
|
%{_bindir}/osinfo-db-validate
|
||||||
%{_bindir}/osinfo-usbids-convert
|
%{_bindir}/osinfo-query
|
||||||
%{_datadir}/%{name}/
|
%{_datadir}/%{name}/
|
||||||
|
%{_mandir}/man1/osinfo-db-validate.1%{?ext_man}
|
||||||
|
%{_mandir}/man1/osinfo-detect.1%{?ext_man}
|
||||||
|
%{_mandir}/man1/osinfo-query.1%{?ext_man}
|
||||||
|
|
||||||
%files -n libosinfo-1_0-0
|
%files -n libosinfo-1_0-0
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user