- Use more appropriate RPM group
- Drop unnecessary %__ macro indirections - Update to version 1.1.0 Changes in this release include * Add –license option to osinfo-db-export * Fix license file to refer to GPL, not LGPL * Fix typos in help output * List libarchive as pre-req in README - Version 1.0.0 libosinfo is a project providing information about operating systems, hypervisors and the (virtual) hardware devices they can support. This package contains a set of tools to assist administrators and developers in managing the database. OBS-URL: https://build.opensuse.org/package/show/Virtualization/osinfo-db-tools?expand=0&rev=14
This commit is contained in:
parent
fbe942b6a1
commit
01b854fae1
@ -1,5 +1,26 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 14 16:13:46 UTC 2016 - badshah400@gmail.com
|
Fri Jan 27 13:45:33 UTC 2017 - jengelh@inai.de
|
||||||
|
|
||||||
- Initial package.
|
- Use more appropriate RPM group
|
||||||
|
- Drop unnecessary %__ macro indirections
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 1 16:21:17 MST 2016 - carnold@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.1.0
|
||||||
|
Changes in this release include
|
||||||
|
* Add –license option to osinfo-db-export
|
||||||
|
* Fix license file to refer to GPL, not LGPL
|
||||||
|
* Fix typos in help output
|
||||||
|
* List libarchive as pre-req in README
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 10 11:26:41 MDT 2016 - carnold@suse.com
|
||||||
|
|
||||||
|
- Version 1.0.0
|
||||||
|
libosinfo is a project providing information about operating systems,
|
||||||
|
hypervisors and the (virtual) hardware devices they can support.
|
||||||
|
|
||||||
|
This package contains a set of tools to assist administrators and
|
||||||
|
developers in managing the database.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package osinfo-db-tools
|
# spec file for package osinfo-db-tools
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -20,47 +20,43 @@ Name: osinfo-db-tools
|
|||||||
Version: 1.1.0
|
Version: 1.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools for managing the osinfo database
|
Summary: Tools for managing the osinfo database
|
||||||
License: GPL-2.0+
|
License: LGPL-2.1+ and GPL-2.0+
|
||||||
Group: Productivity/Databases/Tools
|
Group: System/Management
|
||||||
Url: https://libosinfo.org/
|
URL: http://libosinfo.org/
|
||||||
Source: https://fedorahosted.org/releases/l/i/libosinfo/%{name}-%{version}.tar.gz
|
Source: https://fedorahosted.org/releases/l/i/libosinfo/%{name}-%{version}.tar.gz
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: glib2-devel
|
||||||
BuildRequires: pkgconfig(glib-2.0)
|
BuildRequires: libxml2-devel >= 2.6.0
|
||||||
BuildRequires: pkgconfig(gobject-2.0)
|
BuildRequires: libxslt-devel >= 1.0.0
|
||||||
BuildRequires: pkgconfig(libarchive)
|
BuildRequires: libarchive-devel
|
||||||
BuildRequires: pkgconfig(libxml-2.0)
|
BuildRequires: perl
|
||||||
BuildRequires: pkgconfig(libxslt)
|
|
||||||
Recommends: %{name}-lang
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libosinfo is a project providing information about operating systems,
|
This package provides tools for managing the osinfo database of
|
||||||
hypervisors and the (virtual) hardware devices they can support.
|
information about operating systems for use with virtualization
|
||||||
|
|
||||||
This package contains a set of tools to assist administrators and
|
|
||||||
developers in managing the database.
|
|
||||||
|
|
||||||
%lang_package
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure --prefix=/usr
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
make install DESTDIR=%{buildroot}
|
||||||
%find_lang %{name} %{?no_lang_C}
|
|
||||||
|
|
||||||
%files
|
%find_lang %{name}
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc AUTHORS ChangeLog NEWS README COPYING
|
|
||||||
%{_bindir}/osinfo-db*
|
|
||||||
%{_mandir}/man1/osinfo-db*.1%{ext_man}
|
|
||||||
|
|
||||||
%files lang -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%doc AUTHORS ChangeLog NEWS README
|
||||||
|
%{_bindir}/osinfo-db-export
|
||||||
|
%{_bindir}/osinfo-db-import
|
||||||
|
%{_bindir}/osinfo-db-path
|
||||||
|
%{_bindir}/osinfo-db-validate
|
||||||
|
%{_mandir}/man1/osinfo-db-export.1*
|
||||||
|
%{_mandir}/man1/osinfo-db-import.1*
|
||||||
|
%{_mandir}/man1/osinfo-db-path.1*
|
||||||
|
%{_mandir}/man1/osinfo-db-validate.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user