libesedb/libesedb.spec

200 lines
6.7 KiB
RPMSpec
Raw Normal View History

#
# spec file for package libesedb
#
# Copyright (c) 2020 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%bcond_without python2
%define lname libesedb1
%define timestamp 20200418
Name: libesedb
Version: 0~%{timestamp}
Release: 0
Summary: Library and tools to access the ESE Database File (EDB) format
License: LGPL-3.0-or-later AND GFDL-1.1-or-later AND GFDL-1.3-or-later
Group: Productivity/File utilities
URL: https://github.com/libyal/libesedb/wiki
Source: https://github.com/libyal/libesedb/releases/download/%timestamp/%{name}-experimental-%{timestamp}.tar.gz
Source2: Exchange.pdf
Source3: Extensible_Storage_Engine_ESE_Database_File_EDB_format.pdf
Source4: Forensic_analysis_of_the_Windows_Search_database.pdf
Source5: Windows_Search.pdf
Source6: libesedb-libfdata.pdf
BuildRequires: pkg-config
%if %{with python2}
BuildRequires: python-devel
%endif
BuildRequires: pkgconfig(libbfio) >= 20130721
BuildRequires: pkgconfig(libcdata) >= 20140105
BuildRequires: pkgconfig(libcerror) >= 20140105
BuildRequires: pkgconfig(libcerror) >= 20181117
BuildRequires: pkgconfig(libcfile) >= 20130609
BuildRequires: pkgconfig(libclocale) >= 20130609
BuildRequires: pkgconfig(libcnotify) >= 20120425
BuildRequires: pkgconfig(libcpath) >= 20130609
BuildRequires: pkgconfig(libcsplit) >= 20130609
BuildRequires: pkgconfig(libcstring) >= 20120425
BuildRequires: pkgconfig(libcstring) >= 20150101
BuildRequires: pkgconfig(libcsystem) >= 20120425
BuildRequires: pkgconfig(libcthreads) >= 20130723
BuildRequires: pkgconfig(libfcache) >= 20120405
BuildRequires: pkgconfig(libfdata) > 20150104
BuildRequires: pkgconfig(libfdatetime) >= 20140105
BuildRequires: pkgconfig(libfguid) >= 20140105
BuildRequires: pkgconfig(libfmapi)
BuildRequires: pkgconfig(libfvalue)
BuildRequires: pkgconfig(libfwnt)
BuildRequires: pkgconfig(libmapidb)
BuildRequires: pkgconfig(libuna) >= 20190102
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Library and tools to access the Extensible Storage Engine (ESE) Database File (EDB) format. ESEDB is used in may different applications like Windows Search, Windows Mail, Exchange, Active Directory, etc.
%package -n %{lname}
Summary: Library to access the EDB format
License: LGPL-3.0-or-later
Group: System/Libraries
%description -n %{lname}
Library to access the Extensible Storage Engine (ESE) Database File (EDB) format. ESEDB is used in may different applications like Windows Search, Windows Mail, Exchange, Active Directory, etc.
%package tools
Summary: Tools to access the EDB format
License: LGPL-3.0-or-later
Group: Productivity/File utilities
Requires: %{lname} = %{version}
%description tools
Tools to access the Extensible Storage Engine (ESE) Database File (EDB) format. ESEDB is used in may different applications like Windows Search, Windows Mail, Exchange, Active Directory, etc.
%package devel
Summary: Development files for libesedb, a EDB file format library
License: LGPL-3.0-or-later AND GFDL-1.1-or-later AND GFDL-1.3-or-later
Group: Development/Libraries/C and C++
Requires: %{lname} = %{version}
%description devel
libesedb is a library to access EDB files. ESEDB is used in many different
applications like Windows Search, Windows Mail, Exchange, Active Directory, etc.
This subpackage contains libraries and header files for developing
applications that want to make use of libesedb.
%package -n python2-%{name}
Summary: Python bindings for libesedb, a EDB file format parser
License: LGPL-3.0-or-later
Group: Development/Libraries/Python
Requires: %{lname} = %{version}
Requires: python
BuildRequires: pkgconfig(python2)
Obsoletes: pyesedb <= 20191220
Accepting request 792565 from home:gregfreemyer:Tools-for-forensic-boot-cd - update to v0~20191220 * code clean-up * increased format support - rename python-libesedb to python2-libesedb - add python3 binding subpackage - Use libcerror and libcstring from factory instead of internal versions - update to v0~20181229 * worked on Python 2 / 3 support * worked on Python bindings * multiple bug fixes * libfdata API change triggered changes - Use internal libcerror and libcstring to fix builds and segfault found in testing - update to v0~20151213 * worked on support for newly discovered unknown page flag * removed LIBESEDB_FLAG_READ and LIBESEDB_FLAG_WRITE * worked on Python bindings * worked on setup.py * code clean up - use libcerror, libcstring, libfdata packages from OBS again instead of internal versions - update to v0~20150409 * 2015 update * changes for handling tagged data types in version 0x620 revision 0x14 database * changes for long value look up in dirty databases * changes for long value key compare * worked on long value support * worked on long value error tolerance * worked on NULL value support (JET_coltypNil) * worked on libfdata btree refactor * worked on Python 3 support * worked on Python bindings * worked on tests * code clean up - update to v0~20141110 - remove %if opensuse logic. Not needed now libyal is in security:forensics - use libyal packages from OBS exclusively, nothing internal - update URL to the new github site - replace Source: field with fully defined URL - remove DL-URL comment - initial package in OBS (v0~20140803) OBS-URL: https://build.opensuse.org/request/show/792565 OBS-URL: https://build.opensuse.org/package/show/security:forensics/libesedb?expand=0&rev=11
2020-04-09 00:56:04 +02:00
Obsoletes: python-%{name} <= 20191220
%description -n python2-%{name}
libesedb is a library to access EDB files. ESEDB is used in many different
applications like Windows Search, Windows Mail, Exchange, Active Directory, etc.
Python2 bindings for libesedb, which can read EDB files. ESEDB is used in many
different applications like Windows Search, Windows Mail, Exchange, Active
Directory, etc.
%package -n python3-%{name}
Summary: Python bindings for libesedb, a EDB file format parser
License: LGPL-3.0-or-later
Group: Development/Libraries/Python
Requires: %{lname} = %{version}
BuildRequires: pkgconfig(python3)
%description -n python3-%{name}
libesedb is a library to access EDB files. ESEDB is used in many different
applications like Windows Search, Windows Mail, Exchange, Active Directory, etc.
Python3 bindings for libesedb, which can read EDB files. ESEDB is used in many
different applications like Windows Search, Windows Mail, Exchange, Active
Directory, etc.
%prep
%setup -n libesedb-%{timestamp}
cp "%{SOURCE2}" .
cp "%{SOURCE3}" .
cp "%{SOURCE4}" .
cp "%{SOURCE5}" .
cp "%{SOURCE6}" .
%build
%configure \
--disable-static \
--enable-wide-character-type \
%if %{with python2}
--enable-python2 \
%endif
--enable-python3
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
find %{buildroot} -type f -name "*.la" -delete -print
%post -n %{lname} -p /sbin/ldconfig
%postun -n %{lname} -p /sbin/ldconfig
%files -n %{lname}
%defattr(-,root,root)
%doc AUTHORS ChangeLog
%license COPYING*
%{_libdir}/libesedb.so.*
%files tools
%defattr(-,root,root)
%doc AUTHORS README ChangeLog
%license COPYING*
%{_bindir}/esedb*
%{_mandir}/man1/esedb*.1*
%files devel
%defattr(-,root,root)
%doc AUTHORS README ChangeLog
%license COPYING*
%doc Exchange.pdf
%doc Extensible_Storage_Engine_*
%doc Forensic_analysis_of_the_Windows_Search_database.pdf
%doc Windows_Search.pdf
%doc libesedb-libfdata.pdf
%{_includedir}/libesedb.h
%{_includedir}/libesedb/
%{_libdir}/libesedb.so
%{_libdir}/pkgconfig/libesedb.pc
%{_mandir}/man3/libesedb.3*
%if %{with python2}
%files -n python2-%{name}
%defattr(-,root,root)
%doc AUTHORS README ChangeLog
%license COPYING*
%{python2_sitearch}/pyesedb.so
%endif
%files -n python3-%{name}
%defattr(-,root,root)
%doc AUTHORS README ChangeLog
%license COPYING*
%{python3_sitearch}/pyesedb.so
%changelog