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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:59:20
  Author: foutrelis
Revision: 753298

archrelease: copy trunk to community-staging-any

Added:
  tuna/repos/community-staging-any/
  tuna/repos/community-staging-any/PKGBUILD
(from rev 753297, tuna/trunk/PKGBUILD)

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

Copied: tuna/repos/community-staging-any/PKGBUILD (from rev 753297, 
tuna/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:59:20 UTC (rev 753298)
@@ -0,0 +1,64 @@
+# Maintainer: David Runge 
+# Contributor: Joakim Hernberg 
+# Contributor: Ninez 
+
+pkgname=tuna
+pkgver=0.14.1
+pkgrel=2
+epoch=1
+pkgdesc="Thread and IRQ affinity setting GUI and cmd line tool"
+url="https://rt.wiki.kernel.org/index.php/Tuna;
+arch=('any')
+license=('GPL2')
+groups=('realtime')
+depends=('python-ethtool' 'python-linux-procfs' 'python-numpy'
+'python-schedutils')
+optdepends=('python-inet_diag: Show network sockets in use by threads')
+backup=("etc/${pkgname}.conf")
+source=("https://git.kernel.org/pub/scm/utils/${pkgname}/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5a4dddcaac4d73506f9c50515108e35f9bc808e857a8d8c344b3a6fe082543a41ed3aeb38ccffecde063af1f41f5b792f6bed354f22962dcd698edf7d8423273')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --prefix=/usr \
+  --root="${pkgdir}"
+
+  # tuna was ported to python3, but pygtk (for the GUI) was not ported to
+  # pygobject yet: https://bugs.archlinux.org/task/58188
+#  install -vDm 755 oscilloscope-cmd.py "${pkgdir}/usr/bin/oscilloscope"
+#  install -vDm 644 "${pkgname}/${pkgname}_gui.glade" \
+#-t "${pkgdir}/usr/share/${pkgname}/"
+#  install -vDm 644 "${pkgname}.desktop" \
+#-t "${pkgdir}/usr/share/applications/"
+  install -vDm 755 "${pkgname}-cmd.py" "${pkgdir}/usr/bin/${pkgname}"
+  install -vDm 644 "etc/${pkgname}/example.conf" \
+-t "${pkgdir}/etc/${pkgname}/"
+  install -vDm 644 "etc/${pkgname}.conf" -t "${pkgdir}/etc/"
+  install -vDm 644 "docs/oscilloscope+${pkgname}.pdf" \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 help/kthreads/* \
+-t "${pkgdir}/usr/share/${pkgname}/help/kthreads"
+  install -vDm 644 "org.${pkgname}.policy" \
+-t "${pkgdir}/usr/share/polkit-1/actions/"
+  install -vDm 644 "docs/${pkgname}.8" \
+-t "${pkgdir}/usr/share/man/man8/"
+  # translations
+  for language in `cat po/LINGUAS`; do
+translation="po/${language}.po"
+install -dm 755 "${pkgdir}/usr/share/locale/${language}/LC_MESSAGES"
+msgfmt $translation \
+  -o "${pkgdir}/usr/share//locale/${language}/LC_MESSAGES/${pkgname}.mo"
+  done
+}
+# vim:set ts=2 sw=2 et:


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:59:17
  Author: foutrelis
Revision: 753297

upgpkg: tuna 1:0.14.1-2: Python 3.9 rebuild

Modified:
  tuna/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:59:04 UTC (rev 753296)
+++ PKGBUILD2020-11-12 18:59:17 UTC (rev 753297)
@@ -4,7 +4,7 @@
 
 pkgname=tuna
 pkgver=0.14.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Thread and IRQ affinity setting GUI and cmd line tool"
 url="https://rt.wiki.kernel.org/index.php/Tuna;
@@ -62,4 +62,3 @@
   done
 }
 # vim:set ts=2 sw=2 et:
-


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:23
  Author: foutrelis
Revision: 753286

upgpkg: radicale 3.0.6-2: Python 3.9 rebuild

Modified:
  radicale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:58:19 UTC (rev 753285)
+++ PKGBUILD2020-11-12 18:58:23 UTC (rev 753286)
@@ -6,7 +6,7 @@
 pkgname=radicale
 _name=Radicale
 pkgver=3.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
 arch=('any')
 url="https://radicale.org/;
@@ -77,4 +77,3 @@
   # docs
   install -vDm 644 {NEWS,README}.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
 }
-


[arch-commits] Commit in python-pytest-helpers-namespace/repos/community-staging-any (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:19
  Author: foutrelis
Revision: 753284

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-helpers-namespace/repos/community-staging-any/PKGBUILD
(from rev 753283, python-pytest-helpers-namespace/trunk/PKGBUILD)
Deleted:
  python-pytest-helpers-namespace/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:58:15 UTC (rev 753283)
+++ PKGBUILD2020-11-12 18:58:19 UTC (rev 753284)
@@ -1,47 +0,0 @@
-# Maintainer: David Runge 
-
-_name=pytest-helpers-namespace
-pkgname=python-pytest-helpers-namespace
-pkgver=2019.1.8
-pkgrel=2
-pkgdesc="PyTest Helpers Namespace"
-arch=('any')
-url="https://github.com/saltstack/pytest-helpers-namespace;
-license=('Apache')
-depends=('python-pytest')
-makedepends=('git' 'python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-forked')
-source=("git+https://github.com/saltstack/pytest-helpers-namespace#tag=v${pkgver}?signed;)
-sha512sums=('SKIP')
-validpgpkeys=('D2908FB3A823B0FAB3BD21F5BB36BF6584A298FF') # Pedro Algarvio 
(s0undt3ch) 
-
-prepare() {
-  mv -v "${_name}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  # installing into test location, so pytest can pick up the extension
-  mkdir -vp test_dir
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="test_dir"
-  local python_version="$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')"
-  export 
PYTHONPATH="test_dir/usr/lib/python${python_version}/site-packages/:${PYTHONPATH}"
-  pytest -v --forked
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 {AUTHORS,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-pytest-helpers-namespace/repos/community-staging-any/PKGBUILD 
(from rev 753283, python-pytest-helpers-namespace/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:58:19 UTC (rev 753284)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+
+_name=pytest-helpers-namespace
+pkgname=python-pytest-helpers-namespace
+pkgver=2019.1.8
+pkgrel=3
+pkgdesc="PyTest Helpers Namespace"
+arch=('any')
+url="https://github.com/saltstack/pytest-helpers-namespace;
+license=('Apache')
+depends=('python-pytest')
+makedepends=('git' 'python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-forked')
+source=("git+https://github.com/saltstack/pytest-helpers-namespace#tag=v${pkgver}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=('D2908FB3A823B0FAB3BD21F5BB36BF6584A298FF') # Pedro Algarvio 
(s0undt3ch) 
+
+prepare() {
+  mv -v "${_name}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  # installing into test location, so pytest can pick up the extension
+  mkdir -vp test_dir
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="test_dir"
+  local python_version="$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')"
+  export 
PYTHONPATH="test_dir/usr/lib/python${python_version}/site-packages/:${PYTHONPATH}"
+  pytest -v --forked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {AUTHORS,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in python-requests-credssp/repos (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:50
  Author: foutrelis
Revision: 753293

archrelease: copy trunk to community-staging-any

Added:
  python-requests-credssp/repos/community-staging-any/
  python-requests-credssp/repos/community-staging-any/PKGBUILD
(from rev 753291, python-requests-credssp/trunk/PKGBUILD)

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

Copied: python-requests-credssp/repos/community-staging-any/PKGBUILD (from rev 
753291, python-requests-credssp/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:58:50 UTC (rev 753293)
@@ -0,0 +1,25 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph W 
+
+pkgname=python-requests-credssp
+_module='requests-credssp'
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="HTTPS CredSSP authentication with the requests library"
+url="https://github.com/jborean93/requests-credssp;
+depends=('python' 'python-pyopenssl' 'python-requests' 'python-ntlm-auth')
+makedepends=('python-setuptools')
+license=('ISC')
+arch=('any')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jborean93/requests-credssp/archive/v${pkgver}.tar.gz;)
+sha512sums=('55458773cbf14a468d22d0b04186611385ff24fceda85052e69981bd6d4fd32a46f96b95fa36724b72fd9719485b2ed8906d1927284157e7bc685c0c42c2312c')
+
+build() {
+cd "${_module}-${pkgver}"
+python setup.py build
+}
+
+package() {
+cd "${_module}-${pkgver}"
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:45
  Author: foutrelis
Revision: 753289

upgpkg: python-sqlalchemy-continuum 1.3.9-3: Python 3.9 rebuild

Modified:
  python-sqlalchemy-continuum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:58:29 UTC (rev 753288)
+++ PKGBUILD2020-11-12 18:58:45 UTC (rev 753289)
@@ -4,7 +4,7 @@
 _pkgname=sqlalchemy-continuum
 pkgname=python-sqlalchemy-continuum
 pkgver=1.3.9
-pkgrel=2
+pkgrel=3
 pkgdesc='Versioning and auditing extension for SQLAlchemy'
 url='https://github.com/kvesteri/sqlalchemy-continuum'
 arch=('any')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:28
  Author: foutrelis
Revision: 753287

archrelease: copy trunk to community-staging-any

Added:
  radicale/repos/community-staging-any/
  radicale/repos/community-staging-any/PKGBUILD
(from rev 753286, radicale/trunk/PKGBUILD)
  radicale/repos/community-staging-any/radicale-sysusers.conf
(from rev 753286, radicale/trunk/radicale-sysusers.conf)
  radicale/repos/community-staging-any/radicale-tmpfiles.conf
(from rev 753286, radicale/trunk/radicale-tmpfiles.conf)
  radicale/repos/community-staging-any/radicale.install
(from rev 753286, radicale/trunk/radicale.install)
  radicale/repos/community-staging-any/radicale.service
(from rev 753286, radicale/trunk/radicale.service)

+
 PKGBUILD   |   79 +++
 radicale-sysusers.conf |1 
 radicale-tmpfiles.conf |2 +
 radicale.install   |8 
 radicale.service   |   38 ++
 5 files changed, 128 insertions(+)

Copied: radicale/repos/community-staging-any/PKGBUILD (from rev 753286, 
radicale/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:58:28 UTC (rev 753287)
@@ -0,0 +1,79 @@
+# Maintainer: David Runge 
+# Contributor: Moritz Lipp 
+# Contributor: fordprefect 
+# Contributor: Thor77 
+
+pkgname=radicale
+_name=Radicale
+pkgver=3.0.6
+pkgrel=2
+pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
+arch=('any')
+url="https://radicale.org/;
+license=('GPL3')
+depends=('python-bcrypt' 'python-dateutil' 'python-defusedxml' 'python-passlib'
+'python-setuptools' 'python-vobject')
+checkdepends=('python-pytest' 'python-pytest-runner' 'python-waitress')
+backup=('etc/radicale/config'
+'etc/radicale/rights'
+'etc/radicale/users')
+install="${pkgname}.install"
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz;
+"${pkgname}-sysusers.conf"
+"${pkgname}-tmpfiles.conf"
+"${pkgname}.service")
+sha512sums=('e9741547395fae8886ad84b6807422ebb196f5293d484f5f6136498058576cff697e28c117216f151d56494af83593347ceee40a6efa21272b803d0f301a396d'
+
'56dffb66e018cfbf158dc5d8fe638b3cb31229945f659aae5623f219bcd1d68ddc375f1633fa8e857a9b2f50c9e05a06efce165370137d6e116a4f187466637f'
+
'9d0dd88e4a34e9f97abda1785698e4b2a5e8202063deeb91b84e13c05e00b07e45b8d4d9eca09b9241b1138bbbfdc999dba0135c18f5bc0c08d65b0cd83b367b'
+
'6f411daf18fbeeb7cc8626652f4b87ac6ec5e4ec1212821c426de711c907be41ab995d5b35be4ff0d663edb1028f99d6c07a53158acf519e7560e230c022c986')
+b2sums=('fa4b70c9920d518df6c939395eca857c237a75218b90ada45564f2d84266d65df12898e4efbb52905829948061e10e72b5442943fd5061a28447330ae8d491e8'
+
'b3af60e144ef857e42ec672e806e9600265ab7d2ea4a75011de9ab56918a008437afdacb301df210b54424fb7ff1e9a332831c67b2e58fd6bc0a0aa1eebe8909'
+
'41916d62f5e3f1060bd21db0722abe837754a4cb915af218c904dafac4b06794f8fde2e34486fb7392777b4738502f3df4c1390b835050045337585b064e23bb'
+
'5ae0e87d4235a864ca482a6701e0631cdaccc3dceef71237d5bd708be08c3b7e1890793d01f8c51eaa108a097cfefbb31abb71cf69b195c0f50f95720965391f')
+
+prepare() {
+  mv -v ${_name}-${pkgver} ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
+  # removing flake8, isort and coverage
+  sed -e '/addopts/d' -i setup.cfg
+  touch "users"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  cd "${pkgname}-${pkgver}"
+  mkdir -vp testdir
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="testdir"
+  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  # config
+  install -vDm 644 {config,rights,users} -t "${pkgdir}/etc/${pkgname}/"
+  # wsgi
+  install -vDm 644 "${pkgname}.wsgi" \
+-t "${pkgdir}/usr/share/${pkgname}/"
+  # systemd service
+  install -vDm 644 "${srcdir}/${pkgname}.service" \
+"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+  # sysusers.d
+  install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  # tmpfiles.d
+  install -vDm 644 "${srcdir}/${pkgname}-tmpfiles.conf" \
+"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+  # docs
+  install -vDm 644 {NEWS,README}.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
+}

Copied: radicale/repos/community-staging-any/radicale-sysusers.conf (from rev 
753286, radicale/trunk/radicale-sysusers.conf)

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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:46
  Author: foutrelis
Revision: 753290

upgpkg: python-requests-credssp 1.2.0-2: Python 3.9 rebuild

Modified:
  python-requests-credssp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:58:45 UTC (rev 753289)
+++ PKGBUILD2020-11-12 18:58:46 UTC (rev 753290)
@@ -4,7 +4,7 @@
 pkgname=python-requests-credssp
 _module='requests-credssp'
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="HTTPS CredSSP authentication with the requests library"
 url="https://github.com/jborean93/requests-credssp;
 depends=('python' 'python-pyopenssl' 'python-requests' 'python-ntlm-auth')


[arch-commits] Commit in python-sqlalchemy-continuum/repos (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:48
  Author: foutrelis
Revision: 753291

archrelease: copy trunk to community-staging-any

Added:
  python-sqlalchemy-continuum/repos/community-staging-any/
  python-sqlalchemy-continuum/repos/community-staging-any/PKGBUILD
(from rev 753290, python-sqlalchemy-continuum/trunk/PKGBUILD)

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

Copied: python-sqlalchemy-continuum/repos/community-staging-any/PKGBUILD (from 
rev 753290, python-sqlalchemy-continuum/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:58:48 UTC (rev 753291)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa https://github.com/kvesteri/sqlalchemy-continuum/archive/${pkgver}.tar.gz)
+sha512sums=('f597f537999c59005e09fe6dad40d03bd9fb933f9ea88135888c4a848ecb61df05e4a2dcb9af5399ed84bc127af2c48e8fc2993e3a1d3d561cad6ca3d34319ec')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+  make -C docs text man
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}/tests
+  DB=sqlite pytest -k 'not test_flask'
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst docs/_build/text/* -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/man/sqlalchemy-continuum.1 -t 
"${pkgdir}/usr/share/man/man1"
+  ln -sf /usr/share/man/man1/sqlalchemy-continuum.1.gz 
"${pkgdir}/usr/share/man/man1/${pkgname}.1.gz"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in python-pytest-helpers-namespace/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:58:15
  Author: foutrelis
Revision: 753283

upgpkg: python-pytest-helpers-namespace 2019.1.8-3: Python 3.9 rebuild

Modified:
  python-pytest-helpers-namespace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:58:04 UTC (rev 753282)
+++ PKGBUILD2020-11-12 18:58:15 UTC (rev 753283)
@@ -3,7 +3,7 @@
 _name=pytest-helpers-namespace
 pkgname=python-pytest-helpers-namespace
 pkgver=2019.1.8
-pkgrel=2
+pkgrel=3
 pkgdesc="PyTest Helpers Namespace"
 arch=('any')
 url="https://github.com/saltstack/pytest-helpers-namespace;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:57:26
  Author: foutrelis
Revision: 753278

archrelease: copy trunk to community-staging-x86_64

Added:
  python-tinycss/repos/community-staging-x86_64/
  python-tinycss/repos/community-staging-x86_64/PKGBUILD
(from rev 753277, python-tinycss/trunk/PKGBUILD)

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

Copied: python-tinycss/repos/community-staging-x86_64/PKGBUILD (from rev 
753277, python-tinycss/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:57:26 UTC (rev 753278)
@@ -0,0 +1,46 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgname=python-tinycss
+pkgver=0.4
+pkgrel=5
+pkgdesc="A complete yet simple CSS parser for Python"
+url="https://pypi.python.org/pypi/tinycss;
+license=('BSD')
+arch=('x86_64')
+depends=('python')
+makedepends=('python-setuptools' 'cython')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/t/tinycss/tinycss-$pkgver.tar.gz;)
+sha256sums=('12306fb50e5e9e7eaeef84b802ed877488ba80e35c672867f548c0924a76716e')
+b2sums=('9b7691f5d5fcfb5580a9f2a0f1f50caea3dba74853917e5e46ca93cab6f35f2f8c4f5babf01d25661d05ef1b26ccc35914750917fb92b394b0ca6530a19f3514')
+
+prepare() {
+cd "${srcdir}"/tinycss-${pkgver}
+
+rm tinycss/speedups.c
+# isort is not a sign of failing code
+sed -i '/addopts/d' setup.cfg
+}
+
+build() {
+cd "${srcdir}"/tinycss-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/tinycss-${pkgver}
+
+pytest build/
+find build/ -type f -name \*-PYTEST.pyc -delete
+}
+
+package() {
+cd "${srcdir}"/tinycss-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1
+install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:56:52
  Author: foutrelis
Revision: 753275

archrelease: copy trunk to community-staging-x86_64

Added:
  watchman/repos/community-staging-x86_64/
  watchman/repos/community-staging-x86_64/PKGBUILD
(from rev 753274, watchman/trunk/PKGBUILD)
  watchman/repos/community-staging-x86_64/python3.patch
(from rev 753274, watchman/trunk/python3.patch)
  watchman/repos/community-staging-x86_64/watchman.tmpfiles
(from rev 753274, watchman/trunk/watchman.tmpfiles)

---+
 PKGBUILD  |   46 ++
 python3.patch |   51 +++
 watchman.tmpfiles |1 +
 3 files changed, 98 insertions(+)

Copied: watchman/repos/community-staging-x86_64/PKGBUILD (from rev 753274, 
watchman/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:56:52 UTC (rev 753275)
@@ -0,0 +1,46 @@
+# Maintainer: Jean Lucas 
+# Contributor: José Luis Lafuente 
+# Contributor: Michael Louis Thaler 
+
+pkgname=watchman
+pkgver=4.9.0
+pkgrel=5
+pkgdesc="An inotify-based file watching and job triggering command line 
utility"
+url="https://facebook.github.io/watchman/;
+arch=('i686' 'x86_64')
+license=('Apache')
+depends=('pcre' 'systemd' 'python')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/facebook/watchman/archive/v${pkgver}.tar.gz;
+"${pkgname}.tmpfiles" "python3.patch")
+sha256sums=('1f6402dc70b1d056fffc3748f2fdcecff730d8843bb6936de395b3443ce05322'
+'2b061865e10578a0477b9c7991a00594bc839c846b98896e93c75743dbf6a379'
+'8aa32e37aef329e0873425d25e370d25b7aa0731f104a645737ff64a5a9e')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  ./autogen.sh
+
+  patch -Np1 -i "${srcdir}"/python3.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-statedir --enable-lenient
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  # TODO: fix segfault in test
+  #make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  # Docs available online only; see 
https://github.com/facebook/watchman/issues/30
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm 644 "${srcdir}"/${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+}
+
+# vim:set ts=2 sw=2 et:

Copied: watchman/repos/community-staging-x86_64/python3.patch (from rev 753274, 
watchman/trunk/python3.patch)
===
--- community-staging-x86_64/python3.patch  (rev 0)
+++ community-staging-x86_64/python3.patch  2020-11-12 18:56:52 UTC (rev 
753275)
@@ -0,0 +1,51 @@
+diff -aur watchman-4.9.0.old/python/bin/watchman-make 
watchman-4.9.0/python/bin/watchman-make
+--- watchman-4.9.0.old/python/bin/watchman-make2020-04-03 
20:33:59.893048471 +0200
 watchman-4.9.0/python/bin/watchman-make2020-04-03 20:36:21.800479512 
+0200
+@@ -209,7 +209,7 @@
+ client.setTimeout(600)
+ 
+ result = client.receive()
+-for _, t in targets.iteritems():
++for _, t in targets.items():
+ t.consumeEvents(client)
+ 
+ # Now we wait for events to settle
+@@ -218,7 +218,7 @@
+ while not settled:
+ try:
+ result = client.receive()
+-for _, t in targets.iteritems():
++for _, t in targets.items():
+ t.consumeEvents(client)
+ except pywatchman.SocketTimeout as ex:
+ # Our short settle timeout hit, so we're now settled
+@@ -226,7 +226,7 @@
+ break
+ 
+ # Now we can work on executing the targets
+-for _, t in targets.iteritems():
++for _, t in targets.items():
+ t.execute()
+ 
+ # Print this at the bottom of the loop rather than the top
+diff -aur watchman-4.9.0.old/python/bin/watchman-wait 
watchman-4.9.0/python/bin/watchman-wait
+--- watchman-4.9.0.old/python/bin/watchman-wait2020-04-03 
20:33:59.893048471 +0200
 watchman-4.9.0/python/bin/watchman-wait2020-04-03 20:36:46.413945264 
+0200
+@@ -182,7 +182,7 @@
+ try:
+ client.capabilityCheck(
+ required=['term-dirname', 'cmd-watch-project', 'wildmatch'])
+-for _, sub in subscriptions.iteritems():
++for _, sub in subscriptions.items():
+ sub.start(client)
+ 
+ except pywatchman.CommandError as ex:
+@@ -200,7 +200,7 @@
+ # the client object will accumulate all subscription results
+ # over time, so we ask it to remove and return those values
+ # for each of the subscriptions
+-for _, sub in subscriptions.iteritems():
++for _, sub in subscriptions.items():
+ sub.emit(client)
+ 
+ except pywatchman.SocketTimeout as ex:

Copied: 

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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:57:23
  Author: foutrelis
Revision: 753277

upgpkg: python-tinycss 0.4-5: Python 3.9 rebuild

Modified:
  python-tinycss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:56:54 UTC (rev 753276)
+++ PKGBUILD2020-11-12 18:57:23 UTC (rev 753277)
@@ -5,7 +5,7 @@
 
 pkgname=python-tinycss
 pkgver=0.4
-pkgrel=4
+pkgrel=5
 pkgdesc="A complete yet simple CSS parser for Python"
 url="https://pypi.python.org/pypi/tinycss;
 license=('BSD')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:56:47
  Author: foutrelis
Revision: 753272

upgpkg: watchman 4.9.0-5: Python 3.9 rebuild

Modified:
  watchman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:56:45 UTC (rev 753271)
+++ PKGBUILD2020-11-12 18:56:47 UTC (rev 753272)
@@ -4,7 +4,7 @@
 
 pkgname=watchman
 pkgver=4.9.0
-pkgrel=4
+pkgrel=5
 pkgdesc="An inotify-based file watching and job triggering command line 
utility"
 url="https://facebook.github.io/watchman/;
 arch=('i686' 'x86_64')


[arch-commits] Commit in sage-numerical-backends-coin/repos (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:56:48
  Author: foutrelis
Revision: 753273

archrelease: copy trunk to community-staging-x86_64

Added:
  sage-numerical-backends-coin/repos/community-staging-x86_64/
  sage-numerical-backends-coin/repos/community-staging-x86_64/PKGBUILD
(from rev 753271, sage-numerical-backends-coin/trunk/PKGBUILD)

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

Copied: sage-numerical-backends-coin/repos/community-staging-x86_64/PKGBUILD 
(from rev 753271, sage-numerical-backends-coin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:56:48 UTC (rev 753273)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=sage-numerical-backends-coin
+pkgver=9.0b12
+pkgrel=2
+pkgdesc="COIN-OR mixed integer linear programming backend for SageMath"
+arch=(x86_64)
+url="https://github.com/mkoeppe/sage-numerical-backends-coin;
+license=(GPL)
+depends=(sagemath coin-or-cbc)
+makedepends=(cython python-pkgconfig)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/mkoeppe/sage-numerical-backends-coin/archive/v$pkgver.tar.gz;)
+sha256sums=('4bd6cec9a2e78e47741a73fde0d064a2aaebd1e2d9f44ccca70e436f2094f272')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in sage-numerical-backends-coin/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:56:45
  Author: foutrelis
Revision: 753271

upgpkg: sage-numerical-backends-coin 9.0b12-2: Python 3.9 rebuild

Modified:
  sage-numerical-backends-coin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:56:43 UTC (rev 753270)
+++ PKGBUILD2020-11-12 18:56:45 UTC (rev 753271)
@@ -2,7 +2,7 @@
 
 pkgname=sage-numerical-backends-coin
 pkgver=9.0b12
-pkgrel=1
+pkgrel=2
 pkgdesc="COIN-OR mixed integer linear programming backend for SageMath"
 arch=(x86_64)
 url="https://github.com/mkoeppe/sage-numerical-backends-coin;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:55:50
  Author: foutrelis
Revision: 753265

archrelease: copy trunk to community-staging-any

Added:
  pysolfc/repos/community-staging-any/
  pysolfc/repos/community-staging-any/PKGBUILD
(from rev 753264, pysolfc/trunk/PKGBUILD)

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

Copied: pysolfc/repos/community-staging-any/PKGBUILD (from rev 753264, 
pysolfc/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:55:50 UTC (rev 753265)
@@ -0,0 +1,29 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Eric Bélanger 
+
+pkgname=pysolfc
+pkgver=2.10.1
+pkgrel=2
+pkgdesc="PySol (Fan Club edition) is an exciting collection of more than 1000 
solitaire games"
+arch=('any')
+url="http://pysolfc.sourceforge.net/;
+license=('GPL3')
+depends=('python-attrs' 'pysolfc-cardsets' 'python-configobj' 'python-pillow' 
+ 'python-pysol_cards' 'python-random2' 'python-six' 'tk')
+makedepends=('python-setuptools')
+source=(https://downloads.sourceforge.net/$pkgname/PySolFC-$pkgver.tar.xz)
+sha256sums=('f09724f2fdef3f16d8ba5cf834872e31f559bb389f6b5226ff9aa2edbf17d319')
+
+prepare() {
+  cd PySolFC-$pkgver
+
+  sed -i 's/pysol.py/pysol/' data/pysol.desktop
+}
+
+
+package() {
+  cd PySolFC-$pkgver
+
+  python setup.py install --root="${pkgdir}"
+  mv "${pkgdir}"/usr/bin/pysol.py "${pkgdir}"/usr/bin/pysol
+}


[arch-commits] Commit in python-zabbix-api/repos (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:55:51
  Author: foutrelis
Revision: 753266

archrelease: copy trunk to community-staging-any

Added:
  python-zabbix-api/repos/community-staging-any/
  python-zabbix-api/repos/community-staging-any/PKGBUILD
(from rev 753264, python-zabbix-api/trunk/PKGBUILD)

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

Copied: python-zabbix-api/repos/community-staging-any/PKGBUILD (from rev 
753264, python-zabbix-api/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:55:51 UTC (rev 753266)
@@ -0,0 +1,24 @@
+# Maintainer: Jelle van der Waa 
+
+_name=zabbix-api
+pkgname=python-zabbix-api
+pkgver=0.5.4
+pkgrel=2
+pkgdesc="Python Zabbix API"
+arch=(any)
+url="https://pypi.org/project/zabbix-api;
+license=('LGPL')
+depends=('python')
+makedepends=('python-setuptools')
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
+sha512sums=('d643f5f3760bb55df8d5b0416581f6fa2e82b7bcaba75d6be1386354a23a1d3dcc6cca10b97ba24ceca10ecd0c7a4a2646963549417f09beb441a90ef20e8e4c')
+
+build() {
+  cd "$_name-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$_name-$pkgver"
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:55:37
  Author: foutrelis
Revision: 753260

upgpkg: python-osprofiler 3.4.0-3: Python 3.9 rebuild

Modified:
  python-osprofiler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:55:31 UTC (rev 753259)
+++ PKGBUILD2020-11-12 18:55:37 UTC (rev 753260)
@@ -2,7 +2,7 @@
 
 pkgname=python-osprofiler
 pkgver=3.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc="OpenStack Profiler Library"
 arch=('any')
 url="https://docs.openstack.org/osprofiler/latest/;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:55:47
  Author: foutrelis
Revision: 753264

upgpkg: python-zabbix-api 0.5.4-2: Python 3.9 rebuild

Modified:
  python-zabbix-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:55:47 UTC (rev 753263)
+++ PKGBUILD2020-11-12 18:55:47 UTC (rev 753264)
@@ -3,7 +3,7 @@
 _name=zabbix-api
 pkgname=python-zabbix-api
 pkgver=0.5.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Python Zabbix API"
 arch=(any)
 url="https://pypi.org/project/zabbix-api;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:55:41
  Author: foutrelis
Revision: 753262

archrelease: copy trunk to community-staging-any

Added:
  python-osprofiler/repos/community-staging-any/PKGBUILD
(from rev 753261, python-osprofiler/trunk/PKGBUILD)
Deleted:
  python-osprofiler/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:55:40 UTC (rev 753261)
+++ PKGBUILD2020-11-12 18:55:41 UTC (rev 753262)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-osprofiler
-pkgver=3.4.0
-pkgrel=2
-pkgdesc="OpenStack Profiler Library"
-arch=('any')
-url="https://docs.openstack.org/osprofiler/latest/;
-license=('Apache')
-depends=('python-netaddr' 'python-oslo-concurrency' 
'python-oslo-serialization' 'python-oslo-utils'
- 'python-prettytable' 'python-requests' 'python-six' 'python-webob')
-checkdepends=('python-ddt' 'python-docutils' 'python-elasticsearch' 
'python-jaeger-client'
-  'python-pymongo' 'python-redis' 'python-stestr')
-source=("https://github.com/openstack/osprofiler/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('dbe8f0a924e2ac2b59c657b201c0451419a6212fa091e6f50cef660d3ce5beef6e5477be698a3164eb57535f02ee9b5208aed64227ad82b7bbc3167cd31c2877')
-
-export PBR_VERSION=$pkgver
-
-build() {
-  cd osprofiler-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd osprofiler-$pkgver
-  stestr run
-}
-
-package() {
-  cd osprofiler-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-osprofiler/repos/community-staging-any/PKGBUILD (from rev 
753261, python-osprofiler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:55:41 UTC (rev 753262)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-osprofiler
+pkgver=3.4.0
+pkgrel=3
+pkgdesc="OpenStack Profiler Library"
+arch=('any')
+url="https://docs.openstack.org/osprofiler/latest/;
+license=('Apache')
+depends=('python-netaddr' 'python-oslo-concurrency' 
'python-oslo-serialization' 'python-oslo-utils'
+ 'python-prettytable' 'python-requests' 'python-six' 'python-webob')
+checkdepends=('python-ddt' 'python-docutils' 'python-elasticsearch' 
'python-jaeger-client'
+  'python-pymongo' 'python-redis' 'python-stestr')
+source=("https://github.com/openstack/osprofiler/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('dbe8f0a924e2ac2b59c657b201c0451419a6212fa091e6f50cef660d3ce5beef6e5477be698a3164eb57535f02ee9b5208aed64227ad82b7bbc3167cd31c2877')
+
+export PBR_VERSION=$pkgver
+
+build() {
+  cd osprofiler-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd osprofiler-$pkgver
+  stestr run
+}
+
+package() {
+  cd osprofiler-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:55:47
  Author: foutrelis
Revision: 753263

upgpkg: pysolfc 2.10.1-2: Python 3.9 rebuild

Modified:
  pysolfc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:55:41 UTC (rev 753262)
+++ PKGBUILD2020-11-12 18:55:47 UTC (rev 753263)
@@ -3,7 +3,7 @@
 
 pkgname=pysolfc
 pkgver=2.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc="PySol (Fan Club edition) is an exciting collection of more than 1000 
solitaire games"
 arch=('any')
 url="http://pysolfc.sourceforge.net/;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:20
  Author: foutrelis
Revision: 753248

upgpkg: bpython 0.20-3: Python 3.9 rebuild

Modified:
  bpython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:54:17 UTC (rev 753247)
+++ PKGBUILD2020-11-12 18:54:20 UTC (rev 753248)
@@ -5,7 +5,7 @@
 
 pkgname=bpython
 pkgver=0.20
-pkgrel=2
+pkgrel=3
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='https://bpython-interpreter.org/'


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:41
  Author: foutrelis
Revision: 753251

upgpkg: ranger 1.9.3-3: Python 3.9 rebuild

Modified:
  ranger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:54:25 UTC (rev 753250)
+++ PKGBUILD2020-11-12 18:54:41 UTC (rev 753251)
@@ -4,7 +4,7 @@
 
 pkgname=ranger
 pkgver=1.9.3
-pkgrel=2
+pkgrel=3
 pkgdesc='Simple, vim-like file manager'
 arch=('any')
 url='https://ranger.github.io'


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:17
  Author: foutrelis
Revision: 753247

archrelease: copy trunk to community-staging-any

Added:
  python-srcinfo/repos/community-staging-any/
  python-srcinfo/repos/community-staging-any/PKGBUILD
(from rev 753246, python-srcinfo/trunk/PKGBUILD)

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

Copied: python-srcinfo/repos/community-staging-any/PKGBUILD (from rev 753246, 
python-srcinfo/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:54:17 UTC (rev 753247)
@@ -0,0 +1,31 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-srcinfo
+pkgver=0.0.8
+pkgrel=5
+
+pkgdesc="Simple .SRCINFO parsing library"
+url='https://github.com/kyrias/python-srcinfo'
+arch=('any')
+license=('ISC')
+
+depends=('python' 'python-setuptools' 'python-parse')
+checkdepends=('python-nose')
+
+source=("https://pypi.python.org/packages/source/s/srcinfo/srcinfo-$pkgver.tar.gz;
+
"https://pypi.python.org/packages/source/s/srcinfo/srcinfo-$pkgver.tar.gz.asc;)
+
+validpgpkeys=('5134EF9EAF65F95B6BB1608E50FB9B273A9D0BB5')
+md5sums=('5905c054ac2cd080bd0dbf1df5253608'
+ 'SKIP')
+
+check() {
+   cd srcinfo-"$pkgver"
+   python setup.py test
+}
+
+package() {
+   cd srcinfo-"$pkgver"
+   python setup.py install --root="$pkgdir" --optimize=1
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:43
  Author: foutrelis
Revision: 753252

upgpkg: python-doublex-expects 0.7.1-5: Python 3.9 rebuild

Modified:
  python-doublex-expects/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:54:41 UTC (rev 753251)
+++ PKGBUILD2020-11-12 18:54:43 UTC (rev 753252)
@@ -2,7 +2,7 @@
 
 pkgname='python-doublex-expects'
 pkgver=0.7.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Expects matchers for Doublex test doubles assertions"
 arch=('any')
 license=('Apache')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:24
  Author: foutrelis
Revision: 753249

archrelease: copy trunk to community-staging-any

Added:
  bpython/repos/community-staging-any/PKGBUILD
(from rev 753248, bpython/trunk/PKGBUILD)
Deleted:
  bpython/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:54:20 UTC (rev 753248)
+++ PKGBUILD2020-11-12 18:54:24 UTC (rev 753249)
@@ -1,36 +0,0 @@
-# Maintainer: Kyle Keen < keenerd at gmail >
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Mike Sampson 
-# Contributor: Anton Bazhenov 
-
-pkgname=bpython
-pkgver=0.20
-pkgrel=2
-pkgdesc='Fancy ncurses interface to the Python interpreter'
-arch=('any')
-url='https://bpython-interpreter.org/'
-license=('MIT')
-depends=('python-pygments' 'python-requests' 'python-curtsies' 
'python-greenlet' 'python-six')
-optdepends=('python-urwid: for bpython-urwid'
-'python-jedi: multiline completion'
-'python-watchdog: module reloading')
-makedepends=('python-distribute')
-#source=(https://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)  # 
slow
-#source=("https://github.com/bpython/bpython/archive/$pkgver-release.tar.gz;)  
# missing version data
-source=("https://files.pythonhosted.org/packages/source/b/bpython/bpython-$pkgver.tar.gz;)
-md5sums=('3649400f45611415ba398361f10b4117')
-
-# python-watchdog optdep...
-
-build() {
-  cd "$srcdir/bpython-$pkgver"
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir/bpython-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=0
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/bpython/LICENSE"
-}

Copied: bpython/repos/community-staging-any/PKGBUILD (from rev 753248, 
bpython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:54:24 UTC (rev 753249)
@@ -0,0 +1,36 @@
+# Maintainer: Kyle Keen < keenerd at gmail >
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Mike Sampson 
+# Contributor: Anton Bazhenov 
+
+pkgname=bpython
+pkgver=0.20
+pkgrel=3
+pkgdesc='Fancy ncurses interface to the Python interpreter'
+arch=('any')
+url='https://bpython-interpreter.org/'
+license=('MIT')
+depends=('python-pygments' 'python-requests' 'python-curtsies' 
'python-greenlet' 'python-six')
+optdepends=('python-urwid: for bpython-urwid'
+'python-jedi: multiline completion'
+'python-watchdog: module reloading')
+makedepends=('python-distribute')
+#source=(https://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)  # 
slow
+#source=("https://github.com/bpython/bpython/archive/$pkgver-release.tar.gz;)  
# missing version data
+source=("https://files.pythonhosted.org/packages/source/b/bpython/bpython-$pkgver.tar.gz;)
+md5sums=('3649400f45611415ba398361f10b4117')
+
+# python-watchdog optdep...
+
+build() {
+  cd "$srcdir/bpython-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/bpython-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=0
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/bpython/LICENSE"
+}


[arch-commits] Commit in python-doublex-expects/repos/community-staging-any (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:47
  Author: foutrelis
Revision: 753254

archrelease: copy trunk to community-staging-any

Added:
  python-doublex-expects/repos/community-staging-any/PKGBUILD
(from rev 753253, python-doublex-expects/trunk/PKGBUILD)
Deleted:
  python-doublex-expects/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:54:44 UTC (rev 753253)
+++ PKGBUILD2020-11-12 18:54:47 UTC (rev 753254)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname='python-doublex-expects'
-pkgver=0.7.1
-pkgrel=4
-pkgdesc="Expects matchers for Doublex test doubles assertions"
-arch=('any')
-license=('Apache')
-url="https://github.com/jaimegildesagredo/doublex-expects;
-depends=('python-doublex' 'python-expects')
-makedepends=('python-setuptools')
-checkdepends=('python-mamba')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/jaimegildesagredo/doublex-expects/archive/v$pkgver.tar.gz;)
-sha512sums=('2aaff2e58556ed9eb91ebb418e65058367411e011e843afb5adb08ab69705b6bdfb478d3052aae093ad1c1a1b49ba1e084e4c5510acde4874182a658330e3448')
-
-build() {
-  cd doublex-expects-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd doublex-expects-$pkgver
-  mamba
-}
-
-package() {
-  cd doublex-expects-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-doublex-expects/repos/community-staging-any/PKGBUILD (from rev 
753253, python-doublex-expects/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:54:47 UTC (rev 753254)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname='python-doublex-expects'
+pkgver=0.7.1
+pkgrel=5
+pkgdesc="Expects matchers for Doublex test doubles assertions"
+arch=('any')
+license=('Apache')
+url="https://github.com/jaimegildesagredo/doublex-expects;
+depends=('python-doublex' 'python-expects')
+makedepends=('python-setuptools')
+checkdepends=('python-mamba')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jaimegildesagredo/doublex-expects/archive/v$pkgver.tar.gz;)
+sha512sums=('2aaff2e58556ed9eb91ebb418e65058367411e011e843afb5adb08ab69705b6bdfb478d3052aae093ad1c1a1b49ba1e084e4c5510acde4874182a658330e3448')
+
+build() {
+  cd doublex-expects-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd doublex-expects-$pkgver
+  mamba
+}
+
+package() {
+  cd doublex-expects-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:44
  Author: foutrelis
Revision: 753253

archrelease: copy trunk to community-staging-any

Added:
  ranger/repos/community-staging-any/
  ranger/repos/community-staging-any/PKGBUILD
(from rev 753251, ranger/trunk/PKGBUILD)

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

Copied: ranger/repos/community-staging-any/PKGBUILD (from rev 753251, 
ranger/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:54:44 UTC (rev 753253)
@@ -0,0 +1,46 @@
+# Maintainer: schuay 
+# Maintainer: Levente Polyak 
+# Previous maintainer: Roman Zimbelmann 
+
+pkgname=ranger
+pkgver=1.9.3
+pkgrel=3
+pkgdesc='Simple, vim-like file manager'
+arch=('any')
+url='https://ranger.github.io'
+license=('GPL')
+depends=('python')
+optdepends=(
+'atool: for previews of archives'
+'elinks: for previews of html pages'
+'ffmpegthumbnailer: for video previews'
+'highlight: for syntax highlighting of code'
+'libcaca: for ASCII-art image previews'
+'lynx: for previews of html pages'
+'mediainfo: for viewing information about media files'
+'odt2txt: for OpenDocument texts'
+'perl-image-exiftool: for viewing information about media files'
+'poppler: for pdf previews'
+'python-chardet: in case of encoding detection problems'
+'sudo: to use the "run as root"-feature'
+'transmission-cli: for viewing bittorrent information'
+'ueberzug: for previews of images'
+'w3m: for previews of images and html pages')
+checkdepends=('python-pytest')
+source=(https://ranger.github.io/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha512sums=('5cd7bea714a6542d0a5445f5f0cf929b2df4377df3ef710f3786c6c46dd58b017a8060cde3969076637bfaac03c13297d3020fd82f4574dc49546ca223c0e8d3'
+'SKIP')
+validpgpkeys=('1E9B36EC051FF6F7FFC969A7F08CE1E200FB5CDF'
+  '66FA95C0F1619BDA520A41F60D63346A5D15D055') # huterich
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test_pytest
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:14
  Author: foutrelis
Revision: 753245

upgpkg: python-srcinfo 0.0.8-5: Python 3.9 rebuild

Modified:
  python-srcinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:53:40 UTC (rev 753244)
+++ PKGBUILD2020-11-12 18:54:14 UTC (rev 753245)
@@ -2,7 +2,7 @@
 
 pkgname=python-srcinfo
 pkgver=0.0.8
-pkgrel=4
+pkgrel=5
 
 pkgdesc="Simple .SRCINFO parsing library"
 url='https://github.com/kyrias/python-srcinfo'


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:37
  Author: foutrelis
Revision: 753243

upgpkg: python-prance 0.19.0-3: Python 3.9 rebuild

Modified:
  python-prance/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:53:36 UTC (rev 753242)
+++ PKGBUILD2020-11-12 18:53:37 UTC (rev 753243)
@@ -4,7 +4,7 @@
 pkgname=python-prance
 pkgver=0.19.0
 _openapi_commit=fbe62006211838a8bb7bf2433a1d15f1a5838a03
-pkgrel=2
+pkgrel=3
 pkgdesc="Resolving Swagger/OpenAPI 2.0 and 3.0 Parser"
 url="https://github.com/jfinkhaeuser/prance;
 license=('custom:MITNFA')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:52:59
  Author: foutrelis
Revision: 753231

archrelease: copy trunk to community-staging-any

Added:
  dg/repos/community-staging-any/
  dg/repos/community-staging-any/PKGBUILD
(from rev 753230, dg/trunk/PKGBUILD)

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

Copied: dg/repos/community-staging-any/PKGBUILD (from rev 753230, 
dg/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:52:59 UTC (rev 753231)
@@ -0,0 +1,20 @@
+# Maintainer: Felix Yan 
+
+pkgname=dg
+pkgver=1.1.0.20160916
+_commit=9d9a5365c8ee28d4812062db1e9932754260d2d0
+pkgrel=4
+pkgdesc="A simple language that compiles to CPython bytecode"
+arch=('any')
+url="https://pyos.github.io/dg;
+license=('MIT')
+depends=('python')
+makedepends=('git')
+source=("git://github.com/pyos/dg.git#commit=$_commit")
+md5sums=('SKIP')
+
+package() {
+  cd dg
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in python-fastpbkdf2/repos/community-staging-x86_64 (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:36
  Author: foutrelis
Revision: 753242

archrelease: copy trunk to community-staging-x86_64

Added:
  python-fastpbkdf2/repos/community-staging-x86_64/PKGBUILD
(from rev 753241, python-fastpbkdf2/trunk/PKGBUILD)
Deleted:
  python-fastpbkdf2/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:53:33 UTC (rev 753241)
+++ PKGBUILD2020-11-12 18:53:36 UTC (rev 753242)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=python-fastpbkdf2
-pkgver=0.2
-pkgrel=5
-pkgdesc="A faster implementation of PBKDF2"
-arch=('x86_64')
-license=('Apache')
-url="https://github.com/Ayrx/python-fastpbkdf2;
-depends=('python-cffi' 'python-six')
-makedepends=('python-setuptools' 'git')
-checkdepends=('python-pytest-runner') 
-source=("git+https://github.com/Ayrx/python-fastpbkdf2.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd "$srcdir"/python-fastpbkdf2
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-fastpbkdf2
-  python setup.py pytest
-}
-
-package() {
-  cd python-fastpbkdf2
-  python setup.py install --root="$pkgdir/" --optimize=1
-}

Copied: python-fastpbkdf2/repos/community-staging-x86_64/PKGBUILD (from rev 
753241, python-fastpbkdf2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:53:36 UTC (rev 753242)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=python-fastpbkdf2
+pkgver=0.2
+pkgrel=6
+pkgdesc="A faster implementation of PBKDF2"
+arch=('x86_64')
+license=('Apache')
+url="https://github.com/Ayrx/python-fastpbkdf2;
+depends=('python-cffi' 'python-six')
+makedepends=('python-setuptools' 'git')
+checkdepends=('python-pytest-runner') 
+source=("git+https://github.com/Ayrx/python-fastpbkdf2.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir"/python-fastpbkdf2
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-fastpbkdf2
+  python setup.py pytest
+}
+
+package() {
+  cd python-fastpbkdf2
+  python setup.py install --root="$pkgdir/" --optimize=1
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:22
  Author: foutrelis
Revision: 753240

archrelease: copy trunk to community-staging-x86_64

Added:
  python-fuse/repos/community-staging-x86_64/
  python-fuse/repos/community-staging-x86_64/PKGBUILD
(from rev 753239, python-fuse/trunk/PKGBUILD)

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

Copied: python-fuse/repos/community-staging-x86_64/PKGBUILD (from rev 753239, 
python-fuse/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:53:22 UTC (rev 753240)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Chris Brannon 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Alexander Fehr 
+
+pkgname=python-fuse
+pkgver=1.0.0
+pkgrel=3
+arch=('x86_64')
+pkgdesc="Python bindings for FUSE"
+url="https://github.com/libfuse/python-fuse;
+license=('LGPL')
+makedepends=('python-setuptools' 'fuse2')
+depends=('fuse2' 'python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/libfuse/python-fuse/archive/v$pkgver.tar.gz;)
+sha512sums=('d5e91be3e43065988053390d97ca6483ce38924bf9a49f694bf911080b7e75c836224e83d09dcbc6fab8d63781b4cd3ae016d66b65b88dd53106b06f91a6ad5c')
+
+build() {
+  cd python-fuse-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd python-fuse-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:40
  Author: foutrelis
Revision: 753244

archrelease: copy trunk to community-staging-any

Added:
  python-prance/repos/community-staging-any/PKGBUILD
(from rev 753243, python-prance/trunk/PKGBUILD)
Deleted:
  python-prance/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:53:37 UTC (rev 753243)
+++ PKGBUILD2020-11-12 18:53:40 UTC (rev 753244)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=python-prance
-pkgver=0.19.0
-_openapi_commit=fbe62006211838a8bb7bf2433a1d15f1a5838a03
-pkgrel=2
-pkgdesc="Resolving Swagger/OpenAPI 2.0 and 3.0 Parser"
-url="https://github.com/jfinkhaeuser/prance;
-license=('custom:MITNFA')
-arch=('any')
-depends=('python-chardet' 'python-yaml' 'python-flex' 'python-click' 
'python-requests'
- 'python-six' 'python-semver')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-cov')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/jfinkhaeuser/prance/archive/v$pkgver.tar.gz;
-
"OpenAPI-Specification-$_openapi_commit.tar.gz::https://github.com/OAI/OpenAPI-Specification/archive/$_openapi_commit.tar.gz;)
-sha512sums=('e04e10e025280170d4b01ff302d7bb3cde30c321d9b09c9b215eec2f4214dc05a32adcc0a171ee13b0b843639ae7978015693658e601b49286224e1dbe779bf2'
-
'd7957f1cdaa681b4c163e6e0b35ed6b808f469c3fdbba86a5e7221bb3c0c980415dca145e7f57bcebed75624562e89a893841d17c9e0ff82df4f0ff65ffaa2ae')
-
-prepare() {
-  rmdir prance-$pkgver/tests/OpenAPI-Specification
-  ln -s "$srcdir"/OpenAPI-Specification-$_openapi_commit 
prance-$pkgver/tests/OpenAPI-Specification
-}
-
-build() {
-  cd prance-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd prance-$pkgver
-  pytest
-}
-
-package() {
-  cd prance-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-prance/repos/community-staging-any/PKGBUILD (from rev 753243, 
python-prance/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:53:40 UTC (rev 753244)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=python-prance
+pkgver=0.19.0
+_openapi_commit=fbe62006211838a8bb7bf2433a1d15f1a5838a03
+pkgrel=3
+pkgdesc="Resolving Swagger/OpenAPI 2.0 and 3.0 Parser"
+url="https://github.com/jfinkhaeuser/prance;
+license=('custom:MITNFA')
+arch=('any')
+depends=('python-chardet' 'python-yaml' 'python-flex' 'python-click' 
'python-requests'
+ 'python-six' 'python-semver')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-cov')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jfinkhaeuser/prance/archive/v$pkgver.tar.gz;
+
"OpenAPI-Specification-$_openapi_commit.tar.gz::https://github.com/OAI/OpenAPI-Specification/archive/$_openapi_commit.tar.gz;)
+sha512sums=('e04e10e025280170d4b01ff302d7bb3cde30c321d9b09c9b215eec2f4214dc05a32adcc0a171ee13b0b843639ae7978015693658e601b49286224e1dbe779bf2'
+
'd7957f1cdaa681b4c163e6e0b35ed6b808f469c3fdbba86a5e7221bb3c0c980415dca145e7f57bcebed75624562e89a893841d17c9e0ff82df4f0ff65ffaa2ae')
+
+prepare() {
+  rmdir prance-$pkgver/tests/OpenAPI-Specification
+  ln -s "$srcdir"/OpenAPI-Specification-$_openapi_commit 
prance-$pkgver/tests/OpenAPI-Specification
+}
+
+build() {
+  cd prance-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd prance-$pkgver
+  pytest
+}
+
+package() {
+  cd prance-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:19
  Author: foutrelis
Revision: 753238

upgpkg: python-fuse 1.0.0-3: Python 3.9 rebuild

Modified:
  python-fuse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:53:11 UTC (rev 753237)
+++ PKGBUILD2020-11-12 18:53:19 UTC (rev 753238)
@@ -6,7 +6,7 @@
 
 pkgname=python-fuse
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 pkgdesc="Python bindings for FUSE"
 url="https://github.com/libfuse/python-fuse;


[arch-commits] Commit in python-django-crispy-forms/repos/community-staging-any (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:52:59
  Author: foutrelis
Revision: 753232

archrelease: copy trunk to community-staging-any

Added:
  python-django-crispy-forms/repos/community-staging-any/PKGBUILD
(from rev 753230, python-django-crispy-forms/trunk/PKGBUILD)
Deleted:
  python-django-crispy-forms/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:52:59 UTC (rev 753231)
+++ PKGBUILD2020-11-12 18:52:59 UTC (rev 753232)
@@ -1,42 +0,0 @@
-# Maintainer: David Runge 
-
-_name=django-crispy-forms
-pkgname=python-django-crispy-forms
-pkgver=1.9.2
-pkgrel=2
-pkgdesc="The best way to have DRY Django forms"
-arch=('any')
-url="https://github.com/django-crispy-forms/django-crispy-forms;
-license=('MIT')
-depends=('python-django')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-django')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('2f3696d3a4b1ff1a203ae4f73ec42e9862bfcb709267f3d5788c4bdbccbd8f56070a2e51948557344ac23fd0fb157457a80b898b4573676282ac7a6a061a32be')
-b2sums=('777f215d020c6ebb344a40de86e1770d1efefa92409bd65ed2db9735ad70f855395f6f3c3be9d139949dcee90d6bc16ea5e8e7ae09af8d45279e8c69b45351b1')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings pytest -v 
crispy_forms/tests
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 {CONTRIBUTORS.txt,README.rst} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-django-crispy-forms/repos/community-staging-any/PKGBUILD (from 
rev 753230, python-django-crispy-forms/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:52:59 UTC (rev 753232)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+
+_name=django-crispy-forms
+pkgname=python-django-crispy-forms
+pkgver=1.9.2
+pkgrel=3
+pkgdesc="The best way to have DRY Django forms"
+arch=('any')
+url="https://github.com/django-crispy-forms/django-crispy-forms;
+license=('MIT')
+depends=('python-django')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-django')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('2f3696d3a4b1ff1a203ae4f73ec42e9862bfcb709267f3d5788c4bdbccbd8f56070a2e51948557344ac23fd0fb157457a80b898b4573676282ac7a6a061a32be')
+b2sums=('777f215d020c6ebb344a40de86e1770d1efefa92409bd65ed2db9735ad70f855395f6f3c3be9d139949dcee90d6bc16ea5e8e7ae09af8d45279e8c69b45351b1')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings pytest -v 
crispy_forms/tests
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {CONTRIBUTORS.txt,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:33
  Author: foutrelis
Revision: 753241

upgpkg: python-fastpbkdf2 0.2-6: Python 3.9 rebuild

Modified:
  python-fastpbkdf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:53:22 UTC (rev 753240)
+++ PKGBUILD2020-11-12 18:53:33 UTC (rev 753241)
@@ -3,7 +3,7 @@
 
 pkgname=python-fastpbkdf2
 pkgver=0.2
-pkgrel=5
+pkgrel=6
 pkgdesc="A faster implementation of PBKDF2"
 arch=('x86_64')
 license=('Apache')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:06
  Author: foutrelis
Revision: 753234

upgpkg: python-poetry-core 1.0.0-2: Python 3.9 rebuild

Modified:
  python-poetry-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:53:01 UTC (rev 753233)
+++ PKGBUILD2020-11-12 18:53:06 UTC (rev 753234)
@@ -4,7 +4,7 @@
 _pkgname=poetry-core
 pkgname=python-poetry-core
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Poetry PEP 517 Build Backend & Core Utilities"
 arch=('any')
 url="https://github.com/python-poetry/${_pkgname};


[arch-commits] Commit in python-poetry-core/repos (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:53:09
  Author: foutrelis
Revision: 753236

archrelease: copy trunk to community-staging-any

Added:
  python-poetry-core/repos/community-staging-any/
  python-poetry-core/repos/community-staging-any/PKGBUILD
(from rev 753235, python-poetry-core/trunk/PKGBUILD)

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

Copied: python-poetry-core/repos/community-staging-any/PKGBUILD (from rev 
753235, python-poetry-core/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:53:09 UTC (rev 753236)
@@ -0,0 +1,53 @@
+# Maintainer: Eli Schwartz 
+# Contributor: George Rawlinson 
+
+_pkgname=poetry-core
+pkgname=python-poetry-core
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="Poetry PEP 517 Build Backend & Core Utilities"
+arch=('any')
+url="https://github.com/python-poetry/${_pkgname};
+license=('MIT')
+_deps=('jsonschema' 'lark-parser' 'packaging' 'tomlkit')
+depends=("${_deps[@]/#/python-}")
+makedepends=('python-dephell')
+checkdepends=('git' 'python-pytest' 'python-pytest-mock' 'python-virtualenv')
+conflicts=('python-poetry<1.1.0')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('c8cff356f09b483cdbe752a18fa8a95716a55a225981e78410816659a9f82b87')
+b2sums=('62fe73c44a91569c92ec5f422211adeae3b9fc28547a0e37fdbe73ea92bfd4a01bdf35a2f6fb3dbbc4fd3d3e219ad2cfc5594229482dafe46051ded6cb04dab0')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# remove vendored dependencies
+sed -i '/^__version__/!d' poetry/core/__init__.py
+rm -r poetry/core/_vendor
+
+# be a proper namespace, python3-only ;)
+rm poetry/__init__.py
+
+dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# only works inside git repositories
+pytest \
+-k 'not test_default_with_excluded_data and not 
test_default_src_with_excluded_data'
+}
+
+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 dg/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:52:56
  Author: foutrelis
Revision: 753230

upgpkg: dg 1.1.0.20160916-4: Python 3.9 rebuild

Modified:
  dg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:52:56 UTC (rev 753229)
+++ PKGBUILD2020-11-12 18:52:56 UTC (rev 753230)
@@ -3,7 +3,7 @@
 pkgname=dg
 pkgver=1.1.0.20160916
 _commit=9d9a5365c8ee28d4812062db1e9932754260d2d0
-pkgrel=3
+pkgrel=4
 pkgdesc="A simple language that compiles to CPython bytecode"
 arch=('any')
 url="https://pyos.github.io/dg;


[arch-commits] Commit in python-django-crispy-forms/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:52:56
  Author: foutrelis
Revision: 753229

upgpkg: python-django-crispy-forms 1.9.2-3: Python 3.9 rebuild

Modified:
  python-django-crispy-forms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:52:55 UTC (rev 753228)
+++ PKGBUILD2020-11-12 18:52:56 UTC (rev 753229)
@@ -3,7 +3,7 @@
 _name=django-crispy-forms
 pkgname=python-django-crispy-forms
 pkgver=1.9.2
-pkgrel=2
+pkgrel=3
 pkgdesc="The best way to have DRY Django forms"
 arch=('any')
 url="https://github.com/django-crispy-forms/django-crispy-forms;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:52:20
  Author: foutrelis
Revision: 400682

upgpkg: kdevelop-python 5.6.0-2: Python 3.9 rebuild

Modified:
  kdevelop-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:48 UTC (rev 400681)
+++ PKGBUILD2020-11-12 18:52:20 UTC (rev 400682)
@@ -3,7 +3,7 @@
 
 pkgname=kdevelop-python
 pkgver=5.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Python language and documentation plugin for KDevelop"
 arch=(x86_64)
 url="http://www.kdevelop.org/;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:52:23
  Author: foutrelis
Revision: 400683

archrelease: copy trunk to staging-x86_64

Added:
  kdevelop-python/repos/staging-x86_64/
  kdevelop-python/repos/staging-x86_64/PKGBUILD
(from rev 400682, kdevelop-python/trunk/PKGBUILD)

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

Copied: kdevelop-python/repos/staging-x86_64/PKGBUILD (from rev 400682, 
kdevelop-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-12 18:52:23 UTC (rev 400683)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdevelop-python
+pkgver=5.6.0
+pkgrel=2
+pkgdesc="Python language and documentation plugin for KDevelop"
+arch=(x86_64)
+url="http://www.kdevelop.org/;
+license=(GPL)
+depends=(kdevelop python)
+makedepends=(extra-cmake-modules)
+optdepends=('python-pycodestyle: for Python style checking')
+source=("https://download.kde.org/stable/kdevelop/$pkgver/src/kdev-python-$pkgver.tar.xz"{,.sig})
+sha256sums=('cb7163c1b72390c647bb9c0892abc84007699d447f303b4652cdd9cdb0036d52'
+'SKIP')
+validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6'  # Sven Brauch 

+  '364EFA5F639572907D392999C64CF56B13CACE5D'  # Kevin Funk 

+  'E191FD5BE6F46870F09E82B2024E7FB43D015474'  # Friedrich W. H. 
Kossebau 
+  '0A48BC961075B4BA8523E3790A345FB086E797D9') # 
https://share.kde.org/s/8dKaJTw8pR8iiwJ
+
+build() {
+  cmake -B build -S kdev-python-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:51:33
  Author: foutrelis
Revision: 753223

upgpkg: python-bluepy 1.3.0-4: Python 3.9 rebuild

Modified:
  python-bluepy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:51:30 UTC (rev 753222)
+++ PKGBUILD2020-11-12 18:51:33 UTC (rev 753223)
@@ -3,7 +3,7 @@
 _pyname=bluepy-v
 pkgname=python-bluepy
 pkgver=1.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez'
 url='https://github.com/IanHarvey/bluepy'
 arch=('x86_64')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:51:30
  Author: foutrelis
Revision: 753222

archrelease: copy trunk to community-staging-any

Added:
  python-zeep/repos/community-staging-any/PKGBUILD
(from rev 753221, python-zeep/trunk/PKGBUILD)
Deleted:
  python-zeep/repos/community-staging-any/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:51:26 UTC (rev 753221)
+++ PKGBUILD2020-11-12 18:51:30 UTC (rev 753222)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-zeep
-pkgver=4.0.0
-pkgrel=2
-pkgdesc="A fast and modern Python SOAP client"
-arch=('any')
-license=('MIT')
-url="https://docs.python-zeep.org;
-depends=('python-appdirs' 'python-attrs' 'python-cached-property' 
'python-defusedxml'
- 'python-isodate' 'python-lxml' 'python-requests' 
'python-requests-toolbelt'
- 'python-requests-file' 'python-pytz')
-checkdepends=('python-pytest-runner' 'python-freezegun' 'python-mock' 
'python-pretend'
-  'python-pytest-cov' 'python-requests-mock' 'python-pytest-httpx'
-  'python-pytest-asyncio' 'python-aiohttp' 'python-aioresponses' 
'python-xmlsec')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mvantellingen/python-zeep/archive/$pkgver.tar.gz;)
-sha512sums=('48999c8b6144021d974ce40db0fdfe9702a9b2984c1ebd8b39c426a0dc58a50e3bffc439586d3bb6bfd7f69b42a32758bd09b0b4c1dfc061fd61d36d1e346e58')
-
-prepare() {
-  sed -i -e 's/==/>=/' -e '/flake8/d' -e '/isort/d' 
python-zeep-$pkgver/setup.py
-
-  #sed -i 's/get_marker/get_closest_marker/' 
python-zeep-$pkgver/tests/conftest.py
-}
-
-build() {
-  cd python-zeep-$pkgver
-  python setup.py build
-} 
-
-check() {
-  cd python-zeep-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd python-zeep-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-zeep/repos/community-staging-any/PKGBUILD (from rev 753221, 
python-zeep/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:51:30 UTC (rev 753222)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-zeep
+pkgver=4.0.0
+pkgrel=3
+pkgdesc="A fast and modern Python SOAP client"
+arch=('any')
+license=('MIT')
+url="https://docs.python-zeep.org;
+depends=('python-appdirs' 'python-attrs' 'python-cached-property' 
'python-defusedxml'
+ 'python-isodate' 'python-lxml' 'python-requests' 
'python-requests-toolbelt'
+ 'python-requests-file' 'python-pytz')
+checkdepends=('python-pytest-runner' 'python-freezegun' 'python-mock' 
'python-pretend'
+  'python-pytest-cov' 'python-requests-mock' 'python-pytest-httpx'
+  'python-pytest-asyncio' 'python-aiohttp' 'python-aioresponses' 
'python-xmlsec')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mvantellingen/python-zeep/archive/$pkgver.tar.gz;)
+sha512sums=('48999c8b6144021d974ce40db0fdfe9702a9b2984c1ebd8b39c426a0dc58a50e3bffc439586d3bb6bfd7f69b42a32758bd09b0b4c1dfc061fd61d36d1e346e58')
+
+prepare() {
+  sed -i -e 's/==/>=/' -e '/flake8/d' -e '/isort/d' 
python-zeep-$pkgver/setup.py
+
+  #sed -i 's/get_marker/get_closest_marker/' 
python-zeep-$pkgver/tests/conftest.py
+}
+
+build() {
+  cd python-zeep-$pkgver
+  python setup.py build
+} 
+
+check() {
+  cd python-zeep-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd python-zeep-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:51:09
  Author: foutrelis
Revision: 753218

archrelease: copy trunk to community-staging-any

Added:
  ropper/repos/community-staging-any/
  ropper/repos/community-staging-any/PKGBUILD
(from rev 753216, ropper/trunk/PKGBUILD)

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

Copied: ropper/repos/community-staging-any/PKGBUILD (from rev 753216, 
ropper/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:51:09 UTC (rev 753218)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=ropper
+pkgname=('ropper' 'python-ropper')
+_pkgname=Ropper
+pkgver=1.13.5
+pkgrel=2
+pkgdesc='Show information about binary files and find gadgets to build rop 
chains for different architectures'
+url='https://github.com/sashs/Ropper'
+arch=('any')
+license=('GPL2')
+makedepends=('python-setuptools' 'python-capstone' 'python-filebytes')
+source=(https://github.com/sashs/${_pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('ef9d308352ba4a662ef3eb9da77b7dcd458582d3840acd2c197c20d91023a6a1a2d68340b1557f053b45096a5dad0443e64bb5e48e20c30a953c9a4e8c89b7f2')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  python test.py
+}
+
+package_ropper() {
+  depends=('python' "python-ropper>=${pkgver}")
+  optdepends=('python-keystone: assemble command support')
+  cd ${_pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -r "${pkgdir}/usr/lib"
+}
+
+package_python-ropper() {
+  depends=('python-capstone' 'python-filebytes')
+  optdepends=('python-keystone: assemble command support')
+  cd ${_pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 README.md sample.py -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -r "${pkgdir}/usr/bin"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:51:26
  Author: foutrelis
Revision: 753221

upgpkg: python-zeep 4.0.0-3: Python 3.9 rebuild

Modified:
  python-zeep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:51:19 UTC (rev 753220)
+++ PKGBUILD2020-11-12 18:51:26 UTC (rev 753221)
@@ -2,7 +2,7 @@
 
 pkgname=python-zeep
 pkgver=4.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A fast and modern Python SOAP client"
 arch=('any')
 license=('MIT')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:51:36
  Author: foutrelis
Revision: 753224

archrelease: copy trunk to community-staging-x86_64

Added:
  python-bluepy/repos/community-staging-x86_64/
  python-bluepy/repos/community-staging-x86_64/PKGBUILD
(from rev 753223, python-bluepy/trunk/PKGBUILD)

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

Copied: python-bluepy/repos/community-staging-x86_64/PKGBUILD (from rev 753223, 
python-bluepy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:51:36 UTC (rev 753224)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+
+_pyname=bluepy-v
+pkgname=python-bluepy
+pkgver=1.3.0
+pkgrel=4
+pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez'
+url='https://github.com/IanHarvey/bluepy'
+arch=('x86_64')
+license=('GPL2')
+depends=('python' 'python-setuptools' 'bluez' 'glib2')
+makedepends=('python-sphinx')
+options=('!makeflags')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz)
+sha256sums=('878e68e6d0f2823a5ebc5763e97ed887cc599120a5cc0bac577b7d655db6cd3e')
+sha512sums=('817fcc44646008a4aadac39b1e9ef694fd706b4d23e2299c78084e48f804beec2e76af2701572ce76d9cf325de09e0ded539dd1ceb6ed574cb5d589045c17e37')
+
+prepare() {
+  cd ${_pyname}-${pkgver}
+  sed 's|CFLAGS =|CFLAGS +=|g' -i bluepy/Makefile
+  sed 's|CPPFLAGS =|CPPFLAGS +=|g' -i bluepy/Makefile
+  sed 's| $(LDLIBS)| $(LDFLAGS) $(LDLIBS)|g' -i bluepy/Makefile
+}
+
+build() {
+  cd ${_pyname}-${pkgver}
+  python setup.py build
+  make -C bluepy
+  make -C docs man text SPHINXBUILD=sphinx-build
+}
+
+package() {
+  cd ${_pyname}-${pkgver}
+
+  # install
+  python setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build
+  install -Dm 644 README.md docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/man/bluepy.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  install -Dm 755 bluepy/bluepy-helper -t 
"${pkgdir}"/usr/lib/python*/site-packages/bluepy
+
+  # cleanup
+  rm 
"${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in eog-plugins/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:48
  Author: foutrelis
Revision: 400681

archrelease: copy trunk to staging-x86_64

Added:
  eog-plugins/repos/staging-x86_64/
  eog-plugins/repos/staging-x86_64/PKGBUILD
(from rev 400680, eog-plugins/trunk/PKGBUILD)

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

Copied: eog-plugins/repos/staging-x86_64/PKGBUILD (from rev 400680, 
eog-plugins/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-12 18:50:48 UTC (rev 400681)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=eog-plugins
+pkgver=3.26.5
+pkgrel=2
+pkgdesc="Plugins for Eye of Gnome"
+arch=(x86_64)
+url="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins;
+license=(GPL2)
+depends=(eog libchamplain libgdata python-gobject)
+makedepends=(intltool gobject-introspection git)
+_commit=6d0f8b097d9b087462b3ac738f15d88ebdfb55b9  # tags/3.26.5^0
+source=("git+https://gitlab.gnome.org/GNOME/eog-plugins.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:51:06
  Author: foutrelis
Revision: 753216

upgpkg: ropper 1.13.5-2: Python 3.9 rebuild

Modified:
  ropper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:54 UTC (rev 753215)
+++ PKGBUILD2020-11-12 18:51:06 UTC (rev 753216)
@@ -4,7 +4,7 @@
 pkgname=('ropper' 'python-ropper')
 _pkgname=Ropper
 pkgver=1.13.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Show information about binary files and find gadgets to build rop 
chains for different architectures'
 url='https://github.com/sashs/Ropper'
 arch=('any')


[arch-commits] Commit in python-flask-sphinx-themes/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:34
  Author: foutrelis
Revision: 753211

upgpkg: python-flask-sphinx-themes 1.0.2-4: Python 3.9 rebuild

Modified:
  python-flask-sphinx-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:32 UTC (rev 753210)
+++ PKGBUILD2020-11-12 18:50:34 UTC (rev 753211)
@@ -2,7 +2,7 @@
 
 pkgname=python-flask-sphinx-themes
 pkgver=1.0.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Sphinx themes for Flask and related projects"
 url="https://github.com/pallets/flask-sphinx-themes;
 license=('BSD')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:32
  Author: foutrelis
Revision: 753210

archrelease: copy trunk to community-staging-any

Added:
  python-wsgiproxy2/repos/community-staging-any/PKGBUILD
(from rev 753209, python-wsgiproxy2/trunk/PKGBUILD)
Deleted:
  python-wsgiproxy2/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:28 UTC (rev 753209)
+++ PKGBUILD2020-11-12 18:50:32 UTC (rev 753210)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-wsgiproxy2
-pkgver=0.4.6
-pkgrel=4
-pkgdesc="A WSGI Proxy with various http client backends"
-arch=('any')
-license=('MIT')
-url="https://github.com/gawel/WSGIProxy2/;
-depends=('python-webob' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-nose' 'python-requests' 'python-webtest' 
'python-waitress')
-source=("https://github.com/gawel/WSGIProxy2/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('9a3c8e96cafe4451943f63bbf47cc0f6ffc7a6916cd8e42f7d1aa53ccab59a74f772c55c1a1f456e97e72c5d15f1601c6501e2c0650bb54c81acd52696580023')
-
-build() {
-  cd WSGIProxy2-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd WSGIProxy2-$pkgver
-  nosetests3
-}
-
-package() {
-  cd WSGIProxy2-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-wsgiproxy2/repos/community-staging-any/PKGBUILD (from rev 
753209, python-wsgiproxy2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:50:32 UTC (rev 753210)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-wsgiproxy2
+pkgver=0.4.6
+pkgrel=5
+pkgdesc="A WSGI Proxy with various http client backends"
+arch=('any')
+license=('MIT')
+url="https://github.com/gawel/WSGIProxy2/;
+depends=('python-webob' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-requests' 'python-webtest' 
'python-waitress')
+source=("https://github.com/gawel/WSGIProxy2/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('9a3c8e96cafe4451943f63bbf47cc0f6ffc7a6916cd8e42f7d1aa53ccab59a74f772c55c1a1f456e97e72c5d15f1601c6501e2c0650bb54c81acd52696580023')
+
+build() {
+  cd WSGIProxy2-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd WSGIProxy2-$pkgver
+  nosetests3
+}
+
+package() {
+  cd WSGIProxy2-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:28
  Author: foutrelis
Revision: 753209

upgpkg: python-wsgiproxy2 0.4.6-5: Python 3.9 rebuild

Modified:
  python-wsgiproxy2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:15 UTC (rev 753208)
+++ PKGBUILD2020-11-12 18:50:28 UTC (rev 753209)
@@ -2,7 +2,7 @@
 
 pkgname=python-wsgiproxy2
 pkgver=0.4.6
-pkgrel=4
+pkgrel=5
 pkgdesc="A WSGI Proxy with various http client backends"
 arch=('any')
 license=('MIT')


[arch-commits] Commit in certbot-dns-cloudflare/repos (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:54
  Author: foutrelis
Revision: 753215

archrelease: copy trunk to community-staging-any

Added:
  certbot-dns-cloudflare/repos/community-staging-any/
  certbot-dns-cloudflare/repos/community-staging-any/PKGBUILD
(from rev 753214, certbot-dns-cloudflare/trunk/PKGBUILD)

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

Copied: certbot-dns-cloudflare/repos/community-staging-any/PKGBUILD (from rev 
753214, certbot-dns-cloudflare/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:50:54 UTC (rev 753215)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-cloudflare
+pkgver=1.9.0
+pkgrel=2
+pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'python-acme' 'python-cloudflare' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('c7d70686c74d1b12e7406204b7ae1979392f6ffa4ad869e9d3bca9322231813666e33f608fff460c9f21ac9cc0ba15793edbfee256314e0cf9cdd2b7d3ae3a81'
+'SKIP')
+
+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"
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:15
  Author: foutrelis
Revision: 753208

archrelease: copy trunk to community-staging-any

Added:
  sagetex/repos/community-staging-any/
  sagetex/repos/community-staging-any/PKGBUILD
(from rev 753207, sagetex/trunk/PKGBUILD)

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

Copied: sagetex/repos/community-staging-any/PKGBUILD (from rev 753207, 
sagetex/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:50:15 UTC (rev 753208)
@@ -0,0 +1,18 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=sagetex
+pkgver=3.5
+pkgrel=2
+pkgdesc='Allows to embed code, results of computations, and plots from 
SageMath into LaTeX documents'
+arch=(any)
+url='https://github.com/sagemath/sagetex'
+license=(GPL2)
+depends=(sagemath texlive-core)
+source=("https://github.com/sagemath/sagetex/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('3a7454002ddff9bf862d139130c27de0416bbc2378e1f4de4eb50d805ee96779')
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root "$pkgdir" --optimize=1
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:12
  Author: foutrelis
Revision: 753207

upgpkg: sagetex 3.5-2: Python 3.9 rebuild

Modified:
  sagetex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:06 UTC (rev 753206)
+++ PKGBUILD2020-11-12 18:50:12 UTC (rev 753207)
@@ -2,7 +2,7 @@
 
 pkgname=sagetex
 pkgver=3.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Allows to embed code, results of computations, and plots from 
SageMath into LaTeX documents'
 arch=(any)
 url='https://github.com/sagemath/sagetex'


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:06
  Author: foutrelis
Revision: 753206

archrelease: copy trunk to community-staging-x86_64

Added:
  tiled/repos/community-staging-x86_64/
  tiled/repos/community-staging-x86_64/PKGBUILD
(from rev 753205, tiled/trunk/PKGBUILD)

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

Copied: tiled/repos/community-staging-x86_64/PKGBUILD (from rev 753205, 
tiled/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:50:06 UTC (rev 753206)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
+pkgname=tiled
+pkgver=1.4.2
+pkgrel=2
+pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
+arch=('x86_64')
+url='http://www.mapeditor.org'
+license=('GPL')
+replaces=('tiled-qt')
+depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11' 'qt5-declarative' 'qt5-quickcontrols2' 
'zstd')
+makedepends=('mesa' 'qt5-tools' 'python3')
+optdepends=('python3: Python plugin')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
+sha512sums=('1fddd8c8d67e4eaf116c82e276b0941e6dae7c529f2132e49da77d7e215fc7106d5fd3ef55d118f799153b57340effcf2481a131a436be7f00f61c4fc4bd45d2')
+
+build() {
+  cd $pkgname-$pkgver
+  qmake -r CONFIG+="tiled_zstd" SYSTEMD_ZSTD=yes INSTALL_HEADERS=yes RPATH=no 
PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install INSTALL_ROOT="$pkgdir"
+}


[arch-commits] Commit in python-flask-sphinx-themes/repos/community-staging-any (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:37
  Author: foutrelis
Revision: 753212

archrelease: copy trunk to community-staging-any

Added:
  python-flask-sphinx-themes/repos/community-staging-any/PKGBUILD
(from rev 753211, python-flask-sphinx-themes/trunk/PKGBUILD)
Deleted:
  python-flask-sphinx-themes/repos/community-staging-any/PKGBUILD

--+
 PKGBUILD |   48 
 1 file changed, 24 insertions(+), 24 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:34 UTC (rev 753211)
+++ PKGBUILD2020-11-12 18:50:37 UTC (rev 753212)
@@ -1,24 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-flask-sphinx-themes
-pkgver=1.0.2
-pkgrel=3
-pkgdesc="Sphinx themes for Flask and related projects"
-url="https://github.com/pallets/flask-sphinx-themes;
-license=('BSD')
-arch=('any')
-depends=('python-sphinx')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/flask-sphinx-themes/archive/$pkgver.tar.gz;)
-sha512sums=('b3cbdca9719b579d4e9644b51e187a87d49e3c82083a8fff649eef74eb7a475bcc0580bcd3012081048bcbbe001ce06f1cccbed39d2f30285cfedb2304f67af3')
-
-build() {
-  cd flask-sphinx-themes-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd flask-sphinx-themes-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-flask-sphinx-themes/repos/community-staging-any/PKGBUILD (from 
rev 753211, python-flask-sphinx-themes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:50:37 UTC (rev 753212)
@@ -0,0 +1,24 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-flask-sphinx-themes
+pkgver=1.0.2
+pkgrel=4
+pkgdesc="Sphinx themes for Flask and related projects"
+url="https://github.com/pallets/flask-sphinx-themes;
+license=('BSD')
+arch=('any')
+depends=('python-sphinx')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/flask-sphinx-themes/archive/$pkgver.tar.gz;)
+sha512sums=('b3cbdca9719b579d4e9644b51e187a87d49e3c82083a8fff649eef74eb7a475bcc0580bcd3012081048bcbbe001ce06f1cccbed39d2f30285cfedb2304f67af3')
+
+build() {
+  cd flask-sphinx-themes-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd flask-sphinx-themes-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:03
  Author: foutrelis
Revision: 753205

upgpkg: tiled 1.4.2-2: Python 3.9 rebuild

Modified:
  tiled/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:00 UTC (rev 753204)
+++ PKGBUILD2020-11-12 18:50:03 UTC (rev 753205)
@@ -2,7 +2,7 @@
 # Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
 pkgname=tiled
 pkgver=1.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
 arch=('x86_64')
 url='http://www.mapeditor.org'


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:45
  Author: foutrelis
Revision: 400680

upgpkg: eog-plugins 3.26.5-2: Python 3.9 rebuild

Modified:
  eog-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:47:38 UTC (rev 400679)
+++ PKGBUILD2020-11-12 18:50:45 UTC (rev 400680)
@@ -2,7 +2,7 @@
 
 pkgname=eog-plugins
 pkgver=3.26.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Plugins for Eye of Gnome"
 arch=(x86_64)
 url="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins;


[arch-commits] Commit in certbot-dns-cloudflare/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:50
  Author: foutrelis
Revision: 753214

upgpkg: certbot-dns-cloudflare 1.9.0-2: Python 3.9 rebuild

Modified:
  certbot-dns-cloudflare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:50:44 UTC (rev 753213)
+++ PKGBUILD2020-11-12 18:50:50 UTC (rev 753214)
@@ -2,7 +2,7 @@
 
 pkgname=certbot-dns-cloudflare
 pkgver=1.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
 arch=('any')
 license=('Apache')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:49:57
  Author: foutrelis
Revision: 753202

archrelease: copy trunk to community-staging-any

Added:
  gufw/repos/community-staging-any/
  gufw/repos/community-staging-any/PKGBUILD
(from rev 753201, gufw/trunk/PKGBUILD)

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

Copied: gufw/repos/community-staging-any/PKGBUILD (from rev 753201, 
gufw/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:49:57 UTC (rev 753202)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor : Martin Wimpress 
+
+pkgname=gufw
+pkgver=20.04.1
+pkgrel=3
+pkgdesc='Uncomplicated way to manage your Linux firewall'
+url='https://gufw.org/'
+arch=('any')
+license=('GPL3')
+depends=('gtk3' 'polkit' 'python' 'python-gobject' 'ufw' 'webkit2gtk' 
'desktop-file-utils' 'gtk-update-icon-cache')
+makedepends=('intltool' 'python-distutils-extra')
+source=(https://github.com/costales/gufw/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('fbc5a8ce863c3178354230ca4224b6c32e2aee691d3db1ba397f0b0c8a7acdd3d0a2f739c62ec5f99957e422387fd3ccee4ddce9959160c3c50c81a769b49981')
+b2sums=('af273dc6430ae2d77eb857f3b00428ca12ace441e355642fd44adfaf0f6b369baa2fbd5d25ec57a8317911166330777d2ef94ea7a59eff8ddb6e51d6c322ccfd')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
+  sed -E "s|python3\.[0-9]|python${PYTHONVERSION}|g" -i bin/gufw-pkexec
+  sed -E 's/(loginctl\|grep \$\(whoami\))/\1|sort -n|tail -n 1/g' -i bin/gufw
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  # required so desktop, icon and translation files get installed
+  export XDG_RUNTIME_DIR="/tmp/${pkgname}"
+  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:50:00
  Author: foutrelis
Revision: 753204

archrelease: copy trunk to community-staging-any

Added:
  urlscan/repos/community-staging-any/
  urlscan/repos/community-staging-any/PKGBUILD
(from rev 753203, urlscan/trunk/PKGBUILD)

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

Copied: urlscan/repos/community-staging-any/PKGBUILD (from rev 753203, 
urlscan/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:50:00 UTC (rev 753204)
@@ -0,0 +1,28 @@
+# Maintainer: Brett Cornwall 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+pkgname=urlscan
+pkgver=0.9.5
+pkgrel=2
+pkgdesc="Mutt and terminal url selector"
+url="https://github.com/firecat53/urlscan;
+arch=('any')
+license=('GPL2')
+depends=('python-urwid')
+makedepends=('python-setuptools')
+optdepends=(
+'xclip: Clipboard support for X11 environments'
+'wl-clipboard: Clipboard support for Wayland'
+)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/firecat53/urlscan/archive/$pkgver.tar.gz;)
+sha256sums=('db76f61966431a8938adc998aaa2b30be54f9b1ff2a4c0064e9915df2fb6b996')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:49:54
  Author: foutrelis
Revision: 753201

upgpkg: gufw 20.04.1-3: Python 3.9 rebuild

Modified:
  gufw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:49:50 UTC (rev 753200)
+++ PKGBUILD2020-11-12 18:49:54 UTC (rev 753201)
@@ -3,7 +3,7 @@
 
 pkgname=gufw
 pkgver=20.04.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Uncomplicated way to manage your Linux firewall'
 url='https://gufw.org/'
 arch=('any')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:49:57
  Author: foutrelis
Revision: 753203

upgpkg: urlscan 0.9.5-2: Python 3.9 rebuild

Modified:
  urlscan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:49:57 UTC (rev 753202)
+++ PKGBUILD2020-11-12 18:49:57 UTC (rev 753203)
@@ -3,7 +3,7 @@
 
 pkgname=urlscan
 pkgver=0.9.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Mutt and terminal url selector"
 url="https://github.com/firecat53/urlscan;
 arch=('any')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:49:02
  Author: foutrelis
Revision: 753194

archrelease: copy trunk to community-staging-any

Added:
  python-pint/repos/community-staging-any/PKGBUILD
(from rev 753193, python-pint/trunk/PKGBUILD)
Deleted:
  python-pint/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:48:58 UTC (rev 753193)
+++ PKGBUILD2020-11-12 18:49:02 UTC (rev 753194)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Matthew Sloan matt...@sloan.cc
-
-pkgname=python-pint
-pkgver=0.16.1
-pkgrel=2
-pkgdesc="A unit library for Python"
-arch=('any')
-license=('BSD')
-url="https://pint.readthedocs.org;
-depends=('python')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-pytest-runner' 'python-numpy' 'python-uncertainties')
-source=("https://pypi.io/packages/source/P/Pint/Pint-$pkgver.tar.gz;)
-sha512sums=('7d18ff7a7e85ff98350347a487be62513b100e4adba701a8e5f27f6db89618931d0f62b67be42bda4af097f5f01830baa5a6b50a537924287214d0d954da5322')
-
-prepare() {
-  cd Pint-$pkgver
-  sed -i 's/pkg_resources.extern.//' pint/quantity.py
-}
-
-check() {
-  cd Pint-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd Pint-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pint/repos/community-staging-any/PKGBUILD (from rev 753193, 
python-pint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:49:02 UTC (rev 753194)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Matthew Sloan matt...@sloan.cc
+
+pkgname=python-pint
+pkgver=0.16.1
+pkgrel=3
+pkgdesc="A unit library for Python"
+arch=('any')
+license=('BSD')
+url="https://pint.readthedocs.org;
+depends=('python')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pytest-runner' 'python-numpy' 'python-uncertainties')
+source=("https://pypi.io/packages/source/P/Pint/Pint-$pkgver.tar.gz;)
+sha512sums=('7d18ff7a7e85ff98350347a487be62513b100e4adba701a8e5f27f6db89618931d0f62b67be42bda4af097f5f01830baa5a6b50a537924287214d0d954da5322')
+
+prepare() {
+  cd Pint-$pkgver
+  sed -i 's/pkg_resources.extern.//' pint/quantity.py
+}
+
+check() {
+  cd Pint-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd Pint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:48:58
  Author: foutrelis
Revision: 753193

upgpkg: python-pint 0.16.1-3: Python 3.9 rebuild

Modified:
  python-pint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:48:42 UTC (rev 753192)
+++ PKGBUILD2020-11-12 18:48:58 UTC (rev 753193)
@@ -3,7 +3,7 @@
 
 pkgname=python-pint
 pkgver=0.16.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A unit library for Python"
 arch=('any')
 license=('BSD')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:47:35
  Author: foutrelis
Revision: 400678

upgpkg: gnome-builder 3.38.1-4: Python 3.9 rebuild

Modified:
  gnome-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:45:53 UTC (rev 400677)
+++ PKGBUILD2020-11-12 18:47:35 UTC (rev 400678)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-builder
 pkgver=3.38.1
-pkgrel=3
+pkgrel=4
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder;
 arch=(x86_64)


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:47:23
  Author: foutrelis
Revision: 753186

upgpkg: python-zope-security 5.1.1-3: Python 3.9 rebuild

Modified:
  python-zope-security/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:47:13 UTC (rev 753185)
+++ PKGBUILD2020-11-12 18:47:23 UTC (rev 753186)
@@ -2,7 +2,7 @@
 
 pkgname=python-zope-security
 pkgver=5.1.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Zope Security Framework"
 arch=('x86_64')
 url="https://github.com/zopefoundation/zope.security;


[arch-commits] Commit in python-zope-security/repos/community-staging-x86_64 (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:47:28
  Author: foutrelis
Revision: 753188

archrelease: copy trunk to community-staging-x86_64

Added:
  python-zope-security/repos/community-staging-x86_64/PKGBUILD
(from rev 753187, python-zope-security/trunk/PKGBUILD)
Deleted:
  python-zope-security/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:47:24 UTC (rev 753187)
+++ PKGBUILD2020-11-12 18:47:28 UTC (rev 753188)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-zope-security
-pkgver=5.1.1
-pkgrel=2
-pkgdesc="Zope Security Framework"
-arch=('x86_64')
-url="https://github.com/zopefoundation/zope.security;
-license=('ZPL')
-depends=('python-setuptools' 'python-zope-component' 
'python-zope-i18nmessageid'
- 'python-zope-interface' 'python-zope-location' 'python-zope-proxy' 
'python-zope-schema')
-checkdepends=('python-btrees' 'python-nose' 'python-zope-configuration' 
'python-zope-testing'
-  'python-zope-testrunner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/zopefoundation/zope.security/archive/$pkgver.tar.gz;)
-sha512sums=('b23c7d489be3e60a1e88f9ef67fe133273318fc67b28222124c51981eb76ef11b0783662ec90f206867010dc120ce914dac45c6a6fd6edc925de2c9da0ad0b38')
-
-prepare() {
-  cd zope.security-$pkgver
-  # TODO
-  sed -i '/def test_iteration_of_btree_items_keys_values/i \
@unittest.skip("Circular import weirdness")' 
src/zope/security/tests/test_checker.py
-}
-
-build() {
-  cd zope.security-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd zope.security-$pkgver
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.9:$PYTHONPATH" python -m 
zope.testrunner --test-path=src
-}
-
-package() {
-  cd zope.security-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zope-security/repos/community-staging-x86_64/PKGBUILD (from rev 
753187, python-zope-security/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:47:28 UTC (rev 753188)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-zope-security
+pkgver=5.1.1
+pkgrel=3
+pkgdesc="Zope Security Framework"
+arch=('x86_64')
+url="https://github.com/zopefoundation/zope.security;
+license=('ZPL')
+depends=('python-setuptools' 'python-zope-component' 
'python-zope-i18nmessageid'
+ 'python-zope-interface' 'python-zope-location' 'python-zope-proxy' 
'python-zope-schema')
+checkdepends=('python-btrees' 'python-nose' 'python-zope-configuration' 
'python-zope-testing'
+  'python-zope-testrunner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/zopefoundation/zope.security/archive/$pkgver.tar.gz;)
+sha512sums=('b23c7d489be3e60a1e88f9ef67fe133273318fc67b28222124c51981eb76ef11b0783662ec90f206867010dc120ce914dac45c6a6fd6edc925de2c9da0ad0b38')
+
+prepare() {
+  cd zope.security-$pkgver
+  # TODO
+  sed -i '/def test_iteration_of_btree_items_keys_values/i \
@unittest.skip("Circular import weirdness")' 
src/zope/security/tests/test_checker.py
+}
+
+build() {
+  cd zope.security-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd zope.security-$pkgver
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.9:$PYTHONPATH" python -m 
zope.testrunner --test-path=src
+}
+
+package() {
+  cd zope.security-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gnome-builder/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:47:38
  Author: foutrelis
Revision: 400679

archrelease: copy trunk to staging-x86_64

Added:
  gnome-builder/repos/staging-x86_64/
  gnome-builder/repos/staging-x86_64/PKGBUILD
(from rev 400678, gnome-builder/trunk/PKGBUILD)

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

Copied: gnome-builder/repos/staging-x86_64/PKGBUILD (from rev 400678, 
gnome-builder/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-12 18:47:38 UTC (rev 400679)
@@ -0,0 +1,51 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.38.1
+pkgrel=4
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder;
+arch=(x86_64)
+license=(GPL3)
+depends=(gtksourceview4 devhelp libgit2-glib gjs python-gobject clang sysprof
+ desktop-file-utils ctags libpeas vte3 vala python-jedi 
autoconf-archive
+ flatpak-builder gspell libdazzle template-glib jsonrpc-glib
+ python-sphinx webkit2gtk glade python-lxml meson libportal)
+makedepends=(llvm gobject-introspection gtk-doc yelp-tools appstream-glib git 
mm-common
+ python-sphinx_rtd_theme)
+checkdepends=(xorg-server-xvfb)
+optdepends=('gnome-code-assistance: Legacy assistance services')
+groups=(gnome-extra)
+_commit=25c7eaaed9fcab5be73e508b9ce9e3e673e0ae47  # tags/3.38.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-builder.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_BUILDER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D docs=true \
+-D help=true
+  meson compile -C build
+}
+
+check() {
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=(libgladeui-2.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set sw=2 et:


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:46:14
  Author: foutrelis
Revision: 753179

archrelease: copy trunk to community-staging-any

Added:
  python-flatdict/repos/community-staging-any/
  python-flatdict/repos/community-staging-any/PKGBUILD
(from rev 753178, python-flatdict/trunk/PKGBUILD)

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

Copied: python-flatdict/repos/community-staging-any/PKGBUILD (from rev 753178, 
python-flatdict/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:46:14 UTC (rev 753179)
@@ -0,0 +1,35 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=flatdict
+pkgname=python-flatdict
+pkgver=4.0.1
+pkgrel=2
+pkgdesc="Interact with nested dicts as a single level dict with delimited 
keys."
+arch=('any')
+url="https://flatdict.readthedocs.io;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gmr/flatdict/archive/${pkgver}.tar.gz;)
+sha256sums=('ab6ff85c6802fab90692727f055cd2183856789d96a53e75609439b778f5da06')
+b2sums=('102ebc6220d75219b91ed7494485fa7d1447801d8276fd5e305f838f6b339b72c44151c751a53c32a5ea5b1d4876d9312af229bb8972401a2f86d6488d3f8b4f')
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+nosetests
+}
+
+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 python-ndg-httpsclient/repos/community-staging-any (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:46:28
  Author: foutrelis
Revision: 753183

archrelease: copy trunk to community-staging-any

Added:
  python-ndg-httpsclient/repos/community-staging-any/PKGBUILD
(from rev 753181, python-ndg-httpsclient/trunk/PKGBUILD)
Deleted:
  python-ndg-httpsclient/repos/community-staging-any/PKGBUILD

--+
 PKGBUILD |   96 ++---
 1 file changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:46:27 UTC (rev 753182)
+++ PKGBUILD2020-11-12 18:46:28 UTC (rev 753183)
@@ -1,48 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Hugo Osvaldo Barrera 
-
-pkgbase=python-ndg-httpsclient
-pkgname=(python-ndg-httpsclient python2-ndg-httpsclient)
-_pkgname=ndg_httpsclient
-pkgver=0.5.1
-pkgrel=6
-pkgdesc="Provides enhanced HTTPS support for httplib and urllib2 using 
PyOpenSSL"
-arch=(any)
-url="https://pypi.python.org/pypi/ndg-httpsclient;
-license=('BSD')
-makedepends=(python2-setuptools python2-pyopenssl python2-pyasn1
- python-setuptools python-pyopenssl python-pyasn1)
-options=(!emptydirs)
-source=(https://files.pythonhosted.org/packages/source/n/ndg-httpsclient/$_pkgname-$pkgver.tar.gz)
-sha256sums=('d72faed0376ab039736c2ba12e30695e2788c4aa569c9c3e3d72131de2592210')
-
-build() {
-  cd "$srcdir"/$_pkgname-$pkgver
-
-  rm -rf ../buildpy3; mkdir ../buildpy3
-  python setup.py build -b ../buildpy3
-
-  rm -rf ../buildpy2; mkdir ../buildpy2
-  python2 setup.py build -b ../buildpy2
-}
-
-package_python-ndg-httpsclient() {
-  depends=(python-pyopenssl python-pyasn1)
-  _site_packages=$(python -sSc 'import site; print(site.getsitepackages()[0])')
-
-  cd "$srcdir"/$_pkgname-$pkgver
-  rm -rf build; ln -s ../buildpy3 build
-  python setup.py install --skip-build -O1 --root="$pkgdir"
-  install -Dm0644 "$pkgdir$_site_packages"/ndg/httpsclient/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-ndg-httpsclient() {
-  depends=(python2-pyopenssl python2-pyasn1)
-  _site_packages=$(python2 -sSc 'import site; 
print(site.getsitepackages()[0])')
-
-  cd "$srcdir"/$_pkgname-$pkgver
-  rm -rf build; ln -s ../buildpy2 build
-  python2 setup.py install --skip-build -O1 --root="$pkgdir"
-  install -Dm0644 "$pkgdir$_site_packages"/ndg/httpsclient/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  mv "$pkgdir"/usr/bin/ndg_httpclient{,2}
-}

Copied: python-ndg-httpsclient/repos/community-staging-any/PKGBUILD (from rev 
753181, python-ndg-httpsclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:46:28 UTC (rev 753183)
@@ -0,0 +1,48 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgbase=python-ndg-httpsclient
+pkgname=(python-ndg-httpsclient python2-ndg-httpsclient)
+_pkgname=ndg_httpsclient
+pkgver=0.5.1
+pkgrel=7
+pkgdesc="Provides enhanced HTTPS support for httplib and urllib2 using 
PyOpenSSL"
+arch=(any)
+url="https://pypi.python.org/pypi/ndg-httpsclient;
+license=('BSD')
+makedepends=(python2-setuptools python2-pyopenssl python2-pyasn1
+ python-setuptools python-pyopenssl python-pyasn1)
+options=(!emptydirs)
+source=(https://files.pythonhosted.org/packages/source/n/ndg-httpsclient/$_pkgname-$pkgver.tar.gz)
+sha256sums=('d72faed0376ab039736c2ba12e30695e2788c4aa569c9c3e3d72131de2592210')
+
+build() {
+  cd "$srcdir"/$_pkgname-$pkgver
+
+  rm -rf ../buildpy3; mkdir ../buildpy3
+  python setup.py build -b ../buildpy3
+
+  rm -rf ../buildpy2; mkdir ../buildpy2
+  python2 setup.py build -b ../buildpy2
+}
+
+package_python-ndg-httpsclient() {
+  depends=(python-pyopenssl python-pyasn1)
+  _site_packages=$(python -sSc 'import site; print(site.getsitepackages()[0])')
+
+  cd "$srcdir"/$_pkgname-$pkgver
+  rm -rf build; ln -s ../buildpy3 build
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+  install -Dm0644 "$pkgdir$_site_packages"/ndg/httpsclient/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-ndg-httpsclient() {
+  depends=(python2-pyopenssl python2-pyasn1)
+  _site_packages=$(python2 -sSc 'import site; 
print(site.getsitepackages()[0])')
+
+  cd "$srcdir"/$_pkgname-$pkgver
+  rm -rf build; ln -s ../buildpy2 build
+  python2 setup.py install --skip-build -O1 --root="$pkgdir"
+  install -Dm0644 "$pkgdir$_site_packages"/ndg/httpsclient/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  mv "$pkgdir"/usr/bin/ndg_httpclient{,2}
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:46:10
  Author: foutrelis
Revision: 753178

upgpkg: python-flatdict 4.0.1-2: Python 3.9 rebuild

Modified:
  python-flatdict/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:46:08 UTC (rev 753177)
+++ PKGBUILD2020-11-12 18:46:10 UTC (rev 753178)
@@ -3,7 +3,7 @@
 _pkgname=flatdict
 pkgname=python-flatdict
 pkgver=4.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Interact with nested dicts as a single level dict with delimited 
keys."
 arch=('any')
 url="https://flatdict.readthedocs.io;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:46:24
  Author: foutrelis
Revision: 753181

upgpkg: python-ndg-httpsclient 0.5.1-7: Python 3.9 rebuild

Modified:
  python-ndg-httpsclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:46:19 UTC (rev 753180)
+++ PKGBUILD2020-11-12 18:46:24 UTC (rev 753181)
@@ -5,7 +5,7 @@
 pkgname=(python-ndg-httpsclient python2-ndg-httpsclient)
 _pkgname=ndg_httpsclient
 pkgver=0.5.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Provides enhanced HTTPS support for httplib and urllib2 using 
PyOpenSSL"
 arch=(any)
 url="https://pypi.python.org/pypi/ndg-httpsclient;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:49
  Author: foutrelis
Revision: 400676

upgpkg: deluge 2.0.4.dev38+g23a48dd01-3: Python 3.9 rebuild

Modified:
  deluge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:45:26 UTC (rev 400675)
+++ PKGBUILD2020-11-12 18:45:49 UTC (rev 400676)
@@ -5,7 +5,7 @@
 pkgbase=deluge
 pkgname=(deluge deluge-gtk)
 pkgver=2.0.4.dev38+g23a48dd01
-pkgrel=2
+pkgrel=3
 pkgdesc="BitTorrent client with multiple user interfaces in a client/server 
model"
 url="https://deluge-torrent.org/;
 arch=(any)


[arch-commits] Commit in python-pytest-httpx/repos/community-staging-any (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:56
  Author: foutrelis
Revision: 753176

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-httpx/repos/community-staging-any/PKGBUILD
(from rev 753175, python-pytest-httpx/trunk/PKGBUILD)
Deleted:
  python-pytest-httpx/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:45:52 UTC (rev 753175)
+++ PKGBUILD2020-11-12 18:45:56 UTC (rev 753176)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-httpx
-pkgver=0.10.0
-pkgrel=2
-pkgdesc='Send responses to httpx'
-arch=('any')
-license=('MIT')
-url='https://colin-b.github.io/pytest_httpx'
-depends=('python-httpx' 'python-pytest')
-checkdepends=('python-pytest-asyncio')
-source=("https://github.com/Colin-b/pytest_httpx/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('e185784b85dbd11f5f058963af157a0f158f2e1db489afc38841273740a5bdc0741d69ac4ce02981e2987e24d45db1e5a4fd526077da2c2b7a9793eb0c474162')
-
-build() {
-  cd pytest_httpx-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd pytest_httpx-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
pytest
-}
-
-package() {
-  cd pytest_httpx-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-httpx/repos/community-staging-any/PKGBUILD (from rev 
753175, python-pytest-httpx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:45:56 UTC (rev 753176)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-httpx
+pkgver=0.10.0
+pkgrel=3
+pkgdesc='Send responses to httpx'
+arch=('any')
+license=('MIT')
+url='https://colin-b.github.io/pytest_httpx'
+depends=('python-httpx' 'python-pytest')
+checkdepends=('python-pytest-asyncio')
+source=("https://github.com/Colin-b/pytest_httpx/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('e185784b85dbd11f5f058963af157a0f158f2e1db489afc38841273740a5bdc0741d69ac4ce02981e2987e24d45db1e5a4fd526077da2c2b7a9793eb0c474162')
+
+build() {
+  cd pytest_httpx-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd pytest_httpx-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
pytest
+}
+
+package() {
+  cd pytest_httpx-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cantor/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:16
  Author: foutrelis
Revision: 400674

archrelease: copy trunk to staging-x86_64

Added:
  cantor/repos/staging-x86_64/
  cantor/repos/staging-x86_64/PKGBUILD
(from rev 400672, cantor/trunk/PKGBUILD)

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

Copied: cantor/repos/staging-x86_64/PKGBUILD (from rev 400672, 
cantor/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-12 18:45:16 UTC (rev 400674)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cantor
+pkgver=20.08.3
+pkgrel=2
+pkgdesc="KDE Frontend to Mathematical Software"
+url="https://kde.org/applications/education/cantor/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kde-education)
+depends=(analitza libspectre kpty ktexteditor knewstuff libqalculate 
hicolor-icon-theme qt5-xmlpatterns poppler-qt5)
+makedepends=(extra-cmake-modules python kdoctools luajit r julia)
+optdepends=('maxima: Maxima backend'
+'octave: Octave backend'
+'r: R backend'
+'luajit: LUA backend'
+'python: Python backend'
+'sagemath: SageMath backend'
+'julia: Julia backend')
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('14aefe60ca2ff7aeaf7af8080dd00e80be8d747faeb9cd5a2df88f0d3af358da'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:13
  Author: foutrelis
Revision: 400672

upgpkg: cantor 20.08.3-2: Python 3.9 rebuild

Modified:
  cantor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:41:25 UTC (rev 400671)
+++ PKGBUILD2020-11-12 18:45:13 UTC (rev 400672)
@@ -4,7 +4,7 @@
 
 pkgname=cantor
 pkgver=20.08.3
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE Frontend to Mathematical Software"
 url="https://kde.org/applications/education/cantor/;
 arch=(x86_64)


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:52
  Author: foutrelis
Revision: 753175

upgpkg: python-pytest-httpx 0.10.0-3: Python 3.9 rebuild

Modified:
  python-pytest-httpx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:45:17 UTC (rev 753174)
+++ PKGBUILD2020-11-12 18:45:52 UTC (rev 753175)
@@ -2,7 +2,7 @@
 
 pkgname=python-pytest-httpx
 pkgver=0.10.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Send responses to httpx'
 arch=('any')
 license=('MIT')


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:53
  Author: foutrelis
Revision: 400677

archrelease: copy trunk to staging-any

Added:
  deluge/repos/staging-any/
  deluge/repos/staging-any/PKGBUILD
(from rev 400676, deluge/trunk/PKGBUILD)
  deluge/repos/staging-any/user-agent-override.diff
(from rev 400676, deluge/trunk/user-agent-override.diff)

--+
 PKGBUILD |  120 +
 user-agent-override.diff |   13 
 2 files changed, 133 insertions(+)

Copied: deluge/repos/staging-any/PKGBUILD (from rev 400676, 
deluge/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2020-11-12 18:45:53 UTC (rev 400677)
@@ -0,0 +1,120 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgbase=deluge
+pkgname=(deluge deluge-gtk)
+pkgver=2.0.4.dev38+g23a48dd01
+pkgrel=3
+pkgdesc="BitTorrent client with multiple user interfaces in a client/server 
model"
+url="https://deluge-torrent.org/;
+arch=(any)
+license=(GPL3)
+depends=(
+  # Follows DEPENDS.md
+  'python-twisted>=17.1' python-service-identity python-idna
+  'openssl>=1.0.1'
+  python-pyopenssl
+  'python-rencode>=1.0.2'
+  python-xdg
+  python-six
+  'python-zope-interface>=4.4.2' 
+  python-chardet 
+  python-setproctitle 
+  python-pillow
+  python-dbus
+  python-distro
+  'libtorrent-rasterbar>=1.1.1'
+  python-geoip
+  python-mako
+)
+makedepends=(
+  python-setuptools
+  intltool
+  gtk3
+  python-gobject
+  python-cairo
+  librsvg
+  xdg-utils
+  libappindicator-gtk3
+  #python-pygame
+  libnotify
+  git
+)
+_commit=23a48dd01c86ef01cd1d13371de51247ec9a503b  # develop
+source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit"
+user-agent-override.diff)
+sha256sums=('SKIP'
+'f5ef4db7f1b78cd20cab91f25c7823f91f4e105639225b37aa4750d0cdd65104')
+
+pkgver() {
+  cd deluge
+  git describe --tags | sed 's/^deluge-//;s/dev0-/dev/;s/-/+/g'
+}
+
+prepare() {
+  cd deluge
+
+  # Pretend to be stable deluge
+  patch -Np1 -i ../user-agent-override.diff
+}
+
+build() {
+  cd deluge
+  python setup.py build
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_deluge() {
+  cd deluge
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dt "$pkgdir/usr/lib/systemd/system" \
+-m644 packaging/systemd/*.service
+  install -Dt "$pkgdir/usr/lib/systemd/system/deluged.service.d" \
+-m644 packaging/systemd/user.conf
+  install -Dt "$pkgdir/usr/lib/systemd/system/deluge-web.service.d" \
+-m644 packaging/systemd/user.conf
+
+  echo 'u deluge - "Deluge BitTorrent daemon" /srv/deluge' |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+  echo 'd /srv/deluge 0770 deluge deluge' |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+
+  cd "$pkgdir"
+
+  _pick gtk usr/bin/deluge-gtk usr/share/man/man1/deluge-gtk.1
+  _pick gtk usr/share/{appdata,applications,icons,pixmaps}
+  _pick gtk usr/lib/python3.9/site-packages/deluge/ui/gtk3
+}
+
+package_deluge-gtk() {
+  pkgdesc="GTK UI for Deluge"
+  depends=(
+"deluge=$pkgver-$pkgrel"
+gtk3
+librsvg
+python-cairo
+python-gobject
+xdg-utils
+  )
+  optdepends=(
+'libappindicator-gtk3: appindicator notifications'
+#'python-pygame: audible notifications'
+'libnotify: desktop notifications'
+  )
+  replaces=('deluge<2.0.4.dev23+g2f1c008a2-2')
+
+  mv gtk/* "$pkgdir"
+}
+
+# vim:set sw=2 et:

Copied: deluge/repos/staging-any/user-agent-override.diff (from rev 400676, 
deluge/trunk/user-agent-override.diff)
===
--- staging-any/user-agent-override.diff(rev 0)
+++ staging-any/user-agent-override.diff2020-11-12 18:45:53 UTC (rev 
400677)
@@ -0,0 +1,13 @@
+diff --git i/deluge/core/core.py w/deluge/core/core.py
+index 8498ff9a8..fbef1cbd7 100644
+--- i/deluge/core/core.py
 w/deluge/core/core.py
+@@ -120,7 +120,7 @@ def __init__(
+ component.Component.__init__(self, 'Core')
+ 
+ # Start the libtorrent session.
+-user_agent = 'Deluge/{} libtorrent/{}'.format(DELUGE_VER, LT_VERSION)
++user_agent = 'Deluge/{} libtorrent/{}'.format('2.0.3', LT_VERSION)
+ peer_id = self._create_peer_id(DELUGE_VER)
+ log.debug('Starting session (peer_id: %s, user_agent: %s)', peer_id, 
user_agent)
+ settings_pack = {


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:12
  Author: foutrelis
Revision: 753173

upgpkg: klayout 0.26.8-2: Python 3.9 rebuild

Modified:
  klayout/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:45:10 UTC (rev 753172)
+++ PKGBUILD2020-11-12 18:45:12 UTC (rev 753173)
@@ -3,7 +3,7 @@
 
 pkgname=klayout
 pkgver=0.26.8
-pkgrel=1
+pkgrel=2
 pkgdesc="High Performance Layout Viewer And Editor. Support of GDS and OASIS 
files."
 arch=('x86_64')
 url="http://www.klayout.org/;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:17
  Author: foutrelis
Revision: 753174

archrelease: copy trunk to community-staging-x86_64

Added:
  klayout/repos/community-staging-x86_64/
  klayout/repos/community-staging-x86_64/PKGBUILD
(from rev 753173, klayout/trunk/PKGBUILD)
  klayout/repos/community-staging-x86_64/klayoutEditor.desktop
(from rev 753173, klayout/trunk/klayoutEditor.desktop)
  klayout/repos/community-staging-x86_64/klayoutViewer.desktop
(from rev 753173, klayout/trunk/klayoutViewer.desktop)

---+
 PKGBUILD  |   36 
 klayoutEditor.desktop |   13 +
 klayoutViewer.desktop |   13 +
 3 files changed, 62 insertions(+)

Copied: klayout/repos/community-staging-x86_64/PKGBUILD (from rev 753173, 
klayout/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:45:17 UTC (rev 753174)
@@ -0,0 +1,36 @@
+# Contributor: Lars Boettcher 
+# Maintainer: Aaron Ali 
+
+pkgname=klayout
+pkgver=0.26.8
+pkgrel=2
+pkgdesc="High Performance Layout Viewer And Editor. Support of GDS and OASIS 
files."
+arch=('x86_64')
+url="http://www.klayout.org/;
+license=('GPL')
+depends=('qt5-base' 'qt5-tools' 'qt5-multimedia' 'qt5-xmlpatterns' 'qt5-svg' 
'ruby' 'python')
+source=(http://www.klayout.org/downloads/source/klayout-$pkgver.tar.gz
+klayoutEditor.desktop klayoutViewer.desktop)
+sha512sums=('a37b324194ed523ee70a1d63034db9ba48cf55d44d3a9d1bc612803cde2425f6909fd0571ad4a66318fc2c6735e19ba11a26ab153e1200adec405c16fc05f144'
+
'bc6c7621e5cda754509a86664fb3e7ecd15f577dec712f4b0c52c9a7455ba692043a67145f5bf143d8fdc502b84e4212303906d62107537eefb4bebe57b2ffe1'
+
'37a3bbb06ab155c1c22e3990cf160383570e8ea945dbf4964bc94b6fd4e6321627d31071a29d3dbeafc9e2fc406b6905761e299bfccdfe0a35663f2021624f4f')
+
+build() {
+  cd klayout-$pkgver
+  ./build.sh $build_opt
+}
+
+package() {
+  install -D -m 644 klayoutEditor.desktop 
"$pkgdir"/usr/share/applications/klayoutEditor.desktop
+  install -D -m 644 klayoutViewer.desktop 
"$pkgdir"/usr/share/applications/klayoutViewer.desktop
+  cd klayout-$pkgver
+  install -D -m 644 etc/logo.png 
"$pkgdir"/usr/share/icons/hicolor/32x32/apps/klayout.png
+  install -D -m 755 build-release/klayout "$pkgdir"/usr/bin/klayout
+  cd bin-release
+  for lib in `find . -type f | grep so`; do
+install -D -m 755 $lib "$pkgdir"/usr/lib/$lib
+  done
+  for lib in `find . -type l | grep so`; do
+cp -a $lib "$pkgdir"/usr/lib/$lib
+  done
+}

Copied: klayout/repos/community-staging-x86_64/klayoutEditor.desktop (from rev 
753173, klayout/trunk/klayoutEditor.desktop)
===
--- community-staging-x86_64/klayoutEditor.desktop  
(rev 0)
+++ community-staging-x86_64/klayoutEditor.desktop  2020-11-12 18:45:17 UTC 
(rev 753174)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Comment[de]=Programm zur Bearbeiten von GDS-Dateien
+Comment=Program to edit GDS and CIF files
+Exec=klayout -e %F
+GenericName[de]=Klayout Editor
+GenericName=Klayout Editor
+Icon=/usr/share/icons/hicolor/32x32/apps/klayout.png
+Name[de]=Klayout Editor
+Name=Klayout Editor
+StartupNotify=true
+Terminal=false
+Type=Application
+Categories=Scientific;Development

Copied: klayout/repos/community-staging-x86_64/klayoutViewer.desktop (from rev 
753173, klayout/trunk/klayoutViewer.desktop)
===
--- community-staging-x86_64/klayoutViewer.desktop  
(rev 0)
+++ community-staging-x86_64/klayoutViewer.desktop  2020-11-12 18:45:17 UTC 
(rev 753174)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Comment[de]=Programm zur Betrachten von GDS-Dateien
+Comment=Program to view GDS and CIF files
+Exec=klayout %F
+GenericName[de]=Klayout Viewer
+GenericName=Klayout Viewer
+Icon=/usr/share/icons/hicolor/32x32/apps/klayout.png
+Name[de]=Klayout Viewer
+Name=Klayout Viewer
+StartupNotify=true
+Terminal=false
+Type=Application
+Categories=Scientific;Development


[arch-commits] Commit in python-gcp-devrel-py-tools/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:44:57
  Author: foutrelis
Revision: 753169

upgpkg: python-gcp-devrel-py-tools 0.0.16-3: Python 3.9 rebuild

Modified:
  python-gcp-devrel-py-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:44:51 UTC (rev 753168)
+++ PKGBUILD2020-11-12 18:44:57 UTC (rev 753169)
@@ -3,7 +3,7 @@
 pkgname=python-gcp-devrel-py-tools
 pkgver=0.0.16
 _commit=dbc02f5ec965a6672d47a0e8963365970d96db17
-pkgrel=2
+pkgrel=3
 pkgdesc='Tools for Cloud Platform Python libraries and samples'
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-gcp-devrel-py-tools/repos/community-staging-any (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:45:00
  Author: foutrelis
Revision: 753171

archrelease: copy trunk to community-staging-any

Added:
  python-gcp-devrel-py-tools/repos/community-staging-any/PKGBUILD
(from rev 753170, python-gcp-devrel-py-tools/trunk/PKGBUILD)
Deleted:
  python-gcp-devrel-py-tools/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:44:58 UTC (rev 753170)
+++ PKGBUILD2020-11-12 18:45:00 UTC (rev 753171)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-gcp-devrel-py-tools
-pkgver=0.0.16
-_commit=dbc02f5ec965a6672d47a0e8963365970d96db17
-pkgrel=2
-pkgdesc='Tools for Cloud Platform Python libraries and samples'
-arch=('any')
-license=('Apache')
-url='https://github.com/GoogleCloudPlatform/python-repo-tools'
-depends=('python-setuptools' 'python-requests' 'python-retrying' 
'python-packaging' 'python-pylint')
-source=("$pkgname-$_commit.tar.gz::https://github.com/GoogleCloudPlatform/python-repo-tools/archive/$_commit.tar.gz;)
-sha512sums=('8e1963d9cf15aee6c11bf99236f6d86ba72a56a8bb41c20b7d28786669551a35204755c9ab617ac4384b9f68e53a0a04d70726849fd0cd3c89f0aae15b76')
-
-build() {
-  cd "$srcdir"/python-repo-tools-$_commit
-  python setup.py build
-}
-
-package() {
-  cd python-repo-tools-$_commit
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-gcp-devrel-py-tools/repos/community-staging-any/PKGBUILD (from 
rev 753170, python-gcp-devrel-py-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:45:00 UTC (rev 753171)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-gcp-devrel-py-tools
+pkgver=0.0.16
+_commit=dbc02f5ec965a6672d47a0e8963365970d96db17
+pkgrel=3
+pkgdesc='Tools for Cloud Platform Python libraries and samples'
+arch=('any')
+license=('Apache')
+url='https://github.com/GoogleCloudPlatform/python-repo-tools'
+depends=('python-setuptools' 'python-requests' 'python-retrying' 
'python-packaging' 'python-pylint')
+source=("$pkgname-$_commit.tar.gz::https://github.com/GoogleCloudPlatform/python-repo-tools/archive/$_commit.tar.gz;)
+sha512sums=('8e1963d9cf15aee6c11bf99236f6d86ba72a56a8bb41c20b7d28786669551a35204755c9ab617ac4384b9f68e53a0a04d70726849fd0cd3c89f0aae15b76')
+
+build() {
+  cd "$srcdir"/python-repo-tools-$_commit
+  python setup.py build
+}
+
+package() {
+  cd python-repo-tools-$_commit
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:44:51
  Author: foutrelis
Revision: 753168

archrelease: copy trunk to community-staging-x86_64

Added:
  glusterfs/repos/community-staging-x86_64/
  glusterfs/repos/community-staging-x86_64/PKGBUILD
(from rev 753167, glusterfs/trunk/PKGBUILD)
  glusterfs/repos/community-staging-x86_64/glusterfs.install
(from rev 753167, glusterfs/trunk/glusterfs.install)
  glusterfs/repos/community-staging-x86_64/glusterfs.sysusers
(from rev 753167, glusterfs/trunk/glusterfs.sysusers)

+
 PKGBUILD   |   73 +++
 glusterfs.install  |3 ++
 glusterfs.sysusers |1 
 3 files changed, 77 insertions(+)

Copied: glusterfs/repos/community-staging-x86_64/PKGBUILD (from rev 753167, 
glusterfs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:44:51 UTC (rev 753168)
@@ -0,0 +1,73 @@
+# Maintainer: Sergej Pupykin 
+# Contributors:
+#   Andrei Antoukh - n...@niwi.be - https://www.niwi.be
+#   henning mueller 
+
+pkgname=glusterfs
+epoch=1
+pkgver=8.2
+_major=${pkgver%%.*}
+pkgrel=2
+pkgdesc='a cluster file-system capable of scaling to several peta-bytes.'
+arch=(x86_64)
+url='https://www.gluster.org/'
+license=(GPL2 LGPL3)
+install=glusterfs.install
+backup=('etc/glusterfs/glusterd.vol'
+'etc/glusterfs/eventsconfig.json'
+'etc/glusterfs/gluster-rsyslog-5.8.conf'
+'etc/glusterfs/gluster-rsyslog-7.2.conf'
+'etc/glusterfs/glusterd.vol'
+'etc/glusterfs/glusterfs-georep-logrotate'
+'etc/glusterfs/glusterfs-logrotate')
+depends=(fuse python libxml2 libaio liburcu attr rpcbind)
+makedepends=(rpcsvc-proto)
+optdepends=('glib2: qemu-block'
+   'python-prettytable: gluster-georep-sshkey')
+source=(https://download.gluster.org/pub/gluster/glusterfs/${_major}/$pkgver/glusterfs-$pkgver.tar.gz
+glusterfs.sysusers)
+sha256sums=('bd68e6368a4805caaa60f58395bd771517e085ccbd7f3bb12810b22aaa64c8a8'
+'a470d07aedb2674adfb295b4775e490b48816b87974946da4dcf62aa0d72108a')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  autoreconf -fi
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-mountutildir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--mandir=/usr/share/man \
+--libexecdir=/usr/lib/$pkgname \
+--with-systemddir=/usr/lib/systemd/system \
+--with-tmpfilesdir=/usr/lib/tmpfiles.d \
+--enable-gnfs \
+LEXLIB=
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  make -j1 DESTDIR="$pkgdir" install
+
+  # https://bugzilla.redhat.com/show_bug.cgi?id=1598900
+  install -Dm644 "$srcdir"/glusterfs.sysusers \
+"$pkgdir"/usr/lib/sysusers.d/glusterfs.conf
+
+  install -D -m 644 \
+"$srcdir"/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \
+"$pkgdir"/usr/share/doc/glusterfs/
+
+  cp -rf \
+"$srcdir"/$pkgname-$pkgver/doc/* \
+"$pkgdir"/usr/share/doc/glusterfs/
+  rm -rf "$pkgdir"/var/run
+}
+
+# vim:set ts=2 sw=2 et:

Copied: glusterfs/repos/community-staging-x86_64/glusterfs.install (from rev 
753167, glusterfs/trunk/glusterfs.install)
===
--- community-staging-x86_64/glusterfs.install  (rev 0)
+++ community-staging-x86_64/glusterfs.install  2020-11-12 18:44:51 UTC (rev 
753168)
@@ -0,0 +1,3 @@
+post_upgrade() {
+  echo "-- Read https://gluster.readthedocs.io/en/latest/Upgrade-Guide/ page!"
+}

Copied: glusterfs/repos/community-staging-x86_64/glusterfs.sysusers (from rev 
753167, glusterfs/trunk/glusterfs.sysusers)
===
--- community-staging-x86_64/glusterfs.sysusers (rev 0)
+++ community-staging-x86_64/glusterfs.sysusers 2020-11-12 18:44:51 UTC (rev 
753168)
@@ -0,0 +1 @@
+u gluster - "GlusterFS daemons" /var/run/gluster -


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:44:46
  Author: foutrelis
Revision: 753167

upgpkg: glusterfs 1:8.2-2: Python 3.9 rebuild

Modified:
  glusterfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:43:48 UTC (rev 753166)
+++ PKGBUILD2020-11-12 18:44:46 UTC (rev 753167)
@@ -7,7 +7,7 @@
 epoch=1
 pkgver=8.2
 _major=${pkgver%%.*}
-pkgrel=1
+pkgrel=2
 pkgdesc='a cluster file-system capable of scaling to several peta-bytes.'
 arch=(x86_64)
 url='https://www.gluster.org/'


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:43:48
  Author: foutrelis
Revision: 753166

archrelease: copy trunk to community-staging-any

Added:
  python-pproxy/repos/community-staging-any/PKGBUILD
(from rev 753165, python-pproxy/trunk/PKGBUILD)
Deleted:
  python-pproxy/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:43:45 UTC (rev 753165)
+++ PKGBUILD2020-11-12 18:43:48 UTC (rev 753166)
@@ -1,33 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-pproxy
-pkgver=2.3.7
-# The commit that bumps version. Upstream does not use git tags [1], and the
-# source tarball on PyPI does not include LICENSE
-# https://github.com/qwj/python-proxy/issues/91
-_commit=7fccf8dd62204f34b0aa3a70fc568fd6ddff7728
-pkgrel=2
-pkgdesc="Versatile TCP/UDP asynchronous tunnel proxy implemented in Python 3 
asyncio"
-arch=('any')
-url="https://github.com/qwj/python-proxy;
-license=('MIT')
-depends=(python)
-makedepends=(python-setuptools)
-optdepends=(
-  'python-pycryptodome: accelerated cipher operations'
-  'python-uvloop: faster asynchronous operations'
-  'python-daemon: run the server as a daemon'
-)
-source=(https://github.com/qwj/python-proxy/archive/$_commit/pproxy-$_commit.tar.gz)
-sha256sums=('c3ab3d36e18611ff0f4eb50ac60de9f1e86124829e970ec4109594521f8d425e')
-
-build() {
-  cd python-proxy-$_commit
-  python setup.py build
-}
-
-package() {
-  cd python-proxy-$_commit
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pproxy/repos/community-staging-any/PKGBUILD (from rev 753165, 
python-pproxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:43:48 UTC (rev 753166)
@@ -0,0 +1,33 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-pproxy
+pkgver=2.3.7
+# The commit that bumps version. Upstream does not use git tags [1], and the
+# source tarball on PyPI does not include LICENSE
+# https://github.com/qwj/python-proxy/issues/91
+_commit=7fccf8dd62204f34b0aa3a70fc568fd6ddff7728
+pkgrel=3
+pkgdesc="Versatile TCP/UDP asynchronous tunnel proxy implemented in Python 3 
asyncio"
+arch=('any')
+url="https://github.com/qwj/python-proxy;
+license=('MIT')
+depends=(python)
+makedepends=(python-setuptools)
+optdepends=(
+  'python-pycryptodome: accelerated cipher operations'
+  'python-uvloop: faster asynchronous operations'
+  'python-daemon: run the server as a daemon'
+)
+source=(https://github.com/qwj/python-proxy/archive/$_commit/pproxy-$_commit.tar.gz)
+sha256sums=('c3ab3d36e18611ff0f4eb50ac60de9f1e86124829e970ec4109594521f8d425e')
+
+build() {
+  cd python-proxy-$_commit
+  python setup.py build
+}
+
+package() {
+  cd python-proxy-$_commit
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:43:45
  Author: foutrelis
Revision: 753165

upgpkg: python-pproxy 2.3.7-3: Python 3.9 rebuild

Modified:
  python-pproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:42:51 UTC (rev 753164)
+++ PKGBUILD2020-11-12 18:43:45 UTC (rev 753165)
@@ -6,7 +6,7 @@
 # source tarball on PyPI does not include LICENSE
 # https://github.com/qwj/python-proxy/issues/91
 _commit=7fccf8dd62204f34b0aa3a70fc568fd6ddff7728
-pkgrel=2
+pkgrel=3
 pkgdesc="Versatile TCP/UDP asynchronous tunnel proxy implemented in Python 3 
asyncio"
 arch=('any')
 url="https://github.com/qwj/python-proxy;


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:42:45
  Author: foutrelis
Revision: 753162

upgpkg: ledger 3.2.1-2: Python 3.9 rebuild

Modified:
  ledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:42:37 UTC (rev 753161)
+++ PKGBUILD2020-11-12 18:42:45 UTC (rev 753162)
@@ -8,7 +8,7 @@
 
 pkgname=ledger
 pkgver=3.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Double-entry accounting system with a command-line reporting 
interface'
 arch=(i686 x86_64)
 url='https://ledger-cli.org'


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:42:48
  Author: foutrelis
Revision: 753163

archrelease: copy trunk to community-staging-x86_64

Added:
  ledger/repos/community-staging-x86_64/
  ledger/repos/community-staging-x86_64/PKGBUILD
(from rev 753162, ledger/trunk/PKGBUILD)

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

Copied: ledger/repos/community-staging-x86_64/PKGBUILD (from rev 753162, 
ledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 18:42:48 UTC (rev 753163)
@@ -0,0 +1,44 @@
+# Maintainer: Lukas Fleischer 
+# Maintainer: Ivy Foster 
+# Contributor: Abdelhakim Qbaich 
+# Contributor: korjjj 
+# Contributor: TDY 
+# Contributor: Adam Ehlers Nyholm Thomsen 
+# Contributor: Nathan Jones 
+
+pkgname=ledger
+pkgver=3.2.1
+pkgrel=2
+pkgdesc='Double-entry accounting system with a command-line reporting 
interface'
+arch=(i686 x86_64)
+url='https://ledger-cli.org'
+license=(BSD)
+depends=(boost-libs libedit mpfr)
+makedepends=(boost cmake python)
+optdepends=(
+   'emacs: emacs interface'
+   'python: python library'
+)
+source=("ledger-$pkgver.tar.gz::https://github.com/ledger/ledger/archive/v$pkgver.tar.gz;)
+sha256sums=('92bf09bc385b171987f456fe3ee9fa998ed5e40b97b3acdd562b663aa364384a')
+
+build() {
+   cd "ledger-$pkgver"
+
+   cmake . \
+   -DCMAKE_INSTALL_PREFIX:PATH=/usr \
+   -DCMAKE_INSTALL_LIBDIR:PATH=lib \
+   -DUSE_PYTHON:BOOL=TRUE
+   make
+}
+
+check() {
+   make -C "ledger-$pkgver" check
+}
+
+package() {
+   cd "ledger-$pkgver"
+
+   make DESTDIR="$pkgdir" install
+   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/ledger/LICENSE.md"
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:42:37
  Author: foutrelis
Revision: 753160

archrelease: copy trunk to community-staging-any

Added:
  python-graphviz/repos/community-staging-any/PKGBUILD
(from rev 753159, python-graphviz/trunk/PKGBUILD)
Deleted:
  python-graphviz/repos/community-staging-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-12 18:42:33 UTC (rev 753159)
+++ PKGBUILD2020-11-12 18:42:37 UTC (rev 753160)
@@ -1,44 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=graphviz
-pkgname=python-graphviz
-pkgver=0.14.2
-pkgrel=2
-pkgdesc="Simple Python interface for Graphviz"
-arch=('any')
-url="https://github.com/xflr6/${_pkgname};
-license=('MIT')
-depends=('graphviz' 'python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-mock')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.zip;)
-sha256sums=('92b7637ece63c77e3d39221ae1f4df98e9256cb449e9860c598335b34496d195')
-b2sums=('668c200964867f416e2b15454793fdd0673a110461a85764699727b0430c812e18fb4285e031f5f611ff86bd205cbf927c695015d55ac169a594e616ab74067a')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# do not run python-coverage in unittests :/
-sed -i 's/--cov --cov-report=term --cov-report=html//' setup.cfg
-# don't add pointless dependency on python-mock needed on python 3.5
-sed -i '/mock_use_standalone_module/d' setup.cfg
-}
-
-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.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-graphviz/repos/community-staging-any/PKGBUILD (from rev 753159, 
python-graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-12 18:42:37 UTC (rev 753160)
@@ -0,0 +1,44 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=graphviz
+pkgname=python-graphviz
+pkgver=0.14.2
+pkgrel=3
+pkgdesc="Simple Python interface for Graphviz"
+arch=('any')
+url="https://github.com/xflr6/${_pkgname};
+license=('MIT')
+depends=('graphviz' 'python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-mock')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.zip;)
+sha256sums=('92b7637ece63c77e3d39221ae1f4df98e9256cb449e9860c598335b34496d195')
+b2sums=('668c200964867f416e2b15454793fdd0673a110461a85764699727b0430c812e18fb4285e031f5f611ff86bd205cbf927c695015d55ac169a594e616ab74067a')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# do not run python-coverage in unittests :/
+sed -i 's/--cov --cov-report=term --cov-report=html//' setup.cfg
+# don't add pointless dependency on python-mock needed on python 3.5
+sed -i '/mock_use_standalone_module/d' setup.cfg
+}
+
+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.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:42:33
  Author: foutrelis
Revision: 753159

upgpkg: python-graphviz 0.14.2-3: Python 3.9 rebuild

Modified:
  python-graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:42:33 UTC (rev 753158)
+++ PKGBUILD2020-11-12 18:42:33 UTC (rev 753159)
@@ -3,7 +3,7 @@
 _pkgname=graphviz
 pkgname=python-graphviz
 pkgver=0.14.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple Python interface for Graphviz"
 arch=('any')
 url="https://github.com/xflr6/${_pkgname};


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:42:37
  Author: foutrelis
Revision: 753161

archrelease: copy trunk to community-staging-any

Added:
  python-pmw/repos/community-staging-any/
  python-pmw/repos/community-staging-any/ChangeLog
(from rev 753159, python-pmw/trunk/ChangeLog)
  python-pmw/repos/community-staging-any/LICENSE.txt
(from rev 753159, python-pmw/trunk/LICENSE.txt)
  python-pmw/repos/community-staging-any/PKGBUILD
(from rev 753159, python-pmw/trunk/PKGBUILD)

-+
 ChangeLog   |   11 +++
 LICENSE.txt |   21 +
 PKGBUILD|   29 +
 3 files changed, 61 insertions(+)

Copied: python-pmw/repos/community-staging-any/ChangeLog (from rev 753159, 
python-pmw/trunk/ChangeLog)
===
--- community-staging-any/ChangeLog (rev 0)
+++ community-staging-any/ChangeLog 2020-11-12 18:42:37 UTC (rev 753161)
@@ -0,0 +1,11 @@
+2.0.1-2:
+python3.5 rebuild
+
+2.0.1-1:
+upstream update
+
+2.0.0-2:
+rebuild according to FS#42100
+
+2.0.0-1:
+upstream update

Copied: python-pmw/repos/community-staging-any/LICENSE.txt (from rev 753159, 
python-pmw/trunk/LICENSE.txt)
===
--- community-staging-any/LICENSE.txt   (rev 0)
+++ community-staging-any/LICENSE.txt   2020-11-12 18:42:37 UTC (rev 753161)
@@ -0,0 +1,21 @@
+Copyright (c) 2007,2008  David M. Cooke 
+Copyright (c) 2009,2010  Francesc Alted 
+Copyright (c) 2011-  See AUTHORS.txt
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: python-pmw/repos/community-staging-any/PKGBUILD (from rev 753159, 
python-pmw/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:42:37 UTC (rev 753161)
@@ -0,0 +1,29 @@
+# Maintainer: Evgeniy Alekseev 
+# Contributor: kfgz 
+# Contributor: Michael Krauss 
+# Contributor: dsa
+
+pkgname=python-pmw
+pkgver=2.0.1
+pkgrel=6
+pkgdesc="A toolkit for high-level compound widgets in Python using the Tkinter 
module"
+arch=('any')
+url="http://pmw.sourceforge.net/;
+license=('MIT')
+depends=('python' 'tk')
+source=(${pkgname}-${pkgver}.tar.gz::https://pypi.python.org/packages/source/P/Pmw/Pmw-${pkgver}.tar.gz
+"LICENSE.txt")
+md5sums=('8080b0fabc731ff236f97e88e13b3938'
+ '28b047a148c1780eddcf4bed6b150123')
+changelog="ChangeLog"
+
+build() {
+  cd "Pmw-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "Pmw-${pkgver}"
+  python setup.py install --prefix=/usr --root="${pkgdir}"
+  install -Dm644 "${srcdir}/LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:42:33
  Author: foutrelis
Revision: 753158

upgpkg: python-pmw 2.0.1-6: Python 3.9 rebuild

Modified:
  python-pmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:42:32 UTC (rev 753157)
+++ PKGBUILD2020-11-12 18:42:33 UTC (rev 753158)
@@ -5,7 +5,7 @@
 
 pkgname=python-pmw
 pkgver=2.0.1
-pkgrel=5
+pkgrel=6
 pkgdesc="A toolkit for high-level compound widgets in Python using the Tkinter 
module"
 arch=('any')
 url="http://pmw.sourceforge.net/;


[arch-commits] Commit in ibus-typing-booster/repos (staging-any staging-any/PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:41:25
  Author: foutrelis
Revision: 400671

archrelease: copy trunk to staging-any

Added:
  ibus-typing-booster/repos/staging-any/
  ibus-typing-booster/repos/staging-any/PKGBUILD
(from rev 400670, ibus-typing-booster/trunk/PKGBUILD)

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

Copied: ibus-typing-booster/repos/staging-any/PKGBUILD (from rev 400670, 
ibus-typing-booster/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2020-11-12 18:41:25 UTC (rev 400671)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=ibus-typing-booster
+pkgver=2.9.9
+pkgrel=2
+pkgdesc="Predictive input method for the IBus platform"
+url="https://mike-fabian.github.io/ibus-typing-booster/;
+arch=(any)
+license=(GPL3 Apache)
+depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
+makedepends=(git)
+_commit=72eec88b337129d9a71a2b7d1b2e1a1e477ca135  # tags/2.9.9
+source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  cd "$pkgdir/usr/share/$pkgname/data"
+  gzip -nf --best *.{txt,json} annotations{,Derived}/*.xml
+}


[arch-commits] Commit in certbot-dns-sakuracloud/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:41:09
  Author: foutrelis
Revision: 753151

upgpkg: certbot-dns-sakuracloud 1.9.0-2: Python 3.9 rebuild

Modified:
  certbot-dns-sakuracloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:40:50 UTC (rev 753150)
+++ PKGBUILD2020-11-12 18:41:09 UTC (rev 753151)
@@ -2,7 +2,7 @@
 
 pkgname=certbot-dns-sakuracloud
 pkgver=1.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
 arch=('any')
 license=('Apache')


[arch-commits] Commit in ibus-typing-booster/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:41:22
  Author: foutrelis
Revision: 400670

upgpkg: ibus-typing-booster 2.9.9-2: Python 3.9 rebuild

Modified:
  ibus-typing-booster/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:28:04 UTC (rev 400669)
+++ PKGBUILD2020-11-12 18:41:22 UTC (rev 400670)
@@ -2,7 +2,7 @@
 
 pkgname=ibus-typing-booster
 pkgver=2.9.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Predictive input method for the IBus platform"
 url="https://mike-fabian.github.io/ibus-typing-booster/;
 arch=(any)


[arch-commits] Commit in certbot-dns-sakuracloud/repos (2 files)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:41:12
  Author: foutrelis
Revision: 753152

archrelease: copy trunk to community-staging-any

Added:
  certbot-dns-sakuracloud/repos/community-staging-any/
  certbot-dns-sakuracloud/repos/community-staging-any/PKGBUILD
(from rev 753151, certbot-dns-sakuracloud/trunk/PKGBUILD)

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

Copied: certbot-dns-sakuracloud/repos/community-staging-any/PKGBUILD (from rev 
753151, certbot-dns-sakuracloud/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-12 18:41:12 UTC (rev 753152)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-sakuracloud
+pkgver=1.9.0
+pkgrel=2
+pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('fad67b66c175b7fc1da135f2084e5159f89301b567f1e5ccde217c8dbd5e3d26eedb3c0949f8340cdd168f407d05718e9b0706f4f2dbf17a0d83b8b521f1ad9e'
+'SKIP')
+
+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"
+}


<    9   10   11   12   13   14   15   16   17   18   >