[arch-commits] Commit in squid/repos/community-x86_64 (13 files)

2022-09-06 Thread Sergej Pupykin via arch-commits
Date: Tuesday, September 6, 2022 @ 22:25:24
  Author: spupykin
Revision: 1295992

archrelease: copy trunk to community-x86_64

Added:
  squid/repos/community-x86_64/PKGBUILD
(from rev 1295991, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/keys/
  squid/repos/community-x86_64/squid-rotate.service
(from rev 1295991, squid/trunk/squid-rotate.service)
  squid/repos/community-x86_64/squid-rotate.timer
(from rev 1295991, squid/trunk/squid-rotate.timer)
  squid/repos/community-x86_64/squid.pam
(from rev 1295991, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.sysusers
(from rev 1295991, squid/trunk/squid.sysusers)
  squid/repos/community-x86_64/squid.tmpfiles
(from rev 1295991, squid/trunk/squid.tmpfiles)
Deleted:
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid-rotate.service
  squid/repos/community-x86_64/squid-rotate.timer
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.sysusers
  squid/repos/community-x86_64/squid.tmpfiles

--+
 PKGBUILD |  220 -
 squid-rotate.service |   18 ++--
 squid-rotate.timer   |   20 ++--
 squid.pam|8 -
 squid.sysusers   |2 
 squid.tmpfiles   |6 -
 6 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-06 22:24:20 UTC (rev 1295991)
+++ PKGBUILD2022-09-06 22:25:24 UTC (rev 1295992)
@@ -1,110 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Mark Coolen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=squid
-pkgver=5.6
-pkgrel=1
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'perl' 'libltdl' 'libcap' 'nettle' 'gnutls' 'libnsl' 
'libxml2'
-   'systemd-libs')
-makedepends=('krb5' 'libldap' 'systemd')
-optdepends=('libldap')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-   'etc/squid/cachemgr.conf'
-   'etc/squid/errorpage.css'
-   'etc/squid/mime.conf')
-validpgpkeys=('EA31CC5E9488E5168D2DCC5EB268E706FF5CF463'
- 'B06884EDB779C89B044E64E3CD6DBF8EF3B17D3E')
-source=("http://www.squid-cache.org/Versions/v5/$pkgname-$pkgver.tar.xz"{,.asc}
-'squid.pam'
-'squid.tmpfiles'
-'squid.sysusers'
-'squid-rotate.service'
-'squid-rotate.timer')
-sha256sums=('38d27338a347597ce0e93d0c3be6e5f66b6750417c474ca87ee0d61bb6d148db'
-'SKIP'
-'11fb388f8679fd6461e0de006810ea608a3686fffda16904b0ed71f412be499c'
-'495f54e51f6ec1e4dce87090d76718aea1eb37559c4439d876dd39598163062a'
-'c903eb86e6968b9d3bd0a9ad3335e8ce76a718b6217251e9dd7e66d5cf1ac94a'
-'3a97aa6bf6dcdc427e73bb2f36afdeaaf2bbf7dd2c0bbb7f1a948850198a8b7c'
-'8bc77fa1f653a17a4956feac042be9577ba30a8a43480b443fbd67640ae711ee')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|/var/run/|/run/|g' tools/systemd/squid.service
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---datadir=/usr/share/squid \
---sysconfdir=/etc/squid \
---libexecdir=/usr/lib/squid \
---localstatedir=/var \
---with-logdir=/var/log/squid \
---with-pidfile=/run/squid.pid \
---enable-auth \
---enable-auth-basic \
---enable-auth-ntlm \
---enable-auth-digest \
---enable-auth-negotiate \
---enable-removal-policies="lru,heap" \
---enable-storeio="aufs,ufs,diskd,rock" \
---enable-delay-pools \
---enable-arp-acl \
---with-openssl \
---enable-snmp \
---enable-linux-netfilter \
---enable-ident-lookups \
---enable-useragent-log \
---enable-cache-digests \
---enable-referer-log \
---enable-arp-acl \
---enable-htcp \
---enable-carp \
---enable-epoll \
---with-large-files \
---enable-arp-acl \
---with-default-user=proxy \
---enable-async-io \
---enable-truncate \
---enable-icap-client \
---enable-ssl-crtd \
---disable-arch-native \
---disable-strict-error-checking \
---enable-wccpv2
-  make
-}
-
-package() {
-  cd "$srcdir"
-
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-
-  chmod 07755 "$pkgdir"/usr/lib/squid/basic_pam_auth
-  
-  install -Dm644 "$srcdir/squid.pam" "$pkgdir/usr/lib/pam.d/squid"
-  install -Dm644 "$srcdir/squid.tmpfiles" 
"$pkgdir/usr/lib/tmpfiles.d/squid.conf"
-  install -Dm644 "$srcdir/squid.sysusers" 
"$pkgdir/usr/lib/sysusers.d/squid.conf"
-  install -Dm644 "$pkgname-$pkgver/tools/systemd/squid.service" \
-"$pkgdir/usr/lib/systemd/system/squid.service"
-  install -Dm644 "$srcdir/squid-rotate.service" \
-"$pkgdir/usr/lib/systemd/system/squid-rotate.service"
-  install -Dm644 "$srcdir/squid-rotate.timer" \
-"$pkgdir/usr/lib/systemd/system/squid-rotate.timer"
-# 

[arch-commits] Commit in squid/trunk (PKGBUILD)

2022-09-06 Thread Sergej Pupykin via arch-commits
Date: Tuesday, September 6, 2022 @ 22:24:20
  Author: spupykin
Revision: 1295991

upgpkg: squid 5.7-1

Modified:
  squid/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-06 22:24:14 UTC (rev 1295990)
+++ PKGBUILD2022-09-06 22:24:20 UTC (rev 1295991)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Piche 
 
 pkgname=squid
-pkgver=5.6
+pkgver=5.7
 pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64')
@@ -27,7 +27,7 @@
 'squid.sysusers'
 'squid-rotate.service'
 'squid-rotate.timer')
-sha256sums=('38d27338a347597ce0e93d0c3be6e5f66b6750417c474ca87ee0d61bb6d148db'
+sha256sums=('6b0753aaba4c9c4efd333e67124caecf7ad6cc2d38581f19d2f0321f5b7ecd81'
 'SKIP'
 '11fb388f8679fd6461e0de006810ea608a3686fffda16904b0ed71f412be499c'
 '495f54e51f6ec1e4dce87090d76718aea1eb37559c4439d876dd39598163062a'



[arch-commits] Commit in ser2net/repos/community-x86_64 (4 files)

2022-09-06 Thread Sergej Pupykin via arch-commits
Date: Tuesday, September 6, 2022 @ 22:24:14
  Author: spupykin
Revision: 1295990

archrelease: copy trunk to community-x86_64

Added:
  ser2net/repos/community-x86_64/PKGBUILD
(from rev 1295989, ser2net/trunk/PKGBUILD)
  ser2net/repos/community-x86_64/ser2net.service
(from rev 1295989, ser2net/trunk/ser2net.service)
Deleted:
  ser2net/repos/community-x86_64/PKGBUILD
  ser2net/repos/community-x86_64/ser2net.service

-+
 PKGBUILD|   60 +++---
 ser2net.service |   22 +--
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-06 22:23:31 UTC (rev 1295989)
+++ PKGBUILD2022-09-06 22:24:14 UTC (rev 1295990)
@@ -1,30 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Shinlun Hsieh 
-
-pkgname=ser2net
-pkgver=4.3.7
-pkgrel=1
-pkgdesc="A proxy that allows telnet/tcp connections to be made to serial ports"
-arch=(x86_64)
-url="https://sourceforge.net/projects/ser2net;
-license=('GPL')
-depends=('gensio' 'libyaml')
-backup=(etc/ser2net/ser2net.yaml)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/ser2net/archive/v$pkgver.tar.gz;
-   ser2net.service)
-sha256sums=('1a31b23986ad46602e90033d1dfa685da1788bdffcbe7b91927ba4464150f025'
-'b093e1f5bf7dd826816828623a5c6858f83a9f0dcb1a9785f545b29efd1c320c')
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  test -x configure || ./reconf
-  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 ser2net.yaml "$pkgdir"/etc/ser2net/ser2net.yaml
-  install -Dm0644 "$srcdir"/ser2net.service 
"$pkgdir"/usr/lib/systemd/system/ser2net.service
-}

Copied: ser2net/repos/community-x86_64/PKGBUILD (from rev 1295989, 
ser2net/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-06 22:24:14 UTC (rev 1295990)
@@ -0,0 +1,30 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Shinlun Hsieh 
+
+pkgname=ser2net
+pkgver=4.3.8
+pkgrel=1
+pkgdesc="A proxy that allows telnet/tcp connections to be made to serial ports"
+arch=(x86_64)
+url="https://sourceforge.net/projects/ser2net;
+license=('GPL')
+depends=('gensio' 'libyaml')
+backup=(etc/ser2net/ser2net.yaml)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/ser2net/archive/v$pkgver.tar.gz;
+   ser2net.service)
+sha256sums=('4605c36129eff9bff21869aa56303e1c424142f9cd972ef178db56a34b39e2cb'
+'b093e1f5bf7dd826816828623a5c6858f83a9f0dcb1a9785f545b29efd1c320c')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  test -x configure || ./reconf
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 ser2net.yaml "$pkgdir"/etc/ser2net/ser2net.yaml
+  install -Dm0644 "$srcdir"/ser2net.service 
"$pkgdir"/usr/lib/systemd/system/ser2net.service
+}

Deleted: ser2net.service
===
--- ser2net.service 2022-09-06 22:23:31 UTC (rev 1295989)
+++ ser2net.service 2022-09-06 22:24:14 UTC (rev 1295990)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Proxy that allows tcp connections to serial ports
-After=syslog.target network.target
-
-[Service]
-Type=simple
-ExecStart=/usr/bin/ser2net -n
-
-[Install]
-WantedBy=multi-user.target
-

Copied: ser2net/repos/community-x86_64/ser2net.service (from rev 1295989, 
ser2net/trunk/ser2net.service)
===
--- ser2net.service (rev 0)
+++ ser2net.service 2022-09-06 22:24:14 UTC (rev 1295990)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Proxy that allows tcp connections to serial ports
+After=syslog.target network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/ser2net -n
+
+[Install]
+WantedBy=multi-user.target
+



[arch-commits] Commit in ser2net/trunk (PKGBUILD)

2022-09-06 Thread Sergej Pupykin via arch-commits
Date: Tuesday, September 6, 2022 @ 22:23:31
  Author: spupykin
Revision: 1295989

upgpkg: ser2net 4.3.8-1

Modified:
  ser2net/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-06 22:22:09 UTC (rev 1295988)
+++ PKGBUILD2022-09-06 22:23:31 UTC (rev 1295989)
@@ -2,7 +2,7 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=ser2net
-pkgver=4.3.7
+pkgver=4.3.8
 pkgrel=1
 pkgdesc="A proxy that allows telnet/tcp connections to be made to serial ports"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 backup=(etc/ser2net/ser2net.yaml)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/ser2net/archive/v$pkgver.tar.gz;
ser2net.service)
-sha256sums=('1a31b23986ad46602e90033d1dfa685da1788bdffcbe7b91927ba4464150f025'
+sha256sums=('4605c36129eff9bff21869aa56303e1c424142f9cd972ef178db56a34b39e2cb'
 'b093e1f5bf7dd826816828623a5c6858f83a9f0dcb1a9785f545b29efd1c320c')
 
 build() {



[arch-commits] Commit in (2 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 21:56:51
  Author: spupykin
Revision: 1293431

FS#75814

Modified:
  firefox-adblock-plus/trunk/PKGBUILD
  firefox-noscript/trunk/PKGBUILD

-+
 firefox-adblock-plus/trunk/PKGBUILD |2 +-
 firefox-noscript/trunk/PKGBUILD |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: firefox-adblock-plus/trunk/PKGBUILD
===
--- firefox-adblock-plus/trunk/PKGBUILD 2022-09-05 21:56:45 UTC (rev 1293430)
+++ firefox-adblock-plus/trunk/PKGBUILD 2022-09-05 21:56:51 UTC (rev 1293431)
@@ -9,7 +9,7 @@
 arch=('any')
 url="https://adblockplus.org/;
 license=('GPL3')
-makedepends=('jq')
+checkdepends=('jq')
 groups=('firefox-addons')
 # https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
 # wget -qO- 
https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/ | grep 
-oP '/\d+/adblock_plus-\S+.xpi'

Modified: firefox-noscript/trunk/PKGBUILD
===
--- firefox-noscript/trunk/PKGBUILD 2022-09-05 21:56:45 UTC (rev 1293430)
+++ firefox-noscript/trunk/PKGBUILD 2022-09-05 21:56:51 UTC (rev 1293431)
@@ -9,7 +9,7 @@
 arch=('any')
 url="https://noscript.net/;
 license=('GPL2')
-makedepends=('jq')
+checkdepends=('jq')
 groups=('firefox-addons')
 
#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
 
source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)



[arch-commits] Commit in (2 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 19:07:14
  Author: spupykin
Revision: 1293105

FS#75814

Modified:
  firefox-adblock-plus/trunk/PKGBUILD
  firefox-noscript/trunk/PKGBUILD

-+
 firefox-adblock-plus/trunk/PKGBUILD |4 ++--
 firefox-noscript/trunk/PKGBUILD |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: firefox-adblock-plus/trunk/PKGBUILD
===
--- firefox-adblock-plus/trunk/PKGBUILD 2022-09-05 18:52:27 UTC (rev 1293104)
+++ firefox-adblock-plus/trunk/PKGBUILD 2022-09-05 19:07:14 UTC (rev 1293105)
@@ -9,7 +9,7 @@
 arch=('any')
 url="https://adblockplus.org/;
 license=('GPL3')
-makedepends=('unzip' 'jq')
+makedepends=('jq')
 groups=('firefox-addons')
 # https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
 # wget -qO- 
https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/ | grep 
-oP '/\d+/adblock_plus-\S+.xpi'
@@ -18,7 +18,7 @@
 sha256sums=('9aceb740f59a10f3fb9c0d1bf9eb8b7c57ca3e927642085b3f2df39c4b36c70d')
 
 check() {
-  unzip adblock-plus-$pkgver.xpi manifest.json
+  bsdtar xf adblock-plus-$pkgver.xpi manifest.json
   jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
 }
 

Modified: firefox-noscript/trunk/PKGBUILD
===
--- firefox-noscript/trunk/PKGBUILD 2022-09-05 18:52:27 UTC (rev 1293104)
+++ firefox-noscript/trunk/PKGBUILD 2022-09-05 19:07:14 UTC (rev 1293105)
@@ -9,7 +9,7 @@
 arch=('any')
 url="https://noscript.net/;
 license=('GPL2')
-makedepends=('unzip' 'jq')
+makedepends=('jq')
 groups=('firefox-addons')
 
#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
 
source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)
@@ -18,7 +18,7 @@
 
b2sums=('626d4b3aef3c5459e4b5ec6345c2a36ae8d632dde9a1f00209e6f3e104ae2b726a93da707a09cabdb9321007216a737030b983ce677c733f5ed8518316eacfd3')
 
 check() {
-  unzip noscript-$pkgver.xpi manifest.json
+  bsdtar xf noscript-$pkgver.xpi manifest.json
   jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
 }
 



[arch-commits] Commit in dokuwiki/repos/community-any (4 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 18:52:27
  Author: spupykin
Revision: 1293104

archrelease: copy trunk to community-any

Added:
  dokuwiki/repos/community-any/PKGBUILD
(from rev 1293103, dokuwiki/trunk/PKGBUILD)
  dokuwiki/repos/community-any/apache.example.conf
(from rev 1293103, dokuwiki/trunk/apache.example.conf)
Deleted:
  dokuwiki/repos/community-any/PKGBUILD
  dokuwiki/repos/community-any/apache.example.conf

-+
 PKGBUILD|  134 +-
 apache.example.conf |   14 ++---
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 18:51:41 UTC (rev 1293103)
+++ PKGBUILD2022-09-05 18:52:27 UTC (rev 1293104)
@@ -1,67 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sébastien Luttringer
-
-pkgname=dokuwiki
-pkgver=20220731a
-pkgrel=1
-_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
-_pkgver=${_pkgver/_/}
-_pkgver=${_pkgver/rc/}
-[[ $pkgver == *"rc" ]] && _release=candidate || _release=stable
-pkgdesc='Simple to use and highly versatile Open Source wiki software'
-arch=('any')
-url='https://www.dokuwiki.org/'
-license=('GPL')
-depends=('php')
-backup=('etc/webapps/dokuwiki/.htaccess'
-'etc/httpd/conf/extra/dokuwiki.conf')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
-'apache.example.conf')
-sha256sums=('b491e7fb4386f788a121101488096e7c08d0161b389710b0a9e8f4b462a56a4f'
-'237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
-
-package() {
-  cd "$pkgdir"
-  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
-  cp -a "$srcdir"/$pkgname-release_${_release}_${_pkgver} 
usr/share/webapps/dokuwiki
-
-  # move data in var
-  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
-  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
-
-  # move plugins in var
-  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
-  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
-
-  # move templates in var
-  mv usr/share/webapps/dokuwiki/lib/tpl var/lib/dokuwiki
-  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/tpl
-
-  # move config in /etc
-  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
-  chmod g=rwx etc/webapps/dokuwiki
-  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
-
-  # inform update on changes.log
-  touch var/lib/dokuwiki/data/changes.log
-  chmod 0644 var/lib/dokuwiki/data/changes.log
-
-  # use default htaccess
-  cp usr/share/webapps/dokuwiki/.htaccess.dist etc/webapps/dokuwiki/.htaccess
-  ln -s /etc/webapps/dokuwiki/.htaccess usr/share/webapps/dokuwiki/.htaccess
-
-  # fix rights and ownership
-  chown 33:33 var/lib/dokuwiki/plugins
-  chown -R 33:33 var/lib/dokuwiki/data
-  chown -R 33:33 etc/webapps/dokuwiki
-
-  # apache config
-  install -Dm0644 "$srcdir"/apache.example.conf 
etc/httpd/conf/extra/dokuwiki.conf
-
-  # php.ini
-#  install -dm0755 "$pkgdir"/etc/php/conf.d/
-#  echo 'open_basedir = 
${open_basedir}:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/' 
>"$pkgdir"/etc/php/conf.d/dokuwiki.ini
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dokuwiki/repos/community-any/PKGBUILD (from rev 1293103, 
dokuwiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 18:52:27 UTC (rev 1293104)
@@ -0,0 +1,67 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sébastien Luttringer
+
+pkgname=dokuwiki
+pkgver=20220731_a
+pkgrel=1
+_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
+_pkgver=${_pkgver/_/}
+_pkgver=${_pkgver/rc/}
+[[ $pkgver == *"rc" ]] && _release=candidate || _release=stable
+pkgdesc='Simple to use and highly versatile Open Source wiki software'
+arch=('any')
+url='https://www.dokuwiki.org/'
+license=('GPL')
+depends=('php')
+backup=('etc/webapps/dokuwiki/.htaccess'
+'etc/httpd/conf/extra/dokuwiki.conf')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
+'apache.example.conf')
+sha256sums=('b491e7fb4386f788a121101488096e7c08d0161b389710b0a9e8f4b462a56a4f'
+'237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
+
+package() {
+  cd "$pkgdir"
+  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
+  cp -a "$srcdir"/$pkgname-release_${_release}_${_pkgver} 
usr/share/webapps/dokuwiki
+
+  # move data in var
+  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
+  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
+
+  # move plugins in var
+  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
+  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
+

[arch-commits] Commit in dokuwiki/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 18:51:41
  Author: spupykin
Revision: 1293103

upgpkg: dokuwiki 20220731_a-1

Modified:
  dokuwiki/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 18:49:25 UTC (rev 1293102)
+++ PKGBUILD2022-09-05 18:51:41 UTC (rev 1293103)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien Luttringer
 
 pkgname=dokuwiki
-pkgver=20220731a
+pkgver=20220731_a
 pkgrel=1
 _pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
 _pkgver=${_pkgver/_/}



[arch-commits] Commit in perl-ipc-run/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 16:11:35
  Author: spupykin
Revision: 1293060

archrelease: copy trunk to community-any

Added:
  perl-ipc-run/repos/community-any/PKGBUILD
(from rev 1293059, perl-ipc-run/trunk/PKGBUILD)
Deleted:
  perl-ipc-run/repos/community-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 16:10:40 UTC (rev 1293059)
+++ PKGBUILD2022-09-05 16:11:35 UTC (rev 1293060)
@@ -1,30 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan-Erik Rediger 
-# Contributor: Gerardo Exequiel Pozzi 
-# Contributor: Francois Charette 
-
-pkgname=perl-ipc-run
-pkgver=20200505.0
-pkgrel=1
-pkgdesc="IPC::Run - system() and background procs w/ piping, redirs, ptys"
-arch=('any')
-url="https://search.cpan.org/dist/IPC-Run;
-license=('GPL' 'PerlArtistic')
-# IPC::Run depends on IO::Pty which is provided by perl-io-tty
-depends=('perl' 'perl-io-tty')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IPC-Run-$pkgver.tar.gz;)
-sha256sums=('816ebf217fa0df99c583d73c0acc6ced78ac773787c664c75cbf140bb7e4c901')
-
-build() {
-  cd "$srcdir"/IPC-Run-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir"/IPC-Run-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name perllocal.pod -delete
-  find "$pkgdir" -name .packlist -delete
-}

Copied: perl-ipc-run/repos/community-any/PKGBUILD (from rev 1293059, 
perl-ipc-run/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 16:11:35 UTC (rev 1293060)
@@ -0,0 +1,30 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan-Erik Rediger 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Francois Charette 
+
+pkgname=perl-ipc-run
+pkgver=20220807.0
+pkgrel=1
+pkgdesc="IPC::Run - system() and background procs w/ piping, redirs, ptys"
+arch=('any')
+url="https://search.cpan.org/dist/IPC-Run;
+license=('GPL' 'PerlArtistic')
+# IPC::Run depends on IO::Pty which is provided by perl-io-tty
+depends=('perl' 'perl-io-tty')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IPC-Run-$pkgver.tar.gz;)
+sha256sums=('277d781dbbc98af18e979c7ef36f222513d7361742c52507c3348b265f6f5e69')
+
+build() {
+  cd "$srcdir"/IPC-Run-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir"/IPC-Run-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name perllocal.pod -delete
+  find "$pkgdir" -name .packlist -delete
+}



[arch-commits] Commit in perl-ipc-run/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 16:10:40
  Author: spupykin
Revision: 1293059

upgpkg: perl-ipc-run 20220807.0-1

Modified:
  perl-ipc-run/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 16:07:28 UTC (rev 1293058)
+++ PKGBUILD2022-09-05 16:10:40 UTC (rev 1293059)
@@ -4,7 +4,7 @@
 # Contributor: Francois Charette 
 
 pkgname=perl-ipc-run
-pkgver=20200505.0
+pkgver=20220807.0
 pkgrel=1
 pkgdesc="IPC::Run - system() and background procs w/ piping, redirs, ptys"
 arch=('any')
@@ -14,7 +14,7 @@
 depends=('perl' 'perl-io-tty')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IPC-Run-$pkgver.tar.gz;)
-sha256sums=('816ebf217fa0df99c583d73c0acc6ced78ac773787c664c75cbf140bb7e4c901')
+sha256sums=('277d781dbbc98af18e979c7ef36f222513d7361742c52507c3348b265f6f5e69')
 
 build() {
   cd "$srcdir"/IPC-Run-$pkgver



[arch-commits] Commit in recoll/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 16:03:47
  Author: spupykin
Revision: 1293050

archrelease: copy trunk to community-x86_64

Added:
  recoll/repos/community-x86_64/PKGBUILD
(from rev 1293049, recoll/trunk/PKGBUILD)
Deleted:
  recoll/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 16:02:53 UTC (rev 1293049)
+++ PKGBUILD2022-09-05 16:03:47 UTC (rev 1293050)
@@ -1,49 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Daniel J Griffiths 
-# Contributor: Andrea Scarpino 
-# Contributor: Vladimir Chizhov 
-# Contributor: Robert Emil Berge 
-
-pkgname=recoll
-pkgver=1.32.5
-pkgrel=1
-pkgdesc="Full text search tool based on Xapian backend"
-arch=('x86_64')
-url="https://www.lesbonscomptes.com/recoll/;
-license=('GPL')
-depends=('xapian-core>=1.0.15-1' 'qt5-base' 'openssl' 'hicolor-icon-theme' 
'qt5-webkit'
-'chmlib')
-makedepends=('python' 'python-setuptools')
-optdepends=('libxslt: for XML based formats (fb2,etc)'
-   'unzip: for the OpenOffice.org documents'
-   'poppler: for pdf'
-   'pstotext: for postscipt'
-   'antiword: for msword'
-   'catdoc: for ms excel and powerpoint'
-   'unrtf: for RTF'
-#  'untex: for dvi support with dvips'
-   'djvulibre: for djvu'
-   'id3lib: for mp3 tags support with id3info'
-   'python-mutagen: Audio metadata'
-   'perl-image-exiftool: EXIF data from raw files'
-   'python-lxml: indexing spreadsheets'
-'python-pychm: CHM filter'
-   'aspell-en: English stemming support')
-source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz;)
-sha512sums=('ea7242d7a3cbba66bb9f90523388b097263b370a1f11b09e5ad63ac58cdcea74db1ae17e312b81efcda6cfd856c02b7f961a57dbacd7c5b6b1a76f9afa89622e')
-
-prepare() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  sed -i '1,1i#include ' qtgui/ssearch_w.cpp
-}
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  QMAKE=qmake-qt5 ./configure --prefix=/usr --mandir=/usr/share/man 
--enable-recollq
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  make DESTDIR="$pkgdir" install
-}

Copied: recoll/repos/community-x86_64/PKGBUILD (from rev 1293049, 
recoll/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 16:03:47 UTC (rev 1293050)
@@ -0,0 +1,49 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Daniel J Griffiths 
+# Contributor: Andrea Scarpino 
+# Contributor: Vladimir Chizhov 
+# Contributor: Robert Emil Berge 
+
+pkgname=recoll
+pkgver=1.32.7
+pkgrel=1
+pkgdesc="Full text search tool based on Xapian backend"
+arch=('x86_64')
+url="https://www.lesbonscomptes.com/recoll/;
+license=('GPL')
+depends=('xapian-core>=1.0.15-1' 'qt5-base' 'openssl' 'hicolor-icon-theme' 
'qt5-webkit'
+'chmlib')
+makedepends=('python' 'python-setuptools')
+optdepends=('libxslt: for XML based formats (fb2,etc)'
+   'unzip: for the OpenOffice.org documents'
+   'poppler: for pdf'
+   'pstotext: for postscipt'
+   'antiword: for msword'
+   'catdoc: for ms excel and powerpoint'
+   'unrtf: for RTF'
+#  'untex: for dvi support with dvips'
+   'djvulibre: for djvu'
+   'id3lib: for mp3 tags support with id3info'
+   'python-mutagen: Audio metadata'
+   'perl-image-exiftool: EXIF data from raw files'
+   'python-lxml: indexing spreadsheets'
+'python-pychm: CHM filter'
+   'aspell-en: English stemming support')
+source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz;)
+sha512sums=('c75fd267b1257201ffc85bb6d34cde3909e5c19fd7dad033b570f4e34d92a3f0430df30ca734051a35f37e158a572d11b73ac173be40a09ea8bf24c346100f42')
+
+prepare() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  sed -i '1,1i#include ' qtgui/ssearch_w.cpp
+}
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  QMAKE=qmake-qt5 ./configure --prefix=/usr --mandir=/usr/share/man 
--enable-recollq
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in recoll/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 16:02:53
  Author: spupykin
Revision: 1293049

upgpkg: recoll 1.32.7-1

Modified:
  recoll/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 16:02:29 UTC (rev 1293048)
+++ PKGBUILD2022-09-05 16:02:53 UTC (rev 1293049)
@@ -5,7 +5,7 @@
 # Contributor: Robert Emil Berge 
 
 pkgname=recoll
-pkgver=1.32.5
+pkgver=1.32.7
 pkgrel=1
 pkgdesc="Full text search tool based on Xapian backend"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 'python-pychm: CHM filter'
'aspell-en: English stemming support')
 source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz;)
-sha512sums=('ea7242d7a3cbba66bb9f90523388b097263b370a1f11b09e5ad63ac58cdcea74db1ae17e312b81efcda6cfd856c02b7f961a57dbacd7c5b6b1a76f9afa89622e')
+sha512sums=('c75fd267b1257201ffc85bb6d34cde3909e5c19fd7dad033b570f4e34d92a3f0430df30ca734051a35f37e158a572d11b73ac173be40a09ea8bf24c346100f42')
 
 prepare() {
   cd "$srcdir/$pkgname-${pkgver/_/}"



[arch-commits] Commit in gensio/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 16:02:29
  Author: spupykin
Revision: 1293048

archrelease: copy trunk to community-x86_64

Added:
  gensio/repos/community-x86_64/PKGBUILD
(from rev 1293047, gensio/trunk/PKGBUILD)
Deleted:
  gensio/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   50 +-
 1 file changed, 25 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 16:01:49 UTC (rev 1293047)
+++ PKGBUILD2022-09-05 16:02:29 UTC (rev 1293048)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Shinlun Hsieh 
-
-pkgname=gensio
-pkgver=2.4.1
-pkgrel=1
-pkgdesc="General Stream I/O"
-arch=(x86_64)
-url="https://sourceforge.net/projects/ser2net/;
-license=('GPL')
-depends=()
-source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/gensio/archive/v$pkgver.tar.gz;)
-sha256sums=('d344060af79e73fdd6dd795a7be1ac3f3a898ca68faa1458b26015263008623b')
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  test -x configure || ./reconf
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-python=no
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  make DESTDIR="$pkgdir" install
-}

Copied: gensio/repos/community-x86_64/PKGBUILD (from rev 1293047, 
gensio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 16:02:29 UTC (rev 1293048)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Shinlun Hsieh 
+
+pkgname=gensio
+pkgver=2.5.2
+pkgrel=1
+pkgdesc="General Stream I/O"
+arch=(x86_64)
+url="https://sourceforge.net/projects/ser2net/;
+license=('GPL')
+depends=()
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/gensio/archive/v$pkgver.tar.gz;)
+sha256sums=('f655104107923978ae3c6c94708725c686884cb6a64182e61a93d947d8879e05')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  test -x configure || ./reconf
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-python=no
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in gensio/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 16:01:49
  Author: spupykin
Revision: 1293047

upgpkg: gensio 2.5.2-1

Modified:
  gensio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 16:00:31 UTC (rev 1293046)
+++ PKGBUILD2022-09-05 16:01:49 UTC (rev 1293047)
@@ -2,7 +2,7 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=gensio
-pkgver=2.4.1
+pkgver=2.5.2
 pkgrel=1
 pkgdesc="General Stream I/O"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=()
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/gensio/archive/v$pkgver.tar.gz;)
-sha256sums=('d344060af79e73fdd6dd795a7be1ac3f3a898ca68faa1458b26015263008623b')
+sha256sums=('f655104107923978ae3c6c94708725c686884cb6a64182e61a93d947d8879e05')
 
 build() {
   cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}



[arch-commits] Commit in firefox-noscript/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 16:00:31
  Author: spupykin
Revision: 1293046

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 1293045, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:59:52 UTC (rev 1293045)
+++ PKGBUILD2022-09-05 16:00:31 UTC (rev 1293046)
@@ -1,30 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli schwartz 
-
-pkgname=firefox-noscript
-pkgver=11.4.9
-pkgrel=1
-#_file=3910951
-pkgdesc="Extension for firefox which disables javascript"
-arch=('any')
-url="https://noscript.net/;
-license=('GPL2')
-makedepends=('unzip' 'jq')
-groups=('firefox-addons')
-#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
-source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('47a740f90258de755b709168c4985d9fc6721ff7f32f9cfc4c7094316cc5f960')
-b2sums=('70afcefd3b13dbaea2d986cbecbae8ac2ae9f6547f50647584a0159fb2240be4813b14e97229c46808f616f6f5e5c4f8ddfad6f193c75b6b36ef869af2fffea3')
-
-check() {
-  unzip noscript-$pkgver.xpi manifest.json
-  jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
-}
-
-package() {
-  depends=('firefox')
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 1293045, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 16:00:31 UTC (rev 1293046)
@@ -0,0 +1,30 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli schwartz 
+
+pkgname=firefox-noscript
+pkgver=11.4.10
+pkgrel=1
+#_file=3910951
+pkgdesc="Extension for firefox which disables javascript"
+arch=('any')
+url="https://noscript.net/;
+license=('GPL2')
+makedepends=('unzip' 'jq')
+groups=('firefox-addons')
+#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
+source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('80bf407f0cb4cc5168e1f28e8bdcc569067f9b5dac650bcf521800856d2a64c3')
+b2sums=('626d4b3aef3c5459e4b5ec6345c2a36ae8d632dde9a1f00209e6f3e104ae2b726a93da707a09cabdb9321007216a737030b983ce677c733f5ed8518316eacfd3')
+
+check() {
+  unzip noscript-$pkgver.xpi manifest.json
+  jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
+}
+
+package() {
+  depends=('firefox')
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}



[arch-commits] Commit in firefox-noscript/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:59:52
  Author: spupykin
Revision: 1293045

upgpkg: firefox-noscript 11.4.10-1

Modified:
  firefox-noscript/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:59:04 UTC (rev 1293044)
+++ PKGBUILD2022-09-05 15:59:52 UTC (rev 1293045)
@@ -2,7 +2,7 @@
 # Maintainer: Eli schwartz 
 
 pkgname=firefox-noscript
-pkgver=11.4.9
+pkgver=11.4.10
 pkgrel=1
 #_file=3910951
 pkgdesc="Extension for firefox which disables javascript"
@@ -14,8 +14,8 @@
 
#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
 
source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('47a740f90258de755b709168c4985d9fc6721ff7f32f9cfc4c7094316cc5f960')
-b2sums=('70afcefd3b13dbaea2d986cbecbae8ac2ae9f6547f50647584a0159fb2240be4813b14e97229c46808f616f6f5e5c4f8ddfad6f193c75b6b36ef869af2fffea3')
+sha256sums=('80bf407f0cb4cc5168e1f28e8bdcc569067f9b5dac650bcf521800856d2a64c3')
+b2sums=('626d4b3aef3c5459e4b5ec6345c2a36ae8d632dde9a1f00209e6f3e104ae2b726a93da707a09cabdb9321007216a737030b983ce677c733f5ed8518316eacfd3')
 
 check() {
   unzip noscript-$pkgver.xpi manifest.json



[arch-commits] Commit in firefox-adblock-plus/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:59:04
  Author: spupykin
Revision: 1293044

archrelease: copy trunk to community-any

Added:
  firefox-adblock-plus/repos/community-any/PKGBUILD
(from rev 1293043, firefox-adblock-plus/trunk/PKGBUILD)
Deleted:
  firefox-adblock-plus/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:58:40 UTC (rev 1293043)
+++ PKGBUILD2022-09-05 15:59:04 UTC (rev 1293044)
@@ -1,31 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli Schwartz 
-
-pkgname=firefox-adblock-plus
-pkgver=3.14.1
-pkgrel=1
-_file=3971526
-pkgdesc="Extension for firefox which block ads and banners"
-arch=('any')
-url="https://adblockplus.org/;
-license=('GPL3')
-makedepends=('unzip' 'jq')
-groups=('firefox-addons')
-# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
-# wget -qO- 
https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/ | grep 
-oP '/\d+/adblock_plus-\S+.xpi'
-source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
-noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('08d96114b0837145bc50056245e74994a4a4733ac3720136ca9e6012c80a79f0')
-
-check() {
-  unzip adblock-plus-$pkgver.xpi manifest.json
-  jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
-}
-
-package() {
-  depends=("firefox")
-
-  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 "${srcdir}"/adblock-plus-${pkgver}.xpi 
"${_extension_dest}.xpi"
-}

Copied: firefox-adblock-plus/repos/community-any/PKGBUILD (from rev 1293043, 
firefox-adblock-plus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:59:04 UTC (rev 1293044)
@@ -0,0 +1,31 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli Schwartz 
+
+pkgname=firefox-adblock-plus
+pkgver=3.14.2
+pkgrel=1
+_file=3995494
+pkgdesc="Extension for firefox which block ads and banners"
+arch=('any')
+url="https://adblockplus.org/;
+license=('GPL3')
+makedepends=('unzip' 'jq')
+groups=('firefox-addons')
+# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
+# wget -qO- 
https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/ | grep 
-oP '/\d+/adblock_plus-\S+.xpi'
+source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
+noextract=("adblock-plus-$pkgver.xpi")
+sha256sums=('9aceb740f59a10f3fb9c0d1bf9eb8b7c57ca3e927642085b3f2df39c4b36c70d')
+
+check() {
+  unzip adblock-plus-$pkgver.xpi manifest.json
+  jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
+}
+
+package() {
+  depends=("firefox")
+
+  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 "${srcdir}"/adblock-plus-${pkgver}.xpi 
"${_extension_dest}.xpi"
+}



[arch-commits] Commit in firefox-adblock-plus/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:58:40
  Author: spupykin
Revision: 1293043

upgpkg: firefox-adblock-plus 3.14.2-1

Modified:
  firefox-adblock-plus/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:58:13 UTC (rev 1293042)
+++ PKGBUILD2022-09-05 15:58:40 UTC (rev 1293043)
@@ -2,9 +2,9 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=firefox-adblock-plus
-pkgver=3.14.1
+pkgver=3.14.2
 pkgrel=1
-_file=3971526
+_file=3995494
 pkgdesc="Extension for firefox which block ads and banners"
 arch=('any')
 url="https://adblockplus.org/;
@@ -15,7 +15,7 @@
 # wget -qO- 
https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/ | grep 
-oP '/\d+/adblock_plus-\S+.xpi'
 
source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
 noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('08d96114b0837145bc50056245e74994a4a4733ac3720136ca9e6012c80a79f0')
+sha256sums=('9aceb740f59a10f3fb9c0d1bf9eb8b7c57ca3e927642085b3f2df39c4b36c70d')
 
 check() {
   unzip adblock-plus-$pkgver.xpi manifest.json



[arch-commits] Commit in dokuwiki/repos/community-any (4 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:58:13
  Author: spupykin
Revision: 1293042

archrelease: copy trunk to community-any

Added:
  dokuwiki/repos/community-any/PKGBUILD
(from rev 1293041, dokuwiki/trunk/PKGBUILD)
  dokuwiki/repos/community-any/apache.example.conf
(from rev 1293041, dokuwiki/trunk/apache.example.conf)
Deleted:
  dokuwiki/repos/community-any/PKGBUILD
  dokuwiki/repos/community-any/apache.example.conf

-+
 PKGBUILD|  134 +-
 apache.example.conf |   14 ++---
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:57:47 UTC (rev 1293041)
+++ PKGBUILD2022-09-05 15:58:13 UTC (rev 1293042)
@@ -1,67 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sébastien Luttringer
-
-pkgname=dokuwiki
-pkgver=20220731
-pkgrel=1
-_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
-_pkgver=${_pkgver/_/}
-_pkgver=${_pkgver/rc/}
-[[ $pkgver == *"rc" ]] && _release=candidate || _release=stable
-pkgdesc='Simple to use and highly versatile Open Source wiki software'
-arch=('any')
-url='https://www.dokuwiki.org/'
-license=('GPL')
-depends=('php')
-backup=('etc/webapps/dokuwiki/.htaccess'
-'etc/httpd/conf/extra/dokuwiki.conf')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
-'apache.example.conf')
-sha256sums=('595247d29adef875420c38f73aaa16799c1b93b363024bf9e572d29f579a398a'
-'237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
-
-package() {
-  cd "$pkgdir"
-  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
-  cp -a "$srcdir"/$pkgname-release_${_release}_${_pkgver} 
usr/share/webapps/dokuwiki
-
-  # move data in var
-  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
-  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
-
-  # move plugins in var
-  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
-  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
-
-  # move templates in var
-  mv usr/share/webapps/dokuwiki/lib/tpl var/lib/dokuwiki
-  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/tpl
-
-  # move config in /etc
-  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
-  chmod g=rwx etc/webapps/dokuwiki
-  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
-
-  # inform update on changes.log
-  touch var/lib/dokuwiki/data/changes.log
-  chmod 0644 var/lib/dokuwiki/data/changes.log
-
-  # use default htaccess
-  cp usr/share/webapps/dokuwiki/.htaccess.dist etc/webapps/dokuwiki/.htaccess
-  ln -s /etc/webapps/dokuwiki/.htaccess usr/share/webapps/dokuwiki/.htaccess
-
-  # fix rights and ownership
-  chown 33:33 var/lib/dokuwiki/plugins
-  chown -R 33:33 var/lib/dokuwiki/data
-  chown -R 33:33 etc/webapps/dokuwiki
-
-  # apache config
-  install -Dm0644 "$srcdir"/apache.example.conf 
etc/httpd/conf/extra/dokuwiki.conf
-
-  # php.ini
-#  install -dm0755 "$pkgdir"/etc/php/conf.d/
-#  echo 'open_basedir = 
${open_basedir}:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/' 
>"$pkgdir"/etc/php/conf.d/dokuwiki.ini
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dokuwiki/repos/community-any/PKGBUILD (from rev 1293041, 
dokuwiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:58:13 UTC (rev 1293042)
@@ -0,0 +1,67 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sébastien Luttringer
+
+pkgname=dokuwiki
+pkgver=20220731a
+pkgrel=1
+_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
+_pkgver=${_pkgver/_/}
+_pkgver=${_pkgver/rc/}
+[[ $pkgver == *"rc" ]] && _release=candidate || _release=stable
+pkgdesc='Simple to use and highly versatile Open Source wiki software'
+arch=('any')
+url='https://www.dokuwiki.org/'
+license=('GPL')
+depends=('php')
+backup=('etc/webapps/dokuwiki/.htaccess'
+'etc/httpd/conf/extra/dokuwiki.conf')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
+'apache.example.conf')
+sha256sums=('b491e7fb4386f788a121101488096e7c08d0161b389710b0a9e8f4b462a56a4f'
+'237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
+
+package() {
+  cd "$pkgdir"
+  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
+  cp -a "$srcdir"/$pkgname-release_${_release}_${_pkgver} 
usr/share/webapps/dokuwiki
+
+  # move data in var
+  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
+  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
+
+  # move plugins in var
+  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
+  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
+
+ 

[arch-commits] Commit in dokuwiki/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:57:47
  Author: spupykin
Revision: 1293041

upgpkg: dokuwiki 20220731a-1

Modified:
  dokuwiki/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:46:33 UTC (rev 1293040)
+++ PKGBUILD2022-09-05 15:57:47 UTC (rev 1293041)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien Luttringer
 
 pkgname=dokuwiki
-pkgver=20220731
+pkgver=20220731a
 pkgrel=1
 _pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
 _pkgver=${_pkgver/_/}
@@ -18,7 +18,7 @@
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
 'apache.example.conf')
-sha256sums=('595247d29adef875420c38f73aaa16799c1b93b363024bf9e572d29f579a398a'
+sha256sums=('b491e7fb4386f788a121101488096e7c08d0161b389710b0a9e8f4b462a56a4f'
 '237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
 
 package() {



[arch-commits] Commit in udpxy/repos/community-x86_64 (4 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:42:43
  Author: spupykin
Revision: 1293037

archrelease: copy trunk to community-x86_64

Added:
  udpxy/repos/community-x86_64/PKGBUILD
(from rev 1293036, udpxy/trunk/PKGBUILD)
  udpxy/repos/community-x86_64/udpxy.service
(from rev 1293036, udpxy/trunk/udpxy.service)
Deleted:
  udpxy/repos/community-x86_64/PKGBUILD
  udpxy/repos/community-x86_64/udpxy.service

---+
 PKGBUILD  |   64 
 udpxy.service |   20 -
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:42:18 UTC (rev 1293036)
+++ PKGBUILD2022-09-05 15:42:43 UTC (rev 1293037)
@@ -1,32 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Konstantin Shabanov 
-# Contributor: Evka
-# Maintainer: Jose Riha 
-
-pkgname=udpxy
-pkgver=1.0.25
-_pkgver=1.0-24.1
-pkgrel=2
-pkgdesc="small-footprint UNIX/Linux daemon to relay multicast UDP traffic to 
client's TCP (HTTP) connection."
-arch=(x86_64)
-url="https://github.com/pcherenkov/udpxy;
-license=('GPL3')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pcherenkov/udpxy/archive/${_pkgver}.tar.gz;
-   $pkgname.service)
-sha256sums=('27e5d3d2bae29522354d1505a3cc931c96953846d68eeb25bb99fe9b0cb6cbe0'
-'8ea0c97ccd00bff2bc3b1d987d5e55b215bc4cd966623be669160445bdd5a25a')
-
-prepare() {
-  sed -e 's|-Werror||' -i udpxy-${_pkgver}/chipmunk/Makefile
-}
-
-build() {
-  cd "$srcdir"/udpxy-${_pkgver}/chipmunk
-  make PREFIX=/usr CC="gcc ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
-}
-
-package() {
-  cd "$srcdir"/udpxy-${_pkgver}/chipmunk
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-  install -D -m644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-}

Copied: udpxy/repos/community-x86_64/PKGBUILD (from rev 1293036, 
udpxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:42:43 UTC (rev 1293037)
@@ -0,0 +1,32 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Konstantin Shabanov 
+# Contributor: Evka
+# Maintainer: Jose Riha 
+
+pkgname=udpxy
+pkgver=1.0.25.1
+_pkgver=1.0-24.1
+pkgrel=1
+pkgdesc="small-footprint UNIX/Linux daemon to relay multicast UDP traffic to 
client's TCP (HTTP) connection."
+arch=(x86_64)
+url="https://github.com/pcherenkov/udpxy;
+license=('GPL3')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pcherenkov/udpxy/archive/${_pkgver}.tar.gz;
+   $pkgname.service)
+sha256sums=('27e5d3d2bae29522354d1505a3cc931c96953846d68eeb25bb99fe9b0cb6cbe0'
+'8ea0c97ccd00bff2bc3b1d987d5e55b215bc4cd966623be669160445bdd5a25a')
+
+prepare() {
+  sed -e 's|-Werror||' -i udpxy-${_pkgver}/chipmunk/Makefile
+}
+
+build() {
+  cd "$srcdir"/udpxy-${_pkgver}/chipmunk
+  make PREFIX=/usr CC="gcc ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
+}
+
+package() {
+  cd "$srcdir"/udpxy-${_pkgver}/chipmunk
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+  install -D -m644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+}

Deleted: udpxy.service
===
--- udpxy.service   2022-09-05 15:42:18 UTC (rev 1293036)
+++ udpxy.service   2022-09-05 15:42:43 UTC (rev 1293037)
@@ -1,10 +0,0 @@
-[Unit]
-Description=UDP multicast to TCP (HTTP) relay proxy
-After=network.target
-
-[Service]
-Type=simple
-ExecStart=/usr/bin/udpxy -T -S -p 4022 -B 256kb
-
-[Install]
-WantedBy=multi-user.target

Copied: udpxy/repos/community-x86_64/udpxy.service (from rev 1293036, 
udpxy/trunk/udpxy.service)
===
--- udpxy.service   (rev 0)
+++ udpxy.service   2022-09-05 15:42:43 UTC (rev 1293037)
@@ -0,0 +1,10 @@
+[Unit]
+Description=UDP multicast to TCP (HTTP) relay proxy
+After=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/udpxy -T -S -p 4022 -B 256kb
+
+[Install]
+WantedBy=multi-user.target



[arch-commits] Commit in udpxy/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:42:18
  Author: spupykin
Revision: 1293036

upgpkg: udpxy 1.0.25.1-1

Modified:
  udpxy/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:41:52 UTC (rev 1293035)
+++ PKGBUILD2022-09-05 15:42:18 UTC (rev 1293036)
@@ -4,9 +4,9 @@
 # Maintainer: Jose Riha 
 
 pkgname=udpxy
-pkgver=1.0.25
+pkgver=1.0.25.1
 _pkgver=1.0-24.1
-pkgrel=2
+pkgrel=1
 pkgdesc="small-footprint UNIX/Linux daemon to relay multicast UDP traffic to 
client's TCP (HTTP) connection."
 arch=(x86_64)
 url="https://github.com/pcherenkov/udpxy;



[arch-commits] Commit in perl-yaml-libyaml/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:41:52
  Author: spupykin
Revision: 1293035

archrelease: copy trunk to community-x86_64

Added:
  perl-yaml-libyaml/repos/community-x86_64/PKGBUILD
(from rev 1293034, perl-yaml-libyaml/trunk/PKGBUILD)
Deleted:
  perl-yaml-libyaml/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:41:28 UTC (rev 1293034)
+++ PKGBUILD2022-09-05 15:41:52 UTC (rev 1293035)
@@ -1,41 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: John D Jones III AKA jnbek 
-# Generator  : CPANPLUS::Dist::Arch 1.32
-
-pkgname='perl-yaml-libyaml'
-pkgver=0.83
-pkgrel=3
-pkgdesc="Perl YAML Serialization using XS and libyaml"
-arch=('x86_64')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=()
-url='https://search.cpan.org/dist/YAML-LibYAML/'
-source=("https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-$pkgver.tar.gz;)
-sha256sums=('b47175b4ff397ad75a4f7781d3d83c08637da6ff0bae326af3b389d854bec490')
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
-  MODULEBUILDRC=/dev/null
-cd "$srcdir/YAML-LibYAML-$pkgver"
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$srcdir/YAML-LibYAML-$pkgver"
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$srcdir/YAML-LibYAML-$pkgver"
-  make install
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-yaml-libyaml/repos/community-x86_64/PKGBUILD (from rev 1293034, 
perl-yaml-libyaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:41:52 UTC (rev 1293035)
@@ -0,0 +1,41 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: John D Jones III AKA jnbek 
+# Generator  : CPANPLUS::Dist::Arch 1.32
+
+pkgname='perl-yaml-libyaml'
+pkgver=0.84
+pkgrel=1
+pkgdesc="Perl YAML Serialization using XS and libyaml"
+arch=('x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=()
+url='https://search.cpan.org/dist/YAML-LibYAML/'
+source=("https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-$pkgver.tar.gz;)
+sha256sums=('225bcb39be2d5e3d02df7888d5f99fd8712f048ba539b09232ca1481e70bfd05')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
+  MODULEBUILDRC=/dev/null
+cd "$srcdir/YAML-LibYAML-$pkgver"
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$srcdir/YAML-LibYAML-$pkgver"
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$srcdir/YAML-LibYAML-$pkgver"
+  make install
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}



[arch-commits] Commit in perl-yaml-libyaml/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:41:28
  Author: spupykin
Revision: 1293034

upgpkg: perl-yaml-libyaml 0.84-1

Modified:
  perl-yaml-libyaml/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:40:36 UTC (rev 1293033)
+++ PKGBUILD2022-09-05 15:41:28 UTC (rev 1293034)
@@ -3,8 +3,8 @@
 # Generator  : CPANPLUS::Dist::Arch 1.32
 
 pkgname='perl-yaml-libyaml'
-pkgver=0.83
-pkgrel=3
+pkgver=0.84
+pkgrel=1
 pkgdesc="Perl YAML Serialization using XS and libyaml"
 arch=('x86_64')
 license=('PerlArtistic' 'GPL')
@@ -13,7 +13,7 @@
 makedepends=()
 url='https://search.cpan.org/dist/YAML-LibYAML/'
 
source=("https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-$pkgver.tar.gz;)
-sha256sums=('b47175b4ff397ad75a4f7781d3d83c08637da6ff0bae326af3b389d854bec490')
+sha256sums=('225bcb39be2d5e3d02df7888d5f99fd8712f048ba539b09232ca1481e70bfd05')
 
 build() {
   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \



[arch-commits] Commit in perl-www-mechanize/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:40:36
  Author: spupykin
Revision: 1293033

archrelease: copy trunk to community-any

Added:
  perl-www-mechanize/repos/community-any/PKGBUILD
(from rev 1293032, perl-www-mechanize/trunk/PKGBUILD)
Deleted:
  perl-www-mechanize/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:39:58 UTC (rev 1293032)
+++ PKGBUILD2022-09-05 15:40:36 UTC (rev 1293033)
@@ -1,28 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Francois Charette 
-
-pkgname=perl-www-mechanize
-pkgver=2.13
-pkgrel=1
-pkgdesc="Automates web page form & link interaction"
-arch=(any)
-url="https://search.cpan.org/dist/WWW-Mechanize;
-license=('GPL' 'PerlArtistic')
-depends=('perl-libwww' 'perl-html-parser' 'perl-uri' 
'perl-http-response-encoding'
-'perl-http-server-simple' 'perl-test-warn' 'perl-html-form')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/S/SI/SIMBABQUE/WWW-Mechanize-$pkgver.tar.gz;)
-sha256sums=('968e1e46312c1c4a33ae8bd9fdadb3e77ea1e74613e589f115321a4f334af243')
-
-build() {
-  cd  "$srcdir"/WWW-Mechanize-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/WWW-Mechanize-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-www-mechanize/repos/community-any/PKGBUILD (from rev 1293032, 
perl-www-mechanize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:40:36 UTC (rev 1293033)
@@ -0,0 +1,28 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Francois Charette 
+
+pkgname=perl-www-mechanize
+pkgver=2.15
+pkgrel=1
+pkgdesc="Automates web page form & link interaction"
+arch=(any)
+url="https://search.cpan.org/dist/WWW-Mechanize;
+license=('GPL' 'PerlArtistic')
+depends=('perl-libwww' 'perl-html-parser' 'perl-uri' 
'perl-http-response-encoding'
+'perl-http-server-simple' 'perl-test-warn' 'perl-html-form')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/S/SI/SIMBABQUE/WWW-Mechanize-$pkgver.tar.gz;)
+sha256sums=('91d0dc3235027d19fc485e93833ec92497bc508e31d391eb07ee664f988ca9b3')
+
+build() {
+  cd  "$srcdir"/WWW-Mechanize-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/WWW-Mechanize-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-www-mechanize/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:39:58
  Author: spupykin
Revision: 1293032

upgpkg: perl-www-mechanize 2.15-1

Modified:
  perl-www-mechanize/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:39:34 UTC (rev 1293031)
+++ PKGBUILD2022-09-05 15:39:58 UTC (rev 1293032)
@@ -2,7 +2,7 @@
 # Contributor: Francois Charette 
 
 pkgname=perl-www-mechanize
-pkgver=2.13
+pkgver=2.15
 pkgrel=1
 pkgdesc="Automates web page form & link interaction"
 arch=(any)
@@ -12,7 +12,7 @@
 'perl-http-server-simple' 'perl-test-warn' 'perl-html-form')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/S/SI/SIMBABQUE/WWW-Mechanize-$pkgver.tar.gz;)
-sha256sums=('968e1e46312c1c4a33ae8bd9fdadb3e77ea1e74613e589f115321a4f334af243')
+sha256sums=('91d0dc3235027d19fc485e93833ec92497bc508e31d391eb07ee664f988ca9b3')
 
 build() {
   cd  "$srcdir"/WWW-Mechanize-$pkgver



[arch-commits] Commit in perl-test-warn/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:39:34
  Author: spupykin
Revision: 1293031

archrelease: copy trunk to community-any

Added:
  perl-test-warn/repos/community-any/PKGBUILD
(from rev 1293030, perl-test-warn/trunk/PKGBUILD)
Deleted:
  perl-test-warn/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:39:10 UTC (rev 1293030)
+++ PKGBUILD2022-09-05 15:39:34 UTC (rev 1293031)
@@ -1,28 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-# Contributor: Firmicus 
-
-pkgname=perl-test-warn
-pkgver=0.36
-pkgrel=2
-pkgdesc="Perl extension to test methods for warnings "
-arch=(any)
-url="https://search.cpan.org/dist/Test-Warn/;
-license=('GPL' 'PerlArtistic')
-depends=('perl-tree-dag-node' 'perl-sub-uplevel>=0.12' 'perl>=5.10.0')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/B/BI/BIGJ/Test-Warn-$pkgver.tar.gz;)
-sha256sums=('ecbca346d379cef8d3c0e4ac0c8eb3b2613d737ffaaeae52271c38d7bf3c6cda')
-
-build() {
-  cd  "$srcdir"/Test-Warn-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/Test-Warn-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-test-warn/repos/community-any/PKGBUILD (from rev 1293030, 
perl-test-warn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:39:34 UTC (rev 1293031)
@@ -0,0 +1,28 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+# Contributor: Firmicus 
+
+pkgname=perl-test-warn
+pkgver=0.37
+pkgrel=1
+pkgdesc="Perl extension to test methods for warnings "
+arch=(any)
+url="https://search.cpan.org/dist/Test-Warn/;
+license=('GPL' 'PerlArtistic')
+depends=('perl-tree-dag-node' 'perl-sub-uplevel>=0.12' 'perl>=5.10.0')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/B/BI/BIGJ/Test-Warn-$pkgver.tar.gz;)
+sha256sums=('98ca32e7f2f5ea89b8bfb9a0609977f3d153e242e2e51705126cb954f1a06b57')
+
+build() {
+  cd  "$srcdir"/Test-Warn-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/Test-Warn-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-test-warn/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:39:10
  Author: spupykin
Revision: 1293030

upgpkg: perl-test-warn 0.37-1

Modified:
  perl-test-warn/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:39:03 UTC (rev 1293029)
+++ PKGBUILD2022-09-05 15:39:10 UTC (rev 1293030)
@@ -3,8 +3,8 @@
 # Contributor: Firmicus 
 
 pkgname=perl-test-warn
-pkgver=0.36
-pkgrel=2
+pkgver=0.37
+pkgrel=1
 pkgdesc="Perl extension to test methods for warnings "
 arch=(any)
 url="https://search.cpan.org/dist/Test-Warn/;
@@ -12,7 +12,7 @@
 depends=('perl-tree-dag-node' 'perl-sub-uplevel>=0.12' 'perl>=5.10.0')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/B/BI/BIGJ/Test-Warn-$pkgver.tar.gz;)
-sha256sums=('ecbca346d379cef8d3c0e4ac0c8eb3b2613d737ffaaeae52271c38d7bf3c6cda')
+sha256sums=('98ca32e7f2f5ea89b8bfb9a0609977f3d153e242e2e51705126cb954f1a06b57')
 
 build() {
   cd  "$srcdir"/Test-Warn-$pkgver



[arch-commits] Commit in perl-math-base85/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:39:03
  Author: spupykin
Revision: 1293029

archrelease: copy trunk to community-any

Added:
  perl-math-base85/repos/community-any/PKGBUILD
(from rev 1293028, perl-math-base85/trunk/PKGBUILD)
Deleted:
  perl-math-base85/repos/community-any/PKGBUILD

--+
 PKGBUILD |   50 +-
 1 file changed, 25 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:38:54 UTC (rev 1293028)
+++ PKGBUILD2022-09-05 15:39:03 UTC (rev 1293029)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Charles Mauch 
-
-pkgname=perl-math-base85
-pkgver=0.4
-pkgrel=5
-pkgdesc="Perl/CPAN Module Math::Base85"
-arch=("any")
-url="https://search.cpan.org/dist/Math-Base85;
-license=("GPL" "PerlArtistic")
-source=("https://cpan.metacpan.org/authors/id/P/PT/PTC/Math-Base85-$pkgver.tar.gz;)
-sha256sums=('9ea858600f925e1ffc7f0a863b7835892d9899fcf44b3e5090eca3a469b98b0d')
-
-build() {
-  cd "$srcdir"/Math-Base85-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir"/Math-Base85-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-math-base85/repos/community-any/PKGBUILD (from rev 1293028, 
perl-math-base85/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:39:03 UTC (rev 1293029)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Charles Mauch 
+
+pkgname=perl-math-base85
+pkgver=0.5
+pkgrel=1
+pkgdesc="Perl/CPAN Module Math::Base85"
+arch=("any")
+url="https://search.cpan.org/dist/Math-Base85;
+license=("GPL" "PerlArtistic")
+source=("https://cpan.metacpan.org/authors/id/P/PT/PTC/Math-Base85-$pkgver.tar.gz;)
+sha256sums=('0b05f7fb650a8797b392d8ea90f2e72bfb8d08505c9a2e0b955dfd45a72a34e5')
+
+build() {
+  cd "$srcdir"/Math-Base85-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir"/Math-Base85-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-math-base85/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:38:54
  Author: spupykin
Revision: 1293028

upgpkg: perl-math-base85 0.5-1

Modified:
  perl-math-base85/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:38:31 UTC (rev 1293027)
+++ PKGBUILD2022-09-05 15:38:54 UTC (rev 1293028)
@@ -2,14 +2,14 @@
 # Maintainer: Charles Mauch 
 
 pkgname=perl-math-base85
-pkgver=0.4
-pkgrel=5
+pkgver=0.5
+pkgrel=1
 pkgdesc="Perl/CPAN Module Math::Base85"
 arch=("any")
 url="https://search.cpan.org/dist/Math-Base85;
 license=("GPL" "PerlArtistic")
 
source=("https://cpan.metacpan.org/authors/id/P/PT/PTC/Math-Base85-$pkgver.tar.gz;)
-sha256sums=('9ea858600f925e1ffc7f0a863b7835892d9899fcf44b3e5090eca3a469b98b0d')
+sha256sums=('0b05f7fb650a8797b392d8ea90f2e72bfb8d08505c9a2e0b955dfd45a72a34e5')
 
 build() {
   cd "$srcdir"/Math-Base85-$pkgver



[arch-commits] Commit in perl-io-tee/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:38:31
  Author: spupykin
Revision: 1293027

archrelease: copy trunk to community-any

Added:
  perl-io-tee/repos/community-any/PKGBUILD
(from rev 1293026, perl-io-tee/trunk/PKGBUILD)
Deleted:
  perl-io-tee/repos/community-any/PKGBUILD

--+
 PKGBUILD |   50 +-
 1 file changed, 25 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:37:52 UTC (rev 1293026)
+++ PKGBUILD2022-09-05 15:38:31 UTC (rev 1293027)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Charles Mauch 
-
-pkgname=perl-io-tee
-pkgver=0.65
-pkgrel=5
-pkgdesc="Perl/CPAN Module IO::Tee : Multiplex output to multiple handles"
-arch=("any")
-url="https://search.cpan.org/dist/IO-Tee;
-license=("GPL" "PerlArtistic")
-source=("https://cpan.metacpan.org/authors/id/N/NE/NEILB/IO-Tee-$pkgver.tar.gz;)
-sha256sums=('c63dcd109b268962f867407da2654282e3c85113dc7e9655fe8a62331d490c12')
-
-build() {
-  cd "$srcdir"/IO-Tee-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir"/IO-Tee-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-io-tee/repos/community-any/PKGBUILD (from rev 1293026, 
perl-io-tee/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:38:31 UTC (rev 1293027)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Charles Mauch 
+
+pkgname=perl-io-tee
+pkgver=0.66
+pkgrel=1
+pkgdesc="Perl/CPAN Module IO::Tee : Multiplex output to multiple handles"
+arch=("any")
+url="https://search.cpan.org/dist/IO-Tee;
+license=("GPL" "PerlArtistic")
+source=("https://cpan.metacpan.org/authors/id/N/NE/NEILB/IO-Tee-$pkgver.tar.gz;)
+sha256sums=('2d9ce7206516f9c30863a367aa1c2b9b35702e369b0abaa15f99fb2cc08552e0')
+
+build() {
+  cd "$srcdir"/IO-Tee-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir"/IO-Tee-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-io-tee/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:37:52
  Author: spupykin
Revision: 1293026

upgpkg: perl-io-tee 0.66-1

Modified:
  perl-io-tee/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:37:13 UTC (rev 1293025)
+++ PKGBUILD2022-09-05 15:37:52 UTC (rev 1293026)
@@ -2,14 +2,14 @@
 # Maintainer: Charles Mauch 
 
 pkgname=perl-io-tee
-pkgver=0.65
-pkgrel=5
+pkgver=0.66
+pkgrel=1
 pkgdesc="Perl/CPAN Module IO::Tee : Multiplex output to multiple handles"
 arch=("any")
 url="https://search.cpan.org/dist/IO-Tee;
 license=("GPL" "PerlArtistic")
 
source=("https://cpan.metacpan.org/authors/id/N/NE/NEILB/IO-Tee-$pkgver.tar.gz;)
-sha256sums=('c63dcd109b268962f867407da2654282e3c85113dc7e9655fe8a62331d490c12')
+sha256sums=('2d9ce7206516f9c30863a367aa1c2b9b35702e369b0abaa15f99fb2cc08552e0')
 
 build() {
   cd "$srcdir"/IO-Tee-$pkgver



[arch-commits] Commit in perl-email-mime-contenttype/repos/community-any (2 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:37:13
  Author: spupykin
Revision: 1293025

archrelease: copy trunk to community-any

Added:
  perl-email-mime-contenttype/repos/community-any/PKGBUILD
(from rev 1293024, perl-email-mime-contenttype/trunk/PKGBUILD)
Deleted:
  perl-email-mime-contenttype/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:36:34 UTC (rev 1293024)
+++ PKGBUILD2022-09-05 15:37:13 UTC (rev 1293025)
@@ -1,27 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-email-mime-contenttype
-pkgver=1.026
-pkgrel=1
-pkgdesc="Parse a MIME Content-Type Header "
-arch=('any')
-url="https://search.cpan.org/dist/Email-MIME-ContentType;
-license=('GPL' 'PerlArtistic')
-depends=('perl' 'perl-text-unidecode')
-options=('!emptydirs')
-source=(https://www.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-MIME-ContentType-$pkgver.tar.gz)
-sha256sums=('74491930b7a93b8e7fda812bf669eee66ec8b9519958e5b01dcf8ccf92a9507d')
-
-build() {
-  cd  "$srcdir"/Email-MIME-ContentType-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/Email-MIME-ContentType-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-email-mime-contenttype/repos/community-any/PKGBUILD (from rev 
1293024, perl-email-mime-contenttype/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:37:13 UTC (rev 1293025)
@@ -0,0 +1,27 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-email-mime-contenttype
+pkgver=1.027
+pkgrel=1
+pkgdesc="Parse a MIME Content-Type Header "
+arch=('any')
+url="https://search.cpan.org/dist/Email-MIME-ContentType;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'perl-text-unidecode')
+options=('!emptydirs')
+source=(https://www.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-MIME-ContentType-$pkgver.tar.gz)
+sha256sums=('62d93e8029ff54afe2aa95ffa19b88cb64dfa10f50d55675c8023ee03f6669a5')
+
+build() {
+  cd  "$srcdir"/Email-MIME-ContentType-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/Email-MIME-ContentType-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-email-mime-contenttype/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:36:34
  Author: spupykin
Revision: 1293024

upgpkg: perl-email-mime-contenttype 1.027-1

Modified:
  perl-email-mime-contenttype/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:35:40 UTC (rev 1293023)
+++ PKGBUILD2022-09-05 15:36:34 UTC (rev 1293024)
@@ -2,7 +2,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-email-mime-contenttype
-pkgver=1.026
+pkgver=1.027
 pkgrel=1
 pkgdesc="Parse a MIME Content-Type Header "
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl' 'perl-text-unidecode')
 options=('!emptydirs')
 
source=(https://www.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-MIME-ContentType-$pkgver.tar.gz)
-sha256sums=('74491930b7a93b8e7fda812bf669eee66ec8b9519958e5b01dcf8ccf92a9507d')
+sha256sums=('62d93e8029ff54afe2aa95ffa19b88cb64dfa10f50d55675c8023ee03f6669a5')
 
 build() {
   cd  "$srcdir"/Email-MIME-ContentType-$pkgver



[arch-commits] Commit in perl-dbd-pg/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:35:40
  Author: spupykin
Revision: 1293023

archrelease: copy trunk to community-x86_64

Added:
  perl-dbd-pg/repos/community-x86_64/PKGBUILD
(from rev 1293022, perl-dbd-pg/trunk/PKGBUILD)
Deleted:
  perl-dbd-pg/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:35:01 UTC (rev 1293022)
+++ PKGBUILD2022-09-05 15:35:40 UTC (rev 1293023)
@@ -1,27 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: François Charette 
-
-pkgname=perl-dbd-pg
-pkgver=3.15.1
-pkgrel=1
-pkgdesc="Postgres Driver for DBI"
-arch=('x86_64')
-url="https://search.cpan.org/dist/DBD-Pg;
-license=('GPL' 'PerlArtistic')
-depends=('perl-dbi>=1.52' 'postgresql-libs')
-options=('!emptydirs')
-source=("https://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
-sha512sums=('9714b7f69e7f788652fb7f045eb703c940330576fe83849021d9c0fa48a5cceba7bc119e10a22eefa1d43e1c65bead701711e42738f27c3153e1aa0eb44c977e')
-
-build() {
-  cd  DBD-Pg-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  DBD-Pg-${pkgver}
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-dbd-pg/repos/community-x86_64/PKGBUILD (from rev 1293022, 
perl-dbd-pg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:35:40 UTC (rev 1293023)
@@ -0,0 +1,27 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: François Charette 
+
+pkgname=perl-dbd-pg
+pkgver=3.16.0
+pkgrel=1
+pkgdesc="Postgres Driver for DBI"
+arch=('x86_64')
+url="https://search.cpan.org/dist/DBD-Pg;
+license=('GPL' 'PerlArtistic')
+depends=('perl-dbi>=1.52' 'postgresql-libs')
+options=('!emptydirs')
+source=("https://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
+sha512sums=('03fd29af326405772aff65a9f28cad3da1f81f4be17ef965ccc0c0c23b740ce94740a08bc427943ed6f34466becb54978dd92bcf5acb0139bffd957505ff49da')
+
+build() {
+  cd  DBD-Pg-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  DBD-Pg-${pkgver}
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-dbd-pg/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:35:01
  Author: spupykin
Revision: 1293022

upgpkg: perl-dbd-pg 3.16.0-1

Modified:
  perl-dbd-pg/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:34:32 UTC (rev 1293021)
+++ PKGBUILD2022-09-05 15:35:01 UTC (rev 1293022)
@@ -2,7 +2,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-dbd-pg
-pkgver=3.15.1
+pkgver=3.16.0
 pkgrel=1
 pkgdesc="Postgres Driver for DBI"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('perl-dbi>=1.52' 'postgresql-libs')
 options=('!emptydirs')
 
source=("https://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
-sha512sums=('9714b7f69e7f788652fb7f045eb703c940330576fe83849021d9c0fa48a5cceba7bc119e10a22eefa1d43e1c65bead701711e42738f27c3153e1aa0eb44c977e')
+sha512sums=('03fd29af326405772aff65a9f28cad3da1f81f4be17ef965ccc0c0c23b740ce94740a08bc427943ed6f34466becb54978dd92bcf5acb0139bffd957505ff49da')
 
 build() {
   cd  DBD-Pg-${pkgver}



[arch-commits] Commit in perl-datetime-locale/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:34:32
  Author: spupykin
Revision: 1293021

archrelease: copy trunk to community-any

Added:
  perl-datetime-locale/repos/community-any/PKGBUILD
(from rev 1293020, perl-datetime-locale/trunk/PKGBUILD)
Deleted:
  perl-datetime-locale/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:33:08 UTC (rev 1293020)
+++ PKGBUILD2022-09-05 15:34:32 UTC (rev 1293021)
@@ -1,28 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: François Charette 
-
-pkgname=perl-datetime-locale
-pkgver=1.35
-pkgrel=1
-pkgdesc="Localization support for DateTime.pm "
-arch=(any)
-url="https://search.cpan.org/dist/DateTime-Locale;
-license=('GPL' 'PerlArtistic')
-depends=('perl-params-validate' 'perl-list-moreutils'
-'perl-file-sharedir' 'perl-file-sharedir-install')
-options=('!emptydirs')
-source=(https://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-$pkgver.tar.gz)
-sha256sums=('6104a15626331b521746a8ab30c1d978420b3347c235ee52c2e6de5ce2113aac')
-
-build() {
-  cd  "$srcdir"/DateTime-Locale-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/DateTime-Locale-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-datetime-locale/repos/community-any/PKGBUILD (from rev 1293020, 
perl-datetime-locale/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:34:32 UTC (rev 1293021)
@@ -0,0 +1,28 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: François Charette 
+
+pkgname=perl-datetime-locale
+pkgver=1.36
+pkgrel=1
+pkgdesc="Localization support for DateTime.pm "
+arch=(any)
+url="https://search.cpan.org/dist/DateTime-Locale;
+license=('GPL' 'PerlArtistic')
+depends=('perl-params-validate' 'perl-list-moreutils'
+'perl-file-sharedir' 'perl-file-sharedir-install')
+options=('!emptydirs')
+source=(https://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-$pkgver.tar.gz)
+sha256sums=('90a8243f2b2d4068019c65178600e76e03f5b478cb41d18c8c81cdf0d481f0a4')
+
+build() {
+  cd  "$srcdir"/DateTime-Locale-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/DateTime-Locale-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-datetime-locale/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:33:08
  Author: spupykin
Revision: 1293020

upgpkg: perl-datetime-locale 1.36-1

Modified:
  perl-datetime-locale/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:32:59 UTC (rev 1293019)
+++ PKGBUILD2022-09-05 15:33:08 UTC (rev 1293020)
@@ -2,7 +2,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-datetime-locale
-pkgver=1.35
+pkgver=1.36
 pkgrel=1
 pkgdesc="Localization support for DateTime.pm "
 arch=(any)
@@ -12,7 +12,7 @@
 'perl-file-sharedir' 'perl-file-sharedir-install')
 options=('!emptydirs')
 
source=(https://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-$pkgver.tar.gz)
-sha256sums=('6104a15626331b521746a8ab30c1d978420b3347c235ee52c2e6de5ce2113aac')
+sha256sums=('90a8243f2b2d4068019c65178600e76e03f5b478cb41d18c8c81cdf0d481f0a4')
 
 build() {
   cd  "$srcdir"/DateTime-Locale-$pkgver



[arch-commits] Commit in perl-cpan-perl-releases/repos/community-any (2 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:32:59
  Author: spupykin
Revision: 1293019

archrelease: copy trunk to community-any

Added:
  perl-cpan-perl-releases/repos/community-any/PKGBUILD
(from rev 1293018, perl-cpan-perl-releases/trunk/PKGBUILD)
Deleted:
  perl-cpan-perl-releases/repos/community-any/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:32:20 UTC (rev 1293018)
+++ PKGBUILD2022-09-05 15:32:59 UTC (rev 1293019)
@@ -1,29 +0,0 @@
-# Maintainer: 
-
-pkgname=perl-cpan-perl-releases
-pkgver=5.20220620
-pkgrel=1
-pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
-arch=('any')
-url="https://metacpan.org/release/CPAN-Perl-Releases;
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz;)
-sha256sums=('61de43181c7224b2c55da0406305343450fabce20cceaaa1f5aa584efda80117')
-
-build() {
-  cd CPAN-Perl-Releases-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd CPAN-Perl-Releases-$pkgver
-  make test
-}
-
-package() {
-  cd CPAN-Perl-Releases-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-cpan-perl-releases/repos/community-any/PKGBUILD (from rev 1293018, 
perl-cpan-perl-releases/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:32:59 UTC (rev 1293019)
@@ -0,0 +1,29 @@
+# Maintainer: 
+
+pkgname=perl-cpan-perl-releases
+pkgver=5.20220820
+pkgrel=1
+pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
+arch=('any')
+url="https://metacpan.org/release/CPAN-Perl-Releases;
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz;)
+sha256sums=('8bfac21bc577ab05347f92d5fc6b0dc3a939c43b60332dbc35a19137202c425f')
+
+build() {
+  cd CPAN-Perl-Releases-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd CPAN-Perl-Releases-$pkgver
+  make test
+}
+
+package() {
+  cd CPAN-Perl-Releases-$pkgver
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in perl-cpan-perl-releases/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:32:20
  Author: spupykin
Revision: 1293018

upgpkg: perl-cpan-perl-releases 5.20220820-1

Modified:
  perl-cpan-perl-releases/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:31:41 UTC (rev 1293017)
+++ PKGBUILD2022-09-05 15:32:20 UTC (rev 1293018)
@@ -1,7 +1,7 @@
 # Maintainer: 
 
 pkgname=perl-cpan-perl-releases
-pkgver=5.20220620
+pkgver=5.20220820
 pkgrel=1
 pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz;)
-sha256sums=('61de43181c7224b2c55da0406305343450fabce20cceaaa1f5aa584efda80117')
+sha256sums=('8bfac21bc577ab05347f92d5fc6b0dc3a939c43b60332dbc35a19137202c425f')
 
 build() {
   cd CPAN-Perl-Releases-$pkgver



[arch-commits] Commit in perl-chart/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:31:41
  Author: spupykin
Revision: 1293017

archrelease: copy trunk to community-any

Added:
  perl-chart/repos/community-any/PKGBUILD
(from rev 1293016, perl-chart/trunk/PKGBUILD)
Deleted:
  perl-chart/repos/community-any/PKGBUILD

--+
 PKGBUILD |   60 +---
 1 file changed, 33 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:31:32 UTC (rev 1293016)
+++ PKGBUILD2022-09-05 15:31:41 UTC (rev 1293017)
@@ -1,27 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-chart
-pkgver=2.402.3
-pkgrel=1
-pkgdesc="Business chart widget collection"
-arch=('any')
-url="https://search.cpan.org/dist/Chart;
-license=('GPL' 'PerlArtistic')
-depends=('perl-gd>=1.2')
-options=('!emptydirs')
-source=(https://www.cpan.org/authors/id/L/LI/LICHTKIND/Chart-v$pkgver.tar.gz)
-sha256sums=('73f3c5e490d91edbf88895c93619c2913c94f562933d18e14e6bd64b5c21a009')
-
-build() {
-  cd  "$srcdir"/Chart-v$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/Chart-v$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-chart/repos/community-any/PKGBUILD (from rev 1293016, 
perl-chart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:31:41 UTC (rev 1293017)
@@ -0,0 +1,33 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-chart
+pkgver=2.403.7
+pkgrel=1
+pkgdesc="Business chart widget collection"
+arch=('any')
+url="https://search.cpan.org/dist/Chart;
+license=('GPL' 'PerlArtistic')
+depends=('perl-gd>=1.2')
+makedepends=('perl-test-warn')
+options=('!emptydirs')
+source=(https://www.cpan.org/authors/id/L/LI/LICHTKIND/Chart-v$pkgver.tar.gz)
+sha256sums=('0bf1152236b404162ac6779f6a1f65d2192289a038432bdb3bbf9b20e1113bb4')
+
+build() {
+  cd  "$srcdir"/Chart-v$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  "$srcdir"/Chart-v$pkgver
+  make test
+}
+
+package() {
+  cd  "$srcdir"/Chart-v$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-chart/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:31:32
  Author: spupykin
Revision: 1293016

upgpkg: perl-chart 2.403.7-1

Modified:
  perl-chart/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:30:09 UTC (rev 1293015)
+++ PKGBUILD2022-09-05 15:31:32 UTC (rev 1293016)
@@ -2,7 +2,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-chart
-pkgver=2.402.3
+pkgver=2.403.7
 pkgrel=1
 pkgdesc="Business chart widget collection"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('perl-test-warn')
 options=('!emptydirs')
 source=(https://www.cpan.org/authors/id/L/LI/LICHTKIND/Chart-v$pkgver.tar.gz)
-sha256sums=('73f3c5e490d91edbf88895c93619c2913c94f562933d18e14e6bd64b5c21a009')
+sha256sums=('0bf1152236b404162ac6779f6a1f65d2192289a038432bdb3bbf9b20e1113bb4')
 
 build() {
   cd  "$srcdir"/Chart-v$pkgver



[arch-commits] Commit in perlbrew/repos/community-any (PKGBUILD PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:30:09
  Author: spupykin
Revision: 1293015

archrelease: copy trunk to community-any

Added:
  perlbrew/repos/community-any/PKGBUILD
(from rev 1293014, perlbrew/trunk/PKGBUILD)
Deleted:
  perlbrew/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:29:46 UTC (rev 1293014)
+++ PKGBUILD2022-09-05 15:30:09 UTC (rev 1293015)
@@ -1,32 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=perlbrew
-pkgver=0.95
-pkgrel=1
-pkgdesc='Manage perl installations in your $HOME'
-arch=('any')
-url="https://metacpan.org/release/App-perlbrew;
-license=('MIT')
-depends=('perl' 'perl-capture-tiny' 'perl-cpan-perl-releases' 
'perl-devel-patchperl'
- 'perl-file-path-tiny' 'perl-local-lib')
-makedepends=('perl-module-build-tiny')
-checkdepends=('perl-test-exception' 'perl-test-output' 'perl-test-spec'
-  'perl-path-class' 'perl-io-all')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/App-perlbrew-$pkgver.tar.gz;)
-sha1sums=('b73a9b9b3d29257ddaaa7abed70f0d84df197267')
-
-build() {
-  cd App-perlbrew-$pkgver
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
-  perl Build.PL
-  ./Build
-}
-
-package() {
-  cd App-perlbrew-$pkgver
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  ./Build install --installdirs=vendor --destdir="$pkgdir"
-  install -Dm0644 LICENSE "$pkgdir"/usr/share/licenses/perlbrew/LICENSE
-}

Copied: perlbrew/repos/community-any/PKGBUILD (from rev 1293014, 
perlbrew/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:30:09 UTC (rev 1293015)
@@ -0,0 +1,32 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=perlbrew
+pkgver=0.96
+pkgrel=1
+pkgdesc='Manage perl installations in your $HOME'
+arch=('any')
+url="https://metacpan.org/release/App-perlbrew;
+license=('MIT')
+depends=('perl' 'perl-capture-tiny' 'perl-cpan-perl-releases' 
'perl-devel-patchperl'
+ 'perl-file-path-tiny' 'perl-local-lib')
+makedepends=('perl-module-build-tiny')
+checkdepends=('perl-test-exception' 'perl-test-output' 'perl-test-spec'
+  'perl-path-class' 'perl-io-all')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/App-perlbrew-$pkgver.tar.gz;)
+sha1sums=('b2d09c6bfa2cb2b9275fcae15286d2bb1d98cbc7')
+
+build() {
+  cd App-perlbrew-$pkgver
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
+  perl Build.PL
+  ./Build
+}
+
+package() {
+  cd App-perlbrew-$pkgver
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  ./Build install --installdirs=vendor --destdir="$pkgdir"
+  install -Dm0644 LICENSE "$pkgdir"/usr/share/licenses/perlbrew/LICENSE
+}



[arch-commits] Commit in perlbrew/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:29:46
  Author: spupykin
Revision: 1293014

upgpkg: perlbrew 0.96-1

Modified:
  perlbrew/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:26:12 UTC (rev 1293013)
+++ PKGBUILD2022-09-05 15:29:46 UTC (rev 1293014)
@@ -1,7 +1,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=perlbrew
-pkgver=0.95
+pkgver=0.96
 pkgrel=1
 pkgdesc='Manage perl installations in your $HOME'
 arch=('any')
@@ -14,7 +14,7 @@
   'perl-path-class' 'perl-io-all')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/App-perlbrew-$pkgver.tar.gz;)
-sha1sums=('b73a9b9b3d29257ddaaa7abed70f0d84df197267')
+sha1sums=('b2d09c6bfa2cb2b9275fcae15286d2bb1d98cbc7')
 
 build() {
   cd App-perlbrew-$pkgver



[arch-commits] Commit in drupal/repos/community-any (4 files)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:26:12
  Author: spupykin
Revision: 1293013

archrelease: copy trunk to community-any

Added:
  drupal/repos/community-any/PKGBUILD
(from rev 1293012, drupal/trunk/PKGBUILD)
  drupal/repos/community-any/drupal.install
(from rev 1293012, drupal/trunk/drupal.install)
Deleted:
  drupal/repos/community-any/PKGBUILD
  drupal/repos/community-any/drupal.install

+
 PKGBUILD   |   94 +++
 drupal.install |   14 
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:25:14 UTC (rev 1293012)
+++ PKGBUILD2022-09-05 15:26:12 UTC (rev 1293013)
@@ -1,47 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Corrado Primier 
-
-pkgname=drupal
-pkgver=9.4.4
-pkgrel=1
-pkgdesc="A PHP-based content management platform"
-arch=('any')
-url="https://www.drupal.org/;
-license=('GPL')
-depends=()
-install='drupal.install'
-backup=('etc/webapps/drupal/.htaccess')
-options=(!strip)
-source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('5168d42c33aec8acc1475a1b1dfce916c01fb8c8f509fbb532dfe04ef6e2c606')
-
-package() {
-  depends=('php' 'php-gd')
-
-  _instdir="$pkgdir"/usr/share/webapps/drupal
-  mkdir -p ${_instdir}
-  cd ${_instdir}
-  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
-
-  # move .htaccess
-  mkdir -p "$pkgdir"/etc/webapps/drupal
-  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
-  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
-  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
-
-  # move sites/
-  mkdir -p "$pkgdir"/var/lib/drupal/
-  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
-  ln -s /var/lib/drupal/sites ${_instdir}/sites
-
-  # apache config example
-  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
-   
-EOF
-}

Copied: drupal/repos/community-any/PKGBUILD (from rev 1293012, 
drupal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:26:12 UTC (rev 1293013)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Corrado Primier 
+
+pkgname=drupal
+pkgver=9.4.5
+pkgrel=1
+pkgdesc="A PHP-based content management platform"
+arch=('any')
+url="https://www.drupal.org/;
+license=('GPL')
+depends=()
+install='drupal.install'
+backup=('etc/webapps/drupal/.htaccess')
+options=(!strip)
+source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
+sha256sums=('b797b7e6342ddd3c9db2161f37086451aa71d9e064df94bb3e8ba50750cca363')
+
+package() {
+  depends=('php' 'php-gd')
+
+  _instdir="$pkgdir"/usr/share/webapps/drupal
+  mkdir -p ${_instdir}
+  cd ${_instdir}
+  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
+
+  # move .htaccess
+  mkdir -p "$pkgdir"/etc/webapps/drupal
+  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
+  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
+  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
+
+  # move sites/
+  mkdir -p "$pkgdir"/var/lib/drupal/
+  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
+  ln -s /var/lib/drupal/sites ${_instdir}/sites
+
+  # apache config example
+  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
+   AllowOverride All
+   Options FollowSymlinks
+   Require all granted
+   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
+   
+EOF
+}

Deleted: drupal.install
===
--- drupal.install  2022-09-05 15:25:14 UTC (rev 1293012)
+++ drupal.install  2022-09-05 15:26:12 UTC (rev 1293013)
@@ -1,7 +0,0 @@
-post_install() {
-  echo "Probably you need to 'chown -R http:http var/lib/drupal'"
-}
-
-post_upgrade() {
-  post_install
-}

Copied: drupal/repos/community-any/drupal.install (from rev 1293012, 
drupal/trunk/drupal.install)
===
--- drupal.install  (rev 0)
+++ drupal.install  2022-09-05 15:26:12 UTC (rev 1293013)
@@ -0,0 +1,7 @@
+post_install() {
+  echo "Probably you need to 'chown -R http:http var/lib/drupal'"
+}
+
+post_upgrade() {
+  post_install
+}



[arch-commits] Commit in drupal/trunk (PKGBUILD)

2022-09-05 Thread Sergej Pupykin via arch-commits
Date: Monday, September 5, 2022 @ 15:25:14
  Author: spupykin
Revision: 1293012

upgpkg: drupal 9.4.5-1

Modified:
  drupal/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:23:43 UTC (rev 1293011)
+++ PKGBUILD2022-09-05 15:25:14 UTC (rev 1293012)
@@ -2,7 +2,7 @@
 # Contributor: Corrado Primier 
 
 pkgname=drupal
-pkgver=9.4.4
+pkgver=9.4.5
 pkgrel=1
 pkgdesc="A PHP-based content management platform"
 arch=('any')
@@ -13,7 +13,7 @@
 backup=('etc/webapps/drupal/.htaccess')
 options=(!strip)
 source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('5168d42c33aec8acc1475a1b1dfce916c01fb8c8f509fbb532dfe04ef6e2c606')
+sha256sums=('b797b7e6342ddd3c9db2161f37086451aa71d9e064df94bb3e8ba50750cca363')
 
 package() {
   depends=('php' 'php-gd')



[arch-commits] Commit in nextcloud-app-calendar/repos/community-any (2 files)

2022-09-02 Thread Sergej Pupykin via arch-commits
Date: Friday, September 2, 2022 @ 09:06:16
  Author: spupykin
Revision: 1290864

archrelease: copy trunk to community-any

Added:
  nextcloud-app-calendar/repos/community-any/PKGBUILD
(from rev 1290863, nextcloud-app-calendar/trunk/PKGBUILD)
Deleted:
  nextcloud-app-calendar/repos/community-any/PKGBUILD

--+
 PKGBUILD |  128 ++---
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-02 09:05:38 UTC (rev 1290863)
+++ PKGBUILD2022-09-02 09:06:16 UTC (rev 1290864)
@@ -1,64 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud-app-calendar
-_name=calendar
-epoch=1
-pkgver=3.4.3
-pkgrel=1
-pkgdesc="Calendar app for nextcloud"
-arch=(any)
-url="https://github.com/nextcloud/calendar/;
-license=(AGPL)
-makedepends=(nextcloud yq)
-groups=(nextcloud-apps)
-options=('!strip')
-source=($pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/calendar/releases/download/v$pkgver/$_name-v$pkgver.tar.gz)
-sha256sums=('50de2e96d9b4b60a6de2e1bc0da0f9b4b5c321f48047661ee841c5a74fa6eb3b')
-b2sums=('9b37e630913b7a3402efb4e5c6508218680ecfd5c30cd6c85c4e9a1cc54caa787c657d541c658ee4be37d360d30040ccd8ff068e18064065e6456bed9276a33e')
-
-# BEGIN boilerplate nextcloud app version clamping, see also other packages in 
group
-# 1. Call respective function helpers in check() and package() *after* cd'ing 
to the source directory
-# 2. Add makedepends+=(nextcloud yq)
-_phps=(php7 php)
-_get_supported_ranges() {
-  _app_min_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@min-version"] | values')"
-  _app_max_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@max-version"] | values | tonumber | .+1')"
-  _app_min_php="$(< appinfo/info.xml xq -r 
'.info.dependencies.php["@min-version"] | values')"
-  _app_max_php="$(< appinfo/info.xml xq -r 
'.info.dependencies.php["@max-version"] | values | tonumber | .+0.1')"
-}
-_unsupported_range() {
-  printf "%s requires %s %s, but %s %s is provided.\n" "$pkgname" "$1" "$2" 
"$1" "$3"
-  exit 1
-}
-_nextcloud_app_check() {
-  _get_supported_ranges
-  for _php in "${_phps[@]}"; do command -v "$_php" > /dev/null && break; done
-  local _nextcloud_ver="$("$_php" <(cat 
/usr/share/webapps/nextcloud/version.php; echo 'print($OC_VersionString);'))"
-  local _php_ver="$("$_php" -r 'print(phpversion());')"
-  [[ "$(vercmp "${_app_min_nextcloud:-0}" "$_nextcloud_ver")" -le 0 ]] || \
-_unsupported_range nextcloud "=> $_app_min_nextcloud" "$_nextcloud_ver"
-  [[ "$(vercmp "${_app_max_nextcloud:-999}" "$_nextcloud_ver")" -gt 0 ]] || \
-_unsupported_range nextcloud "< $_app_max_nextcloud" "$_nextcloud_ver"
-  [[ "$(vercmp "${_app_min_php:-0}" "$_php_ver")" -le 0 ]] || \
-_unsupported_range php ">= $_app_min_php" "$_php_ver"
-  [[ "$(vercmp "${_app_max_php:-999}" "$_php_ver")" -gt 0 ]] || \
-_unsupported_range php "< $_app_max_php" "$_php_ver"
-}
-_nextcloud_app_package() {
-  _get_supported_ranges
-  depends+=("nextcloud>=${_app_min_nextcloud:-0}" 
"nextcloud<${_app_max_nextcloud:-999}")
-  depends+=("php-interpreter${_app_min_php:+>=$_app_min_php}" 
${_app_max_php:+"php-interpreter<$_app_max_php"})
-}
-# END boilerplate nextcloud app version clamping
-
-check() {
-  cd $_name
-  _nextcloud_app_check
-}
-
-package() {
-  install -vdm 755 "$pkgdir/usr/share/webapps/nextcloud/apps/"
-  cp -av $_name "$pkgdir/usr/share/webapps/nextcloud/apps/"
-  cd $_name
-  _nextcloud_app_package
-}

Copied: nextcloud-app-calendar/repos/community-any/PKGBUILD (from rev 1290863, 
nextcloud-app-calendar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-02 09:06:16 UTC (rev 1290864)
@@ -0,0 +1,64 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=nextcloud-app-calendar
+_name=calendar
+epoch=1
+pkgver=3.5.0
+pkgrel=1
+pkgdesc="Calendar app for nextcloud"
+arch=(any)
+url="https://github.com/nextcloud/calendar/;
+license=(AGPL)
+makedepends=(nextcloud yq)
+groups=(nextcloud-apps)
+options=('!strip')
+source=($pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/calendar/releases/download/v$pkgver/$_name-v$pkgver.tar.gz)
+sha256sums=('f8b44697d878d0041d58df525be36a1b04da7c01b0574ec07fc9d5b37a540a6d')
+b2sums=('99d24337b6f5cd86d07043be15c9d9f63b585ee08d4de049979811fdc5486407d7ccb2b8d991b457be829d8cc2d8fb6145014be4eef2634e51f8a137698c7aa3')
+
+# BEGIN boilerplate nextcloud app version clamping, see also other packages in 
group
+# 1. Call respective function helpers in check() and package() *after* cd'ing 
to the source directory
+# 2. Add makedepends+=(nextcloud yq)
+_phps=(php7 php)
+_get_supported_ranges() {
+  _app_min_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@min-version"] | values')"
+  _app_max_nextcloud="$(< appinfo/info.xml xq -r 

[arch-commits] Commit in nextcloud-app-calendar/trunk (PKGBUILD)

2022-09-02 Thread Sergej Pupykin via arch-commits
Date: Friday, September 2, 2022 @ 09:05:38
  Author: spupykin
Revision: 1290863

upgpkg: nextcloud-app-calendar 1:3.5.0-1

Modified:
  nextcloud-app-calendar/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-02 09:05:32 UTC (rev 1290862)
+++ PKGBUILD2022-09-02 09:05:38 UTC (rev 1290863)
@@ -3,7 +3,7 @@
 pkgname=nextcloud-app-calendar
 _name=calendar
 epoch=1
-pkgver=3.4.3
+pkgver=3.5.0
 pkgrel=1
 pkgdesc="Calendar app for nextcloud"
 arch=(any)
@@ -13,8 +13,8 @@
 groups=(nextcloud-apps)
 options=('!strip')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/calendar/releases/download/v$pkgver/$_name-v$pkgver.tar.gz)
-sha256sums=('50de2e96d9b4b60a6de2e1bc0da0f9b4b5c321f48047661ee841c5a74fa6eb3b')
-b2sums=('9b37e630913b7a3402efb4e5c6508218680ecfd5c30cd6c85c4e9a1cc54caa787c657d541c658ee4be37d360d30040ccd8ff068e18064065e6456bed9276a33e')
+sha256sums=('f8b44697d878d0041d58df525be36a1b04da7c01b0574ec07fc9d5b37a540a6d')
+b2sums=('99d24337b6f5cd86d07043be15c9d9f63b585ee08d4de049979811fdc5486407d7ccb2b8d991b457be829d8cc2d8fb6145014be4eef2634e51f8a137698c7aa3')
 
 # BEGIN boilerplate nextcloud app version clamping, see also other packages in 
group
 # 1. Call respective function helpers in check() and package() *after* cd'ing 
to the source directory



[arch-commits] Commit in minidlna/repos/community-x86_64 (4 files)

2022-09-02 Thread Sergej Pupykin via arch-commits
Date: Friday, September 2, 2022 @ 09:05:32
  Author: spupykin
Revision: 1290862

archrelease: copy trunk to community-x86_64

Added:
  minidlna/repos/community-x86_64/PKGBUILD
(from rev 1290861, minidlna/trunk/PKGBUILD)
  minidlna/repos/community-x86_64/minidlna.service
(from rev 1290861, minidlna/trunk/minidlna.service)
Deleted:
  minidlna/repos/community-x86_64/PKGBUILD
  minidlna/repos/community-x86_64/minidlna.service

--+
 PKGBUILD |   92 ++---
 minidlna.service |   34 +--
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-02 09:04:35 UTC (rev 1290861)
+++ PKGBUILD2022-09-02 09:05:32 UTC (rev 1290862)
@@ -1,46 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer:Biginoz < biginoz AT free point fr>
-# Contributor: Ignacio Galmarino 
-# Contributor: Matthias Sobczyk 
-# Contributor: Kamil Kaminski 
-
-pkgname=minidlna
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)"
-arch=('x86_64')
-url="https://sourceforge.net/projects/minidlna/;
-license=('GPL')
-depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite')
-makedepends=('git')
-backup=('etc/minidlna.conf')
-source=("minidlna::git+https://git.code.sf.net/p/minidlna/git#tag=v${pkgver//./_};
-   minidlna.service)
-sha512sums=('SKIP'
-
'fc5692adf537e203a0466a923d350498faba4f29a219bb6e1ad527fc267d6143403fe8b4c6f5d746805f451142b1ba3ed4e9bb57e445255f3769df8e037a8b66')
-
-prepare() {
-  cd "$srcdir/$pkgname"
-  sed -i 's|-Werror||g' configure.ac
-  sed -i 's|#user=.*|user=minidlna|g' minidlna.conf
-}
-
-build() {
-  cd "$srcdir/$pkgname"
-  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
-  [ -x configure ] || ./autogen.sh
-  ac_cv_lib_id3tag__lz___id3_file_open=yes \
-ac_cv_lib_avformat__lavcodec__lavutil__lz___avformat_open_input=yes \
-ac_cv_lib_avformat__lavcodec__lavutil__lz___av_open_input_file=yes \
-./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  DESTDIR="$pkgdir" make install
-  install -Dm644 minidlna.conf "$pkgdir"/etc/minidlna.conf
-  install -Dm0644 "$srcdir"/minidlna.service 
"$pkgdir"/usr/lib/systemd/system/minidlna.service
-  install -Dm644 "$srcdir"/$pkgname/minidlna.conf.5 
"$pkgdir"/usr/share/man/man5/minidlna.conf.5
-  install -Dm644 "$srcdir"/$pkgname/minidlnad.8 
"$pkgdir"/usr/share/man/man8/minidlnad.8
-}

Copied: minidlna/repos/community-x86_64/PKGBUILD (from rev 1290861, 
minidlna/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-02 09:05:32 UTC (rev 1290862)
@@ -0,0 +1,46 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer:Biginoz < biginoz AT free point fr>
+# Contributor: Ignacio Galmarino 
+# Contributor: Matthias Sobczyk 
+# Contributor: Kamil Kaminski 
+
+pkgname=minidlna
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)"
+arch=('x86_64')
+url="https://sourceforge.net/projects/minidlna/;
+license=('GPL')
+depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite')
+makedepends=('git')
+backup=('etc/minidlna.conf')
+source=("minidlna::git+https://git.code.sf.net/p/minidlna/git#tag=v${pkgver//./_};
+   minidlna.service)
+sha512sums=('SKIP'
+
'fc5692adf537e203a0466a923d350498faba4f29a219bb6e1ad527fc267d6143403fe8b4c6f5d746805f451142b1ba3ed4e9bb57e445255f3769df8e037a8b66')
+
+prepare() {
+  cd "$srcdir/$pkgname"
+  sed -i 's|-Werror||g' configure.ac
+  sed -i 's|#user=.*|user=minidlna|g' minidlna.conf
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+  [ -x configure ] || ./autogen.sh
+  ac_cv_lib_id3tag__lz___id3_file_open=yes \
+ac_cv_lib_avformat__lavcodec__lavutil__lz___avformat_open_input=yes \
+ac_cv_lib_avformat__lavcodec__lavutil__lz___av_open_input_file=yes \
+./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  DESTDIR="$pkgdir" make install
+  install -Dm644 minidlna.conf "$pkgdir"/etc/minidlna.conf
+  install -Dm0644 "$srcdir"/minidlna.service 
"$pkgdir"/usr/lib/systemd/system/minidlna.service
+  install -Dm644 "$srcdir"/$pkgname/minidlna.conf.5 
"$pkgdir"/usr/share/man/man5/minidlna.conf.5
+  install -Dm644 "$srcdir"/$pkgname/minidlnad.8 
"$pkgdir"/usr/share/man/man8/minidlnad.8
+}

Deleted: minidlna.service
===
--- minidlna.service2022-09-02 09:04:35 UTC (rev 1290861)
+++ minidlna.service2022-09-02 09:05:32 UTC (rev 1290862)
@@ -1,17 +0,0 @@
-[Unit]
-Description=minidlna server
-After=network.target
-
-[Service]
-Type=exec
-DynamicUser=yes
-ExecStart=/usr/bin/minidlnad -S

[arch-commits] Commit in minidlna/trunk (PKGBUILD)

2022-09-02 Thread Sergej Pupykin via arch-commits
Date: Friday, September 2, 2022 @ 09:04:35
  Author: spupykin
Revision: 1290861

upgpkg: minidlna 1.3.2-1

Modified:
  minidlna/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-02 09:03:14 UTC (rev 1290860)
+++ PKGBUILD2022-09-02 09:04:35 UTC (rev 1290861)
@@ -5,7 +5,7 @@
 # Contributor: Kamil Kaminski 
 
 pkgname=minidlna
-pkgver=1.3.1
+pkgver=1.3.2
 pkgrel=1
 pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)"
 arch=('x86_64')



[arch-commits] Commit in gsoap/trunk (PKGBUILD)

2022-09-02 Thread Sergej Pupykin via arch-commits
Date: Friday, September 2, 2022 @ 09:01:25
  Author: spupykin
Revision: 1290854

upgpkg: gsoap 2.8.123-1

Modified:
  gsoap/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-09-02 09:01:20 UTC (rev 1290853)
+++ PKGBUILD2022-09-02 09:01:25 UTC (rev 1290854)
@@ -3,7 +3,7 @@
 # Contributor: Lee.MaRS 
 
 pkgname=gsoap
-pkgver=2.8.122
+pkgver=2.8.123
 pkgrel=1
 pkgdesc="Offers an XML language binding to ease the development of SOAP/XML 
Web services in C and C/C++"
 url="https://www.cs.fsu.edu/~engelen/soap.html;
@@ -13,7 +13,7 @@
 makedepends=('autoconf' 'automake')
 options=('staticlibs')
 source=("https://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip;)
-sha256sums=('3eb8486c986b44071bb5f19ef7b990791f819bb267c0bf640e95bd991070fad8')
+sha256sums=('e018500ac942bb7627612cc9a8229610efe293a450359c413da1a006eb7c193d')
 
 prepare() {
   cd "$srcdir"/gsoap-2.8



[arch-commits] Commit in perl-html-form/repos/community-any (PKGBUILD PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:32:17
  Author: spupykin
Revision: 1285911

archrelease: copy trunk to community-any

Added:
  perl-html-form/repos/community-any/PKGBUILD
(from rev 1285908, perl-html-form/trunk/PKGBUILD)
Deleted:
  perl-html-form/repos/community-any/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:32:16 UTC (rev 1285910)
+++ PKGBUILD2022-08-29 20:32:17 UTC (rev 1285911)
@@ -1,36 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer : Justin "juster" Davis 
-
-pkgname=perl-html-form
-pkgver=6.07
-pkgrel=1
-pkgdesc="Class that represents an HTML form element"
-arch=(any)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=('perl>=5.8.8' 'perl-html-parser' 'perl-http-message' 'perl-uri>=1.10')
-conflicts=('perl-libwww<6')
-url=https://search.cpan.org/dist/HTML-Form
-source=("https://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/HTML-Form-${pkgver}.tar.gz;)
-md5sums=('71718750e6a2132b50eeca417a55e18e')
-
-build() {
-  cd "${srcdir}/HTML-Form-${pkgver}"
-  PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-PERL_AUTOINSTALL=--skipdeps \
-PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
-PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
-MODULEBUILDRC=/dev/null perl Makefile.PL
-  make
-}
-
-check() {
-  cd "${srcdir}/HTML-Form-${pkgver}"
-#  PERL_MM_USE_DEFAULT=1 PERL5LIB="" make test
-}
-
-package() {
-  cd "${srcdir}/HTML-Form-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-html-form/repos/community-any/PKGBUILD (from rev 1285908, 
perl-html-form/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:32:17 UTC (rev 1285911)
@@ -0,0 +1,36 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer : Justin "juster" Davis 
+
+pkgname=perl-html-form
+pkgver=6.10
+pkgrel=1
+pkgdesc="Class that represents an HTML form element"
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=('perl>=5.8.8' 'perl-html-parser' 'perl-http-message' 'perl-uri>=1.10')
+conflicts=('perl-libwww<6')
+url=https://search.cpan.org/dist/HTML-Form
+source=("https://search.cpan.org/CPAN/authors/id/S/SI/SIMBABQUE/HTML-Form-${pkgver}.tar.gz;)
+
+build() {
+  cd "${srcdir}/HTML-Form-${pkgver}"
+  PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+PERL_AUTOINSTALL=--skipdeps \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
+PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
+MODULEBUILDRC=/dev/null perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${srcdir}/HTML-Form-${pkgver}"
+#  PERL_MM_USE_DEFAULT=1 PERL5LIB="" make test
+}
+
+package() {
+  cd "${srcdir}/HTML-Form-${pkgver}"
+  make DESTDIR="$pkgdir" install
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}
+sha256sums=('df8393e35e495a0839f06a63fb65d6922842c180d260554137728a9f092df9d3')



[arch-commits] Commit in perl-html-form/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:31:23
  Author: spupykin
Revision: 1285905

upgpkg: perl-html-form 6.10-1

Modified:
  perl-html-form/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:31:20 UTC (rev 1285904)
+++ PKGBUILD2022-08-29 20:31:23 UTC (rev 1285905)
@@ -2,7 +2,7 @@
 # Maintainer : Justin "juster" Davis 
 
 pkgname=perl-html-form
-pkgver=6.07
+pkgver=6.10
 pkgrel=1
 pkgdesc="Class that represents an HTML form element"
 arch=(any)
@@ -11,8 +11,7 @@
 depends=('perl>=5.8.8' 'perl-html-parser' 'perl-http-message' 'perl-uri>=1.10')
 conflicts=('perl-libwww<6')
 url=https://search.cpan.org/dist/HTML-Form
-source=("https://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/HTML-Form-${pkgver}.tar.gz;)
-md5sums=('71718750e6a2132b50eeca417a55e18e')
+source=("https://search.cpan.org/CPAN/authors/id/S/SI/SIMBABQUE/HTML-Form-${pkgver}.tar.gz;)
 
 build() {
   cd "${srcdir}/HTML-Form-${pkgver}"
@@ -34,3 +33,4 @@
   make DESTDIR="$pkgdir" install
   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
 }
+sha256sums=('df8393e35e495a0839f06a63fb65d6922842c180d260554137728a9f092df9d3')



[arch-commits] Commit in xlockmore/repos/community-x86_64 (7 files)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:19:56
  Author: spupykin
Revision: 1285847

archrelease: copy trunk to community-x86_64

Added:
  xlockmore/repos/community-x86_64/LICENSE
(from rev 1285845, xlockmore/trunk/LICENSE)
  xlockmore/repos/community-x86_64/PKGBUILD
(from rev 1285846, xlockmore/trunk/PKGBUILD)
  xlockmore/repos/community-x86_64/keys/
  xlockmore/repos/community-x86_64/xlockmore.install
(from rev 1285846, xlockmore/trunk/xlockmore.install)
Deleted:
  xlockmore/repos/community-x86_64/LICENSE
  xlockmore/repos/community-x86_64/PKGBUILD
  xlockmore/repos/community-x86_64/xlockmore.install

---+
 LICENSE   |   36 +++---
 PKGBUILD  |   82 ++--
 xlockmore.install |8 ++---
 3 files changed, 63 insertions(+), 63 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2022-08-29 20:19:19 UTC (rev 1285846)
+++ LICENSE 2022-08-29 20:19:56 UTC (rev 1285847)
@@ -1,18 +0,0 @@
-/*-
- * xscreensaver compatibility layer for xlockmore modules.
- * xscreensaver, Copyright (c) 1997, 1998 Jamie Zawinski 
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that
- * copyright notice and this permission notice appear in supporting
- * documentation.  No representations are made about the suitability of this
- * software for any purpose.  It is provided "as is" without express or
- * implied warranty.
- *
- * This file, along with xlockmore.h, make it possible to compile an xlockmore
- * module into a standalone program, and thus use it with xscreensaver.
- * By Jamie Zawinski  on 10-May-97; based on the ideas
- * in the older xlock.h by Charles Hannum .  (I had
- * to redo it, since xlockmore has diverged so far from xlock...)
- */

Copied: xlockmore/repos/community-x86_64/LICENSE (from rev 1285845, 
xlockmore/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2022-08-29 20:19:56 UTC (rev 1285847)
@@ -0,0 +1,18 @@
+/*-
+ * xscreensaver compatibility layer for xlockmore modules.
+ * xscreensaver, Copyright (c) 1997, 1998 Jamie Zawinski 
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation.  No representations are made about the suitability of this
+ * software for any purpose.  It is provided "as is" without express or
+ * implied warranty.
+ *
+ * This file, along with xlockmore.h, make it possible to compile an xlockmore
+ * module into a standalone program, and thus use it with xscreensaver.
+ * By Jamie Zawinski  on 10-May-97; based on the ideas
+ * in the older xlock.h by Charles Hannum .  (I had
+ * to redo it, since xlockmore has diverged so far from xlock...)
+ */

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:19:19 UTC (rev 1285846)
+++ PKGBUILD2022-08-29 20:19:56 UTC (rev 1285847)
@@ -1,41 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: dorphell 
-
-pkgname=xlockmore
-pkgver=5.70
-pkgrel=1
-pkgdesc="screen saver / locker for the X Window System"
-arch=(x86_64)
-license=('BSD')
-depends=(freetype2 gtk2 libxpm openmotif pam libxmu glu)
-optdepends=('fortune-mod')
-makedepends=(mesa)
-url="http://sillycycle.com/xlockmore.html;
-options=('!makeflags')
-install=xlockmore.install
-validpgpkeys=('1B79C8478F236DCDADC0D6ACCF159707377919AE')
-DLAGENTS=('http::/usr/bin/curl --user-agent Firefox -fLC - --retry 3 
--retry-delay 3 -o %o %u')
-source=(http://sillycycle.com/xlock/xlockmore-$pkgver.tar.xz{,.asc}
-   LICENSE)
-sha256sums=('0f3bcb9b802416cd87bb6e163a3843fea5d7fad90ff04838da122c292c3d0da2'
-'SKIP'
-'f9f41a5590c5c3ee9780f6013d9f03c229674e8d72e086b22f07c399be0f5b39')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  ./configure --prefix=/usr --disable-setuid \
- --enable-appdefaultdir=/usr/share/X11/app-defaults \
- --enable-pam --with-gtk2 --without-esound --without-ftgl
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make xapploaddir="$pkgdir"/usr/share/X11/app-defaults \
-   mandir="$pkgdir"/usr/man/man1 \
-   prefix="$pkgdir"/usr install
-  install -Dm0644 etc/xlock.pamd "${pkgdir}"/etc/pam.d/xlock
-  install -Dm0644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  mv "$pkgdir"/usr/man "$pkgdir"/usr/share/
-}

Copied: xlockmore/repos/community-x86_64/PKGBUILD (from rev 1285846, 
xlockmore/trunk/PKGBUILD)

[arch-commits] Commit in xlockmore/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:18:58
  Author: spupykin
Revision: 1285844

upgpkg: xlockmore 5.71-1

Modified:
  xlockmore/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:18:37 UTC (rev 1285843)
+++ PKGBUILD2022-08-29 20:18:58 UTC (rev 1285844)
@@ -2,7 +2,7 @@
 # Maintainer: dorphell 
 
 pkgname=xlockmore
-pkgver=5.70
+pkgver=5.71
 pkgrel=1
 pkgdesc="screen saver / locker for the X Window System"
 arch=(x86_64)
@@ -17,7 +17,7 @@
 DLAGENTS=('http::/usr/bin/curl --user-agent Firefox -fLC - --retry 3 
--retry-delay 3 -o %o %u')
 source=(http://sillycycle.com/xlock/xlockmore-$pkgver.tar.xz{,.asc}
LICENSE)
-sha256sums=('0f3bcb9b802416cd87bb6e163a3843fea5d7fad90ff04838da122c292c3d0da2'
+sha256sums=('0118b2d4b28303c335426cd6ca844b4776e4b71adb1d344f2ec087b57616c21a'
 'SKIP'
 'f9f41a5590c5c3ee9780f6013d9f03c229674e8d72e086b22f07c399be0f5b39')
 



[arch-commits] Commit in when/repos/community-any (4 files)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:18:09
  Author: spupykin
Revision: 1285841

archrelease: copy trunk to community-any

Added:
  when/repos/community-any/ChangeLog
(from rev 1285840, when/trunk/ChangeLog)
  when/repos/community-any/PKGBUILD
(from rev 1285840, when/trunk/PKGBUILD)
Deleted:
  when/repos/community-any/ChangeLog
  when/repos/community-any/PKGBUILD

---+
 ChangeLog |6 +++---
 PKGBUILD  |   40 
 2 files changed, 23 insertions(+), 23 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2022-08-29 20:17:52 UTC (rev 1285840)
+++ ChangeLog   2022-08-29 20:18:09 UTC (rev 1285841)
@@ -1,3 +0,0 @@
-2007-06-27 tardo 
-* Built for x86_64
-

Copied: when/repos/community-any/ChangeLog (from rev 1285840, 
when/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2022-08-29 20:18:09 UTC (rev 1285841)
@@ -0,0 +1,3 @@
+2007-06-27 tardo 
+* Built for x86_64
+

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:17:52 UTC (rev 1285840)
+++ PKGBUILD2022-08-29 20:18:09 UTC (rev 1285841)
@@ -1,20 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Charles Mauch 
-
-pkgname=when
-pkgver=1.1.42
-pkgrel=1
-pkgdesc="A simple commandline personal calendar program"
-arch=('any')
-url="http://www.lightandmatter.com/when/when.html;
-license=('GPL')
-depends=('perl')
-#makedepends=('git')
-#source=("git+https://github.com/bcrowell/when.git#commit=f576dcbfc71cc529f9ad3c191a3754e51088a49c;)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bcrowell/when/archive/$pkgver.tar.gz;)
-sha256sums=('85a8ab4df5482de7be0eb5fe1e90f738dfb8c721f2d86725dc19369b89dd839d')
-
-package() {
-  cd "$srcdir"/when-$pkgver
-  make install DESTDIR="${pkgdir}"
-}

Copied: when/repos/community-any/PKGBUILD (from rev 1285840, 
when/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:18:09 UTC (rev 1285841)
@@ -0,0 +1,20 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Charles Mauch 
+
+pkgname=when
+pkgver=1.1.43
+pkgrel=1
+pkgdesc="A simple commandline personal calendar program"
+arch=('any')
+url="http://www.lightandmatter.com/when/when.html;
+license=('GPL')
+depends=('perl')
+#makedepends=('git')
+#source=("git+https://github.com/bcrowell/when.git#commit=f576dcbfc71cc529f9ad3c191a3754e51088a49c;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bcrowell/when/archive/$pkgver.tar.gz;)
+sha256sums=('ddc3332aeadb4b786182128d3b04db38176b59969ae6980a7187d40b14528576')
+
+package() {
+  cd "$srcdir"/when-$pkgver
+  make install DESTDIR="${pkgdir}"
+}



[arch-commits] Commit in when/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:17:29
  Author: spupykin
Revision: 1285838

upgpkg: when 1.1.43-1

Modified:
  when/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:17:07 UTC (rev 1285837)
+++ PKGBUILD2022-08-29 20:17:29 UTC (rev 1285838)
@@ -2,7 +2,7 @@
 # Contributor: Charles Mauch 
 
 pkgname=when
-pkgver=1.1.42
+pkgver=1.1.43
 pkgrel=1
 pkgdesc="A simple commandline personal calendar program"
 arch=('any')
@@ -12,7 +12,7 @@
 #makedepends=('git')
 
#source=("git+https://github.com/bcrowell/when.git#commit=f576dcbfc71cc529f9ad3c191a3754e51088a49c;)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/bcrowell/when/archive/$pkgver.tar.gz;)
-sha256sums=('85a8ab4df5482de7be0eb5fe1e90f738dfb8c721f2d86725dc19369b89dd839d')
+sha256sums=('ddc3332aeadb4b786182128d3b04db38176b59969ae6980a7187d40b14528576')
 
 package() {
   cd "$srcdir"/when-$pkgver



[arch-commits] Commit in unrealircd/repos/community-x86_64 (15 files)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:17:07
  Author: spupykin
Revision: 1285837

archrelease: copy trunk to community-x86_64

Added:
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 1285836, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/install.pl
(from rev 1285836, unrealircd/trunk/install.pl)
  unrealircd/repos/community-x86_64/keys/
  unrealircd/repos/community-x86_64/source-date-epoch.patch
(from rev 1285836, unrealircd/trunk/source-date-epoch.patch)
  unrealircd/repos/community-x86_64/unrealircd.install
(from rev 1285836, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 1285836, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/unrealircd.sysusers.d
(from rev 1285836, unrealircd/trunk/unrealircd.sysusers.d)
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d
(from rev 1285836, unrealircd/trunk/unrealircd.tmpfiles.d)
Deleted:
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/install.pl
  unrealircd/repos/community-x86_64/source-date-epoch.patch
  unrealircd/repos/community-x86_64/unrealircd.install
  unrealircd/repos/community-x86_64/unrealircd.service
  unrealircd/repos/community-x86_64/unrealircd.sysusers.d
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d

-+
 PKGBUILD|  152 +++---
 install.pl  |   10 +--
 source-date-epoch.patch |   32 -
 unrealircd.install  |   18 ++---
 unrealircd.service  |   24 +++
 unrealircd.sysusers.d   |2 
 unrealircd.tmpfiles.d   |   10 +--
 7 files changed, 124 insertions(+), 124 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:16:33 UTC (rev 1285836)
+++ PKGBUILD2022-08-29 20:17:07 UTC (rev 1285837)
@@ -1,76 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Zerial 
-
-pkgname=unrealircd
-pkgver=6.0.4
-pkgrel=1
-pkgdesc="Open Source IRC Server"
-arch=('x86_64')
-url="https://www.unrealircd.org;
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares' 'tre' 'pcre2' 'libnsl' 'argon2')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf')
-install=unrealircd.install
-validpgpkeys=('1D2D2B03A0B68ED11D68A24BA7A21B0A108FF4A9')
-source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz{,.asc}
-   unrealircd.service
-   unrealircd.tmpfiles.d
-   unrealircd.sysusers.d
-   install.pl
-   source-date-epoch.patch)
-sha256sums=('f8e4bec47c6690afddaf79dea22ceb695ea6b0cb261c133ae414f8d58cb1eb76'
-'SKIP'
-'0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
-'75360541bc3aec9c1241c75e0ce60214c65cb618ffe5ca77144f01651ef5ab5b'
-'9e595176e63b301476982b1456d6ed065c479ff913b6743417ab8a9efdda0e3a'
-'43f07093ada8eb5c954f9e2e189610575906c690c0953fec041d4f2d31210d85'
-'1b9b3d5560f6633d4f31a521bc0ae17094d3afa28e703b4790eaefedcc9a92a8')
-
-prepare() {
-  cd "$srcdir"/unrealircd-$pkgver
-  sed -i \
--e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
--e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
-Makefile.in
-#  patch -p1 < ../source-date-epoch.patch
-}
-
-build() {
-  cd "$srcdir"/unrealircd-$pkgver
-  ./configure \
---with-pidfile=/run/unrealircd/ircd.pid \
---with-showlistmodes \
---enable-ssl=/usr \
---with-bindir=/usr/bin \
---with-datadir=/var/lib/unrealircd \
---with-confdir=/etc/unrealircd \
---with-modulesdir=/usr/lib/unrealircd \
---with-logdir=/var/log/unrealircd \
---with-cachedir=/var/cache/unrealircd \
---with-docdir=/usr/share/doc/unrealircd \
---with-tmpdir=/tmp \
---with-scriptdir=/usr \
---with-nick-history=2000 \
---with-sendq=300 \
---with-permissions=0644 \
---with-fd-setsize=1024 \
---enable-dynamic-linking
-  make
-}
-
-package() {
-  cd "$srcdir"/unrealircd-$pkgver
-
-  export pkgdir
-#  make INSTALL="$srcdir"/install.pl install DESTDIR="$pkgdir"
-  make install DESTDIR="$pkgdir"
-  mv "$pkgdir"/usr/unrealircd "$pkgdir"/etc/unrealircd/unrealircd
-  cp "$pkgdir"/etc/unrealircd/examples/example.conf 
"$pkgdir"/etc/unrealircd/unrealircd.conf
-  rm -rf "$pkgdir"/tmp
-
-  install -Dm0644 "$srcdir"/unrealircd.service 
"$pkgdir"/usr/lib/systemd/system/unrealircd.service
-  install -Dm0644 "$srcdir"/unrealircd.tmpfiles.d 
"$pkgdir"/usr/lib/tmpfiles.d/unrealircd.conf
-  install -Dm0644 "$srcdir"/unrealircd.sysusers.d 
"$pkgdir"/usr/lib/sysusers.d/unrealircd.conf
-}

Copied: unrealircd/repos/community-x86_64/PKGBUILD (from rev 1285836, 
unrealircd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:17:07 UTC (rev 1285837)
@@ -0,0 +1,76 @@
+# Maintainer: Sergej Pupykin 
+# 

[arch-commits] Commit in unrealircd/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:16:18
  Author: spupykin
Revision: 1285834

upgpkg: unrealircd 6.0.4.1-1

Modified:
  unrealircd/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:15:56 UTC (rev 1285833)
+++ PKGBUILD2022-08-29 20:16:18 UTC (rev 1285834)
@@ -2,7 +2,7 @@
 # Contributor: Zerial 
 
 pkgname=unrealircd
-pkgver=6.0.4
+pkgver=6.0.4.1
 pkgrel=1
 pkgdesc="Open Source IRC Server"
 arch=('x86_64')
@@ -20,7 +20,7 @@
unrealircd.sysusers.d
install.pl
source-date-epoch.patch)
-sha256sums=('f8e4bec47c6690afddaf79dea22ceb695ea6b0cb261c133ae414f8d58cb1eb76'
+sha256sums=('d2048b28efd7898fbb26a940e8fda826bb41143235e3071601de32ae3bb403f3'
 'SKIP'
 '0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
 '75360541bc3aec9c1241c75e0ce60214c65cb618ffe5ca77144f01651ef5ab5b'



[arch-commits] Commit in perl-xml-xpath/repos/community-any (PKGBUILD PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:15:56
  Author: spupykin
Revision: 1285833

archrelease: copy trunk to community-any

Added:
  perl-xml-xpath/repos/community-any/PKGBUILD
(from rev 1285832, perl-xml-xpath/trunk/PKGBUILD)
Deleted:
  perl-xml-xpath/repos/community-any/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:15:32 UTC (rev 1285832)
+++ PKGBUILD2022-08-29 20:15:56 UTC (rev 1285833)
@@ -1,29 +0,0 @@
-#Maintainer:
-
-pkgname=perl-xml-xpath
-pkgver=1.47
-pkgrel=1
-pkgdesc="A set of modules for parsing and evaluating XPath statements"
-arch=('any')
-url="https://metacpan.org/release/XML-XPath;
-license=('PerlArtistic' 'GPL')
-depends=('perl' 'perl-xml-parser')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/M/MA/MANWAR/XML-XPath-$pkgver.tar.gz;)
-sha1sums=('659f18fd321034fef6b7b28e5f9895a22a01d6a9')
-
-build() {
-  cd "${srcdir}/XML-XPath-${pkgver}"
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}/XML-XPath-${pkgver}"
-#  make test
-}
-
-package() {
-  cd "${srcdir}/XML-XPath-${pkgver}"
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-xml-xpath/repos/community-any/PKGBUILD (from rev 1285832, 
perl-xml-xpath/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:15:56 UTC (rev 1285833)
@@ -0,0 +1,29 @@
+#Maintainer:
+
+pkgname=perl-xml-xpath
+pkgver=1.48
+pkgrel=1
+pkgdesc="A set of modules for parsing and evaluating XPath statements"
+arch=('any')
+url="https://metacpan.org/release/XML-XPath;
+license=('PerlArtistic' 'GPL')
+depends=('perl' 'perl-xml-parser')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/M/MA/MANWAR/XML-XPath-$pkgver.tar.gz;)
+sha1sums=('9e2d46c4dc59493eba6eb987b9cea8c9a4a3878f')
+
+build() {
+  cd "${srcdir}/XML-XPath-${pkgver}"
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/XML-XPath-${pkgver}"
+#  make test
+}
+
+package() {
+  cd "${srcdir}/XML-XPath-${pkgver}"
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in perl-xml-xpath/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:15:32
  Author: spupykin
Revision: 1285832

upgpkg: perl-xml-xpath 1.48-1

Modified:
  perl-xml-xpath/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:15:13 UTC (rev 1285831)
+++ PKGBUILD2022-08-29 20:15:32 UTC (rev 1285832)
@@ -1,7 +1,7 @@
 #Maintainer:
 
 pkgname=perl-xml-xpath
-pkgver=1.47
+pkgver=1.48
 pkgrel=1
 pkgdesc="A set of modules for parsing and evaluating XPath statements"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('perl' 'perl-xml-parser')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/M/MA/MANWAR/XML-XPath-$pkgver.tar.gz;)
-sha1sums=('659f18fd321034fef6b7b28e5f9895a22a01d6a9')
+sha1sums=('9e2d46c4dc59493eba6eb987b9cea8c9a4a3878f')
 
 build() {
   cd "${srcdir}/XML-XPath-${pkgver}"



[arch-commits] Commit in perl-scalar-list-utils/repos/community-x86_64 (2 files)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:15:11
  Author: spupykin
Revision: 1285830

archrelease: copy trunk to community-x86_64

Added:
  perl-scalar-list-utils/repos/community-x86_64/PKGBUILD
(from rev 1285828, perl-scalar-list-utils/trunk/PKGBUILD)
Deleted:
  perl-scalar-list-utils/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:14:58 UTC (rev 1285829)
+++ PKGBUILD2022-08-29 20:15:11 UTC (rev 1285830)
@@ -1,42 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: John D Jones III AKA jnbek 
-
-pkgname='perl-scalar-list-utils'
-pkgver=1.62
-pkgrel=1
-pkgdesc="A selection of general-utility list subroutines"
-arch=('x86_64')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=()
-url='https://metacpan.org/release/Scalar-List-Utils'
-source=("https://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Scalar-List-Utils-$pkgver.tar.gz;)
-sha256sums=('7279c4ec7df0cf2c0acb874abdfe86956f5028d2414974db56edfbed8a4d339f')
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
-  MODULEBUILDRC=/dev/null
-
-cd "$srcdir/Scalar-List-Utils-$pkgver"
-perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$srcdir/Scalar-List-Utils-$pkgver"
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$srcdir/Scalar-List-Utils-$pkgver"
-  make install
-
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-scalar-list-utils/repos/community-x86_64/PKGBUILD (from rev 
1285828, perl-scalar-list-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:15:11 UTC (rev 1285830)
@@ -0,0 +1,42 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: John D Jones III AKA jnbek 
+
+pkgname='perl-scalar-list-utils'
+pkgver=1.63
+pkgrel=1
+pkgdesc="A selection of general-utility list subroutines"
+arch=('x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=()
+url='https://metacpan.org/release/Scalar-List-Utils'
+source=("https://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Scalar-List-Utils-$pkgver.tar.gz;)
+sha256sums=('cafbdf212f6827dc9a0dd3b57b6ee50e860586d7198228a33262d55c559eb2a9')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
+  MODULEBUILDRC=/dev/null
+
+cd "$srcdir/Scalar-List-Utils-$pkgver"
+perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$srcdir/Scalar-List-Utils-$pkgver"
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$srcdir/Scalar-List-Utils-$pkgver"
+  make install
+
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}



[arch-commits] Commit in perl-scalar-list-utils/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:14:32
  Author: spupykin
Revision: 1285826

upgpkg: perl-scalar-list-utils 1.63-1

Modified:
  perl-scalar-list-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:14:24 UTC (rev 1285825)
+++ PKGBUILD2022-08-29 20:14:32 UTC (rev 1285826)
@@ -2,7 +2,7 @@
 # Contributor: John D Jones III AKA jnbek 
 
 pkgname='perl-scalar-list-utils'
-pkgver=1.62
+pkgver=1.63
 pkgrel=1
 pkgdesc="A selection of general-utility list subroutines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=()
 url='https://metacpan.org/release/Scalar-List-Utils'
 
source=("https://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Scalar-List-Utils-$pkgver.tar.gz;)
-sha256sums=('7279c4ec7df0cf2c0acb874abdfe86956f5028d2414974db56edfbed8a4d339f')
+sha256sums=('cafbdf212f6827dc9a0dd3b57b6ee50e860586d7198228a33262d55c559eb2a9')
 
 build() {
   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \



[arch-commits] Commit in perl-email-address-xs/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:14:11
  Author: spupykin
Revision: 1285823

upgpkg: perl-email-address-xs 1.05-1

Modified:
  perl-email-address-xs/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:14:10 UTC (rev 1285822)
+++ PKGBUILD2022-08-29 20:14:11 UTC (rev 1285823)
@@ -2,8 +2,8 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-email-address-xs
-pkgver=1.04
-pkgrel=5
+pkgver=1.05
+pkgrel=1
 pkgdesc="RFC 2822 Address Parsing and Creation "
 arch=('any')
 url="https://search.cpan.org/dist/Email-Address-XS;
@@ -11,7 +11,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/P/PA/PALI/Email-Address-XS-$pkgver.tar.gz;)
-sha256sums=('995f6d04a7b487dd5e1b55e3b52cad84c87750937c96feb6e24e8f1f10cd593e')
+sha256sums=('1510b7f10d67201037cd50d22c9d6b26eeca55ededa4cdb46bbca27e59a4ea16')
 
 build() {
   cd  "$srcdir"/Email-Address-XS-$pkgver



[arch-commits] Commit in perl-email-address-xs/repos/community-any (PKGBUILD PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:14:19
  Author: spupykin
Revision: 1285824

archrelease: copy trunk to community-any

Added:
  perl-email-address-xs/repos/community-any/PKGBUILD
(from rev 1285823, perl-email-address-xs/trunk/PKGBUILD)
Deleted:
  perl-email-address-xs/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:14:11 UTC (rev 1285823)
+++ PKGBUILD2022-08-29 20:14:19 UTC (rev 1285824)
@@ -1,27 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-email-address-xs
-pkgver=1.04
-pkgrel=5
-pkgdesc="RFC 2822 Address Parsing and Creation "
-arch=('any')
-url="https://search.cpan.org/dist/Email-Address-XS;
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/P/PA/PALI/Email-Address-XS-$pkgver.tar.gz;)
-sha256sums=('995f6d04a7b487dd5e1b55e3b52cad84c87750937c96feb6e24e8f1f10cd593e')
-
-build() {
-  cd  "$srcdir"/Email-Address-XS-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/Email-Address-XS-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-email-address-xs/repos/community-any/PKGBUILD (from rev 1285823, 
perl-email-address-xs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:14:19 UTC (rev 1285824)
@@ -0,0 +1,27 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-email-address-xs
+pkgver=1.05
+pkgrel=1
+pkgdesc="RFC 2822 Address Parsing and Creation "
+arch=('any')
+url="https://search.cpan.org/dist/Email-Address-XS;
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/P/PA/PALI/Email-Address-XS-$pkgver.tar.gz;)
+sha256sums=('1510b7f10d67201037cd50d22c9d6b26eeca55ededa4cdb46bbca27e59a4ea16')
+
+build() {
+  cd  "$srcdir"/Email-Address-XS-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/Email-Address-XS-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-datetime-timezone/repos/community-any (4 files)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:11:59
  Author: spupykin
Revision: 1285817

archrelease: copy trunk to community-any

Added:
  perl-datetime-timezone/repos/community-any/ChangeLog
(from rev 1285814, perl-datetime-timezone/trunk/ChangeLog)
  perl-datetime-timezone/repos/community-any/PKGBUILD
(from rev 1285815, perl-datetime-timezone/trunk/PKGBUILD)
Deleted:
  perl-datetime-timezone/repos/community-any/ChangeLog
  perl-datetime-timezone/repos/community-any/PKGBUILD

---+
 ChangeLog |   10 +-
 PKGBUILD  |   56 
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2022-08-29 20:11:48 UTC (rev 1285816)
+++ ChangeLog   2022-08-29 20:11:59 UTC (rev 1285817)
@@ -1,5 +0,0 @@
-
-2008-01-05  Douglas Soares de Andrade  
-
-   * Updated for x86_64
-

Copied: perl-datetime-timezone/repos/community-any/ChangeLog (from rev 1285814, 
perl-datetime-timezone/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2022-08-29 20:11:59 UTC (rev 1285817)
@@ -0,0 +1,5 @@
+
+2008-01-05  Douglas Soares de Andrade  
+
+   * Updated for x86_64
+

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:11:48 UTC (rev 1285816)
+++ PKGBUILD2022-08-29 20:11:59 UTC (rev 1285817)
@@ -1,28 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: François Charette 
-
-pkgname=perl-datetime-timezone
-pkgver=2.52
-pkgrel=1
-pkgdesc="Time zone object base class and factory "
-arch=(any)
-url="https://search.cpan.org/dist/DateTime-TimeZone;
-license=('GPL' 'PerlArtistic')
-depends=('perl-class-singleton>=1.03' 'perl-params-validate>=0.72' 
'perl-class-load'
-'perl-list-allutils')
-options=('!emptydirs')
-source=(https://www.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
-sha256sums=('8bc5c42082874b0e9c9ef949fa19035ac9b6904ebcda1931aa2d8a13f3950d8f')
-
-build() {
-  cd  "$srcdir"/DateTime-TimeZone-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/DateTime-TimeZone-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-datetime-timezone/repos/community-any/PKGBUILD (from rev 1285815, 
perl-datetime-timezone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:11:59 UTC (rev 1285817)
@@ -0,0 +1,28 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: François Charette 
+
+pkgname=perl-datetime-timezone
+pkgver=2.53
+pkgrel=1
+pkgdesc="Time zone object base class and factory "
+arch=(any)
+url="https://search.cpan.org/dist/DateTime-TimeZone;
+license=('GPL' 'PerlArtistic')
+depends=('perl-class-singleton>=1.03' 'perl-params-validate>=0.72' 
'perl-class-load'
+'perl-list-allutils')
+options=('!emptydirs')
+source=(https://www.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
+sha256sums=('4f6e9ff86892a52334bfb8dfa74ebea6adb8afd04fefcba8ae52fc054c4c15b3')
+
+build() {
+  cd  "$srcdir"/DateTime-TimeZone-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/DateTime-TimeZone-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-datetime-timezone/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:11:19
  Author: spupykin
Revision: 1285814

upgpkg: perl-datetime-timezone 2.53-1

Modified:
  perl-datetime-timezone/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:11:09 UTC (rev 1285813)
+++ PKGBUILD2022-08-29 20:11:19 UTC (rev 1285814)
@@ -2,7 +2,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-datetime-timezone
-pkgver=2.52
+pkgver=2.53
 pkgrel=1
 pkgdesc="Time zone object base class and factory "
 arch=(any)
@@ -12,7 +12,7 @@
 'perl-list-allutils')
 options=('!emptydirs')
 
source=(https://www.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
-sha256sums=('8bc5c42082874b0e9c9ef949fa19035ac9b6904ebcda1931aa2d8a13f3950d8f')
+sha256sums=('4f6e9ff86892a52334bfb8dfa74ebea6adb8afd04fefcba8ae52fc054c4c15b3')
 
 build() {
   cd  "$srcdir"/DateTime-TimeZone-$pkgver



[arch-commits] Commit in perl-curses/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:10:43
  Author: spupykin
Revision: 1285811

archrelease: copy trunk to community-x86_64

Added:
  perl-curses/repos/community-x86_64/PKGBUILD
(from rev 1285809, perl-curses/trunk/PKGBUILD)
Deleted:
  perl-curses/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:10:41 UTC (rev 1285810)
+++ PKGBUILD2022-08-29 20:10:43 UTC (rev 1285811)
@@ -1,28 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Charles Mauch 
-# Contributor: Francois Charette 
-
-pkgname=perl-curses
-pkgver=1.38
-pkgrel=2
-pkgdesc="Character screen handling and windowing"
-arch=('x86_64')
-url="https://search.cpan.org/dist/Curses;
-license=('GPL' 'PerlArtistic')
-depends=('perl' 'ncurses')
-options=('!emptydirs')
-source=(https://search.cpan.org/CPAN/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tar.gz)
-sha512sums=('27999e71f19576c930a794c9f478e8a3b6b3b1d1e68c4ca57b712f20c98a83dba46295c012a6c618d097b661ec30441c8147e26579218ecef977d7c7996c7442')
-
-build() {
-  cd  "$srcdir"/Curses-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/Curses-$pkgver
-  make pure_install doc_install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-curses/repos/community-x86_64/PKGBUILD (from rev 1285809, 
perl-curses/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:10:43 UTC (rev 1285811)
@@ -0,0 +1,28 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Charles Mauch 
+# Contributor: Francois Charette 
+
+pkgname=perl-curses
+pkgver=1.41
+pkgrel=1
+pkgdesc="Character screen handling and windowing"
+arch=('x86_64')
+url="https://search.cpan.org/dist/Curses;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'ncurses')
+options=('!emptydirs')
+source=(https://search.cpan.org/CPAN/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tar.gz)
+sha512sums=('a8d091f3f79be6368bb0e465563cc736a934f66f489d8c1ec86dca71c22705c7969e1468c9d330cc6653994af550f8f95282b0fd504174d2f77b7d32e98be108')
+
+build() {
+  cd  "$srcdir"/Curses-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/Curses-$pkgver
+  make pure_install doc_install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-curses/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:10:19
  Author: spupykin
Revision: 1285808

upgpkg: perl-curses 1.41-1

Modified:
  perl-curses/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:10:12 UTC (rev 1285807)
+++ PKGBUILD2022-08-29 20:10:19 UTC (rev 1285808)
@@ -3,8 +3,8 @@
 # Contributor: Francois Charette 
 
 pkgname=perl-curses
-pkgver=1.38
-pkgrel=2
+pkgver=1.41
+pkgrel=1
 pkgdesc="Character screen handling and windowing"
 arch=('x86_64')
 url="https://search.cpan.org/dist/Curses;
@@ -12,7 +12,7 @@
 depends=('perl' 'ncurses')
 options=('!emptydirs')
 
source=(https://search.cpan.org/CPAN/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tar.gz)
-sha512sums=('27999e71f19576c930a794c9f478e8a3b6b3b1d1e68c4ca57b712f20c98a83dba46295c012a6c618d097b661ec30441c8147e26579218ecef977d7c7996c7442')
+sha512sums=('a8d091f3f79be6368bb0e465563cc736a934f66f489d8c1ec86dca71c22705c7969e1468c9d330cc6653994af550f8f95282b0fd504174d2f77b7d32e98be108')
 
 build() {
   cd  "$srcdir"/Curses-$pkgver



[arch-commits] Commit in luaexpat/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:08:59
  Author: spupykin
Revision: 1285800

archrelease: copy trunk to community-x86_64

Added:
  luaexpat/repos/community-x86_64/PKGBUILD
(from rev 1285796, luaexpat/trunk/PKGBUILD)
Deleted:
  luaexpat/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:08:53 UTC (rev 1285799)
+++ PKGBUILD2022-08-29 20:08:59 UTC (rev 1285800)
@@ -1,63 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Daurnimator 
-# Maintainer: Caleb Maclennan 
-# Contributor: Lucas Hermann Negri 
-
-pkgbase=luaexpat
-pkgname=(lua-expat lua51-expat lua52-expat lua53-expat)
-pkgver=1.4.1
-pkgrel=2
-_rockrel=1
-pkgdesc='SAX XML parser based on the Expat library'
-arch=('x86_64')
-url="https://github.com/lunarmodules/$pkgbase;
-license=('MIT')
-depends=(expat)
-options=(debug)
-makedepends=(lua
- lua51
- lua52
- lua53
- luarocks)
-options=(debug)
-_archive="$pkgbase-$pkgver"
-_rock="$_archive-$_rockrel.linux-$CARCH.rock"
-_rockspec="$_archive-$_rockrel.rockspec"
-source=("$url/archive/$pkgver/$_archive.tar.gz")
-sha512sums=('fbc03287a237c13f395574ddf08a931ded0f457728b01bdc0a0533d212a0c908d74230be3c9e7f85a54ac244043cd853be3bf13d284185ad3e3ce6818d157635')
-
-build() {
-   cd "$_archive"
-   for LUAVER in 5.{1,2,3,4}; do
-   luarocks --lua-version "$LUAVER" \
-   CFLAGS="$CFLAGS -DLUA_C89_NUMBERS" \
-   make --pack-binary-rock --deps-mode none -- 
"rockspecs/$_rockspec"
-   install -Dm0644 -t "lua-$LUAVER/" "$_rock"
-   done
-}
-
-_package() {
-   cd "$_archive"
-   depends+=("${pkgname%-*}")
-   luarocks --lua-version "$1" --tree "$pkgdir/usr/" \
-   install --deps-mode none --no-manifest -- "lua-$1/$_rock"
-   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}
-
-package_lua-expat() {
-   _package 5.4
-}
-
-package_lua53-expat() {
-   _package 5.3
-}
-
-package_lua52-expat() {
-   _package 5.2
-}
-
-package_lua51-expat() {
-   replaces=(luaexpat)
-   conflicts=(luaexpat)
-   _package 5.1
-}

Copied: luaexpat/repos/community-x86_64/PKGBUILD (from rev 1285796, 
luaexpat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:08:59 UTC (rev 1285800)
@@ -0,0 +1,63 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Daurnimator 
+# Maintainer: Caleb Maclennan 
+# Contributor: Lucas Hermann Negri 
+
+pkgbase=luaexpat
+pkgname=(lua-expat lua51-expat lua52-expat lua53-expat)
+pkgver=1.5.0
+pkgrel=1
+_rockrel=1
+pkgdesc='SAX XML parser based on the Expat library'
+arch=('x86_64')
+url="https://github.com/lunarmodules/$pkgbase;
+license=('MIT')
+depends=(expat)
+options=(debug)
+makedepends=(lua
+ lua51
+ lua52
+ lua53
+ luarocks)
+options=(debug)
+_archive="$pkgbase-$pkgver"
+_rock="$_archive-$_rockrel.linux-$CARCH.rock"
+_rockspec="$_archive-$_rockrel.rockspec"
+source=("$url/archive/$pkgver/$_archive.tar.gz")
+sha512sums=('0ac151148101d62f1358f5f310be57de5379891ceda76f0eb821a8b56d0d9c781feaf1db601d982339cd4837f9504b1f9b8b14ebf3a7245925473f6824bbc8b3')
+
+build() {
+   cd "$_archive"
+   for LUAVER in 5.{1,2,3,4}; do
+   luarocks --lua-version "$LUAVER" \
+   CFLAGS="$CFLAGS -DLUA_C89_NUMBERS" \
+   make --pack-binary-rock --deps-mode none -- 
"rockspecs/$_rockspec"
+   install -Dm0644 -t "lua-$LUAVER/" "$_rock"
+   done
+}
+
+_package() {
+   cd "$_archive"
+   depends+=("${pkgname%-*}")
+   luarocks --lua-version "$1" --tree "$pkgdir/usr/" \
+   install --deps-mode none --no-manifest -- "lua-$1/$_rock"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
+package_lua-expat() {
+   _package 5.4
+}
+
+package_lua53-expat() {
+   _package 5.3
+}
+
+package_lua52-expat() {
+   _package 5.2
+}
+
+package_lua51-expat() {
+   replaces=(luaexpat)
+   conflicts=(luaexpat)
+   _package 5.1
+}



[arch-commits] Commit in luaexpat/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:08:31
  Author: spupykin
Revision: 1285795

upgpkg: luaexpat 1.5.0-1

Modified:
  luaexpat/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:08:22 UTC (rev 1285794)
+++ PKGBUILD2022-08-29 20:08:31 UTC (rev 1285795)
@@ -5,8 +5,8 @@
 
 pkgbase=luaexpat
 pkgname=(lua-expat lua51-expat lua52-expat lua53-expat)
-pkgver=1.4.1
-pkgrel=2
+pkgver=1.5.0
+pkgrel=1
 _rockrel=1
 pkgdesc='SAX XML parser based on the Expat library'
 arch=('x86_64')
@@ -24,7 +24,7 @@
 _rock="$_archive-$_rockrel.linux-$CARCH.rock"
 _rockspec="$_archive-$_rockrel.rockspec"
 source=("$url/archive/$pkgver/$_archive.tar.gz")
-sha512sums=('fbc03287a237c13f395574ddf08a931ded0f457728b01bdc0a0533d212a0c908d74230be3c9e7f85a54ac244043cd853be3bf13d284185ad3e3ce6818d157635')
+sha512sums=('0ac151148101d62f1358f5f310be57de5379891ceda76f0eb821a8b56d0d9c781feaf1db601d982339cd4837f9504b1f9b8b14ebf3a7245925473f6824bbc8b3')
 
 build() {
cd "$_archive"



[arch-commits] Commit in liburcu/repos/community-x86_64 (PKGBUILD PKGBUILD keys)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:31:02
  Author: spupykin
Revision: 1285902

archrelease: copy trunk to community-x86_64

Added:
  liburcu/repos/community-x86_64/PKGBUILD
(from rev 1285901, liburcu/trunk/PKGBUILD)
  liburcu/repos/community-x86_64/keys/
Deleted:
  liburcu/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:30:54 UTC (rev 1285901)
+++ PKGBUILD2022-08-29 20:31:02 UTC (rev 1285902)
@@ -1,27 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Christian Babeux 
-# Contributor: Yggdrasil 
-
-pkgname=liburcu
-pkgver=0.13.1
-pkgrel=1
-pkgdesc="LGPLv2.1 userspace RCU (read-copy-update) library"
-arch=('x86_64')
-url="https://lttng.org/urcu;
-license=('LGPL2.1')
-validpgpkeys=('2A0B4ED915F2D3FA45F5B16217280A9781186ACF')
-source=(https://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2{,.asc})
-depends=()
-sha1sums=('ff346e984d692cb8e6ea557d2b043df666f90ce7'
-  'SKIP')
-
-build() {
-cd "$srcdir"/userspace-rcu-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd "$srcdir"/userspace-rcu-${pkgver}
-make install DESTDIR="$pkgdir"
-}

Copied: liburcu/repos/community-x86_64/PKGBUILD (from rev 1285901, 
liburcu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:31:02 UTC (rev 1285902)
@@ -0,0 +1,27 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Christian Babeux 
+# Contributor: Yggdrasil 
+
+pkgname=liburcu
+pkgver=0.13.2
+pkgrel=1
+pkgdesc="LGPLv2.1 userspace RCU (read-copy-update) library"
+arch=('x86_64')
+url="https://lttng.org/urcu;
+license=('LGPL2.1')
+validpgpkeys=('2A0B4ED915F2D3FA45F5B16217280A9781186ACF')
+source=(https://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2{,.asc})
+depends=()
+sha1sums=('817b872d795b1552349f9d5bb6c3e2bc6f3804eb'
+  'SKIP')
+
+build() {
+cd "$srcdir"/userspace-rcu-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd "$srcdir"/userspace-rcu-${pkgver}
+make install DESTDIR="$pkgdir"
+}



[arch-commits] Commit in liburcu/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:30:36
  Author: spupykin
Revision: 1285899

upgpkg: liburcu 0.13.2-1

Modified:
  liburcu/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:30:31 UTC (rev 1285898)
+++ PKGBUILD2022-08-29 20:30:36 UTC (rev 1285899)
@@ -3,7 +3,7 @@
 # Contributor: Yggdrasil 
 
 pkgname=liburcu
-pkgver=0.13.1
+pkgver=0.13.2
 pkgrel=1
 pkgdesc="LGPLv2.1 userspace RCU (read-copy-update) library"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 validpgpkeys=('2A0B4ED915F2D3FA45F5B16217280A9781186ACF')
 source=(https://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2{,.asc})
 depends=()
-sha1sums=('ff346e984d692cb8e6ea557d2b043df666f90ce7'
+sha1sums=('817b872d795b1552349f9d5bb6c3e2bc6f3804eb'
   'SKIP')
 
 build() {



[arch-commits] Commit in perl-yaml-pp/repos/community-any (PKGBUILD PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:26:34
  Author: spupykin
Revision: 1285878

archrelease: copy trunk to community-any

Added:
  perl-yaml-pp/repos/community-any/PKGBUILD
(from rev 1285875, perl-yaml-pp/trunk/PKGBUILD)
Deleted:
  perl-yaml-pp/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 20:26:27 UTC (rev 1285877)
+++ PKGBUILD2022-08-29 20:26:34 UTC (rev 1285878)
@@ -1,41 +0,0 @@
-# Maintainer: Ash Berlin-Taylor 
-pkgname='perl-yaml-pp'
-pkgver=0.034
-pkgrel=1
-pkgdesc="Simple configuration automation"
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl>=0')
-makedepends=('perl-test-deep>=0' 'perl-test-warn>=0')
-url='http://search.cpan.org/dist/YAML-PP'
-source=('http://search.cpan.org/CPAN/authors/id/T/TI/TINITA/YAML-PP-0.026.tar.gz')
-sha512sums=('df13083fd641ddbcbdc9fe69875d459d3fd7f6295b8fd281b1a216794397f9966df552515dda05c4b001a426b91536ffa04bc519babccf4b4b9d5c929eb3d7fa')
-_distdir="YAML-PP-0.026"
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
-  MODULEBUILDRC=/dev/null
-
-cd "$srcdir/$_distdir"
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$srcdir/$_distdir"
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$srcdir/$_distdir"
-  make install
-
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-yaml-pp/repos/community-any/PKGBUILD (from rev 1285875, 
perl-yaml-pp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 20:26:34 UTC (rev 1285878)
@@ -0,0 +1,41 @@
+# Maintainer: Ash Berlin-Taylor 
+pkgname='perl-yaml-pp'
+pkgver=0.034
+pkgrel=2
+pkgdesc="Simple configuration automation"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl>=0')
+makedepends=('perl-test-deep>=0' 'perl-test-warn>=0')
+url='http://search.cpan.org/dist/YAML-PP'
+source=("http://search.cpan.org/CPAN/authors/id/T/TI/TINITA/YAML-PP-$pkgver.tar.gz;)
+sha512sums=('250afbc4c5f22a04ab904c1881e638d3124b57ebea019830a4ef8caadf25a8fd52266638fb896553e117fa4691d6a2e4afee610ce863a737424a85b4cde68a88')
+_distdir="YAML-PP-$pkgver"
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+  MODULEBUILDRC=/dev/null
+
+cd "$srcdir/$_distdir"
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$srcdir/$_distdir"
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$srcdir/$_distdir"
+  make install
+
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}



[arch-commits] Commit in perl-yaml-pp/trunk (PKGBUILD)

2022-08-29 Thread Sergej Pupykin via arch-commits
Date: Monday, August 29, 2022 @ 20:25:40
  Author: spupykin
Revision: 1285872

upgpkg: perl-yaml-pp 0.034-2
fix pkgver

Modified:
  perl-yaml-pp/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 20:25:34 UTC (rev 1285871)
+++ PKGBUILD2022-08-29 20:25:40 UTC (rev 1285872)
@@ -1,7 +1,7 @@
 # Maintainer: Ash Berlin-Taylor 
 pkgname='perl-yaml-pp'
 pkgver=0.034
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple configuration automation"
 arch=('any')
 license=('PerlArtistic' 'GPL')
@@ -9,9 +9,9 @@
 depends=('perl>=0')
 makedepends=('perl-test-deep>=0' 'perl-test-warn>=0')
 url='http://search.cpan.org/dist/YAML-PP'
-source=('http://search.cpan.org/CPAN/authors/id/T/TI/TINITA/YAML-PP-0.026.tar.gz')
-sha512sums=('df13083fd641ddbcbdc9fe69875d459d3fd7f6295b8fd281b1a216794397f9966df552515dda05c4b001a426b91536ffa04bc519babccf4b4b9d5c929eb3d7fa')
-_distdir="YAML-PP-0.026"
+source=("http://search.cpan.org/CPAN/authors/id/T/TI/TINITA/YAML-PP-$pkgver.tar.gz;)
+sha512sums=('250afbc4c5f22a04ab904c1881e638d3124b57ebea019830a4ef8caadf25a8fd52266638fb896553e117fa4691d6a2e4afee610ce863a737424a85b4cde68a88')
+_distdir="YAML-PP-$pkgver"
 
 build() {
   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \



[arch-commits] Commit in firefox-noscript/repos/community-any (PKGBUILD PKGBUILD)

2022-08-18 Thread Sergej Pupykin via arch-commits
Date: Thursday, August 18, 2022 @ 23:16:39
  Author: spupykin
Revision: 1269494

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 1269493, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-18 23:16:11 UTC (rev 1269493)
+++ PKGBUILD2022-08-18 23:16:39 UTC (rev 1269494)
@@ -1,30 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli schwartz 
-
-pkgname=firefox-noscript
-pkgver=11.4.6
-pkgrel=1
-#_file=3910951
-pkgdesc="Extension for firefox which disables javascript"
-arch=('any')
-url="https://noscript.net/;
-license=('GPL2')
-makedepends=('unzip' 'jq')
-groups=('firefox-addons')
-#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
-source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('5f917e54a52d7269959976ebb6eb41f1a14c047c30d5f7bd6a401fe4126f0b3a')
-b2sums=('c68a07f00c18230e353aa701ee05ff96a780343ddafb39e9b05c0fc6937ef6c6313ce1161757a4b71c69dead629c824466779e544a500a457b2ef5ca574d3a9a')
-
-check() {
-  unzip noscript-$pkgver.xpi manifest.json
-  jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
-}
-
-package() {
-  depends=('firefox')
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 1269493, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-18 23:16:39 UTC (rev 1269494)
@@ -0,0 +1,30 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli schwartz 
+
+pkgname=firefox-noscript
+pkgver=11.4.9
+pkgrel=1
+#_file=3910951
+pkgdesc="Extension for firefox which disables javascript"
+arch=('any')
+url="https://noscript.net/;
+license=('GPL2')
+makedepends=('unzip' 'jq')
+groups=('firefox-addons')
+#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
+source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('47a740f90258de755b709168c4985d9fc6721ff7f32f9cfc4c7094316cc5f960')
+b2sums=('70afcefd3b13dbaea2d986cbecbae8ac2ae9f6547f50647584a0159fb2240be4813b14e97229c46808f616f6f5e5c4f8ddfad6f193c75b6b36ef869af2fffea3')
+
+check() {
+  unzip noscript-$pkgver.xpi manifest.json
+  jq '.version' manifest.json | grep -E '^"'$pkgver'"$'
+}
+
+package() {
+  depends=('firefox')
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}



[arch-commits] Commit in firefox-noscript/trunk (PKGBUILD)

2022-08-18 Thread Sergej Pupykin via arch-commits
Date: Thursday, August 18, 2022 @ 23:16:11
  Author: spupykin
Revision: 1269493

upgpkg: firefox-noscript 11.4.9-1

Modified:
  firefox-noscript/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-18 22:53:28 UTC (rev 1269492)
+++ PKGBUILD2022-08-18 23:16:11 UTC (rev 1269493)
@@ -2,7 +2,7 @@
 # Maintainer: Eli schwartz 
 
 pkgname=firefox-noscript
-pkgver=11.4.6
+pkgver=11.4.9
 pkgrel=1
 #_file=3910951
 pkgdesc="Extension for firefox which disables javascript"
@@ -14,8 +14,8 @@
 
#source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
 
source=("noscript-${pkgver}.xpi::https://secure.informaction.com/download/releases/noscript-$pkgver.xpi;)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('5f917e54a52d7269959976ebb6eb41f1a14c047c30d5f7bd6a401fe4126f0b3a')
-b2sums=('c68a07f00c18230e353aa701ee05ff96a780343ddafb39e9b05c0fc6937ef6c6313ce1161757a4b71c69dead629c824466779e544a500a457b2ef5ca574d3a9a')
+sha256sums=('47a740f90258de755b709168c4985d9fc6721ff7f32f9cfc4c7094316cc5f960')
+b2sums=('70afcefd3b13dbaea2d986cbecbae8ac2ae9f6547f50647584a0159fb2240be4813b14e97229c46808f616f6f5e5c4f8ddfad6f193c75b6b36ef869af2fffea3')
 
 check() {
   unzip noscript-$pkgver.xpi manifest.json



[arch-commits] Commit in inn/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 22:12:38
  Author: spupykin
Revision: 1265833

inn: add more deps

Modified:
  inn/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 22:02:07 UTC (rev 1265832)
+++ PKGBUILD2022-08-12 22:12:38 UTC (rev 1265833)
@@ -4,12 +4,12 @@
 
 pkgname=inn
 pkgver=2.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Complete open source Usenet system. De facto standard for handling 
news routing, news spool and serving the spool to customers."
 url="https://www.isc.org/othersoftware/;
 arch=('x86_64')
 license=("custom:INN")
-depends=('openssl' 'perl-mime-tools')
+depends=('openssl' 'perl-mime-tools' 'perl-gd' 'pam')
 makedepends=('make' 'bison' 'python' 'gcc' 'smtp-forwarder' 'libsasl')
 optdepends=('python' 'libsasl'
 'sqlite: ovsqlite-server')



[arch-commits] Commit in dokuwiki/repos/community-any (4 files)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 22:02:07
  Author: spupykin
Revision: 1265832

archrelease: copy trunk to community-any

Added:
  dokuwiki/repos/community-any/PKGBUILD
(from rev 1265831, dokuwiki/trunk/PKGBUILD)
  dokuwiki/repos/community-any/apache.example.conf
(from rev 1265831, dokuwiki/trunk/apache.example.conf)
Deleted:
  dokuwiki/repos/community-any/PKGBUILD
  dokuwiki/repos/community-any/apache.example.conf

-+
 PKGBUILD|  134 +-
 apache.example.conf |   14 ++---
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 22:01:57 UTC (rev 1265831)
+++ PKGBUILD2022-08-12 22:02:07 UTC (rev 1265832)
@@ -1,67 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sébastien Luttringer
-
-pkgname=dokuwiki
-pkgver=20220626rc
-pkgrel=1
-_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
-_pkgver=${_pkgver/_/}
-_pkgver=${_pkgver/rc/}
-[[ $pkgver == *"rc" ]] && _release=candidate || _release=stable
-pkgdesc='Simple to use and highly versatile Open Source wiki software'
-arch=('any')
-url='https://www.dokuwiki.org/'
-license=('GPL')
-depends=('php')
-backup=('etc/webapps/dokuwiki/.htaccess'
-'etc/httpd/conf/extra/dokuwiki.conf')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
-'apache.example.conf')
-sha256sums=('94557e8ff37ba510f89d59660798a96e3a09d71c5bfd22319e9a7b7f9883347d'
-'237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
-
-package() {
-  cd "$pkgdir"
-  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
-  cp -a "$srcdir"/$pkgname-release_${_release}_${_pkgver} 
usr/share/webapps/dokuwiki
-
-  # move data in var
-  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
-  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
-
-  # move plugins in var
-  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
-  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
-
-  # move templates in var
-  mv usr/share/webapps/dokuwiki/lib/tpl var/lib/dokuwiki
-  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/tpl
-
-  # move config in /etc
-  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
-  chmod g=rwx etc/webapps/dokuwiki
-  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
-
-  # inform update on changes.log
-  touch var/lib/dokuwiki/data/changes.log
-  chmod 0644 var/lib/dokuwiki/data/changes.log
-
-  # use default htaccess
-  cp usr/share/webapps/dokuwiki/.htaccess.dist etc/webapps/dokuwiki/.htaccess
-  ln -s /etc/webapps/dokuwiki/.htaccess usr/share/webapps/dokuwiki/.htaccess
-
-  # fix rights and ownership
-  chown 33:33 var/lib/dokuwiki/plugins
-  chown -R 33:33 var/lib/dokuwiki/data
-  chown -R 33:33 etc/webapps/dokuwiki
-
-  # apache config
-  install -Dm0644 "$srcdir"/apache.example.conf 
etc/httpd/conf/extra/dokuwiki.conf
-
-  # php.ini
-#  install -dm0755 "$pkgdir"/etc/php/conf.d/
-#  echo 'open_basedir = 
${open_basedir}:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/' 
>"$pkgdir"/etc/php/conf.d/dokuwiki.ini
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dokuwiki/repos/community-any/PKGBUILD (from rev 1265831, 
dokuwiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 22:02:07 UTC (rev 1265832)
@@ -0,0 +1,67 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sébastien Luttringer
+
+pkgname=dokuwiki
+pkgver=20220731
+pkgrel=1
+_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
+_pkgver=${_pkgver/_/}
+_pkgver=${_pkgver/rc/}
+[[ $pkgver == *"rc" ]] && _release=candidate || _release=stable
+pkgdesc='Simple to use and highly versatile Open Source wiki software'
+arch=('any')
+url='https://www.dokuwiki.org/'
+license=('GPL')
+depends=('php')
+backup=('etc/webapps/dokuwiki/.htaccess'
+'etc/httpd/conf/extra/dokuwiki.conf')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
+'apache.example.conf')
+sha256sums=('595247d29adef875420c38f73aaa16799c1b93b363024bf9e572d29f579a398a'
+'237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
+
+package() {
+  cd "$pkgdir"
+  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
+  cp -a "$srcdir"/$pkgname-release_${_release}_${_pkgver} 
usr/share/webapps/dokuwiki
+
+  # move data in var
+  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
+  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
+
+  # move plugins in var
+  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
+  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
+
+  

[arch-commits] Commit in dokuwiki/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 22:01:57
  Author: spupykin
Revision: 1265831

upgpkg: dokuwiki 20220731-1

Modified:
  dokuwiki/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:59:54 UTC (rev 1265830)
+++ PKGBUILD2022-08-12 22:01:57 UTC (rev 1265831)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien Luttringer
 
 pkgname=dokuwiki
-pkgver=20220626rc
+pkgver=20220731
 pkgrel=1
 _pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
 _pkgver=${_pkgver/_/}
@@ -18,7 +18,7 @@
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/splitbrain/dokuwiki/archive/release_${_release}_${_pkgver}.tar.gz;
 'apache.example.conf')
-sha256sums=('94557e8ff37ba510f89d59660798a96e3a09d71c5bfd22319e9a7b7f9883347d'
+sha256sums=('595247d29adef875420c38f73aaa16799c1b93b363024bf9e572d29f579a398a'
 '237e11ec2c1cd69d0b7e8cff2169d0072666b31694efd727338c9197199e0f5f')
 
 package() {



[arch-commits] Commit in opensips/repos/community-x86_64 (8 files)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:59:54
  Author: spupykin
Revision: 1265830

archrelease: copy trunk to community-x86_64

Added:
  opensips/repos/community-x86_64/PKGBUILD
(from rev 1265829, opensips/trunk/PKGBUILD)
  opensips/repos/community-x86_64/openldap-2.5.patch
(from rev 1265829, opensips/trunk/openldap-2.5.patch)
  opensips/repos/community-x86_64/opensips.install
(from rev 1265829, opensips/trunk/opensips.install)
  opensips/repos/community-x86_64/opensips.service
(from rev 1265829, opensips/trunk/opensips.service)
Deleted:
  opensips/repos/community-x86_64/PKGBUILD
  opensips/repos/community-x86_64/openldap-2.5.patch
  opensips/repos/community-x86_64/opensips.install
  opensips/repos/community-x86_64/opensips.service

+
 PKGBUILD   |  140 +--
 openldap-2.5.patch |  114 -
 opensips.install   |6 +-
 opensips.service   |   22 
 4 files changed, 140 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 21:59:26 UTC (rev 1265829)
+++ PKGBUILD2022-08-12 21:59:54 UTC (rev 1265830)
@@ -1,71 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=opensips
-pkgver=3.2.6
-pkgrel=1
-pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ..."
-url="https://www.opensips.org;
-depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
-makedepends=('postgresql-libs>=8.4.1' 'unixodbc' 'libldap>=2.4.18' 
'libmariadbclient'
-'lynx' 'libxslt' 'libmicrohttpd')
-optdepends=('postgresql-libs'
-   'unixodbc'
-   'libldap'
-   'mariadb-libs'
-   'libsasl'
-   'pcre')
-backup=("etc/opensips/opensips.cfg"
-   "etc/opensips/osipsconsolerc"
-   "etc/opensips/opensipsctlrc")
-arch=('x86_64')
-license=('GPL')
-install=opensips.install
-options=('!emptydirs' 'zipman' '!makeflags' 'docs')
-source=(https://opensips.org/pub/opensips/${pkgver}/opensips-${pkgver}.tar.gz
-   
https://github.com/OpenSIPS/opensips/commit/38242d6fe7491ea5de900e9ae45e3902edd1a67f.patch
-   opensips.service)
-sha256sums=('99adc445c444526a2330209c7021f318f4718444529d48a6552384a7c6fb408a'
-'e6b5dfeeb83e1638baea42a290e205f2429b752f1a124395a557ef35ef3eea34'
-'c2fec4be085b108db10834fa9832e98d696c2de6408f85f96cf89c13bf6be819')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver/
-
-  patch -p1 -i "$srcdir"/38242d6fe7491ea5de900e9ae45e3902edd1a67f.patch
-  sed -i 's|sbin|bin|g' Makefile
-  sed -i 's|bin-dir = sbin/|bin-dir = bin/|' Makefile.defs
-}
-
-_modules="ldap db_mysql db_postgres db_unixodbc presence presence_xml h350 
proto_tls tlsops tls_mgm db_http httpd tm rr"
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver/
-
-  make \
-   include_modules="${_modules}" \
-   LIBDIR=lib PREFIX=/usr
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver/
-
-  make \
-   include_modules="${_modules}" \
-   BASEDIR="$pkgdir" PREFIX=/usr LIBDIR=lib install
-
-  # Conforms to the arch packaging standards 
(https://wiki.archlinux.org/index.php/Arch_Packaging_Standards)
-  mkdir -p "$pkgdir"/etc/
-  mv "$pkgdir"/usr/etc/opensips/ "$pkgdir"/etc/
-  sed -i 
's#mpath=".*lib/opensips/modules/"#mpath="/usr/lib/opensips/modules/"#' 
"$pkgdir"/etc/opensips/opensips.cfg
-
-  # fix bad paths
-  cd "$pkgdir"/usr/share
-  find -type f -exec sed -i "s#"$pkgdir"##" {} \;
-
-  mv "$pkgdir"/usr/sbin "$pkgdir"/usr/bin
-
-  cd "$pkgdir"/etc
-  find -type f -exec sed -i "s#"$pkgdir"##" {} \;
-
-  install -Dm0644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-}

Copied: opensips/repos/community-x86_64/PKGBUILD (from rev 1265829, 
opensips/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 21:59:54 UTC (rev 1265830)
@@ -0,0 +1,69 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=opensips
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ..."
+url="https://www.opensips.org;
+depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
+makedepends=('postgresql-libs>=8.4.1' 'unixodbc' 'libldap>=2.4.18' 
'libmariadbclient'
+'lynx' 'libxslt' 'libmicrohttpd')
+optdepends=('postgresql-libs'
+   'unixodbc'
+   'libldap'
+   'mariadb-libs'
+   'libsasl'
+   'pcre')
+backup=("etc/opensips/opensips.cfg"
+   "etc/opensips/osipsconsolerc"
+   "etc/opensips/opensipsctlrc")
+arch=('x86_64')
+license=('GPL')
+install=opensips.install
+options=('!emptydirs' 'zipman' '!makeflags' 'docs')
+source=(https://opensips.org/pub/opensips/${pkgver}/opensips-${pkgver}.tar.gz
+   opensips.service)

[arch-commits] Commit in opensips/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:59:26
  Author: spupykin
Revision: 1265829

upgpkg: opensips 3.3.0-1

Modified:
  opensips/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:59:12 UTC (rev 1265828)
+++ PKGBUILD2022-08-12 21:59:26 UTC (rev 1265829)
@@ -1,7 +1,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=opensips
-pkgver=3.2.6
+pkgver=3.3.0
 pkgrel=1
 pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ..."
 url="https://www.opensips.org;
@@ -22,16 +22,14 @@
 install=opensips.install
 options=('!emptydirs' 'zipman' '!makeflags' 'docs')
 source=(https://opensips.org/pub/opensips/${pkgver}/opensips-${pkgver}.tar.gz
-   
https://github.com/OpenSIPS/opensips/commit/38242d6fe7491ea5de900e9ae45e3902edd1a67f.patch
opensips.service)
-sha256sums=('99adc445c444526a2330209c7021f318f4718444529d48a6552384a7c6fb408a'
-'e6b5dfeeb83e1638baea42a290e205f2429b752f1a124395a557ef35ef3eea34'
+sha256sums=('5f3adff191f502324df6fbfaa73dbe9b1d87b92e46dcdd55b2ac8e86b5bc71d7'
 'c2fec4be085b108db10834fa9832e98d696c2de6408f85f96cf89c13bf6be819')
 
 prepare() {
   cd "$srcdir"/$pkgname-$pkgver/
 
-  patch -p1 -i "$srcdir"/38242d6fe7491ea5de900e9ae45e3902edd1a67f.patch
+#  patch -p1 -i "$srcdir"/38242d6fe7491ea5de900e9ae45e3902edd1a67f.patch
   sed -i 's|sbin|bin|g' Makefile
   sed -i 's|bin-dir = sbin/|bin-dir = bin/|' Makefile.defs
 }



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

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:59:12
  Author: spupykin
Revision: 1265828

archrelease: copy trunk to community-x86_64

Added:
  lxcfs/repos/community-x86_64/PKGBUILD
(from rev 1265827, lxcfs/trunk/PKGBUILD)
  lxcfs/repos/community-x86_64/keys/
  lxcfs/repos/community-x86_64/lxcfs.service
(from rev 1265827, lxcfs/trunk/lxcfs.service)
Deleted:
  lxcfs/repos/community-x86_64/PKGBUILD
  lxcfs/repos/community-x86_64/keys/
  lxcfs/repos/community-x86_64/lxcfs.service

---+
 PKGBUILD  |   78 +++-
 lxcfs.service |   26 +-
 2 files changed, 51 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 21:59:00 UTC (rev 1265827)
+++ PKGBUILD2022-08-12 21:59:12 UTC (rev 1265828)
@@ -1,40 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Christian Brauner 
-# Maintainer: Morten Linderud 
-
-pkgname=lxcfs
-pkgver=5.0.1
-pkgrel=2
-pkgdesc="FUSE filesystem for LXC"
-arch=(x86_64)
-url="https://linuxcontainers.org/;
-license=('GPL')
-depends=('lxc' 'libnih' 'fuse3' 'dbus-glib')
-makedepends=('help2man' 'meson' 'python-jinja' 'systemd')
-options=('emptydirs' 'debug')
-source=("https://linuxcontainers.org/downloads/lxcfs/lxcfs-$pkgver.tar.gz"{,.asc}
-
"lxcfs-5.0.1-fix-reinitialization-with-fuse3.patch::https://bugs.archlinux.org/task/75498?getfile=21663;
-"lxcfs.service")
-validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
-sha256sums=('1951b03155000311c7a2df17760554f1bb081015cfd0996304ac243b8e93dc81'
-'SKIP'
-'c2d7b4cd2abeb309a6e8277eb201b7f1a663ec6caee939d352dc0f435e59'
-'3549e83ebbd6ec5934be0c3137b0dbb1101cec098bc49d135fea29f733b9e2a1')
-
-prepare() {
-cd "$pkgname-$pkgver"
-patch -p1 <../lxcfs-5.0.1-fix-reinitialization-with-fuse3.patch
-}
-
-build() {
-cd "$pkgname-$pkgver"
-arch-meson ../build
-meson compile -C ../build
-}
-
-package() {
-cd "$pkgname-$pkgver"
-DESTDIR="$pkgdir" meson install -C ../build
-install -dm0755 "$pkgdir"/var/lib/lxcfs
-install -Dm0644 "$srcdir"/lxcfs.service 
"$pkgdir"/usr/lib/systemd/system/lxcfs.service
-}

Copied: lxcfs/repos/community-x86_64/PKGBUILD (from rev 1265827, 
lxcfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 21:59:12 UTC (rev 1265828)
@@ -0,0 +1,38 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Christian Brauner 
+# Maintainer: Morten Linderud 
+
+pkgname=lxcfs
+pkgver=5.0.2
+pkgrel=1
+pkgdesc="FUSE filesystem for LXC"
+arch=(x86_64)
+url="https://linuxcontainers.org/;
+license=('GPL')
+depends=('lxc' 'libnih' 'fuse3' 'dbus-glib')
+makedepends=('help2man' 'meson' 'python-jinja' 'systemd')
+options=('emptydirs' 'debug')
+source=("https://linuxcontainers.org/downloads/lxcfs/lxcfs-$pkgver.tar.gz"{,.asc}
+"lxcfs.service")
+validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
+sha256sums=('c3df03629ee8955de60a28da7490350ad1eb7aa3134b6917d40ec68ef092d039'
+'SKIP'
+'3549e83ebbd6ec5934be0c3137b0dbb1101cec098bc49d135fea29f733b9e2a1')
+
+prepare() {
+cd "$pkgname-$pkgver"
+#patch -p1 <../lxcfs-5.0.1-fix-reinitialization-with-fuse3.patch
+}
+
+build() {
+cd "$pkgname-$pkgver"
+arch-meson ../build
+meson compile -C ../build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+DESTDIR="$pkgdir" meson install -C ../build
+install -dm0755 "$pkgdir"/var/lib/lxcfs
+install -Dm0644 "$srcdir"/lxcfs.service 
"$pkgdir"/usr/lib/systemd/system/lxcfs.service
+}

Deleted: lxcfs.service
===
--- lxcfs.service   2022-08-12 21:59:00 UTC (rev 1265827)
+++ lxcfs.service   2022-08-12 21:59:12 UTC (rev 1265828)
@@ -1,13 +0,0 @@
-[Unit]
-Description=FUSE filesystem for LXC
-ConditionVirtualization=!container
-Before=lxc.service
-
-[Service]
-ExecStart=/usr/bin/lxcfs /var/lib/lxcfs
-KillMode=process
-Restart=on-failure
-ExecStopPost=-/bin/fusermount -u /var/lib/lxcfs
-
-[Install]
-WantedBy=multi-user.target

Copied: lxcfs/repos/community-x86_64/lxcfs.service (from rev 1265827, 
lxcfs/trunk/lxcfs.service)
===
--- lxcfs.service   (rev 0)
+++ lxcfs.service   2022-08-12 21:59:12 UTC (rev 1265828)
@@ -0,0 +1,13 @@
+[Unit]
+Description=FUSE filesystem for LXC
+ConditionVirtualization=!container
+Before=lxc.service
+
+[Service]
+ExecStart=/usr/bin/lxcfs /var/lib/lxcfs
+KillMode=process
+Restart=on-failure
+ExecStopPost=-/bin/fusermount -u /var/lib/lxcfs
+
+[Install]
+WantedBy=multi-user.target



[arch-commits] Commit in lxcfs/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:59:00
  Author: spupykin
Revision: 1265827

upgpkg: lxcfs 5.0.2-1

Modified:
  lxcfs/trunk/PKGBUILD

--+
 PKGBUILD |   10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:50:36 UTC (rev 1265826)
+++ PKGBUILD2022-08-12 21:59:00 UTC (rev 1265827)
@@ -3,8 +3,8 @@
 # Maintainer: Morten Linderud 
 
 pkgname=lxcfs
-pkgver=5.0.1
-pkgrel=2
+pkgver=5.0.2
+pkgrel=1
 pkgdesc="FUSE filesystem for LXC"
 arch=(x86_64)
 url="https://linuxcontainers.org/;
@@ -13,17 +13,15 @@
 makedepends=('help2man' 'meson' 'python-jinja' 'systemd')
 options=('emptydirs' 'debug')
 
source=("https://linuxcontainers.org/downloads/lxcfs/lxcfs-$pkgver.tar.gz"{,.asc}
-
"lxcfs-5.0.1-fix-reinitialization-with-fuse3.patch::https://bugs.archlinux.org/task/75498?getfile=21663;
 "lxcfs.service")
 validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
-sha256sums=('1951b03155000311c7a2df17760554f1bb081015cfd0996304ac243b8e93dc81'
+sha256sums=('c3df03629ee8955de60a28da7490350ad1eb7aa3134b6917d40ec68ef092d039'
 'SKIP'
-'c2d7b4cd2abeb309a6e8277eb201b7f1a663ec6caee939d352dc0f435e59'
 '3549e83ebbd6ec5934be0c3137b0dbb1101cec098bc49d135fea29f733b9e2a1')
 
 prepare() {
 cd "$pkgname-$pkgver"
-patch -p1 <../lxcfs-5.0.1-fix-reinitialization-with-fuse3.patch
+#patch -p1 <../lxcfs-5.0.1-fix-reinitialization-with-fuse3.patch
 }
 
 build() {



[arch-commits] Commit in websvn/repos/community-any (PKGBUILD PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:50:36
  Author: spupykin
Revision: 1265826

archrelease: copy trunk to community-any

Added:
  websvn/repos/community-any/PKGBUILD
(from rev 1265825, websvn/trunk/PKGBUILD)
Deleted:
  websvn/repos/community-any/PKGBUILD

--+
 PKGBUILD |   40 
 1 file changed, 20 insertions(+), 20 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 21:49:26 UTC (rev 1265825)
+++ PKGBUILD2022-08-12 21:50:36 UTC (rev 1265826)
@@ -1,20 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=websvn
-pkgver=2.6.1
-pkgrel=2
-pkgdesc="subversion web interface"
-arch=(any)
-url="https://websvnphp.github.io/;
-license=('GPL')
-depends=()
-backup=(srv/http/websvn/.htaccess)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/websvnphp/websvn/archive/$pkgver.tar.gz;)
-sha256sums=('42299634127211744b5b9bfb1d0db4f3fa8ba73b3c0f3be8dc3ada68e6258037')
-
-package() {
-  local _instdir="$pkgdir"/srv/http
-  mkdir -p ${_instdir}
-  cp -ra "$srcdir"/websvn-$pkgver ${_instdir}/websvn
-  echo "deny from all" >${_instdir}/websvn/.htaccess
-}

Copied: websvn/repos/community-any/PKGBUILD (from rev 1265825, 
websvn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 21:50:36 UTC (rev 1265826)
@@ -0,0 +1,20 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=websvn
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="subversion web interface"
+arch=(any)
+url="https://websvnphp.github.io/;
+license=('GPL')
+depends=()
+backup=(srv/http/websvn/.htaccess)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/websvnphp/websvn/archive/$pkgver.tar.gz;)
+sha256sums=('1cb23254f19e37f37620048711a55a0c439c38f6329475fea40a8be9c2df4e69')
+
+package() {
+  local _instdir="$pkgdir"/srv/http
+  mkdir -p ${_instdir}
+  cp -ra "$srcdir"/websvn-$pkgver ${_instdir}/websvn
+  echo "deny from all" >${_instdir}/websvn/.htaccess
+}



[arch-commits] Commit in websvn/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:49:26
  Author: spupykin
Revision: 1265825

upgpkg: websvn 2.7.0-1

Modified:
  websvn/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:48:43 UTC (rev 1265824)
+++ PKGBUILD2022-08-12 21:49:26 UTC (rev 1265825)
@@ -1,8 +1,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=websvn
-pkgver=2.6.1
-pkgrel=2
+pkgver=2.7.0
+pkgrel=1
 pkgdesc="subversion web interface"
 arch=(any)
 url="https://websvnphp.github.io/;
@@ -10,7 +10,7 @@
 depends=()
 backup=(srv/http/websvn/.htaccess)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/websvnphp/websvn/archive/$pkgver.tar.gz;)
-sha256sums=('42299634127211744b5b9bfb1d0db4f3fa8ba73b3c0f3be8dc3ada68e6258037')
+sha256sums=('1cb23254f19e37f37620048711a55a0c439c38f6329475fea40a8be9c2df4e69')
 
 package() {
   local _instdir="$pkgdir"/srv/http



[arch-commits] Commit in ser2net/repos/community-x86_64 (4 files)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:48:43
  Author: spupykin
Revision: 1265824

archrelease: copy trunk to community-x86_64

Added:
  ser2net/repos/community-x86_64/PKGBUILD
(from rev 1265823, ser2net/trunk/PKGBUILD)
  ser2net/repos/community-x86_64/ser2net.service
(from rev 1265823, ser2net/trunk/ser2net.service)
Deleted:
  ser2net/repos/community-x86_64/PKGBUILD
  ser2net/repos/community-x86_64/ser2net.service

-+
 PKGBUILD|   60 +++---
 ser2net.service |   22 +--
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 21:48:18 UTC (rev 1265823)
+++ PKGBUILD2022-08-12 21:48:43 UTC (rev 1265824)
@@ -1,30 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Shinlun Hsieh 
-
-pkgname=ser2net
-pkgver=4.3.4
-pkgrel=2
-pkgdesc="A proxy that allows telnet/tcp connections to be made to serial ports"
-arch=(x86_64)
-url="https://sourceforge.net/projects/ser2net;
-license=('GPL')
-depends=('gensio' 'libyaml')
-backup=(etc/ser2net/ser2net.yaml)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/ser2net/archive/v$pkgver.tar.gz;
-   ser2net.service)
-sha256sums=('666b293b520b226a5a7bf5c255221abe806143d4a313cb7cb0db1ccb68efb943'
-'b093e1f5bf7dd826816828623a5c6858f83a9f0dcb1a9785f545b29efd1c320c')
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  test -x configure || ./reconf
-  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 ser2net.yaml "$pkgdir"/etc/ser2net/ser2net.yaml
-  install -Dm0644 "$srcdir"/ser2net.service 
"$pkgdir"/usr/lib/systemd/system/ser2net.service
-}

Copied: ser2net/repos/community-x86_64/PKGBUILD (from rev 1265823, 
ser2net/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 21:48:43 UTC (rev 1265824)
@@ -0,0 +1,30 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Shinlun Hsieh 
+
+pkgname=ser2net
+pkgver=4.3.7
+pkgrel=1
+pkgdesc="A proxy that allows telnet/tcp connections to be made to serial ports"
+arch=(x86_64)
+url="https://sourceforge.net/projects/ser2net;
+license=('GPL')
+depends=('gensio' 'libyaml')
+backup=(etc/ser2net/ser2net.yaml)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/ser2net/archive/v$pkgver.tar.gz;
+   ser2net.service)
+sha256sums=('1a31b23986ad46602e90033d1dfa685da1788bdffcbe7b91927ba4464150f025'
+'b093e1f5bf7dd826816828623a5c6858f83a9f0dcb1a9785f545b29efd1c320c')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  test -x configure || ./reconf
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 ser2net.yaml "$pkgdir"/etc/ser2net/ser2net.yaml
+  install -Dm0644 "$srcdir"/ser2net.service 
"$pkgdir"/usr/lib/systemd/system/ser2net.service
+}

Deleted: ser2net.service
===
--- ser2net.service 2022-08-12 21:48:18 UTC (rev 1265823)
+++ ser2net.service 2022-08-12 21:48:43 UTC (rev 1265824)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Proxy that allows tcp connections to serial ports
-After=syslog.target network.target
-
-[Service]
-Type=simple
-ExecStart=/usr/bin/ser2net -n
-
-[Install]
-WantedBy=multi-user.target
-

Copied: ser2net/repos/community-x86_64/ser2net.service (from rev 1265823, 
ser2net/trunk/ser2net.service)
===
--- ser2net.service (rev 0)
+++ ser2net.service 2022-08-12 21:48:43 UTC (rev 1265824)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Proxy that allows tcp connections to serial ports
+After=syslog.target network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/ser2net -n
+
+[Install]
+WantedBy=multi-user.target
+



[arch-commits] Commit in ser2net/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:48:18
  Author: spupykin
Revision: 1265823

upgpkg: ser2net 4.3.7-1

Modified:
  ser2net/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:48:03 UTC (rev 1265822)
+++ PKGBUILD2022-08-12 21:48:18 UTC (rev 1265823)
@@ -2,8 +2,8 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=ser2net
-pkgver=4.3.4
-pkgrel=2
+pkgver=4.3.7
+pkgrel=1
 pkgdesc="A proxy that allows telnet/tcp connections to be made to serial ports"
 arch=(x86_64)
 url="https://sourceforge.net/projects/ser2net;
@@ -12,7 +12,7 @@
 backup=(etc/ser2net/ser2net.yaml)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/ser2net/archive/v$pkgver.tar.gz;
ser2net.service)
-sha256sums=('666b293b520b226a5a7bf5c255221abe806143d4a313cb7cb0db1ccb68efb943'
+sha256sums=('1a31b23986ad46602e90033d1dfa685da1788bdffcbe7b91927ba4464150f025'
 'b093e1f5bf7dd826816828623a5c6858f83a9f0dcb1a9785f545b29efd1c320c')
 
 build() {



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

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:48:03
  Author: spupykin
Revision: 1265822

archrelease: copy trunk to community-x86_64

Added:
  openvswitch/repos/community-x86_64/PKGBUILD
(from rev 1265821, openvswitch/trunk/PKGBUILD)
  openvswitch/repos/community-x86_64/openvswitch.install
(from rev 1265821, openvswitch/trunk/openvswitch.install)
  openvswitch/repos/community-x86_64/openvswitch.tmpfiles
(from rev 1265821, openvswitch/trunk/openvswitch.tmpfiles)
  openvswitch/repos/community-x86_64/ovs-vswitchd.service
(from rev 1265821, openvswitch/trunk/ovs-vswitchd.service)
  openvswitch/repos/community-x86_64/ovsdb-server.service
(from rev 1265821, openvswitch/trunk/ovsdb-server.service)
Deleted:
  openvswitch/repos/community-x86_64/PKGBUILD
  openvswitch/repos/community-x86_64/openvswitch.install
  openvswitch/repos/community-x86_64/openvswitch.tmpfiles
  openvswitch/repos/community-x86_64/ovs-vswitchd.service
  openvswitch/repos/community-x86_64/ovsdb-server.service

--+
 PKGBUILD |  110 -
 openvswitch.install  |   26 +--
 openvswitch.tmpfiles |2 
 ovs-vswitchd.service |   30 ++---
 ovsdb-server.service |   14 +++---
 5 files changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 21:46:48 UTC (rev 1265821)
+++ PKGBUILD2022-08-12 21:48:03 UTC (rev 1265822)
@@ -1,55 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Pedro Martinez-Julia (pedr...@um.es)
-# Contributor: Matt Monaco 
-
-pkgname=openvswitch
-pkgver=2.16.4
-pkgrel=1
-pkgdesc="Production Quality, Multilayer Open Virtual Switch"
-url="http://openvswitch.org;
-license=('APACHE')
-arch=(x86_64)
-install=openvswitch.install
-source=("http://openvswitch.org/releases/openvswitch-$pkgver.tar.gz;
-   openvswitch.tmpfiles
-   ovsdb-server.service
-   ovs-vswitchd.service)
-depends=('openssl' 'libcap-ng')
-makedepends=('python-six')
-optdepends=('python-six')
-options=('debug')
-sha256sums=('f475f00c18fef356b1ea1b0b6f64755f5a82615255f45b98406c41d694de6ac6'
-'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
-'fa2412b81c77921418131a4f6fd38956f50ffcc7b908ec91f94d3607a05d060b'
-'412a8d9a2d71f61b915d5e29c0ba44baae7770f564d885f99460b27a4cf1d398')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i \
--e 
's|$(sysconfdir)/bash_completion.d|/usr/share/bash-completion/completions|g' \
-Makefile.am
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./boot.sh
-  export CFLAGS="$CFLAGS -ffat-lto-objects"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---with-rundir=/run/openvswitch \
---sbindir=/usr/bin \
-PYTHON=/usr/bin/python2
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 "$srcdir"/openvswitch.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/openvswitch.conf"
-  install -Dm0644 "$srcdir"/ovsdb-server.service 
"$pkgdir/usr/lib/systemd/system/ovsdb-server.service"
-  install -Dm0644 "$srcdir"/ovs-vswitchd.service 
"$pkgdir/usr/lib/systemd/system/ovs-vswitchd.service"
-  install -dm0755 "$pkgdir/etc/openvswitch"
-  rm -rf "$pkgdir"/run
-}

Copied: openvswitch/repos/community-x86_64/PKGBUILD (from rev 1265821, 
openvswitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 21:48:03 UTC (rev 1265822)
@@ -0,0 +1,55 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Pedro Martinez-Julia (pedr...@um.es)
+# Contributor: Matt Monaco 
+
+pkgname=openvswitch
+pkgver=2.17.2
+pkgrel=1
+pkgdesc="Production Quality, Multilayer Open Virtual Switch"
+url="http://openvswitch.org;
+license=('APACHE')
+arch=(x86_64)
+install=openvswitch.install
+source=("http://openvswitch.org/releases/openvswitch-$pkgver.tar.gz;
+   openvswitch.tmpfiles
+   ovsdb-server.service
+   ovs-vswitchd.service)
+depends=('openssl' 'libcap-ng')
+makedepends=('python-six')
+optdepends=('python-six')
+options=('debug')
+sha256sums=('6a2e0db42badb8cbcaf7f3bebd5b5e9a2701319df1d04294e9a7a79e94504d69'
+'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
+'fa2412b81c77921418131a4f6fd38956f50ffcc7b908ec91f94d3607a05d060b'
+'412a8d9a2d71f61b915d5e29c0ba44baae7770f564d885f99460b27a4cf1d398')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i \
+-e 
's|$(sysconfdir)/bash_completion.d|/usr/share/bash-completion/completions|g' \
+Makefile.am
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./boot.sh
+  export CFLAGS="$CFLAGS -ffat-lto-objects"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-rundir=/run/openvswitch \
+--sbindir=/usr/bin \
+PYTHON=/usr/bin/python2
+  

[arch-commits] Commit in openvswitch/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:46:48
  Author: spupykin
Revision: 1265821

upgpkg: openvswitch 2.17.2-1

Modified:
  openvswitch/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:46:38 UTC (rev 1265820)
+++ PKGBUILD2022-08-12 21:46:48 UTC (rev 1265821)
@@ -3,7 +3,7 @@
 # Contributor: Matt Monaco 
 
 pkgname=openvswitch
-pkgver=2.16.4
+pkgver=2.17.2
 pkgrel=1
 pkgdesc="Production Quality, Multilayer Open Virtual Switch"
 url="http://openvswitch.org;
@@ -18,7 +18,7 @@
 makedepends=('python-six')
 optdepends=('python-six')
 options=('debug')
-sha256sums=('f475f00c18fef356b1ea1b0b6f64755f5a82615255f45b98406c41d694de6ac6'
+sha256sums=('6a2e0db42badb8cbcaf7f3bebd5b5e9a2701319df1d04294e9a7a79e94504d69'
 'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
 'fa2412b81c77921418131a4f6fd38956f50ffcc7b908ec91f94d3607a05d060b'
 '412a8d9a2d71f61b915d5e29c0ba44baae7770f564d885f99460b27a4cf1d398')



[arch-commits] Commit in logwatch/repos/community-any (10 files)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:46:38
  Author: spupykin
Revision: 1265820

archrelease: copy trunk to community-any

Added:
  logwatch/repos/community-any/PKGBUILD
(from rev 1265819, logwatch/trunk/PKGBUILD)
  logwatch/repos/community-any/cron.conf
(from rev 1265819, logwatch/trunk/cron.conf)
  logwatch/repos/community-any/maillog.conf
(from rev 1265819, logwatch/trunk/maillog.conf)
  logwatch/repos/community-any/messages.conf
(from rev 1265819, logwatch/trunk/messages.conf)
  logwatch/repos/community-any/secure.conf
(from rev 1265819, logwatch/trunk/secure.conf)
Deleted:
  logwatch/repos/community-any/PKGBUILD
  logwatch/repos/community-any/cron.conf
  logwatch/repos/community-any/maillog.conf
  logwatch/repos/community-any/messages.conf
  logwatch/repos/community-any/secure.conf

---+
 PKGBUILD  |  128 
 cron.conf |   20 
 maillog.conf  |   22 -
 messages.conf |   26 +--
 secure.conf   |   22 -
 5 files changed, 109 insertions(+), 109 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 21:45:39 UTC (rev 1265819)
+++ PKGBUILD2022-08-12 21:46:38 UTC (rev 1265820)
@@ -1,64 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Pierre Schmitz 
-
-pkgname=logwatch
-pkgver=7.6
-pkgrel=1
-arch=('any')
-pkgdesc="Logwatch is a customizable log analysis system."
-url="https://sourceforge.net/projects/logwatch/files/;
-depends=('perl')
-optdepends=('cron'
-   'perl-date-manip: human readable dates')
-license=('custom')
-backup=(etc/logwatch/conf/logwatch.conf
-   etc/logwatch/conf/ignore.conf
-   etc/logwatch/conf/override.conf)
-source=(https://downloads.sourceforge.net/project/logwatch/logwatch-$pkgver/logwatch-$pkgver.tar.gz
-   cron.conf
-   maillog.conf
-   messages.conf
-   secure.conf)
-sha256sums=('689f3c68b99ef7af7d3c7007c3ff0a55d5674bdbf9c01f69a9f187726d6d4baf'
-'41b9ec84fc825545f43080064ffaa9612cd037c10bb24c0810341e01d63f7a75'
-'9a614822b5f25d9d473a00abdd2e93751d86685608bd6ca0770e2954c3c97f0e'
-'59466406f306b4b377616943e8737f522cff713dd1fc968045cba57eeb0acbc2'
-'a4c78442968abf363729e96bfd9ed379eb0718967deb60950c201d40f8aaa461')
-
-prepare() {
-   cd "$srcdir"/$pkgname-$pkgver
-   sed \
-   -e '/BASEDIR=/d' \
-   -e '/CONFIGDIR=/d' \
-   -e '/TEMPDIR=/d' \
-   -e '/PERLEXE=/d' \
-   -e '/MANDIR=/d' \
-   -e '/ln -f -s $BASEDIR/d' \
-   -e "s|/lib/systemd/|$pkgdir/usr/lib/systemd/|g" \
-   -e "s|/usr/sbin/logwatch|$pkgdir/usr/bin/logwatch/|g" \
-   -i install_logwatch.sh
-}
-
-package() {
-   cd "$srcdir"/$pkgname-$pkgver
-
-   install -dm0755 "$pkgdir"/usr/{bin,lib/systemd/system}
-
-   export BASEDIR="$pkgdir/usr/share/logwatch"
-   export CONFIGDIR="$pkgdir/etc/logwatch"
-   export TEMPDIR="$pkgdir/var/cache/logwatch"
-   export PERLEXE="$pkgdir/usr/bin/perl"
-   export MANDIR="$pkgdir/usr/share/man"
-   echo "$pkgdir/usr/share/logwatch" | sh install_logwatch.sh --systemd
-   ln -sf /usr/share/logwatch/scripts/logwatch.pl 
"$pkgdir"/usr/bin/logwatch
-   rm -rf "$pkgdir"/usr/lib/systemd/system/multi-user.target.wants
-   sed -i "s|$pkgdir||g" "$pkgdir"/usr/share/logwatch/scripts/logwatch.pl
-
-   install -Dm0644 "$srcdir"/cron.conf 
"$pkgdir"/usr/share/logwatch/dist.conf/logfiles/cron.conf
-   install -Dm0644 "$srcdir"/maillog.conf 
"$pkgdir"/usr/share/logwatch/dist.conf/logfiles/maillog.conf
-   install -Dm0644 "$srcdir"/messages.conf 
"$pkgdir"/usr/share/logwatch/dist.conf/logfiles/messages.conf
-   install -Dm0644 "$srcdir"/secure.conf 
"$pkgdir"/usr/share/logwatch/dist.conf/logfiles/secure.conf
-
-   install -m 0755 -d "$pkgdir"/usr/share/licenses/$pkgname/
-   install -m 0644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: logwatch/repos/community-any/PKGBUILD (from rev 1265819, 
logwatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 21:46:38 UTC (rev 1265820)
@@ -0,0 +1,64 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Pierre Schmitz 
+
+pkgname=logwatch
+pkgver=7.7
+pkgrel=1
+arch=('any')
+pkgdesc="Logwatch is a customizable log analysis system."
+url="https://sourceforge.net/projects/logwatch/files/;
+depends=('perl')
+optdepends=('cron'
+   'perl-date-manip: human readable dates')
+license=('custom')
+backup=(etc/logwatch/conf/logwatch.conf
+   etc/logwatch/conf/ignore.conf
+   etc/logwatch/conf/override.conf)
+source=(https://downloads.sourceforge.net/project/logwatch/logwatch-$pkgver/logwatch-$pkgver.tar.gz
+   cron.conf
+   maillog.conf
+   messages.conf
+   

[arch-commits] Commit in logwatch/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:45:39
  Author: spupykin
Revision: 1265819

upgpkg: logwatch 7.7-1

Modified:
  logwatch/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:45:19 UTC (rev 1265818)
+++ PKGBUILD2022-08-12 21:45:39 UTC (rev 1265819)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=logwatch
-pkgver=7.6
+pkgver=7.7
 pkgrel=1
 arch=('any')
 pkgdesc="Logwatch is a customizable log analysis system."
@@ -19,7 +19,7 @@
maillog.conf
messages.conf
secure.conf)
-sha256sums=('689f3c68b99ef7af7d3c7007c3ff0a55d5674bdbf9c01f69a9f187726d6d4baf'
+sha256sums=('2a10c2c73f85d2ec9d8e9be3f553b7b5849cf795b89a1c1379c99cc36a06adbd'
 '41b9ec84fc825545f43080064ffaa9612cd037c10bb24c0810341e01d63f7a75'
 '9a614822b5f25d9d473a00abdd2e93751d86685608bd6ca0770e2954c3c97f0e'
 '59466406f306b4b377616943e8737f522cff713dd1fc968045cba57eeb0acbc2'



[arch-commits] Commit in gensio/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:45:19
  Author: spupykin
Revision: 1265818

archrelease: copy trunk to community-x86_64

Added:
  gensio/repos/community-x86_64/PKGBUILD
(from rev 1265817, gensio/trunk/PKGBUILD)
Deleted:
  gensio/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   50 +-
 1 file changed, 25 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 21:44:47 UTC (rev 1265817)
+++ PKGBUILD2022-08-12 21:45:19 UTC (rev 1265818)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Shinlun Hsieh 
-
-pkgname=gensio
-pkgver=2.3.5
-pkgrel=2
-pkgdesc="General Stream I/O"
-arch=(x86_64)
-url="https://sourceforge.net/projects/ser2net/;
-license=('GPL')
-depends=()
-source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/gensio/archive/v$pkgver.tar.gz;)
-sha256sums=('6b364b1fe34c7b163afd0b60972789537971e7d7170cd8338edde3b9e138ad98')
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  test -x configure || ./reconf
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-python=no
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
-  make DESTDIR="$pkgdir" install
-}

Copied: gensio/repos/community-x86_64/PKGBUILD (from rev 1265817, 
gensio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 21:45:19 UTC (rev 1265818)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Shinlun Hsieh 
+
+pkgname=gensio
+pkgver=2.4.1
+pkgrel=1
+pkgdesc="General Stream I/O"
+arch=(x86_64)
+url="https://sourceforge.net/projects/ser2net/;
+license=('GPL')
+depends=()
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/gensio/archive/v$pkgver.tar.gz;)
+sha256sums=('d344060af79e73fdd6dd795a7be1ac3f3a898ca68faa1458b26015263008623b')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  test -x configure || ./reconf
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-python=no
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in gensio/trunk (PKGBUILD)

2022-08-12 Thread Sergej Pupykin via arch-commits
Date: Friday, August 12, 2022 @ 21:44:47
  Author: spupykin
Revision: 1265817

upgpkg: gensio 2.4.1-1

Modified:
  gensio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 21:35:34 UTC (rev 1265816)
+++ PKGBUILD2022-08-12 21:44:47 UTC (rev 1265817)
@@ -2,8 +2,8 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=gensio
-pkgver=2.3.5
-pkgrel=2
+pkgver=2.4.1
+pkgrel=1
 pkgdesc="General Stream I/O"
 arch=(x86_64)
 url="https://sourceforge.net/projects/ser2net/;
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=()
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/cminyard/gensio/archive/v$pkgver.tar.gz;)
-sha256sums=('6b364b1fe34c7b163afd0b60972789537971e7d7170cd8338edde3b9e138ad98')
+sha256sums=('d344060af79e73fdd6dd795a7be1ac3f3a898ca68faa1458b26015263008623b')
 
 build() {
   cd "$srcdir"/${pkgname}-${pkgver/rc/-rc}



[arch-commits] Commit in recoll/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-07 Thread Sergej Pupykin via arch-commits
Date: Sunday, August 7, 2022 @ 12:21:22
  Author: spupykin
Revision: 1260540

archrelease: copy trunk to community-x86_64

Added:
  recoll/repos/community-x86_64/PKGBUILD
(from rev 1260539, recoll/trunk/PKGBUILD)
Deleted:
  recoll/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-07 12:21:13 UTC (rev 1260539)
+++ PKGBUILD2022-08-07 12:21:22 UTC (rev 1260540)
@@ -1,49 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Daniel J Griffiths 
-# Contributor: Andrea Scarpino 
-# Contributor: Vladimir Chizhov 
-# Contributor: Robert Emil Berge 
-
-pkgname=recoll
-pkgver=1.32.1
-pkgrel=1
-pkgdesc="Full text search tool based on Xapian backend"
-arch=('x86_64')
-url="https://www.lesbonscomptes.com/recoll/;
-license=('GPL')
-depends=('xapian-core>=1.0.15-1' 'qt5-base' 'openssl' 'hicolor-icon-theme' 
'qt5-webkit'
-'chmlib')
-makedepends=('python' 'python-setuptools')
-optdepends=('libxslt: for XML based formats (fb2,etc)'
-   'unzip: for the OpenOffice.org documents'
-   'poppler: for pdf'
-   'pstotext: for postscipt'
-   'antiword: for msword'
-   'catdoc: for ms excel and powerpoint'
-   'unrtf: for RTF'
-#  'untex: for dvi support with dvips'
-   'djvulibre: for djvu'
-   'id3lib: for mp3 tags support with id3info'
-   'python-mutagen: Audio metadata'
-   'perl-image-exiftool: EXIF data from raw files'
-   'python-lxml: indexing spreadsheets'
-'python-pychm: CHM filter'
-   'aspell-en: English stemming support')
-source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz;)
-sha512sums=('f8a4c90e1430ac720177f3e02c37ab9c2eb2b47abfae911b6471b3146e0cf537081bc4663d79fdece284dcc4afbdf5646aa8461c47f9e71f6b91cee5bf7466e8')
-
-prepare() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  sed -i '1,1i#include ' qtgui/ssearch_w.cpp
-}
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  QMAKE=qmake-qt5 ./configure --prefix=/usr --mandir=/usr/share/man 
--enable-recollq
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  make DESTDIR="$pkgdir" install
-}

Copied: recoll/repos/community-x86_64/PKGBUILD (from rev 1260539, 
recoll/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-07 12:21:22 UTC (rev 1260540)
@@ -0,0 +1,49 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Daniel J Griffiths 
+# Contributor: Andrea Scarpino 
+# Contributor: Vladimir Chizhov 
+# Contributor: Robert Emil Berge 
+
+pkgname=recoll
+pkgver=1.32.5
+pkgrel=1
+pkgdesc="Full text search tool based on Xapian backend"
+arch=('x86_64')
+url="https://www.lesbonscomptes.com/recoll/;
+license=('GPL')
+depends=('xapian-core>=1.0.15-1' 'qt5-base' 'openssl' 'hicolor-icon-theme' 
'qt5-webkit'
+'chmlib')
+makedepends=('python' 'python-setuptools')
+optdepends=('libxslt: for XML based formats (fb2,etc)'
+   'unzip: for the OpenOffice.org documents'
+   'poppler: for pdf'
+   'pstotext: for postscipt'
+   'antiword: for msword'
+   'catdoc: for ms excel and powerpoint'
+   'unrtf: for RTF'
+#  'untex: for dvi support with dvips'
+   'djvulibre: for djvu'
+   'id3lib: for mp3 tags support with id3info'
+   'python-mutagen: Audio metadata'
+   'perl-image-exiftool: EXIF data from raw files'
+   'python-lxml: indexing spreadsheets'
+'python-pychm: CHM filter'
+   'aspell-en: English stemming support')
+source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz;)
+sha512sums=('ea7242d7a3cbba66bb9f90523388b097263b370a1f11b09e5ad63ac58cdcea74db1ae17e312b81efcda6cfd856c02b7f961a57dbacd7c5b6b1a76f9afa89622e')
+
+prepare() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  sed -i '1,1i#include ' qtgui/ssearch_w.cpp
+}
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  QMAKE=qmake-qt5 ./configure --prefix=/usr --mandir=/usr/share/man 
--enable-recollq
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in recoll/trunk (PKGBUILD)

2022-08-07 Thread Sergej Pupykin via arch-commits
Date: Sunday, August 7, 2022 @ 12:21:13
  Author: spupykin
Revision: 1260539

upgpkg: recoll 1.32.5-1

Modified:
  recoll/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-07 12:15:14 UTC (rev 1260538)
+++ PKGBUILD2022-08-07 12:21:13 UTC (rev 1260539)
@@ -5,7 +5,7 @@
 # Contributor: Robert Emil Berge 
 
 pkgname=recoll
-pkgver=1.32.1
+pkgver=1.32.5
 pkgrel=1
 pkgdesc="Full text search tool based on Xapian backend"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 'python-pychm: CHM filter'
'aspell-en: English stemming support')
 source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz;)
-sha512sums=('f8a4c90e1430ac720177f3e02c37ab9c2eb2b47abfae911b6471b3146e0cf537081bc4663d79fdece284dcc4afbdf5646aa8461c47f9e71f6b91cee5bf7466e8')
+sha512sums=('ea7242d7a3cbba66bb9f90523388b097263b370a1f11b09e5ad63ac58cdcea74db1ae17e312b81efcda6cfd856c02b7f961a57dbacd7c5b6b1a76f9afa89622e')
 
 prepare() {
   cd "$srcdir/$pkgname-${pkgver/_/}"



[arch-commits] Commit in phpldapadmin/repos/community-any (10 files)

2022-08-07 Thread Sergej Pupykin via arch-commits
Date: Sunday, August 7, 2022 @ 12:15:14
  Author: spupykin
Revision: 1260538

archrelease: copy trunk to community-any

Added:
  phpldapadmin/repos/community-any/PKGBUILD
(from rev 1260537, phpldapadmin/trunk/PKGBUILD)
  phpldapadmin/repos/community-any/disable-mcrypt.patch
(from rev 1260537, phpldapadmin/trunk/disable-mcrypt.patch)
  phpldapadmin/repos/community-any/password-unescape.patch
(from rev 1260537, phpldapadmin/trunk/password-unescape.patch)
  phpldapadmin/repos/community-any/phpldapadmin-1.2.3-php7_4.patch
(from rev 1260537, phpldapadmin/trunk/phpldapadmin-1.2.3-php7_4.patch)
  phpldapadmin/repos/community-any/sort-in-templates.patch
(from rev 1260537, phpldapadmin/trunk/sort-in-templates.patch)
Deleted:
  phpldapadmin/repos/community-any/PKGBUILD
  phpldapadmin/repos/community-any/disable-mcrypt.patch
  phpldapadmin/repos/community-any/password-unescape.patch
  phpldapadmin/repos/community-any/phpldapadmin-1.2.3-php7_4.patch
  phpldapadmin/repos/community-any/sort-in-templates.patch

-+
 PKGBUILD|   86 +++---
 disable-mcrypt.patch|   72 +++
 password-unescape.patch |   20 
 phpldapadmin-1.2.3-php7_4.patch |   48 ++---
 sort-in-templates.patch |   24 +-
 5 files changed, 125 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-07 12:14:59 UTC (rev 1260537)
+++ PKGBUILD2022-08-07 12:15:14 UTC (rev 1260538)
@@ -1,43 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=phpldapadmin
-pkgver=1.2.6.3
-pkgrel=1
-pkgdesc="A PHP and hence web-based tool to administrate LDAP over the WWW"
-arch=('any')
-url="https://github.com/leenooks/phpLDAPadmin;
-license=('GPL')
-depends=('libldap' 'php7')
-makedepends=('optipng')
-backup=("etc/webapps/phpldapadmin/config.php")
-source=($pkgname-$pkgver.tar.gz::https://github.com/leenooks/phpLDAPadmin/archive/$pkgver.tar.gz
-disable-mcrypt.patch
-phpldapadmin-1.2.3-php7_4.patch
-password-unescape.patch
-sort-in-templates.patch)
-sha256sums=('718f805403279f8e54caa1046b5f43c989e3bce82c408d22d349b5393e4a2cea'
-'b31774abab4dd603ec9acbeda49adb188890173ee93042a811b5724e01edd837'
-'d6e9b6361549be4a4e5a05ffac0917307973fe35717041f7cdde4171271ad168'
-'11e673b4ebbd922e5f6769837fef659303c48247f414dcd80f742bb01b6162b7'
-'fc2d4bdf4d43a90aa541fe20eeed494caa339eacf3f08b06539efcdbacc3578f')
-
-prepare() {
-  cd "$srcdir"/phpLDAPadmin-${pkgver}/
-  find -type f -name '*.png' -exec optipng -quiet -force -fix {} \;
-  patch -p1 -i "$srcdir"/disable-mcrypt.patch
-#  patch -p1 -i "$srcdir"/phpldapadmin-1.2.3-php7_4.patch
-  patch -p1 -i "$srcdir"/sort-in-templates.patch
-#  patch -p1 -i "$srcdir"/password-unescape.patch
-  find -type f -name '*.orig' -exec rm -f {} \;
-}
-
-package() {
-  _instdir="$pkgdir"/usr/share/webapps/phpldapadmin
-  mkdir -p ${_instdir} "$pkgdir"/etc/webapps/phpldapadmin
-  cd ${_instdir}
-
-  cp -ra "$srcdir"/phpLDAPadmin-${pkgver}/* .
-
-  ln -s /etc/webapps/phpldapadmin/config.php ${_instdir}/config/config.php
-  cp ${_instdir}/config/config.php.example 
"$pkgdir"/etc/webapps/phpldapadmin/config.php
-}

Copied: phpldapadmin/repos/community-any/PKGBUILD (from rev 1260537, 
phpldapadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-07 12:15:14 UTC (rev 1260538)
@@ -0,0 +1,43 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=phpldapadmin
+pkgver=1.2.6.4
+pkgrel=1
+pkgdesc="A PHP and hence web-based tool to administrate LDAP over the WWW"
+arch=('any')
+url="https://github.com/leenooks/phpLDAPadmin;
+license=('GPL')
+depends=('libldap' 'php7')
+makedepends=('optipng')
+backup=("etc/webapps/phpldapadmin/config.php")
+source=($pkgname-$pkgver.tar.gz::https://github.com/leenooks/phpLDAPadmin/archive/$pkgver.tar.gz
+disable-mcrypt.patch
+phpldapadmin-1.2.3-php7_4.patch
+password-unescape.patch
+sort-in-templates.patch)
+sha256sums=('92e390c013714c75439737633ad4576bc642d87b0091fab6226cbbcb13a0ea48'
+'b31774abab4dd603ec9acbeda49adb188890173ee93042a811b5724e01edd837'
+'d6e9b6361549be4a4e5a05ffac0917307973fe35717041f7cdde4171271ad168'
+'11e673b4ebbd922e5f6769837fef659303c48247f414dcd80f742bb01b6162b7'
+'fc2d4bdf4d43a90aa541fe20eeed494caa339eacf3f08b06539efcdbacc3578f')
+
+prepare() {
+  cd "$srcdir"/phpLDAPadmin-${pkgver}/
+  find -type f -name '*.png' -exec optipng -quiet -force -fix {} \;
+  patch -p1 -i "$srcdir"/disable-mcrypt.patch
+#  patch -p1 -i "$srcdir"/phpldapadmin-1.2.3-php7_4.patch
+  patch -p1 -i "$srcdir"/sort-in-templates.patch
+#  patch -p1 -i "$srcdir"/password-unescape.patch
+  find -type f -name '*.orig' 

[arch-commits] Commit in phpldapadmin/trunk (PKGBUILD)

2022-08-07 Thread Sergej Pupykin via arch-commits
Date: Sunday, August 7, 2022 @ 12:14:59
  Author: spupykin
Revision: 1260537

upgpkg: phpldapadmin 1.2.6.4-1

Modified:
  phpldapadmin/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-07 12:14:53 UTC (rev 1260536)
+++ PKGBUILD2022-08-07 12:14:59 UTC (rev 1260537)
@@ -1,7 +1,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=phpldapadmin
-pkgver=1.2.6.3
+pkgver=1.2.6.4
 pkgrel=1
 pkgdesc="A PHP and hence web-based tool to administrate LDAP over the WWW"
 arch=('any')
@@ -15,7 +15,7 @@
 phpldapadmin-1.2.3-php7_4.patch
 password-unescape.patch
 sort-in-templates.patch)
-sha256sums=('718f805403279f8e54caa1046b5f43c989e3bce82c408d22d349b5393e4a2cea'
+sha256sums=('92e390c013714c75439737633ad4576bc642d87b0091fab6226cbbcb13a0ea48'
 'b31774abab4dd603ec9acbeda49adb188890173ee93042a811b5724e01edd837'
 'd6e9b6361549be4a4e5a05ffac0917307973fe35717041f7cdde4171271ad168'
 '11e673b4ebbd922e5f6769837fef659303c48247f414dcd80f742bb01b6162b7'



[arch-commits] Commit in perl-test-trap/repos/community-any (PKGBUILD PKGBUILD)

2022-08-07 Thread Sergej Pupykin via arch-commits
Date: Sunday, August 7, 2022 @ 12:14:53
  Author: spupykin
Revision: 1260536

archrelease: copy trunk to community-any

Added:
  perl-test-trap/repos/community-any/PKGBUILD
(from rev 1260535, perl-test-trap/trunk/PKGBUILD)
Deleted:
  perl-test-trap/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-07 12:14:43 UTC (rev 1260535)
+++ PKGBUILD2022-08-07 12:14:53 UTC (rev 1260536)
@@ -1,31 +0,0 @@
-# Maintainer:
-
-pkgname=perl-test-trap
-pkgver=0.3.4
-pkgrel=5
-pkgdesc='Trap exit codes, exceptions, output, etc.'
-arch=('any')
-url="https://metacpan.org/release/Test-Trap;
-license=('PerlArtistic' 'GPL')
-depends=('perl' 'perl-data-dump')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/E/EB/EBHANSSEN/Test-Trap-v$pkgver.tar.gz;)
-sha1sums=('53519d57ba9879fa935cf49c09da7514d8d7dd89')
-
-build() {
-  cd Test-Trap-v$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Test-Trap-v$pkgver
-  # XXX: test fails since perl 5.26.0, no idea why, figure it out later - 
bluewind
-  rm -f t/10-tester.t
-  make test
-}
-
-package() {
-  cd Test-Trap-v$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-test-trap/repos/community-any/PKGBUILD (from rev 1260535, 
perl-test-trap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-07 12:14:53 UTC (rev 1260536)
@@ -0,0 +1,31 @@
+# Maintainer:
+
+pkgname=perl-test-trap
+pkgver=0.3.5
+pkgrel=1
+pkgdesc='Trap exit codes, exceptions, output, etc.'
+arch=('any')
+url="https://metacpan.org/release/Test-Trap;
+license=('PerlArtistic' 'GPL')
+depends=('perl' 'perl-data-dump')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/E/EB/EBHANSSEN/Test-Trap-v$pkgver.tar.gz;)
+sha1sums=('41d3430a0ab8cfec955c9c45dd12d1f92c29e439')
+
+build() {
+  cd Test-Trap-v$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Test-Trap-v$pkgver
+  # XXX: test fails since perl 5.26.0, no idea why, figure it out later - 
bluewind
+  rm -f t/10-tester.t
+  make test
+}
+
+package() {
+  cd Test-Trap-v$pkgver
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in perl-test-trap/trunk (PKGBUILD)

2022-08-07 Thread Sergej Pupykin via arch-commits
Date: Sunday, August 7, 2022 @ 12:14:43
  Author: spupykin
Revision: 1260535

upgpkg: perl-test-trap 0.3.5-1

Modified:
  perl-test-trap/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-07 12:14:38 UTC (rev 1260534)
+++ PKGBUILD2022-08-07 12:14:43 UTC (rev 1260535)
@@ -1,8 +1,8 @@
 # Maintainer:
 
 pkgname=perl-test-trap
-pkgver=0.3.4
-pkgrel=5
+pkgver=0.3.5
+pkgrel=1
 pkgdesc='Trap exit codes, exceptions, output, etc.'
 arch=('any')
 url="https://metacpan.org/release/Test-Trap;
@@ -10,7 +10,7 @@
 depends=('perl' 'perl-data-dump')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/E/EB/EBHANSSEN/Test-Trap-v$pkgver.tar.gz;)
-sha1sums=('53519d57ba9879fa935cf49c09da7514d8d7dd89')
+sha1sums=('41d3430a0ab8cfec955c9c45dd12d1f92c29e439')
 
 build() {
   cd Test-Trap-v$pkgver



  1   2   3   4   5   6   7   8   9   10   >