Accepting request 695362 from security:forensics
OBS-URL: https://build.opensuse.org/request/show/695362 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvhdi?expand=0&rev=7
This commit is contained in:
commit
958a6c6f1a
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5a9fedaab51a14a92320cd672a48a0fa0b014b975d5dcea5d4e944b32bf1498d
|
||||
size 1410977
|
3
libvhdi-alpha-20181227.tar.gz
Normal file
3
libvhdi-alpha-20181227.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7cb02bd44bd5f93a4f21ba393c635c864413ee5e97fd9584361737db61139ad
|
||||
size 1434823
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 17 20:30:37 UTC 2019 - Greg Freemyer <Greg.Freemyer@gmail.com>
|
||||
|
||||
- update to v0~20181227
|
||||
* Worked on mount tool
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 4 21:33:31 UTC 2017 - Greg.Freemyer@gmail.com
|
||||
|
||||
|
35
libvhdi.spec
35
libvhdi.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libvhdi
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 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
|
||||
@ -12,17 +12,17 @@
|
||||
# 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/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define lname libvhdi1
|
||||
%define timestamp 20170223
|
||||
%define timestamp 20181227
|
||||
Name: libvhdi
|
||||
Version: 0~%{timestamp}
|
||||
Release: 0
|
||||
Summary: Library and tools to access the VHD image format
|
||||
License: LGPL-3.0+ and GFDL-1.3+
|
||||
License: LGPL-3.0-or-later AND GFDL-1.3-or-later
|
||||
Group: Productivity/File utilities
|
||||
Url: https://github.com/libyal/libvhdi/wiki
|
||||
Source: https://github.com/libyal/libvhdi/releases/download/%timestamp/%{name}-alpha-%{timestamp}.tar.gz
|
||||
@ -61,7 +61,7 @@ Note that an undo disk image (.vud) is also a differential image
|
||||
|
||||
%package -n %{lname}
|
||||
Summary: Library to access the VHD image format
|
||||
License: LGPL-3.0+
|
||||
License: LGPL-3.0-or-later
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n %{lname}
|
||||
@ -79,7 +79,7 @@ Note that an undo disk image (.vud) is also a differential image
|
||||
|
||||
%package tools
|
||||
Summary: Tools to access the VHD image format
|
||||
License: LGPL-3.0+
|
||||
License: LGPL-3.0-or-later
|
||||
Group: Productivity/File utilities
|
||||
Requires: %{lname} = %{version}
|
||||
|
||||
@ -88,7 +88,7 @@ Tools to access the Virtual Hard Disk (VHD) image format. See libvhdi for addit
|
||||
|
||||
%package devel
|
||||
Summary: Development files for libvhdi, a VHD image format library
|
||||
License: LGPL-3.0+ and GFDL-1.3+
|
||||
License: LGPL-3.0-or-later AND GFDL-1.3-or-later
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{lname} = %{version}
|
||||
|
||||
@ -100,11 +100,11 @@ applications that want to make use of libvhdi.
|
||||
|
||||
%package -n python2-%{name}
|
||||
Summary: Python 2 bindings for libvhdi, a VHD image format parser
|
||||
License: LGPL-3.0+
|
||||
License: LGPL-3.0-or-later
|
||||
Group: Development/Languages/Python
|
||||
Requires: %{lname} = %{version}
|
||||
Requires: python
|
||||
Obsoletes: python-%{name}
|
||||
Obsoletes: python-%{name}
|
||||
|
||||
%description -n python2-%{name}
|
||||
libvhdi is a library to access Virtual Hard Disk (VHD) image format. See libvhdi for details.
|
||||
@ -113,7 +113,7 @@ This package contains Python 2 bindings for libvhdi.
|
||||
|
||||
%package -n python3-%{name}
|
||||
Summary: Python 3 bindings for libvhdi, a VHD image format parser
|
||||
License: LGPL-3.0+
|
||||
License: LGPL-3.0-or-later
|
||||
Group: Development/Languages/Python
|
||||
Requires: %{lname} = %{version}
|
||||
Requires: python3
|
||||
@ -142,18 +142,21 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
||||
|
||||
%files -n %{lname}
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING ChangeLog
|
||||
%doc AUTHORS ChangeLog
|
||||
%license COPYING
|
||||
%{_libdir}/libvhdi.so.*
|
||||
|
||||
%files tools
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING ChangeLog
|
||||
%doc AUTHORS ChangeLog
|
||||
%license COPYING
|
||||
%{_bindir}/vhdi*
|
||||
%{_mandir}/man1/vhdi*.1*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING README ChangeLog
|
||||
%doc AUTHORS README ChangeLog
|
||||
%license COPYING
|
||||
%doc Virtual_Hard_Disk_*
|
||||
%{_includedir}/libvhdi.h
|
||||
%{_includedir}/libvhdi/
|
||||
@ -163,12 +166,14 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
||||
|
||||
%files -n python2-%{name}
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING README ChangeLog
|
||||
%doc AUTHORS README ChangeLog
|
||||
%license COPYING
|
||||
%{python_sitearch}/pyvhdi.so
|
||||
|
||||
%files -n python3-%{name}
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING README ChangeLog
|
||||
%doc AUTHORS README ChangeLog
|
||||
%license COPYING
|
||||
%{python3_sitearch}/pyvhdi.so
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user