rebuilt with python package [release 0.8.1-2mamba;Fri Aug 09 2019]
This commit is contained in:
parent
a673bff9f9
commit
bbfb6d10df
56
zfs.spec
56
zfs.spec
@ -1,6 +1,6 @@
|
||||
Name: zfs
|
||||
Version: 0.7.13
|
||||
Release: 1mamba
|
||||
Version: 0.8.1
|
||||
Release: 2mamba
|
||||
Summary: An advanced file system and volume manager
|
||||
Group: System/Tools
|
||||
Vendor: openmamba
|
||||
@ -16,6 +16,8 @@ BuildRequires: libblkid-devel
|
||||
BuildRequires: libuuid-devel
|
||||
BuildRequires: libz-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: python36
|
||||
BuildRequires: python-cffi-py36
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
@ -39,18 +41,29 @@ Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
%description -n lib%{name}-devel
|
||||
This package contains libraries and header files for developing applications that use %{name}.
|
||||
|
||||
%package -n python-pyzfs-py36
|
||||
Group: System/Libraries
|
||||
Summary: Pythonlibraries for %{name}
|
||||
Requires: python36
|
||||
Requires: python-cffi-py36
|
||||
|
||||
%description -n python-pyzfs-py36
|
||||
This package contains the Python libraries for %{name}.
|
||||
|
||||
%debug_package
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
./autogen.sh
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
%configure \
|
||||
--disable-sysvinit \
|
||||
--with-config=user \
|
||||
--with-systemdunitdir=%{_unitdir} \
|
||||
--with-systemdpresetdir=%{_presetdir}
|
||||
--with-systemdpresetdir=%{_presetdir} \
|
||||
--with-python=3.6 \
|
||||
PYTHON=%{__python36}
|
||||
|
||||
%make
|
||||
|
||||
@ -81,9 +94,9 @@ This package contains libraries and header files for developing applications tha
|
||||
/lib/udev/vdev_id
|
||||
/lib/udev/zvol_id
|
||||
/sbin/mount.zfs
|
||||
%{_bindir}/arcstat.py
|
||||
%{_bindir}/arc_summary.py
|
||||
%{_bindir}/dbufstat.py
|
||||
%{_bindir}/arcstat
|
||||
%{_bindir}/arc_summary
|
||||
%{_bindir}/dbufstat
|
||||
%{_bindir}/raidz_test
|
||||
%{_bindir}/zgenhostid
|
||||
%dir %{_prefix}/lib/dracut/modules.d/90zfs
|
||||
@ -98,7 +111,7 @@ This package contains libraries and header files for developing applications tha
|
||||
%{_sbindir}/zfs
|
||||
%{_sbindir}/zhack
|
||||
%{_sbindir}/zinject
|
||||
%{_sbindir}/zpios
|
||||
#%{_sbindir}/zpios
|
||||
%{_sbindir}/zpool
|
||||
%{_sbindir}/zstreamdump
|
||||
%{_sbindir}/ztest
|
||||
@ -107,12 +120,8 @@ This package contains libraries and header files for developing applications tha
|
||||
%{_datadir}/initramfs-tools/scripts/zfs
|
||||
%dir %{_datadir}/zfs
|
||||
%{_datadir}/zfs/*.sh
|
||||
%dir %{_datadir}/zfs/zpios-profile
|
||||
%{_datadir}/zfs/zpios-profile/*.sh
|
||||
%dir %{_datadir}/zfs/zpios-test
|
||||
%{_datadir}/zfs/zpios-test/*.sh
|
||||
%dir %{_datadir}/zfs/zpool-config
|
||||
%{_datadir}/zfs/zpool-config/*.sh
|
||||
%{_unitdir}/zfs-import.target
|
||||
%{_prefix}/lib/systemd/system-generators/zfs-mount-generator
|
||||
%{_prefix}/lib/dracut/modules.d/02zfsexpandknowledge/module-setup.sh
|
||||
%{_datadir}/initramfs-tools/conf.d/zfs
|
||||
%{_datadir}/initramfs-tools/scripts/local-top/zfs
|
||||
@ -122,8 +131,9 @@ This package contains libraries and header files for developing applications tha
|
||||
%dir %{_datadir}/zfs
|
||||
%{_datadir}/zfs/*
|
||||
%{_mandir}/man1/zhack.1*
|
||||
%{_mandir}/man1/zpios.1*
|
||||
#%{_mandir}/man1/zpios.1*
|
||||
%{_mandir}/man1/ztest.1*
|
||||
%{_mandir}/man5/spl-module-parameters.5*
|
||||
%{_mandir}/man5/vdev_id.conf.5*
|
||||
%{_mandir}/man5/zfs-events.5.gz
|
||||
%{_mandir}/man5/zfs-module-parameters.5*
|
||||
@ -137,6 +147,8 @@ This package contains libraries and header files for developing applications tha
|
||||
%{_mandir}/man8/zinject.8*
|
||||
%{_mandir}/man8/zpool.8*
|
||||
%{_mandir}/man8/zstreamdump.8*
|
||||
%{_mandir}/man8/zfs-mount-generator.8*
|
||||
%{_mandir}/man8/zfs-program.8*
|
||||
|
||||
%files -n lib%{name}
|
||||
%defattr(-,root,root)
|
||||
@ -149,7 +161,6 @@ This package contains libraries and header files for developing applications tha
|
||||
%dir %{_libexecdir}/zfs/zed.d
|
||||
%dir %{_libexecdir}/zfs/zpool.d
|
||||
%{_libexecdir}/zfs/zpool.d/*
|
||||
/lib/systemd/system/zfs-import.target
|
||||
%{_libexecdir}/zfs/zed.d/*.sh
|
||||
%doc AUTHORS
|
||||
|
||||
@ -178,7 +189,20 @@ This package contains libraries and header files for developing applications tha
|
||||
%{_datadir}/pkgconfig/libzfs_core.pc
|
||||
#%doc README.markdown
|
||||
|
||||
%files -n python-pyzfs-py36
|
||||
%defattr(-,root,root)
|
||||
%dir %{python36_sitelib}/libzfs_core
|
||||
%{python36_sitelib}/libzfs_core/*
|
||||
%dir %{python36_sitelib}/pyzfs-*-py*.egg-info
|
||||
%{python36_sitelib}/pyzfs-*-py*.egg-info/*
|
||||
|
||||
%changelog
|
||||
* Fri Aug 09 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 0.8.1-2mamba
|
||||
- rebuilt with python package
|
||||
|
||||
* Sat Aug 03 2019 Automatic Build System <autodist@mambasoft.it> 0.8.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Mar 05 2019 Automatic Build System <autodist@mambasoft.it> 0.7.13-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user