118 lines
3.5 KiB
RPMSpec
118 lines
3.5 KiB
RPMSpec
%define subversion 0
|
|
%define majver %(echo %version | cut -d. -f1-2)
|
|
Name: ufw
|
|
Version: 0.33
|
|
Release: 3mamba
|
|
Summary: ufw is Uncomplicated Firewall a cli front end to iptables
|
|
Group: System/Libraries/Python
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
|
|
URL: https://launchpad.net/ufw
|
|
Source: http://launchpad.net/ufw/%{majver}/%{version}/+download/ufw-%{version}.tar.gz
|
|
Patch0: %{name}-0.30.1-initscript-chkconfig.patch
|
|
Patch1: %{name}-0.30.1-enabled_by_default.patch
|
|
Patch2: %{name}-0.30.1-load_netbios_ipt_module.patch
|
|
License: GPL
|
|
Requires: python >= %python_version
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: libpython-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: iptables
|
|
BuildRequires: iptables-ipv6
|
|
Requires: iptables
|
|
Requires: iptables-ipv6
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%description
|
|
Ufw stands for Uncomplicated Firewall, and is program for managing a netfilter firewall. It provides a command line interface and aims to be uncomplicated and easy to use.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
#%patch2 -p1
|
|
|
|
%build
|
|
%{__python} setup.py build
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
%{__python} setup.py install \
|
|
--root="%{buildroot}"
|
|
install -D %{buildroot}/lib/ufw/ufw-init %{buildroot}/etc/init.d/ufw-init
|
|
|
|
%post
|
|
# new install
|
|
if [ $1 -ge 1 ]; then
|
|
/sbin/chkconfig --add ufw-init
|
|
service ufw-init restart
|
|
fi
|
|
exit 0
|
|
|
|
%preun
|
|
#erase
|
|
if [ $1 -eq 0 ]; then
|
|
service ufw-init stop
|
|
/sbin/chkconfig --del ufw-init
|
|
fi
|
|
exit 0
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%config(noreplace) %{_sysconfdir}/default/ufw
|
|
%dir %{_sysconfdir}/ufw
|
|
%config(noreplace) %{_sysconfdir}/ufw/*.rules
|
|
%config(noreplace) %{_sysconfdir}/ufw/*.conf
|
|
%{_sysconfdir}/init.d/ufw-init
|
|
%dir %{_sysconfdir}/ufw/applications.d
|
|
%{_sysconfdir}/ufw/applications.d/ufw-*
|
|
%{_sbindir}/ufw
|
|
%dir /lib/ufw
|
|
/lib/ufw/ufw-init
|
|
/lib/ufw/ufw-init-functions
|
|
/lib/ufw/user.rules
|
|
/lib/ufw/user6.rules
|
|
%dir %{_datadir}/ufw
|
|
%dir %{_datadir}/ufw/iptables
|
|
%{_datadir}/ufw/iptables/*.rules
|
|
%{python_sitearch}/ufw-%{version}-py*.egg-info
|
|
%{python_sitearch}/ufw/*.py
|
|
%{python_sitearch}/ufw/*.pyc
|
|
%{_mandir}/man8/*.8.gz
|
|
%{_datadir}/ufw/messages/*.mo
|
|
|
|
%changelog
|
|
* Sat May 25 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 0.33-3mamba
|
|
- python 2.7 mass rebuild
|
|
|
|
* Wed Sep 05 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.33-2mamba
|
|
- don't replace *.rules configuration files on upgrade
|
|
|
|
* Tue Sep 04 2012 Automatic Build System <autodist@mambasoft.it> 0.33-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jul 11 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.30.1-4mamba
|
|
- load netbios ipt module by default to make samba work
|
|
|
|
* Tue Nov 01 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 0.30.1-3mamba
|
|
- added patch to enable ufw by default
|
|
|
|
* Tue Nov 01 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 0.30.1-2mamba
|
|
- initscript: add chkconfig support and enable by default
|
|
|
|
* Mon Oct 24 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 0.30.1-1mamba
|
|
- update to 0.30.1
|
|
|
|
* Fri Mar 18 2011 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 0.30.0-1mamba
|
|
- update to 0.30.3
|
|
|
|
* Wed Jul 07 2010 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 0.29.3-2mamba
|
|
- added pre and postun scripts
|
|
|
|
* Wed Jul 07 2010 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 0.29.3-1mamba
|
|
- package created by autospec
|