Accepting request 898510 from home:jengelh:branches:network:utilities
- Use noun phrasing in descriptions. - Use more modern rpm macros. - Reduce sh code emissions of %service_*. OBS-URL: https://build.opensuse.org/request/show/898510 OBS-URL: https://build.opensuse.org/package/show/network:utilities/iodine?expand=0&rev=20
This commit is contained in:
parent
c3d132dcc4
commit
8c9bce2fb6
@ -3,6 +3,13 @@ Sun Jun 13 13:35:10 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
|
|||||||
|
|
||||||
- Add now working CONFIG parameter to sysusers generator
|
- Add now working CONFIG parameter to sysusers generator
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 8 15:48:30 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Use noun phrasing in descriptions.
|
||||||
|
- Use more modern rpm macros.
|
||||||
|
- Reduce sh code emissions of %service_*.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 5 12:33:09 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
|
Sat Jun 5 12:33:09 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
|
||||||
|
|
||||||
|
37
iodine.spec
37
iodine.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package iodine
|
# spec file for package iodine
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2021 SUSE LLC
|
||||||
# Copyright (c) 2012 Malcolm J Lewis <malcolmlewis@opensuse.org>
|
# Copyright (c) 2012 Malcolm J Lewis <malcolmlewis@opensuse.org>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -13,7 +13,7 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# 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/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
@ -25,10 +25,10 @@
|
|||||||
Name: iodine
|
Name: iodine
|
||||||
Version: 0.7.0
|
Version: 0.7.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tunnel IPv4 data through a DNS server
|
Summary: IPv4-through-DNS tunnel server and client
|
||||||
License: ISC
|
License: ISC
|
||||||
Group: Productivity/Networking/System
|
Group: Productivity/Networking/System
|
||||||
Url: http://code.kryo.se/iodine/
|
URL: http://code.kryo.se/iodine/
|
||||||
Source0: http://code.kryo.se/iodine/iodine-%{version}.tar.gz
|
Source0: http://code.kryo.se/iodine/iodine-%{version}.tar.gz
|
||||||
Source1: iodine.service
|
Source1: iodine.service
|
||||||
Source2: sysconfig.iodine
|
Source2: sysconfig.iodine
|
||||||
@ -38,8 +38,8 @@ Source5: system-user-iodined.conf
|
|||||||
#PATCH-FIX-OPENSUSE iodine-fix-makefile-prefix.patch malcolmlewis@opensuse.org -- Modify default install prefix.
|
#PATCH-FIX-OPENSUSE iodine-fix-makefile-prefix.patch malcolmlewis@opensuse.org -- Modify default install prefix.
|
||||||
Patch0: iodine-fix-makefile-prefix.patch
|
Patch0: iodine-fix-makefile-prefix.patch
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: pkgconfig(systemd)
|
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
|
BuildRequires: pkgconfig(systemd)
|
||||||
# iodine still uses ifconfig
|
# iodine still uses ifconfig
|
||||||
Requires: net-tools-deprecated
|
Requires: net-tools-deprecated
|
||||||
Requires(pre): %fillup_prereq
|
Requires(pre): %fillup_prereq
|
||||||
@ -54,22 +54,21 @@ Requires(pre): /usr/sbin/useradd
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Lets you tunnel IPv4 data through a DNS server. This can be usable
|
This software lets one tunnel IPv4 data through a DNS server. This
|
||||||
in different situations where internet access is firewalled, but DNS
|
can be usable in different situations where internet access is
|
||||||
queries are allowed.
|
firewalled, but DNS queries are allowed.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%autosetup -p1
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make PREFIX=%{_prefix} %{?_smp_mflags}
|
make PREFIX="%{_prefix}"
|
||||||
%if 0%{?suse_version} >= 1550
|
%if 0%{?suse_version} >= 1550
|
||||||
%sysusers_generate_pre %{SOURCE5} iodine system-user-iodined.conf
|
%sysusers_generate_pre %{SOURCE5} iodine system-user-iodined.conf
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install PREFIX=%{buildroot}%{_prefix}
|
make install PREFIX="%{buildroot}/%{_prefix}"
|
||||||
# Install client files
|
# Install client files
|
||||||
mkdir -p %{buildroot}%{_unitdir}
|
mkdir -p %{buildroot}%{_unitdir}
|
||||||
install -m 0644 %{S:1} %{buildroot}%{_unitdir}/
|
install -m 0644 %{S:1} %{buildroot}%{_unitdir}/
|
||||||
@ -95,28 +94,24 @@ install -m 0644 %{SOURCE5} %{buildroot}%{_sysusersdir}/
|
|||||||
%if 0%{?suse_version} >= 1550
|
%if 0%{?suse_version} >= 1550
|
||||||
%pre -f iodine.pre
|
%pre -f iodine.pre
|
||||||
%else
|
%else
|
||||||
|
|
||||||
%pre
|
%pre
|
||||||
/usr/sbin/useradd -r -d /var/lib/iodined -s /bin/false -c "user for iodine dns tunnel" -g nobody iodined 2> /dev/null || :
|
/usr/sbin/useradd -r -d /var/lib/iodined -s /bin/false -c "user for iodine dns tunnel" -g nobody iodined 2> /dev/null || :
|
||||||
%endif
|
%endif
|
||||||
%service_add_pre iodine.service
|
%service_add_pre iodine.service iodined.service
|
||||||
%service_add_pre iodined.service
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%service_add_post iodine.service
|
%service_add_post iodine.service iodined.service
|
||||||
%service_add_post iodined.service
|
|
||||||
%{fillup_only -n iodine}
|
%{fillup_only -n iodine}
|
||||||
%{fillup_only -n iodined}
|
%{fillup_only -n iodined}
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
%service_del_preun iodine.service
|
%service_del_preun iodine.service iodined.service
|
||||||
%service_del_preun iodined.service
|
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%service_del_postun iodine.service
|
%service_del_postun iodine.service iodined.service
|
||||||
%service_del_postun iodined.service
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc CHANGELOG README TODO
|
%doc CHANGELOG README TODO
|
||||||
%{_sbindir}/%{name}
|
%{_sbindir}/%{name}
|
||||||
%{_sbindir}/%{name}d
|
%{_sbindir}/%{name}d
|
||||||
|
Loading…
Reference in New Issue
Block a user