[arch-commits] Commit in tinyproxy/repos/community-x86_64 (10 files)

George Rawlinson grawlinson at gemini.archlinux.org
Mon May 30 02:19:50 UTC 2022


    Date: Monday, May 30, 2022 @ 02:19:49
  Author: grawlinson
Revision: 1214773

archrelease: copy trunk to community-x86_64

Added:
  tinyproxy/repos/community-x86_64/PKGBUILD
    (from rev 1214772, tinyproxy/trunk/PKGBUILD)
  tinyproxy/repos/community-x86_64/config.patch
    (from rev 1214772, tinyproxy/trunk/config.patch)
  tinyproxy/repos/community-x86_64/systemd.service
    (from rev 1214772, tinyproxy/trunk/systemd.service)
  tinyproxy/repos/community-x86_64/sysusers.conf
    (from rev 1214772, tinyproxy/trunk/sysusers.conf)
  tinyproxy/repos/community-x86_64/tmpfiles.conf
    (from rev 1214772, tinyproxy/trunk/tmpfiles.conf)
Deleted:
  tinyproxy/repos/community-x86_64/PKGBUILD
  tinyproxy/repos/community-x86_64/config.patch
  tinyproxy/repos/community-x86_64/systemd.service
  tinyproxy/repos/community-x86_64/sysusers.conf
  tinyproxy/repos/community-x86_64/tmpfiles.conf

-----------------+
 PKGBUILD        |  124 +++++++++++++++++++++++++++---------------------------
 config.patch    |   62 +++++++++++++--------------
 systemd.service |   24 +++++-----
 sysusers.conf   |    2 
 tmpfiles.conf   |    2 
 5 files changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-05-30 02:18:30 UTC (rev 1214772)
+++ PKGBUILD	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -1,62 +0,0 @@
-# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
-# Contributor: Daniel Micay <danielmicay at gmail.com>
-# Contributor: Andrea Zucchelli <zukka77 at gmail.com>
-
-pkgname=tinyproxy
-pkgver=1.11.1
-pkgrel=1
-pkgdesc='A light-weight HTTP proxy daemon for POSIX operating systems'
-arch=('x86_64')
-url='https://tinyproxy.github.io/'
-license=('GPL')
-depends=('glibc')
-makedepends=('asciidoc')
-backup=('etc/tinyproxy/tinyproxy.conf')
-options=('debug')
-source=(
-  "https://github.com/$pkgname/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"
-  'sysusers.conf'
-  'tmpfiles.conf'
-  'systemd.service'
-  'config.patch'
-)
-sha512sums=('2e3435bbfece3797c11ccce222eef494ed92e00dd82bea2c40a54e454b7e03c8abc8e09b244f2da7192209c39047369439d08974b79eebc996fb3095230d0374'
-            '5b79b2be628445650cd80b1310fa84f8e7b36a9f19291e48061d4f2ff892232df15be27aecbcb0c23cb13d97b1601979dc7781cc8b73ba3ddab7f54219564496'
-            '59d1efcc996e94ae684708ef06263c61f17680a776938a90ce145cf6f0243ed253d402cd886dab7c2c287f47dbc6f02f0e34904433e7b6756cfaa18a1b766b4e'
-            'b93714f5670c11caaa10322c282575f28c483437d173c2762d4d5943c22dda1f0c297533d81b617f03aa0f7dbd5f33cb0da003db9f36b6ab796369bd06075693'
-            '86fd608b6ca0ad9b7c581ea02ab005dcf0c1d59e6f12e15a0375ae3bd73e7c1d5316f0d4d00155623c6bef64699924f0f7df0f35e8bd4cdaeb88068743a5d4da')
-b2sums=('d39fa1986343af60cdfd07c6a049962e646a72874f7058fd082b9758bae3c7bc1a2288103527e0e1054ab098a3a41fc67eb3e08cd160e2bd4bd030e114326a6f'
-        '701aa231eefe2d657d4d9d1b97cd15a1e58699ab685040ad33e9ff475a70084da557067a9804e0b4671f5cc2cd4b1058721e1c894293c26e1ec1544d278c9782'
-        'a4e1cf0c8cbd78360175b8260c7d83885dfc9560a78faa6fc111f8611b6dd43c3cbf9fa62e60f8333cac4d0bededbe048c626d8a85d4f3c6c1bfa1ae249c599e'
-        '54acd88224964c4ee87f6f06983c385ada52f8a0acf7eac7ca35ccbcc71f8b930b5753efa034a7436ace8ad97e17f28f39f76978c125d127ff987ec47441842d'
-        '5340bf629907a4ea9fdc4bfeb180e715bd960a3d371c081aea4940ccb12bc32d670ba7b818697ff7866fde9821ec70d4c0bee2d3e53c79ea5bd24708e1f05eff')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -p0 -i ../config.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
-    --prefix=/usr \
-    --sysconfdir=/etc \
-    --sbindir=/usr/bin \
-    --localstatedir=/var \
-    --enable-transparent
-
-  make
-}
-
-package() {
-  # systemd integration
-  install -vDm644 systemd.service "$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  install -vDm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-  install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}

Copied: tinyproxy/repos/community-x86_64/PKGBUILD (from rev 1214772, tinyproxy/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -0,0 +1,62 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+# Contributor: Andrea Zucchelli <zukka77 at gmail.com>
+
+pkgname=tinyproxy
+pkgver=1.11.1
+pkgrel=2
+pkgdesc='A light-weight HTTP proxy daemon for POSIX operating systems'
+arch=('x86_64')
+url='https://tinyproxy.github.io/'
+license=('GPL')
+depends=('glibc')
+makedepends=('gperf')
+backup=('etc/tinyproxy/tinyproxy.conf')
+options=('debug')
+source=(
+  "https://github.com/$pkgname/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"
+  'sysusers.conf'
+  'tmpfiles.conf'
+  'systemd.service'
+  'config.patch'
+)
+sha512sums=('2e3435bbfece3797c11ccce222eef494ed92e00dd82bea2c40a54e454b7e03c8abc8e09b244f2da7192209c39047369439d08974b79eebc996fb3095230d0374'
+            '5b79b2be628445650cd80b1310fa84f8e7b36a9f19291e48061d4f2ff892232df15be27aecbcb0c23cb13d97b1601979dc7781cc8b73ba3ddab7f54219564496'
+            '59d1efcc996e94ae684708ef06263c61f17680a776938a90ce145cf6f0243ed253d402cd886dab7c2c287f47dbc6f02f0e34904433e7b6756cfaa18a1b766b4e'
+            'b93714f5670c11caaa10322c282575f28c483437d173c2762d4d5943c22dda1f0c297533d81b617f03aa0f7dbd5f33cb0da003db9f36b6ab796369bd06075693'
+            '86fd608b6ca0ad9b7c581ea02ab005dcf0c1d59e6f12e15a0375ae3bd73e7c1d5316f0d4d00155623c6bef64699924f0f7df0f35e8bd4cdaeb88068743a5d4da')
+b2sums=('d39fa1986343af60cdfd07c6a049962e646a72874f7058fd082b9758bae3c7bc1a2288103527e0e1054ab098a3a41fc67eb3e08cd160e2bd4bd030e114326a6f'
+        '701aa231eefe2d657d4d9d1b97cd15a1e58699ab685040ad33e9ff475a70084da557067a9804e0b4671f5cc2cd4b1058721e1c894293c26e1ec1544d278c9782'
+        'a4e1cf0c8cbd78360175b8260c7d83885dfc9560a78faa6fc111f8611b6dd43c3cbf9fa62e60f8333cac4d0bededbe048c626d8a85d4f3c6c1bfa1ae249c599e'
+        '54acd88224964c4ee87f6f06983c385ada52f8a0acf7eac7ca35ccbcc71f8b930b5753efa034a7436ace8ad97e17f28f39f76978c125d127ff987ec47441842d'
+        '5340bf629907a4ea9fdc4bfeb180e715bd960a3d371c081aea4940ccb12bc32d670ba7b818697ff7866fde9821ec70d4c0bee2d3e53c79ea5bd24708e1f05eff')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  patch -p0 -i ../config.patch
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc \
+    --sbindir=/usr/bin \
+    --localstatedir=/var \
+    --enable-transparent
+
+  make
+}
+
+package() {
+  # systemd integration
+  install -vDm644 systemd.service "$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  install -vDm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+  install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: config.patch
===================================================================
--- config.patch	2022-05-30 02:18:30 UTC (rev 1214772)
+++ config.patch	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -1,31 +0,0 @@
---- etc/tinyproxy.conf.in	2010-03-03 04:37:24.000000000 -0500
-+++ etc/tinyproxy.conf.in.arch	2014-04-11 15:43:53.340725405 -0400
-@@ -12,8 +12,8 @@
- # as the root user. Either the user or group name or the UID or GID
- # number may be used.
- #
--User nobody
--Group nobody
-+User tinyproxy
-+Group tinyproxy
- 
- #
- # Port: Specify the port which tinyproxy will listen on.  Please note
-@@ -27,7 +27,7 @@
- # only one. If this is commented out, tinyproxy will bind to all
- # interfaces present.
- #
--#Listen 192.168.0.1
-+Listen 127.0.0.1
- 
- #
- # Bind: This allows you to specify which interface will be used for
-@@ -99,7 +99,7 @@
- # option must not be enabled if the Logfile directive is being used.
- # These two directives are mutually exclusive.
- #
--#Syslog On
-+Syslog On
- 
- #
- # LogLevel: 

Copied: tinyproxy/repos/community-x86_64/config.patch (from rev 1214772, tinyproxy/trunk/config.patch)
===================================================================
--- config.patch	                        (rev 0)
+++ config.patch	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -0,0 +1,31 @@
+--- etc/tinyproxy.conf.in	2010-03-03 04:37:24.000000000 -0500
++++ etc/tinyproxy.conf.in.arch	2014-04-11 15:43:53.340725405 -0400
+@@ -12,8 +12,8 @@
+ # as the root user. Either the user or group name or the UID or GID
+ # number may be used.
+ #
+-User nobody
+-Group nobody
++User tinyproxy
++Group tinyproxy
+ 
+ #
+ # Port: Specify the port which tinyproxy will listen on.  Please note
+@@ -27,7 +27,7 @@
+ # only one. If this is commented out, tinyproxy will bind to all
+ # interfaces present.
+ #
+-#Listen 192.168.0.1
++Listen 127.0.0.1
+ 
+ #
+ # Bind: This allows you to specify which interface will be used for
+@@ -99,7 +99,7 @@
+ # option must not be enabled if the Logfile directive is being used.
+ # These two directives are mutually exclusive.
+ #
+-#Syslog On
++Syslog On
+ 
+ #
+ # LogLevel: 

Deleted: systemd.service
===================================================================
--- systemd.service	2022-05-30 02:18:30 UTC (rev 1214772)
+++ systemd.service	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Tinyproxy Web Proxy Server
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/tinyproxy -c /etc/tinyproxy/tinyproxy.conf
-PIDFile=/run/tinyproxy/tinyproxy.pid
-PrivateDevices=yes
-
-[Install]
-WantedBy=multi-user.target

Copied: tinyproxy/repos/community-x86_64/systemd.service (from rev 1214772, tinyproxy/trunk/systemd.service)
===================================================================
--- systemd.service	                        (rev 0)
+++ systemd.service	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Tinyproxy Web Proxy Server
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/tinyproxy -c /etc/tinyproxy/tinyproxy.conf
+PIDFile=/run/tinyproxy/tinyproxy.pid
+PrivateDevices=yes
+
+[Install]
+WantedBy=multi-user.target

Deleted: sysusers.conf
===================================================================
--- sysusers.conf	2022-05-30 02:18:30 UTC (rev 1214772)
+++ sysusers.conf	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -1 +0,0 @@
-u tinyproxy 186 "HTTP proxy daemon" -

Copied: tinyproxy/repos/community-x86_64/sysusers.conf (from rev 1214772, tinyproxy/trunk/sysusers.conf)
===================================================================
--- sysusers.conf	                        (rev 0)
+++ sysusers.conf	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -0,0 +1 @@
+u tinyproxy 186 "HTTP proxy daemon" -

Deleted: tmpfiles.conf
===================================================================
--- tmpfiles.conf	2022-05-30 02:18:30 UTC (rev 1214772)
+++ tmpfiles.conf	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -1 +0,0 @@
-d /run/tinyproxy 0770 tinyproxy tinyproxy -

Copied: tinyproxy/repos/community-x86_64/tmpfiles.conf (from rev 1214772, tinyproxy/trunk/tmpfiles.conf)
===================================================================
--- tmpfiles.conf	                        (rev 0)
+++ tmpfiles.conf	2022-05-30 02:19:49 UTC (rev 1214773)
@@ -0,0 +1 @@
+d /run/tinyproxy 0770 tinyproxy tinyproxy -



More information about the arch-commits mailing list