Accepting request 694633 from home:gregfreemyer:Tools-for-forensic-boot-cd

- update to 0~20190104
        * Worked on Python bindings
        * Worked on format support
        * Fixed infinite loop in getopt fallback functions
        * Worked on mount tool

OBS-URL: https://build.opensuse.org/request/show/694633
OBS-URL: https://build.opensuse.org/package/show/security:forensics/libfvde?expand=0&rev=6
This commit is contained in:
Greg Freemyer 2019-04-17 22:47:08 +00:00 committed by Git OBS Bridge
parent 81c1b70eca
commit b3e6e3a106
4 changed files with 30 additions and 17 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6863ae991163ac068994201dc45028627a8e60076dd574b7cf594b5f330242af
size 1643264

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0101dba937827999cfe1bf7518652851b08613dd218a8d182b1636f1af2d62a8
size 1720806

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Mon Apr 15 20:32:03 UTC 2019 - Greg Freemyer <Greg.Freemyer@gmail.com>
- update to 0~20190104
* Worked on Python bindings
* Worked on format support
* Fixed infinite loop in getopt fallback functions
* Worked on mount tool
-------------------------------------------------------------------
Wed Oct 4 22:50:04 UTC 2017 - Greg.Freemyer@gmail.com

View File

@ -1,7 +1,7 @@
#
# spec file for package libfvde
#
# 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 libfvde1
%define timestamp 20160918
%define timestamp 20190104
Name: libfvde
Version: 0~%{timestamp}
Release: 0
Summary: Library to access the File Vault Drive Encryption 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/libfvde/
Source: https://github.com/libyal/libfvde/releases/download/%{timestamp}/libfvde-experimental-%{timestamp}.tar.gz
@ -58,7 +58,7 @@ libfvde is a library to access the File Vault Drive Encryption format.
%package -n %{lname}
Summary: Library to access the File Vault Drive Encryption format
License: LGPL-3.0+
License: LGPL-3.0-or-later
Group: System/Libraries
%description -n %{lname}
@ -66,7 +66,7 @@ The libfvde library is a library to access the File Vault Drive Encryption forma
%package tools
Summary: Several tools for reading the File Vault Drive Encryption format
License: LGPL-3.0+
License: LGPL-3.0-or-later
Group: Productivity/File utilities
Requires: %{lname} = %{version}
@ -77,7 +77,7 @@ See libfvde for additional details.
%package devel
Summary: Header files and libraries for developing applications for libfvde
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}
@ -91,18 +91,18 @@ applications that want to make use of libfvde.
%package -n python2-%{name}
Summary: Python 2 bindings for libfvde
License: LGPL-3.0+
License: LGPL-3.0-or-later
Group: Development/Libraries/Python
Requires: %{lname} = %{version}
BuildRequires: pkgconfig(python2)
Obsoletes: python-%{name}
Obsoletes: python-%{name}
%description -n python2-%{name}
This packinge provides Python 2 bindings for libfvde
%package -n python3-%{name}
Summary: Python 3 bindings for libfvde
License: LGPL-3.0+
License: LGPL-3.0-or-later
Group: Development/Libraries/Python
Requires: %{lname} = %{version}
Requires: python3
@ -136,13 +136,15 @@ find %{buildroot} -type f -name "*.la" -delete -print
%files tools
%defattr(-,root,root)
%doc AUTHORS COPYING
%doc AUTHORS
%license COPYING
%{_bindir}/fvde*
%{_mandir}/man1/fvde*.1*
%files devel
%defattr(-,root,root)
%doc AUTHORS COPYING
%doc AUTHORS
%license COPYING
%{_includedir}/libfvde.h
%{_includedir}/libfvde/
%{_libdir}/libfvde.so
@ -151,12 +153,14 @@ find %{buildroot} -type f -name "*.la" -delete -print
%files -n python2-%{name}
%defattr(-,root,root)
%doc AUTHORS COPYING
%doc AUTHORS
%license COPYING
%{python_sitearch}/pyfvde.so
%files -n python3-%{name}
%defattr(-,root,root)
%doc AUTHORS COPYING
%doc AUTHORS
%license COPYING
%{python3_sitearch}/pyfvde.so
%changelog