Date: Saturday, June 30, 2018 @ 17:53:53
  Author: felixonmars
Revision: 348743

archrelease: copy trunk to community-staging-any

Added:
  shadowsocks/repos/community-staging-any/
  shadowsocks/repos/community-staging-any/PKGBUILD
    (from rev 348740, shadowsocks/trunk/PKGBUILD)
  shadowsocks/repos/community-staging-any/[email protected]
    (from rev 348740, shadowsocks/trunk/[email protected])
  shadowsocks/repos/community-staging-any/shadowsocks.install
    (from rev 348741, shadowsocks/trunk/shadowsocks.install)
  shadowsocks/repos/community-staging-any/[email protected]
    (from rev 348741, shadowsocks/trunk/[email protected])

-----------------------------+
 PKGBUILD                    |   39 +++++++++++++++++++++++++++++++++++++++
 [email protected] |   12 ++++++++++++
 shadowsocks.install         |    5 +++++
 [email protected]        |   12 ++++++++++++
 4 files changed, 68 insertions(+)

Copied: shadowsocks/repos/community-staging-any/PKGBUILD (from rev 348740, 
shadowsocks/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2018-06-30 17:53:53 UTC (rev 348743)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=shadowsocks
+pkgver=2.9.1
+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";
+        "[email protected]"
+        "[email protected]")
+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/[email protected]" 
"$pkgdir/usr/lib/systemd/system/[email protected]"
+  install -Dm644 "$srcdir/[email protected]" 
"$pkgdir/usr/lib/systemd/system/[email protected]"
+}

Copied: shadowsocks/repos/community-staging-any/[email protected] 
(from rev 348740, shadowsocks/trunk/[email protected])
===================================================================
--- community-staging-any/[email protected]                           
(rev 0)
+++ community-staging-any/[email protected]   2018-06-30 17:53:53 UTC 
(rev 348743)
@@ -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 
348741, shadowsocks/trunk/shadowsocks.install)
===================================================================
--- community-staging-any/shadowsocks.install                           (rev 0)
+++ community-staging-any/shadowsocks.install   2018-06-30 17:53:53 UTC (rev 
348743)
@@ -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/[email protected] (from rev 
348741, shadowsocks/trunk/[email protected])
===================================================================
--- community-staging-any/[email protected]                          (rev 0)
+++ community-staging-any/[email protected]  2018-06-30 17:53:53 UTC (rev 
348743)
@@ -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
+

Reply via email to