[arch-commits] Commit in dante/repos/community-x86_64 (6 files)

Felix Yan felixonmars at archlinux.org
Wed May 26 06:00:31 UTC 2021


    Date: Wednesday, May 26, 2021 @ 06:00:31
  Author: felixonmars
Revision: 946545

archrelease: copy trunk to community-x86_64

Added:
  dante/repos/community-x86_64/PKGBUILD
    (from rev 946543, dante/trunk/PKGBUILD)
  dante/repos/community-x86_64/sockd.service
    (from rev 946543, dante/trunk/sockd.service)
  dante/repos/community-x86_64/sockd.tmpfiles.d
    (from rev 946543, dante/trunk/sockd.tmpfiles.d)
Deleted:
  dante/repos/community-x86_64/PKGBUILD
  dante/repos/community-x86_64/sockd.service
  dante/repos/community-x86_64/sockd.tmpfiles.d

------------------+
 PKGBUILD         |   70 ++++++++++++++++++++++++++---------------------------
 sockd.service    |   22 ++++++++--------
 sockd.tmpfiles.d |    2 -
 3 files changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-05-26 06:00:30 UTC (rev 946544)
+++ PKGBUILD	2021-05-26 06:00:31 UTC (rev 946545)
@@ -1,35 +0,0 @@
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Guillem Rieu <guillemr at gmx.net>
-
-pkgname=dante
-pkgver=1.4.2
-pkgrel=4
-pkgdesc="SOCKS v4 and v5 compatible proxy server and client"
-url="https://www.inet.no/dante"
-arch=(x86_64)
-license=('custom')
-depends=('krb5' 'libxcrypt' 'pam')
-backup=('etc/socks.conf'
-        'etc/sockd.conf')
-source=(ftp://ftp.inet.no/pub/socks/$pkgname-$pkgver.tar.gz
-        sockd.tmpfiles.d
-        sockd.service)
-sha256sums=('4c97cff23e5c9b00ca1ec8a95ab22972813921d7fbf60fc453e3e06382fc38a7'
-            '40d578ef1b802e3813236459b2dfb13fbec6537ae8f55c0c7cbd4401d65da878'
-            '7d5f1fddc7e81e5447db662bcc02bbe14f616b403da92e5183e82661d4bc92ae')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin --disable-libwrap
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -dm0755 "$pkgdir"/etc
-  cp example/{socks,sockd}.conf "$pkgdir"/etc
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm0644 "$srcdir"/sockd.service "$pkgdir"/usr/lib/systemd/system/sockd.service
-  install -Dm0644 "$srcdir"/sockd.tmpfiles.d "$pkgdir"/usr/lib/tmpfiles.d/sockd.conf
-}

Copied: dante/repos/community-x86_64/PKGBUILD (from rev 946543, dante/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-05-26 06:00:31 UTC (rev 946545)
@@ -0,0 +1,35 @@
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Guillem Rieu <guillemr at gmx.net>
+
+pkgname=dante
+pkgver=1.4.3
+pkgrel=1
+pkgdesc="SOCKS v4 and v5 compatible proxy server and client"
+url="https://www.inet.no/dante"
+arch=(x86_64)
+license=('custom')
+depends=('krb5' 'libxcrypt' 'pam')
+backup=('etc/socks.conf'
+        'etc/sockd.conf')
+source=(ftp://ftp.inet.no/pub/socks/$pkgname-$pkgver.tar.gz
+        sockd.tmpfiles.d
+        sockd.service)
+sha512sums=('c19675b2dee931366caf4a0dd4f44045ae731cc2f986e5d2e4bf498925c7d93a92a32088234d4a9443424f6dfb0796a1fa3fdc7c47e5aa11612c29a101f47888'
+            '6c7c3128eb1da82cdb89bc097793597f7a218ea31da5be71ef7cc1180fcac82eee43ae6fbaf9c6bc95782766974e34619a98d288f52e590c9b31503f1ace654d'
+            'e7b77bfd1eaa9be938e1989121ba59bfd28b659cfabd9f5ce382032eb86e09231abc765c4093108273439919de4782f9cb57370e571c525931d04eb449f75caa')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin --disable-libwrap
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -dm0755 "$pkgdir"/etc
+  cp example/{socks,sockd}.conf "$pkgdir"/etc
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm0644 "$srcdir"/sockd.service "$pkgdir"/usr/lib/systemd/system/sockd.service
+  install -Dm0644 "$srcdir"/sockd.tmpfiles.d "$pkgdir"/usr/lib/tmpfiles.d/sockd.conf
+}

Deleted: sockd.service
===================================================================
--- sockd.service	2021-05-26 06:00:30 UTC (rev 946544)
+++ sockd.service	2021-05-26 06:00:31 UTC (rev 946545)
@@ -1,11 +0,0 @@
-[Unit]
-Description=SOCKS v4 and v5 compatible proxy server and client
-After=network.target
-
-[Service]
-Type=forking
-PIDFile=/run/dante/sockd.pid
-ExecStart=/usr/bin/sockd -D -p/run/dante/sockd.pid
-
-[Install]
-WantedBy=multi-user.target

Copied: dante/repos/community-x86_64/sockd.service (from rev 946543, dante/trunk/sockd.service)
===================================================================
--- sockd.service	                        (rev 0)
+++ sockd.service	2021-05-26 06:00:31 UTC (rev 946545)
@@ -0,0 +1,11 @@
+[Unit]
+Description=SOCKS v4 and v5 compatible proxy server and client
+After=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dante/sockd.pid
+ExecStart=/usr/bin/sockd -D -p/run/dante/sockd.pid
+
+[Install]
+WantedBy=multi-user.target

Deleted: sockd.tmpfiles.d
===================================================================
--- sockd.tmpfiles.d	2021-05-26 06:00:30 UTC (rev 946544)
+++ sockd.tmpfiles.d	2021-05-26 06:00:31 UTC (rev 946545)
@@ -1 +0,0 @@
-d /run/dante 0755 root root -

Copied: dante/repos/community-x86_64/sockd.tmpfiles.d (from rev 946543, dante/trunk/sockd.tmpfiles.d)
===================================================================
--- sockd.tmpfiles.d	                        (rev 0)
+++ sockd.tmpfiles.d	2021-05-26 06:00:31 UTC (rev 946545)
@@ -0,0 +1 @@
+d /run/dante 0755 root root -



More information about the arch-commits mailing list