[arch-commits] Commit in shadowsocks/repos (5 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Sun Dec 25 17:10:39 UTC 2016


    Date: Sunday, December 25, 2016 @ 17:10:39
  Author: bpiotrowski
Revision: 202038

archrelease: copy trunk to community-staging-any

Added:
  shadowsocks/repos/community-staging-any/
  shadowsocks/repos/community-staging-any/PKGBUILD
    (from rev 202037, shadowsocks/trunk/PKGBUILD)
  shadowsocks/repos/community-staging-any/shadowsocks-server at .service
    (from rev 202037, shadowsocks/trunk/shadowsocks-server at .service)
  shadowsocks/repos/community-staging-any/shadowsocks.install
    (from rev 202037, shadowsocks/trunk/shadowsocks.install)
  shadowsocks/repos/community-staging-any/shadowsocks at .service
    (from rev 202037, shadowsocks/trunk/shadowsocks at .service)

-----------------------------+
 PKGBUILD                    |   39 +++++++++++++++++++++++++++++++++++++++
 shadowsocks-server at .service |   12 ++++++++++++
 shadowsocks.install         |    5 +++++
 shadowsocks at .service        |   12 ++++++++++++
 4 files changed, 68 insertions(+)

Copied: shadowsocks/repos/community-staging-any/PKGBUILD (from rev 202037, shadowsocks/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-25 17:10:39 UTC (rev 202038)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=shadowsocks
+pkgver=2.9.0
+pkgrel=2
+pkgdesc="A lightweight tunnel proxy"
+license=('Apache')
+url="http://pypi.python.org/pypi/shadowsocks"
+arch=('any')
+depends=('python' 'python-setuptools')
+makedepends=('git')
+optdepends=('libsodium: For salsa20 and chacha20 support')
+checkdepends=('python-coverage' 'python-pyflakes' 'libsodium' 'python-nose' 'dante' 'procps-ng' 'util-linux')
+install=${pkgname}.install
+source=("git+https://github.com/shadowsocks/shadowsocks.git#tag=$pkgver"
+        "shadowsocks at .service"
+        "shadowsocks-server at .service")
+sha512sums=('SKIP'
+            '96ecb174a476f64dec3ec086732d93a76d27e9a1cc56b1dc3fa87bf8e00d4b3c44076a01a0d525e42174cacc58fd5c16d5c8af5d4636dae13df549dec8204f7d'
+            'f2f8240c18a4483bf3e03b3a5ac8822c3deae713224f732bf28f7fddfcc5d0b02aa91652665ff93f05731e162a9407109c18f43d732a3a9b19d9eacfc806a4df')
+
+check() {
+  cd shadowsocks
+  tests/jenkins.sh || warning "Tests failed"
+}
+
+package() {
+  cd shadowsocks
+
+  python setup.py install -O1 --root="$pkgdir"
+
+  install -dm755 "$pkgdir/usr/share/man/man1"
+  install -m644 debian/{ssserver.1,sslocal.1} "$pkgdir/usr/share/man/man1"
+  install -Dm644 debian/config.json "$pkgdir/etc/shadowsocks/example.json"
+
+  install -Dm644 "$srcdir/shadowsocks at .service" "$pkgdir/usr/lib/systemd/system/shadowsocks at .service"
+  install -Dm644 "$srcdir/shadowsocks-server at .service" "$pkgdir/usr/lib/systemd/system/shadowsocks-server at .service"
+}

Copied: shadowsocks/repos/community-staging-any/shadowsocks-server at .service (from rev 202037, shadowsocks/trunk/shadowsocks-server at .service)
===================================================================
--- community-staging-any/shadowsocks-server at .service	                        (rev 0)
+++ community-staging-any/shadowsocks-server at .service	2016-12-25 17:10:39 UTC (rev 202038)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Shadowsocks Server Service
+After=network.target
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/bin/ssserver -c /etc/shadowsocks/%i.json
+
+[Install]
+WantedBy=multi-user.target
+

Copied: shadowsocks/repos/community-staging-any/shadowsocks.install (from rev 202037, shadowsocks/trunk/shadowsocks.install)
===================================================================
--- community-staging-any/shadowsocks.install	                        (rev 0)
+++ community-staging-any/shadowsocks.install	2016-12-25 17:10:39 UTC (rev 202038)
@@ -0,0 +1,5 @@
+post_install() {
+    echo "You can use profiled systemd units to start/stop shadowsocks: (Profiles are placed under /etc/shadowsocks/*.json)"
+    echo "# systemctl start/stop shadowsocks[-server]@<conf-name>"
+}
+

Copied: shadowsocks/repos/community-staging-any/shadowsocks at .service (from rev 202037, shadowsocks/trunk/shadowsocks at .service)
===================================================================
--- community-staging-any/shadowsocks at .service	                        (rev 0)
+++ community-staging-any/shadowsocks at .service	2016-12-25 17:10:39 UTC (rev 202038)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Shadowsocks Client Service
+After=network.target
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/bin/sslocal -c /etc/shadowsocks/%i.json
+
+[Install]
+WantedBy=multi-user.target
+



More information about the arch-commits mailing list