Date: Friday, January 20, 2023 @ 23:44:54
Author: blakkheim
Revision: 1387191
archrelease: copy trunk to community-x86_64
Added:
torsocks/repos/community-x86_64/PKGBUILD
(from rev 1387189, torsocks/trunk/PKGBUILD)
torsocks/repos/community-x86_64/keys/
Deleted:
torsocks/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 67 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 34 insertions(+), 33 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-01-20 23:44:49 UTC (rev 1387190)
+++ PKGBUILD 2023-01-20 23:44:54 UTC (rev 1387191)
@@ -1,33 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Daniel Micay <[email protected]>
-# Contributor: Nicolas Pouillard <[email protected]>
-# Contributor: Rorschach <[email protected]>
-
-pkgname=torsocks
-pkgver=2.3.0
-pkgrel=2
-pkgdesc='Wrapper to safely torify applications'
-url='https://gitweb.torproject.org/torsocks.git/'
-arch=('x86_64')
-license=('GPL2')
-depends=('tor')
-backup=("etc/tor/${pkgname}.conf")
-source=(https://people.torproject.org/~dgoulet/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha512sums=('4888caaffdcfebf3673e14f3491eae6aa84ca0a4a2a812ba7bdac2abb471307e89a3c5cffe7691fb6f190c7bd9ea455ee9a223d909a39152be8524f590be2031'
- 'SKIP')
-validpgpkeys=('B74417EDDF22AC9F9E90F49142E86A2A11F48D36')
-
-build() {
- cd ${pkgname}-${pkgver}
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc
- make
-}
-
-package() {
- cd ${pkgname}-${pkgver}
- make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:
Copied: torsocks/repos/community-x86_64/PKGBUILD (from rev 1387189,
torsocks/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-01-20 23:44:54 UTC (rev 1387191)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Daniel Micay <[email protected]>
+# Contributor: Nicolas Pouillard <[email protected]>
+# Contributor: Rorschach <[email protected]>
+
+pkgname=torsocks
+pkgver=2.4.0
+pkgrel=1
+pkgdesc='Wrapper to safely torify applications'
+url='https://gitlab.torproject.org/tpo/core/torsocks'
+arch=('x86_64')
+license=('GPL2')
+depends=('tor')
+backup=("etc/tor/${pkgname}.conf")
+#source=(https://people.torproject.org/~dgoulet/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.asc})
+source=("${url}/-/archive/v${pkgver}/torsocks-v${pkgver}.tar.gz")
+sha512sums=('7d625ce3a4600f87b86ae9ac79dfd206e7709cb0bafe0b7afcf33a6f1825f968cc63ad3e23c584582b244647bdeafbfdbfc54f7c81e521b0a3d278a1483ce86e')
+validpgpkeys=('B74417EDDF22AC9F9E90F49142E86A2A11F48D36')
+
+build() {
+ cd ${pkgname}-v${pkgver}
+ autoreconf -vfi
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd ${pkgname}-v${pkgver}
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et: