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

2020-08-20 Thread Kyle Keen via arch-commits
Date: Thursday, August 20, 2020 @ 11:02:08
  Author: kkeen
Revision: 685512

archrelease: copy trunk to community-testing-x86_64

Added:
  sthttpd/repos/community-testing-x86_64/
  sthttpd/repos/community-testing-x86_64/PKGBUILD
(from rev 685511, sthttpd/trunk/PKGBUILD)
  sthttpd/repos/community-testing-x86_64/config
(from rev 685511, sthttpd/trunk/config)
  sthttpd/repos/community-testing-x86_64/discreet.patch
(from rev 685511, sthttpd/trunk/discreet.patch)
  sthttpd/repos/community-testing-x86_64/service
(from rev 685511, sthttpd/trunk/service)

+
 PKGBUILD   |   58 +++
 config |6 +
 discreet.patch |   34 
 service|   10 +
 4 files changed, 108 insertions(+)

Copied: sthttpd/repos/community-testing-x86_64/PKGBUILD (from rev 685511, 
sthttpd/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-20 11:02:08 UTC (rev 685512)
@@ -0,0 +1,58 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Damir Perisa 
+# Contributor: Stewart Starbuck 
+
+pkgname=sthttpd
+pkgver=2.27.1
+pkgrel=3
+pkgdesc='Supported fork of the thttpd web server'
+url='https://github.com/blueness/sthttpd'
+license=('custom:BSD')
+arch=('x86_64')
+depends=('libxcrypt')
+backup=('etc/thttpd.conf')
+validpgpkeys=('1FEDFAD9D82C52A53BABDC799384FA6EF52D4BBA')
+source=("$pkgname-$pkgver.tgz::https://github.com/blueness/sthttpd/archive/v2.27.1.tar.gz";
+'discreet.patch'
+'service'
+'config')
+sha256sums=('a1ee2806432eaf5b5dd267a0523701f9f1fa00fefd499d5bec42165a41e05846'
+'be953777f2b5b860f1c5a8c96d8478535fe517d76bd4b76597d743a96c2659cf'
+'6fea42a6876e2a44eff4f76ed64befabe400e5c844b11b782b1507299e5eb986'
+'1f42c7625422944bd035731d264a711f50b47f4e4f58b6c67693f09fabb76350')
+
+conflicts=('thttpd')
+provides=('thttpd')
+replaces=('thttpd')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../discreet.patch
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export WEBDIR=/srv/http
+   export WEBGROUP=root
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rm -fr "${pkgdir}"/srv
+
+   install -Dm644 ../config "${pkgdir}"/etc/thttpd.conf
+   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/thttpd.service
+   install -Dm644 README.md 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+   # Avoid conflicts with Apache
+   mv "${pkgdir}"/usr/bin/htpasswd{,-thttpd}
+   mv "${pkgdir}"/usr/share/man/man1/htpasswd{,-thttpd}.1
+}

Copied: sthttpd/repos/community-testing-x86_64/config (from rev 685511, 
sthttpd/trunk/config)
===
--- community-testing-x86_64/config (rev 0)
+++ community-testing-x86_64/config 2020-08-20 11:02:08 UTC (rev 685512)
@@ -0,0 +1,6 @@
+user=http
+dir=/srv/http
+cgipat=**.cgi
+charset=utf-8
+chroot
+vhost

Copied: sthttpd/repos/community-testing-x86_64/discreet.patch (from rev 685511, 
sthttpd/trunk/discreet.patch)
===
--- community-testing-x86_64/discreet.patch (rev 0)
+++ community-testing-x86_64/discreet.patch 2020-08-20 11:02:08 UTC (rev 
685512)
@@ -0,0 +1,34 @@
+diff -Naur old/src/libhttpd.c new/src/libhttpd.c
+--- old/src/libhttpd.c 2014-10-04 03:43:00.0 +0900
 new/src/libhttpd.c 2015-08-14 17:15:30.081099286 +0900
+@@ -738,7 +738,7 @@
+ (void) my_snprintf( buf, sizeof(buf), "\
+ \n\
+ %d %s\n\
+-\n\
++\n\
+ %d %s\n",
+   status, title, status, title );
+ add_response( hc, buf );
+@@ -763,11 +763,8 @@
+ char buf[1000];
+ 
+ (void) my_snprintf( buf, sizeof(buf), "\
+-\n\
+-%s\n\
+ \n\
+-\n",
+-  SERVER_ADDRESS, EXPOSED_SERVER_SOFTWARE );
++\n" );
+ add_response( hc, buf );
+ }
+ 
+@@ -2768,7 +2765,7 @@
+   (void) fprintf( fp, "\
+ \n\
+ Index of %.80s\n\
+-\n\
++\n\
+ Index of %.80s\n\
+ \n\
+ mode  links  bytes  last-changed  name\n\

Copied: sthttpd/repos/community-testing-x86_64/service (from rev 685511, 
sthttpd/trunk/service)
===
--- community-testing-x86_64/service(rev 0)
+++ community-testing-x86_64/service2020-08-20 11:02:08 UTC (rev 685512)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Tiny HTTP Daemon
+
+[Service]
+PIDFile=/run/thttpd.pid
+ExecStart=/usr/bin/thttpd -D -C /etc/thttpd.conf
+Restart=always
+
+[Install]
+WantedBy=mult

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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:06:40
  Author: mtorromeo
Revision: 685516

archrelease: copy trunk to community-x86_64

Added:
  cockpit/repos/community-x86_64/PKGBUILD
(from rev 685515, cockpit/trunk/PKGBUILD)
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
(from rev 685515, cockpit/trunk/cockpit-ws.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
(from rev 685515, cockpit/trunk/cockpit-wsinstance.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit.pam
(from rev 685515, cockpit/trunk/cockpit.pam)
Deleted:
  cockpit/repos/community-x86_64/PKGBUILD
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
  cockpit/repos/community-x86_64/cockpit.pam

-+
 PKGBUILD|  250 +++---
 cockpit-ws.sysuser.conf |2 
 cockpit-wsinstance.sysuser.conf |2 
 cockpit.pam |   10 -
 4 files changed, 132 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 11:06:33 UTC (rev 685515)
+++ PKGBUILD2020-08-20 11:06:40 UTC (rev 685516)
@@ -1,125 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-# Contributor: Mark Constable 
-# Contributor: Anatol Pomozov 
-
-pkgbase=cockpit
-pkgname=(cockpit cockpit-pcp cockpit-dashboard cockpit-docker cockpit-machines)
-pkgver=225
-pkgrel=1
-pkgdesc='A systemd web based user interface for Linux servers'
-arch=('x86_64')
-url='https://cockpit-project.org/'
-license=(LGPL)
-makedepends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
- git intltool gtk-doc gobject-introspection networkmanager 
libgsystem xmlto npm pcp)
-source=("https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-$pkgver.tar.xz";
-
"https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-cache-$pkgver.tar.xz";
-"cockpit.pam"
-"cockpit-ws.sysuser.conf"
-"cockpit-wsinstance.sysuser.conf")
-sha256sums=('426957b911291b1bdbb7c3d0c986c99375b89939cf9fe8eca6c74d71a70d1a11'
-'6021288b01a45715ad8213630b37d2f66fe9138b0d913e08e28594d9614d1582'
-'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
-'1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
-'46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')
-
-build() {
-  cd cockpit-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname/ \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-dependency-tracking \
---with-appstream-data-packages='[ "archlinux-appstream-data" ]' \
---with-nfs-client-package='"nfs-utils"' \
---with-cockpit-user=cockpit-ws \
---with-cockpit-ws-instance-user=cockpit-wsinstance
-  make all
-}
-
-package_cockpit() {
-  depends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking)
-  backup=('etc/pam.d/cockpit')
-  optdepends=("cockpit-pcp: reading performance metrics"
-  "cockpit-dashboard: dashboard and support for connecting to 
remote hosts"
-  "cockpit-docker: user interface for managing docker containers"
-  "cockpit-podman: user interface for managing podman containers"
-  "cockpit-machines: user interface for managing virtual machines"
-  "udisks2: manage hard disks"
-  "networkmanager: manage network connections"
-  "packagekit: manage packages"
-  "kubernetes: manage cluster")
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir"/usr/{src,lib/firewalld}
-  install -Dm644 "$srcdir"/cockpit.pam "$pkgdir"/etc/pam.d/cockpit
-  install -Dm644 "$srcdir"/cockpit-ws.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-ws.conf
-  install -Dm644 "$srcdir"/cockpit-wsinstance.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-wsinstance.conf
-
-  echo "z /usr/lib/cockpit/cockpit-session - - cockpit-wsinstance -" >> 
"$pkgdir"/usr/lib/tmpfiles.d/cockpit-tempfiles.conf
-
-  # remove unused plugins
-  rm -rf "$pkgdir"/usr/share/cockpit/{selinux,playground,sosreport} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{selinux,sosreport}.metainfo.xml
-
-  # remove plugins packaged separately
-  rm -rf "$pkgdir"/usr/share/cockpit/{pcp,dashboard,docker,machines} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{docker,machines}.metainfo.xml
 \
- "$pkgdir"/usr/lib/cockpit/cockpit-pcp \
- "$pkgdir"/var/lib/pcp
-}
-
-package_cockpit-pcp() {
-  pkgdesc='Cockpit support for reading PCP metrics and loading PCP archives'
-  depends=(cockpit pcp)
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir"/tmp install
-
-  cd "$pkgdir"/tmp

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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:06:33
  Author: mtorromeo
Revision: 685515

upgpkg: cockpit 226-1

Modified:
  cockpit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:02:38 UTC (rev 685514)
+++ PKGBUILD2020-08-20 11:06:33 UTC (rev 685515)
@@ -5,8 +5,8 @@
 
 pkgbase=cockpit
 pkgname=(cockpit cockpit-pcp cockpit-dashboard cockpit-docker cockpit-machines)
-pkgver=225
-pkgrel=2
+pkgver=226
+pkgrel=1
 pkgdesc='A systemd web based user interface for Linux servers'
 arch=('x86_64')
 url='https://cockpit-project.org/'
@@ -18,8 +18,8 @@
 "cockpit.pam"
 "cockpit-ws.sysuser.conf"
 "cockpit-wsinstance.sysuser.conf")
-sha256sums=('426957b911291b1bdbb7c3d0c986c99375b89939cf9fe8eca6c74d71a70d1a11'
-'6021288b01a45715ad8213630b37d2f66fe9138b0d913e08e28594d9614d1582'
+sha256sums=('2f917f1b17a52ffcf957edaf885e2d2f35a267ecd4afcdb1b0e390bb3ce4e0aa'
+'bcf619ae7da6849f02c2fd4f8d2a49e0e4c33e1f392925e83224402e001d7b64'
 'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
 '1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
 '46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')


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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:09:44
  Author: mtorromeo
Revision: 685518

archrelease: copy trunk to community-testing-x86_64

Added:
  cockpit/repos/community-testing-x86_64/PKGBUILD
(from rev 685517, cockpit/trunk/PKGBUILD)
  cockpit/repos/community-testing-x86_64/cockpit-ws.sysuser.conf
(from rev 685517, cockpit/trunk/cockpit-ws.sysuser.conf)
  cockpit/repos/community-testing-x86_64/cockpit-wsinstance.sysuser.conf
(from rev 685517, cockpit/trunk/cockpit-wsinstance.sysuser.conf)
  cockpit/repos/community-testing-x86_64/cockpit.pam
(from rev 685517, cockpit/trunk/cockpit.pam)
Deleted:
  cockpit/repos/community-testing-x86_64/PKGBUILD
  cockpit/repos/community-testing-x86_64/cockpit-ws.sysuser.conf
  cockpit/repos/community-testing-x86_64/cockpit-wsinstance.sysuser.conf
  cockpit/repos/community-testing-x86_64/cockpit.pam

-+
 PKGBUILD|  250 +++---
 cockpit-ws.sysuser.conf |2 
 cockpit-wsinstance.sysuser.conf |2 
 cockpit.pam |   10 -
 4 files changed, 132 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 11:09:37 UTC (rev 685517)
+++ PKGBUILD2020-08-20 11:09:44 UTC (rev 685518)
@@ -1,125 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-# Contributor: Mark Constable 
-# Contributor: Anatol Pomozov 
-
-pkgbase=cockpit
-pkgname=(cockpit cockpit-pcp cockpit-dashboard cockpit-docker cockpit-machines)
-pkgver=225
-pkgrel=2
-pkgdesc='A systemd web based user interface for Linux servers'
-arch=('x86_64')
-url='https://cockpit-project.org/'
-license=(LGPL)
-makedepends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
- git intltool gtk-doc gobject-introspection networkmanager 
libgsystem xmlto npm pcp)
-source=("https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-$pkgver.tar.xz";
-
"https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-cache-$pkgver.tar.xz";
-"cockpit.pam"
-"cockpit-ws.sysuser.conf"
-"cockpit-wsinstance.sysuser.conf")
-sha256sums=('426957b911291b1bdbb7c3d0c986c99375b89939cf9fe8eca6c74d71a70d1a11'
-'6021288b01a45715ad8213630b37d2f66fe9138b0d913e08e28594d9614d1582'
-'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
-'1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
-'46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')
-
-build() {
-  cd cockpit-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname/ \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-dependency-tracking \
---with-appstream-data-packages='[ "archlinux-appstream-data" ]' \
---with-nfs-client-package='"nfs-utils"' \
---with-cockpit-user=cockpit-ws \
---with-cockpit-ws-instance-user=cockpit-wsinstance
-  make all
-}
-
-package_cockpit() {
-  depends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking)
-  backup=('etc/pam.d/cockpit')
-  optdepends=("cockpit-pcp: reading performance metrics"
-  "cockpit-dashboard: dashboard and support for connecting to 
remote hosts"
-  "cockpit-docker: user interface for managing docker containers"
-  "cockpit-podman: user interface for managing podman containers"
-  "cockpit-machines: user interface for managing virtual machines"
-  "udisks2: manage hard disks"
-  "networkmanager: manage network connections"
-  "packagekit: manage packages"
-  "kubernetes: manage cluster")
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir"/usr/{src,lib/firewalld}
-  install -Dm644 "$srcdir"/cockpit.pam "$pkgdir"/etc/pam.d/cockpit
-  install -Dm644 "$srcdir"/cockpit-ws.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-ws.conf
-  install -Dm644 "$srcdir"/cockpit-wsinstance.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-wsinstance.conf
-
-  echo "z /usr/lib/cockpit/cockpit-session - - cockpit-wsinstance -" >> 
"$pkgdir"/usr/lib/tmpfiles.d/cockpit-tempfiles.conf
-
-  # remove unused plugins
-  rm -rf "$pkgdir"/usr/share/cockpit/{selinux,playground,sosreport} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{selinux,sosreport}.metainfo.xml
-
-  # remove plugins packaged separately
-  rm -rf "$pkgdir"/usr/share/cockpit/{pcp,dashboard,docker,machines} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{docker,machines}.metainfo.xml
 \
- "$pkgdir"/usr/lib/cockpit/cockpit-pcp \
- "$pkgdir"/var/lib/pcp
-}
-
-package_cockpit-pcp() {
-  pkgdesc='Cockpit support for reading PCP metrics and loading PCP archives'
-  depends=(cockpit pcp)
-
-  cd cock

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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:09:37
  Author: mtorromeo
Revision: 685517

upgpkg: cockpit 226-2: libxcrypt rebuild

Modified:
  cockpit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:06:40 UTC (rev 685516)
+++ PKGBUILD2020-08-20 11:09:37 UTC (rev 685517)
@@ -6,7 +6,7 @@
 pkgbase=cockpit
 pkgname=(cockpit cockpit-pcp cockpit-dashboard cockpit-docker cockpit-machines)
 pkgver=226
-pkgrel=1
+pkgrel=2
 pkgdesc='A systemd web based user interface for Linux servers'
 arch=('x86_64')
 url='https://cockpit-project.org/'


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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:10:54
  Author: mtorromeo
Revision: 685520

archrelease: copy trunk to community-x86_64

Added:
  cockpit-podman/repos/community-x86_64/PKGBUILD
(from rev 685519, cockpit-podman/trunk/PKGBUILD)
Deleted:
  cockpit-podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 11:10:49 UTC (rev 685519)
+++ PKGBUILD2020-08-20 11:10:54 UTC (rev 685520)
@@ -1,17 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=cockpit-podman
-pkgver=21
-pkgrel=1
-pkgdesc='Cockpit UI for podman containers'
-arch=('x86_64')
-url='https://github.com/cockpit-project/cockpit-podman'
-license=(LGPL)
-depends=(cockpit podman)
-source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('7f9f4d08c5e0f0a0b502af505b86f6eb93a48b0c0958479cc1535b0a240a7768')
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cockpit-podman/repos/community-x86_64/PKGBUILD (from rev 685519, 
cockpit-podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 11:10:54 UTC (rev 685520)
@@ -0,0 +1,17 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=cockpit-podman
+pkgver=22
+pkgrel=1
+pkgdesc='Cockpit UI for podman containers'
+arch=('x86_64')
+url='https://github.com/cockpit-project/cockpit-podman'
+license=(LGPL)
+depends=(cockpit podman)
+source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha256sums=('4b28449d7fb287cff1a15e3e15e47ba5288bbca52308490b590e028fbd5bc56d')
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:10:49
  Author: mtorromeo
Revision: 685519

upgpkg: cockpit-podman 22-1

Modified:
  cockpit-podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:09:44 UTC (rev 685518)
+++ PKGBUILD2020-08-20 11:10:49 UTC (rev 685519)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=cockpit-podman
-pkgver=21
+pkgver=22
 pkgrel=1
 pkgdesc='Cockpit UI for podman containers'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(cockpit podman)
 
source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('7f9f4d08c5e0f0a0b502af505b86f6eb93a48b0c0958479cc1535b0a240a7768')
+sha256sums=('4b28449d7fb287cff1a15e3e15e47ba5288bbca52308490b590e028fbd5bc56d')
 
 package() {
   cd $pkgname


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

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 12:26:45
  Author: eworm
Revision: 394437

archrelease: copy trunk to testing-any

Added:
  archlinux-keyring/repos/testing-any/
  archlinux-keyring/repos/testing-any/PKGBUILD
(from rev 394436, archlinux-keyring/trunk/PKGBUILD)
  archlinux-keyring/repos/testing-any/archlinux-keyring.install
(from rev 394436, archlinux-keyring/trunk/archlinux-keyring.install)

---+
 PKGBUILD  |   26 ++
 archlinux-keyring.install |   20 
 2 files changed, 46 insertions(+)

Copied: archlinux-keyring/repos/testing-any/PKGBUILD (from rev 394436, 
archlinux-keyring/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-08-20 12:26:45 UTC (rev 394437)
@@ -0,0 +1,26 @@
+# Maintainer: Pierre Schmitz 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=archlinux-keyring
+pkgver=20200820
+pkgrel=1
+pkgdesc='Arch Linux PGP keyring'
+arch=(any)
+url='https://projects.archlinux.org/archlinux-keyring.git/'
+license=(GPL)
+install=$pkgname.install
+source=(https://sources.archlinux.org/other/$pkgname/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('2f0fe902583b12291ab52af151a9d5515a2dd46c241c544532ad8120b78d1bdf'
+'SKIP')
+validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'  # Pierre Schmitz 

+  'A314827C4E4250A204CE6E13284FC34C8E4B1A25'  # Thomas Bächler 

+  '86CFFCA918CF3AF47147588051E8B148AC34'  # Evangelos Foutras 

+  'F3691687D867B81B51CE07D9BBE43771487328A9'  # Bartlomiej 
Piotrowski 
+  'BD84DE71F493DF6814B0167254EDC91609BC9183'  # Christian Hesse 

+  'CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E'  # Florian Pritz 

+  'E499C79F53C96A54E572FEE1C06086337C50773E')  # Jelle van der Waa 

+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}

Copied: archlinux-keyring/repos/testing-any/archlinux-keyring.install (from rev 
394436, archlinux-keyring/trunk/archlinux-keyring.install)
===
--- testing-any/archlinux-keyring.install   (rev 0)
+++ testing-any/archlinux-keyring.install   2020-08-20 12:26:45 UTC (rev 
394437)
@@ -0,0 +1,20 @@
+post_upgrade() {
+   if usr/bin/pacman-key -l >/dev/null 2>&1; then
+   usr/bin/pacman-key --populate archlinux
+
+   # Re-enable key of alad
+   # See https://bugs.archlinux.org/task/35478
+   printf 'enable\nquit\n' | LANG=C \
+   gpg --homedir /etc/pacman.d/gnupg \
+   --no-permission-warning --command-fd 0 \
+   --quiet --batch --edit-key \
+   DBE7D3DD8C81D58D0A13D0E76BC26A17B9B7018A \
+   2>/dev/null
+   fi
+}
+
+post_install() {
+   if [ -x usr/bin/pacman-key ]; then
+   post_upgrade
+   fi
+}


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

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 12:26:38
  Author: eworm
Revision: 394436

upgpkg: archlinux-keyring 20200820-1: add kgizdov's new key

Modified:
  archlinux-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 10:25:09 UTC (rev 394435)
+++ PKGBUILD2020-08-20 12:26:38 UTC (rev 394436)
@@ -2,7 +2,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=archlinux-keyring
-pkgver=20200817
+pkgver=20200820
 pkgrel=1
 pkgdesc='Arch Linux PGP keyring'
 arch=(any)
@@ -10,7 +10,7 @@
 license=(GPL)
 install=$pkgname.install
 
source=(https://sources.archlinux.org/other/$pkgname/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('8673af1ae316c957c6c5ce91c30cb65a745531cb10366b83962ae34ccff32f1e'
+sha256sums=('2f0fe902583b12291ab52af151a9d5515a2dd46c241c544532ad8120b78d1bdf'
 'SKIP')
 validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'  # Pierre Schmitz 

   'A314827C4E4250A204CE6E13284FC34C8E4B1A25'  # Thomas Bächler 



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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 12:31:59
  Author: archange
Revision: 685522

archrelease: copy trunk to community-x86_64

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 685521, paraview/trunk/PKGBUILD)
Deleted:
  paraview/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  136 +
 1 file changed, 65 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 12:31:31 UTC (rev 685521)
+++ PKGBUILD2020-08-20 12:31:59 UTC (rev 685522)
@@ -1,71 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Mathieu Westphal 
-# Contributor: Stéphane Gaudreault 
-# Contributor: 
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.8.0
-pkgrel=9
-pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
-arch=(x86_64)
-url="https://www.paraview.org";
-license=(BSD custom)
-depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
- ospray python-numpy cgns protobuf
- double-conversion expat freetype2 gdal glew hdf5 libjpeg jsoncpp
- libjsoncpp.so libxml2 lz4 xz python-mpi4py netcdf libogg libpng pdal
- pugixml libtheora libtiff zlib)
-#gl2ps
-#libharu
-optdepends=(python-matplotlib)
-makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl utf8cpp)
-conflicts=(vtk)
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz"
-
paraview-cgns-4.1.patch::https://gitlab.kitware.com/paraview/paraview/-/commit/3d48a287141eb911b4888440e09c262743b4db3c.patch)
-sha256sums=('219e4107abf40317ce054408e9c3b22fb935d464238c1c00c0161f1c8697a3f9'
-'917485fbff57b922e67e40ee35d265769b05b4b62c397e4c9ce00244f5fd07ae')
-
-prepare() {
-cd ParaView-v${pkgver/R/-R}
-patch -p1 -i ../paraview-cgns-4.1.patch
-}
-
-build() {
-# Note regarding use of system dependencies:
-# GL2PS has non-upstreamed patches
-# LIBHARU blocked by https://github.com/libharu/libharu/pull/157
-export CPPFLAGS+=" -DH5_USE_110_API"
-cmake -B build -S ParaView-v${pkgver/R/-R} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_GDAL=ON \
--DPARAVIEW_ENABLE_MOTIONFX=ON \
--DPARAVIEW_ENABLE_PDAL=ON \
--DPARAVIEW_ENABLE_VISITBRIDGE=ON \
--DPARAVIEW_ENABLE_XDMF3=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_PYTHON=ON \
--DPARAVIEW_USE_RAYTRACING=ON \
--DPARAVIEW_BUILD_WITH_EXTERNAL=ON \
--DVTK_MODULE_USE_EXTERNAL_VTK_gl2ps=OFF \
--DVTK_MODULE_USE_EXTERNAL_VTK_libharu=OFF \
--DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
--DVTKm_ENABLE_MPI=ON \
--DVTK_MODULE_ENABLE_VTK_IOGDAL=YES \
--DVTK_MODULE_ENABLE_VTK_IOPDAL=YES \
--GNinja
-
-ninja -C build ${MAKEFLAGS}
-}
-
-package() {
-DESTDIR="${pkgdir}" ninja -C build install
-
-# Install license
-install -Dm644 ParaView-v${pkgver/R/-R}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: paraview/repos/community-x86_64/PKGBUILD (from rev 685521, 
paraview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 12:31:59 UTC (rev 685522)
@@ -0,0 +1,65 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Mathieu Westphal 
+# Contributor: Stéphane Gaudreault 
+# Contributor: 
+
+_pkg=paraview
+_mpi=openmpi
+pkgname=${_pkg}
+#-${_mpi}
+pkgver=5.8.1
+pkgrel=1
+pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
+arch=(x86_64)
+url="https://www.paraview.org";
+license=(BSD custom)
+depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
+ ospray python-numpy cgns protobuf
+ double-conversion expat freetype2 gdal gl2ps glew hdf5 libjpeg jsoncpp
+ libjsoncpp.so libharu libxml2 lz4 xz python-mpi4py netcdf libogg
+ libpng pdal pugixml libtheora libtiff zlib)
+optdepends=(python-matplotlib)
+makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl utf8cpp)
+conflicts=(vtk)
+source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz"
+
paraview-cgns-4.1.patch::https://gitlab.kitware.com/paraview/paraview/-/commit/3d48a287141eb911b4888440e09c262743b4db3c.patch)
+sha256sums=('7653950392a0d7c0287c26f1d3a25cdbaa11baa7524b0af0e6a1a0d7d487d034'
+'917485fbff57b922e67e40ee35d265769b05b4b62c397e4c9ce00244f5fd07ae')
+
+prepare() {
+cd ParaView-v${pkgver/R/-R}
+patch -p1 -i ../paraview-cgns-4.1.patch
+# We have a patched libharu
+sed -i "s|2.4.0|2.3.0|" VTK/ThirdParty/libharu/CMakeLists.txt
+}
+
+build() {
+export CPPFLAGS+=" -DH5_USE_110_API"
+cmake -B build -S Par

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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 12:31:31
  Author: archange
Revision: 685521

upgpkg: paraview 5.8.1-1

Now build against system gl2ps and libharu

Modified:
  paraview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:10:54 UTC (rev 685520)
+++ PKGBUILD2020-08-20 12:31:31 UTC (rev 685521)
@@ -7,8 +7,8 @@
 _mpi=openmpi
 pkgname=${_pkg}
 #-${_mpi}
-pkgver=5.8.0
-pkgrel=9
+pkgver=5.8.1
+pkgrel=1
 pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
 arch=(x86_64)
 url="https://www.paraview.org";
@@ -15,28 +15,25 @@
 license=(BSD custom)
 depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
  ospray python-numpy cgns protobuf
- double-conversion expat freetype2 gdal glew hdf5 libjpeg jsoncpp
- libjsoncpp.so libxml2 lz4 xz python-mpi4py netcdf libogg libpng pdal
- pugixml libtheora libtiff zlib)
-#gl2ps
-#libharu
+ double-conversion expat freetype2 gdal gl2ps glew hdf5 libjpeg jsoncpp
+ libjsoncpp.so libharu libxml2 lz4 xz python-mpi4py netcdf libogg
+ libpng pdal pugixml libtheora libtiff zlib)
 optdepends=(python-matplotlib)
 makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl utf8cpp)
 conflicts=(vtk)
 source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz"
 
paraview-cgns-4.1.patch::https://gitlab.kitware.com/paraview/paraview/-/commit/3d48a287141eb911b4888440e09c262743b4db3c.patch)
-sha256sums=('219e4107abf40317ce054408e9c3b22fb935d464238c1c00c0161f1c8697a3f9'
+sha256sums=('7653950392a0d7c0287c26f1d3a25cdbaa11baa7524b0af0e6a1a0d7d487d034'
 '917485fbff57b922e67e40ee35d265769b05b4b62c397e4c9ce00244f5fd07ae')
 
 prepare() {
 cd ParaView-v${pkgver/R/-R}
 patch -p1 -i ../paraview-cgns-4.1.patch
+# We have a patched libharu
+sed -i "s|2.4.0|2.3.0|" VTK/ThirdParty/libharu/CMakeLists.txt
 }
 
 build() {
-# Note regarding use of system dependencies:
-# GL2PS has non-upstreamed patches
-# LIBHARU blocked by https://github.com/libharu/libharu/pull/157
 export CPPFLAGS+=" -DH5_USE_110_API"
 cmake -B build -S ParaView-v${pkgver/R/-R} \
 -DCMAKE_BUILD_TYPE=Release \
@@ -52,8 +49,6 @@
 -DPARAVIEW_USE_PYTHON=ON \
 -DPARAVIEW_USE_RAYTRACING=ON \
 -DPARAVIEW_BUILD_WITH_EXTERNAL=ON \
--DVTK_MODULE_USE_EXTERNAL_VTK_gl2ps=OFF \
--DVTK_MODULE_USE_EXTERNAL_VTK_libharu=OFF \
 -DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
 -DVTKm_ENABLE_MPI=ON \
 -DVTK_MODULE_ENABLE_VTK_IOGDAL=YES \
@@ -65,7 +60,6 @@
 
 package() {
 DESTDIR="${pkgdir}" ninja -C build install
-
-# Install license
-install -Dm644 ParaView-v${pkgver/R/-R}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+# Fix licenses install
+mv "${pkgdir}"/usr/share/licenses/{ParaView,paraview}
 }


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

2020-08-20 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, August 20, 2020 @ 14:09:00
  Author: svenstaro
Revision: 685523

upgpkg: tokei 12.0.4-1

Modified:
  tokei/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 12:31:59 UTC (rev 685522)
+++ PKGBUILD2020-08-20 14:09:00 UTC (rev 685523)
@@ -1,6 +1,6 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=tokei
-pkgver=12.0.3
+pkgver=12.0.4
 pkgrel=1
 pkgdesc='A blazingly fast CLOC (Count Lines Of Code) program'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 depends=('gcc-libs')
 makedepends=('rust' 'cargo')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/XAMPPRocky/tokei/archive/v${pkgver}.tar.gz";)
-sha512sums=('160aaa9fb51d1494c97fa327d7b17736d33c99ab7ec32783da3fe20a6490594c01e68bd82fd466b68464fa5f9b662fd864c1c7b211b044bfa8d4a54362a10d7d')
+sha512sums=('f5810ca93746f4e269a60eaad0cd07950a54a0c5b73c7256f79ae882373ebe733af25adaf7ed133a9e591ab2bfafd170a20669b80a1e09acc283e1ecbd98626e')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2020-08-20 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, August 20, 2020 @ 14:09:10
  Author: svenstaro
Revision: 685524

archrelease: copy trunk to community-x86_64

Added:
  tokei/repos/community-x86_64/PKGBUILD
(from rev 685523, tokei/trunk/PKGBUILD)
Deleted:
  tokei/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 14:09:00 UTC (rev 685523)
+++ PKGBUILD2020-08-20 14:09:10 UTC (rev 685524)
@@ -1,31 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=tokei
-pkgver=12.0.3
-pkgrel=1
-pkgdesc='A blazingly fast CLOC (Count Lines Of Code) program'
-arch=('x86_64')
-url="https://github.com/XAMPPRocky/tokei";
-license=('MIT' 'Apache')
-depends=('gcc-libs')
-makedepends=('rust' 'cargo')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/XAMPPRocky/tokei/archive/v${pkgver}.tar.gz";)
-sha512sums=('160aaa9fb51d1494c97fa327d7b17736d33c99ab7ec32783da3fe20a6490594c01e68bd82fd466b68464fa5f9b662fd864c1c7b211b044bfa8d4a54362a10d7d')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  cargo build --release --locked --features all
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  cargo test --release --locked --features all
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -Dm755 target/release/tokei "${pkgdir}/usr/bin/tokei"
-
-  install -Dm644 LICENCE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-  install -Dm644 LICENCE-APACHE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-APACHE"
-}

Copied: tokei/repos/community-x86_64/PKGBUILD (from rev 685523, 
tokei/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 14:09:10 UTC (rev 685524)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=tokei
+pkgver=12.0.4
+pkgrel=1
+pkgdesc='A blazingly fast CLOC (Count Lines Of Code) program'
+arch=('x86_64')
+url="https://github.com/XAMPPRocky/tokei";
+license=('MIT' 'Apache')
+depends=('gcc-libs')
+makedepends=('rust' 'cargo')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/XAMPPRocky/tokei/archive/v${pkgver}.tar.gz";)
+sha512sums=('f5810ca93746f4e269a60eaad0cd07950a54a0c5b73c7256f79ae882373ebe733af25adaf7ed133a9e591ab2bfafd170a20669b80a1e09acc283e1ecbd98626e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  cargo build --release --locked --features all
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  cargo test --release --locked --features all
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -Dm755 target/release/tokei "${pkgdir}/usr/bin/tokei"
+
+  install -Dm644 LICENCE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+  install -Dm644 LICENCE-APACHE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-APACHE"
+}


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

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Thursday, August 20, 2020 @ 14:58:18
  Author: eschwartz
Revision: 685525

upgpkg: python-pytz 2020.1-2: devendor the embedded zoneinfo database in favor 
of the tzdata package

Added:
  python-pytz/trunk/0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch
Modified:
  python-pytz/trunk/PKGBUILD

+
 0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch |   69 +++
 PKGBUILD   |   15 +-
 2 files changed, 81 insertions(+), 3 deletions(-)

Added: 0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch
===
--- 0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch  
(rev 0)
+++ 0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch  2020-08-20 
14:58:18 UTC (rev 685525)
@@ -0,0 +1,69 @@
+From 74baf31e5505d03a71df49894d57e1011e771eb9 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Mon, 4 May 2020 15:26:01 -0400
+Subject: [PATCH] Use the system zoneinfo from the tzdata package.
+
+We don't need to ship these vendored blobs as our system copy works
+quite well.
+
+Signed-off-by: Eli Schwartz 
+---
+ src/pytz/__init__.py | 13 +
+ src/pytz/tzfile.py   |  2 +-
+ src/setup.py |  2 --
+ 3 files changed, 2 insertions(+), 15 deletions(-)
+
+diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
+index c25a1d1..3cc59ef 100644
+--- a/src/pytz/__init__.py
 b/src/pytz/__init__.py
+@@ -92,19 +92,8 @@ def open_resource(name):
+ if zoneinfo_dir is not None:
+ filename = os.path.join(zoneinfo_dir, *name_parts)
+ else:
+-filename = os.path.join(os.path.dirname(__file__),
++filename = os.path.join('/usr', 'share',
+ 'zoneinfo', *name_parts)
+-if not os.path.exists(filename):
+-# http://bugs.launchpad.net/bugs/383171 - we avoid using this
+-# unless absolutely necessary to help when a broken version of
+-# pkg_resources is installed.
+-try:
+-from pkg_resources import resource_stream
+-except ImportError:
+-resource_stream = None
+-
+-if resource_stream is not None:
+-return resource_stream(__name__, 'zoneinfo/' + name)
+ return open(filename, 'rb')
+ 
+ 
+diff --git a/src/pytz/tzfile.py b/src/pytz/tzfile.py
+index 25117f3..98eba05 100644
+--- a/src/pytz/tzfile.py
 b/src/pytz/tzfile.py
+@@ -126,7 +126,7 @@ def build_tzinfo(zone, fp):
+ if __name__ == '__main__':
+ import os.path
+ from pprint import pprint
+-base = os.path.join(os.path.dirname(__file__), 'zoneinfo')
++base = os.path.join('/usr', 'share', 'zoneinfo')
+ tz = build_tzinfo('Australia/Melbourne',
+   open(os.path.join(base, 'Australia', 'Melbourne'), 
'rb'))
+ tz = build_tzinfo('US/Eastern',
+diff --git a/src/setup.py b/src/setup.py
+index fa9a592..675618c 100644
+--- a/src/setup.py
 b/src/setup.py
+@@ -22,8 +22,6 @@ for dirpath, dirnames, filenames in 
os.walk(os.path.join('pytz', 'zoneinfo')):
+  for filename in filenames])
+ package_data = {'pytz': resources}
+ 
+-assert len(resources) > 10, 'zoneinfo files not found!'
+-
+ setup(
+ name='pytz',
+ version=pytz.VERSION,
+-- 
+2.26.2
+

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 14:09:10 UTC (rev 685524)
+++ PKGBUILD2020-08-20 14:58:18 UTC (rev 685525)
@@ -5,15 +5,24 @@
 
 pkgname=('python-pytz' 'python2-pytz')
 pkgver=2020.1
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://pypi.python.org/pypi/pytz";
 license=("MIT")
 makedepends=('python' 'python2')
-source=("https://pypi.io/packages/source/p/pytz/pytz-${pkgver}.tar.gz";)
-sha512sums=('4f652ab400bac0bd83ed305be7540094e674029a0cbde7da280adfd911b8c0a44023799b7c61971a5a61a1d6e3992c5b621e5e95bbfe962f310d5f26d4fda3ce')
+source=("https://pypi.io/packages/source/p/pytz/pytz-${pkgver}.tar.gz";
+"0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch")
+sha512sums=('4f652ab400bac0bd83ed305be7540094e674029a0cbde7da280adfd911b8c0a44023799b7c61971a5a61a1d6e3992c5b621e5e95bbfe962f310d5f26d4fda3ce'
+
'3cbd497313c3049a2ae04298118aefb6dfa9ec4626078c665c95c13a78ae944b33a68813aea0c53b02b0532b64221cca4a0cd2153bd91b3760916bc3c0f6df8f')
 validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
 
+prepare() {
+cd pytz-$pkgver
+
+patch -p2 -i ../0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch
+rm -r pytz/zoneinfo/
+}
+
 build(){
 cp -rf pytz-$pkgver pytz2-$pkgver
 }


[arch-commits] Commit in python-pytz/repos/community-any (3 files)

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Thursday, August 20, 2020 @ 14:58:36
  Author: eschwartz
Revision: 685526

archrelease: copy trunk to community-any

Added:
  
python-pytz/repos/community-any/0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch
(from rev 685525, 
python-pytz/trunk/0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch)
  python-pytz/repos/community-any/PKGBUILD
(from rev 685525, python-pytz/trunk/PKGBUILD)
Deleted:
  python-pytz/repos/community-any/PKGBUILD

+
 0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch |   69 +++
 PKGBUILD   |  107 +--
 2 files changed, 127 insertions(+), 49 deletions(-)

Copied: 
python-pytz/repos/community-any/0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch
 (from rev 685525, 
python-pytz/trunk/0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch)
===
--- 0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch  
(rev 0)
+++ 0001-Use-the-system-zoneinfo-from-the-tzdata-package.patch  2020-08-20 
14:58:36 UTC (rev 685526)
@@ -0,0 +1,69 @@
+From 74baf31e5505d03a71df49894d57e1011e771eb9 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Mon, 4 May 2020 15:26:01 -0400
+Subject: [PATCH] Use the system zoneinfo from the tzdata package.
+
+We don't need to ship these vendored blobs as our system copy works
+quite well.
+
+Signed-off-by: Eli Schwartz 
+---
+ src/pytz/__init__.py | 13 +
+ src/pytz/tzfile.py   |  2 +-
+ src/setup.py |  2 --
+ 3 files changed, 2 insertions(+), 15 deletions(-)
+
+diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
+index c25a1d1..3cc59ef 100644
+--- a/src/pytz/__init__.py
 b/src/pytz/__init__.py
+@@ -92,19 +92,8 @@ def open_resource(name):
+ if zoneinfo_dir is not None:
+ filename = os.path.join(zoneinfo_dir, *name_parts)
+ else:
+-filename = os.path.join(os.path.dirname(__file__),
++filename = os.path.join('/usr', 'share',
+ 'zoneinfo', *name_parts)
+-if not os.path.exists(filename):
+-# http://bugs.launchpad.net/bugs/383171 - we avoid using this
+-# unless absolutely necessary to help when a broken version of
+-# pkg_resources is installed.
+-try:
+-from pkg_resources import resource_stream
+-except ImportError:
+-resource_stream = None
+-
+-if resource_stream is not None:
+-return resource_stream(__name__, 'zoneinfo/' + name)
+ return open(filename, 'rb')
+ 
+ 
+diff --git a/src/pytz/tzfile.py b/src/pytz/tzfile.py
+index 25117f3..98eba05 100644
+--- a/src/pytz/tzfile.py
 b/src/pytz/tzfile.py
+@@ -126,7 +126,7 @@ def build_tzinfo(zone, fp):
+ if __name__ == '__main__':
+ import os.path
+ from pprint import pprint
+-base = os.path.join(os.path.dirname(__file__), 'zoneinfo')
++base = os.path.join('/usr', 'share', 'zoneinfo')
+ tz = build_tzinfo('Australia/Melbourne',
+   open(os.path.join(base, 'Australia', 'Melbourne'), 
'rb'))
+ tz = build_tzinfo('US/Eastern',
+diff --git a/src/setup.py b/src/setup.py
+index fa9a592..675618c 100644
+--- a/src/setup.py
 b/src/setup.py
+@@ -22,8 +22,6 @@ for dirpath, dirnames, filenames in 
os.walk(os.path.join('pytz', 'zoneinfo')):
+  for filename in filenames])
+ package_data = {'pytz': resources}
+ 
+-assert len(resources) > 10, 'zoneinfo files not found!'
+-
+ setup(
+ name='pytz',
+ version=pytz.VERSION,
+-- 
+2.26.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 14:58:18 UTC (rev 685525)
+++ PKGBUILD2020-08-20 14:58:36 UTC (rev 685526)
@@ -1,49 +0,0 @@
-# Maintainer: Stefan Husmann 
-# Maintainer: Jelle van der Waa 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgname=('python-pytz' 'python2-pytz')
-pkgver=2020.1
-pkgrel=1
-arch=('any')
-url="https://pypi.python.org/pypi/pytz";
-license=("MIT")
-makedepends=('python' 'python2')
-source=("https://pypi.io/packages/source/p/pytz/pytz-${pkgver}.tar.gz";)
-sha512sums=('4f652ab400bac0bd83ed305be7540094e674029a0cbde7da280adfd911b8c0a44023799b7c61971a5a61a1d6e3992c5b621e5e95bbfe962f310d5f26d4fda3ce')
-validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
-
-build(){
-cp -rf pytz-$pkgver pytz2-$pkgver
-}
-
-check(){
-cd pytz-$pkgver/pytz/tests
-
-python3 test_tzinfo.py
-python2 test_tzinfo.py
-}
-
-package_python-pytz(){
-depends=('python')
-pkgdesc="Cross platform time zone library for Python"
-
-cd pytz-$pkgver
-
-python3 setup.py install --root=$pkgdir/
-
-install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-
-package_python2-pytz(){
-depends=('python2')
-pkg

[arch-commits] Commit in python-dephell-argparse/trunk (PKGBUILD)

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Thursday, August 20, 2020 @ 15:13:24
  Author: eschwartz
Revision: 685528

python-dephell-argparse: unify with other dephell packages

merge styles
use PyPI tarballs to avoid circular build dependencies

Modified:
  python-dephell-argparse/trunk/PKGBUILD

--+
 PKGBUILD |   37 ++---
 1 file changed, 18 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:13:18 UTC (rev 685527)
+++ PKGBUILD2020-08-20 15:13:24 UTC (rev 685528)
@@ -1,3 +1,4 @@
+# Maintainer: Eli Schwartz 
 # Maintainer: Jelle van der Waa 
 
 _pkgname=dephell_argparse
@@ -5,33 +6,31 @@
 pkgver=0.1.2
 pkgrel=1
 pkgdesc='Argparse with groups, commands, colors, and fuzzy matching'
-arch=(any)
+arch=('any')
+url="https://github.com/dephell/${_pkgname}";
 license=('MIT')
-url='https://github.com/dephell/dephell_argparse'
-depends=(python)
-makedepends=(python-dephell)
-checkdepends=(python-pytest)
-source=($pkgname-$pkgver.tar.gz::https://github.com/dephell/dephell_argparse/archive/v.$pkgver.tar.gz)
-sha512sums=('8750cfcc484956a16209b1fc539a031a43fb308fa06a90442b54f486fee69ef09da0f5262072260a9b8de2654d45c14aa971a1aaa59093759bf06dd9b65f65a4')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+sha512sums=('6c33dd01e3fccfe52085d21bfffe61204748e0ec926652adf9f59c3ac6c4d3123ef40b129fae980f3ef75c48311fa2db347c9fdb003c9b5ae295ca9a4e02179e')
+b2sums=('860320e63469c4e9317f68403388090d0e58cea608966a03064422c003c01b11cdc86b096b96f7fa9f33629a135962142072e98bb4a870d12fb57fccce4f0f51')
 
-prepare() {
-  cd ${_pkgname}-v.${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
 
-build() {
-  cd ${_pkgname}-v.${pkgver}
-  python3 setup.py build
+python setup.py build
 }
 
 check() {
-  cd ${_pkgname}-v.${pkgver}
-  python -m pytest tests
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
 }
 
 package() {
-  cd ${_pkgname}-v.${pkgver}
-  python setup.py install --root="$pkgdir" --optimize=1
+cd "${srcdir}"/${_pkgname}-${pkgver}
 
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:13:18
  Author: felixonmars
Revision: 685527

upgpkg: python-hypothesis 5.27.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 14:58:36 UTC (rev 685526)
+++ PKGBUILD2020-08-20 15:13:18 UTC (rev 685527)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.26.1
+pkgver=5.27.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -20,7 +20,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions' 'python-black')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('b8df15df0e3b615c3e621005a7fd1ef183b67f2fba4d16aaec22577af2b5f3dec6d98cb15d32f998d2aa185fcad16324df1d62affe7647c5e78259b42c550511')
+sha512sums=('973ab33c69d2db58ca3550335be3cc4196ccf532ccc2c0aeb0b54459201904c06f289a9f6faa3bfa77f6704a6f43e253e34453110cda750a2a1a19a851038dda')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:13:28
  Author: felixonmars
Revision: 685529

archrelease: copy trunk to community-any

Added:
  python-hypothesis/repos/community-any/PKGBUILD
(from rev 685528, python-hypothesis/trunk/PKGBUILD)
Deleted:
  python-hypothesis/repos/community-any/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 15:13:24 UTC (rev 685528)
+++ PKGBUILD2020-08-20 15:13:28 UTC (rev 685529)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=5.26.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org";
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions' 'python-black')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('b8df15df0e3b615c3e621005a7fd1ef183b67f2fba4d16aaec22577af2b5f3dec6d98cb15d32f998d2aa185fcad16324df1d62affe7647c5e78259b42c550511')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 685528, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 15:13:28 UTC (rev 685529)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=5.27.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org";
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions' 'python-black')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
+sha512sums=('973ab33c69d2db58ca3550335be3cc4196ccf532ccc2c0aeb0b54459201904c06f289a9f6faa3bfa77f6704a6f43e253e34453110cda750a2a1a19a851038dda')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+}
+
+check() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
+}
+
+package() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in python-dephell-argparse/trunk (PKGBUILD)

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Thursday, August 20, 2020 @ 15:16:02
  Author: eschwartz
Revision: 685530

upgpkg: python-dephell-argparse 0.1.3-1: upstream release

Modified:
  python-dephell-argparse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:13:28 UTC (rev 685529)
+++ PKGBUILD2020-08-20 15:16:02 UTC (rev 685530)
@@ -3,7 +3,7 @@
 
 _pkgname=dephell_argparse
 pkgname=python-dephell-argparse
-pkgver=0.1.2
+pkgver=0.1.3
 pkgrel=1
 pkgdesc='Argparse with groups, commands, colors, and fuzzy matching'
 arch=('any')
@@ -13,8 +13,8 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
-sha512sums=('6c33dd01e3fccfe52085d21bfffe61204748e0ec926652adf9f59c3ac6c4d3123ef40b129fae980f3ef75c48311fa2db347c9fdb003c9b5ae295ca9a4e02179e')
-b2sums=('860320e63469c4e9317f68403388090d0e58cea608966a03064422c003c01b11cdc86b096b96f7fa9f33629a135962142072e98bb4a870d12fb57fccce4f0f51')
+sha512sums=('76aa2ec3f15ef2235023b6863a4faf7d53cf8d20794ea6882af4d95cd4799b9f78e7c8f75b6885b9b61a7edfff6aae982684dcd142c7241e922eefdf5757618c')
+b2sums=('9c0f365ea9200b1ceba8111b86f5f35cc9791819267bd661551ba646e1c2135a4718adb77303e3c5bdd9cdfbff08cae2fe0d1c43355187f97e97c08779c2f1f8')
 
 build() {
 cd "${srcdir}"/${_pkgname}-${pkgver}


[arch-commits] Commit in python-dephell-argparse/repos/community-any (2 files)

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Thursday, August 20, 2020 @ 15:16:16
  Author: eschwartz
Revision: 685531

archrelease: copy trunk to community-any

Added:
  python-dephell-argparse/repos/community-any/PKGBUILD
(from rev 685530, python-dephell-argparse/trunk/PKGBUILD)
Deleted:
  python-dephell-argparse/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 15:16:02 UTC (rev 685530)
+++ PKGBUILD2020-08-20 15:16:16 UTC (rev 685531)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-_pkgname=dephell_argparse
-pkgname=python-dephell-argparse
-pkgver=0.1.2
-pkgrel=1
-pkgdesc='Argparse with groups, commands, colors, and fuzzy matching'
-arch=(any)
-license=('MIT')
-url='https://github.com/dephell/dephell_argparse'
-depends=(python)
-makedepends=(python-dephell)
-checkdepends=(python-pytest)
-source=($pkgname-$pkgver.tar.gz::https://github.com/dephell/dephell_argparse/archive/v.$pkgver.tar.gz)
-sha512sums=('8750cfcc484956a16209b1fc539a031a43fb308fa06a90442b54f486fee69ef09da0f5262072260a9b8de2654d45c14aa971a1aaa59093759bf06dd9b65f65a4')
-
-prepare() {
-  cd ${_pkgname}-v.${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd ${_pkgname}-v.${pkgver}
-  python3 setup.py build
-}
-
-check() {
-  cd ${_pkgname}-v.${pkgver}
-  python -m pytest tests
-}
-
-package() {
-  cd ${_pkgname}-v.${pkgver}
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-dephell-argparse/repos/community-any/PKGBUILD (from rev 685530, 
python-dephell-argparse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 15:16:16 UTC (rev 685531)
@@ -0,0 +1,36 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Jelle van der Waa 
+
+_pkgname=dephell_argparse
+pkgname=python-dephell-argparse
+pkgver=0.1.3
+pkgrel=1
+pkgdesc='Argparse with groups, commands, colors, and fuzzy matching'
+arch=('any')
+url="https://github.com/dephell/${_pkgname}";
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+sha512sums=('76aa2ec3f15ef2235023b6863a4faf7d53cf8d20794ea6882af4d95cd4799b9f78e7c8f75b6885b9b61a7edfff6aae982684dcd142c7241e922eefdf5757618c')
+b2sums=('9c0f365ea9200b1ceba8111b86f5f35cc9791819267bd661551ba646e1c2135a4718adb77303e3c5bdd9cdfbff08cae2fe0d1c43355187f97e97c08779c2f1f8')
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in yubikey-touch-detector/trunk (PKGBUILD)

2020-08-20 Thread Maxim Baz via arch-commits
Date: Thursday, August 20, 2020 @ 15:36:07
  Author: maximbaz
Revision: 685532

upgpkg: yubikey-touch-detector 1.9.0-1

Modified:
  yubikey-touch-detector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:16:16 UTC (rev 685531)
+++ PKGBUILD2020-08-20 15:36:07 UTC (rev 685532)
@@ -1,7 +1,7 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 
 pkgname=yubikey-touch-detector
-pkgver=1.8.1
+pkgver=1.9.0
 pkgrel=1
 pkgdesc='A tool that can detect when your YubiKey is waiting for a touch'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 'openssh: for SSH')
 source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
 
"${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz.asc")
-sha256sums=('abdde988eedbf955666b48277e6840f65a6e6364a06a5f2d31ece58121c07327'
+sha256sums=('87e7544b2f8d016c7375351b82c56b2ed9d39a4c4b07ca8272615f7cb2b86fc5'
 'SKIP')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
 


[arch-commits] Commit in yubikey-touch-detector/repos/community-x86_64 (2 files)

2020-08-20 Thread Maxim Baz via arch-commits
Date: Thursday, August 20, 2020 @ 15:36:11
  Author: maximbaz
Revision: 685533

archrelease: copy trunk to community-x86_64

Added:
  yubikey-touch-detector/repos/community-x86_64/PKGBUILD
(from rev 685532, yubikey-touch-detector/trunk/PKGBUILD)
Deleted:
  yubikey-touch-detector/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 15:36:07 UTC (rev 685532)
+++ PKGBUILD2020-08-20 15:36:11 UTC (rev 685533)
@@ -1,30 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-pkgname=yubikey-touch-detector
-pkgver=1.8.1
-pkgrel=1
-pkgdesc='A tool that can detect when your YubiKey is waiting for a touch'
-arch=('x86_64')
-url='https://github.com/maximbaz/yubikey-touch-detector'
-license=('MIT')
-depends=('glibc' 'libnotify')
-makedepends=('go' 'git')
-optdepends=('gnupg: for GPG'
-'openssh: for SSH')
-source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
-
"${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz.asc")
-sha256sums=('abdde988eedbf955666b48277e6840f65a6e6364a06a5f2d31ece58121c07327'
-'SKIP')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-build() {
-cd "${pkgname}-${pkgver}"
-make build
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=4 sw=4 et:

Copied: yubikey-touch-detector/repos/community-x86_64/PKGBUILD (from rev 
685532, yubikey-touch-detector/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 15:36:11 UTC (rev 685533)
@@ -0,0 +1,30 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+pkgname=yubikey-touch-detector
+pkgver=1.9.0
+pkgrel=1
+pkgdesc='A tool that can detect when your YubiKey is waiting for a touch'
+arch=('x86_64')
+url='https://github.com/maximbaz/yubikey-touch-detector'
+license=('MIT')
+depends=('glibc' 'libnotify')
+makedepends=('go' 'git')
+optdepends=('gnupg: for GPG'
+'openssh: for SSH')
+source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
+
"${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz.asc")
+sha256sums=('87e7544b2f8d016c7375351b82c56b2ed9d39a4c4b07ca8272615f7cb2b86fc5'
+'SKIP')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+build() {
+cd "${pkgname}-${pkgver}"
+make build
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=4 sw=4 et:


[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 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
+# CONFIG_FEATURE_ETC_SERVIC

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

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Thursday, August 20, 2020 @ 15:54:21
  Author: eschwartz
Revision: 685535

archrelease: copy trunk to community-any

Added:
  fanficfare/repos/community-any/PKGBUILD
(from rev 685534, fanficfare/trunk/PKGBUILD)
  fanficfare/repos/community-any/changelog.txt
(from rev 685534, fanficfare/trunk/changelog.txt)
Deleted:
  fanficfare/repos/community-any/PKGBUILD
  fanficfare/repos/community-any/changelog.txt

---+
 PKGBUILD  |   58 ++---
 changelog.txt |   72 
 2 files changed, 61 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 15:54:00 UTC (rev 685534)
+++ PKGBUILD2020-08-20 15:54:21 UTC (rev 685535)
@@ -1,29 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=FanFicFare
-pkgname=fanficfare
-pkgver=3.21.0
-pkgrel=1
-pkgdesc="A tool for downloading fanfiction to eBook formats"
-arch=('any')
-url="https://github.com/JimmXinu/${_pkgname}";
-license=('Apache')
-changelog=changelog.txt
-depends=('python' 'python-beautifulsoup4' 'python-chardet' 'python-html5lib'
- 'python-html2text')
-optdepends=('python-pillow: support for converting/resizing story images and 
covers')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('2285bf21aad741d695dc7314807fa72a764497089078b156a8b66b5e7662bf2d')
-b2sums=('52ba8be5e3de54778134b938a9d5d9dcef3e2793e55694c260a2dd0556f463405de7d8308853e97885e24d167a98e5550b46da8a2ce4b21d27478eab6a28279b')
-
-build() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-
-python setup.py build
-}
-
-package() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: fanficfare/repos/community-any/PKGBUILD (from rev 685534, 
fanficfare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 15:54:21 UTC (rev 685535)
@@ -0,0 +1,29 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=FanFicFare
+pkgname=fanficfare
+pkgver=3.22.1
+pkgrel=1
+pkgdesc="A tool for downloading fanfiction to eBook formats"
+arch=('any')
+url="https://github.com/JimmXinu/${_pkgname}";
+license=('Apache')
+changelog=changelog.txt
+depends=('python' 'python-beautifulsoup4' 'python-chardet' 'python-html5lib'
+ 'python-html2text')
+optdepends=('python-pillow: support for converting/resizing story images and 
covers')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('38405aaba622c5f12bf6d342e09c312d9e966de0baf98c18b41770941e33fddd')
+b2sums=('66c8d53cad52e115e008c70c1c39c285344c39dffc075ae1f4bf40c5acd2a75ae6f843d8e96363682346c0e69716fcceab2fccb063a9f3aac9b2929d7b0f9dfd')
+
+build() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+
+python setup.py build
+}
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}

Deleted: changelog.txt
===
--- changelog.txt   2020-08-20 15:54:00 UTC (rev 685534)
+++ changelog.txt   2020-08-20 15:54:21 UTC (rev 685535)
@@ -1,40 +0,0 @@
-Version 3.21.0 - 07 Jul 2020
-- New site: chireads.com -- Thanks, Kolbo!
-- Fix for recursion in add_genre_when_multi_category caching bad value.
-- Change INI edit highlight colors when dark theme.
-- Add cover_min_size setting.
-- Fix add_genre_when_multi_category so it can include_in_ without breaking and
-  move above doreplacements.
-- Add .SHOW_EMPTY feature for titlepage_entries.
-- Check for epub before polishing cover into it.
-- Change site efiction.esteliel.de to faerie-archive.com, also changed
-  siteabbrev eesd->fae
-- Allow for no genre stories in adapter_fanficauthorsnet.
-- Fix adapter_webnovelcom sitetags for site changes.
-
-Version 3.20.1 - 06 Jun 2020
-- Fix for collision issue with translations and email direct d/l.
-  (Bug fix release for problem described here.)
-
-Version 3.20.0 - 01 Jun 2020
-- Add more URLs to cover_exclusion_regexp for base_xenforoforum.
-- Fix for is_adult needing &showRestricted URL in
-  adapter_harrypotterfanfictioncom.
-- Better auth page parsing due to own-favorite story in
-  adapter_harrypotterfanfictioncom.
-- Add characters and increased category collection for adapter_fanfiktionde.
-- Suppress output_css on CLI -z
-- Fix numWords parsing in adapter_fanficsme.
-- Update translations, add Russian.
-- Fix broken series parsing in adapter_adastrafanficcom & adapter_lotrgficcom.
-- New Site: www.silmarillionwritersguild.org, thanks Alistair!
-- Allow /post/ story URLs with adapter_gravitytalescom.
-- Change  to  in chapter text adapter_adultfanfictionorg
-- Now actually *use* translated strings in prefs.py.
-- Need to include prefs.py in messages.pot for translation.
-- Update Translations.
-- C

[arch-commits] Commit in fanficfare/trunk (PKGBUILD changelog.txt)

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Thursday, August 20, 2020 @ 15:54:00
  Author: eschwartz
Revision: 685534

upgpkg: fanficfare 3.22.1-1: upstream release

Modified:
  fanficfare/trunk/PKGBUILD
  fanficfare/trunk/changelog.txt

---+
 PKGBUILD  |6 +++---
 changelog.txt |   46 +++---
 2 files changed, 22 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:36:11 UTC (rev 685533)
+++ PKGBUILD2020-08-20 15:54:00 UTC (rev 685534)
@@ -2,7 +2,7 @@
 
 _pkgname=FanFicFare
 pkgname=fanficfare
-pkgver=3.21.0
+pkgver=3.22.1
 pkgrel=1
 pkgdesc="A tool for downloading fanfiction to eBook formats"
 arch=('any')
@@ -13,8 +13,8 @@
  'python-html2text')
 optdepends=('python-pillow: support for converting/resizing story images and 
covers')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('2285bf21aad741d695dc7314807fa72a764497089078b156a8b66b5e7662bf2d')
-b2sums=('52ba8be5e3de54778134b938a9d5d9dcef3e2793e55694c260a2dd0556f463405de7d8308853e97885e24d167a98e5550b46da8a2ce4b21d27478eab6a28279b')
+sha256sums=('38405aaba622c5f12bf6d342e09c312d9e966de0baf98c18b41770941e33fddd')
+b2sums=('66c8d53cad52e115e008c70c1c39c285344c39dffc075ae1f4bf40c5acd2a75ae6f843d8e96363682346c0e69716fcceab2fccb063a9f3aac9b2929d7b0f9dfd')
 
 build() {
 cd "${srcdir}/${_pkgname}-${pkgver}"

Modified: changelog.txt
===
--- changelog.txt   2020-08-20 15:36:11 UTC (rev 685533)
+++ changelog.txt   2020-08-20 15:54:00 UTC (rev 685534)
@@ -1,3 +1,22 @@
+Version 3.22.1 - 13 Aug 2020
+- Fix for Reject list not working for new users/libraries.
+
+Version 3.22.0 - 09 Aug 2020
+- Accept storyUrl with title in it for adapter_webnovelcom. Addresses #520
+- Fix adapter_mcstoriescom getSiteExampleURLs()
+- Remove outdated rejecturls from plugin prefs--replaced by rejecturls_date
+  last 18+ month back.
+- Fix for adapter_quotevcom site changes.
+- Fix adapter_harrypotterfanfictioncom desc parse for site change.
+- Changes for Python3 deprecation warnings (mostly) from eschwartz
+- Normalize literotica.com URLs to www.literotica.com
+- New Site: scribblehub.com - Thanks, mavi0!
+- Fixes for site changes: adapter_ficbooknet
+- Change INI error link blue color in dark mode.
+- Add 'Series [0]' option for new anthologies.
+- For anthologies, look for common val in numbered series00 if not all share
+  'series'.
+
 Version 3.21.0 - 07 Jul 2020
 - New site: chireads.com -- Thanks, Kolbo!
 - Fix for recursion in add_genre_when_multi_category caching bad value.
@@ -11,30 +30,3 @@
   siteabbrev eesd->fae
 - Allow for no genre stories in adapter_fanficauthorsnet.
 - Fix adapter_webnovelcom sitetags for site changes.
-
-Version 3.20.1 - 06 Jun 2020
-- Fix for collision issue with translations and email direct d/l.
-  (Bug fix release for problem described here.)
-
-Version 3.20.0 - 01 Jun 2020
-- Add more URLs to cover_exclusion_regexp for base_xenforoforum.
-- Fix for is_adult needing &showRestricted URL in
-  adapter_harrypotterfanfictioncom.
-- Better auth page parsing due to own-favorite story in
-  adapter_harrypotterfanfictioncom.
-- Add characters and increased category collection for adapter_fanfiktionde.
-- Suppress output_css on CLI -z
-- Fix numWords parsing in adapter_fanficsme.
-- Update translations, add Russian.
-- Fix broken series parsing in adapter_adastrafanficcom & adapter_lotrgficcom.
-- New Site: www.silmarillionwritersguild.org, thanks Alistair!
-- Allow /post/ story URLs with adapter_gravitytalescom.
-- Change  to  in chapter text adapter_adultfanfictionorg
-- Now actually *use* translated strings in prefs.py.
-- Need to include prefs.py in messages.pot for translation.
-- Update Translations.
-- Catch exception in exception handling for French user.
-- Remove '.' from numWords in adapter_fanfiktionde
-- Fix for adapter_bloodshedversecom site changes.
-- Find both 'Translator' and 'TranslatorS', except in Russian.
-  adapter_fanficsme


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:56:26
  Author: felixonmars
Revision: 685536

upgpkg: haskell-yaml 0.11.5.0-1: rebuild with yaml 0.11.5.0

Modified:
  haskell-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:54:21 UTC (rev 685535)
+++ PKGBUILD2020-08-20 15:56:26 UTC (rev 685536)
@@ -3,8 +3,8 @@
 
 _hkgname=yaml
 pkgname=haskell-yaml
-pkgver=0.11.4.0
-pkgrel=35
+pkgver=0.11.5.0
+pkgrel=1
 pkgdesc="Support for parsing and rendering YAML documents."
 url="https://github.com/snoyberg/yaml/";
 license=("BSD")
@@ -14,7 +14,7 @@
 makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-mockery' 
'haskell-base-compat'
  'haskell-raw-strings-qq' 'haskell-temporary')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('bed04ff53a7ebce6fc117fc1986e9ff95cae6f2de0e050b0f8607abc42d057e34a31e0cbda23def6a0caf15eb20b946af8869daf7e6df9c5797ce241057bb5fc')
+sha512sums=('a4209cdbe75413191aed5a72f13a0cc4af04906a3e8ce629711689624f334b31681dcfc2fc89fdae20a874c5e6831e9663a30188d34d8067491ff8958912930b')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in haskell-yaml/repos (2 files)

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:56:34
  Author: felixonmars
Revision: 685538

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yaml/repos/community-staging-x86_64/
  haskell-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 685536, haskell-yaml/trunk/PKGBUILD)

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

Copied: haskell-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 685536, 
haskell-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-20 15:56:34 UTC (rev 685538)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yaml
+pkgname=haskell-yaml
+pkgver=0.11.5.0
+pkgrel=1
+pkgdesc="Support for parsing and rendering YAML documents."
+url="https://github.com/snoyberg/yaml/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-libyaml'
+ 'haskell-vector' 'haskell-resourcet' 'haskell-scientific' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-mockery' 
'haskell-base-compat'
+ 'haskell-raw-strings-qq' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a4209cdbe75413191aed5a72f13a0cc4af04906a3e8ce629711689624f334b31681dcfc2fc89fdae20a874c5e6831e9663a30188d34d8067491ff8958912930b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:56:33
  Author: felixonmars
Revision: 685537

upgpkg: fcitx5 0.0.0.20200820-1

Modified:
  fcitx5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:56:26 UTC (rev 685536)
+++ PKGBUILD2020-08-20 15:56:33 UTC (rev 685537)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5
-pkgver=0.0.0.20200819
-_commit=1d8c22a31e54634748f0c1fec03ba4d8b5fa43c4
+pkgver=0.0.0.20200820
+_commit=f9d206a9559e3b589aaac1ba822b56495a470f45
 _endictver=20121020
 pkgrel=1
 pkgdesc="Next generation of fcitx"
@@ -19,7 +19,7 @@
 makedepends=('extra-cmake-modules')
 
source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz";
 https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('aba340f8ac1c3a699384f817c7961b171f8c9dc078fecc9afa0a534ab27fa1357dedbad8f4e4776b5bcf2d02964c125a172ab998cfed6692110e9dfc3aeb24c8'
+sha512sums=('b3fd148e696a8ae6efaaf15f46f106225e34418f448b406f2a3a38938bf53279533259e476df7baa0f4304882caa5876664b691a17a41d9f5b2c26fc7a2ecce7'
 
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
 
 prepare() {


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:56:42
  Author: felixonmars
Revision: 685539

archrelease: copy trunk to community-x86_64

Added:
  fcitx5/repos/community-x86_64/PKGBUILD
(from rev 685538, fcitx5/trunk/PKGBUILD)
Deleted:
  fcitx5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 15:56:34 UTC (rev 685538)
+++ PKGBUILD2020-08-20 15:56:42 UTC (rev 685539)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5
-pkgver=0.0.0.20200819
-_commit=1d8c22a31e54634748f0c1fec03ba4d8b5fa43c4
-_endictver=20121020
-pkgrel=1
-pkgdesc="Next generation of fcitx"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5";
-license=('GPL')
-conflicts=('fcitx')
-groups=('fcitx5-im')
-depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
- 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
- 'cldr-emoji-annotation')
-makedepends=('extra-cmake-modules')
-source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz";
-https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('aba340f8ac1c3a699384f817c7961b171f8c9dc078fecc9afa0a534ab27fa1357dedbad8f4e4776b5bcf2d02964c125a172ab998cfed6692110e9dfc3aeb24c8'
-
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
-
-prepare() {
-  cd $pkgname-$_commit/src/modules/spell/dict
-  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
-}
-
-build() {
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-check() {
-  cd $pkgname-$_commit
-  make test
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5/repos/community-x86_64/PKGBUILD (from rev 685538, 
fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 15:56:42 UTC (rev 685539)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5
+pkgver=0.0.0.20200820
+_commit=f9d206a9559e3b589aaac1ba822b56495a470f45
+_endictver=20121020
+pkgrel=1
+pkgdesc="Next generation of fcitx"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5";
+license=('GPL')
+conflicts=('fcitx')
+groups=('fcitx5-im')
+depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
+ 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
+ 'cldr-emoji-annotation')
+makedepends=('extra-cmake-modules')
+source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz";
+https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
+sha512sums=('b3fd148e696a8ae6efaaf15f46f106225e34418f448b406f2a3a38938bf53279533259e476df7baa0f4304882caa5876664b691a17a41d9f5b2c26fc7a2ecce7'
+
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
+
+prepare() {
+  cd $pkgname-$_commit/src/modules/spell/dict
+  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
+}
+
+build() {
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+check() {
+  cd $pkgname-$_commit
+  make test
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:58:43
  Author: felixonmars
Revision: 685540

upgpkg: cgrep 6.6.32-63: rebuild with yaml 0.11.5.0

Modified:
  cgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 15:56:42 UTC (rev 685539)
+++ PKGBUILD2020-08-20 15:58:43 UTC (rev 685540)
@@ -3,7 +3,7 @@
 
 pkgname=cgrep
 pkgver=6.6.32
-pkgrel=62
+pkgrel=63
 pkgdesc="A context-aware grep for source codes"
 url="https://awgn.github.io/cgrep/";
 license=("GPL2")


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 15:58:51
  Author: felixonmars
Revision: 685541

archrelease: copy trunk to community-staging-x86_64

Added:
  cgrep/repos/community-staging-x86_64/
  cgrep/repos/community-staging-x86_64/PKGBUILD
(from rev 685540, cgrep/trunk/PKGBUILD)

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

Copied: cgrep/repos/community-staging-x86_64/PKGBUILD (from rev 685540, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-20 15:58:51 UTC (rev 685541)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.32
+pkgrel=63
+pkgdesc="A context-aware grep for source codes"
+url="https://awgn.github.io/cgrep/";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-cmdargs'
+ 'haskell-dlist' 'haskell-either' 'haskell-extra' 'haskell-regex-base'
+ 'haskell-regex-pcre' 'haskell-regex-posix' 'haskell-safe' 
'haskell-split'
+ 'haskell-stringsearch' 'haskell-unix-compat' 'haskell-unicode-show'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-yaml')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('401ca49fbd2903b810c1873a3c52c3863a42b431d1a905a781636386c3ac0aac4e2ed9934fb24f1e9996629a2b578483a7c3a7a8a4d61ecb7ac7cfc9152f43ba')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --prefix=/usr --ghc-option='-pie' \
+   --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="$pkgdir"
+}


<    1   2   3   4