[arch-commits] Commit in dhcpcd/repos (7 files)

2020-12-28 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 29, 2020 @ 07:28:37
  Author: grazzolini
Revision: 405090

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 405089, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.install
(from rev 405089, dhcpcd/trunk/dhcpcd.install)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 405089, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 405089, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 405089, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 405089, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   77 ++
 dhcpcd.install  |7 
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |1 
 dhcpcd_.service |   15 ++
 6 files changed, 114 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 405089, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-29 07:28:37 UTC (rev 405090)
@@ -0,0 +1,77 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.4.0
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+install='dhcpcd.install'
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd.install
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('41a69297f380bf15ee8f94f73154f8c2bca7157a087c0d5aca8de000ba1d4513'
+'d40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'
+'55d57b958f6b7e4d4a538ee88b0fcc1a522050c2d38efb5d680139f618234b35')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.install (from rev 405089, 
dhcpcd/trunk/dhcpcd.install)
===
--- testing-x86_64/dhcpcd.install   (rev 0)
+++ testing-x86_64/dhcpcd.install   2020-12-29 07:28:37 UTC (rev 405090)
@@ -0,0 +1,7 @@
+pre_upgrade() {
+if [ -d /var/lib/dhcpcd ]; then
+# match permissions with upstream
+chown root:root /var/lib/dhcpcd
+chmod 0750 /var/lib/dhcpcd
+fi
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 405089, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-12-29 07:28:37 UTC (rev 405090)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.sysusers (from rev 

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

2020-12-28 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 29, 2020 @ 07:27:43
  Author: grazzolini
Revision: 405087

upgpkg: dhcpcd 9.4.0-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-28 22:40:54 UTC (rev 405086)
+++ PKGBUILD2020-12-29 07:27:43 UTC (rev 405087)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=9.3.4
+pkgver=9.4.0
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
@@ -23,7 +23,7 @@
 dhcpcd.sysusers
 dhcpcd.tmpfiles)
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('5c823a0b981b52e7e0fd3183ae220422d6fcc3aa511af31dcb1a7ee6cb0f1c39'
+sha256sums=('41a69297f380bf15ee8f94f73154f8c2bca7157a087c0d5aca8de000ba1d4513'
 'd40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
 '37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
 '20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'


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

2020-12-23 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, December 23, 2020 @ 20:43:35
  Author: grazzolini
Revision: 785172

archrelease: copy trunk to community-x86_64

Added:
  nginx-mainline/repos/community-x86_64/PKGBUILD
(from rev 785171, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/community-x86_64/logrotate
(from rev 785171, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/community-x86_64/nginx.install
(from rev 785171, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/community-x86_64/service
(from rev 785171, nginx-mainline/trunk/service)
Deleted:
  nginx-mainline/repos/community-x86_64/PKGBUILD
  nginx-mainline/repos/community-x86_64/logrotate
  nginx-mainline/repos/community-x86_64/nginx.install
  nginx-mainline/repos/community-x86_64/service

---+
 PKGBUILD  |  290 
 logrotate |   20 +--
 nginx.install |   24 ++--
 service   |   34 +++---
 4 files changed, 185 insertions(+), 183 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-23 20:42:40 UTC (rev 785171)
+++ PKGBUILD2020-12-23 20:43:35 UTC (rev 785172)
@@ -1,144 +0,0 @@
-# Maintainer:  Giancarlo Razzolini 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Sébastien Luttringer
-# Contributor: Drew DeVault
-
-pkgbase=nginx-mainline
-pkgname=(nginx-mainline nginx-mainline-src)
-pkgver=1.19.6
-pkgrel=1
-pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
-arch=('x86_64')
-url='https://nginx.org'
-license=('custom')
-depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap' 'libxcrypt')
-backup=('etc/nginx/fastcgi.conf'
-'etc/nginx/fastcgi_params'
-'etc/nginx/koi-win'
-'etc/nginx/koi-utf'
-'etc/nginx/nginx.conf'
-'etc/nginx/scgi_params'
-'etc/nginx/uwsgi_params'
-'etc/nginx/win-utf'
-'etc/logrotate.d/nginx')
-install=nginx.install
-provides=('nginx')
-conflicts=('nginx')
-source=($url/download/nginx-$pkgver.tar.gz{,.asc}
-service
-logrotate)
-validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('0be1d90b45b1bdfcf8339f299e74063a'
- 'SKIP'
- 'ef491e760e7c1ffec9ca25441a150c83'
- '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('1249c56b124a8de71f5d722e53d599f3b0cb14dc0f95b1eb905a6a8019b2d33f8e76874de2a88d49c4c82ee4fa7aabd42e5044a0a110892c23b50f71cb632148'
-'SKIP'
-
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
-
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
-
-_common_flags=(
-  --with-compat
-  --with-debug
-  --with-file-aio
-  --with-http_addition_module
-  --with-http_auth_request_module
-  --with-http_dav_module
-  --with-http_degradation_module
-  --with-http_flv_module
-  --with-http_geoip_module
-  --with-http_gunzip_module
-  --with-http_gzip_static_module
-  --with-http_mp4_module
-  --with-http_realip_module
-  --with-http_secure_link_module
-  --with-http_slice_module
-  --with-http_ssl_module
-  --with-http_stub_status_module
-  --with-http_sub_module
-  --with-http_v2_module
-  --with-mail
-  --with-mail_ssl_module
-  --with-pcre-jit
-  --with-stream
-  --with-stream_geoip_module
-  --with-stream_realip_module
-  --with-stream_ssl_module
-  --with-stream_ssl_preread_module
-  --with-threads
-)
-
-_mainline_flags=(
-)
-
-prepare() {
-  cp -r $provides-$pkgver{,-src}
-}
-
-build() {
-  cd $provides-$pkgver
-  ./configure \
---prefix=/etc/nginx \
---conf-path=/etc/nginx/nginx.conf \
---sbin-path=/usr/bin/nginx \
---pid-path=/run/nginx.pid \
---lock-path=/run/lock/nginx.lock \
---user=http \
---group=http \
---http-log-path=/var/log/nginx/access.log \
---error-log-path=stderr \
---http-client-body-temp-path=/var/lib/nginx/client-body \
---http-proxy-temp-path=/var/lib/nginx/proxy \
---http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
---http-scgi-temp-path=/var/lib/nginx/scgi \
---http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
---with-cc-opt="$CFLAGS $CPPFLAGS" \
---with-ld-opt="$LDFLAGS" \
-${_common_flags[@]} \
-${_mainline_flags[@]}
-
-  make
-}
-
-package_nginx-mainline() {
-  cd $provides-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
-
-  for i in ftdetect indent syntax; do
-install -Dm644 contrib/vim/$i/nginx.vim \
-  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
-  done
-}
-
-package_nginx-mainline-src() {
-  pkgdesc="Source code of nginx-mainline $pkgver, useful for building modules"
-  depends=()
-  install -d "$pkgdir/usr/src"
-  cp -r $provides-$pkgver-src "$pkgdir/usr/src/nginx"
-}

Copied: nginx-mainline/repos/community-x86_64/PKGBUILD (from rev 785171, 

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

2020-12-23 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, December 23, 2020 @ 20:42:40
  Author: grazzolini
Revision: 785171

upgpkg: nginx-mainline 1.19.6-2

Modified:
  nginx-mainline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-23 19:57:54 UTC (rev 785170)
+++ PKGBUILD2020-12-23 20:42:40 UTC (rev 785171)
@@ -3,10 +3,11 @@
 # Contributor: Sébastien Luttringer
 # Contributor: Drew DeVault
 
+_pkgbase=nginx
 pkgbase=nginx-mainline
 pkgname=(nginx-mainline nginx-mainline-src)
 pkgver=1.19.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('x86_64')
 url='https://nginx.org'
@@ -22,8 +23,6 @@
 'etc/nginx/win-utf'
 'etc/logrotate.d/nginx')
 install=nginx.install
-provides=('nginx')
-conflicts=('nginx')
 source=($url/download/nginx-$pkgver.tar.gz{,.asc}
 service
 logrotate)
@@ -72,11 +71,11 @@
 )
 
 prepare() {
-  cp -r $provides-$pkgver{,-src}
+  cp -r $_pkgbase-$pkgver{,-src}
 }
 
 build() {
-  cd $provides-$pkgver
+  cd $_pkgbase-$pkgver
   ./configure \
 --prefix=/etc/nginx \
 --conf-path=/etc/nginx/nginx.conf \
@@ -101,7 +100,10 @@
 }
 
 package_nginx-mainline() {
-  cd $provides-$pkgver
+  provides=($_pkgbase)
+  conflicts=($_pkgbase)
+
+  cd $_pkgbase-$pkgver
   make DESTDIR="$pkgdir" install
 
   sed -e 's|\

[arch-commits] Commit in sane-airscan/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-12-23 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, December 23, 2020 @ 12:59:35
  Author: grazzolini
Revision: 404916

archrelease: copy trunk to extra-x86_64

Added:
  sane-airscan/repos/extra-x86_64/PKGBUILD
(from rev 404915, sane-airscan/trunk/PKGBUILD)
Deleted:
  sane-airscan/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-23 12:59:01 UTC (rev 404915)
+++ PKGBUILD2020-12-23 12:59:35 UTC (rev 404916)
@@ -1,30 +0,0 @@
-# Maintainer: Andreas Radke 
-# Contributor: Thomas Kiss 
-
-pkgname=sane-airscan
-pkgver=0.99.21
-pkgrel=1
-pkgdesc="SANE - SANE backend for AirScan (eSCL) and WSD document scanners"
-url="https://github.com/alexpevzner/sane-airscan;
-arch=('x86_64')
-license=('GPL2')
-depends=('sane' 'avahi' 'gnutls' 'libxml2' 'libjpeg-turbo' 'libpng')
-#makedepends=('meson')
-optdepends=('ipp-usb: allows to send HTTP requests via a USB connection on 
devices without Ethernet or WiFi connections')
-backup=(etc/sane.d/airscan.conf)
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/alexpevzner/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('0f6fcf8425b23909e732016492bd7162f54e447b3871329f9fd13b5046bd8f61')
-
-build() {
-cd ${pkgname}-${pkgver}
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
-# add missing .so symlink
-cd "${pkgdir}"/usr/lib/sane
-ln -vsf libsane-airscan.so.1 libsane-airscan.so
-}

Copied: sane-airscan/repos/extra-x86_64/PKGBUILD (from rev 404915, 
sane-airscan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-23 12:59:35 UTC (rev 404916)
@@ -0,0 +1,31 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Thomas Kiss 
+
+pkgname=sane-airscan
+pkgver=0.99.22
+pkgrel=1
+pkgdesc="SANE - SANE backend for AirScan (eSCL) and WSD document scanners"
+url="https://github.com/alexpevzner/sane-airscan;
+arch=('x86_64')
+license=('GPL2')
+depends=('sane' 'avahi' 'gnutls' 'libxml2' 'libjpeg-turbo' 'libpng')
+#makedepends=('meson')
+optdepends=('ipp-usb: allows to send HTTP requests via a USB connection on 
devices without Ethernet or WiFi connections')
+backup=(etc/sane.d/airscan.conf)
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/alexpevzner/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('a84d073bbdf61ef3d0fea69d60156e1c5bdb89a3fdf60a129daef31408f2f762')
+
+build() {
+cd ${pkgname}-${pkgver}
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
+# add missing .so symlink
+cd "${pkgdir}"/usr/lib/sane
+ln -vsf libsane-airscan.so.1 libsane-airscan.so
+}


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

2020-12-23 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, December 23, 2020 @ 12:59:01
  Author: grazzolini
Revision: 404915

upgpkg: sane-airscan 0.99.22-1

Modified:
  sane-airscan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-23 12:50:01 UTC (rev 404914)
+++ PKGBUILD2020-12-23 12:59:01 UTC (rev 404915)
@@ -1,8 +1,9 @@
 # Maintainer: Andreas Radke 
+# Maintainer: Giancarlo Razzolini 
 # Contributor: Thomas Kiss 
 
 pkgname=sane-airscan
-pkgver=0.99.21
+pkgver=0.99.22
 pkgrel=1
 pkgdesc="SANE - SANE backend for AirScan (eSCL) and WSD document scanners"
 url="https://github.com/alexpevzner/sane-airscan;
@@ -13,7 +14,7 @@
 optdepends=('ipp-usb: allows to send HTTP requests via a USB connection on 
devices without Ethernet or WiFi connections')
 backup=(etc/sane.d/airscan.conf)
 
source=("$pkgname-$pkgver.tar.gz"::"https://github.com/alexpevzner/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('0f6fcf8425b23909e732016492bd7162f54e447b3871329f9fd13b5046bd8f61')
+sha256sums=('a84d073bbdf61ef3d0fea69d60156e1c5bdb89a3fdf60a129daef31408f2f762')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 22:19:01
  Author: grazzolini
Revision: 783080

archrelease: copy trunk to community-x86_64

Added:
  xpra/repos/community-x86_64/PKGBUILD
(from rev 783079, xpra/trunk/PKGBUILD)
Deleted:
  xpra/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-22 22:18:29 UTC (rev 783079)
+++ PKGBUILD2020-12-22 22:19:01 UTC (rev 783080)
@@ -1,63 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Bug 
-
-pkgname=xpra
-pkgver=3.0.9
-pkgrel=5
-pkgdesc="multi-platform screen and application forwarding system screen for 
X11"
-arch=('x86_64')
-url='https://www.xpra.org'
-license=('GPL2')
-depends=('gtk3' 'python' 'libxtst' 'python-cairo' 'python-gobject' 
'python-pillow' 'python-lz4'
- 'ffmpeg' 'libvpx' 'xf86-video-dummy' 'libxkbfile'
- 'python-netifaces' 'python-rencode' 'python-opengl'
- 'python-lz4')
-optdepends=('x264: Codec' 'python-dbus: dbus features'
-'python-pycups: Printing support'
-'python-cryptography: Cryptography'
-'python-numpy: GPU accelerated capture and compression for NVIDIA 
cards'
-'gst-python: Sound Forwarding'
-'opencv: Webcam Forwarding')
-makedepends=('pkgconf' 'pygobject-devel' 'python-setuptools' 'cython' 
'uglify-js')
-backup=('etc/xpra/xpra.conf' 'etc/xpra/xorg.conf'
-'etc/xpra/conf.d/05_features.conf'
-'etc/xpra/conf.d/10_network.conf'
-'etc/xpra/conf.d/12_ssl.conf'
-'etc/xpra/conf.d/15_file_transfers.conf'
-'etc/xpra/conf.d/16_printing.conf'
-'etc/xpra/conf.d/20_sound.conf'
-'etc/xpra/conf.d/30_picture.conf'
-'etc/xpra/conf.d/35_webcam.conf'
-'etc/xpra/conf.d/40_client.conf'
-'etc/xpra/conf.d/42_client_keyboard.conf'
-'etc/xpra/conf.d/50_server_network.conf'
-'etc/xpra/conf.d/55_server_x11.conf'
-'etc/xpra/conf.d/60_server.conf'
-'etc/xpra/conf.d/65_proxy.conf'
-'etc/pam.d/xpra')
-source=($pkgname-$pkgver.tar.xz::$url/src/$pkgname-$pkgver.tar.xz
-$pkgname-$pkgver.tar.xz.asc::$url/src/$pkgname-$pkgver.tar.xz.gpg)
-
-md5sums=('b93382665a1d20837e78bba6021e0d45'
- 'SKIP')
-sha1sums=('4714cead0e9e2123d737672f4e5fe51d73f591b7'
-  'SKIP')
-sha256sums=('277e6a03fd5b81a966cb0227c39ab1c159d7464365f69ba36b6bdfd0c39f1a13'
-'SKIP')
-validpgpkeys=('C11C0A4DF702EDF6C04F458C18ADB31CF18AD6BB') # Antoine Martin 

-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  sed -i 's|/build/xpra/pkg/xpra/etc/xpra/xorg.conf|/etc/xpra/xorg.conf|' 
"${pkgdir}"/etc/xpra/conf.d/55_server_x11.conf
-  mv "${pkgdir}"/lib/* "${pkgdir}"/usr/lib/
-  rmdir "${pkgdir}/lib"
-  mkdir -p "${pkgdir}"/usr/share/dbus-1
-  #Move D-BUS Policy
-  mv "${pkgdir}"/{etc,usr/share}/dbus-1/system.d
-}

Copied: xpra/repos/community-x86_64/PKGBUILD (from rev 783079, 
xpra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-22 22:19:01 UTC (rev 783080)
@@ -0,0 +1,63 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Bug 
+
+pkgname=xpra
+pkgver=4.0.5
+pkgrel=1
+pkgdesc="multi-platform screen and application forwarding system screen for 
X11"
+arch=('x86_64')
+url='https://www.xpra.org'
+license=('GPL2')
+depends=('gtk3' 'python' 'libxtst' 'python-cairo' 'python-gobject' 
'python-pillow' 'python-lz4'
+ 'ffmpeg' 'libvpx' 'xf86-video-dummy' 'libxkbfile'
+ 'python-netifaces' 'python-rencode' 'python-opengl'
+ 'python-lz4')
+optdepends=('x264: Codec' 'python-dbus: dbus features'
+'python-pycups: Printing support'
+'python-cryptography: Cryptography'
+'python-numpy: GPU accelerated capture and compression for NVIDIA 
cards'
+'gst-python: Sound Forwarding'
+'opencv: Webcam Forwarding')
+makedepends=('pkgconf' 'pygobject-devel' 'python-setuptools' 'cython' 
'uglify-js')
+backup=('etc/xpra/xpra.conf' 'etc/xpra/xorg.conf'
+'etc/xpra/conf.d/05_features.conf'
+'etc/xpra/conf.d/10_network.conf'
+'etc/xpra/conf.d/12_ssl.conf'
+'etc/xpra/conf.d/15_file_transfers.conf'
+'etc/xpra/conf.d/16_printing.conf'
+'etc/xpra/conf.d/20_sound.conf'
+'etc/xpra/conf.d/30_picture.conf'
+'etc/xpra/conf.d/35_webcam.conf'
+'etc/xpra/conf.d/40_client.conf'
+'etc/xpra/conf.d/42_client_keyboard.conf'
+'etc/xpra/conf.d/50_server_network.conf'
+'etc/xpra/conf.d/55_server_x11.conf'
+'etc/xpra/conf.d/60_server.conf'
+

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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 22:18:29
  Author: grazzolini
Revision: 783079

upgpkg: xpra 4.0.5-1

Modified:
  xpra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 22:17:32 UTC (rev 783078)
+++ PKGBUILD2020-12-22 22:18:29 UTC (rev 783079)
@@ -2,8 +2,8 @@
 # Contributor: Bug 
 
 pkgname=xpra
-pkgver=3.0.9
-pkgrel=5
+pkgver=4.0.5
+pkgrel=1
 pkgdesc="multi-platform screen and application forwarding system screen for 
X11"
 arch=('x86_64')
 url='https://www.xpra.org'
@@ -38,11 +38,11 @@
 source=($pkgname-$pkgver.tar.xz::$url/src/$pkgname-$pkgver.tar.xz
 $pkgname-$pkgver.tar.xz.asc::$url/src/$pkgname-$pkgver.tar.xz.gpg)
 
-md5sums=('b93382665a1d20837e78bba6021e0d45'
+md5sums=('b9276da8cc4b494d5dcdcd4135984a6c'
  'SKIP')
-sha1sums=('4714cead0e9e2123d737672f4e5fe51d73f591b7'
+sha1sums=('58fc8b1b8ed38f2f4ad4b59e57a82fcdd0d60611'
   'SKIP')
-sha256sums=('277e6a03fd5b81a966cb0227c39ab1c159d7464365f69ba36b6bdfd0c39f1a13'
+sha256sums=('df562b121f3c2be455f9795aea1430b45020a4b875ce638a7280ad8dbe31b486'
 'SKIP')
 validpgpkeys=('C11C0A4DF702EDF6C04F458C18ADB31CF18AD6BB') # Antoine Martin 

 


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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 22:08:57
  Author: grazzolini
Revision: 783068

archrelease: copy trunk to community-x86_64

Added:
  znc/repos/community-x86_64/PKGBUILD
(from rev 783067, znc/trunk/PKGBUILD)
  znc/repos/community-x86_64/znc.install
(from rev 783067, znc/trunk/znc.install)
  znc/repos/community-x86_64/znc.sysusers
(from rev 783067, znc/trunk/znc.sysusers)
  znc/repos/community-x86_64/znc.tmpfiles
(from rev 783067, znc/trunk/znc.tmpfiles)
Deleted:
  znc/repos/community-x86_64/PKGBUILD
  znc/repos/community-x86_64/znc.install
  znc/repos/community-x86_64/znc.sysusers
  znc/repos/community-x86_64/znc.tmpfiles

--+
 PKGBUILD |  100 -
 znc.install  |   34 +--
 znc.sysusers |2 -
 znc.tmpfiles |2 -
 4 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-22 22:08:07 UTC (rev 783067)
+++ PKGBUILD2020-12-22 22:08:57 UTC (rev 783068)
@@ -1,50 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: Kaiting Chen 
-# Contributor: mickael9 
-
-pkgname=znc
-pkgver=1.7.5
-pkgrel=10
-pkgdesc='An IRC bouncer with modules & scripts support'
-url='https://wiki.znc.in/'
-license=('GPL2')
-arch=('x86_64')
-depends=('libsasl' 'icu' 'boost-libs')
-makedepends=('tcl' 'python' 'perl' 'cmake' 'boost')
-optdepends=('tcl: modtcl module'
-'python: modpython module'
-'perl: modperl module'
-'cyrus-sasl: saslauth module')
-install=$pkgname.install
-source=("https://znc.in/releases/archive/$pkgname-$pkgver.tar.gz"{,.sig}
-"$pkgname.tmpfiles"
-"$pkgname.sysusers")
-validpgpkeys=('D5823CACB477191CAC007AE420CC0209989E') #Alexey Sokolov 

-sha256sums=('a8941e1385c8654287a4428018d93459482e9d5eeedf86bef7b020ddc5f24721'
-'SKIP'
-'8cd1b5b011c706fea9dc0c70d4daa75a53bf0966d6e96a3fce3a541777aa2771'
-'8802f1b84ab3031db7cc45678f008ceca9b08b2012412a3d4ff1ea596586bb2a')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DWANT_PYTHON=ON \
--DWANT_PERL=ON \
--DWANT_TCL=ON \
--DWANT_SYSTEMD=ON \
--DSYSTEMD_DIR=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/$pkgname.sysusers" 
"$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-  install -Dm644 "$srcdir/$pkgname.tmpfiles" 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-}

Copied: znc/repos/community-x86_64/PKGBUILD (from rev 783067, 
znc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-22 22:08:57 UTC (rev 783068)
@@ -0,0 +1,50 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen 
+# Contributor: mickael9 
+
+pkgname=znc
+pkgver=1.8.2
+pkgrel=1
+pkgdesc='An IRC bouncer with modules & scripts support'
+url='https://wiki.znc.in/'
+license=('GPL2')
+arch=('x86_64')
+depends=('libsasl' 'icu' 'boost-libs')
+makedepends=('tcl' 'python' 'perl' 'cmake' 'boost')
+optdepends=('tcl: modtcl module'
+'python: modpython module'
+'perl: modperl module'
+'cyrus-sasl: saslauth module')
+install=$pkgname.install
+source=("https://znc.in/releases/archive/$pkgname-$pkgver.tar.gz"{,.sig}
+"$pkgname.tmpfiles"
+"$pkgname.sysusers")
+validpgpkeys=('D5823CACB477191CAC007AE420CC0209989E') #Alexey Sokolov 

+sha256sums=('ff238aae3f2ae0e44e683c4aee17dc8e4fdd261ca9379d83b48a7d422488de0d'
+'SKIP'
+'8cd1b5b011c706fea9dc0c70d4daa75a53bf0966d6e96a3fce3a541777aa2771'
+'8802f1b84ab3031db7cc45678f008ceca9b08b2012412a3d4ff1ea596586bb2a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DWANT_PYTHON=ON \
+-DWANT_PERL=ON \
+-DWANT_TCL=ON \
+-DWANT_SYSTEMD=ON \
+-DSYSTEMD_DIR=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/$pkgname.sysusers" 
"$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+  install -Dm644 "$srcdir/$pkgname.tmpfiles" 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+}

Deleted: znc.install
===
--- znc.install 2020-12-22 22:08:07 UTC (rev 783067)
+++ znc.install 2020-12-22 22:08:57 UTC (rev 783068)
@@ -1,17 +0,0 @@
-#/bin/bash
-
-# arg 1:  the new package version
-post_install() {
-  echo '==> Use 'znc --makeconf' as user znc to generate your first config'
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  if (( "$(vercmp $2 1.0-4)" < 0 )); then
-usermod -d /var/lib/znc znc 2>/dev/null 

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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 22:08:07
  Author: grazzolini
Revision: 783067

upgpkg: znc 1.8.2-1

Modified:
  znc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 22:08:02 UTC (rev 783066)
+++ PKGBUILD2020-12-22 22:08:07 UTC (rev 783067)
@@ -3,8 +3,8 @@
 # Contributor: mickael9 
 
 pkgname=znc
-pkgver=1.7.5
-pkgrel=10
+pkgver=1.8.2
+pkgrel=1
 pkgdesc='An IRC bouncer with modules & scripts support'
 url='https://wiki.znc.in/'
 license=('GPL2')
@@ -20,7 +20,7 @@
 "$pkgname.tmpfiles"
 "$pkgname.sysusers")
 validpgpkeys=('D5823CACB477191CAC007AE420CC0209989E') #Alexey Sokolov 

-sha256sums=('a8941e1385c8654287a4428018d93459482e9d5eeedf86bef7b020ddc5f24721'
+sha256sums=('ff238aae3f2ae0e44e683c4aee17dc8e4fdd261ca9379d83b48a7d422488de0d'
 'SKIP'
 '8cd1b5b011c706fea9dc0c70d4daa75a53bf0966d6e96a3fce3a541777aa2771'
 '8802f1b84ab3031db7cc45678f008ceca9b08b2012412a3d4ff1ea596586bb2a')


[arch-commits] Commit in keepass/repos (8 files)

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 21:44:22
  Author: grazzolini
Revision: 783023

archrelease: copy trunk to community-staging-any

Added:
  keepass/repos/community-staging-any/
  keepass/repos/community-staging-any/PKGBUILD
(from rev 783020, keepass/trunk/PKGBUILD)
  keepass/repos/community-staging-any/keepass
(from rev 783020, keepass/trunk/keepass)
  keepass/repos/community-staging-any/keepass.1
(from rev 783021, keepass/trunk/keepass.1)
  keepass/repos/community-staging-any/keepass.desktop
(from rev 783021, keepass/trunk/keepass.desktop)
  keepass/repos/community-staging-any/keepass.install
(from rev 783021, keepass/trunk/keepass.install)
  keepass/repos/community-staging-any/keepass.xml
(from rev 783022, keepass/trunk/keepass.xml)
  keepass/repos/staging-any/

-+
 PKGBUILD|   84 ++
 keepass |2 +
 keepass.1   |   23 ++
 keepass.desktop |   12 +++
 keepass.install |   14 +
 5 files changed, 135 insertions(+)

Copied: keepass/repos/community-staging-any/PKGBUILD (from rev 783020, 
keepass/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-12-22 21:44:22 UTC (rev 783023)
@@ -0,0 +1,84 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Timothy Redaelli 
+# Contributor: Kirill "reflexing" Churin 
+# Contributor: Andrej Gelenberg 
+
+pkgname=keepass
+pkgver=2.46
+pkgrel=2
+pkgdesc='Easy-to-use password manager for Windows, Linux, Mac OS X and mobile 
devices'
+arch=('any')
+url='https://keepass.info/'
+license=('GPL')
+depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'gtk-update-icon-cache')
+makedepends=('icoutils')
+optdepends=('xdotool: if you want to use auto-type'
+'xsel: clipboard operations in order to work around Mono clipboard 
bugs')
+install="$pkgname.install"
+source=("https://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip;
+"https://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc;
+'keepass'
+'keepass.1'
+'keepass.desktop'
+'keepass.xml')
+
+md5sums=('7caecfcc2d15dc7ec1b90256da527836'
+ 'SKIP'
+ '628e383dbfcaeefa996e4677dca35ff1'
+ 'a2a0dff1ebf0aaf6cbfb6f8566f4a010'
+ 'e910fabacfd7a5f7caa7c1fac0b5254e'
+ 'cc97882563fbaa0d5db44c9089990f12')
+sha1sums=('1bee277e5c36369198be75e473d6d7a1b08a2b16'
+  'SKIP'
+  '3142e80316feb67d687da993b919a634e89e6b1b'
+  '9dadd198ff3c66a21f7df4192f5516556f6cfbd5'
+  '22fab942358986679549e5263e1d4dabd23085f5'
+  '6c7b7884bfb27d36d62fbd99df4ebc3004361df4')
+sha256sums=('3e3e284da7542d6de618fe8a706bc3ac9c249023fdf09f3b87163dff9aa7cc7f'
+'SKIP'
+'05e63a028198ff32d4b26a892923a821066541f0cf798f5be8c138739bc22fbe'
+'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
+'1d5420e8babce5f4bbb3c68bdffe3bc0d3c3be25ad689138cd02fa14edd89140'
+'3d017c17a8788166c644e2460ba3596fd503f300342561921201fe5f69e5d194')
+validpgpkeys=('D95044283EE948D911E8B606A4F762DC58C6F98E')
+
+prepare() {
+  # Extract icons
+  icotool -x KeePass/KeePass.ico
+
+  pushd Build &>/dev/null
+  LANG=en_US.UTF-8 bash PrepMonoDev.sh
+  popd &>/dev/null
+}
+
+build() {
+  xbuild /target:KeePass /property:Configuration=Release
+  cp Ext/KeePass.exe.config Build/KeePass/Release/
+}
+
+package() {
+  install -dm755 "$pkgdir"/usr/bin
+  install -dm755 "$pkgdir"/usr/share/keepass/XSL
+
+  install -Dm755 keepass "$pkgdir"/usr/bin/keepass
+  install -Dm755 Build/KeePass/Release/KeePass.exe 
"$pkgdir"/usr/share/keepass/KeePass.exe
+  install -Dm755 Ext/KeePass.config.xml 
"$pkgdir"/usr/share/keepass/KeePass.config.xml
+  install -Dm755 Ext/KeePass.exe.config 
"$pkgdir"/usr/share/keepass/KeePass.exe.config
+
+  install -m644 Ext/XSL/* "$pkgdir"/usr/share/keepass/XSL
+
+  install -Dm644 keepass.1 "$pkgdir"/usr/share/man/man1/keepass.1
+
+  # Proper installation of .desktop file
+  desktop-file-install -m 644 --dir "$pkgdir"/usr/share/applications/ 
keepass.desktop
+
+  # Install icons
+  for size in 16 32 48 256; do
+install -Dm644 \
+KeePass_*_${size}x${size}x32.png \
+"$pkgdir"/usr/share/icons/hicolor/${size}x${size}/apps/keepass.png
+  done
+
+  # Needed for postinst with xdg-utils
+  install -Dm644 keepass.xml "$pkgdir"/usr/share/mime/packages/keepass.xml
+}

Copied: keepass/repos/community-staging-any/keepass (from rev 783020, 
keepass/trunk/keepass)
===
--- community-staging-any/keepass   (rev 0)
+++ community-staging-any/keepass   2020-12-22 21:44:22 UTC (rev 783023)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec mono --verify-all /usr/share/keepass/KeePass.exe "$@"

Copied: 

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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 21:43:14
  Author: grazzolini
Revision: 783019

upgpkg: keepass 2.46-2

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 21:43:08 UTC (rev 783018)
+++ PKGBUILD2020-12-22 21:43:14 UTC (rev 783019)
@@ -5,7 +5,7 @@
 
 pkgname=keepass
 pkgver=2.46
-pkgrel=1
+pkgrel=2
 pkgdesc='Easy-to-use password manager for Windows, Linux, Mac OS X and mobile 
devices'
 arch=('any')
 url='https://keepass.info/'


[arch-commits] Commit in nuget/repos/extra-any (8 files)

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 21:39:34
  Author: grazzolini
Revision: 404857

archrelease: copy trunk to extra-any

Added:
  nuget/repos/extra-any/PKGBUILD
(from rev 404856, nuget/trunk/PKGBUILD)
  nuget/repos/extra-any/nuget
(from rev 404856, nuget/trunk/nuget)
  nuget/repos/extra-any/nuget.install
(from rev 404856, nuget/trunk/nuget.install)
  nuget/repos/extra-any/nuget.pc
(from rev 404856, nuget/trunk/nuget.pc)
Deleted:
  nuget/repos/extra-any/PKGBUILD
  nuget/repos/extra-any/nuget
  nuget/repos/extra-any/nuget.install
  nuget/repos/extra-any/nuget.pc

---+
 PKGBUILD  |   58 
 nuget |4 +--
 nuget.install |   20 +--
 nuget.pc  |   20 +--
 4 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-22 21:38:55 UTC (rev 404856)
+++ PKGBUILD2020-12-22 21:39:34 UTC (rev 404857)
@@ -1,29 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Daniel Isenmann 
-# Contributor: wenLiangcan 
-
-pkgname=nuget
-pkgver=5.7.0
-pkgrel=1
-pkgdesc="Package manager for .NET."
-arch=('any')
-url="https://www.nuget.org;
-license=('APACHE')
-depends=('mono' 'sh')
-source=("https://dist.nuget.org/win-x86-commandline/v${pkgver}/nuget.exe;
-"${pkgname}"
-"${pkgname}.pc")
-install="${pkgname}.install"
-md5sums=('e7e9719ff447d78c397b8b0f94a337e0'
- 'ec321eaa807564b85aacfafb227f7f55'
- 'ffb7d95fb39f72c9619c72db91ec36a0')
-sha512sums=('50da646fe56e62341780b97b4275424185bf05633763e50ec8ba58f0349e4a696422fcc978dfcb5d11e822f9da954470a2eeecec12fb6b27a044b12e538089f8'
-
'd19b4f7683aeb2891397060c6ed0fabe9083726268825d5338a7a95ef5d7aaa66db41226ae3a3f26eecbbeea4cdee0bdeeedf61e7fc5017a568ebe2753e2ada6'
-
'50f77fdfc089afc516325057e2e4efdea353c09626073fb07457acf728268ac5e131e785d394b70c9db0ca6ae96e425d882cdf2b2b013c864dc91c32b85e508f')
-
-package() {
-install -Dm 0644 ${srcdir}/nuget.pc ${pkgdir}/usr/lib/pkgconfig/nuget.pc
-
-install -Dm 0644 ${srcdir}/nuget.exe ${pkgdir}/usr/lib/nuget/nuget.exe
-install -Dm 0755 ${srcdir}/nuget ${pkgdir}/usr/bin/nuget
-}

Copied: nuget/repos/extra-any/PKGBUILD (from rev 404856, nuget/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-22 21:39:34 UTC (rev 404857)
@@ -0,0 +1,29 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Daniel Isenmann 
+# Contributor: wenLiangcan 
+
+pkgname=nuget
+pkgver=5.8.0
+pkgrel=1
+pkgdesc="Package manager for .NET."
+arch=('any')
+url="https://www.nuget.org;
+license=('APACHE')
+depends=('mono' 'sh')
+source=("https://dist.nuget.org/win-x86-commandline/v${pkgver}/nuget.exe;
+"${pkgname}"
+"${pkgname}.pc")
+install="${pkgname}.install"
+md5sums=('648c1da75744fe89ecbcf5d797e0df68'
+ 'ec321eaa807564b85aacfafb227f7f55'
+ 'ffb7d95fb39f72c9619c72db91ec36a0')
+sha512sums=('ca27b48a17608af3aff3a1dd379616d017b91e37b9363b761bdd79cc62ad2ff14a985ddbef08d8402a45f5506ef37be1b25fdd05ab3d01998cf5995a1eb6fee6'
+
'd19b4f7683aeb2891397060c6ed0fabe9083726268825d5338a7a95ef5d7aaa66db41226ae3a3f26eecbbeea4cdee0bdeeedf61e7fc5017a568ebe2753e2ada6'
+
'50f77fdfc089afc516325057e2e4efdea353c09626073fb07457acf728268ac5e131e785d394b70c9db0ca6ae96e425d882cdf2b2b013c864dc91c32b85e508f')
+
+package() {
+install -Dm 0644 ${srcdir}/nuget.pc ${pkgdir}/usr/lib/pkgconfig/nuget.pc
+
+install -Dm 0644 ${srcdir}/nuget.exe ${pkgdir}/usr/lib/nuget/nuget.exe
+install -Dm 0755 ${srcdir}/nuget ${pkgdir}/usr/bin/nuget
+}

Deleted: nuget
===
--- nuget   2020-12-22 21:38:55 UTC (rev 404856)
+++ nuget   2020-12-22 21:39:34 UTC (rev 404857)
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec mono $MONO_OPTIONS /usr/lib/nuget/nuget.exe "$@"

Copied: nuget/repos/extra-any/nuget (from rev 404856, nuget/trunk/nuget)
===
--- nuget   (rev 0)
+++ nuget   2020-12-22 21:39:34 UTC (rev 404857)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec mono $MONO_OPTIONS /usr/lib/nuget/nuget.exe "$@"

Deleted: nuget.install
===
--- nuget.install   2020-12-22 21:38:55 UTC (rev 404856)
+++ nuget.install   2020-12-22 21:39:34 UTC (rev 404857)
@@ -1,10 +0,0 @@
-post_install() {
-post_upgrade
-}
-
-post_upgrade() {
-cert-sync /etc/ssl/certs/ca-certificates.crt
-yes | certmgr -ssl -m https://go.microsoft.com
-yes | certmgr -ssl -m https://nugetgallery.blob.core.windows.net
-yes | certmgr -ssl -m https://nuget.org
-}

Copied: nuget/repos/extra-any/nuget.install (from rev 404856, 
nuget/trunk/nuget.install)

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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 21:38:55
  Author: grazzolini
Revision: 404856

upgpkg: nuget 5.8.0-1

Modified:
  nuget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 21:34:26 UTC (rev 404855)
+++ PKGBUILD2020-12-22 21:38:55 UTC (rev 404856)
@@ -3,7 +3,7 @@
 # Contributor: wenLiangcan 
 
 pkgname=nuget
-pkgver=5.7.0
+pkgver=5.8.0
 pkgrel=1
 pkgdesc="Package manager for .NET."
 arch=('any')
@@ -14,10 +14,10 @@
 "${pkgname}"
 "${pkgname}.pc")
 install="${pkgname}.install"
-md5sums=('e7e9719ff447d78c397b8b0f94a337e0'
+md5sums=('648c1da75744fe89ecbcf5d797e0df68'
  'ec321eaa807564b85aacfafb227f7f55'
  'ffb7d95fb39f72c9619c72db91ec36a0')
-sha512sums=('50da646fe56e62341780b97b4275424185bf05633763e50ec8ba58f0349e4a696422fcc978dfcb5d11e822f9da954470a2eeecec12fb6b27a044b12e538089f8'
+sha512sums=('ca27b48a17608af3aff3a1dd379616d017b91e37b9363b761bdd79cc62ad2ff14a985ddbef08d8402a45f5506ef37be1b25fdd05ab3d01998cf5995a1eb6fee6'
 
'd19b4f7683aeb2891397060c6ed0fabe9083726268825d5338a7a95ef5d7aaa66db41226ae3a3f26eecbbeea4cdee0bdeeedf61e7fc5017a568ebe2753e2ada6'
 
'50f77fdfc089afc516325057e2e4efdea353c09626073fb07457acf728268ac5e131e785d394b70c9db0ca6ae96e425d882cdf2b2b013c864dc91c32b85e508f')
 


[arch-commits] Commit in mono/repos (4 files)

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 21:34:26
  Author: grazzolini
Revision: 404855

archrelease: copy trunk to staging-x86_64

Added:
  mono/repos/staging-x86_64/
  mono/repos/staging-x86_64/PKGBUILD
(from rev 404854, mono/trunk/PKGBUILD)
  mono/repos/staging-x86_64/mono.binfmt.d
(from rev 404854, mono/trunk/mono.binfmt.d)
  mono/repos/staging-x86_64/mono.install
(from rev 404854, mono/trunk/mono.install)

---+
 PKGBUILD  |  109 
 mono.binfmt.d |1 
 mono.install  |7 +++
 3 files changed, 117 insertions(+)

Copied: mono/repos/staging-x86_64/PKGBUILD (from rev 404854, 
mono/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-22 21:34:26 UTC (rev 404855)
@@ -0,0 +1,109 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolinit 
+# Contributor: Daniel Isenmann 
+# Contributor: Brice Carpentier 
+
+pkgname=mono
+_gitcommit=a22ed3f094e18f1f82e1c6cead28d872d3c57e40
+pkgver=6.12.0.107
+pkgrel=1
+pkgdesc='Free implementation of the .NET platform including runtime and 
compiler'
+url='https://www.mono-project.com/'
+arch=('x86_64')
+license=('GPL' 'LGPL2.1' 'MPL')
+depends=('zlib' 'libgdiplus>=4.2' 'sh' 'python' 'ca-certificates')
+makedepends=('cmake' 'git')
+provides=('monodoc')
+conflicts=('monodoc')
+install=mono.install
+source=(${pkgname}::"git+https://github.com/mono/mono#commit=${_gitcommit};
+git+https://github.com/mono/aspnetwebstack
+git+https://github.com/mono/Newtonsoft.Json
+git+https://github.com/mono/cecil
+git+https://github.com/mono/rx
+git+https://github.com/mono/ikvm-fork
+git+https://github.com/mono/ikdasm
+git+https://github.com/mono/reference-assemblies
+git+https://github.com/mono/NUnitLite
+git+https://github.com/mono/NuGet.BuildTasks
+git+https://github.com/mono/boringssl
+git+https://github.com/mono/corefx
+git+https://github.com/mono/bockbuild
+git+https://github.com/mono/linker
+git+https://github.com/mono/roslyn-binaries
+git+https://github.com/mono/corert
+git+https://github.com/mono/xunit-binaries
+git+https://github.com/mono/api-doc-tools
+git+https://github.com/mono/api-snapshot
+mono.binfmt.d)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'9a657fc153ef4ce23bf5fc369a26bf4a124e9304bde3744d04c583c54ca47425')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/^v//;s/^mono-//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  git submodule init
+  git config submodule."external/aspnetwebstack".url "${srcdir}/aspnetwebstack"
+  git config submodule."external/Newtonsoft.Json".url 
"${srcdir}/Newtonsoft.Json"
+  git config submodule."external/cecil".url "${srcdir}/cecil"
+  git config submodule."external/rx".url "${srcdir}/rx"
+  git config submodule."external/ikvm".url "${srcdir}/ikvm-fork"
+  git config submodule."external/ikdasm".url "${srcdir}/ikdasm"
+  git config submodule."external/reference-assemblies".url 
"${srcdir}/reference-assemblies"
+  git config submodule."external/nunit-lite".url "${srcdir}/NUnitLite"
+  git config submodule."external/nuget-buildtasks".url 
"${srcdir}/NuGet.BuildTasks"
+  git config submodule."external/cecil-legacy".url "${srcdir}/cecil"
+  git config submodule."external/boringssl".url "${srcdir}/boringssl"
+  git config submodule."external/corefx".url "${srcdir}/corefx"
+  git config submodule."external/bockbuild".url "${srcdir}/bockbuild"
+  git config submodule."external/linker".url "${srcdir}/linker"
+  git config submodule."external/roslyn-binaries".url 
"${srcdir}/roslyn-binaries"
+  git config submodule."external/corert".url "${srcdir}/corert"
+  git config submodule."external/xunit-binaries".url "${srcdir}/xunit-binaries"
+  git config submodule."external/api-doc-tools".url "${srcdir}/api-doc-tools"
+  git config submodule."external/api-snapshot".url "${srcdir}/api-snapshot"
+  git submodule update --recursive
+}
+
+build() {
+  cd ${pkgname}
+  ./autogen.sh \
+--prefix=/usr \
+--sysconfdir=/etc \
+--bindir=/usr/bin \
+--sbindir=/usr/bin \
+--with-mcs-docs=no
+  make
+  make -C mcs/jay
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+  make -C mcs/jay DESTDIR="${pkgdir}" prefix=/usr INSTALL=../../install-sh 
install
+  install -Dm 644 "${srcdir}/mono.binfmt.d" 
"${pkgdir}/usr/lib/binfmt.d/mono.conf"
+}
+
+# vim: ts=2 sw=2 et:

Copied: 

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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 21:33:44
  Author: grazzolini
Revision: 404854

upgpkg: mono 6.12.0.107-1

Modified:
  mono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 19:44:25 UTC (rev 404853)
+++ PKGBUILD2020-12-22 21:33:44 UTC (rev 404854)
@@ -4,8 +4,8 @@
 # Contributor: Brice Carpentier 
 
 pkgname=mono
-_gitcommit=5d03a6fe116b6ab1570ba2c67933813ede00a0d4
-pkgver=6.10.0.104
+_gitcommit=a22ed3f094e18f1f82e1c6cead28d872d3c57e40
+pkgver=6.12.0.107
 pkgrel=1
 pkgdesc='Free implementation of the .NET platform including runtime and 
compiler'
 url='https://www.mono-project.com/'


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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 19:33:10
  Author: grazzolini
Revision: 782823

archrelease: copy trunk to community-x86_64

Added:
  nginx-mainline/repos/community-x86_64/PKGBUILD
(from rev 782821, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/community-x86_64/logrotate
(from rev 782821, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/community-x86_64/nginx.install
(from rev 782822, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/community-x86_64/service
(from rev 782822, nginx-mainline/trunk/service)
Deleted:
  nginx-mainline/repos/community-x86_64/PKGBUILD
  nginx-mainline/repos/community-x86_64/logrotate
  nginx-mainline/repos/community-x86_64/nginx.install
  nginx-mainline/repos/community-x86_64/service

---+
 PKGBUILD  |  276 +---
 logrotate |   20 ++--
 nginx.install |   24 ++--
 service   |   34 +++---
 4 files changed, 183 insertions(+), 171 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-22 19:32:55 UTC (rev 782822)
+++ PKGBUILD2020-12-22 19:33:10 UTC (rev 782823)
@@ -1,132 +0,0 @@
-# Maintainer:  Giancarlo Razzolini 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Sébastien Luttringer
-# Contributor: Drew DeVault
-
-pkgname=nginx-mainline
-pkgver=1.19.3
-pkgrel=1
-pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
-arch=('x86_64')
-url='https://nginx.org'
-license=('custom')
-depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap' 'libxcrypt')
-backup=('etc/nginx/fastcgi.conf'
-'etc/nginx/fastcgi_params'
-'etc/nginx/koi-win'
-'etc/nginx/koi-utf'
-'etc/nginx/nginx.conf'
-'etc/nginx/scgi_params'
-'etc/nginx/uwsgi_params'
-'etc/nginx/win-utf'
-'etc/logrotate.d/nginx')
-install=nginx.install
-provides=('nginx')
-conflicts=('nginx')
-source=($url/download/nginx-$pkgver.tar.gz{,.asc}
-service
-logrotate)
-validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('f48ae6476f60028ca245d69101dd0726'
- 'SKIP'
- 'ef491e760e7c1ffec9ca25441a150c83'
- '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('337fbbb562d1577a2a219bd132c82098a06a49f1ce40ced905fdf255238c4f70dd1f889ec8ae971a4fe5e753f98a356cadc9c766bc089f817d711b12143efcc8'
-'SKIP'
-
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
-
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
-
-_common_flags=(
-  --with-compat
-  --with-debug
-  --with-file-aio
-  --with-http_addition_module
-  --with-http_auth_request_module
-  --with-http_dav_module
-  --with-http_degradation_module
-  --with-http_flv_module
-  --with-http_geoip_module
-  --with-http_gunzip_module
-  --with-http_gzip_static_module
-  --with-http_mp4_module
-  --with-http_realip_module
-  --with-http_secure_link_module
-  --with-http_slice_module
-  --with-http_ssl_module
-  --with-http_stub_status_module
-  --with-http_sub_module
-  --with-http_v2_module
-  --with-mail
-  --with-mail_ssl_module
-  --with-pcre-jit
-  --with-stream
-  --with-stream_geoip_module
-  --with-stream_realip_module
-  --with-stream_ssl_module
-  --with-stream_ssl_preread_module
-  --with-threads
-)
-
-_mainline_flags=(
-)
-
-build() {
-  cd $provides-$pkgver
-  ./configure \
---prefix=/etc/nginx \
---conf-path=/etc/nginx/nginx.conf \
---sbin-path=/usr/bin/nginx \
---pid-path=/run/nginx.pid \
---lock-path=/run/lock/nginx.lock \
---user=http \
---group=http \
---http-log-path=/var/log/nginx/access.log \
---error-log-path=stderr \
---http-client-body-temp-path=/var/lib/nginx/client-body \
---http-proxy-temp-path=/var/lib/nginx/proxy \
---http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
---http-scgi-temp-path=/var/lib/nginx/scgi \
---http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
---with-cc-opt="$CFLAGS $CPPFLAGS" \
---with-ld-opt="$LDFLAGS" \
-${_common_flags[@]} \
-${_mainline_flags[@]}
-
-  make
-}
-
-package() {
-  cd $provides-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
-
-  for i in ftdetect indent syntax; do
-install -Dm644 contrib/vim/$i/nginx.vim \
-  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
-  done
-}

Copied: nginx-mainline/repos/community-x86_64/PKGBUILD (from rev 782821, 
nginx-mainline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-22 19:33:10 UTC (rev 782823)
@@ -0,0 +1,144 @@
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew 

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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 19:32:23
  Author: grazzolini
Revision: 782820

upgpkg: nginx-mainline 1.19.6-1

Modified:
  nginx-mainline/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 17 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 19:32:02 UTC (rev 782819)
+++ PKGBUILD2020-12-22 19:32:23 UTC (rev 782820)
@@ -3,8 +3,9 @@
 # Contributor: Sébastien Luttringer
 # Contributor: Drew DeVault
 
-pkgname=nginx-mainline
-pkgver=1.19.3
+pkgbase=nginx-mainline
+pkgname=(nginx-mainline nginx-mainline-src)
+pkgver=1.19.6
 pkgrel=1
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('x86_64')
@@ -27,11 +28,11 @@
 service
 logrotate)
 validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('f48ae6476f60028ca245d69101dd0726'
+md5sums=('0be1d90b45b1bdfcf8339f299e74063a'
  'SKIP'
  'ef491e760e7c1ffec9ca25441a150c83'
  '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('337fbbb562d1577a2a219bd132c82098a06a49f1ce40ced905fdf255238c4f70dd1f889ec8ae971a4fe5e753f98a356cadc9c766bc089f817d711b12143efcc8'
+sha512sums=('1249c56b124a8de71f5d722e53d599f3b0cb14dc0f95b1eb905a6a8019b2d33f8e76874de2a88d49c4c82ee4fa7aabd42e5044a0a110892c23b50f71cb632148'
 'SKIP'
 
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
 
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
@@ -70,6 +71,10 @@
 _mainline_flags=(
 )
 
+prepare() {
+  cp -r $provides-$pkgver{,-src}
+}
+
 build() {
   cd $provides-$pkgver
   ./configure \
@@ -95,7 +100,7 @@
   make
 }
 
-package() {
+package_nginx-mainline() {
   cd $provides-$pkgver
   make DESTDIR="$pkgdir" install
 
@@ -130,3 +135,10 @@
   "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
   done
 }
+
+package_nginx-mainline-src() {
+  pkgdesc="Source code of nginx-mainline $pkgver, useful for building modules"
+  depends=()
+  install -d "$pkgdir/usr/src"
+  cp -r $provides-$pkgver-src "$pkgdir/usr/src/nginx"
+}


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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 19:08:08
  Author: grazzolini
Revision: 782784

archrelease: copy trunk to community-any

Added:
  
terminator/repos/community-any/0001-fixed-validate-module-import-for-newer-version-of-co.patch
(from rev 782783, 
terminator/trunk/0001-fixed-validate-module-import-for-newer-version-of-co.patch)
  terminator/repos/community-any/PKGBUILD
(from rev 782783, terminator/trunk/PKGBUILD)
Deleted:
  terminator/repos/community-any/001-custom_commands.patch
  terminator/repos/community-any/PKGBUILD

-+
 0001-fixed-validate-module-import-for-newer-version-of-co.patch |   28 +++
 001-custom_commands.patch   |   12 -
 PKGBUILD|   82 
+-
 3 files changed, 75 insertions(+), 47 deletions(-)

Copied: 
terminator/repos/community-any/0001-fixed-validate-module-import-for-newer-version-of-co.patch
 (from rev 782783, 
terminator/trunk/0001-fixed-validate-module-import-for-newer-version-of-co.patch)
===
--- 0001-fixed-validate-module-import-for-newer-version-of-co.patch 
(rev 0)
+++ 0001-fixed-validate-module-import-for-newer-version-of-co.patch 
2020-12-22 19:08:08 UTC (rev 782784)
@@ -0,0 +1,28 @@
+From a65eb174adaa08cce0029ac38c5bc58ff8adaa7b Mon Sep 17 00:00:00 2001
+From: Ken 
+Date: Mon, 21 Dec 2020 19:43:06 +0100
+Subject: [PATCH] fixed 'validate' module import for newer version of configobj
+
+---
+ terminatorlib/config.py | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/terminatorlib/config.py b/terminatorlib/config.py
+index ec7a2a2e..ff37597d 100644
+--- a/terminatorlib/config.py
 b/terminatorlib/config.py
+@@ -74,7 +74,10 @@ import os
+ import shutil
+ from copy import copy
+ from configobj import ConfigObj, flatten_errors
+-from validate import Validator
++try:
++from validate import Validator
++except ModuleNotFoundError:
++from configobj.validate import Validator
+ from .borg import Borg
+ from .util import dbg, err, DEBUG, get_system_config_dir, get_config_dir, 
dict_diff
+ 
+-- 
+2.29.2
+

Deleted: 001-custom_commands.patch
===
--- 001-custom_commands.patch   2020-12-22 19:07:28 UTC (rev 782783)
+++ 001-custom_commands.patch   2020-12-22 19:08:08 UTC (rev 782784)
@@ -1,12 +0,0 @@
-diff -ura terminator-1.91.orig/terminatorlib/plugins/custom_commands.py 
terminator-1.91.new/terminatorlib/plugins/custom_commands.py
 terminator-1.91.orig/terminatorlib/plugins/custom_commands.py  
2017-02-26 14:45:29.0 -0300
-+++ terminator-1.91.new/terminatorlib/plugins/custom_commands.py   
2018-04-10 18:22:55.566435800 -0300
-@@ -127,7 +127,7 @@
-   if command[-1] != '\n':
- command = command + '\n'
-   for terminal in data['terminals']:
--terminal.vte.feed_child(command,  len(command))
-+terminal.vte.feed_child(command)
- 
- def configure(self, widget, data = None):
-   ui = {}

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-22 19:07:28 UTC (rev 782783)
+++ PKGBUILD2020-12-22 19:08:08 UTC (rev 782784)
@@ -1,35 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Guillaume ALAUX 
-# Contributor: Allan McRae 
-# Contributor: fancris3 
-# Contributor: Daniel J Griffiths 
-
-pkgname=terminator
-pkgver=1.92
-pkgrel=3
-pkgdesc='Terminal emulator that supports tabs and grids'
-arch=('any')
-url='https://github.com/gnome-terminator/terminator'
-license=('GPL2')
-depends=('gsettings-desktop-schemas' 'libkeybinder3' 'libnotify' 
'python-cairo' 'python-configobj'
- 'python-dbus' 'python-psutil' 'python-gobject' 'vte3' 'xdg-utils')
-makedepends=('intltool')
-source=(${url}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-
-validpgpkeys=('6FBDB41587919A0F4BA96EBA9A358BAB04A4ED27') #Markus Frosch 

-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-python setup.py build
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-python setup.py install --skip-build --root="${pkgdir}" --optimize=1
-
-rm -f "${pkgdir}/usr/share/icons/hicolor/icon-theme.cache"
-}
-md5sums=('0d81338eda4a2e7e081f4ac8096376b9'
- 'SKIP')

Copied: terminator/repos/community-any/PKGBUILD (from rev 782783, 
terminator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-22 19:08:08 UTC (rev 782784)
@@ -0,0 +1,47 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Guillaume ALAUX 
+# Contributor: Allan McRae 
+# Contributor: fancris3 
+# Contributor: Daniel J Griffiths 
+
+pkgname=terminator
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Terminal emulator that supports tabs and grids'

[arch-commits] Commit in terminator/trunk (3 files)

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 19:07:28
  Author: grazzolini
Revision: 782783

upgpkg: terminator 2.0.1-1

Update terminator and also apply the patch for FS#69057

Added:
  
terminator/trunk/0001-fixed-validate-module-import-for-newer-version-of-co.patch
Modified:
  terminator/trunk/PKGBUILD
Deleted:
  terminator/trunk/001-custom_commands.patch

-+
 0001-fixed-validate-module-import-for-newer-version-of-co.patch |   28 
++
 001-custom_commands.patch   |   12 
 PKGBUILD|   26 
++---
 3 files changed, 47 insertions(+), 19 deletions(-)

Added: 0001-fixed-validate-module-import-for-newer-version-of-co.patch
===
--- 0001-fixed-validate-module-import-for-newer-version-of-co.patch 
(rev 0)
+++ 0001-fixed-validate-module-import-for-newer-version-of-co.patch 
2020-12-22 19:07:28 UTC (rev 782783)
@@ -0,0 +1,28 @@
+From a65eb174adaa08cce0029ac38c5bc58ff8adaa7b Mon Sep 17 00:00:00 2001
+From: Ken 
+Date: Mon, 21 Dec 2020 19:43:06 +0100
+Subject: [PATCH] fixed 'validate' module import for newer version of configobj
+
+---
+ terminatorlib/config.py | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/terminatorlib/config.py b/terminatorlib/config.py
+index ec7a2a2e..ff37597d 100644
+--- a/terminatorlib/config.py
 b/terminatorlib/config.py
+@@ -74,7 +74,10 @@ import os
+ import shutil
+ from copy import copy
+ from configobj import ConfigObj, flatten_errors
+-from validate import Validator
++try:
++from validate import Validator
++except ModuleNotFoundError:
++from configobj.validate import Validator
+ from .borg import Borg
+ from .util import dbg, err, DEBUG, get_system_config_dir, get_config_dir, 
dict_diff
+ 
+-- 
+2.29.2
+

Deleted: 001-custom_commands.patch
===
--- 001-custom_commands.patch   2020-12-22 19:05:50 UTC (rev 782782)
+++ 001-custom_commands.patch   2020-12-22 19:07:28 UTC (rev 782783)
@@ -1,12 +0,0 @@
-diff -ura terminator-1.91.orig/terminatorlib/plugins/custom_commands.py 
terminator-1.91.new/terminatorlib/plugins/custom_commands.py
 terminator-1.91.orig/terminatorlib/plugins/custom_commands.py  
2017-02-26 14:45:29.0 -0300
-+++ terminator-1.91.new/terminatorlib/plugins/custom_commands.py   
2018-04-10 18:22:55.566435800 -0300
-@@ -127,7 +127,7 @@
-   if command[-1] != '\n':
- command = command + '\n'
-   for terminal in data['terminals']:
--terminal.vte.feed_child(command,  len(command))
-+terminal.vte.feed_child(command)
- 
- def configure(self, widget, data = None):
-   ui = {}

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 19:05:50 UTC (rev 782782)
+++ PKGBUILD2020-12-22 19:07:28 UTC (rev 782783)
@@ -5,8 +5,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=terminator
-pkgver=1.92
-pkgrel=3
+pkgver=2.0.1
+pkgrel=1
 pkgdesc='Terminal emulator that supports tabs and grids'
 arch=('any')
 url='https://github.com/gnome-terminator/terminator'
@@ -13,11 +13,25 @@
 license=('GPL2')
 depends=('gsettings-desktop-schemas' 'libkeybinder3' 'libnotify' 
'python-cairo' 'python-configobj'
  'python-dbus' 'python-psutil' 'python-gobject' 'vte3' 'xdg-utils')
-makedepends=('intltool')
-source=(${url}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+makedepends=('intltool' 'python-pip' 'python-setuptools' 'python-wheel')
+source=(${url}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc}
+0001-fixed-validate-module-import-for-newer-version-of-co.patch)
 
-validpgpkeys=('6FBDB41587919A0F4BA96EBA9A358BAB04A4ED27') #Markus Frosch 

+validpgpkeys=('6FBDB41587919A0F4BA96EBA9A358BAB04A4ED27'  #Markus Frosch 

+  'D11A7596F61705480C711598F2FAC7C7BAE930A5') #Matt Rose 

+md5sums=('080d3e2c7628aa4e8d7844ad6fd77473'
+ 'SKIP'
+ '585159c653affe58d99bb4858360f21b')
+sha512sums=('bc8094944952bec96b6dc92ca25453fe19076daa23f0b672edc664e9ecdf83a58c5a2a161a26c1a44280a01601827cb728766ec9d20bc3d303072ae040ea2352'
+'SKIP'
+
'da609bbb1f2fce64bd345ec43c05f6b8d76046cfbd1be764d6fcd555d306dfca1dd5786b0fc65c0984e49a85454c9eeabf5a1f8c960412c14a97c5350912f8a9')
 
+prepare () {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+#Fix for python configobj validate
+patch -Np1 < 
$srcdir/0001-fixed-validate-module-import-for-newer-version-of-co.patch
+}
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"
 
@@ -31,5 +45,3 @@
 
 rm -f "${pkgdir}/usr/share/icons/hicolor/icon-theme.cache"
 }
-md5sums=('0d81338eda4a2e7e081f4ac8096376b9'
- 'SKIP')


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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 14:01:01
  Author: grazzolini
Revision: 782002

archrelease: copy trunk to community-any

Added:
  streamlink/repos/community-any/PKGBUILD
(from rev 782001, streamlink/trunk/PKGBUILD)
Deleted:
  streamlink/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-22 14:00:46 UTC (rev 782001)
+++ PKGBUILD2020-12-22 14:01:01 UTC (rev 782002)
@@ -1,41 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Josip Ponjavic 
-
-pkgname=streamlink
-pkgver=1.7.0
-pkgrel=2
-pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
-arch=('any')
-url='https://streamlink.github.io/'
-license=('BSD')
-depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
-checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
-makedepends=("python-"{recommonmark,setuptools,sphinx})
-optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('f87a62a47212d94769929bd040d9c186b461643bdbda06f839b99ec9efefb87a'
-'SKIP')
-sha512sums=('2921905290488b7ad955bda5921a7725fdc0984f5084f833779bae19188d370d2bad08e3ff9714254e0595e3cf1f6244ecfa145ddf94458211048335840d82c5'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export STREAMLINK_USE_PYCOUNTRY="true"
-  python setup.py build
-  python setup.py build_sphinx -b man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  export PYTHONHASSEED=0
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 build/sphinx/man/streamlink.1 \
-"$pkgdir/usr/share/man/man1/streamlink.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: streamlink/repos/community-any/PKGBUILD (from rev 782001, 
streamlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-22 14:01:01 UTC (rev 782002)
@@ -0,0 +1,41 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Josip Ponjavic 
+
+pkgname=streamlink
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
+arch=('any')
+url='https://streamlink.github.io/'
+license=('BSD')
+depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
+checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
+makedepends=("python-"{recommonmark,setuptools,sphinx})
+optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
+sha256sums=('c0ead9e961638d41cab9bd9677cdc701f2313bfd4d23cd8158410932839c62db'
+'SKIP')
+sha512sums=('ce8b34670ea991ddd9b86eb4f05233468ad9df7ea743ed047cd2e3de8d0844dcded082df1215273e8a22ac5386dd17f64c80662b80fb8dbfae421b7f18c146d6'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export STREAMLINK_USE_PYCOUNTRY="true"
+  python setup.py build
+  python setup.py build_sphinx -b man
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  export PYTHONHASSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 build/sphinx/man/streamlink.1 \
+"$pkgdir/usr/share/man/man1/streamlink.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-12-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 22, 2020 @ 14:00:27
  Author: grazzolini
Revision: 781999

upgpkg: streamlink 2.0.0-1

Modified:
  streamlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 13:55:44 UTC (rev 781998)
+++ PKGBUILD2020-12-22 14:00:27 UTC (rev 781999)
@@ -2,8 +2,8 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=streamlink
-pkgver=1.7.0
-pkgrel=2
+pkgver=2.0.0
+pkgrel=1
 pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
 arch=('any')
 url='https://streamlink.github.io/'
@@ -14,9 +14,9 @@
 optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
 
source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('f87a62a47212d94769929bd040d9c186b461643bdbda06f839b99ec9efefb87a'
+sha256sums=('c0ead9e961638d41cab9bd9677cdc701f2313bfd4d23cd8158410932839c62db'
 'SKIP')
-sha512sums=('2921905290488b7ad955bda5921a7725fdc0984f5084f833779bae19188d370d2bad08e3ff9714254e0595e3cf1f6244ecfa145ddf94458211048335840d82c5'
+sha512sums=('ce8b34670ea991ddd9b86eb4f05233468ad9df7ea743ed047cd2e3de8d0844dcded082df1215273e8a22ac5386dd17f64c80662b80fb8dbfae421b7f18c146d6'
 'SKIP')
 
 build() {


[arch-commits] Commit in dracut/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-12-21 Thread Giancarlo Razzolini via arch-commits
Date: Monday, December 21, 2020 @ 11:33:14
  Author: grazzolini
Revision: 404728

archrelease: copy trunk to extra-x86_64

Added:
  dracut/repos/extra-x86_64/PKGBUILD
(from rev 404727, dracut/trunk/PKGBUILD)
Deleted:
  dracut/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   90 ++---
 1 file changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-21 11:32:36 UTC (rev 404727)
+++ PKGBUILD2020-12-21 11:33:14 UTC (rev 404728)
@@ -1,45 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-pkgname=dracut
-pkgver=050
-pkgrel=1
-pkgdesc="An event driven initramfs infrastructure"
-arch=('x86_64')
-url="https://dracut.wiki.kernel.org;
-license=('GPL')
-depends=('bash' 'coreutils' 'cpio' 'filesystem' 'findutils' 'grep' 'gzip'
- 'kmod' 'pkgconf' 'procps-ng' 'sed' 'systemd' 'util-linux' 'xz')
-makedepends=('asciidoc' 'bash-completion' 'git')
-optdepends=('binutils: --uefi option support'
-'elfutils: strip binaries to reduce initramfs size'
-'hardlink: --hardlink option support'
-'multipath-tools: dmraid dracut module support'
-'pigz: faster gzip compression'
-'sbsigntools: uefi_secureboot_cert/key configuration option 
support')
-provides=('initramfs')
-backup=('etc/dracut.conf')
-source=(https://mirrors.edge.kernel.org/pub/linux/utils/boot/dracut/dracut-050.tar{.gz,.sign})
-sha512sums=('41ab9e089b91f8cd037dc545c164bbd63fe470bc5475d887f98d291ed5da24876b4cdfc4ae259151e52bfdcb599dce87c0b19d753c97cb4a25b664d8f5b39487'
-'SKIP')
-validpgpkeys=(
-  '7F3D64824AC0B6B8009E50504BC0896FB5693595' # Harald Hoyer 
-)
-
-build() {
-  local prefix=/usr sysconfdir=/etc
-  
-  cd "$srcdir/${pkgname}-${pkgver}"
-
-  ./configure \
---sysconfdir=${sysconfdir} \
---prefix=${prefix} \
---libdir=${prefix}/lib \
---systemdsystemunitdir=${prefix}/lib/systemd/system \
---bashcompletiondir=$(pkg-config --variable=completionsdir bash-completion)
-  make
-}
-
-package() {
-  cd "$srcdir/${pkgname}-${pkgver}"
-
-  DESTDIR="$pkgdir" make install
-}

Copied: dracut/repos/extra-x86_64/PKGBUILD (from rev 404727, 
dracut/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-21 11:33:14 UTC (rev 404728)
@@ -0,0 +1,45 @@
+# Maintainer: Giancarlo Razzolini 
+pkgname=dracut
+pkgver=051
+pkgrel=1
+pkgdesc="An event driven initramfs infrastructure"
+arch=('x86_64')
+url="https://dracut.wiki.kernel.org;
+license=('GPL')
+depends=('bash' 'coreutils' 'cpio' 'filesystem' 'findutils' 'grep' 'gzip'
+ 'kmod' 'pkgconf' 'procps-ng' 'sed' 'systemd' 'util-linux' 'xz')
+makedepends=('asciidoc' 'bash-completion' 'git')
+optdepends=('binutils: --uefi option support'
+'elfutils: strip binaries to reduce initramfs size'
+'hardlink: --hardlink option support'
+'multipath-tools: dmraid dracut module support'
+'pigz: faster gzip compression'
+'sbsigntools: uefi_secureboot_cert/key configuration option 
support')
+provides=('initramfs')
+backup=('etc/dracut.conf')
+source=(https://mirrors.edge.kernel.org/pub/linux/utils/boot/dracut/dracut-${pkgver}.tar{.gz,.sign})
+sha512sums=('e714ca395aa3534c28793b91fd79ec400f6e87ae98f67042e20d1312e25693f31629537475f2445587bc548bac94731e3cec8cba928ac34cebf05b1b08f67e07'
+'SKIP')
+validpgpkeys=(
+  '7F3D64824AC0B6B8009E50504BC0896FB5693595' # Harald Hoyer 
+)
+
+build() {
+  local prefix=/usr sysconfdir=/etc
+  
+  cd "$srcdir/${pkgname}-${pkgver}"
+
+  ./configure \
+--sysconfdir=${sysconfdir} \
+--prefix=${prefix} \
+--libdir=${prefix}/lib \
+--systemdsystemunitdir=${prefix}/lib/systemd/system \
+--bashcompletiondir=$(pkg-config --variable=completionsdir bash-completion)
+  make
+}
+
+package() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+
+  DESTDIR="$pkgdir" make install
+}


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

2020-12-21 Thread Giancarlo Razzolini via arch-commits
Date: Monday, December 21, 2020 @ 11:32:36
  Author: grazzolini
Revision: 404727

upgpkg: dracut 051-1

Modified:
  dracut/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-21 11:29:15 UTC (rev 404726)
+++ PKGBUILD2020-12-21 11:32:36 UTC (rev 404727)
@@ -1,6 +1,6 @@
 # Maintainer: Giancarlo Razzolini 
 pkgname=dracut
-pkgver=050
+pkgver=051
 pkgrel=1
 pkgdesc="An event driven initramfs infrastructure"
 arch=('x86_64')
@@ -17,8 +17,8 @@
 'sbsigntools: uefi_secureboot_cert/key configuration option 
support')
 provides=('initramfs')
 backup=('etc/dracut.conf')
-source=(https://mirrors.edge.kernel.org/pub/linux/utils/boot/dracut/dracut-050.tar{.gz,.sign})
-sha512sums=('41ab9e089b91f8cd037dc545c164bbd63fe470bc5475d887f98d291ed5da24876b4cdfc4ae259151e52bfdcb599dce87c0b19d753c97cb4a25b664d8f5b39487'
+source=(https://mirrors.edge.kernel.org/pub/linux/utils/boot/dracut/dracut-${pkgver}.tar{.gz,.sign})
+sha512sums=('e714ca395aa3534c28793b91fd79ec400f6e87ae98f67042e20d1312e25693f31629537475f2445587bc548bac94731e3cec8cba928ac34cebf05b1b08f67e07'
 'SKIP')
 validpgpkeys=(
   '7F3D64824AC0B6B8009E50504BC0896FB5693595' # Harald Hoyer 


[arch-commits] Commit in bash/repos (7 files)

2020-12-20 Thread Giancarlo Razzolini via arch-commits
Date: Sunday, December 20, 2020 @ 18:52:39
  Author: grazzolini
Revision: 404706

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 404705, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 404705, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 404705, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 404705, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 404705, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 404705, bash/trunk/system.bashrc)

+
 PKGBUILD   |   97 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 
 system.bash_logout |3 +
 system.bashrc  |   22 +++
 6 files changed, 139 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 404705, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-20 18:52:39 UTC (rev 404706)
@@ -0,0 +1,97 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.1
+_patchlevel=004
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=(readline libreadline.so glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+echo "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure \
+--prefix=/usr \
+--with-curses \
+--enable-readline \
+--without-bash-malloc \
+--with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+sha256sums=('cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa'
+'SKIP'
+'3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
+'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
+'4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
+'5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e'
+'ebb07b3dbadd98598f078125d0ae0d699295978a5cdaef6282fe19adef45b5fa'
+'SKIP'
+'15ea6121a801e48e658ceee712ea9b88d4ded022046a6147550790caf04f5dbe'
+'SKIP'
+'22f2cc262f056b22966281babf4b0a2f84cb7dd2223422e5dcd013c3dcbab6b1'
+'SKIP'
+'9aaeb65664ef0d28c0067e47ba5652b518298b3b92d33327d84b98b28d873c86'
+'SKIP')
+
+# vim: ts=2 sw=2 et:

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 404705, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2020-12-20 18:52:39 UTC (rev 

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

2020-12-20 Thread Giancarlo Razzolini via arch-commits
Date: Sunday, December 20, 2020 @ 18:51:49
  Author: grazzolini
Revision: 404705

upgpkg: bash 5.1.004-1

Modified:
  bash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-20 14:48:43 UTC (rev 404704)
+++ PKGBUILD2020-12-20 18:51:49 UTC (rev 404705)
@@ -6,9 +6,9 @@
 
 pkgname=bash
 _basever=5.1
-_patchlevel=0
+_patchlevel=004
 pkgver=${_basever}.${_patchlevel}
-pkgrel=2
+pkgrel=1
 pkgdesc='The GNU Bourne Again shell'
 arch=(x86_64)
 license=(GPL)
@@ -84,6 +84,14 @@
 'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
 '4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
 '5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
-'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e')
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e'
+'ebb07b3dbadd98598f078125d0ae0d699295978a5cdaef6282fe19adef45b5fa'
+'SKIP'
+'15ea6121a801e48e658ceee712ea9b88d4ded022046a6147550790caf04f5dbe'
+'SKIP'
+'22f2cc262f056b22966281babf4b0a2f84cb7dd2223422e5dcd013c3dcbab6b1'
+'SKIP'
+'9aaeb65664ef0d28c0067e47ba5652b518298b3b92d33327d84b98b28d873c86'
+'SKIP')
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in steam/repos/multilib-x86_64 (4 files)

2020-12-11 Thread Giancarlo Razzolini via arch-commits
Date: Friday, December 11, 2020 @ 13:01:19
  Author: grazzolini
Revision: 773124

archrelease: copy trunk to multilib-x86_64

Added:
  steam/repos/multilib-x86_64/PKGBUILD
(from rev 773123, steam/trunk/PKGBUILD)
  steam/repos/multilib-x86_64/steam-runtime.sh
(from rev 773123, steam/trunk/steam-runtime.sh)
Deleted:
  steam/repos/multilib-x86_64/PKGBUILD
  steam/repos/multilib-x86_64/steam-runtime.sh

--+
 PKGBUILD |  126 ++---
 steam-runtime.sh |4 -
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-11 13:00:26 UTC (rev 773123)
+++ PKGBUILD2020-12-11 13:01:19 UTC (rev 773124)
@@ -1,63 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Daniel Wallace 
-# Contributor: K900 
-
-pkgname=steam
-pkgver=1.0.0.67
-pkgrel=1
-pkgdesc="Valve's digital software delivery system"
-url='https://steampowered.com/'
-arch=('x86_64')
-license=('custom')
-depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus'
- 'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity' 'lsb-release' 'nss' 
'usbutils'
- 'xorg-xrandr' 'vulkan-driver' 'vulkan-icd-loader' 'lsof' 'python')
-depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 'lib32-libxss'
-'lib32-alsa-plugins' 'lib32-libgpg-error'
-'lib32-nss' 'lib32-vulkan-driver' 'lib32-vulkan-icd-loader')
-optdepends=('steam-native-runtime: steam native runtime support')
-source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}{.tar.gz,.dsc}
-steam-runtime.sh)
-sha512sums=('74af8019b9d216c02860654e9a0162b1089b979e63bbe13645be2ee79414f896e9e57cbb85d762725756e99ed6333a75c8712a827dd88de2b3631bc119b6b0b8'
-
'e7a0a05a69295fa34f8f005a504c9583d672ee2aca422d642daa87dec3feee6cebfa4ea2ccdb12a01d97a7c42e031ae0956d4452071919066737a7dcc375b84d'
-
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
-b2sums=('1a47f1d5a1fea7ba01c250f8765b2ee8bea87f0cd242ae52bdc78b51fb05c43c333efb667d3e7cf7b401a2fa5131efce176cead3c5ecdb214257fb2da75a36cf'
-
'bda198fe6c39b64ece0d8715ba8b5dbc89fa0b12b9e62130eb92efd277f2d7b73a96776903e842426cad09fd41b736faf1cadfc2a77fe601600343b8e0cea9d0'
-
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
-validpgpkeys=('BA1816EF8E75005FCF5E27A1F24AEA9FB05498B7') # 
li...@steampowered.com
-
-prepare() {
-  cd ${pkgname}-launcher
-  # apply roundups for udev rules
-  sed -r 's|("0666")|"0660", TAG+="uaccess"|g' -i 
subprojects/steam-devices/60-steam-input.rules
-  sed -r 's|("misc")|\1, OPTIONS+="static_node=uinput"|g' -i 
subprojects/steam-devices/60-steam-input.rules
-  sed -r 's|(, TAG\+="uaccess")|, MODE="0660"\1|g' -i 
subprojects/steam-devices/60-steam-vr.rules
-
-  # separated runtime/native desktop files
-  sed -r 's|(Name=Steam)|\1 (Runtime)|' -i steam.desktop
-  sed -r 's|(/usr/bin/steam)|\1-runtime|' -i steam.desktop
-}
-
-package() {
-  cd ${pkgname}-launcher
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm 755 "${srcdir}/steam-runtime.sh" 
"${pkgdir}/usr/bin/steam-runtime"
-  install -d "${pkgdir}/usr/lib/steam"
-  mv "${pkgdir}/usr/bin/steam" "${pkgdir}/usr/lib/steam/steam"
-  ln -sf /usr/bin/steam-runtime "${pkgdir}/usr/bin/steam"
-
-  install -Dm 644 COPYING steam_subscriber_agreement.txt -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 debian/changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  # blank steamdeps because apt-get
-  ln -sf /usr/bin/true "${pkgdir}/usr/bin/steamdeps"
-
-  install -Dm 644 subprojects/steam-devices/60-steam-input.rules \
-"${pkgdir}/usr/lib/udev/rules.d/70-steam-input.rules"
-  install -Dm 644 subprojects/steam-devices/60-steam-vr.rules \
-"${pkgdir}/usr/lib/udev/rules.d/70-steam-vr.rules"
-}
-
-# vim: ts=2 sw=2 et:

Copied: steam/repos/multilib-x86_64/PKGBUILD (from rev 773123, 
steam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-11 13:01:19 UTC (rev 773124)
@@ -0,0 +1,63 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Daniel Wallace 
+# Contributor: K900 
+
+pkgname=steam
+pkgver=1.0.0.68
+pkgrel=1
+pkgdesc="Valve's digital software delivery system"
+url='https://steampowered.com/'
+arch=('x86_64')
+license=('custom')
+depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus'
+ 'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity' 'lsb-release' 'nss' 
'usbutils'
+ 'xorg-xrandr' 'vulkan-driver' 'vulkan-icd-loader' 'lsof' 'python')
+depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 'lib32-libxss'

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

2020-12-11 Thread Giancarlo Razzolini via arch-commits
Date: Friday, December 11, 2020 @ 13:00:26
  Author: grazzolini
Revision: 773123

upgpkg: steam 1.0.0.68-1

Modified:
  steam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-11 12:59:03 UTC (rev 773122)
+++ PKGBUILD2020-12-11 13:00:26 UTC (rev 773123)
@@ -4,7 +4,7 @@
 # Contributor: K900 
 
 pkgname=steam
-pkgver=1.0.0.67
+pkgver=1.0.0.68
 pkgrel=1
 pkgdesc="Valve's digital software delivery system"
 url='https://steampowered.com/'
@@ -19,11 +19,11 @@
 optdepends=('steam-native-runtime: steam native runtime support')
 
source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}{.tar.gz,.dsc}
 steam-runtime.sh)
-sha512sums=('74af8019b9d216c02860654e9a0162b1089b979e63bbe13645be2ee79414f896e9e57cbb85d762725756e99ed6333a75c8712a827dd88de2b3631bc119b6b0b8'
-
'e7a0a05a69295fa34f8f005a504c9583d672ee2aca422d642daa87dec3feee6cebfa4ea2ccdb12a01d97a7c42e031ae0956d4452071919066737a7dcc375b84d'
+sha512sums=('73c541e77e9e294b0ea1b991b73980b5a74f83516f95b15f93fce49459b49124d167d59261ed7522adf7b42d2a8e58d4ace12f8fe06f4cdd49347a742fd3afc0'
+
'5bb9a009d4bb60483ebf6a906ab10b290828c6c5bd31bfba883ff4d96507a6450ba84e9e2447ccea76788071f3236fdd6e6bacb885313f78885c0daeda6b6f09'
 
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
-b2sums=('1a47f1d5a1fea7ba01c250f8765b2ee8bea87f0cd242ae52bdc78b51fb05c43c333efb667d3e7cf7b401a2fa5131efce176cead3c5ecdb214257fb2da75a36cf'
-
'bda198fe6c39b64ece0d8715ba8b5dbc89fa0b12b9e62130eb92efd277f2d7b73a96776903e842426cad09fd41b736faf1cadfc2a77fe601600343b8e0cea9d0'
+b2sums=('69c437322e5ff132052946524b8485815b92c4cfafd52428a430b6209c14b65ffd5b4bb74563c102338679b15eabe5cfb79d5692ada9b9cc694ca115ae41592e'
+
'33a5e7559508636fb88314833672aea175d861b78a92716c20968a4ff33f7ef6d806e6768be8e21b63b0ef100d93a7f46aa5a830baf99feed78e424faa369068'
 
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
 validpgpkeys=('BA1816EF8E75005FCF5E27A1F24AEA9FB05498B7') # 
li...@steampowered.com
 


[arch-commits] Commit in bash/repos (7 files)

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 19:47:52
  Author: grazzolini
Revision: 403156

archrelease: copy trunk to staging-x86_64

Added:
  bash/repos/staging-x86_64/
  bash/repos/staging-x86_64/PKGBUILD
(from rev 403155, bash/trunk/PKGBUILD)
  bash/repos/staging-x86_64/dot.bash_logout
(from rev 403155, bash/trunk/dot.bash_logout)
  bash/repos/staging-x86_64/dot.bash_profile
(from rev 403155, bash/trunk/dot.bash_profile)
  bash/repos/staging-x86_64/dot.bashrc
(from rev 403155, bash/trunk/dot.bashrc)
  bash/repos/staging-x86_64/system.bash_logout
(from rev 403155, bash/trunk/system.bash_logout)
  bash/repos/staging-x86_64/system.bashrc
(from rev 403155, bash/trunk/system.bashrc)

+
 PKGBUILD   |   89 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +
 system.bash_logout |3 +
 system.bashrc  |   22 
 6 files changed, 131 insertions(+)

Copied: bash/repos/staging-x86_64/PKGBUILD (from rev 403155, 
bash/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-08 19:47:52 UTC (rev 403156)
@@ -0,0 +1,89 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.1
+_patchlevel=0
+pkgver=${_basever}.${_patchlevel}
+pkgrel=2
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=(readline libreadline.so glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+echo "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure \
+--prefix=/usr \
+--with-curses \
+--enable-readline \
+--without-bash-malloc \
+--with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+sha256sums=('cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa'
+'SKIP'
+'3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
+'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
+'4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
+'5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e')
+
+# vim: ts=2 sw=2 et:

Copied: bash/repos/staging-x86_64/dot.bash_logout (from rev 403155, 
bash/trunk/dot.bash_logout)
===
--- staging-x86_64/dot.bash_logout  (rev 0)
+++ staging-x86_64/dot.bash_logout  2020-12-08 19:47:52 UTC (rev 403156)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/staging-x86_64/dot.bash_profile (from rev 403155, 
bash/trunk/dot.bash_profile)
===
--- staging-x86_64/dot.bash_profile (rev 0)
+++ staging-x86_64/dot.bash_profile 2020-12-08 19:47:52 UTC (rev 403156)
@@ -0,0 +1,5 @@
+#
+# ~/.bash_profile

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

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 19:47:00
  Author: grazzolini
Revision: 403155

upgpkg: bash 5.1.0-2

Readline 8.1

Modified:
  bash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-08 19:46:57 UTC (rev 403154)
+++ PKGBUILD2020-12-08 19:47:00 UTC (rev 403155)
@@ -8,7 +8,7 @@
 _basever=5.1
 _patchlevel=0
 pkgver=${_basever}.${_patchlevel}
-pkgrel=1
+pkgrel=2
 pkgdesc='The GNU Bourne Again shell'
 arch=(x86_64)
 license=(GPL)


[arch-commits] Commit in readline/repos/staging-x86_64 (4 files)

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:51:01
  Author: grazzolini
Revision: 403150

archrelease: copy trunk to staging-x86_64

Added:
  readline/repos/staging-x86_64/PKGBUILD
(from rev 403149, readline/trunk/PKGBUILD)
  readline/repos/staging-x86_64/inputrc
(from rev 403149, readline/trunk/inputrc)
Deleted:
  readline/repos/staging-x86_64/PKGBUILD
  readline/repos/staging-x86_64/inputrc

--+
 PKGBUILD |  113 ++---
 inputrc  |   72 +++---
 2 files changed, 93 insertions(+), 92 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-08 17:50:29 UTC (rev 403149)
+++ PKGBUILD2020-12-08 17:51:01 UTC (rev 403150)
@@ -1,56 +0,0 @@
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Allan McRae 
-# Contributor: judd 
-
-pkgname=readline
-_basever=8.1
-_patchlevel=000
-pkgver=${_basever}.${_patchlevel}
-pkgrel=1
-pkgdesc='GNU readline library'
-arch=('x86_64')
-url='https://tiswww.case.edu/php/chet/readline/rltop.html'
-license=('GPL')
-backup=('etc/inputrc')
-depends=('glibc' 'ncurses' 'libncursesw.so')
-provides=('libhistory.so' 'libreadline.so')
-options=('!emptydirs')
-source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
-inputrc)
-validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
-
-if [ $_patchlevel -gt 0 ]; then
-for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
-source=(${source[@]} 
https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf
 "%03d" $_p){,.sig})
-done
-fi
-
-prepare() {
-  cd $pkgname-$_basever
-  for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
-msg "applying patch readline${_basever//.}-$(printf "%03d" $_p)"
-patch -p0 -i ../readline${_basever//.}-$(printf "%03d" $_p)
-  done
-
-  # remove RPATH from shared objects (FS#14366)
-  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
-}
-
-build() {
-  cd $pkgname-$_basever
-
-  # build with -fPIC for x86_64 (FS#15634)
-  [[ $CARCH == "x86_64" ]] && CFLAGS="$CFLAGS -fPIC"
-
-  ./configure --prefix=/usr
-  make SHLIB_LIBS=-lncurses
-}
-
-package() {
-  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
-  install -Dm644 inputrc "$pkgdir"/etc/inputrc
-}
-
-md5sums=('e9557dd5b1409f5d7b37ef717c64518e'
- 'SKIP'
- '58d54966c1191db45973cb3191ac621a')

Copied: readline/repos/staging-x86_64/PKGBUILD (from rev 403149, 
readline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-08 17:51:01 UTC (rev 403150)
@@ -0,0 +1,57 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=readline
+_basever=8.1
+_patchlevel=0
+pkgver=${_basever}.${_patchlevel}
+pkgrel=2
+pkgdesc='GNU readline library'
+arch=('x86_64')
+url='https://tiswww.case.edu/php/chet/readline/rltop.html'
+license=('GPL')
+backup=('etc/inputrc')
+depends=('glibc' 'ncurses' 'libncursesw.so')
+provides=('libhistory.so' 'libreadline.so')
+options=('!emptydirs')
+source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+inputrc)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [ $_patchlevel -gt 0 ]; then
+for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf
 "%03d" $_p){,.sig})
+done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+  for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+msg "applying patch readline${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../readline${_basever//.}-$(printf "%03d" $_p)
+  done
+
+  # remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [[ $CARCH == "x86_64" ]] && CFLAGS="$CFLAGS -fPIC"
+
+  ./configure --prefix=/usr
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  install -Dm644 inputrc "$pkgdir"/etc/inputrc
+}
+
+md5sums=('e9557dd5b1409f5d7b37ef717c64518e'
+ 'SKIP'
+ '58d54966c1191db45973cb3191ac621a')

Deleted: inputrc
===
--- inputrc 2020-12-08 17:50:29 UTC (rev 403149)
+++ inputrc 2020-12-08 17:51:01 UTC (rev 403150)
@@ -1,36 +0,0 @@
-# do not bell on tab-completion
-#set bell-style none
-
-set meta-flag on
-set input-meta on
-set convert-meta off
-set output-meta on
-
-$if mode=emacs
-
-# for linux console and RH/Debian xterm
-"\e[1~": beginning-of-line
-"\e[4~": end-of-line
-"\e[5~": beginning-of-history
-"\e[6~": end-of-history
-"\e[7~": beginning-of-line
-"\e[3~": delete-char

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

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:50:29
  Author: grazzolini
Revision: 403149

upgpkg: readline 8.1.0-2

Fix the patchlevel

Modified:
  readline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-08 17:38:01 UTC (rev 403148)
+++ PKGBUILD2020-12-08 17:50:29 UTC (rev 403149)
@@ -1,12 +1,13 @@
-# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
 # Contributor: Allan McRae 
 # Contributor: judd 
 
 pkgname=readline
 _basever=8.1
-_patchlevel=000
+_patchlevel=0
 pkgver=${_basever}.${_patchlevel}
-pkgrel=1
+pkgrel=2
 pkgdesc='GNU readline library'
 arch=('x86_64')
 url='https://tiswww.case.edu/php/chet/readline/rltop.html'


[arch-commits] Commit in lib32-readline/repos/multilib-staging-x86_64 (2 files)

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:46:45
  Author: grazzolini
Revision: 771943

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-readline/repos/multilib-staging-x86_64/PKGBUILD
(from rev 771942, lib32-readline/trunk/PKGBUILD)
Deleted:
  lib32-readline/repos/multilib-staging-x86_64/PKGBUILD

--+
 PKGBUILD |  102 ++---
 1 file changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-08 17:46:19 UTC (rev 771942)
+++ PKGBUILD2020-12-08 17:46:45 UTC (rev 771943)
@@ -1,51 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Allan McRae 
-# Contributor: judd 
-
-_pkgbasename=readline
-pkgname=lib32-$_pkgbasename
-_basever=8.1
-_patchlevel=000
-pkgver=${_basever}.${_patchlevel}
-pkgrel=1
-pkgdesc="GNU readline library (32-bit)"
-arch=(x86_64)
-url="https://tiswww.case.edu/php/chet/readline/rltop.html;
-license=('GPL')
-depends=('lib32-glibc' 'lib32-ncurses' $_pkgbasename)
-makedepends=('gcc-multilib')
-source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz)
-if [ $_patchlevel -gt 00 ]; then
-for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
-  source=(${source[@]} 
https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 "%03d" $p){,.sig})
-done
-fi
-validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
-
-md5sums=('e9557dd5b1409f5d7b37ef717c64518e')
-
-build() {
-  cd ${srcdir}/${_pkgbasename}-$_basever
-
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
-msg "applying patch readline${_basever//./}-$(printf "%03d" $p)"
-patch -Np0 -i $srcdir/readline${_basever//./}-$(printf "%03d" $p)
-  done
-
-  # Remove RPATH from shared objects (FS#14366)
-  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
-
-  ./configure --prefix=/usr --libdir=/usr/lib32
-  make SHLIB_LIBS=-lncurses
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-$_basever
-
-  make DESTDIR=${pkgdir} install
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-}

Copied: lib32-readline/repos/multilib-staging-x86_64/PKGBUILD (from rev 771942, 
lib32-readline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-08 17:46:45 UTC (rev 771943)
@@ -0,0 +1,51 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+_pkgbasename=readline
+pkgname=lib32-$_pkgbasename
+_basever=8.1
+_patchlevel=0
+pkgver=${_basever}.${_patchlevel}
+pkgrel=2
+pkgdesc="GNU readline library (32-bit)"
+arch=(x86_64)
+url="https://tiswww.case.edu/php/chet/readline/rltop.html;
+license=('GPL')
+depends=('lib32-glibc' 'lib32-ncurses' $_pkgbasename)
+makedepends=('gcc-multilib')
+source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz)
+if [ $_patchlevel -gt 00 ]; then
+for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
+  source=(${source[@]} 
https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 "%03d" $p){,.sig})
+done
+fi
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+md5sums=('e9557dd5b1409f5d7b37ef717c64518e')
+
+build() {
+  cd ${srcdir}/${_pkgbasename}-$_basever
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
+msg "applying patch readline${_basever//./}-$(printf "%03d" $p)"
+patch -Np0 -i $srcdir/readline${_basever//./}-$(printf "%03d" $p)
+  done
+
+  # Remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-$_basever
+
+  make DESTDIR=${pkgdir} install
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}


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

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:46:19
  Author: grazzolini
Revision: 771942

upgpkg: lib32-readline 8.1.0-2

Fix the patchlevel

Modified:
  lib32-readline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-08 17:44:22 UTC (rev 771941)
+++ PKGBUILD2020-12-08 17:46:19 UTC (rev 771942)
@@ -5,9 +5,9 @@
 _pkgbasename=readline
 pkgname=lib32-$_pkgbasename
 _basever=8.1
-_patchlevel=000
+_patchlevel=0
 pkgver=${_basever}.${_patchlevel}
-pkgrel=1
+pkgrel=2
 pkgdesc="GNU readline library (32-bit)"
 arch=(x86_64)
 url="https://tiswww.case.edu/php/chet/readline/rltop.html;


[arch-commits] Commit in lib32-readline/repos (2 files)

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:44:22
  Author: grazzolini
Revision: 771941

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-readline/repos/multilib-staging-x86_64/
  lib32-readline/repos/multilib-staging-x86_64/PKGBUILD
(from rev 771940, lib32-readline/trunk/PKGBUILD)

--+
 PKGBUILD |   51 +++
 1 file changed, 51 insertions(+)

Copied: lib32-readline/repos/multilib-staging-x86_64/PKGBUILD (from rev 771940, 
lib32-readline/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2020-12-08 17:44:22 UTC (rev 771941)
@@ -0,0 +1,51 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+_pkgbasename=readline
+pkgname=lib32-$_pkgbasename
+_basever=8.1
+_patchlevel=000
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc="GNU readline library (32-bit)"
+arch=(x86_64)
+url="https://tiswww.case.edu/php/chet/readline/rltop.html;
+license=('GPL')
+depends=('lib32-glibc' 'lib32-ncurses' $_pkgbasename)
+makedepends=('gcc-multilib')
+source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz)
+if [ $_patchlevel -gt 00 ]; then
+for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
+  source=(${source[@]} 
https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 "%03d" $p){,.sig})
+done
+fi
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+md5sums=('e9557dd5b1409f5d7b37ef717c64518e')
+
+build() {
+  cd ${srcdir}/${_pkgbasename}-$_basever
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
+msg "applying patch readline${_basever//./}-$(printf "%03d" $p)"
+patch -Np0 -i $srcdir/readline${_basever//./}-$(printf "%03d" $p)
+  done
+
+  # Remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-$_basever
+
+  make DESTDIR=${pkgdir} install
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}


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

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:44:00
  Author: grazzolini
Revision: 771940

upgpkg: lib32-readline 8.1.000-1

Modified:
  lib32-readline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-08 17:40:59 UTC (rev 771939)
+++ PKGBUILD2020-12-08 17:44:00 UTC (rev 771940)
@@ -1,10 +1,11 @@
+# Maintainer: Giancarlo Razzolini 
 # Contributor: Allan McRae 
 # Contributor: judd 
 
 _pkgbasename=readline
 pkgname=lib32-$_pkgbasename
-_basever=8.0
-_patchlevel=004
+_basever=8.1
+_patchlevel=000
 pkgver=${_basever}.${_patchlevel}
 pkgrel=1
 pkgdesc="GNU readline library (32-bit)"
@@ -21,15 +22,7 @@
 fi
 validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
 
-md5sums=('7e6c1f16aee3244a69aba6e438295ca3'
- 'c3e27b8a0d8e37a4172654e5f3ef2eec'
- 'SKIP'
- '2e631f1973dfe4b0ef042c40b8fdb47e'
- 'SKIP'
- '9d2344b399237fa7abdbcf966b364c97'
- 'SKIP'
- '0c0406762a9afcd34c6a77268fea0ccb'
- 'SKIP')
+md5sums=('e9557dd5b1409f5d7b37ef717c64518e')
 
 build() {
   cd ${srcdir}/${_pkgbasename}-$_basever


[arch-commits] Commit in readline/repos (3 files)

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:38:01
  Author: grazzolini
Revision: 403148

archrelease: copy trunk to staging-x86_64

Added:
  readline/repos/staging-x86_64/
  readline/repos/staging-x86_64/PKGBUILD
(from rev 403147, readline/trunk/PKGBUILD)
  readline/repos/staging-x86_64/inputrc
(from rev 403147, readline/trunk/inputrc)

--+
 PKGBUILD |   56 
 inputrc  |   36 
 2 files changed, 92 insertions(+)

Copied: readline/repos/staging-x86_64/PKGBUILD (from rev 403147, 
readline/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-08 17:38:01 UTC (rev 403148)
@@ -0,0 +1,56 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=readline
+_basever=8.1
+_patchlevel=000
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='GNU readline library'
+arch=('x86_64')
+url='https://tiswww.case.edu/php/chet/readline/rltop.html'
+license=('GPL')
+backup=('etc/inputrc')
+depends=('glibc' 'ncurses' 'libncursesw.so')
+provides=('libhistory.so' 'libreadline.so')
+options=('!emptydirs')
+source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+inputrc)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [ $_patchlevel -gt 0 ]; then
+for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf
 "%03d" $_p){,.sig})
+done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+  for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+msg "applying patch readline${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../readline${_basever//.}-$(printf "%03d" $_p)
+  done
+
+  # remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [[ $CARCH == "x86_64" ]] && CFLAGS="$CFLAGS -fPIC"
+
+  ./configure --prefix=/usr
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  install -Dm644 inputrc "$pkgdir"/etc/inputrc
+}
+
+md5sums=('e9557dd5b1409f5d7b37ef717c64518e'
+ 'SKIP'
+ '58d54966c1191db45973cb3191ac621a')

Copied: readline/repos/staging-x86_64/inputrc (from rev 403147, 
readline/trunk/inputrc)
===
--- staging-x86_64/inputrc  (rev 0)
+++ staging-x86_64/inputrc  2020-12-08 17:38:01 UTC (rev 403148)
@@ -0,0 +1,36 @@
+# do not bell on tab-completion
+#set bell-style none
+
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+
+$if mode=emacs
+
+# for linux console and RH/Debian xterm
+"\e[1~": beginning-of-line
+"\e[4~": end-of-line
+"\e[5~": beginning-of-history
+"\e[6~": end-of-history
+"\e[7~": beginning-of-line
+"\e[3~": delete-char
+"\e[2~": quoted-insert
+"\e[5C": forward-word
+"\e[5D": backward-word
+"\e\e[C": forward-word
+"\e\e[D": backward-word
+"\e[1;5C": forward-word
+"\e[1;5D": backward-word
+
+# for rxvt
+"\e[8~": end-of-line
+
+# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
+"\eOH": beginning-of-line
+"\eOF": end-of-line
+
+# for freebsd console
+"\e[H": beginning-of-line
+"\e[F": end-of-line
+$endif


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

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 17:37:20
  Author: grazzolini
Revision: 403147

upgpkg: readline 8.1.000-1

Modified:
  readline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-08 17:32:15 UTC (rev 403146)
+++ PKGBUILD2020-12-08 17:37:20 UTC (rev 403147)
@@ -3,8 +3,8 @@
 # Contributor: judd 
 
 pkgname=readline
-_basever=8.0
-_patchlevel=004
+_basever=8.1
+_patchlevel=000
 pkgver=${_basever}.${_patchlevel}
 pkgrel=1
 pkgdesc='GNU readline library'
@@ -51,14 +51,6 @@
   install -Dm644 inputrc "$pkgdir"/etc/inputrc
 }
 
-md5sums=('7e6c1f16aee3244a69aba6e438295ca3'
+md5sums=('e9557dd5b1409f5d7b37ef717c64518e'
  'SKIP'
- '58d54966c1191db45973cb3191ac621a'
- 'c3e27b8a0d8e37a4172654e5f3ef2eec'
- 'SKIP'
- '2e631f1973dfe4b0ef042c40b8fdb47e'
- 'SKIP'
- '9d2344b399237fa7abdbcf966b364c97'
- 'SKIP'
- '0c0406762a9afcd34c6a77268fea0ccb'
- 'SKIP')
+ '58d54966c1191db45973cb3191ac621a')


[arch-commits] Commit in bash/repos (7 files)

2020-12-07 Thread Giancarlo Razzolini via arch-commits
Date: Monday, December 7, 2020 @ 12:59:04
  Author: grazzolini
Revision: 403077

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 403076, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 403076, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 403076, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 403076, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 403076, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 403076, bash/trunk/system.bashrc)

+
 PKGBUILD   |   89 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +
 system.bash_logout |3 +
 system.bashrc  |   22 
 6 files changed, 131 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 403076, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-07 12:59:04 UTC (rev 403077)
@@ -0,0 +1,89 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.1
+_patchlevel=0
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=(readline libreadline.so glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+echo "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure \
+--prefix=/usr \
+--with-curses \
+--enable-readline \
+--without-bash-malloc \
+--with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+sha256sums=('cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa'
+'SKIP'
+'3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
+'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
+'4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
+'5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e')
+
+# vim: ts=2 sw=2 et:

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 403076, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2020-12-07 12:59:04 UTC (rev 403077)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/testing-x86_64/dot.bash_profile (from rev 403076, 
bash/trunk/dot.bash_profile)
===
--- testing-x86_64/dot.bash_profile (rev 0)
+++ testing-x86_64/dot.bash_profile 2020-12-07 12:59:04 UTC (rev 403077)
@@ -0,0 +1,5 @@
+#
+# ~/.bash_profile

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

2020-12-07 Thread Giancarlo Razzolini via arch-commits
Date: Monday, December 7, 2020 @ 12:58:07
  Author: grazzolini
Revision: 403076

upgpkg: bash 5.1.0-1

Modified:
  bash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-07 12:32:15 UTC (rev 403075)
+++ PKGBUILD2020-12-07 12:58:07 UTC (rev 403076)
@@ -1,13 +1,14 @@
 # Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
 # Contributor:  Bartłomiej Piotrowski 
 # Contributor: Allan McRae 
 # Contributor: Aaron Griffin 
 
 pkgname=bash
-_basever=5.0
-_patchlevel=018
+_basever=5.1
+_patchlevel=0
 pkgver=${_basever}.${_patchlevel}
-pkgrel=2
+pkgrel=1
 pkgdesc='The GNU Bourne Again shell'
 arch=(x86_64)
 license=(GPL)
@@ -77,48 +78,12 @@
   install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
 }
 
-sha256sums=('b4a80f2ac66170b2913efbfb9f2594f1f76c7b1afd11f799e22035d63077fb4d'
+sha256sums=('cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa'
 'SKIP'
 '3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
 'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
 '4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
 '5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
-'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e'
-'f2fe9e1f0faddf14ab9bfa88d450a75e5d028fedafad23b88716bd657c737289'
-'SKIP'
-'87e87d3542e598799adb3e7e01c8165bc743e136a400ed0de015845f7ff68707'
-'SKIP'
-'4eebcdc37b13793a232c5f2f498a5fcbf7da0ecb3da2059391c096db620ec85b'
-'SKIP'
-'14447ad832add8ecfafdce5384badd933697b559c4688d6b9e3d36ff36c62f08'
-'SKIP'
-'5bf54dd9bd2c211d2bfb34a49e2c741f2ed5e338767e9ce9f4d41254bf9f8276'
-'SKIP'
-'d68529a6ff201b6ff5915318ab12fc16b8a0ebb77fda3308303fcc1e13398420'
-'SKIP'
-'17b41e7ee3673d8887dd25992417a398677533ab8827938aa41fad70df19af9b'
-'SKIP'
-'eec64588622a82a5029b2776e218a75a3640bef4953f09d6ee1f4199670ad7e3'
-'SKIP'
-'ed3ca21767303fc3de93934aa524c2e920787c506b601cc40a4897d4b094d903'
-'SKIP'
-'d6fbc325f0b5dc54ddbe8ee43020bced8bd589ddffea59d128db14b2e52a8a11'
-'SKIP'
-'2c4de332b91eaf797abbbd6c79709690b5cbd48b12e8dfe748096dbd7bf474ea'
-'SKIP'
-'2943ee19688018296f2a04dbfe30b7138b889700efa8ff1c0524af271e0ee233'
-'SKIP'
-'f5d7178d8da30799e01b83a0802018d913d6aa972dd2ddad3b927f3f3eb7099a'
-'SKIP'
-'5d6eee6514ee6e22a87bba8d22be0a8621a0ae119246f1c5a9a35db1f72af589'
-'SKIP'
-'a517df2dda93b26d5cbf00effefea93e3a4ccd6652f152f4109170544ebfa05e'
-'SKIP'
-'ffd1d7a54a99fa7f5b1825e4f7e95d8c8876bc2ca151f150e751d429c650b06d'
-'SKIP'
-'4cf3b9fafb8a66d411dd5fc9120032533a4012df1dc6ee024c7833373e2ddc31'
-'SKIP'
-'7c314e375a105a6642e8ed44f3808b9def89d15f7492fe2029a21ba9c0de81d3'
-'SKIP')
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e')
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in dhcpcd/repos (7 files)

2020-11-30 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 30, 2020 @ 12:06:20
  Author: grazzolini
Revision: 402408

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 402407, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.install
(from rev 402407, dhcpcd/trunk/dhcpcd.install)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 402407, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 402407, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 402407, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 402407, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   77 ++
 dhcpcd.install  |7 
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |1 
 dhcpcd_.service |   15 ++
 6 files changed, 114 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 402407, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-30 12:06:20 UTC (rev 402408)
@@ -0,0 +1,77 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.3.4
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+install='dhcpcd.install'
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd.install
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('5c823a0b981b52e7e0fd3183ae220422d6fcc3aa511af31dcb1a7ee6cb0f1c39'
+'d40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'
+'55d57b958f6b7e4d4a538ee88b0fcc1a522050c2d38efb5d680139f618234b35')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.install (from rev 402407, 
dhcpcd/trunk/dhcpcd.install)
===
--- testing-x86_64/dhcpcd.install   (rev 0)
+++ testing-x86_64/dhcpcd.install   2020-11-30 12:06:20 UTC (rev 402408)
@@ -0,0 +1,7 @@
+pre_upgrade() {
+if [ -d /var/lib/dhcpcd ]; then
+# match permissions with upstream
+chown root:root /var/lib/dhcpcd
+chmod 0750 /var/lib/dhcpcd
+fi
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 402407, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-11-30 12:06:20 UTC (rev 402408)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.sysusers (from rev 

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

2020-11-30 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 30, 2020 @ 12:04:56
  Author: grazzolini
Revision: 402407

upgpkg: dhcpcd 9.3.4-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 09:45:07 UTC (rev 402406)
+++ PKGBUILD2020-11-30 12:04:56 UTC (rev 402407)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=9.3.3
+pkgver=9.3.4
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
@@ -23,7 +23,7 @@
 dhcpcd.sysusers
 dhcpcd.tmpfiles)
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('2d49f00b233832e12b6cb0b033be0c6fdff20e019dfae5bda2b87d7551e2c4c1'
+sha256sums=('5c823a0b981b52e7e0fd3183ae220422d6fcc3aa511af31dcb1a7ee6cb0f1c39'
 'd40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
 '37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
 '20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'


[arch-commits] Commit in dhcpcd/repos (7 files)

2020-11-23 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 23, 2020 @ 12:26:52
  Author: grazzolini
Revision: 401756

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 401755, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.install
(from rev 401755, dhcpcd/trunk/dhcpcd.install)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 401755, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 401755, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 401755, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 401755, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   77 ++
 dhcpcd.install  |7 
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |1 
 dhcpcd_.service |   15 ++
 6 files changed, 114 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 401755, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-23 12:26:52 UTC (rev 401756)
@@ -0,0 +1,77 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.3.3
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+install='dhcpcd.install'
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd.install
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('2d49f00b233832e12b6cb0b033be0c6fdff20e019dfae5bda2b87d7551e2c4c1'
+'d40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'
+'55d57b958f6b7e4d4a538ee88b0fcc1a522050c2d38efb5d680139f618234b35')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.install (from rev 401755, 
dhcpcd/trunk/dhcpcd.install)
===
--- testing-x86_64/dhcpcd.install   (rev 0)
+++ testing-x86_64/dhcpcd.install   2020-11-23 12:26:52 UTC (rev 401756)
@@ -0,0 +1,7 @@
+pre_upgrade() {
+if [ -d /var/lib/dhcpcd ]; then
+# match permissions with upstream
+chown root:root /var/lib/dhcpcd
+chmod 0750 /var/lib/dhcpcd
+fi
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 401755, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-11-23 12:26:52 UTC (rev 401756)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.sysusers (from rev 

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

2020-11-23 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 23, 2020 @ 12:25:56
  Author: grazzolini
Revision: 401755

upgpkg: dhcpcd 9.3.3-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-23 10:45:56 UTC (rev 401754)
+++ PKGBUILD2020-11-23 12:25:56 UTC (rev 401755)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=9.3.2
+pkgver=9.3.3
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
@@ -23,7 +23,7 @@
 dhcpcd.sysusers
 dhcpcd.tmpfiles)
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('6d49af5e766a2515e6366e4f669663df04ecdf90a1a60ddb1d7a2feb4b5d2566'
+sha256sums=('2d49f00b233832e12b6cb0b033be0c6fdff20e019dfae5bda2b87d7551e2c4c1'
 'd40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
 '37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
 '20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'


[arch-commits] Commit in steam/repos (3 files)

2020-11-23 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 23, 2020 @ 12:09:51
  Author: grazzolini
Revision: 759893

archrelease: copy trunk to multilib-testing-x86_64

Added:
  steam/repos/multilib-testing-x86_64/
  steam/repos/multilib-testing-x86_64/PKGBUILD
(from rev 759892, steam/trunk/PKGBUILD)
  steam/repos/multilib-testing-x86_64/steam-runtime.sh
(from rev 759892, steam/trunk/steam-runtime.sh)

--+
 PKGBUILD |   63 +
 steam-runtime.sh |2 +
 2 files changed, 65 insertions(+)

Copied: steam/repos/multilib-testing-x86_64/PKGBUILD (from rev 759892, 
steam/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-11-23 12:09:51 UTC (rev 759893)
@@ -0,0 +1,63 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Daniel Wallace 
+# Contributor: K900 
+
+pkgname=steam
+pkgver=1.0.0.67
+pkgrel=1
+pkgdesc="Valve's digital software delivery system"
+url='https://steampowered.com/'
+arch=('x86_64')
+license=('custom')
+depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus'
+ 'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity' 'lsb-release' 'nss' 
'usbutils'
+ 'xorg-xrandr' 'vulkan-driver' 'vulkan-icd-loader' 'lsof' 'python')
+depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 'lib32-libxss'
+'lib32-alsa-plugins' 'lib32-libgpg-error'
+'lib32-nss' 'lib32-vulkan-driver' 'lib32-vulkan-icd-loader')
+optdepends=('steam-native-runtime: steam native runtime support')
+source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}{.tar.gz,.dsc}
+steam-runtime.sh)
+sha512sums=('74af8019b9d216c02860654e9a0162b1089b979e63bbe13645be2ee79414f896e9e57cbb85d762725756e99ed6333a75c8712a827dd88de2b3631bc119b6b0b8'
+
'e7a0a05a69295fa34f8f005a504c9583d672ee2aca422d642daa87dec3feee6cebfa4ea2ccdb12a01d97a7c42e031ae0956d4452071919066737a7dcc375b84d'
+
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
+b2sums=('1a47f1d5a1fea7ba01c250f8765b2ee8bea87f0cd242ae52bdc78b51fb05c43c333efb667d3e7cf7b401a2fa5131efce176cead3c5ecdb214257fb2da75a36cf'
+
'bda198fe6c39b64ece0d8715ba8b5dbc89fa0b12b9e62130eb92efd277f2d7b73a96776903e842426cad09fd41b736faf1cadfc2a77fe601600343b8e0cea9d0'
+
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
+validpgpkeys=('BA1816EF8E75005FCF5E27A1F24AEA9FB05498B7') # 
li...@steampowered.com
+
+prepare() {
+  cd ${pkgname}-launcher
+  # apply roundups for udev rules
+  sed -r 's|("0666")|"0660", TAG+="uaccess"|g' -i 
subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|("misc")|\1, OPTIONS+="static_node=uinput"|g' -i 
subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|(, TAG\+="uaccess")|, MODE="0660"\1|g' -i 
subprojects/steam-devices/60-steam-vr.rules
+
+  # separated runtime/native desktop files
+  sed -r 's|(Name=Steam)|\1 (Runtime)|' -i steam.desktop
+  sed -r 's|(/usr/bin/steam)|\1-runtime|' -i steam.desktop
+}
+
+package() {
+  cd ${pkgname}-launcher
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm 755 "${srcdir}/steam-runtime.sh" 
"${pkgdir}/usr/bin/steam-runtime"
+  install -d "${pkgdir}/usr/lib/steam"
+  mv "${pkgdir}/usr/bin/steam" "${pkgdir}/usr/lib/steam/steam"
+  ln -sf /usr/bin/steam-runtime "${pkgdir}/usr/bin/steam"
+
+  install -Dm 644 COPYING steam_subscriber_agreement.txt -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 debian/changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # blank steamdeps because apt-get
+  ln -sf /usr/bin/true "${pkgdir}/usr/bin/steamdeps"
+
+  install -Dm 644 subprojects/steam-devices/60-steam-input.rules \
+"${pkgdir}/usr/lib/udev/rules.d/70-steam-input.rules"
+  install -Dm 644 subprojects/steam-devices/60-steam-vr.rules \
+"${pkgdir}/usr/lib/udev/rules.d/70-steam-vr.rules"
+}
+
+# vim: ts=2 sw=2 et:

Copied: steam/repos/multilib-testing-x86_64/steam-runtime.sh (from rev 759892, 
steam/trunk/steam-runtime.sh)
===
--- multilib-testing-x86_64/steam-runtime.sh(rev 0)
+++ multilib-testing-x86_64/steam-runtime.sh2020-11-23 12:09:51 UTC (rev 
759893)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /usr/lib/steam/steam "$@"


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

2020-11-23 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 23, 2020 @ 12:09:17
  Author: grazzolini
Revision: 759892

upgpkg: steam 1.0.0.67-1

Modified:
  steam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-23 11:35:31 UTC (rev 759891)
+++ PKGBUILD2020-11-23 12:09:17 UTC (rev 759892)
@@ -4,7 +4,7 @@
 # Contributor: K900 
 
 pkgname=steam
-pkgver=1.0.0.66
+pkgver=1.0.0.67
 pkgrel=1
 pkgdesc="Valve's digital software delivery system"
 url='https://steampowered.com/'
@@ -19,11 +19,11 @@
 optdepends=('steam-native-runtime: steam native runtime support')
 
source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}{.tar.gz,.dsc}
 steam-runtime.sh)
-sha512sums=('1871dba51229cbc220e19df3f8af06ea6c0d71e1bbdea39ef66c4f5d0ce29486974cb1cdb7f5e78f6a0e2f69d256f4c2034848d3efd68b088635eb11a2ae96ba'
-
'7c4efae9fe5fa3cb14b9344a30aa8daec995bff502d1b80d5f6ee479f11be6993c5b8870da1ec14bd8f979d8d161a45fa0eeb628eccf60eeb40a4221356e13e9'
+sha512sums=('74af8019b9d216c02860654e9a0162b1089b979e63bbe13645be2ee79414f896e9e57cbb85d762725756e99ed6333a75c8712a827dd88de2b3631bc119b6b0b8'
+
'e7a0a05a69295fa34f8f005a504c9583d672ee2aca422d642daa87dec3feee6cebfa4ea2ccdb12a01d97a7c42e031ae0956d4452071919066737a7dcc375b84d'
 
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
-b2sums=('d4a247b31f1474908a7e1ebdd7bb9443608bd7617e53344b9b03e498fe9cd55e406a1ef7ef3eba6754d9c19218ca975f3d1e18a727f5a05d21467f276c8854fa'
-
'210b7a332f2aee8df5efd632dc90086e2a2470a12ad6fa1ecb0cd34cc039f016ede891f9d0bb15245c054afa3cca46871842c521b1e924c196a1c02689f8d077'
+b2sums=('1a47f1d5a1fea7ba01c250f8765b2ee8bea87f0cd242ae52bdc78b51fb05c43c333efb667d3e7cf7b401a2fa5131efce176cead3c5ecdb214257fb2da75a36cf'
+
'bda198fe6c39b64ece0d8715ba8b5dbc89fa0b12b9e62130eb92efd277f2d7b73a96776903e842426cad09fd41b736faf1cadfc2a77fe601600343b8e0cea9d0'
 
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
 validpgpkeys=('BA1816EF8E75005FCF5E27A1F24AEA9FB05498B7') # 
li...@steampowered.com
 


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

2020-11-09 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 9, 2020 @ 12:38:56
  Author: grazzolini
Revision: 746882

archrelease: copy trunk to community-x86_64

Added:
  sshfs/repos/community-x86_64/001-sshfs-3.3.0-meson.build.patch
(from rev 746881, sshfs/trunk/001-sshfs-3.3.0-meson.build.patch)
  sshfs/repos/community-x86_64/002-sshfs-3.3.0-sshfs.c.patch
(from rev 746881, sshfs/trunk/002-sshfs-3.3.0-sshfs.c.patch)
  sshfs/repos/community-x86_64/PKGBUILD
(from rev 746881, sshfs/trunk/PKGBUILD)
Deleted:
  sshfs/repos/community-x86_64/001-sshfs-3.3.0-meson.build.patch
  sshfs/repos/community-x86_64/002-sshfs-3.3.0-sshfs.c.patch
  sshfs/repos/community-x86_64/PKGBUILD

---+
 001-sshfs-3.3.0-meson.build.patch |   24 +--
 002-sshfs-3.3.0-sshfs.c.patch |   42 ++--
 PKGBUILD  |   74 ++--
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: 001-sshfs-3.3.0-meson.build.patch
===
--- 001-sshfs-3.3.0-meson.build.patch   2020-11-09 12:38:15 UTC (rev 746881)
+++ 001-sshfs-3.3.0-meson.build.patch   2020-11-09 12:38:56 UTC (rev 746882)
@@ -1,12 +0,0 @@
-diff -ura sshfs-3.3.0.orig/meson.build sshfs-3.3.0.new/meson.build
 sshfs-3.3.0.orig/meson.build   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/meson.build2017-09-25 11:19:19.946623793 -0300
-@@ -58,7 +58,7 @@
- if rst2man.found()
- custom_target('manpages', input: [ 'sshfs.rst' ], output: [ 'sshfs.1' ],
-   command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true,
--  install_dir: join_paths(get_option('mandir'), '1'))
-+  install_dir: join_paths(get_option('mandir'), 'man1'))
- else
- message('rst2man not found, not building manual page.')
- endif

Copied: sshfs/repos/community-x86_64/001-sshfs-3.3.0-meson.build.patch (from 
rev 746881, sshfs/trunk/001-sshfs-3.3.0-meson.build.patch)
===
--- 001-sshfs-3.3.0-meson.build.patch   (rev 0)
+++ 001-sshfs-3.3.0-meson.build.patch   2020-11-09 12:38:56 UTC (rev 746882)
@@ -0,0 +1,12 @@
+diff -ura sshfs-3.3.0.orig/meson.build sshfs-3.3.0.new/meson.build
+--- sshfs-3.3.0.orig/meson.build   2017-09-20 14:08:27.0 -0300
 sshfs-3.3.0.new/meson.build2017-09-25 11:19:19.946623793 -0300
+@@ -58,7 +58,7 @@
+ if rst2man.found()
+ custom_target('manpages', input: [ 'sshfs.rst' ], output: [ 'sshfs.1' ],
+   command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true,
+-  install_dir: join_paths(get_option('mandir'), '1'))
++  install_dir: join_paths(get_option('mandir'), 'man1'))
+ else
+ message('rst2man not found, not building manual page.')
+ endif

Deleted: 002-sshfs-3.3.0-sshfs.c.patch
===
--- 002-sshfs-3.3.0-sshfs.c.patch   2020-11-09 12:38:15 UTC (rev 746881)
+++ 002-sshfs-3.3.0-sshfs.c.patch   2020-11-09 12:38:56 UTC (rev 746882)
@@ -1,21 +0,0 @@
-diff -ura sshfs-3.3.0.orig/sshfs.c sshfs-3.3.0.new/sshfs.c
 sshfs-3.3.0.orig/sshfs.c   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/sshfs.c2017-10-01 23:04:23.048755162 -0300
-@@ -428,9 +428,15 @@
-   FUSE_OPT_KEY("writeback_cache=no", FUSE_OPT_KEY_DISCARD),
-   FUSE_OPT_KEY("unreliable_append", FUSE_OPT_KEY_DISCARD),
- 
--  
--  FUSE_OPT_END
-+  /* These may come in from /etc/fstab - we just ignore them */
-+  FUSE_OPT_KEY("auto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("noauto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("user", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("nouser", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("users", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("_netdev", FUSE_OPT_KEY_DISCARD),
- 
-+  FUSE_OPT_END
- };
- 
- static struct fuse_opt workaround_opts[] = {

Copied: sshfs/repos/community-x86_64/002-sshfs-3.3.0-sshfs.c.patch (from rev 
746881, sshfs/trunk/002-sshfs-3.3.0-sshfs.c.patch)
===
--- 002-sshfs-3.3.0-sshfs.c.patch   (rev 0)
+++ 002-sshfs-3.3.0-sshfs.c.patch   2020-11-09 12:38:56 UTC (rev 746882)
@@ -0,0 +1,21 @@
+diff -ura sshfs-3.3.0.orig/sshfs.c sshfs-3.3.0.new/sshfs.c
+--- sshfs-3.3.0.orig/sshfs.c   2017-09-20 14:08:27.0 -0300
 sshfs-3.3.0.new/sshfs.c2017-10-01 23:04:23.048755162 -0300
+@@ -428,9 +428,15 @@
+   FUSE_OPT_KEY("writeback_cache=no", FUSE_OPT_KEY_DISCARD),
+   FUSE_OPT_KEY("unreliable_append", FUSE_OPT_KEY_DISCARD),
+ 
+-  
+-  FUSE_OPT_END
++  /* These may come in from /etc/fstab - we just ignore them */
++  FUSE_OPT_KEY("auto", FUSE_OPT_KEY_DISCARD),
++  FUSE_OPT_KEY("noauto", FUSE_OPT_KEY_DISCARD),
++  FUSE_OPT_KEY("user", FUSE_OPT_KEY_DISCARD),
++  

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

2020-11-09 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 9, 2020 @ 12:38:15
  Author: grazzolini
Revision: 746881

upgpkg: sshfs 3.7.1-1

Modified:
  sshfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 12:38:11 UTC (rev 746880)
+++ PKGBUILD2020-11-09 12:38:15 UTC (rev 746881)
@@ -3,7 +3,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=sshfs
-pkgver=3.7.0
+pkgver=3.7.1
 pkgrel=1
 pkgdesc="FUSE client based on the SSH File Transfer Protocol"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=(fuse3 glib2 openssh)
 makedepends=('meson' 'python-docutils')
 
source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('6e7e86831f3066b356e7f16e22f1b8a8f177fda05146f6a5eb821c2fd0541c34'
+sha256sums=('fe5d3436d61b46974889e0c4515899c21a9d67851e3793c209989f72353d7750'
 'SKIP')
 validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

 


[arch-commits] Commit in dhcpcd/repos (7 files)

2020-11-03 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, November 3, 2020 @ 10:54:22
  Author: grazzolini
Revision: 399209

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 399208, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.install
(from rev 399208, dhcpcd/trunk/dhcpcd.install)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 399208, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 399208, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 399208, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 399208, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   77 ++
 dhcpcd.install  |7 
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |1 
 dhcpcd_.service |   15 ++
 6 files changed, 114 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 399208, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-03 10:54:22 UTC (rev 399209)
@@ -0,0 +1,77 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.3.2
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+install='dhcpcd.install'
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd.install
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('6d49af5e766a2515e6366e4f669663df04ecdf90a1a60ddb1d7a2feb4b5d2566'
+'d40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'
+'55d57b958f6b7e4d4a538ee88b0fcc1a522050c2d38efb5d680139f618234b35')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.install (from rev 399208, 
dhcpcd/trunk/dhcpcd.install)
===
--- testing-x86_64/dhcpcd.install   (rev 0)
+++ testing-x86_64/dhcpcd.install   2020-11-03 10:54:22 UTC (rev 399209)
@@ -0,0 +1,7 @@
+pre_upgrade() {
+if [ -d /var/lib/dhcpcd ]; then
+# match permissions with upstream
+chown root:root /var/lib/dhcpcd
+chmod 0750 /var/lib/dhcpcd
+fi
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 399208, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-11-03 10:54:22 UTC (rev 399209)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.sysusers (from rev 

[arch-commits] Commit in dhcpcd/trunk (PKGBUILD dhcpcd.install)

2020-11-03 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, November 3, 2020 @ 10:51:54
  Author: grazzolini
Revision: 399207

upgpkg: dhcpcd 9.3.2-1

Modified:
  dhcpcd/trunk/PKGBUILD
  dhcpcd/trunk/dhcpcd.install

+
 PKGBUILD   |6 +++---
 dhcpcd.install |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-03 10:51:45 UTC (rev 399206)
+++ PKGBUILD2020-11-03 10:51:54 UTC (rev 399207)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=9.3.1
+pkgver=9.3.2
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
@@ -23,8 +23,8 @@
 dhcpcd.sysusers
 dhcpcd.tmpfiles)
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('a0843233fdaecee971c38ceda53ad1450bb7b83aefbf1fa9642213224a9c415e'
-'8ff069a78f0b7e323fced311d653bc1d5dfb68dfc17f996c45cb4a7ee692ca69'
+sha256sums=('6d49af5e766a2515e6366e4f669663df04ecdf90a1a60ddb1d7a2feb4b5d2566'
+'d40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
 '37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
 '20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
 '06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'

Modified: dhcpcd.install
===
--- dhcpcd.install  2020-11-03 10:51:45 UTC (rev 399206)
+++ dhcpcd.install  2020-11-03 10:51:54 UTC (rev 399207)
@@ -1,5 +1,5 @@
 pre_upgrade() {
-if [ "$1" = "9.3.1-1" -a "$2" = "9.2.0-1" ]; then
+if [ -d /var/lib/dhcpcd ]; then
 # match permissions with upstream
 chown root:root /var/lib/dhcpcd
 chmod 0750 /var/lib/dhcpcd


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

2020-10-28 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, October 28, 2020 @ 17:00:59
  Author: grazzolini
Revision: 398971

upgpkg: mkinitcpio 29-1

Modified:
  mkinitcpio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-28 16:59:24 UTC (rev 398970)
+++ PKGBUILD2020-10-28 17:00:59 UTC (rev 398971)
@@ -3,7 +3,7 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=mkinitcpio
-pkgver=28
+pkgver=29
 pkgrel=1
 pkgdesc="Modular initramfs image creation utility"
 arch=('any')
@@ -20,11 +20,12 @@
 backup=('etc/mkinitcpio.conf')
 
source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
 install=mkinitcpio.install
-sha256sums=('bf83a158786d272d8046a4dd48bfcc343ec37de2cae0ae65c59132a45744808c'
+sha512sums=('cc03159f16ae12a0d1ebf6a1827f8cdaf73ad0910bf2b1b0f30b737b1cff472130eb41c3669c180291a9861c3c3167498d1f9d60cb9782aeb1ef1d0cd2156068'
 'SKIP')
-validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'   # Dave Reisner
-  '86CFFCA918CF3AF47147588051E8B148AC34'   # Evangelos Foutras
-  'ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB')  # Giancarlo 
Razzolini
+b2sums=('4303216cc3c020bf58491a18b13785660e08f418a333f5b975b29b1da4f6b4427f5bbda358018a34e6894217c6368fdf3fe73d361e770a4b6e40abb12ba2fd02'
+'SKIP')
+validpgpkeys=('ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB'# Giancarlo 
Razzolini
+  '86CFFCA918CF3AF47147588051E8B148AC34')   # Evangelos Foutras
 
 # prepare() {
 #   cd $pkgname-$pkgver


[arch-commits] Commit in mkinitcpio/repos (3 files)

2020-10-28 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, October 28, 2020 @ 17:01:32
  Author: grazzolini
Revision: 398972

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/
  mkinitcpio/repos/testing-any/PKGBUILD
(from rev 398971, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/testing-any/mkinitcpio.install
(from rev 398971, mkinitcpio/trunk/mkinitcpio.install)

+
 PKGBUILD   |   40 
 mkinitcpio.install |   15 +++
 2 files changed, 55 insertions(+)

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 398971, 
mkinitcpio/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-10-28 17:01:32 UTC (rev 398972)
@@ -0,0 +1,40 @@
+# Maintainer: Giancarlo Razzolini 
+# Maintainer: Dave Reisner 
+# Maintainer: Thomas Bächler 
+
+pkgname=mkinitcpio
+pkgver=29
+pkgrel=1
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url="https://projects.archlinux.org/mkinitcpio.git/;
+license=('GPL')
+depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod' 'util-linux>=2.23' 
'libarchive' 'coreutils'
+ 'bash' 'diffutils' 'findutils' 'grep' 'filesystem>=2011.10-1' 'gzip' 
'systemd')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'lz4: Use lz4 compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+provides=('initramfs')
+backup=('etc/mkinitcpio.conf')
+source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+install=mkinitcpio.install
+sha512sums=('cc03159f16ae12a0d1ebf6a1827f8cdaf73ad0910bf2b1b0f30b737b1cff472130eb41c3669c180291a9861c3c3167498d1f9d60cb9782aeb1ef1d0cd2156068'
+'SKIP')
+b2sums=('4303216cc3c020bf58491a18b13785660e08f418a333f5b975b29b1da4f6b4427f5bbda358018a34e6894217c6368fdf3fe73d361e770a4b6e40abb12ba2fd02'
+'SKIP')
+validpgpkeys=('ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB'# Giancarlo 
Razzolini
+  '86CFFCA918CF3AF47147588051E8B148AC34')   # Evangelos Foutras
+
+# prepare() {
+#   cd $pkgname-$pkgver
+# }
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}

Copied: mkinitcpio/repos/testing-any/mkinitcpio.install (from rev 398971, 
mkinitcpio/trunk/mkinitcpio.install)
===
--- testing-any/mkinitcpio.install  (rev 0)
+++ testing-any/mkinitcpio.install  2020-10-28 17:01:32 UTC (rev 398972)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+post_upgrade() {
+  if [ "$(vercmp 0.9.0 "$2")" -eq 1 ]; then
+printf '==> If your /usr is on a separate partition, you must add the 
"usr" hook\n'
+printf 'to /etc/mkinitcpio.conf and regenerate your images before 
rebooting\n'
+  fi
+
+  if [ "$(vercmp 0.12.0 "$2")" -eq 1 ]; then
+printf '==> The "block" hook has replaced several hooks:\n'
+printf '   fw, sata, pata, scsi, virtio, mmc, usb\n'
+printf 'Replace any and all of these in /etc/mkinitcpio.conf with a 
single\n'
+printf 'instance of the "block" hook\n'
+  fi
+}


[arch-commits] Commit in openssh/repos (9 files)

2020-10-26 Thread Giancarlo Razzolini via arch-commits
Date: Monday, October 26, 2020 @ 10:35:35
  Author: grazzolini
Revision: 398806

archrelease: copy trunk to testing-x86_64

Added:
  openssh/repos/testing-x86_64/
  
openssh/repos/testing-x86_64/0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch
(from rev 398805, 
openssh/trunk/0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch)
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 398805, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/glibc-2.31.patch
(from rev 398805, openssh/trunk/glibc-2.31.patch)
  openssh/repos/testing-x86_64/install
(from rev 398805, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 398805, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 398805, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 398805, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 398805, openssh/trunk/sshdgenkeys.service)

---+
 0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch |   33 +++
 PKGBUILD  |  111 
 glibc-2.31.patch  |  100 ++
 install   |   32 +++
 sshd.conf |1 
 sshd.pam  |6 
 sshd.service  |   14 +
 sshdgenkeys.service   |   15 +
 8 files changed, 312 insertions(+)

Copied: 
openssh/repos/testing-x86_64/0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch
 (from rev 398805, 
openssh/trunk/0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch)
===
--- testing-x86_64/0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch
(rev 0)
+++ testing-x86_64/0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch
2020-10-26 10:35:35 UTC (rev 398806)
@@ -0,0 +1,33 @@
+From d9e727dcc04a52caaac87543ea1d230e9e6b5604 Mon Sep 17 00:00:00 2001
+From: Oleg 
+Date: Thu, 1 Oct 2020 12:09:08 +0300
+Subject: [PATCH] Fix `EOF: command not found` error in ssh-copy-id
+
+---
+ contrib/ssh-copy-id | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
+index 392f64f9..a7690771 100644
+--- a/contrib/ssh-copy-id
 b/contrib/ssh-copy-id
+@@ -247,7 +247,7 @@ installkeys_sh() {
+   #the -z `tail ...` checks for a trailing newline. The echo adds one if 
was missing
+   #the cat adds the keys we're getting via STDIN
+   #and if available restorecon is used to restore the SELinux context
+-  INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF)
++  INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF
+   cd;
+   umask 077;
+   mkdir -p $(dirname "${AUTH_KEY_FILE}") &&
+@@ -258,6 +258,7 @@ installkeys_sh() {
+ restorecon -F .ssh ${AUTH_KEY_FILE};
+   fi
+ EOF
++  )
+ 
+   # to defend against quirky remote shells: use 'exec sh -c' to get POSIX;
+   printf "exec sh -c '%s'" "${INSTALLKEYS_SH}"
+-- 
+2.29.1
+

Copied: openssh/repos/testing-x86_64/PKGBUILD (from rev 398805, 
openssh/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-10-26 10:35:35 UTC (rev 398806)
@@ -0,0 +1,111 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=8.4p1
+pkgrel=2
+pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
+url='https://www.openssh.com/portable.html'
+license=('custom:BSD')
+arch=('x86_64')
+depends=('glibc' 'krb5' 'openssl' 'libedit' 'ldns' 'libxcrypt' 'libcrypt.so' 
'zlib' 'pam')
+makedepends=('linux-headers' 'libfido2')
+checkdepends=('inetutils')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X'
+'libfido2: FIDO/U2F support')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+#source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
+source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd.service'
+'sshd.conf'
+'sshd.pam'
+'glibc-2.31.patch'
+'0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch')
+sha256sums=('5a01d22e407eb1c05ba8a8f7c654d388a13e9f226e4ed33bd38748dafa1d2b24'
+'SKIP'
+'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
+'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
+

[arch-commits] Commit in openssh/trunk (2 files)

2020-10-26 Thread Giancarlo Razzolini via arch-commits
Date: Monday, October 26, 2020 @ 10:34:31
  Author: grazzolini
Revision: 398805

upgpkg: openssh 8.4p1-2

Fix for FS#68117

Added:
  openssh/trunk/0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch
Modified:
  openssh/trunk/PKGBUILD

---+
 0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch |   33 
 PKGBUILD  |   13 +++-
 2 files changed, 43 insertions(+), 3 deletions(-)

Added: 0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch
===
--- 0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch   
(rev 0)
+++ 0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch   2020-10-26 
10:34:31 UTC (rev 398805)
@@ -0,0 +1,33 @@
+From d9e727dcc04a52caaac87543ea1d230e9e6b5604 Mon Sep 17 00:00:00 2001
+From: Oleg 
+Date: Thu, 1 Oct 2020 12:09:08 +0300
+Subject: [PATCH] Fix `EOF: command not found` error in ssh-copy-id
+
+---
+ contrib/ssh-copy-id | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
+index 392f64f9..a7690771 100644
+--- a/contrib/ssh-copy-id
 b/contrib/ssh-copy-id
+@@ -247,7 +247,7 @@ installkeys_sh() {
+   #the -z `tail ...` checks for a trailing newline. The echo adds one if 
was missing
+   #the cat adds the keys we're getting via STDIN
+   #and if available restorecon is used to restore the SELinux context
+-  INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF)
++  INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF
+   cd;
+   umask 077;
+   mkdir -p $(dirname "${AUTH_KEY_FILE}") &&
+@@ -258,6 +258,7 @@ installkeys_sh() {
+ restorecon -F .ssh ${AUTH_KEY_FILE};
+   fi
+ EOF
++  )
+ 
+   # to defend against quirky remote shells: use 'exec sh -c' to get POSIX;
+   printf "exec sh -c '%s'" "${INSTALLKEYS_SH}"
+-- 
+2.29.1
+

Modified: PKGBUILD
===
--- PKGBUILD2020-10-26 09:11:42 UTC (rev 398804)
+++ PKGBUILD2020-10-26 10:34:31 UTC (rev 398805)
@@ -1,4 +1,5 @@
 # Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
 # Contributor: Gaetan Bisson 
 # Contributor: Aaron Griffin 
 # Contributor: judd 
@@ -5,7 +6,7 @@
 
 pkgname=openssh
 pkgver=8.4p1
-pkgrel=1
+pkgrel=2
 pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
 url='https://www.openssh.com/portable.html'
 license=('custom:BSD')
@@ -23,7 +24,8 @@
 'sshd.service'
 'sshd.conf'
 'sshd.pam'
-'glibc-2.31.patch')
+'glibc-2.31.patch'
+'0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch')
 sha256sums=('5a01d22e407eb1c05ba8a8f7c654d388a13e9f226e4ed33bd38748dafa1d2b24'
 'SKIP'
 '4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
@@ -30,7 +32,8 @@
 'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
 '4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
 '64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846'
-'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93')
+'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93'
+'a9093693586ea1150ac50249ce8937f86cde7977efa54a324e3f1155110aff49')
 
 backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
 
@@ -40,6 +43,10 @@
cd "${srcdir}/${pkgname}-${pkgver}"
 
patch -p1 -i ../glibc-2.31.patch
+
+# Fix `EOF: command not found` error in ssh-copy-id
+patch -p1 -i 
../0001-Fix-EOF-command-not-found-error-in-ssh-copy-id.patch
+
autoreconf
 }
 


[arch-commits] Commit in dhcpcd/repos (7 files)

2020-10-23 Thread Giancarlo Razzolini via arch-commits
Date: Friday, October 23, 2020 @ 11:57:08
  Author: grazzolini
Revision: 398752

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 398751, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.install
(from rev 398751, dhcpcd/trunk/dhcpcd.install)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 398751, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 398751, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 398751, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 398751, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   77 ++
 dhcpcd.install  |7 
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |1 
 dhcpcd_.service |   15 ++
 6 files changed, 114 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 398751, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-10-23 11:57:08 UTC (rev 398752)
@@ -0,0 +1,77 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.3.1
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+install='dhcpcd.install'
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd.install
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('a0843233fdaecee971c38ceda53ad1450bb7b83aefbf1fa9642213224a9c415e'
+'8ff069a78f0b7e323fced311d653bc1d5dfb68dfc17f996c45cb4a7ee692ca69'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'
+'55d57b958f6b7e4d4a538ee88b0fcc1a522050c2d38efb5d680139f618234b35')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.install (from rev 398751, 
dhcpcd/trunk/dhcpcd.install)
===
--- testing-x86_64/dhcpcd.install   (rev 0)
+++ testing-x86_64/dhcpcd.install   2020-10-23 11:57:08 UTC (rev 398752)
@@ -0,0 +1,7 @@
+pre_upgrade() {
+if [ "$1" = "9.3.1-1" -a "$2" = "9.2.0-1" ]; then
+# match permissions with upstream
+chown root:root /var/lib/dhcpcd
+chmod 0750 /var/lib/dhcpcd
+fi
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 398751, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-10-23 11:57:08 UTC (rev 398752)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: 

[arch-commits] Commit in dhcpcd/trunk (4 files)

2020-10-23 Thread Giancarlo Razzolini via arch-commits
Date: Friday, October 23, 2020 @ 11:56:15
  Author: grazzolini
Revision: 398751

upgpkg: dhcpcd 9.3.1-1

Fix for FS#67844 implemented by using the dhcpcd.install file.
This should be removed on an upcoming release.

Added:
  dhcpcd/trunk/dhcpcd.install
Modified:
  dhcpcd/trunk/PKGBUILD
  dhcpcd/trunk/dhcpcd.sysusers
  dhcpcd/trunk/dhcpcd.tmpfiles

-+
 PKGBUILD|   11 +++
 dhcpcd.install  |7 +++
 dhcpcd.sysusers |2 +-
 dhcpcd.tmpfiles |3 +--
 4 files changed, 16 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-23 08:32:29 UTC (rev 398750)
+++ PKGBUILD2020-10-23 11:56:15 UTC (rev 398751)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=9.2.0
+pkgver=9.3.1
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
@@ -14,18 +14,21 @@
 optdepends=('openresolv: resolvconf support')
 provides=('dhcp-client')
 backup=('etc/dhcpcd.conf')
+install='dhcpcd.install'
 options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
 source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd.install
 dhcpcd_.service
 dhcpcd.service
 dhcpcd.sysusers
 dhcpcd.tmpfiles)
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('fcb2d19672d445bbfd38678fdee4f556ef967a3ea6bd81092d10545df2cb9666'
+sha256sums=('a0843233fdaecee971c38ceda53ad1450bb7b83aefbf1fa9642213224a9c415e'
+'8ff069a78f0b7e323fced311d653bc1d5dfb68dfc17f996c45cb4a7ee692ca69'
 '37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
 '20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
-'df33c69a79fb30895217db8fe6a46ad0658a70b32a280bc91fc04a09b584fa62'
-'e0cef3b7cbe047393e4ecb60369f67d2d73e616b56cea9401070f2aff28a7434')
+'06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'
+'55d57b958f6b7e4d4a538ee88b0fcc1a522050c2d38efb5d680139f618234b35')
 # prepare () {
 #   cd ${pkgname}-${pkgver}
 # }

Added: dhcpcd.install
===
--- dhcpcd.install  (rev 0)
+++ dhcpcd.install  2020-10-23 11:56:15 UTC (rev 398751)
@@ -0,0 +1,7 @@
+pre_upgrade() {
+if [ "$1" = "9.3.1-1" -a "$2" = "9.2.0-1" ]; then
+# match permissions with upstream
+chown root:root /var/lib/dhcpcd
+chmod 0750 /var/lib/dhcpcd
+fi
+}

Modified: dhcpcd.sysusers
===
--- dhcpcd.sysusers 2020-10-23 08:32:29 UTC (rev 398750)
+++ dhcpcd.sysusers 2020-10-23 11:56:15 UTC (rev 398751)
@@ -1 +1 @@
-u dhcpcd - "dhcpcd privilege separation" /var/lib/dhcpcd
+u dhcpcd - "dhcpcd privilege separation" -

Modified: dhcpcd.tmpfiles
===
--- dhcpcd.tmpfiles 2020-10-23 08:32:29 UTC (rev 398750)
+++ dhcpcd.tmpfiles 2020-10-23 11:56:15 UTC (rev 398751)
@@ -1,2 +1 @@
-d /var/lib/dhcpcd 0700 dhcpcd dhcpcd -
-d /run/dhcpcd 0755 dhcpcd dhcpcd -
+d /run/dhcpcd 0755 root root -


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

2020-10-23 Thread Giancarlo Razzolini via arch-commits
Date: Friday, October 23, 2020 @ 11:41:34
  Author: grazzolini
Revision: 730653

archrelease: copy trunk to community-any

Added:
  streamlink/repos/community-any/PKGBUILD
(from rev 730652, streamlink/trunk/PKGBUILD)
Deleted:
  streamlink/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-23 11:40:59 UTC (rev 730652)
+++ PKGBUILD2020-10-23 11:41:34 UTC (rev 730653)
@@ -1,41 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Josip Ponjavic 
-
-pkgname=streamlink
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
-arch=('any')
-url='https://streamlink.github.io/'
-license=('BSD')
-depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
-checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
-makedepends=("python-"{recommonmark,setuptools,sphinx})
-optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('f7857a54ec55e32d6e90ebd770c9d5d1318791d8ecd8270e104a8b1968a308ab'
-'SKIP')
-sha512sums=('46f5c37e9334cb35ccd1c6451e21f547ce0ad20a4ff31ce66bbeac7f126ce69091bfb45a753c359d7adc2a8703a424ba54aeedd76c2506834993496c36c46695'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export STREAMLINK_USE_PYCOUNTRY="true"
-  python setup.py build
-  python setup.py build_sphinx -b man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  export PYTHONHASSEED=0
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 build/sphinx/man/streamlink.1 \
-"$pkgdir/usr/share/man/man1/streamlink.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: streamlink/repos/community-any/PKGBUILD (from rev 730652, 
streamlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-23 11:41:34 UTC (rev 730653)
@@ -0,0 +1,41 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Josip Ponjavic 
+
+pkgname=streamlink
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
+arch=('any')
+url='https://streamlink.github.io/'
+license=('BSD')
+depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
+checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
+makedepends=("python-"{recommonmark,setuptools,sphinx})
+optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
+sha256sums=('f87a62a47212d94769929bd040d9c186b461643bdbda06f839b99ec9efefb87a'
+'SKIP')
+sha512sums=('2921905290488b7ad955bda5921a7725fdc0984f5084f833779bae19188d370d2bad08e3ff9714254e0595e3cf1f6244ecfa145ddf94458211048335840d82c5'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export STREAMLINK_USE_PYCOUNTRY="true"
+  python setup.py build
+  python setup.py build_sphinx -b man
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  export PYTHONHASSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 build/sphinx/man/streamlink.1 \
+"$pkgdir/usr/share/man/man1/streamlink.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-10-23 Thread Giancarlo Razzolini via arch-commits
Date: Friday, October 23, 2020 @ 11:40:59
  Author: grazzolini
Revision: 730652

upgpkg: streamlink 1.7.0-1

Modified:
  streamlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-23 10:01:55 UTC (rev 730651)
+++ PKGBUILD2020-10-23 11:40:59 UTC (rev 730652)
@@ -2,7 +2,7 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=streamlink
-pkgver=1.6.0
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
 arch=('any')
@@ -14,9 +14,9 @@
 optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
 
source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('f7857a54ec55e32d6e90ebd770c9d5d1318791d8ecd8270e104a8b1968a308ab'
+sha256sums=('f87a62a47212d94769929bd040d9c186b461643bdbda06f839b99ec9efefb87a'
 'SKIP')
-sha512sums=('46f5c37e9334cb35ccd1c6451e21f547ce0ad20a4ff31ce66bbeac7f126ce69091bfb45a753c359d7adc2a8703a424ba54aeedd76c2506834993496c36c46695'
+sha512sums=('2921905290488b7ad955bda5921a7725fdc0984f5084f833779bae19188d370d2bad08e3ff9714254e0595e3cf1f6244ecfa145ddf94458211048335840d82c5'
 'SKIP')
 
 build() {


[arch-commits] Commit in openssh/repos/testing-x86_64 (16 files)

2020-10-02 Thread Giancarlo Razzolini via arch-commits
Date: Friday, October 2, 2020 @ 16:42:07
  Author: grazzolini
Revision: 397082

archrelease: copy trunk to testing-x86_64

Added:
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 397081, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/glibc-2.31.patch
(from rev 397081, openssh/trunk/glibc-2.31.patch)
  openssh/repos/testing-x86_64/install
(from rev 397081, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 397081, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 397081, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 397081, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 397081, openssh/trunk/sshdgenkeys.service)
Deleted:
  openssh/repos/testing-x86_64/3122.patch
  openssh/repos/testing-x86_64/67290.patch
  openssh/repos/testing-x86_64/PKGBUILD
  openssh/repos/testing-x86_64/glibc-2.31.patch
  openssh/repos/testing-x86_64/install
  openssh/repos/testing-x86_64/sshd.conf
  openssh/repos/testing-x86_64/sshd.pam
  openssh/repos/testing-x86_64/sshd.service
  openssh/repos/testing-x86_64/sshdgenkeys.service

-+
 3122.patch  |   98 --
 67290.patch |   49 ---
 PKGBUILD|  220 +++---
 glibc-2.31.patch|  200 ++---
 install |   64 +++---
 sshd.conf   |2 
 sshd.pam|   12 +-
 sshd.service|   28 +++---
 sshdgenkeys.service |   30 +++---
 9 files changed, 272 insertions(+), 431 deletions(-)

Deleted: 3122.patch
===
--- 3122.patch  2020-10-02 16:41:02 UTC (rev 397081)
+++ 3122.patch  2020-10-02 16:42:07 UTC (rev 397082)
@@ -1,98 +0,0 @@
-diff -Naur old/servconf.c new/servconf.c
 old/servconf.c 2020-05-26 14:38:00.0 -1000
-+++ new/servconf.c 2020-07-16 10:14:14.076284901 -1000
-@@ -550,6 +550,7 @@
- #define SSHCFG_MATCH  0x02/* allowed inside a Match section */
- #define SSHCFG_ALL(SSHCFG_GLOBAL|SSHCFG_MATCH)
- #define SSHCFG_NEVERMATCH 0x04  /* Match never matches; internal only */
-+#define SSHCFG_MATCH_ONLY 0x08  /* Match only in conditional blocks; 
internal only */
- 
- /* Textual representation of the tokens. */
- static struct {
-@@ -1259,7 +1260,7 @@
- static int
- process_server_config_line_depth(ServerOptions *options, char *line,
- const char *filename, int linenum, int *activep,
--struct connection_info *connectinfo, int inc_flags, int depth,
-+struct connection_info *connectinfo, int *inc_flags, int depth,
- struct include_list *includes)
- {
-   char ch, *cp, ***chararrayptr, **charptr, *arg, *arg2, *p;
-@@ -2002,7 +2003,9 @@
-   parse_server_config_depth(options,
-   item->filename, item->contents,
-   includes, connectinfo,
--  (oactive ? 0 : SSHCFG_NEVERMATCH),
-+  (*inc_flags & SSHCFG_MATCH_ONLY
-+  ? SSHCFG_MATCH_ONLY : (oactive
-+  ? 0 : SSHCFG_NEVERMATCH)),
-   activep, depth + 1);
-   }
-   found = 1;
-@@ -2050,7 +2053,9 @@
-   parse_server_config_depth(options,
-   item->filename, item->contents,
-   includes, connectinfo,
--  (oactive ? 0 : SSHCFG_NEVERMATCH),
-+  (*inc_flags & SSHCFG_MATCH_ONLY
-+  ? SSHCFG_MATCH_ONLY : (oactive
-+  ? 0 : SSHCFG_NEVERMATCH)),
-   activep, depth + 1);
-   *activep = oactive;
-   TAILQ_INSERT_TAIL(includes, item, entry);
-@@ -2068,11 +2073,14 @@
-   if (cmdline)
-   fatal("Match directive not supported as a command-line "
-  "option");
--  value = match_cfg_line(, linenum, connectinfo);
-+  value = match_cfg_line(, linenum,
-+  (*inc_flags & SSHCFG_NEVERMATCH ? NULL : connectinfo));
-   if (value < 0)
-   fatal("%s line %d: Bad Match condition", filename,
-   linenum);
--  *activep = (inc_flags & SSHCFG_NEVERMATCH) ? 0 : value;
-+  *activep = (*inc_flags & SSHCFG_NEVERMATCH) ? 0 : value;
-+  /* The MATCH_ONLY is applicable only until the first match 
block */
-+  *inc_flags &= 

[arch-commits] Commit in openssh/trunk (3122.patch 67290.patch PKGBUILD)

2020-10-02 Thread Giancarlo Razzolini via arch-commits
Date: Friday, October 2, 2020 @ 16:41:02
  Author: grazzolini
Revision: 397081

upgpkg: openssh 8.4p1-1

New upstream release

Modified:
  openssh/trunk/PKGBUILD
Deleted:
  openssh/trunk/3122.patch
  openssh/trunk/67290.patch

-+
 3122.patch  |   98 --
 67290.patch |   49 -
 PKGBUILD|   18 +-
 3 files changed, 3 insertions(+), 162 deletions(-)

Deleted: 3122.patch
===
--- 3122.patch  2020-10-02 16:29:40 UTC (rev 397080)
+++ 3122.patch  2020-10-02 16:41:02 UTC (rev 397081)
@@ -1,98 +0,0 @@
-diff -Naur old/servconf.c new/servconf.c
 old/servconf.c 2020-05-26 14:38:00.0 -1000
-+++ new/servconf.c 2020-07-16 10:14:14.076284901 -1000
-@@ -550,6 +550,7 @@
- #define SSHCFG_MATCH  0x02/* allowed inside a Match section */
- #define SSHCFG_ALL(SSHCFG_GLOBAL|SSHCFG_MATCH)
- #define SSHCFG_NEVERMATCH 0x04  /* Match never matches; internal only */
-+#define SSHCFG_MATCH_ONLY 0x08  /* Match only in conditional blocks; 
internal only */
- 
- /* Textual representation of the tokens. */
- static struct {
-@@ -1259,7 +1260,7 @@
- static int
- process_server_config_line_depth(ServerOptions *options, char *line,
- const char *filename, int linenum, int *activep,
--struct connection_info *connectinfo, int inc_flags, int depth,
-+struct connection_info *connectinfo, int *inc_flags, int depth,
- struct include_list *includes)
- {
-   char ch, *cp, ***chararrayptr, **charptr, *arg, *arg2, *p;
-@@ -2002,7 +2003,9 @@
-   parse_server_config_depth(options,
-   item->filename, item->contents,
-   includes, connectinfo,
--  (oactive ? 0 : SSHCFG_NEVERMATCH),
-+  (*inc_flags & SSHCFG_MATCH_ONLY
-+  ? SSHCFG_MATCH_ONLY : (oactive
-+  ? 0 : SSHCFG_NEVERMATCH)),
-   activep, depth + 1);
-   }
-   found = 1;
-@@ -2050,7 +2053,9 @@
-   parse_server_config_depth(options,
-   item->filename, item->contents,
-   includes, connectinfo,
--  (oactive ? 0 : SSHCFG_NEVERMATCH),
-+  (*inc_flags & SSHCFG_MATCH_ONLY
-+  ? SSHCFG_MATCH_ONLY : (oactive
-+  ? 0 : SSHCFG_NEVERMATCH)),
-   activep, depth + 1);
-   *activep = oactive;
-   TAILQ_INSERT_TAIL(includes, item, entry);
-@@ -2068,11 +2073,14 @@
-   if (cmdline)
-   fatal("Match directive not supported as a command-line "
-  "option");
--  value = match_cfg_line(, linenum, connectinfo);
-+  value = match_cfg_line(, linenum,
-+  (*inc_flags & SSHCFG_NEVERMATCH ? NULL : connectinfo));
-   if (value < 0)
-   fatal("%s line %d: Bad Match condition", filename,
-   linenum);
--  *activep = (inc_flags & SSHCFG_NEVERMATCH) ? 0 : value;
-+  *activep = (*inc_flags & SSHCFG_NEVERMATCH) ? 0 : value;
-+  /* The MATCH_ONLY is applicable only until the first match 
block */
-+  *inc_flags &= ~SSHCFG_MATCH_ONLY;
-   break;
- 
-   case sPermitListen:
-@@ -2375,8 +2383,10 @@
- const char *filename, int linenum, int *activep,
- struct connection_info *connectinfo, struct include_list *includes)
- {
-+  int inc_flags = 0;
-+
-   return process_server_config_line_depth(options, line, filename,
--  linenum, activep, connectinfo, 0, 0, includes);
-+  linenum, activep, connectinfo, _flags, 0, includes);
- }
- 
- 
-@@ -2581,14 +2591,15 @@
-   if (depth < 0 || depth > SERVCONF_MAX_DEPTH)
-   fatal("Too many recursive configuration includes");
- 
--  debug2("%s: config %s len %zu", __func__, filename, sshbuf_len(conf));
-+  debug2("%s: config %s len %zu%s", __func__, filename, sshbuf_len(conf),
-+  (flags & SSHCFG_NEVERMATCH ? " [checking syntax only]" : ""));
- 
-   if ((obuf = cbuf = sshbuf_dup_string(conf)) == NULL)
-   fatal("%s: sshbuf_dup_string failed", __func__);
-   linenum = 1;
-   while ((cp = strsep(, "\n")) != NULL) {
-   if (process_server_config_line_depth(options, cp,
--  filename, linenum++, activep, connectinfo, flags,
-+  filename, 

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

2020-09-29 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, September 29, 2020 @ 17:46:06
  Author: grazzolini
Revision: 713733

archrelease: copy trunk to community-x86_64

Added:
  nginx-mainline/repos/community-x86_64/PKGBUILD
(from rev 713732, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/community-x86_64/logrotate
(from rev 713732, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/community-x86_64/nginx.install
(from rev 713732, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/community-x86_64/service
(from rev 713732, nginx-mainline/trunk/service)
Deleted:
  nginx-mainline/repos/community-x86_64/PKGBUILD
  nginx-mainline/repos/community-x86_64/logrotate
  nginx-mainline/repos/community-x86_64/nginx.install
  nginx-mainline/repos/community-x86_64/service

---+
 PKGBUILD  |  264 
 logrotate |   20 ++--
 nginx.install |   24 ++---
 service   |   34 +++
 4 files changed, 171 insertions(+), 171 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-29 17:45:16 UTC (rev 713732)
+++ PKGBUILD2020-09-29 17:46:06 UTC (rev 713733)
@@ -1,132 +0,0 @@
-# Maintainer:  Giancarlo Razzolini 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Sébastien Luttringer
-# Contributor: Drew DeVault
-
-pkgname=nginx-mainline
-pkgver=1.19.2
-pkgrel=2
-pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
-arch=('x86_64')
-url='https://nginx.org'
-license=('custom')
-depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap' 'libxcrypt')
-backup=('etc/nginx/fastcgi.conf'
-'etc/nginx/fastcgi_params'
-'etc/nginx/koi-win'
-'etc/nginx/koi-utf'
-'etc/nginx/nginx.conf'
-'etc/nginx/scgi_params'
-'etc/nginx/uwsgi_params'
-'etc/nginx/win-utf'
-'etc/logrotate.d/nginx')
-install=nginx.install
-provides=('nginx')
-conflicts=('nginx')
-source=($url/download/nginx-$pkgver.tar.gz{,.asc}
-service
-logrotate)
-validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('3dc55f6451ed6f819f1c796f4e5e9617'
- 'SKIP'
- 'ef491e760e7c1ffec9ca25441a150c83'
- '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('f6232d58a91db486cf36cc027ab84f04ad25aeafe586051043f0f3295dad5f475094f7cedad142ef0f56ff15a0971d700d6ec34b68697c462364650c49be8fcc'
-'SKIP'
-
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
-
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
-
-_common_flags=(
-  --with-compat
-  --with-debug
-  --with-file-aio
-  --with-http_addition_module
-  --with-http_auth_request_module
-  --with-http_dav_module
-  --with-http_degradation_module
-  --with-http_flv_module
-  --with-http_geoip_module
-  --with-http_gunzip_module
-  --with-http_gzip_static_module
-  --with-http_mp4_module
-  --with-http_realip_module
-  --with-http_secure_link_module
-  --with-http_slice_module
-  --with-http_ssl_module
-  --with-http_stub_status_module
-  --with-http_sub_module
-  --with-http_v2_module
-  --with-mail
-  --with-mail_ssl_module
-  --with-pcre-jit
-  --with-stream
-  --with-stream_geoip_module
-  --with-stream_realip_module
-  --with-stream_ssl_module
-  --with-stream_ssl_preread_module
-  --with-threads
-)
-
-_mainline_flags=(
-)
-
-build() {
-  cd $provides-$pkgver
-  ./configure \
---prefix=/etc/nginx \
---conf-path=/etc/nginx/nginx.conf \
---sbin-path=/usr/bin/nginx \
---pid-path=/run/nginx.pid \
---lock-path=/run/lock/nginx.lock \
---user=http \
---group=http \
---http-log-path=/var/log/nginx/access.log \
---error-log-path=stderr \
---http-client-body-temp-path=/var/lib/nginx/client-body \
---http-proxy-temp-path=/var/lib/nginx/proxy \
---http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
---http-scgi-temp-path=/var/lib/nginx/scgi \
---http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
---with-cc-opt="$CFLAGS $CPPFLAGS" \
---with-ld-opt="$LDFLAGS" \
-${_common_flags[@]} \
-${_mainline_flags[@]}
-
-  make
-}
-
-package() {
-  cd $provides-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
-
-  for i in ftdetect indent syntax; do
-install -Dm644 contrib/vim/$i/nginx.vim \
-  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
-  done
-}

Copied: nginx-mainline/repos/community-x86_64/PKGBUILD (from rev 713732, 
nginx-mainline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-29 17:46:06 UTC (rev 713733)
@@ -0,0 +1,132 @@
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew 

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

2020-09-29 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, September 29, 2020 @ 17:45:16
  Author: grazzolini
Revision: 713732

upgpkg: nginx-mainline 1.19.3-1

Modified:
  nginx-mainline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-29 17:26:36 UTC (rev 713731)
+++ PKGBUILD2020-09-29 17:45:16 UTC (rev 713732)
@@ -4,8 +4,8 @@
 # Contributor: Drew DeVault
 
 pkgname=nginx-mainline
-pkgver=1.19.2
-pkgrel=2
+pkgver=1.19.3
+pkgrel=1
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('x86_64')
 url='https://nginx.org'
@@ -27,11 +27,11 @@
 service
 logrotate)
 validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('3dc55f6451ed6f819f1c796f4e5e9617'
+md5sums=('f48ae6476f60028ca245d69101dd0726'
  'SKIP'
  'ef491e760e7c1ffec9ca25441a150c83'
  '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('f6232d58a91db486cf36cc027ab84f04ad25aeafe586051043f0f3295dad5f475094f7cedad142ef0f56ff15a0971d700d6ec34b68697c462364650c49be8fcc'
+sha512sums=('337fbbb562d1577a2a219bd132c82098a06a49f1ce40ced905fdf255238c4f70dd1f889ec8ae971a4fe5e753f98a356cadc9c766bc089f817d711b12143efcc8'
 'SKIP'
 
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
 
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')


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

2020-09-22 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, September 23, 2020 @ 04:15:04
  Author: grazzolini
Revision: 711431

archrelease: copy trunk to community-any

Added:
  streamlink/repos/community-any/PKGBUILD
(from rev 711430, streamlink/trunk/PKGBUILD)
Deleted:
  streamlink/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-23 04:14:13 UTC (rev 711430)
+++ PKGBUILD2020-09-23 04:15:04 UTC (rev 711431)
@@ -1,41 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Josip Ponjavic 
-
-pkgname=streamlink
-pkgver=1.5.0
-pkgrel=2
-pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
-arch=('any')
-url='https://streamlink.github.io/'
-license=('BSD')
-depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
-checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
-makedepends=("python-"{recommonmark,setuptools,sphinx})
-optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('203f3e2ac724b5964f8abffa9d1e769453702294e3d03b6877c6eb49f96fc11f'
-'SKIP')
-sha512sums=('6b54ec5d9234c1657fad711a61160ca883df409eb1e54cbe7e4a72a2eca36590ab73916ea88162f8fcf057345ae9f5e55c6591ff11088be0c2c3168ad905d458'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export STREAMLINK_USE_PYCOUNTRY="true"
-  python setup.py build
-  python setup.py build_sphinx -b man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  export PYTHONHASSEED=0
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 build/sphinx/man/streamlink.1 \
-"$pkgdir/usr/share/man/man1/streamlink.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: streamlink/repos/community-any/PKGBUILD (from rev 711430, 
streamlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-23 04:15:04 UTC (rev 711431)
@@ -0,0 +1,41 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Josip Ponjavic 
+
+pkgname=streamlink
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
+arch=('any')
+url='https://streamlink.github.io/'
+license=('BSD')
+depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
+checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
+makedepends=("python-"{recommonmark,setuptools,sphinx})
+optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
+sha256sums=('f7857a54ec55e32d6e90ebd770c9d5d1318791d8ecd8270e104a8b1968a308ab'
+'SKIP')
+sha512sums=('46f5c37e9334cb35ccd1c6451e21f547ce0ad20a4ff31ce66bbeac7f126ce69091bfb45a753c359d7adc2a8703a424ba54aeedd76c2506834993496c36c46695'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export STREAMLINK_USE_PYCOUNTRY="true"
+  python setup.py build
+  python setup.py build_sphinx -b man
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  export PYTHONHASSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 build/sphinx/man/streamlink.1 \
+"$pkgdir/usr/share/man/man1/streamlink.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-09-22 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, September 23, 2020 @ 04:14:13
  Author: grazzolini
Revision: 711430

upgpkg: streamlink 1.6.0-1

Modified:
  streamlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-23 01:08:09 UTC (rev 711429)
+++ PKGBUILD2020-09-23 04:14:13 UTC (rev 711430)
@@ -2,8 +2,8 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=streamlink
-pkgver=1.5.0
-pkgrel=2
+pkgver=1.6.0
+pkgrel=1
 pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
 arch=('any')
 url='https://streamlink.github.io/'
@@ -14,9 +14,9 @@
 optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
 
source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('203f3e2ac724b5964f8abffa9d1e769453702294e3d03b6877c6eb49f96fc11f'
+sha256sums=('f7857a54ec55e32d6e90ebd770c9d5d1318791d8ecd8270e104a8b1968a308ab'
 'SKIP')
-sha512sums=('6b54ec5d9234c1657fad711a61160ca883df409eb1e54cbe7e4a72a2eca36590ab73916ea88162f8fcf057345ae9f5e55c6591ff11088be0c2c3168ad905d458'
+sha512sums=('46f5c37e9334cb35ccd1c6451e21f547ce0ad20a4ff31ce66bbeac7f126ce69091bfb45a753c359d7adc2a8703a424ba54aeedd76c2506834993496c36c46695'
 'SKIP')
 
 build() {


[arch-commits] Commit in nuget/repos/extra-any (8 files)

2020-09-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, September 22, 2020 @ 18:12:06
  Author: grazzolini
Revision: 396427

archrelease: copy trunk to extra-any

Added:
  nuget/repos/extra-any/PKGBUILD
(from rev 396426, nuget/trunk/PKGBUILD)
  nuget/repos/extra-any/nuget
(from rev 396426, nuget/trunk/nuget)
  nuget/repos/extra-any/nuget.install
(from rev 396426, nuget/trunk/nuget.install)
  nuget/repos/extra-any/nuget.pc
(from rev 396426, nuget/trunk/nuget.pc)
Deleted:
  nuget/repos/extra-any/PKGBUILD
  nuget/repos/extra-any/nuget
  nuget/repos/extra-any/nuget.install
  nuget/repos/extra-any/nuget.pc

---+
 PKGBUILD  |   58 
 nuget |4 +--
 nuget.install |   20 +--
 nuget.pc  |   20 +--
 4 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 18:11:18 UTC (rev 396426)
+++ PKGBUILD2020-09-22 18:12:06 UTC (rev 396427)
@@ -1,29 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Daniel Isenmann 
-# Contributor: wenLiangcan 
-
-pkgname=nuget
-pkgver=5.6.0
-pkgrel=1
-pkgdesc="Package manager for .NET."
-arch=('any')
-url="https://www.nuget.org;
-license=('APACHE')
-depends=('mono' 'sh')
-source=("https://dist.nuget.org/win-x86-commandline/v${pkgver}/nuget.exe;
-"${pkgname}"
-"${pkgname}.pc")
-install="${pkgname}.install"
-md5sums=('3f8a53a524c54cf2e4efb7aea370a977'
- 'ec321eaa807564b85aacfafb227f7f55'
- 'ffb7d95fb39f72c9619c72db91ec36a0')
-sha512sums=('a4be44f8a9f4868a91c1f0336fae598b4d3dc3f1eecac1a8e0c9dd81d8adc100ca127b40449b01d0ad7f52074d3c83a9d19d5356a776f95f88f41d1f0b297bf5'
-
'd19b4f7683aeb2891397060c6ed0fabe9083726268825d5338a7a95ef5d7aaa66db41226ae3a3f26eecbbeea4cdee0bdeeedf61e7fc5017a568ebe2753e2ada6'
-
'50f77fdfc089afc516325057e2e4efdea353c09626073fb07457acf728268ac5e131e785d394b70c9db0ca6ae96e425d882cdf2b2b013c864dc91c32b85e508f')
-
-package() {
-install -Dm 0644 ${srcdir}/nuget.pc ${pkgdir}/usr/lib/pkgconfig/nuget.pc
-
-install -Dm 0644 ${srcdir}/nuget.exe ${pkgdir}/usr/lib/nuget/nuget.exe
-install -Dm 0755 ${srcdir}/nuget ${pkgdir}/usr/bin/nuget
-}

Copied: nuget/repos/extra-any/PKGBUILD (from rev 396426, nuget/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-22 18:12:06 UTC (rev 396427)
@@ -0,0 +1,29 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Daniel Isenmann 
+# Contributor: wenLiangcan 
+
+pkgname=nuget
+pkgver=5.7.0
+pkgrel=1
+pkgdesc="Package manager for .NET."
+arch=('any')
+url="https://www.nuget.org;
+license=('APACHE')
+depends=('mono' 'sh')
+source=("https://dist.nuget.org/win-x86-commandline/v${pkgver}/nuget.exe;
+"${pkgname}"
+"${pkgname}.pc")
+install="${pkgname}.install"
+md5sums=('e7e9719ff447d78c397b8b0f94a337e0'
+ 'ec321eaa807564b85aacfafb227f7f55'
+ 'ffb7d95fb39f72c9619c72db91ec36a0')
+sha512sums=('50da646fe56e62341780b97b4275424185bf05633763e50ec8ba58f0349e4a696422fcc978dfcb5d11e822f9da954470a2eeecec12fb6b27a044b12e538089f8'
+
'd19b4f7683aeb2891397060c6ed0fabe9083726268825d5338a7a95ef5d7aaa66db41226ae3a3f26eecbbeea4cdee0bdeeedf61e7fc5017a568ebe2753e2ada6'
+
'50f77fdfc089afc516325057e2e4efdea353c09626073fb07457acf728268ac5e131e785d394b70c9db0ca6ae96e425d882cdf2b2b013c864dc91c32b85e508f')
+
+package() {
+install -Dm 0644 ${srcdir}/nuget.pc ${pkgdir}/usr/lib/pkgconfig/nuget.pc
+
+install -Dm 0644 ${srcdir}/nuget.exe ${pkgdir}/usr/lib/nuget/nuget.exe
+install -Dm 0755 ${srcdir}/nuget ${pkgdir}/usr/bin/nuget
+}

Deleted: nuget
===
--- nuget   2020-09-22 18:11:18 UTC (rev 396426)
+++ nuget   2020-09-22 18:12:06 UTC (rev 396427)
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec mono $MONO_OPTIONS /usr/lib/nuget/nuget.exe "$@"

Copied: nuget/repos/extra-any/nuget (from rev 396426, nuget/trunk/nuget)
===
--- nuget   (rev 0)
+++ nuget   2020-09-22 18:12:06 UTC (rev 396427)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec mono $MONO_OPTIONS /usr/lib/nuget/nuget.exe "$@"

Deleted: nuget.install
===
--- nuget.install   2020-09-22 18:11:18 UTC (rev 396426)
+++ nuget.install   2020-09-22 18:12:06 UTC (rev 396427)
@@ -1,10 +0,0 @@
-post_install() {
-post_upgrade
-}
-
-post_upgrade() {
-mozroots --import --machine --sync
-yes | certmgr -ssl -m https://go.microsoft.com
-yes | certmgr -ssl -m https://nugetgallery.blob.core.windows.net
-yes | certmgr -ssl -m https://nuget.org
-}

Copied: nuget/repos/extra-any/nuget.install (from rev 396426, 
nuget/trunk/nuget.install)

[arch-commits] Commit in nuget/trunk (PKGBUILD nuget.install)

2020-09-22 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, September 22, 2020 @ 18:11:18
  Author: grazzolini
Revision: 396426

upgpkg: nuget 5.7.0-1

New version, also fix for FS#67523

Modified:
  nuget/trunk/PKGBUILD
  nuget/trunk/nuget.install

---+
 PKGBUILD  |6 +++---
 nuget.install |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-22 15:19:06 UTC (rev 396425)
+++ PKGBUILD2020-09-22 18:11:18 UTC (rev 396426)
@@ -3,7 +3,7 @@
 # Contributor: wenLiangcan 
 
 pkgname=nuget
-pkgver=5.6.0
+pkgver=5.7.0
 pkgrel=1
 pkgdesc="Package manager for .NET."
 arch=('any')
@@ -14,10 +14,10 @@
 "${pkgname}"
 "${pkgname}.pc")
 install="${pkgname}.install"
-md5sums=('3f8a53a524c54cf2e4efb7aea370a977'
+md5sums=('e7e9719ff447d78c397b8b0f94a337e0'
  'ec321eaa807564b85aacfafb227f7f55'
  'ffb7d95fb39f72c9619c72db91ec36a0')
-sha512sums=('a4be44f8a9f4868a91c1f0336fae598b4d3dc3f1eecac1a8e0c9dd81d8adc100ca127b40449b01d0ad7f52074d3c83a9d19d5356a776f95f88f41d1f0b297bf5'
+sha512sums=('50da646fe56e62341780b97b4275424185bf05633763e50ec8ba58f0349e4a696422fcc978dfcb5d11e822f9da954470a2eeecec12fb6b27a044b12e538089f8'
 
'd19b4f7683aeb2891397060c6ed0fabe9083726268825d5338a7a95ef5d7aaa66db41226ae3a3f26eecbbeea4cdee0bdeeedf61e7fc5017a568ebe2753e2ada6'
 
'50f77fdfc089afc516325057e2e4efdea353c09626073fb07457acf728268ac5e131e785d394b70c9db0ca6ae96e425d882cdf2b2b013c864dc91c32b85e508f')
 

Modified: nuget.install
===
--- nuget.install   2020-09-22 15:19:06 UTC (rev 396425)
+++ nuget.install   2020-09-22 18:11:18 UTC (rev 396426)
@@ -3,7 +3,7 @@
 }
 
 post_upgrade() {
-mozroots --import --machine --sync
+cert-sync /etc/ssl/certs/ca-certificates.crt
 yes | certmgr -ssl -m https://go.microsoft.com
 yes | certmgr -ssl -m https://nugetgallery.blob.core.windows.net
 yes | certmgr -ssl -m https://nuget.org


[arch-commits] Commit in keepass/repos (7 files)

2020-09-10 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, September 10, 2020 @ 13:20:12
  Author: grazzolini
Revision: 701771

archrelease: copy trunk to community-testing-any

Added:
  keepass/repos/community-testing-any/
  keepass/repos/community-testing-any/PKGBUILD
(from rev 701770, keepass/trunk/PKGBUILD)
  keepass/repos/community-testing-any/keepass
(from rev 701770, keepass/trunk/keepass)
  keepass/repos/community-testing-any/keepass.1
(from rev 701770, keepass/trunk/keepass.1)
  keepass/repos/community-testing-any/keepass.desktop
(from rev 701770, keepass/trunk/keepass.desktop)
  keepass/repos/community-testing-any/keepass.install
(from rev 701770, keepass/trunk/keepass.install)
  keepass/repos/community-testing-any/keepass.xml
(from rev 701770, keepass/trunk/keepass.xml)

-+
 PKGBUILD|   84 ++
 keepass |2 +
 keepass.1   |   23 ++
 keepass.desktop |   12 +++
 keepass.install |   14 +
 5 files changed, 135 insertions(+)

Copied: keepass/repos/community-testing-any/PKGBUILD (from rev 701770, 
keepass/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-09-10 13:20:12 UTC (rev 701771)
@@ -0,0 +1,84 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Timothy Redaelli 
+# Contributor: Kirill "reflexing" Churin 
+# Contributor: Andrej Gelenberg 
+
+pkgname=keepass
+pkgver=2.46
+pkgrel=1
+pkgdesc='Easy-to-use password manager for Windows, Linux, Mac OS X and mobile 
devices'
+arch=('any')
+url='https://keepass.info/'
+license=('GPL')
+depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'gtk-update-icon-cache')
+makedepends=('icoutils')
+optdepends=('xdotool: if you want to use auto-type'
+'xsel: clipboard operations in order to work around Mono clipboard 
bugs')
+install="$pkgname.install"
+source=("https://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip;
+"https://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc;
+'keepass'
+'keepass.1'
+'keepass.desktop'
+'keepass.xml')
+
+md5sums=('7caecfcc2d15dc7ec1b90256da527836'
+ 'SKIP'
+ '628e383dbfcaeefa996e4677dca35ff1'
+ 'a2a0dff1ebf0aaf6cbfb6f8566f4a010'
+ 'e910fabacfd7a5f7caa7c1fac0b5254e'
+ 'cc97882563fbaa0d5db44c9089990f12')
+sha1sums=('1bee277e5c36369198be75e473d6d7a1b08a2b16'
+  'SKIP'
+  '3142e80316feb67d687da993b919a634e89e6b1b'
+  '9dadd198ff3c66a21f7df4192f5516556f6cfbd5'
+  '22fab942358986679549e5263e1d4dabd23085f5'
+  '6c7b7884bfb27d36d62fbd99df4ebc3004361df4')
+sha256sums=('3e3e284da7542d6de618fe8a706bc3ac9c249023fdf09f3b87163dff9aa7cc7f'
+'SKIP'
+'05e63a028198ff32d4b26a892923a821066541f0cf798f5be8c138739bc22fbe'
+'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
+'1d5420e8babce5f4bbb3c68bdffe3bc0d3c3be25ad689138cd02fa14edd89140'
+'3d017c17a8788166c644e2460ba3596fd503f300342561921201fe5f69e5d194')
+validpgpkeys=('D95044283EE948D911E8B606A4F762DC58C6F98E')
+
+prepare() {
+  # Extract icons
+  icotool -x KeePass/KeePass.ico
+
+  pushd Build &>/dev/null
+  LANG=en_US.UTF-8 bash PrepMonoDev.sh
+  popd &>/dev/null
+}
+
+build() {
+  xbuild /target:KeePass /property:Configuration=Release
+  cp Ext/KeePass.exe.config Build/KeePass/Release/
+}
+
+package() {
+  install -dm755 "$pkgdir"/usr/bin
+  install -dm755 "$pkgdir"/usr/share/keepass/XSL
+
+  install -Dm755 keepass "$pkgdir"/usr/bin/keepass
+  install -Dm755 Build/KeePass/Release/KeePass.exe 
"$pkgdir"/usr/share/keepass/KeePass.exe
+  install -Dm755 Ext/KeePass.config.xml 
"$pkgdir"/usr/share/keepass/KeePass.config.xml
+  install -Dm755 Ext/KeePass.exe.config 
"$pkgdir"/usr/share/keepass/KeePass.exe.config
+
+  install -m644 Ext/XSL/* "$pkgdir"/usr/share/keepass/XSL
+
+  install -Dm644 keepass.1 "$pkgdir"/usr/share/man/man1/keepass.1
+
+  # Proper installation of .desktop file
+  desktop-file-install -m 644 --dir "$pkgdir"/usr/share/applications/ 
keepass.desktop
+
+  # Install icons
+  for size in 16 32 48 256; do
+install -Dm644 \
+KeePass_*_${size}x${size}x32.png \
+"$pkgdir"/usr/share/icons/hicolor/${size}x${size}/apps/keepass.png
+  done
+
+  # Needed for postinst with xdg-utils
+  install -Dm644 keepass.xml "$pkgdir"/usr/share/mime/packages/keepass.xml
+}

Copied: keepass/repos/community-testing-any/keepass (from rev 701770, 
keepass/trunk/keepass)
===
--- community-testing-any/keepass   (rev 0)
+++ community-testing-any/keepass   2020-09-10 13:20:12 UTC (rev 701771)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec mono --verify-all /usr/share/keepass/KeePass.exe "$@"

Copied: 

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

2020-09-10 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, September 10, 2020 @ 13:19:19
  Author: grazzolini
Revision: 701770

upgpkg: keepass 2.46-1

New Keepass release

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-10 13:13:53 UTC (rev 701769)
+++ PKGBUILD2020-09-10 13:19:19 UTC (rev 701770)
@@ -4,8 +4,8 @@
 # Contributor: Andrej Gelenberg 
 
 pkgname=keepass
-pkgver=2.45
-pkgrel=4
+pkgver=2.46
+pkgrel=1
 pkgdesc='Easy-to-use password manager for Windows, Linux, Mac OS X and mobile 
devices'
 arch=('any')
 url='https://keepass.info/'
@@ -22,19 +22,19 @@
 'keepass.desktop'
 'keepass.xml')
 
-md5sums=('478501f7f1799abb4b5be1cb3489f5b3'
+md5sums=('7caecfcc2d15dc7ec1b90256da527836'
  'SKIP'
  '628e383dbfcaeefa996e4677dca35ff1'
  'a2a0dff1ebf0aaf6cbfb6f8566f4a010'
  'e910fabacfd7a5f7caa7c1fac0b5254e'
  'cc97882563fbaa0d5db44c9089990f12')
-sha1sums=('dbe109b4efd640b4631a882857d67aea6dacdeeb'
+sha1sums=('1bee277e5c36369198be75e473d6d7a1b08a2b16'
   'SKIP'
   '3142e80316feb67d687da993b919a634e89e6b1b'
   '9dadd198ff3c66a21f7df4192f5516556f6cfbd5'
   '22fab942358986679549e5263e1d4dabd23085f5'
   '6c7b7884bfb27d36d62fbd99df4ebc3004361df4')
-sha256sums=('d59898183af11d94f1c00f70cca09ee51d58f7597d13560fc9f9c629e6b89e1f'
+sha256sums=('3e3e284da7542d6de618fe8a706bc3ac9c249023fdf09f3b87163dff9aa7cc7f'
 'SKIP'
 '05e63a028198ff32d4b26a892923a821066541f0cf798f5be8c138739bc22fbe'
 'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'


[arch-commits] Commit in dhcpcd/repos (6 files)

2020-09-07 Thread Giancarlo Razzolini via arch-commits
Date: Monday, September 7, 2020 @ 13:28:00
  Author: grazzolini
Revision: 395543

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 395542, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 395542, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 395542, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 395542, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 395542, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   74 ++
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |2 +
 dhcpcd_.service |   15 ++
 5 files changed, 105 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 395542, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-07 13:28:00 UTC (rev 395543)
@@ -0,0 +1,74 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.2.0
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('fcb2d19672d445bbfd38678fdee4f556ef967a3ea6bd81092d10545df2cb9666'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'df33c69a79fb30895217db8fe6a46ad0658a70b32a280bc91fc04a09b584fa62'
+'e0cef3b7cbe047393e4ecb60369f67d2d73e616b56cea9401070f2aff28a7434')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 395542, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-09-07 13:28:00 UTC (rev 395543)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.sysusers (from rev 395542, 
dhcpcd/trunk/dhcpcd.sysusers)
===
--- testing-x86_64/dhcpcd.sysusers  (rev 0)
+++ testing-x86_64/dhcpcd.sysusers  2020-09-07 13:28:00 UTC (rev 395543)
@@ -0,0 +1 @@
+u dhcpcd - "dhcpcd privilege separation" /var/lib/dhcpcd

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles (from rev 395542, 
dhcpcd/trunk/dhcpcd.tmpfiles)
===
--- testing-x86_64/dhcpcd.tmpfiles  (rev 0)
+++ testing-x86_64/dhcpcd.tmpfiles  2020-09-07 13:28:00 UTC (rev 395543)
@@ -0,0 +1,2 @@
+d /var/lib/dhcpcd 0700 dhcpcd dhcpcd -
+d /run/dhcpcd 0755 dhcpcd dhcpcd -

Copied: dhcpcd/repos/testing-x86_64/dhcpcd_.service (from rev 

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

2020-09-07 Thread Giancarlo Razzolini via arch-commits
Date: Monday, September 7, 2020 @ 13:27:00
  Author: grazzolini
Revision: 395542

upgpkg: dhcpcd 9.2.0-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-07 12:32:51 UTC (rev 395541)
+++ PKGBUILD2020-09-07 13:27:00 UTC (rev 395542)
@@ -4,8 +4,8 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=9.1.4
-pkgrel=2
+pkgver=9.2.0
+pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
 arch=('x86_64')
@@ -21,7 +21,7 @@
 dhcpcd.sysusers
 dhcpcd.tmpfiles)
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('5fe133e5497d8af6d26bd6e6b8dd48ab12d124d6cc4cefe6de6536ff97f76820'
+sha256sums=('fcb2d19672d445bbfd38678fdee4f556ef967a3ea6bd81092d10545df2cb9666'
 '37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
 '20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
 'df33c69a79fb30895217db8fe6a46ad0658a70b32a280bc91fc04a09b584fa62'


[arch-commits] Commit in keepass-plugin-keeagent/repos/community-any (2 files)

2020-08-31 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 31, 2020 @ 20:18:43
  Author: grazzolini
Revision: 694397

archrelease: copy trunk to community-any

Added:
  keepass-plugin-keeagent/repos/community-any/PKGBUILD
(from rev 694395, keepass-plugin-keeagent/trunk/PKGBUILD)
Deleted:
  keepass-plugin-keeagent/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-31 20:18:38 UTC (rev 694396)
+++ PKGBUILD2020-08-31 20:18:43 UTC (rev 694397)
@@ -1,36 +0,0 @@
-# Maintainer: Giancarlo Razzolinit 
-
-pkgname=keepass-plugin-keeagent
-pkgver=0.12.0
-pkgrel=1
-pkgdesc="SSH Agent Plugin for KeePass"
-license=('GPL')
-makedepends=('git' 'msbuild' 'nuget')
-depends=('keepass')
-optdepends=('openssh: For integration with ssh-agent' 'gnupg: For integration 
with GnuPG SSH agent')
-arch=('any')
-url="https://lechnology.com/software/keeagent/;
-#options=('!strip')
-source=("${pkgname}-${pkgver}::git+https://github.com/dlech/KeeAgent.git#tag=v${pkgver};)
-sha512sums=('SKIP')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  git submodule update --init --recursive
-
-  nuget restore
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  msbuild /property:Configuration=ReleasePlgx KeeAgent.sln
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-install -Dm644 KeeAgent/bin/ReleasePlgx/KeeAgent.plgx -t 
"$pkgdir/usr/share/keepass/plugins/"
-install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-install -Dm644 GPL2.txt "$pkgdir/usr/share/licenses/$pkgname/GPL2.txt"
-}

Copied: keepass-plugin-keeagent/repos/community-any/PKGBUILD (from rev 694395, 
keepass-plugin-keeagent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-31 20:18:43 UTC (rev 694397)
@@ -0,0 +1,36 @@
+# Maintainer: Giancarlo Razzolinit 
+
+pkgname=keepass-plugin-keeagent
+pkgver=0.12.1
+pkgrel=1
+pkgdesc="SSH Agent Plugin for KeePass"
+license=('GPL')
+makedepends=('git' 'msbuild' 'nuget')
+depends=('keepass')
+optdepends=('openssh: For integration with ssh-agent' 'gnupg: For integration 
with GnuPG SSH agent')
+arch=('any')
+url="https://lechnology.com/software/keeagent/;
+#options=('!strip')
+source=("${pkgname}-${pkgver}::git+https://github.com/dlech/KeeAgent.git#tag=v${pkgver};)
+sha512sums=('SKIP')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  git submodule update --init --recursive
+
+  nuget restore
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msbuild /property:Configuration=ReleasePlgx KeeAgent.sln
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -Dm644 KeeAgent/bin/ReleasePlgx/KeeAgent.plgx -t 
"$pkgdir/usr/share/keepass/plugins/"
+install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+install -Dm644 GPL2.txt "$pkgdir/usr/share/licenses/$pkgname/GPL2.txt"
+}


[arch-commits] Commit in keepass-plugin-keeagent/trunk (PKGBUILD)

2020-08-31 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 31, 2020 @ 20:18:10
  Author: grazzolini
Revision: 694395

upgpkg: keepass-plugin-keeagent 0.12.1-1

Modified:
  keepass-plugin-keeagent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-31 20:16:50 UTC (rev 694394)
+++ PKGBUILD2020-08-31 20:18:10 UTC (rev 694395)
@@ -1,7 +1,7 @@
 # Maintainer: Giancarlo Razzolinit 
 
 pkgname=keepass-plugin-keeagent
-pkgver=0.12.0
+pkgver=0.12.1
 pkgrel=1
 pkgdesc="SSH Agent Plugin for KeePass"
 license=('GPL')


[arch-commits] Commit in steam/repos (3 files)

2020-08-24 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 24, 2020 @ 15:46:41
  Author: grazzolini
Revision: 687618

archrelease: copy trunk to multilib-testing-x86_64

Added:
  steam/repos/multilib-testing-x86_64/
  steam/repos/multilib-testing-x86_64/PKGBUILD
(from rev 687617, steam/trunk/PKGBUILD)
  steam/repos/multilib-testing-x86_64/steam-runtime.sh
(from rev 687617, steam/trunk/steam-runtime.sh)

--+
 PKGBUILD |   63 +
 steam-runtime.sh |2 +
 2 files changed, 65 insertions(+)

Copied: steam/repos/multilib-testing-x86_64/PKGBUILD (from rev 687617, 
steam/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-08-24 15:46:41 UTC (rev 687618)
@@ -0,0 +1,63 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Daniel Wallace 
+# Contributor: K900 
+
+pkgname=steam
+pkgver=1.0.0.66
+pkgrel=1
+pkgdesc="Valve's digital software delivery system"
+url='https://steampowered.com/'
+arch=('x86_64')
+license=('custom')
+depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus'
+ 'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity' 'lsb-release' 'nss' 
'usbutils'
+ 'xorg-xrandr' 'vulkan-driver' 'vulkan-icd-loader' 'lsof' 'python')
+depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 'lib32-libxss'
+'lib32-alsa-plugins' 'lib32-libgpg-error'
+'lib32-nss' 'lib32-vulkan-driver' 'lib32-vulkan-icd-loader')
+optdepends=('steam-native-runtime: steam native runtime support')
+source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}{.tar.gz,.dsc}
+steam-runtime.sh)
+sha512sums=('1871dba51229cbc220e19df3f8af06ea6c0d71e1bbdea39ef66c4f5d0ce29486974cb1cdb7f5e78f6a0e2f69d256f4c2034848d3efd68b088635eb11a2ae96ba'
+
'7c4efae9fe5fa3cb14b9344a30aa8daec995bff502d1b80d5f6ee479f11be6993c5b8870da1ec14bd8f979d8d161a45fa0eeb628eccf60eeb40a4221356e13e9'
+
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
+b2sums=('d4a247b31f1474908a7e1ebdd7bb9443608bd7617e53344b9b03e498fe9cd55e406a1ef7ef3eba6754d9c19218ca975f3d1e18a727f5a05d21467f276c8854fa'
+
'210b7a332f2aee8df5efd632dc90086e2a2470a12ad6fa1ecb0cd34cc039f016ede891f9d0bb15245c054afa3cca46871842c521b1e924c196a1c02689f8d077'
+
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
+validpgpkeys=('BA1816EF8E75005FCF5E27A1F24AEA9FB05498B7') # 
li...@steampowered.com
+
+prepare() {
+  cd ${pkgname}-launcher
+  # apply roundups for udev rules
+  sed -r 's|("0666")|"0660", TAG+="uaccess"|g' -i 
subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|("misc")|\1, OPTIONS+="static_node=uinput"|g' -i 
subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|(, TAG\+="uaccess")|, MODE="0660"\1|g' -i 
subprojects/steam-devices/60-steam-vr.rules
+
+  # separated runtime/native desktop files
+  sed -r 's|(Name=Steam)|\1 (Runtime)|' -i steam.desktop
+  sed -r 's|(/usr/bin/steam)|\1-runtime|' -i steam.desktop
+}
+
+package() {
+  cd ${pkgname}-launcher
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm 755 "${srcdir}/steam-runtime.sh" 
"${pkgdir}/usr/bin/steam-runtime"
+  install -d "${pkgdir}/usr/lib/steam"
+  mv "${pkgdir}/usr/bin/steam" "${pkgdir}/usr/lib/steam/steam"
+  ln -sf /usr/bin/steam-runtime "${pkgdir}/usr/bin/steam"
+
+  install -Dm 644 COPYING steam_subscriber_agreement.txt -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 debian/changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # blank steamdeps because apt-get
+  ln -sf /usr/bin/true "${pkgdir}/usr/bin/steamdeps"
+
+  install -Dm 644 subprojects/steam-devices/60-steam-input.rules \
+"${pkgdir}/usr/lib/udev/rules.d/70-steam-input.rules"
+  install -Dm 644 subprojects/steam-devices/60-steam-vr.rules \
+"${pkgdir}/usr/lib/udev/rules.d/70-steam-vr.rules"
+}
+
+# vim: ts=2 sw=2 et:

Copied: steam/repos/multilib-testing-x86_64/steam-runtime.sh (from rev 687617, 
steam/trunk/steam-runtime.sh)
===
--- multilib-testing-x86_64/steam-runtime.sh(rev 0)
+++ multilib-testing-x86_64/steam-runtime.sh2020-08-24 15:46:41 UTC (rev 
687618)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /usr/lib/steam/steam "$@"


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

2020-08-24 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 24, 2020 @ 15:46:02
  Author: grazzolini
Revision: 687617

upgpkg: steam 1.0.0.66-1

Modified:
  steam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-24 14:38:16 UTC (rev 687616)
+++ PKGBUILD2020-08-24 15:46:02 UTC (rev 687617)
@@ -4,7 +4,7 @@
 # Contributor: K900 
 
 pkgname=steam
-pkgver=1.0.0.64
+pkgver=1.0.0.66
 pkgrel=1
 pkgdesc="Valve's digital software delivery system"
 url='https://steampowered.com/'
@@ -17,12 +17,15 @@
 'lib32-alsa-plugins' 'lib32-libgpg-error'
 'lib32-nss' 'lib32-vulkan-driver' 'lib32-vulkan-icd-loader')
 optdepends=('steam-native-runtime: steam native runtime support')
-source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}.tar.gz
+source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}{.tar.gz,.dsc}
 steam-runtime.sh)
-sha512sums=('4a287b993d0ba6f49041d116512a28ca827eeac280808b70542d304f0de2d489be1f75d66d614f65ae11686a78e0d026b12e983ead7843e9ad0a28f1d21bdf4c'
+sha512sums=('1871dba51229cbc220e19df3f8af06ea6c0d71e1bbdea39ef66c4f5d0ce29486974cb1cdb7f5e78f6a0e2f69d256f4c2034848d3efd68b088635eb11a2ae96ba'
+
'7c4efae9fe5fa3cb14b9344a30aa8daec995bff502d1b80d5f6ee479f11be6993c5b8870da1ec14bd8f979d8d161a45fa0eeb628eccf60eeb40a4221356e13e9'
 
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
-b2sums=('f8e19a768ecc507fa503ad774ce2bbf31f79f8bbaf205d687153a523761cb067ae83b718a0954ec6389dbdc7b97001932163efd888de7c73a12e1dec7e429dab'
+b2sums=('d4a247b31f1474908a7e1ebdd7bb9443608bd7617e53344b9b03e498fe9cd55e406a1ef7ef3eba6754d9c19218ca975f3d1e18a727f5a05d21467f276c8854fa'
+
'210b7a332f2aee8df5efd632dc90086e2a2470a12ad6fa1ecb0cd34cc039f016ede891f9d0bb15245c054afa3cca46871842c521b1e924c196a1c02689f8d077'
 
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
+validpgpkeys=('BA1816EF8E75005FCF5E27A1F24AEA9FB05498B7') # 
li...@steampowered.com
 
 prepare() {
   cd ${pkgname}-launcher


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

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 16:26:19
  Author: grazzolini
Revision: 685570

upgpkg: nginx-mainline 1.19.2-2: libxcrypt rebuild

Modified:
  nginx-mainline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 16:24:06 UTC (rev 685569)
+++ PKGBUILD2020-08-20 16:26:19 UTC (rev 685570)
@@ -5,12 +5,12 @@
 
 pkgname=nginx-mainline
 pkgver=1.19.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('x86_64')
 url='https://nginx.org'
 license=('custom')
-depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap' 'libxcrypt')
 backup=('etc/nginx/fastcgi.conf'
 'etc/nginx/fastcgi_params'
 'etc/nginx/koi-win'


[arch-commits] Commit in nginx-mainline/repos (5 files)

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 16:26:57
  Author: grazzolini
Revision: 685571

archrelease: copy trunk to community-testing-x86_64

Added:
  nginx-mainline/repos/community-testing-x86_64/
  nginx-mainline/repos/community-testing-x86_64/PKGBUILD
(from rev 685570, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/community-testing-x86_64/logrotate
(from rev 685570, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/community-testing-x86_64/nginx.install
(from rev 685570, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/community-testing-x86_64/service
(from rev 685570, nginx-mainline/trunk/service)

---+
 PKGBUILD  |  132 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 171 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
685570, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-20 16:26:57 UTC (rev 685571)
@@ -0,0 +1,132 @@
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.19.2
+pkgrel=2
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap' 'libxcrypt')
+backup=('etc/nginx/fastcgi.conf'
+'etc/nginx/fastcgi_params'
+'etc/nginx/koi-win'
+'etc/nginx/koi-utf'
+'etc/nginx/nginx.conf'
+'etc/nginx/scgi_params'
+'etc/nginx/uwsgi_params'
+'etc/nginx/win-utf'
+'etc/logrotate.d/nginx')
+install=nginx.install
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('3dc55f6451ed6f819f1c796f4e5e9617'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('f6232d58a91db486cf36cc027ab84f04ad25aeafe586051043f0f3295dad5f475094f7cedad142ef0f56ff15a0971d700d6ec34b68697c462364650c49be8fcc'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$pkgver
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent syntax; do
+install -Dm644 contrib/vim/$i/nginx.vim \
+  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
+  done
+}

Copied: nginx-mainline/repos/community-testing-x86_64/logrotate (from rev 
685570, nginx-mainline/trunk/logrotate)
===
--- community-testing-x86_64/logrotate  (rev 0)
+++ community-testing-x86_64/logrotate  2020-08-20 16:26:57 UTC (rev 685571)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 

[arch-commits] Commit in nginx/repos (5 files)

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 16:19:27
  Author: grazzolini
Revision: 394443

archrelease: copy trunk to testing-x86_64

Added:
  nginx/repos/testing-x86_64/
  nginx/repos/testing-x86_64/PKGBUILD
(from rev 394442, nginx/trunk/PKGBUILD)
  nginx/repos/testing-x86_64/logrotate
(from rev 394442, nginx/trunk/logrotate)
  nginx/repos/testing-x86_64/nginx.install
(from rev 394442, nginx/trunk/nginx.install)
  nginx/repos/testing-x86_64/service
(from rev 394442, nginx/trunk/service)

---+
 PKGBUILD  |  150 
 logrotate |   10 +++
 nginx.install |   27 ++
 service   |   16 +
 4 files changed, 203 insertions(+)

Copied: nginx/repos/testing-x86_64/PKGBUILD (from rev 394442, 
nginx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-20 16:19:27 UTC (rev 394443)
@@ -0,0 +1,150 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgbase=nginx
+pkgname=(nginx nginx-src)
+pkgver=1.18.0
+pkgrel=2
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=(x86_64)
+url='https://nginx.org'
+license=(custom)
+depends=(pcre zlib openssl geoip mailcap libxcrypt)
+makedepends=(mercurial)
+checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
+  memcached ffmpeg inetutils) 
+backup=(etc/nginx/fastcgi.conf
+etc/nginx/fastcgi_params
+etc/nginx/koi-win
+etc/nginx/koi-utf
+etc/nginx/nginx.conf
+etc/nginx/scgi_params
+etc/nginx/uwsgi_params
+etc/nginx/win-utf
+etc/logrotate.d/nginx)
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+hg+https://hg.nginx.org/nginx-tests#revision=c1d167a13c24
+service
+logrotate)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+md5sums=('b2d33d24d89b8b1f87ff5d251aa27eb8'
+ 'SKIP'
+ 'SKIP'
+ 'ba2e3b08ce0f0fff7cced624d0ecf7cc'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_stable_flags=(
+)
+
+prepare() {
+  cp -r $pkgbase-$pkgver{,-src}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+check() {
+  cd nginx-tests
+  TEST_NGINX_BINARY="$srcdir/$pkgbase-$pkgver/objs/nginx" prove .
+}
+
+package_nginx() {
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent syntax; do
+install -Dm644 contrib/vim/$i/nginx.vim \
+  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
+  done
+}
+
+package_nginx-src() {
+  pkgdesc="Source code of nginx $pkgver, useful for building modules"
+  depends=()
+  install -d "$pkgdir/usr/src"
+  cp -r $pkgbase-$pkgver-src "$pkgdir/usr/src/nginx"
+}

Copied: nginx/repos/testing-x86_64/logrotate (from rev 394442, 
nginx/trunk/logrotate)
===
--- testing-x86_64/logrotate(rev 0)
+++ testing-x86_64/logrotate2020-08-20 16:19:27 UTC (rev 394443)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http log
+   sharedscripts
+   compress
+   postrotate
+   test ! -r /run/nginx.pid || kill -USR1 `cat /run/nginx.pid`
+   

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

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 16:18:41
  Author: grazzolini
Revision: 394442

upgpkg: nginx 1.18.0-2: libxcrypt rebuild

Modified:
  nginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:51:41 UTC (rev 394441)
+++ PKGBUILD2020-08-20 16:18:41 UTC (rev 394442)
@@ -7,12 +7,12 @@
 pkgbase=nginx
 pkgname=(nginx nginx-src)
 pkgver=1.18.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
 arch=(x86_64)
 url='https://nginx.org'
 license=(custom)
-depends=(pcre zlib openssl geoip mailcap)
+depends=(pcre zlib openssl geoip mailcap libxcrypt)
 makedepends=(mercurial)
 checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
   memcached ffmpeg inetutils) 


[arch-commits] Commit in mkinitcpio-busybox/repos (3 files)

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 15:51:41
  Author: grazzolini
Revision: 394441

archrelease: copy trunk to testing-x86_64

Added:
  mkinitcpio-busybox/repos/testing-x86_64/
  mkinitcpio-busybox/repos/testing-x86_64/PKGBUILD
(from rev 394440, mkinitcpio-busybox/trunk/PKGBUILD)
  mkinitcpio-busybox/repos/testing-x86_64/config
(from rev 394440, mkinitcpio-busybox/trunk/config)

--+
 PKGBUILD |   38 +
 config   | 1182 +
 2 files changed, 1220 insertions(+)

Copied: mkinitcpio-busybox/repos/testing-x86_64/PKGBUILD (from rev 394440, 
mkinitcpio-busybox/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-20 15:51:41 UTC (rev 394441)
@@ -0,0 +1,38 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Dave Reisner 
+# Contributor: Thomas Bächler 
+
+pkgname=mkinitcpio-busybox
+pkgver=1.31.1
+pkgrel=2
+pkgdesc='Base initramfs tools'
+arch=(x86_64)
+url="https://www.busybox.net/;
+license=(GPL)
+depends=(glibc libxcrypt)
+options=(!buildflags)
+source=(https://busybox.net/downloads/busybox-$pkgver.tar.bz2{,.sig}
+config)
+sha256sums=('d0f940a72f648943c1f2211e0e3117387c31d765137d92bd8284a3fb9752a998'
+'SKIP'
+'2d724738dfb062b8676a8df0488a5e288fc7ceb305633fa6b8d672a722837e81')
+validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B') # Denis Vlasenko 

+
+prepare() {
+  cd "busybox-$pkgver"
+
+  local safeflags="-march=${CARCH/_/-} -mtune=generic -Os -pipe 
-fno-strict-aliasing"
+
+  sed 's|^\(CONFIG_EXTRA_CFLAGS\)=.*|\1="'"$safeflags"'"|' "$srcdir/config" > 
.config
+}
+
+build() {
+  # reproducible build
+  export KCONFIG_NOTIMESTAMP=1
+  make -C "busybox-$pkgver"
+}
+
+package() {
+  install -Dm755 "$srcdir/busybox-$pkgver/busybox" 
"$pkgdir/usr/lib/initcpio/busybox"
+}

Copied: mkinitcpio-busybox/repos/testing-x86_64/config (from rev 394440, 
mkinitcpio-busybox/trunk/config)
===
--- testing-x86_64/config   (rev 0)
+++ testing-x86_64/config   2020-08-20 15:51:41 UTC (rev 394441)
@@ -0,0 +1,1182 @@
+#
+# Automatically generated make config: don't edit
+# Busybox version: 1.31.1
+#
+CONFIG_HAVE_DOT_CONFIG=y
+
+#
+# Settings
+#
+# CONFIG_DESKTOP is not set
+# CONFIG_EXTRA_COMPAT is not set
+# CONFIG_FEDORA_COMPAT is not set
+# CONFIG_INCLUDE_SUSv2 is not set
+CONFIG_LONG_OPTS=y
+CONFIG_SHOW_USAGE=y
+CONFIG_FEATURE_VERBOSE_USAGE=y
+# CONFIG_FEATURE_COMPRESS_USAGE is not set
+CONFIG_LFS=y
+# CONFIG_PAM is not set
+CONFIG_FEATURE_DEVPTS=y
+# CONFIG_FEATURE_UTMP is not set
+# CONFIG_FEATURE_WTMP is not set
+# CONFIG_FEATURE_PIDFILE is not set
+CONFIG_PID_FILE_PATH=""
+CONFIG_BUSYBOX=y
+CONFIG_FEATURE_SHOW_SCRIPT=y
+CONFIG_FEATURE_INSTALLER=y
+# CONFIG_INSTALL_NO_USR is not set
+CONFIG_FEATURE_SUID=y
+# CONFIG_FEATURE_SUID_CONFIG is not set
+# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set
+# CONFIG_FEATURE_PREFER_APPLETS is not set
+CONFIG_BUSYBOX_EXEC_PATH="/bin/busybox"
+# CONFIG_SELINUX is not set
+# CONFIG_FEATURE_CLEAN_UP is not set
+CONFIG_FEATURE_SYSLOG_INFO=y
+CONFIG_FEATURE_SYSLOG=y
+CONFIG_PLATFORM_LINUX=y
+
+#
+# Build Options
+#
+# CONFIG_STATIC is not set
+CONFIG_PIE=y
+# CONFIG_NOMMU is not set
+# CONFIG_BUILD_LIBBUSYBOX is not set
+# CONFIG_FEATURE_LIBBUSYBOX_STATIC is not set
+# CONFIG_FEATURE_INDIVIDUAL is not set
+# CONFIG_FEATURE_SHARED_BUSYBOX is not set
+CONFIG_CROSS_COMPILER_PREFIX=""
+CONFIG_SYSROOT=""
+CONFIG_EXTRA_CFLAGS="-march=x86-64 -mtune=generic -Os -pipe 
-fno-strict-aliasing"
+CONFIG_EXTRA_LDFLAGS=""
+CONFIG_EXTRA_LDLIBS=""
+# CONFIG_USE_PORTABLE_CODE is not set
+CONFIG_STACK_OPTIMIZATION_386=y
+
+#
+# Installation Options ("make install" behavior)
+#
+CONFIG_INSTALL_APPLET_SYMLINKS=y
+# CONFIG_INSTALL_APPLET_HARDLINKS is not set
+# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
+# CONFIG_INSTALL_APPLET_DONT is not set
+# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set
+# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set
+# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set
+CONFIG_PREFIX="./_install"
+
+#
+# Debugging Options
+#
+# CONFIG_DEBUG is not set
+# CONFIG_DEBUG_PESSIMIZE is not set
+# CONFIG_DEBUG_SANITIZE is not set
+# CONFIG_UNIT_TEST is not set
+# CONFIG_WERROR is not set
+CONFIG_NO_DEBUG_LIB=y
+# CONFIG_DMALLOC is not set
+# CONFIG_EFENCE is not set
+
+#
+# Library Tuning
+#
+# CONFIG_FEATURE_USE_BSS_TAIL is not set
+CONFIG_FLOAT_DURATION=y
+CONFIG_FEATURE_RTMINMAX=y
+CONFIG_FEATURE_RTMINMAX_USE_LIBC_DEFINITIONS=y
+CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
+# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
+# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
+CONFIG_PASSWORD_MINLEN=6
+CONFIG_MD5_SMALL=0
+CONFIG_SHA3_SMALL=0
+CONFIG_FEATURE_FAST_TOP=y
+# CONFIG_FEATURE_ETC_NETWORKS is not set
+# 

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

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 15:51:02
  Author: grazzolini
Revision: 394440

upgpkg: mkinitcpio-busybox 1.31.1-2

libxcrypt rebuild

Modified:
  mkinitcpio-busybox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:33:40 UTC (rev 394439)
+++ PKGBUILD2020-08-20 15:51:02 UTC (rev 394440)
@@ -5,12 +5,12 @@
 
 pkgname=mkinitcpio-busybox
 pkgver=1.31.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Base initramfs tools'
 arch=(x86_64)
 url="https://www.busybox.net/;
 license=(GPL)
-depends=(glibc)
+depends=(glibc libxcrypt)
 options=(!buildflags)
 source=(https://busybox.net/downloads/busybox-$pkgver.tar.bz2{,.sig}
 config)


[arch-commits] Commit in i3-wm/repos/community-x86_64 (5 files)

2020-08-11 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, August 11, 2020 @ 18:28:47
  Author: grazzolini
Revision: 674643

archrelease: copy trunk to community-x86_64

Added:
  i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch
(from rev 674642, i3-wm/trunk/0001-Use-OVER-operator-for-drawing-text.patch)
  
i3-wm/repos/community-x86_64/0002-kick-tray-clients-before-destroying-the-bar.patch
(from rev 674642, 
i3-wm/trunk/0002-kick-tray-clients-before-destroying-the-bar.patch)
  i3-wm/repos/community-x86_64/PKGBUILD
(from rev 674642, i3-wm/trunk/PKGBUILD)
Deleted:
  i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch
  i3-wm/repos/community-x86_64/PKGBUILD

+
 0001-Use-OVER-operator-for-drawing-text.patch  |   70 -
 0002-kick-tray-clients-before-destroying-the-bar.patch |   34 
 PKGBUILD   |  109 +++
 3 files changed, 126 insertions(+), 87 deletions(-)

Deleted: 0001-Use-OVER-operator-for-drawing-text.patch
===
--- 0001-Use-OVER-operator-for-drawing-text.patch   2020-08-11 18:27:46 UTC 
(rev 674642)
+++ 0001-Use-OVER-operator-for-drawing-text.patch   2020-08-11 18:28:47 UTC 
(rev 674643)
@@ -1,35 +0,0 @@
-From eea280b1f1d9d66c903014fd6703f401eb119a87 Mon Sep 17 00:00:00 2001
-Message-Id: 

-From: "Jan Alexander Steffens (heftig)" 
-Date: Sat, 9 Sep 2017 00:22:13 +0200
-Subject: [PATCH] Use OVER operator for drawing text
-
-For opaque text, SOURCE is not any different from OVER. However, when
-drawing color glyphs (which consist of RGBA pixels instead of strokes)
-SOURCE's handling of alpha is not what we want.
-
-I stumbled across this because cairo 1.15.8 seems to clear the surface
-before drawing color emoji if the operator is SOURCE, deleting every-
-thing drawn before. Arguably, the area outside the glyph bounds should
-not be touched, but even if this is a cairo bug the problem of alpha
-within the glyph remains.

- libi3/font.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libi3/font.c b/libi3/font.c
-index 81091ea74a31da11..aef8427b5396c3d8 100644
 a/libi3/font.c
-+++ b/libi3/font.c
-@@ -105,7 +105,7 @@ static void draw_text_pango(const char *text, size_t 
text_len,
- pango_layout_set_text(layout, text, text_len);
- 
- /* Do the drawing */
--cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
-+cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
- cairo_set_source_rgb(cr, pango_font_red, pango_font_green, 
pango_font_blue);
- pango_cairo_update_layout(cr, layout);
- pango_layout_get_pixel_size(layout, NULL, );
--- 
-2.14.1
-

Copied: 
i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch 
(from rev 674642, i3-wm/trunk/0001-Use-OVER-operator-for-drawing-text.patch)
===
--- 0001-Use-OVER-operator-for-drawing-text.patch   
(rev 0)
+++ 0001-Use-OVER-operator-for-drawing-text.patch   2020-08-11 18:28:47 UTC 
(rev 674643)
@@ -0,0 +1,35 @@
+From eea280b1f1d9d66c903014fd6703f401eb119a87 Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 9 Sep 2017 00:22:13 +0200
+Subject: [PATCH] Use OVER operator for drawing text
+
+For opaque text, SOURCE is not any different from OVER. However, when
+drawing color glyphs (which consist of RGBA pixels instead of strokes)
+SOURCE's handling of alpha is not what we want.
+
+I stumbled across this because cairo 1.15.8 seems to clear the surface
+before drawing color emoji if the operator is SOURCE, deleting every-
+thing drawn before. Arguably, the area outside the glyph bounds should
+not be touched, but even if this is a cairo bug the problem of alpha
+within the glyph remains.
+---
+ libi3/font.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libi3/font.c b/libi3/font.c
+index 81091ea74a31da11..aef8427b5396c3d8 100644
+--- a/libi3/font.c
 b/libi3/font.c
+@@ -105,7 +105,7 @@ static void draw_text_pango(const char *text, size_t 
text_len,
+ pango_layout_set_text(layout, text, text_len);
+ 
+ /* Do the drawing */
+-cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
++cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
+ cairo_set_source_rgb(cr, pango_font_red, pango_font_green, 
pango_font_blue);
+ pango_cairo_update_layout(cr, layout);
+ pango_layout_get_pixel_size(layout, NULL, );
+-- 
+2.14.1
+

Copied: 
i3-wm/repos/community-x86_64/0002-kick-tray-clients-before-destroying-the-bar.patch
 (from rev 674642, 
i3-wm/trunk/0002-kick-tray-clients-before-destroying-the-bar.patch)
===
--- 0002-kick-tray-clients-before-destroying-the-bar.patch  
(rev 0)
+++ 0002-kick-tray-clients-before-destroying-the-bar.patch 

[arch-commits] Commit in i3-wm/trunk (2 files)

2020-08-11 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, August 11, 2020 @ 18:27:46
  Author: grazzolini
Revision: 674642

upgpkg: i3-wm 4.18.2-2

Applied the patch 838b600 for https://github.com/i3/i3/issues/4159

Added:
  i3-wm/trunk/0002-kick-tray-clients-before-destroying-the-bar.patch
Modified:
  i3-wm/trunk/PKGBUILD

+
 0002-kick-tray-clients-before-destroying-the-bar.patch |   34 +++
 PKGBUILD   |   11 +++-
 2 files changed, 42 insertions(+), 3 deletions(-)

Added: 0002-kick-tray-clients-before-destroying-the-bar.patch
===
--- 0002-kick-tray-clients-before-destroying-the-bar.patch  
(rev 0)
+++ 0002-kick-tray-clients-before-destroying-the-bar.patch  2020-08-11 
18:27:46 UTC (rev 674642)
@@ -0,0 +1,34 @@
+From 838b600fead202416013db5c1b57f7031f06bed6 Mon Sep 17 00:00:00 2001
+From: Mark Guptill 
+Date: Tue, 30 Jun 2020 04:34:32 -0400
+Subject: [PATCH] kick tray clients before destroying the bar
+
+---
+ i3bar/src/xcb.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c
+index 94212630..5f01c1d8 100644
+--- a/i3bar/src/xcb.c
 b/i3bar/src/xcb.c
+@@ -1613,6 +1613,8 @@ void destroy_window(i3_output *output) {
+ return;
+ }
+ 
++kick_tray_clients(output);
++
+ draw_util_surface_free(xcb_connection, &(output->bar));
+ draw_util_surface_free(xcb_connection, &(output->buffer));
+ draw_util_surface_free(xcb_connection, &(output->statusline_buffer));
+@@ -1620,8 +1622,6 @@ void destroy_window(i3_output *output) {
+ xcb_free_pixmap(xcb_connection, output->buffer.id);
+ xcb_free_pixmap(xcb_connection, output->statusline_buffer.id);
+ output->bar.id = XCB_NONE;
+-
+-kick_tray_clients(output);
+ }
+ 
+ /* Strut partial tells i3 where to reserve space for i3bar. This is determined
+-- 
+2.28.0
+

Modified: PKGBUILD
===
--- PKGBUILD2020-08-11 18:22:56 UTC (rev 674641)
+++ PKGBUILD2020-08-11 18:27:46 UTC (rev 674642)
@@ -2,7 +2,7 @@
 
 pkgname=i3-wm
 pkgver=4.18.2
-pkgrel=1
+pkgrel=2
 pkgdesc="An improved dynamic tiling window manager"
 url="https://i3wm.org/;
 arch=(x86_64)
@@ -20,10 +20,12 @@
 groups=(i3)
 replaces=(i3 i3bar)
 source=("https://i3wm.org/downloads/i3-$pkgver.tar.bz2"{,.asc}
-0001-Use-OVER-operator-for-drawing-text.patch)
+0001-Use-OVER-operator-for-drawing-text.patch
+0002-kick-tray-clients-before-destroying-the-bar.patch)
 sha256sums=('b28617d62f308b93817fc9949daffee74cf4a001685de389f3072cb44cf5120c'
 'SKIP'
-'e49e147b1cd06f95188decbbe41f5c3a0aca18d0195750bc3ea16465b4aca563')
+'e49e147b1cd06f95188decbbe41f5c3a0aca18d0195750bc3ea16465b4aca563'
+'f8a3a307951f6a2f5fc740a0d5871e5fb502162d0269c6124d87aabb46e6e11a')
 validpgpkeys=('424E14D703E7C6D43D9D6F364E7160ED4AC8EE1D') # Michael Stapelberg
 
 prepare() {
@@ -33,6 +35,9 @@
   # https://github.com/i3/i3/pull/2925
   patch -Np1 -i ../0001-Use-OVER-operator-for-drawing-text.patch
 
+  # https://github.com/i3/i3/issues/4159
+  patch -Np1 -i ../0002-kick-tray-clients-before-destroying-the-bar.patch
+
   autoreconf -fvi
 }
 


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

2020-08-11 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, August 11, 2020 @ 18:03:40
  Author: grazzolini
Revision: 674623

archrelease: copy trunk to community-x86_64

Added:
  nginx-mainline/repos/community-x86_64/PKGBUILD
(from rev 674622, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/community-x86_64/logrotate
(from rev 674622, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/community-x86_64/nginx.install
(from rev 674622, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/community-x86_64/service
(from rev 674622, nginx-mainline/trunk/service)
Deleted:
  nginx-mainline/repos/community-x86_64/PKGBUILD
  nginx-mainline/repos/community-x86_64/logrotate
  nginx-mainline/repos/community-x86_64/nginx.install
  nginx-mainline/repos/community-x86_64/service

---+
 PKGBUILD  |  264 
 logrotate |   20 ++--
 nginx.install |   24 ++---
 service   |   34 +++
 4 files changed, 171 insertions(+), 171 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-11 18:02:47 UTC (rev 674622)
+++ PKGBUILD2020-08-11 18:03:40 UTC (rev 674623)
@@ -1,132 +0,0 @@
-# Maintainer:  Giancarlo Razzolini 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Sébastien Luttringer
-# Contributor: Drew DeVault
-
-pkgname=nginx-mainline
-pkgver=1.19.1
-pkgrel=1
-pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
-arch=('x86_64')
-url='https://nginx.org'
-license=('custom')
-depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
-backup=('etc/nginx/fastcgi.conf'
-'etc/nginx/fastcgi_params'
-'etc/nginx/koi-win'
-'etc/nginx/koi-utf'
-'etc/nginx/nginx.conf'
-'etc/nginx/scgi_params'
-'etc/nginx/uwsgi_params'
-'etc/nginx/win-utf'
-'etc/logrotate.d/nginx')
-install=nginx.install
-provides=('nginx')
-conflicts=('nginx')
-source=($url/download/nginx-$pkgver.tar.gz{,.asc}
-service
-logrotate)
-validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('d14e03b34c47a07d0dd109f8e33c54c3'
- 'SKIP'
- 'ef491e760e7c1ffec9ca25441a150c83'
- '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('e5448e3fd84c53e96db27329e41baa48c21be4169436eda3704012d0e5de15d938f6aa64dc07cb50002c2173b00fb88db4b1a9061d5f47fa7011ffd524a8ba23'
-'SKIP'
-
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
-
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
-
-_common_flags=(
-  --with-compat
-  --with-debug
-  --with-file-aio
-  --with-http_addition_module
-  --with-http_auth_request_module
-  --with-http_dav_module
-  --with-http_degradation_module
-  --with-http_flv_module
-  --with-http_geoip_module
-  --with-http_gunzip_module
-  --with-http_gzip_static_module
-  --with-http_mp4_module
-  --with-http_realip_module
-  --with-http_secure_link_module
-  --with-http_slice_module
-  --with-http_ssl_module
-  --with-http_stub_status_module
-  --with-http_sub_module
-  --with-http_v2_module
-  --with-mail
-  --with-mail_ssl_module
-  --with-pcre-jit
-  --with-stream
-  --with-stream_geoip_module
-  --with-stream_realip_module
-  --with-stream_ssl_module
-  --with-stream_ssl_preread_module
-  --with-threads
-)
-
-_mainline_flags=(
-)
-
-build() {
-  cd $provides-$pkgver
-  ./configure \
---prefix=/etc/nginx \
---conf-path=/etc/nginx/nginx.conf \
---sbin-path=/usr/bin/nginx \
---pid-path=/run/nginx.pid \
---lock-path=/run/lock/nginx.lock \
---user=http \
---group=http \
---http-log-path=/var/log/nginx/access.log \
---error-log-path=stderr \
---http-client-body-temp-path=/var/lib/nginx/client-body \
---http-proxy-temp-path=/var/lib/nginx/proxy \
---http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
---http-scgi-temp-path=/var/lib/nginx/scgi \
---http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
---with-cc-opt="$CFLAGS $CPPFLAGS" \
---with-ld-opt="$LDFLAGS" \
-${_common_flags[@]} \
-${_mainline_flags[@]}
-
-  make
-}
-
-package() {
-  cd $provides-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
-
-  for i in ftdetect indent syntax; do
-install -Dm644 contrib/vim/$i/nginx.vim \
-  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
-  done
-}

Copied: nginx-mainline/repos/community-x86_64/PKGBUILD (from rev 674622, 
nginx-mainline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-11 18:03:40 UTC (rev 674623)
@@ -0,0 +1,132 @@
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+

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

2020-08-11 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, August 11, 2020 @ 18:02:33
  Author: grazzolini
Revision: 674620

upgpkg: nginx-mainline 1.19.2-1

Modified:
  nginx-mainline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-11 18:02:09 UTC (rev 674619)
+++ PKGBUILD2020-08-11 18:02:33 UTC (rev 674620)
@@ -4,7 +4,7 @@
 # Contributor: Drew DeVault
 
 pkgname=nginx-mainline
-pkgver=1.19.1
+pkgver=1.19.2
 pkgrel=1
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('x86_64')
@@ -27,11 +27,11 @@
 service
 logrotate)
 validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('d14e03b34c47a07d0dd109f8e33c54c3'
+md5sums=('3dc55f6451ed6f819f1c796f4e5e9617'
  'SKIP'
  'ef491e760e7c1ffec9ca25441a150c83'
  '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('e5448e3fd84c53e96db27329e41baa48c21be4169436eda3704012d0e5de15d938f6aa64dc07cb50002c2173b00fb88db4b1a9061d5f47fa7011ffd524a8ba23'
+sha512sums=('f6232d58a91db486cf36cc027ab84f04ad25aeafe586051043f0f3295dad5f475094f7cedad142ef0f56ff15a0971d700d6ec34b68697c462364650c49be8fcc'
 'SKIP'
 
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
 
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')


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

2020-07-17 Thread Giancarlo Razzolini via arch-commits
Date: Friday, July 17, 2020 @ 13:23:26
  Author: grazzolini
Revision: 664283

archrelease: copy trunk to community-x86_64

Added:
  primus_vk/repos/community-x86_64/PKGBUILD
(from rev 664282, primus_vk/trunk/PKGBUILD)
Deleted:
  primus_vk/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-17 13:23:02 UTC (rev 664282)
+++ PKGBUILD2020-07-17 13:23:26 UTC (rev 664283)
@@ -1,52 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Maintainer: Bruno Pagani 
-
-pkgname=primus_vk
-pkgver=1.4
-pkgrel=1
-pkgdesc="Nvidia Vulkan offloading for Bumblebee"
-arch=(x86_64)
-url="https://github.com/felixdoerre/primus_vk;
-license=(BSD)
-depends=(nvidia-utils bumblebee vulkan-icd-loader primus)
-makedepends=(git vulkan-validation-layers)
-_tag=209e9aae582b77617dc97162e59e8abe39899a83 # git rev-parse v${pkgver}
-source=("git+${url}.git#tag=${_tag}?signed")
-sha512sums=(SKIP)
-validpgpkeys=(0A9D381479E6D19CE365E301FD4066F7DB7D993F) # Felix Dörre 

-
-_backports=(
-)
-
-_reverts=(
-)
-
-prepare() {
-  cd ${pkgname}
-
-  local _c
-  
-  for _c in "${_backports[@]}"; do
-git log --oneline -1 "${_c}"  
-git cherry-pick -n "${_c}"
-  done
-
-  for _c in "${_reverts[@]}"; do
-git log --oneline -1 "${_c}"
-git revert -n "${_c}"
-  done
-}
-
-build() {
-  cd ${pkgname}
-
-  export CXXFLAGS+=' -DNV_DRIVER_PATH=\"/usr/lib/libGLX_nvidia.so.0\"'
-  make all primus_vk_diag
-}
-
-package() {
-  cd ${pkgname}
-  make PREFIX="${pkgdir}"/usr install
-  install -Dm755 primus_vk_diag -t "${pkgdir}"/usr/bin/
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: primus_vk/repos/community-x86_64/PKGBUILD (from rev 664282, 
primus_vk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-17 13:23:26 UTC (rev 664283)
@@ -0,0 +1,52 @@
+# Maintainer: Giancarlo Razzolini 
+# Maintainer: Bruno Pagani 
+
+pkgname=primus_vk
+pkgver=1.5
+pkgrel=1
+pkgdesc="Nvidia Vulkan offloading for Bumblebee"
+arch=(x86_64)
+url="https://github.com/felixdoerre/primus_vk;
+license=(BSD)
+depends=(nvidia-utils bumblebee vulkan-icd-loader primus)
+makedepends=(git vulkan-validation-layers)
+_tag=95db3c717926839f8c8066b6d64992ffbb8f7e0b # git rev-parse v${pkgver}
+source=("git+${url}.git#tag=${_tag}?signed")
+sha512sums=('SKIP')
+validpgpkeys=(0A9D381479E6D19CE365E301FD4066F7DB7D993F) # Felix Dörre 

+
+_backports=(
+)
+
+_reverts=(
+)
+
+prepare() {
+  cd ${pkgname}
+
+  local _c
+  
+  for _c in "${_backports[@]}"; do
+git log --oneline -1 "${_c}"  
+git cherry-pick -n "${_c}"
+  done
+
+  for _c in "${_reverts[@]}"; do
+git log --oneline -1 "${_c}"
+git revert -n "${_c}"
+  done
+}
+
+build() {
+  cd ${pkgname}
+
+  export CXXFLAGS+=' -DNV_DRIVER_PATH=\"/usr/lib/libGLX_nvidia.so.0\"'
+  make all primus_vk_diag
+}
+
+package() {
+  cd ${pkgname}
+  make PREFIX="${pkgdir}"/usr install
+  install -Dm755 primus_vk_diag -t "${pkgdir}"/usr/bin/
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2020-07-17 Thread Giancarlo Razzolini via arch-commits
Date: Friday, July 17, 2020 @ 13:23:02
  Author: grazzolini
Revision: 664282

upgpkg: primus_vk 1.5-1

Modified:
  primus_vk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-17 13:20:13 UTC (rev 664281)
+++ PKGBUILD2020-07-17 13:23:02 UTC (rev 664282)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=primus_vk
-pkgver=1.4
+pkgver=1.5
 pkgrel=1
 pkgdesc="Nvidia Vulkan offloading for Bumblebee"
 arch=(x86_64)
@@ -10,9 +10,9 @@
 license=(BSD)
 depends=(nvidia-utils bumblebee vulkan-icd-loader primus)
 makedepends=(git vulkan-validation-layers)
-_tag=209e9aae582b77617dc97162e59e8abe39899a83 # git rev-parse v${pkgver}
+_tag=95db3c717926839f8c8066b6d64992ffbb8f7e0b # git rev-parse v${pkgver}
 source=("git+${url}.git#tag=${_tag}?signed")
-sha512sums=(SKIP)
+sha512sums=('SKIP')
 validpgpkeys=(0A9D381479E6D19CE365E301FD4066F7DB7D993F) # Felix Dörre 

 
 _backports=(


[arch-commits] Commit in lib32-primus_vk/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2020-07-17 Thread Giancarlo Razzolini via arch-commits
Date: Friday, July 17, 2020 @ 13:20:13
  Author: grazzolini
Revision: 664281

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-primus_vk/repos/multilib-x86_64/PKGBUILD
(from rev 664280, lib32-primus_vk/trunk/PKGBUILD)
Deleted:
  lib32-primus_vk/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-17 13:19:40 UTC (rev 664280)
+++ PKGBUILD2020-07-17 13:20:13 UTC (rev 664281)
@@ -1,55 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Maintainer: Bruno Pagani 
-
-_pkgname=primus_vk
-pkgname=lib32-primus_vk
-pkgver=1.4
-pkgrel=1
-pkgdesc="Nvidia Vulkan offloading for Bumblebee"
-arch=(x86_64)
-url="https://github.com/felixdoerre/primus_vk;
-license=(BSD)
-depends=(lib32-nvidia-utils bumblebee lib32-vulkan-icd-loader lib32-primus)
-makedepends=(git vulkan-validation-layers)
-_tag=209e9aae582b77617dc97162e59e8abe39899a83 # git rev-parse v${pkgver}
-source=("git+${url}.git#tag=${_tag}?signed")
-sha512sums=(SKIP)
-validpgpkeys=(0A9D381479E6D19CE365E301FD4066F7DB7D993F) # Felix Dörre 

-
-
-_backports=(
-)
-
-_reverts=(
-)
-
-prepare() {
-  cd ${_pkgname}
-
-  local _c
-  
-  for _c in "${_backports[@]}"; do
-git log --oneline -1 "${_c}"  
-git cherry-pick -n "${_c}"
-  done
-
-  for _c in "${_reverts[@]}"; do
-git log --oneline -1 "${_c}"
-git revert -n "${_c}"
-  done
-}
-
-build() {
-  cd ${_pkgname}
-
-  export CXXFLAGS+=' -m32 -DNV_DRIVER_PATH=\"/usr/lib32/libGLX_nvidia.so.0\"'
-  make
-}
-
-package() {
-  cd ${_pkgname}
-
-  install -D libnv_vulkan_wrapper.so -t "${pkgdir}"/usr/lib32/
-  install -D libprimus_vk.so -t "${pkgdir}"/usr/lib32/
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/"${pkgname}"/
-}

Copied: lib32-primus_vk/repos/multilib-x86_64/PKGBUILD (from rev 664280, 
lib32-primus_vk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-17 13:20:13 UTC (rev 664281)
@@ -0,0 +1,55 @@
+# Maintainer: Giancarlo Razzolini 
+# Maintainer: Bruno Pagani 
+
+_pkgname=primus_vk
+pkgname=lib32-primus_vk
+pkgver=1.5
+pkgrel=1
+pkgdesc="Nvidia Vulkan offloading for Bumblebee"
+arch=(x86_64)
+url="https://github.com/felixdoerre/primus_vk;
+license=(BSD)
+depends=(lib32-nvidia-utils bumblebee lib32-vulkan-icd-loader lib32-primus)
+makedepends=(git vulkan-validation-layers)
+_tag=95db3c717926839f8c8066b6d64992ffbb8f7e0b # git rev-parse v${pkgver}
+source=("git+${url}.git#tag=${_tag}?signed")
+sha512sums=('SKIP')
+validpgpkeys=(0A9D381479E6D19CE365E301FD4066F7DB7D993F) # Felix Dörre 

+
+
+_backports=(
+)
+
+_reverts=(
+)
+
+prepare() {
+  cd ${_pkgname}
+
+  local _c
+  
+  for _c in "${_backports[@]}"; do
+git log --oneline -1 "${_c}"  
+git cherry-pick -n "${_c}"
+  done
+
+  for _c in "${_reverts[@]}"; do
+git log --oneline -1 "${_c}"
+git revert -n "${_c}"
+  done
+}
+
+build() {
+  cd ${_pkgname}
+
+  export CXXFLAGS+=' -m32 -DNV_DRIVER_PATH=\"/usr/lib32/libGLX_nvidia.so.0\"'
+  make
+}
+
+package() {
+  cd ${_pkgname}
+
+  install -D libnv_vulkan_wrapper.so -t "${pkgdir}"/usr/lib32/
+  install -D libprimus_vk.so -t "${pkgdir}"/usr/lib32/
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/"${pkgname}"/
+}


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

2020-07-17 Thread Giancarlo Razzolini via arch-commits
Date: Friday, July 17, 2020 @ 13:19:40
  Author: grazzolini
Revision: 664280

upgpkg: lib32-primus_vk 1.5-1

Modified:
  lib32-primus_vk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-17 12:54:36 UTC (rev 664279)
+++ PKGBUILD2020-07-17 13:19:40 UTC (rev 664280)
@@ -3,7 +3,7 @@
 
 _pkgname=primus_vk
 pkgname=lib32-primus_vk
-pkgver=1.4
+pkgver=1.5
 pkgrel=1
 pkgdesc="Nvidia Vulkan offloading for Bumblebee"
 arch=(x86_64)
@@ -11,9 +11,9 @@
 license=(BSD)
 depends=(lib32-nvidia-utils bumblebee lib32-vulkan-icd-loader lib32-primus)
 makedepends=(git vulkan-validation-layers)
-_tag=209e9aae582b77617dc97162e59e8abe39899a83 # git rev-parse v${pkgver}
+_tag=95db3c717926839f8c8066b6d64992ffbb8f7e0b # git rev-parse v${pkgver}
 source=("git+${url}.git#tag=${_tag}?signed")
-sha512sums=(SKIP)
+sha512sums=('SKIP')
 validpgpkeys=(0A9D381479E6D19CE365E301FD4066F7DB7D993F) # Felix Dörre 

 
 


[arch-commits] Commit in mkinitcpio/repos (3 files)

2020-07-16 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, July 16, 2020 @ 14:17:21
  Author: grazzolini
Revision: 391964

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/
  mkinitcpio/repos/testing-any/PKGBUILD
(from rev 391963, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/testing-any/mkinitcpio.install
(from rev 391963, mkinitcpio/trunk/mkinitcpio.install)

+
 PKGBUILD   |   39 +++
 mkinitcpio.install |   15 +++
 2 files changed, 54 insertions(+)

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 391963, 
mkinitcpio/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-07-16 14:17:21 UTC (rev 391964)
@@ -0,0 +1,39 @@
+# Maintainer: Giancarlo Razzolini 
+# Maintainer: Dave Reisner 
+# Maintainer: Thomas Bächler 
+
+pkgname=mkinitcpio
+pkgver=28
+pkgrel=1
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url="https://projects.archlinux.org/mkinitcpio.git/;
+license=('GPL')
+depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod' 'util-linux>=2.23' 
'libarchive' 'coreutils'
+ 'bash' 'diffutils' 'findutils' 'grep' 'filesystem>=2011.10-1' 'gzip' 
'systemd')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'lz4: Use lz4 compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+provides=('initramfs')
+backup=('etc/mkinitcpio.conf')
+source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+install=mkinitcpio.install
+sha256sums=('bf83a158786d272d8046a4dd48bfcc343ec37de2cae0ae65c59132a45744808c'
+'SKIP')
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'   # Dave Reisner
+  '86CFFCA918CF3AF47147588051E8B148AC34'   # Evangelos Foutras
+  'ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB')  # Giancarlo 
Razzolini
+
+# prepare() {
+#   cd $pkgname-$pkgver
+# }
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}

Copied: mkinitcpio/repos/testing-any/mkinitcpio.install (from rev 391963, 
mkinitcpio/trunk/mkinitcpio.install)
===
--- testing-any/mkinitcpio.install  (rev 0)
+++ testing-any/mkinitcpio.install  2020-07-16 14:17:21 UTC (rev 391964)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+post_upgrade() {
+  if [ "$(vercmp 0.9.0 "$2")" -eq 1 ]; then
+printf '==> If your /usr is on a separate partition, you must add the 
"usr" hook\n'
+printf 'to /etc/mkinitcpio.conf and regenerate your images before 
rebooting\n'
+  fi
+
+  if [ "$(vercmp 0.12.0 "$2")" -eq 1 ]; then
+printf '==> The "block" hook has replaced several hooks:\n'
+printf '   fw, sata, pata, scsi, virtio, mmc, usb\n'
+printf 'Replace any and all of these in /etc/mkinitcpio.conf with a 
single\n'
+printf 'instance of the "block" hook\n'
+  fi
+}


[arch-commits] Commit in mkinitcpio/trunk (2 files)

2020-07-16 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, July 16, 2020 @ 14:16:57
  Author: grazzolini
Revision: 391963

upgpkg: mkinitcpio 28-1

Modified:
  mkinitcpio/trunk/PKGBUILD
Deleted:
  mkinitcpio/trunk/0001-mkinitcpio-remove-preset-pacsave.patch

-+
 0001-mkinitcpio-remove-preset-pacsave.patch |   59 --
 PKGBUILD|   20 +++-
 2 files changed, 8 insertions(+), 71 deletions(-)

Deleted: 0001-mkinitcpio-remove-preset-pacsave.patch
===
--- 0001-mkinitcpio-remove-preset-pacsave.patch 2020-07-16 13:18:23 UTC (rev 
391962)
+++ 0001-mkinitcpio-remove-preset-pacsave.patch 2020-07-16 14:16:57 UTC (rev 
391963)
@@ -1,59 +0,0 @@
-diff --git a/libalpm/scripts/mkinitcpio-remove 
b/libalpm/scripts/mkinitcpio-remove
-index 86838e4..17b4b31 100644
 a/libalpm/scripts/mkinitcpio-remove
-+++ b/libalpm/scripts/mkinitcpio-remove
-@@ -2,6 +2,20 @@
- 
- package=0
- 
-+process_preset() {
-+if [[ -n "${pkgbase}" && -e $preset ]]; then
-+if ! cmp $preset > /dev/null 2>&1 <(sed "s|%PKGBASE%|${pkgbase}|g" 
/usr/share/mkinitcpio/hook.preset); then
-+if [[ ! -e $preset.pacsave ]]; then
-+# save the preset as pacsave
-+mv $preset $preset.pacsave && return 0
-+fi
-+else
-+# remove the preset
-+rm $preset && return 0
-+fi
-+fi
-+}
-+
- while read -r line; do
- if [[ $line != */vmlinuz ]]; then
- # triggers when it's a change to usr/lib/initcpio/*
-@@ -23,17 +37,25 @@ while read -r line; do
- # remove the installed kernel
- rm $kernel
- fi
--if [[ -e $preset ]]; then
--# remove the preset
--rm $preset
-+
-+process_preset "${pkgbase}" $preset
-+
-+if [[ -e $initramfs ]]; then
-+# remove the main image
-+rm $initramfs
- fi
--if [[ -e $initramfs && -e $fallback_initramfs ]]; then
--# remove the images
--rm $initramfs $fallback_initramfs
-+if [[ -e $fallback_initramfs ]]; then
-+# remove the fallback image
-+rm $fallback_initramfs
- fi
- done
- 
- if (( package )) && compgen -G /etc/mkinitcpio.d/"*.preset" > /dev/null; then
--# remove all presets
--rm /etc/mkinitcpio.d/*.preset
-+shopt -s nullglob
-+for preset in /etc/mkinitcpio.d/*.preset; do
-+pkgbase=${preset##*/}
-+pkgbase=${pkgbase%.preset}
-+process_preset "${pkgbase}" $preset
-+done
-+shopt -u nullglob
- fi

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 13:18:23 UTC (rev 391962)
+++ PKGBUILD2020-07-16 14:16:57 UTC (rev 391963)
@@ -3,8 +3,8 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=mkinitcpio
-pkgver=27
-pkgrel=4
+pkgver=28
+pkgrel=1
 pkgdesc="Modular initramfs image creation utility"
 arch=('any')
 url="https://projects.archlinux.org/mkinitcpio.git/;
@@ -18,21 +18,17 @@
 'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
 provides=('initramfs')
 backup=('etc/mkinitcpio.conf')
-source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
-"0001-mkinitcpio-remove-preset-pacsave.patch")
+source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
 install=mkinitcpio.install
-sha256sums=('e6bff1cb78b677538eb9aace900b715fd59de8fc210b74fb9d899dfaa32bc354'
-'SKIP'
-'845569fa760f70c868ecb3dc8ae9667287970526dddaf403fdafcb716e8b3d51')
+sha256sums=('bf83a158786d272d8046a4dd48bfcc343ec37de2cae0ae65c59132a45744808c'
+'SKIP')
 validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'   # Dave Reisner
   '86CFFCA918CF3AF47147588051E8B148AC34'   # Evangelos Foutras
   'ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB')  # Giancarlo 
Razzolini
 
-prepare() {
-  cd $pkgname-$pkgver
-  # Apply 0001-mkinitcpio-remove-preset-pacsave.patch
-  patch -Np1 < $srcdir/0001-mkinitcpio-remove-preset-pacsave.patch
-}
+# prepare() {
+#   cd $pkgname-$pkgver
+# }
 
 check() {
   make -C "$pkgname-$pkgver" check


[arch-commits] Commit in mkinitcpio/repos (4 files)

2020-07-16 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, July 16, 2020 @ 12:51:11
  Author: grazzolini
Revision: 391960

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/
  mkinitcpio/repos/testing-any/0001-mkinitcpio-remove-preset-pacsave.patch
(from rev 391959, 
mkinitcpio/trunk/0001-mkinitcpio-remove-preset-pacsave.patch)
  mkinitcpio/repos/testing-any/PKGBUILD
(from rev 391959, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/testing-any/mkinitcpio.install
(from rev 391959, mkinitcpio/trunk/mkinitcpio.install)

-+
 0001-mkinitcpio-remove-preset-pacsave.patch |   59 ++
 PKGBUILD|   43 ++
 mkinitcpio.install  |   15 ++
 3 files changed, 117 insertions(+)

Copied: 
mkinitcpio/repos/testing-any/0001-mkinitcpio-remove-preset-pacsave.patch (from 
rev 391959, mkinitcpio/trunk/0001-mkinitcpio-remove-preset-pacsave.patch)
===
--- testing-any/0001-mkinitcpio-remove-preset-pacsave.patch 
(rev 0)
+++ testing-any/0001-mkinitcpio-remove-preset-pacsave.patch 2020-07-16 
12:51:11 UTC (rev 391960)
@@ -0,0 +1,59 @@
+diff --git a/libalpm/scripts/mkinitcpio-remove 
b/libalpm/scripts/mkinitcpio-remove
+index 86838e4..17b4b31 100644
+--- a/libalpm/scripts/mkinitcpio-remove
 b/libalpm/scripts/mkinitcpio-remove
+@@ -2,6 +2,20 @@
+ 
+ package=0
+ 
++process_preset() {
++if [[ -n "${pkgbase}" && -e $preset ]]; then
++if ! cmp $preset > /dev/null 2>&1 <(sed "s|%PKGBASE%|${pkgbase}|g" 
/usr/share/mkinitcpio/hook.preset); then
++if [[ ! -e $preset.pacsave ]]; then
++# save the preset as pacsave
++mv $preset $preset.pacsave && return 0
++fi
++else
++# remove the preset
++rm $preset && return 0
++fi
++fi
++}
++
+ while read -r line; do
+ if [[ $line != */vmlinuz ]]; then
+ # triggers when it's a change to usr/lib/initcpio/*
+@@ -23,17 +37,25 @@ while read -r line; do
+ # remove the installed kernel
+ rm $kernel
+ fi
+-if [[ -e $preset ]]; then
+-# remove the preset
+-rm $preset
++
++process_preset "${pkgbase}" $preset
++
++if [[ -e $initramfs ]]; then
++# remove the main image
++rm $initramfs
+ fi
+-if [[ -e $initramfs && -e $fallback_initramfs ]]; then
+-# remove the images
+-rm $initramfs $fallback_initramfs
++if [[ -e $fallback_initramfs ]]; then
++# remove the fallback image
++rm $fallback_initramfs
+ fi
+ done
+ 
+ if (( package )) && compgen -G /etc/mkinitcpio.d/"*.preset" > /dev/null; then
+-# remove all presets
+-rm /etc/mkinitcpio.d/*.preset
++shopt -s nullglob
++for preset in /etc/mkinitcpio.d/*.preset; do
++pkgbase=${preset##*/}
++pkgbase=${pkgbase%.preset}
++process_preset "${pkgbase}" $preset
++done
++shopt -u nullglob
+ fi

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 391959, 
mkinitcpio/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-07-16 12:51:11 UTC (rev 391960)
@@ -0,0 +1,43 @@
+# Maintainer: Giancarlo Razzolini 
+# Maintainer: Dave Reisner 
+# Maintainer: Thomas Bächler 
+
+pkgname=mkinitcpio
+pkgver=27
+pkgrel=4
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url="https://projects.archlinux.org/mkinitcpio.git/;
+license=('GPL')
+depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod' 'util-linux>=2.23' 
'libarchive' 'coreutils'
+ 'bash' 'diffutils' 'findutils' 'grep' 'filesystem>=2011.10-1' 'gzip' 
'systemd')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'lz4: Use lz4 compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+provides=('initramfs')
+backup=('etc/mkinitcpio.conf')
+source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
+"0001-mkinitcpio-remove-preset-pacsave.patch")
+install=mkinitcpio.install
+sha256sums=('e6bff1cb78b677538eb9aace900b715fd59de8fc210b74fb9d899dfaa32bc354'
+'SKIP'
+'845569fa760f70c868ecb3dc8ae9667287970526dddaf403fdafcb716e8b3d51')
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'   # Dave Reisner
+  '86CFFCA918CF3AF47147588051E8B148AC34'   # Evangelos Foutras
+  'ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB')  # Giancarlo 
Razzolini
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Apply 0001-mkinitcpio-remove-preset-pacsave.patch
+  patch -Np1 < 

[arch-commits] Commit in mkinitcpio/trunk (0002-mkinitcpio-fix-builtin.patch PKGBUILD)

2020-07-16 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, July 16, 2020 @ 12:50:14
  Author: grazzolini
Revision: 391959

upgpkg: mkinitcpio 27-4

Revert the patch for FS#65725

Modified:
  mkinitcpio/trunk/PKGBUILD
Deleted:
  mkinitcpio/trunk/0002-mkinitcpio-fix-builtin.patch

---+
 0002-mkinitcpio-fix-builtin.patch |   29 -
 PKGBUILD  |   11 +++
 2 files changed, 3 insertions(+), 37 deletions(-)

Deleted: 0002-mkinitcpio-fix-builtin.patch
===
--- 0002-mkinitcpio-fix-builtin.patch   2020-07-16 10:46:45 UTC (rev 391958)
+++ 0002-mkinitcpio-fix-builtin.patch   2020-07-16 12:50:14 UTC (rev 391959)
@@ -1,29 +0,0 @@
-From 30dbfc2770cb49cb3babfb750205b126d7d88791 Mon Sep 17 00:00:00 2001
-From: Morten Linderud 
-Date: Thu, 20 Feb 2020 09:44:29 +0100
-Subject: [PATCH] [functions] Ignore modinfo built-in modules
-
-modinfo have started reporting filenames as "(builtin)" on built-in
-modules. Ignore these and continue with other modules.
-
-Fixes: https://bugs.archlinux.org/task/65564
-Introduced in: 
https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/commit/?id=e7e2cb61fa9f1db3429d91ef6accff549500d268
-
-Signed-off-by: Morten Linderud 

- functions | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/functions b/functions
-index f407c82..1c72b56 100644
 a/functions
-+++ b/functions
-@@ -371,7 +371,7 @@ add_module() {
- target=${1%.ko*} target=${target//-/_}
- 
- # skip expensive stuff if this module has already been added
--(( _addedmodules["$target"] == 1 )) && return
-+(( _addedmodules["$target"] > 0 )) && return
- 
- while IFS=':= ' read -r -d '' field value; do
- case "$field" in

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 10:46:45 UTC (rev 391958)
+++ PKGBUILD2020-07-16 12:50:14 UTC (rev 391959)
@@ -4,7 +4,7 @@
 
 pkgname=mkinitcpio
 pkgver=27
-pkgrel=3
+pkgrel=4
 pkgdesc="Modular initramfs image creation utility"
 arch=('any')
 url="https://projects.archlinux.org/mkinitcpio.git/;
@@ -19,13 +19,11 @@
 provides=('initramfs')
 backup=('etc/mkinitcpio.conf')
 
source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
-"0001-mkinitcpio-remove-preset-pacsave.patch"
-"0002-mkinitcpio-fix-builtin.patch")
+"0001-mkinitcpio-remove-preset-pacsave.patch")
 install=mkinitcpio.install
 sha256sums=('e6bff1cb78b677538eb9aace900b715fd59de8fc210b74fb9d899dfaa32bc354'
 'SKIP'
-'845569fa760f70c868ecb3dc8ae9667287970526dddaf403fdafcb716e8b3d51'
-'d097f3df15ba9fefd3771f9f784e1c31c8d5ff1d9d6885a46fc6b5188e419796')
+'845569fa760f70c868ecb3dc8ae9667287970526dddaf403fdafcb716e8b3d51')
 validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'   # Dave Reisner
   '86CFFCA918CF3AF47147588051E8B148AC34'   # Evangelos Foutras
   'ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB')  # Giancarlo 
Razzolini
@@ -34,9 +32,6 @@
   cd $pkgname-$pkgver
   # Apply 0001-mkinitcpio-remove-preset-pacsave.patch
   patch -Np1 < $srcdir/0001-mkinitcpio-remove-preset-pacsave.patch
-
-  # Apply 0002-mkinitcpio-fix-builtin.patch
-  patch -Np1 < $srcdir/0002-mkinitcpio-fix-builtin.patch
 }
 
 check() {


[arch-commits] Commit in keepass/repos (7 files)

2020-07-15 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, July 15, 2020 @ 18:48:55
  Author: grazzolini
Revision: 663984

archrelease: copy trunk to community-staging-any

Added:
  keepass/repos/community-staging-any/
  keepass/repos/community-staging-any/PKGBUILD
(from rev 663983, keepass/trunk/PKGBUILD)
  keepass/repos/community-staging-any/keepass
(from rev 663983, keepass/trunk/keepass)
  keepass/repos/community-staging-any/keepass.1
(from rev 663983, keepass/trunk/keepass.1)
  keepass/repos/community-staging-any/keepass.desktop
(from rev 663983, keepass/trunk/keepass.desktop)
  keepass/repos/community-staging-any/keepass.install
(from rev 663983, keepass/trunk/keepass.install)
  keepass/repos/community-staging-any/keepass.xml
(from rev 663983, keepass/trunk/keepass.xml)

-+
 PKGBUILD|   84 ++
 keepass |2 +
 keepass.1   |   23 ++
 keepass.desktop |   12 +++
 keepass.install |   14 +
 5 files changed, 135 insertions(+)

Copied: keepass/repos/community-staging-any/PKGBUILD (from rev 663983, 
keepass/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-07-15 18:48:55 UTC (rev 663984)
@@ -0,0 +1,84 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Timothy Redaelli 
+# Contributor: Kirill "reflexing" Churin 
+# Contributor: Andrej Gelenberg 
+
+pkgname=keepass
+pkgver=2.45
+pkgrel=4
+pkgdesc='Easy-to-use password manager for Windows, Linux, Mac OS X and mobile 
devices'
+arch=('any')
+url='https://keepass.info/'
+license=('GPL')
+depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'gtk-update-icon-cache')
+makedepends=('icoutils')
+optdepends=('xdotool: if you want to use auto-type'
+'xsel: clipboard operations in order to work around Mono clipboard 
bugs')
+install="$pkgname.install"
+source=("https://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip;
+"https://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc;
+'keepass'
+'keepass.1'
+'keepass.desktop'
+'keepass.xml')
+
+md5sums=('478501f7f1799abb4b5be1cb3489f5b3'
+ 'SKIP'
+ '628e383dbfcaeefa996e4677dca35ff1'
+ 'a2a0dff1ebf0aaf6cbfb6f8566f4a010'
+ 'e910fabacfd7a5f7caa7c1fac0b5254e'
+ 'cc97882563fbaa0d5db44c9089990f12')
+sha1sums=('dbe109b4efd640b4631a882857d67aea6dacdeeb'
+  'SKIP'
+  '3142e80316feb67d687da993b919a634e89e6b1b'
+  '9dadd198ff3c66a21f7df4192f5516556f6cfbd5'
+  '22fab942358986679549e5263e1d4dabd23085f5'
+  '6c7b7884bfb27d36d62fbd99df4ebc3004361df4')
+sha256sums=('d59898183af11d94f1c00f70cca09ee51d58f7597d13560fc9f9c629e6b89e1f'
+'SKIP'
+'05e63a028198ff32d4b26a892923a821066541f0cf798f5be8c138739bc22fbe'
+'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
+'1d5420e8babce5f4bbb3c68bdffe3bc0d3c3be25ad689138cd02fa14edd89140'
+'3d017c17a8788166c644e2460ba3596fd503f300342561921201fe5f69e5d194')
+validpgpkeys=('D95044283EE948D911E8B606A4F762DC58C6F98E')
+
+prepare() {
+  # Extract icons
+  icotool -x KeePass/KeePass.ico
+
+  pushd Build &>/dev/null
+  LANG=en_US.UTF-8 bash PrepMonoDev.sh
+  popd &>/dev/null
+}
+
+build() {
+  xbuild /target:KeePass /property:Configuration=Release
+  cp Ext/KeePass.exe.config Build/KeePass/Release/
+}
+
+package() {
+  install -dm755 "$pkgdir"/usr/bin
+  install -dm755 "$pkgdir"/usr/share/keepass/XSL
+
+  install -Dm755 keepass "$pkgdir"/usr/bin/keepass
+  install -Dm755 Build/KeePass/Release/KeePass.exe 
"$pkgdir"/usr/share/keepass/KeePass.exe
+  install -Dm755 Ext/KeePass.config.xml 
"$pkgdir"/usr/share/keepass/KeePass.config.xml
+  install -Dm755 Ext/KeePass.exe.config 
"$pkgdir"/usr/share/keepass/KeePass.exe.config
+
+  install -m644 Ext/XSL/* "$pkgdir"/usr/share/keepass/XSL
+
+  install -Dm644 keepass.1 "$pkgdir"/usr/share/man/man1/keepass.1
+
+  # Proper installation of .desktop file
+  desktop-file-install -m 644 --dir "$pkgdir"/usr/share/applications/ 
keepass.desktop
+
+  # Install icons
+  for size in 16 32 48 256; do
+install -Dm644 \
+KeePass_*_${size}x${size}x32.png \
+"$pkgdir"/usr/share/icons/hicolor/${size}x${size}/apps/keepass.png
+  done
+
+  # Needed for postinst with xdg-utils
+  install -Dm644 keepass.xml "$pkgdir"/usr/share/mime/packages/keepass.xml
+}

Copied: keepass/repos/community-staging-any/keepass (from rev 663983, 
keepass/trunk/keepass)
===
--- community-staging-any/keepass   (rev 0)
+++ community-staging-any/keepass   2020-07-15 18:48:55 UTC (rev 663984)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec mono --verify-all /usr/share/keepass/KeePass.exe "$@"

Copied: 

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

2020-07-15 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, July 15, 2020 @ 18:47:26
  Author: grazzolini
Revision: 663983

upgpkg: keepass 2.45-4

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-15 18:37:29 UTC (rev 663982)
+++ PKGBUILD2020-07-15 18:47:26 UTC (rev 663983)
@@ -5,7 +5,7 @@
 
 pkgname=keepass
 pkgver=2.45
-pkgrel=3
+pkgrel=4
 pkgdesc='Easy-to-use password manager for Windows, Linux, Mac OS X and mobile 
devices'
 arch=('any')
 url='https://keepass.info/'


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

2020-07-15 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, July 15, 2020 @ 18:37:29
  Author: grazzolini
Revision: 663982

upgpkg: keepass 2.45-3

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-15 16:22:33 UTC (rev 663981)
+++ PKGBUILD2020-07-15 18:37:29 UTC (rev 663982)
@@ -5,7 +5,7 @@
 
 pkgname=keepass
 pkgver=2.45
-pkgrel=2
+pkgrel=3
 pkgdesc='Easy-to-use password manager for Windows, Linux, Mac OS X and mobile 
devices'
 arch=('any')
 url='https://keepass.info/'


[arch-commits] Commit in mono/repos (4 files)

2020-07-15 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, July 15, 2020 @ 18:33:10
  Author: grazzolini
Revision: 391943

archrelease: copy trunk to staging-x86_64

Added:
  mono/repos/staging-x86_64/
  mono/repos/staging-x86_64/PKGBUILD
(from rev 391942, mono/trunk/PKGBUILD)
  mono/repos/staging-x86_64/mono.binfmt.d
(from rev 391942, mono/trunk/mono.binfmt.d)
  mono/repos/staging-x86_64/mono.install
(from rev 391942, mono/trunk/mono.install)

---+
 PKGBUILD  |  109 
 mono.binfmt.d |1 
 mono.install  |7 +++
 3 files changed, 117 insertions(+)

Copied: mono/repos/staging-x86_64/PKGBUILD (from rev 391942, 
mono/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-07-15 18:33:10 UTC (rev 391943)
@@ -0,0 +1,109 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolinit 
+# Contributor: Daniel Isenmann 
+# Contributor: Brice Carpentier 
+
+pkgname=mono
+_gitcommit=5d03a6fe116b6ab1570ba2c67933813ede00a0d4
+pkgver=6.10.0.104
+pkgrel=1
+pkgdesc='Free implementation of the .NET platform including runtime and 
compiler'
+url='https://www.mono-project.com/'
+arch=('x86_64')
+license=('GPL' 'LGPL2.1' 'MPL')
+depends=('zlib' 'libgdiplus>=4.2' 'sh' 'python' 'ca-certificates')
+makedepends=('cmake' 'git')
+provides=('monodoc')
+conflicts=('monodoc')
+install=mono.install
+source=(${pkgname}::"git+https://github.com/mono/mono#commit=${_gitcommit};
+git+https://github.com/mono/aspnetwebstack
+git+https://github.com/mono/Newtonsoft.Json
+git+https://github.com/mono/cecil
+git+https://github.com/mono/rx
+git+https://github.com/mono/ikvm-fork
+git+https://github.com/mono/ikdasm
+git+https://github.com/mono/reference-assemblies
+git+https://github.com/mono/NUnitLite
+git+https://github.com/mono/NuGet.BuildTasks
+git+https://github.com/mono/boringssl
+git+https://github.com/mono/corefx
+git+https://github.com/mono/bockbuild
+git+https://github.com/mono/linker
+git+https://github.com/mono/roslyn-binaries
+git+https://github.com/mono/corert
+git+https://github.com/mono/xunit-binaries
+git+https://github.com/mono/api-doc-tools
+git+https://github.com/mono/api-snapshot
+mono.binfmt.d)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'9a657fc153ef4ce23bf5fc369a26bf4a124e9304bde3744d04c583c54ca47425')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/^v//;s/^mono-//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  git submodule init
+  git config submodule."external/aspnetwebstack".url "${srcdir}/aspnetwebstack"
+  git config submodule."external/Newtonsoft.Json".url 
"${srcdir}/Newtonsoft.Json"
+  git config submodule."external/cecil".url "${srcdir}/cecil"
+  git config submodule."external/rx".url "${srcdir}/rx"
+  git config submodule."external/ikvm".url "${srcdir}/ikvm-fork"
+  git config submodule."external/ikdasm".url "${srcdir}/ikdasm"
+  git config submodule."external/reference-assemblies".url 
"${srcdir}/reference-assemblies"
+  git config submodule."external/nunit-lite".url "${srcdir}/NUnitLite"
+  git config submodule."external/nuget-buildtasks".url 
"${srcdir}/NuGet.BuildTasks"
+  git config submodule."external/cecil-legacy".url "${srcdir}/cecil"
+  git config submodule."external/boringssl".url "${srcdir}/boringssl"
+  git config submodule."external/corefx".url "${srcdir}/corefx"
+  git config submodule."external/bockbuild".url "${srcdir}/bockbuild"
+  git config submodule."external/linker".url "${srcdir}/linker"
+  git config submodule."external/roslyn-binaries".url 
"${srcdir}/roslyn-binaries"
+  git config submodule."external/corert".url "${srcdir}/corert"
+  git config submodule."external/xunit-binaries".url "${srcdir}/xunit-binaries"
+  git config submodule."external/api-doc-tools".url "${srcdir}/api-doc-tools"
+  git config submodule."external/api-snapshot".url "${srcdir}/api-snapshot"
+  git submodule update --recursive
+}
+
+build() {
+  cd ${pkgname}
+  ./autogen.sh \
+--prefix=/usr \
+--sysconfdir=/etc \
+--bindir=/usr/bin \
+--sbindir=/usr/bin \
+--with-mcs-docs=no
+  make
+  make -C mcs/jay
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+  make -C mcs/jay DESTDIR="${pkgdir}" prefix=/usr INSTALL=../../install-sh 
install
+  install -Dm 644 "${srcdir}/mono.binfmt.d" 
"${pkgdir}/usr/lib/binfmt.d/mono.conf"
+}
+
+# vim: ts=2 sw=2 et:

Copied: 

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

2020-07-15 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, July 15, 2020 @ 18:32:33
  Author: grazzolini
Revision: 391942

upgpkg: mono 6.10.0.104-1

Modified:
  mono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-15 18:25:07 UTC (rev 391941)
+++ PKGBUILD2020-07-15 18:32:33 UTC (rev 391942)
@@ -4,8 +4,8 @@
 # Contributor: Brice Carpentier 
 
 pkgname=mono
-_gitcommit=1d0d939dc30a5b56f478bc9f097cab146276b9af
-pkgver=6.8.0.123
+_gitcommit=5d03a6fe116b6ab1570ba2c67933813ede00a0d4
+pkgver=6.10.0.104
 pkgrel=1
 pkgdesc='Free implementation of the .NET platform including runtime and 
compiler'
 url='https://www.mono-project.com/'


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

2020-07-14 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, July 14, 2020 @ 12:57:56
  Author: grazzolini
Revision: 663752

archrelease: copy trunk to community-any

Added:
  streamlink/repos/community-any/PKGBUILD
(from rev 663751, streamlink/trunk/PKGBUILD)
Deleted:
  streamlink/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-14 12:57:24 UTC (rev 663751)
+++ PKGBUILD2020-07-14 12:57:56 UTC (rev 663752)
@@ -1,40 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Josip Ponjavic 
-
-pkgname=streamlink
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
-arch=('any')
-url='https://streamlink.github.io/'
-license=('BSD')
-depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
-checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
-makedepends=("python-"{recommonmark,setuptools,sphinx})
-optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('203f3e2ac724b5964f8abffa9d1e769453702294e3d03b6877c6eb49f96fc11f'
-'SKIP')
-sha512sums=('6b54ec5d9234c1657fad711a61160ca883df409eb1e54cbe7e4a72a2eca36590ab73916ea88162f8fcf057345ae9f5e55c6591ff11088be0c2c3168ad905d458'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export STREAMLINK_USE_PYCOUNTRY="true"
-  python setup.py build
-  python setup.py build_sphinx -b man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 build/sphinx/man/streamlink.1 \
-"$pkgdir/usr/share/man/man1/streamlink.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: streamlink/repos/community-any/PKGBUILD (from rev 663751, 
streamlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-14 12:57:56 UTC (rev 663752)
@@ -0,0 +1,41 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Josip Ponjavic 
+
+pkgname=streamlink
+pkgver=1.5.0
+pkgrel=2
+pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
+arch=('any')
+url='https://streamlink.github.io/'
+license=('BSD')
+depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
+checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
+makedepends=("python-"{recommonmark,setuptools,sphinx})
+optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
+sha256sums=('203f3e2ac724b5964f8abffa9d1e769453702294e3d03b6877c6eb49f96fc11f'
+'SKIP')
+sha512sums=('6b54ec5d9234c1657fad711a61160ca883df409eb1e54cbe7e4a72a2eca36590ab73916ea88162f8fcf057345ae9f5e55c6591ff11088be0c2c3168ad905d458'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export STREAMLINK_USE_PYCOUNTRY="true"
+  python setup.py build
+  python setup.py build_sphinx -b man
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  export PYTHONHASSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 build/sphinx/man/streamlink.1 \
+"$pkgdir/usr/share/man/man1/streamlink.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-14 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, July 14, 2020 @ 12:57:24
  Author: grazzolini
Revision: 663751

upgpkg: streamlink 1.5.0-2

Make streamlink reproducible

Modified:
  streamlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-14 12:47:11 UTC (rev 663750)
+++ PKGBUILD2020-07-14 12:57:24 UTC (rev 663751)
@@ -3,7 +3,7 @@
 
 pkgname=streamlink
 pkgver=1.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
 arch=('any')
 url='https://streamlink.github.io/'
@@ -33,6 +33,7 @@
 
 package() {
   cd "$pkgname-$pkgver"
+  export PYTHONHASSEED=0
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 build/sphinx/man/streamlink.1 \
 "$pkgdir/usr/share/man/man1/streamlink.1"


[arch-commits] Commit in dhcpcd/repos (6 files)

2020-07-14 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, July 14, 2020 @ 12:21:12
  Author: grazzolini
Revision: 391907

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 391906, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 391906, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 391906, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 391906, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 391906, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   74 ++
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |2 +
 dhcpcd_.service |   15 ++
 5 files changed, 105 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 391906, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-14 12:21:12 UTC (rev 391907)
@@ -0,0 +1,74 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.1.4
+pkgrel=2
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('5fe133e5497d8af6d26bd6e6b8dd48ab12d124d6cc4cefe6de6536ff97f76820'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'df33c69a79fb30895217db8fe6a46ad0658a70b32a280bc91fc04a09b584fa62'
+'e0cef3b7cbe047393e4ecb60369f67d2d73e616b56cea9401070f2aff28a7434')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 391906, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-07-14 12:21:12 UTC (rev 391907)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.sysusers (from rev 391906, 
dhcpcd/trunk/dhcpcd.sysusers)
===
--- testing-x86_64/dhcpcd.sysusers  (rev 0)
+++ testing-x86_64/dhcpcd.sysusers  2020-07-14 12:21:12 UTC (rev 391907)
@@ -0,0 +1 @@
+u dhcpcd - "dhcpcd privilege separation" /var/lib/dhcpcd

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles (from rev 391906, 
dhcpcd/trunk/dhcpcd.tmpfiles)
===
--- testing-x86_64/dhcpcd.tmpfiles  (rev 0)
+++ testing-x86_64/dhcpcd.tmpfiles  2020-07-14 12:21:12 UTC (rev 391907)
@@ -0,0 +1,2 @@
+d /var/lib/dhcpcd 0700 dhcpcd dhcpcd -
+d /run/dhcpcd 0755 dhcpcd dhcpcd -

Copied: dhcpcd/repos/testing-x86_64/dhcpcd_.service (from rev 391906, 

  1   2   3   4   5   6   7   >