Accepting request 653134 from home:mnhauke:network
Initial package for wrapsix OBS-URL: https://build.opensuse.org/request/show/653134 OBS-URL: https://build.opensuse.org/package/show/network/wrapsix?expand=0&rev=1
This commit is contained in:
commit
391ed8236c
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
wrapsix-0.2.1.tar.bz2
Normal file
3
wrapsix-0.2.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8f2496dc68210a7f617c196b77ba6de548c5fc8bd0f90a66f6c9e0ec1451696e
|
||||
size 100408
|
24
wrapsix.changes
Normal file
24
wrapsix.changes
Normal file
@ -0,0 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 25 10:36:43 UTC 2018 - mardnh@gmx.de
|
||||
|
||||
- Update to upstream version 0.2.1
|
||||
- Specfile cleanup
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 26 19:31:27 UTC 2016 - michal.hrusecky@opensuse.org
|
||||
|
||||
- update to the latest git snaphot from 2013-07-25
|
||||
* contains runtime configuration
|
||||
* dropped wrapsix-0.2.0-runtime-configuration.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 26 19:24:18 UTC 2016 - michal.hrusecky@opensuse.org
|
||||
|
||||
- make configuration runtime
|
||||
* added wrapsix-0.2.0-runtime-configuration.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 26 19:01:01 UTC 2016 - michal.hrusecky@opensuse.org
|
||||
|
||||
- initial version 0.2.0
|
||||
|
11
wrapsix.service
Normal file
11
wrapsix.service
Normal file
@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=NAT64 implementation
|
||||
After=syslog.target
|
||||
WantedBy=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/sbin/wrapsix /etc/wrapsix.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
78
wrapsix.spec
Normal file
78
wrapsix.spec
Normal file
@ -0,0 +1,78 @@
|
||||
#
|
||||
# spec file for package wrapsix
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# 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/
|
||||
#
|
||||
|
||||
|
||||
Name: wrapsix
|
||||
Version: 0.2.1
|
||||
Release: 0
|
||||
Summary: Software implementation of NAT64
|
||||
License: GPL-3.0-only
|
||||
Group: System/Daemons
|
||||
URL: https://www.wrapsix.org/
|
||||
#Git-Clone: https://github.com/xHire/wrapsix.git
|
||||
Source: https://www.wrapsix.org/download/%{name}-%{version}.tar.bz2
|
||||
Source1: %{name}.service
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: libtool
|
||||
BuildRequires: systemd-rpm-macros
|
||||
%systemd_requires
|
||||
|
||||
%description
|
||||
WrapSix is a NAT64. It's implemented in userspace, currently only for Linux.
|
||||
There isn't any dependency on external library (currently, may change later).
|
||||
|
||||
So far it's the fastest available software implementation of NAT64 – faster
|
||||
than kernelspace Ecdysis, faster than userspace Tayga.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
autoreconf -fi
|
||||
%configure \
|
||||
--docdir="%{_docdir}/%{name}"
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install
|
||||
install -d %{buildroot}%{_unitdir}
|
||||
install -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}
|
||||
ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}
|
||||
rm -f %{buildroot}/%{_docdir}/%{name}/{COPYING,NEWS}
|
||||
|
||||
%pre
|
||||
%service_add_pre %{name}.service
|
||||
|
||||
%post
|
||||
%service_add_post %{name}.service
|
||||
|
||||
%preun
|
||||
%service_del_preun %{name}.service
|
||||
|
||||
%postun
|
||||
%service_del_postun %{name}.service
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc AUTHORS ChangeLog README
|
||||
%{_sbindir}/wrapsix
|
||||
%{_sbindir}/rcwrapsix
|
||||
%config %{_sysconfdir}/%{name}.conf
|
||||
%{_unitdir}/%{name}.service
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user