From e3c6334da65bf0ac56af79395d1fd1e2af371529a88fabc3e695c561a52d5d8b Mon Sep 17 00:00:00 2001 From: Charles Arnold Date: Mon, 10 Oct 2016 18:26:33 +0000 Subject: [PATCH] - 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=1 --- .gitattributes | 23 +++++++++++++ .gitignore | 1 + osinfo-db-tools-1.0.0.tar.gz | 3 ++ osinfo-db-tools.changes | 10 ++++++ osinfo-db-tools.spec | 62 ++++++++++++++++++++++++++++++++++++ 5 files changed, 99 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 osinfo-db-tools-1.0.0.tar.gz create mode 100644 osinfo-db-tools.changes create mode 100644 osinfo-db-tools.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/osinfo-db-tools-1.0.0.tar.gz b/osinfo-db-tools-1.0.0.tar.gz new file mode 100644 index 0000000..80cf153 --- /dev/null +++ b/osinfo-db-tools-1.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c0aea03617105aad0bf0460bc946c2eef082f3505af639234bbb626ba84d0a +size 492552 diff --git a/osinfo-db-tools.changes b/osinfo-db-tools.changes new file mode 100644 index 0000000..10bc3df --- /dev/null +++ b/osinfo-db-tools.changes @@ -0,0 +1,10 @@ +------------------------------------------------------------------- +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. + diff --git a/osinfo-db-tools.spec b/osinfo-db-tools.spec new file mode 100644 index 0000000..6764f8a --- /dev/null +++ b/osinfo-db-tools.spec @@ -0,0 +1,62 @@ +# +# spec file for package osinfo-db-tools +# +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: osinfo-db-tools +Version: 1.0.0 +Release: 0 +Summary: Tools for managing the osinfo database +License: LGPLv2+ +URL: http://libosinfo.org/ +Source: https://fedorahosted.org/releases/l/i/libosinfo/%{name}-%{version}.tar.gz +BuildRequires: intltool +BuildRequires: glib2-devel +BuildRequires: libxml2-devel >= 2.6.0 +BuildRequires: libxslt-devel >= 1.0.0 +BuildRequires: libarchive-devel +BuildRequires: perl +BuildRoot: %{_tmppath}/%{name}-%{version}-build + + +%description +This package provides tools for managing the osinfo database of +information about operating systems for use with virtualization + +%prep +%setup -q + +%build +%configure --prefix=/usr +%__make %{?_smp_mflags} V=1 + +%install +%__make install DESTDIR=%{buildroot} + +%find_lang %{name} + +%files -f %{name}.lang +%doc AUTHORS ChangeLog COPYING.LIB 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