package created using the webbuild interface [release 2.30-1mamba;Fri Mar 13 2015]

This commit is contained in:
Silvan Calarco 2024-01-05 23:47:18 +01:00
parent 3e9ef78c3e
commit 9219ad843d
3 changed files with 50 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# iana-etc
The iana-etc package provides the Unix/Linux /etc/services and /etc/protocols files.

View File

@ -0,0 +1,5 @@
#
# The remaining port numbers are not allocated by IANA
#
smtps 465/tcp # Secure SMTP
swat 901/tcp # Samba web interface

43
iana-etc.spec Normal file
View File

@ -0,0 +1,43 @@
Name: iana-etc
Version: 2.30
Release: 1mamba
Summary: The iana-etc package provides the Unix/Linux /etc/services and /etc/protocols files
Group: System/Configuration
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://sethwklein.net/iana-etc.html
Source: http://sethwklein.net/iana-etc-%{version}.tar.bz2
Source1: iana-etc-additional-services
License: Public Domain
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
The iana-etc package provides the Unix/Linux /etc/services and /etc/protocols files.
%prep
%setup -q
%build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
cat %{S:1} >> %{buildroot}%{_sysconfdir}/services
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%config %{_sysconfdir}/protocols
%config %{_sysconfdir}/services
%doc COPYING CREDITS
%changelog
* Fri Mar 13 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.30-1mamba
- package created using the webbuild interface