[arch-commits] Commit in sshuttle/repos/community-any (8 files)
Felix Yan
fyan at archlinux.org
Mon Jan 11 16:32:08 UTC 2016
Date: Monday, January 11, 2016 @ 17:32:08
Author: fyan
Revision: 156021
archrelease: copy trunk to community-any
Added:
sshuttle/repos/community-any/PKGBUILD
(from rev 156020, sshuttle/trunk/PKGBUILD)
sshuttle/repos/community-any/prefixes.conf
(from rev 156020, sshuttle/trunk/prefixes.conf)
sshuttle/repos/community-any/sshuttle.service
(from rev 156020, sshuttle/trunk/sshuttle.service)
sshuttle/repos/community-any/tunnel.conf
(from rev 156020, sshuttle/trunk/tunnel.conf)
Deleted:
sshuttle/repos/community-any/PKGBUILD
sshuttle/repos/community-any/prefixes.conf
sshuttle/repos/community-any/sshuttle.service
sshuttle/repos/community-any/tunnel.conf
------------------+
PKGBUILD | 94 ++++++++++++++++++++++++++++-------------------------
prefixes.conf | 10 ++---
sshuttle.service | 16 ++++-----
tunnel.conf | 38 ++++++++++-----------
4 files changed, 82 insertions(+), 76 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2016-01-11 16:31:38 UTC (rev 156020)
+++ PKGBUILD 2016-01-11 16:32:08 UTC (rev 156021)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: alphazo <alphazo at gmail.com>
-
-pkgname=sshuttle
-pkgver=0.74
-pkgrel=1
-pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
-arch=('any')
-url="https://github.com/sshuttle/sshuttle"
-license=('GPL2')
-depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
-makedepends=('git' 'pandoc')
-checkdepends=('python-pytest-runner' 'python-mock')
-backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
-source=("git+https://github.com/sshuttle/$pkgname.git#tag=v$pkgver"
- 'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
-md5sums=('SKIP'
- 'f2cd1660dcdb4e24b45b71e589da73f3'
- 'e780f69851445f739ea76774bb3a3b17'
- '4137f5e6d5dd92b7f7f34a1bfdbda45c')
-
-build() {
- cd $pkgname
- python setup.py build
-
- pandoc -s -r markdown -w man -o sshuttle.8 sshuttle/sshuttle.md
-}
-
-check() {
- cd $pkgname
- python setup.py ptr
-}
-
-package() {
- cd $pkgname
- python setup.py install --root="$pkgdir" -O1
-
- install -Dm644 sshuttle.8 "$pkgdir/usr/share/man/man8/sshuttle.8"
-
- install -d "$pkgdir/etc/sshuttle"
- install -m644 "$srcdir"/{tunnel.conf,prefixes.conf} "$pkgdir/etc/sshuttle"
- install -Dm644 "$srcdir/sshuttle.service" "$pkgdir/usr/lib/systemd/system/sshuttle.service"
-}
Copied: sshuttle/repos/community-any/PKGBUILD (from rev 156020, sshuttle/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2016-01-11 16:32:08 UTC (rev 156021)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: alphazo <alphazo at gmail.com>
+
+pkgname=sshuttle
+pkgver=0.74
+pkgrel=2
+pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
+arch=('any')
+url="https://github.com/sshuttle/sshuttle"
+license=('GPL2')
+depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
+makedepends=('git' 'pandoc')
+checkdepends=('python-pytest-runner' 'python-mock')
+backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
+source=("git+https://github.com/sshuttle/$pkgname.git#tag=v$pkgver"
+ 'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
+md5sums=('SKIP'
+ 'f2cd1660dcdb4e24b45b71e589da73f3'
+ 'e780f69851445f739ea76774bb3a3b17'
+ '4137f5e6d5dd92b7f7f34a1bfdbda45c')
+
+prepare() {
+ cd $pkgname
+ # FS#47708
+ git revert --no-commit b4b283b2145f937248e90032d6944178278fb1f5
+}
+
+build() {
+ cd $pkgname
+ python setup.py build
+
+ pandoc -s -r markdown -w man -o sshuttle.8 sshuttle/sshuttle.md
+}
+
+check() {
+ cd $pkgname
+ python setup.py ptr
+}
+
+package() {
+ cd $pkgname
+ python setup.py install --root="$pkgdir" -O1
+
+ install -Dm644 sshuttle.8 "$pkgdir/usr/share/man/man8/sshuttle.8"
+
+ install -d "$pkgdir/etc/sshuttle"
+ install -m644 "$srcdir"/{tunnel.conf,prefixes.conf} "$pkgdir/etc/sshuttle"
+ install -Dm644 "$srcdir/sshuttle.service" "$pkgdir/usr/lib/systemd/system/sshuttle.service"
+}
Deleted: prefixes.conf
===================================================================
--- prefixes.conf 2016-01-11 16:31:38 UTC (rev 156020)
+++ prefixes.conf 2016-01-11 16:32:08 UTC (rev 156021)
@@ -1,5 +0,0 @@
-# Output prefixes here, one per line. Prefix is in:
-# prefix/netmask format
-# Like this:
-# 192.168.0.0/16
-# 192.0.43.10/32
Copied: sshuttle/repos/community-any/prefixes.conf (from rev 156020, sshuttle/trunk/prefixes.conf)
===================================================================
--- prefixes.conf (rev 0)
+++ prefixes.conf 2016-01-11 16:32:08 UTC (rev 156021)
@@ -0,0 +1,5 @@
+# Output prefixes here, one per line. Prefix is in:
+# prefix/netmask format
+# Like this:
+# 192.168.0.0/16
+# 192.0.43.10/32
Deleted: sshuttle.service
===================================================================
--- sshuttle.service 2016-01-11 16:31:38 UTC (rev 156020)
+++ sshuttle.service 2016-01-11 16:32:08 UTC (rev 156021)
@@ -1,8 +0,0 @@
-[Unit]
-Description=Create a transparent proxy over SSH
-
-[Service]
-ExecStart=/usr/bin/sshuttle --dns --listen 0.0.0.0 --remote sshuttle_tunnel -s /etc/sshuttle/prefixes.conf -e "ssh -F /etc/sshuttle/tunnel.conf"
-
-[Install]
-WantedBy=multi-user.target
Copied: sshuttle/repos/community-any/sshuttle.service (from rev 156020, sshuttle/trunk/sshuttle.service)
===================================================================
--- sshuttle.service (rev 0)
+++ sshuttle.service 2016-01-11 16:32:08 UTC (rev 156021)
@@ -0,0 +1,8 @@
+[Unit]
+Description=Create a transparent proxy over SSH
+
+[Service]
+ExecStart=/usr/bin/sshuttle --dns --listen 0.0.0.0 --remote sshuttle_tunnel -s /etc/sshuttle/prefixes.conf -e "ssh -F /etc/sshuttle/tunnel.conf"
+
+[Install]
+WantedBy=multi-user.target
Deleted: tunnel.conf
===================================================================
--- tunnel.conf 2016-01-11 16:31:38 UTC (rev 156020)
+++ tunnel.conf 2016-01-11 16:32:08 UTC (rev 156021)
@@ -1,19 +0,0 @@
-# Here is where you can specify any SSH tunnel options See ssh_config(5) for
-# details. You need to leave the Host line intact, but everything else can
-# specify whatever you want
-Host sshuttle_tunnel
-
-# REQUIRED: Set this to be the host to which you would like to connect your
-# tunnel
-#Hostname localhost
-
-# REQUIRED: Set this to be the target SSH user on the remote system
-#User foo
-
-# ---------------------------------------------------------------------------
-# The rest are all optional; see ssh_config(5) for the full list of what can
-# be specified. Some very commonly needed ones are below.
-# ---------------------------------------------------------------------------
-
-# SSH key used for connecting
-#IdentityFile /path/to/key
Copied: sshuttle/repos/community-any/tunnel.conf (from rev 156020, sshuttle/trunk/tunnel.conf)
===================================================================
--- tunnel.conf (rev 0)
+++ tunnel.conf 2016-01-11 16:32:08 UTC (rev 156021)
@@ -0,0 +1,19 @@
+# Here is where you can specify any SSH tunnel options See ssh_config(5) for
+# details. You need to leave the Host line intact, but everything else can
+# specify whatever you want
+Host sshuttle_tunnel
+
+# REQUIRED: Set this to be the host to which you would like to connect your
+# tunnel
+#Hostname localhost
+
+# REQUIRED: Set this to be the target SSH user on the remote system
+#User foo
+
+# ---------------------------------------------------------------------------
+# The rest are all optional; see ssh_config(5) for the full list of what can
+# be specified. Some very commonly needed ones are below.
+# ---------------------------------------------------------------------------
+
+# SSH key used for connecting
+#IdentityFile /path/to/key
More information about the arch-commits
mailing list