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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:58:56
  Author: eschwartz
Revision: 711972

upgpkg: python-regex 2020.7.14-2: drop python2

no longer used by calibre, and is therefore not needed at all

Modified:
  python-regex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:53:43 UTC (rev 711971)
+++ PKGBUILD2020-09-25 05:58:56 UTC (rev 711972)
@@ -4,15 +4,15 @@
 # Submitter: Xiao-Long Chen 
 
 _pkgbase=regex
-pkgbase=python-regex
-pkgname=('python-regex' 'python2-regex')
+pkgname=python-regex
 pkgver=2020.7.14
-pkgrel=1
+pkgrel=2
 pkgdesc="Alternative python regular expression module."
 arch=('x86_64')
 url="https://bitbucket.org/mrabarnett/mrab-regex;
 license=('Python')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 options=(!emptydirs)
 
source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
 sha256sums=('3a3af27a8d23143c49a3420efe5b3f8cf1a48c6fc8bc6856b03f638abc1833bb')
@@ -22,37 +22,18 @@
   cd "regex-${pkgver}"
 
   python setup.py build
-  python2 setup.py build
 }
 
 check() {
   cd "regex-${pkgver}"
 
-  pushd build/lib.linux-${CARCH}-3*/
+  cd build/lib.linux-${CARCH}-3*/
   python -m unittest regex/test_regex.py
-  popd
-
-  pushd build/lib.linux-${CARCH}-2*/
-  python2 -m unittest regex.test_regex
-  popd
 }
 
-package_python2-regex() {
-  depends=('python2')
-  pkgdesc="Alternative python regular expression module. (python2 version)"
-
+package() {
   cd "regex-${pkgver}"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
 
-  sed -n '1,/^$/p' regex_2/regex.py | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python-regex() {
-  depends=('python')
-  pkgdesc="Alternative python regular expression module. (python3 version)"
-
-  cd "regex-${pkgver}"
   python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
   sed -n '1,/^$/p' regex_3/regex.py | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:53:29
  Author: eschwartz
Revision: 711970

upgpkg: python-pychm 0.8.6-2: drop python2

no longer used by calibre, and is therefore not needed at all

Modified:
  python-pychm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:52:52 UTC (rev 711969)
+++ PKGBUILD2020-09-25 05:53:29 UTC (rev 711970)
@@ -5,17 +5,16 @@
 # Contributor: Roman Kyrylych 
 # Contributor: iom 
 
-pkgbase=python-pychm
-pkgname=(python-pychm python2-pychm)
+pkgname=python-pychm
 pkgver=0.8.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Python bindings for chmlib"
 arch=('x86_64')
 url="https://github.com/dottedmag/pychm;
 license=('GPL')
-depends=('chmlib')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest')
+depends=('chmlib' 'python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/dottedmag/pychm/archive/v$pkgver.tar.gz)
 sha256sums=('23cdc3bbbeb97b57b472a67a0c7c96c6f1ec2d684a73a69fa84aaaeb195cab6c')
 
b2sums=('fdf3c37eead60455fd5bde1638a010f2788074752f98c32cf4b3431b4a87b8893c23a9fa29995352b35b41f628b7026fdbfa6ff20b75e8a6efdf75fc2da3f67d')
@@ -24,7 +23,6 @@
   cd "$srcdir/pychm-$pkgver"
 
   python setup.py build
-  python2 setup.py build
 }
 
 check() {
@@ -31,24 +29,13 @@
   cd "$srcdir/pychm-$pkgver"
 
   # do glob expansion in variable assignment
-  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3* 
"$PWD/build/lib.linux-$CARCH-"2*)
+  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3*)
 
   PYTHONPATH="${pythonpaths[0]}" pytest
-  PYTHONPATH="${pythonpaths[1]}" pytest2
 }
 
-package_python-pychm() {
-  depends+=('python')
+package() {
+  cd "$srcdir/pychm-$pkgver"
 
-  cd "$srcdir/pychm-$pkgver"
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }
-
-package_python2-pychm() {
-  depends+=('python2')
-
-  cd "$srcdir/pychm-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:53:43
  Author: eschwartz
Revision: 711971

archrelease: copy trunk to community-x86_64

Added:
  python-pychm/repos/community-x86_64/PKGBUILD
(from rev 711970, python-pychm/trunk/PKGBUILD)
Deleted:
  python-pychm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 05:53:29 UTC (rev 711970)
+++ PKGBUILD2020-09-25 05:53:43 UTC (rev 711971)
@@ -1,54 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Alexander Rødseth 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Roman Kyrylych 
-# Contributor: iom 
-
-pkgbase=python-pychm
-pkgname=(python-pychm python2-pychm)
-pkgver=0.8.6
-pkgrel=1
-pkgdesc="Python bindings for chmlib"
-arch=('x86_64')
-url="https://github.com/dottedmag/pychm;
-license=('GPL')
-depends=('chmlib')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest')
-source=($pkgname-$pkgver.tar.gz::https://github.com/dottedmag/pychm/archive/v$pkgver.tar.gz)
-sha256sums=('23cdc3bbbeb97b57b472a67a0c7c96c6f1ec2d684a73a69fa84aaaeb195cab6c')
-b2sums=('fdf3c37eead60455fd5bde1638a010f2788074752f98c32cf4b3431b4a87b8893c23a9fa29995352b35b41f628b7026fdbfa6ff20b75e8a6efdf75fc2da3f67d')
-
-build() {
-  cd "$srcdir/pychm-$pkgver"
-
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/pychm-$pkgver"
-
-  # do glob expansion in variable assignment
-  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3* 
"$PWD/build/lib.linux-$CARCH-"2*)
-
-  PYTHONPATH="${pythonpaths[0]}" pytest
-  PYTHONPATH="${pythonpaths[1]}" pytest2
-}
-
-package_python-pychm() {
-  depends+=('python')
-
-  cd "$srcdir/pychm-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-pychm() {
-  depends+=('python2')
-
-  cd "$srcdir/pychm-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pychm/repos/community-x86_64/PKGBUILD (from rev 711970, 
python-pychm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 05:53:43 UTC (rev 711971)
@@ -0,0 +1,41 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: Alexander Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Roman Kyrylych 
+# Contributor: iom 
+
+pkgname=python-pychm
+pkgver=0.8.6
+pkgrel=2
+pkgdesc="Python bindings for chmlib"
+arch=('x86_64')
+url="https://github.com/dottedmag/pychm;
+license=('GPL')
+depends=('chmlib' 'python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dottedmag/pychm/archive/v$pkgver.tar.gz)
+sha256sums=('23cdc3bbbeb97b57b472a67a0c7c96c6f1ec2d684a73a69fa84aaaeb195cab6c')
+b2sums=('fdf3c37eead60455fd5bde1638a010f2788074752f98c32cf4b3431b4a87b8893c23a9fa29995352b35b41f628b7026fdbfa6ff20b75e8a6efdf75fc2da3f67d')
+
+build() {
+  cd "$srcdir/pychm-$pkgver"
+
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir/pychm-$pkgver"
+
+  # do glob expansion in variable assignment
+  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3*)
+
+  PYTHONPATH="${pythonpaths[0]}" pytest
+}
+
+package() {
+  cd "$srcdir/pychm-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:52:52
  Author: eschwartz
Revision: 711969

archrelease: copy trunk to community-x86_64

Added:
  python-netifaces/repos/community-x86_64/PKGBUILD
(from rev 711968, python-netifaces/trunk/PKGBUILD)
Deleted:
  python-netifaces/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 05:52:38 UTC (rev 711968)
+++ PKGBUILD2020-09-25 05:52:52 UTC (rev 711969)
@@ -1,39 +0,0 @@
-# Maintainer: Giovanni Scafora 
-# Contributor: Gergely Imreh 
-# Contributor: Ghost of Kendo 
-
-pkgbase=python-netifaces
-pkgname=(python-netifaces python2-netifaces)
-pkgver=0.10.9
-pkgrel=3
-pkgdesc="Portable module to access network interface information in Python"
-arch=('x86_64')
-url="https://alastairs-place.net/netifaces/;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.io/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
-sha512sums=('8fc593de4d2cbda46a3e2430ede031360f1abfc64d47d00fbec09f3395fd83479bf29d97cb6834b1df06850c9ac2745c9344b6814f34be5975d4d5df98e05e87')
-
-prepare() {
-  cp -a "${srcdir}/netifaces-${pkgver}"{,-py2}
-}
-
-package_python-netifaces() {
-  depends=('python')
-
-  cd "${srcdir}/netifaces-${pkgver}"
-  python setup.py install --root "${pkgdir}"
-
-  # Install license, that is inside the readme file
-  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-netifaces() {
-  depends=('python2')
-
-  cd "${srcdir}/netifaces-${pkgver}-py2"
-  python2 setup.py install --root "${pkgdir}"
-
-  # Install license, that is inside the readme file
-  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-netifaces/repos/community-x86_64/PKGBUILD (from rev 711968, 
python-netifaces/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 05:52:52 UTC (rev 711969)
@@ -0,0 +1,30 @@
+# Maintainer: Giovanni Scafora 
+# Contributor: Gergely Imreh 
+# Contributor: Ghost of Kendo 
+
+pkgname=python-netifaces
+pkgver=0.10.9
+pkgrel=4
+pkgdesc="Portable module to access network interface information in Python"
+arch=('x86_64')
+url="https://alastairs-place.net/netifaces/;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
+sha512sums=('8fc593de4d2cbda46a3e2430ede031360f1abfc64d47d00fbec09f3395fd83479bf29d97cb6834b1df06850c9ac2745c9344b6814f34be5975d4d5df98e05e87')
+
+build() {
+  cd "${srcdir}/netifaces-${pkgver}"
+
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}/netifaces-${pkgver}"
+
+  python setup.py install --root "${pkgdir}" --skip-build
+
+  # Install license, that is inside the readme file
+  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:52:38
  Author: eschwartz
Revision: 711968

upgpkg: python-netifaces 0.10.9-4

release latest changes

Modified:
  python-netifaces/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:49:38 UTC (rev 711967)
+++ PKGBUILD2020-09-25 05:52:38 UTC (rev 711968)
@@ -4,7 +4,7 @@
 
 pkgname=python-netifaces
 pkgver=0.10.9
-pkgrel=3
+pkgrel=4
 pkgdesc="Portable module to access network interface information in Python"
 arch=('x86_64')
 url="https://alastairs-place.net/netifaces/;


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:49:38
  Author: eschwartz
Revision: 711967

python-netifaces: separate build step in build()

Modified:
  python-netifaces/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:44:21 UTC (rev 711966)
+++ PKGBUILD2020-09-25 05:49:38 UTC (rev 711967)
@@ -14,10 +14,16 @@
 
source=("https://pypi.io/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
 
sha512sums=('8fc593de4d2cbda46a3e2430ede031360f1abfc64d47d00fbec09f3395fd83479bf29d97cb6834b1df06850c9ac2745c9344b6814f34be5975d4d5df98e05e87')
 
+build() {
+  cd "${srcdir}/netifaces-${pkgver}"
+
+  python setup.py build
+}
+
 package() {
   cd "${srcdir}/netifaces-${pkgver}"
 
-  python setup.py install --root "${pkgdir}"
+  python setup.py install --root "${pkgdir}" --skip-build
 
   # Install license, that is inside the readme file
   install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:44:07
  Author: eschwartz
Revision: 711965

upgpkg: python-html5-parser 0.4.9-3: drop python2

no longer used by calibre, which means python2-mechanize got dropped at the
same time, and this is therefore not needed at all

Modified:
  python-html5-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:42:10 UTC (rev 711964)
+++ PKGBUILD2020-09-25 05:44:07 UTC (rev 711965)
@@ -2,17 +2,17 @@
 # Maintainer: Eli Schwartz 
 
 _pkgname=html5-parser
-pkgbase='python-html5-parser'
-pkgname=('python-html5-parser' 'python2-html5-parser')
+pkgname=python-html5-parser
 pkgver=0.4.9
-pkgrel=2
+pkgrel=3
 pkgdesc="Fast C based HTML 5 parsing for python"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};
 license=('Apache')
-checkdepends=('python-beautifulsoup4' 'python2-beautifulsoup4')
-makedepends=('python-chardet' 'python-lxml' 'python-setuptools'
- 'python2-chardet' 'python2-lxml' 'python2-setuptools')
+depends=('python-chardet' 'python-lxml')
+makedepends=('python-setuptools')
+checkdepends=('python-beautifulsoup4')
+optdepends=('python-beautifulsoup4: to use the soup treebuilder')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
 sha256sums=('25fe8f6848cbc15187f6748c0695df32bcf1b37df6420b6a01b4ebe1ec1ed48f'
 'SKIP')
@@ -24,7 +24,6 @@
 cd "${srcdir}"/${_pkgname}-${pkgver}
 
 python setup.py build
-python2 setup.py build
 }
 
 check() {
@@ -31,21 +30,10 @@
 cd "${srcdir}"/${_pkgname}-${pkgver}
 
 python setup.py test
-python2 setup.py test
 }
 
-package_python-html5-parser() {
-depends=('python-chardet' 'python-lxml')
-optdepends=('python-beautifulsoup4: to use the soup treebuilder')
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
 
-cd "${srcdir}"/${_pkgname}-${pkgver}
 python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }
-
-package_python2-html5-parser() {
-depends=('python2-chardet' 'python2-lxml')
-optdepends=('python2-beautifulsoup4: to use the soup treebuilder')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:44:21
  Author: eschwartz
Revision: 711966

archrelease: copy trunk to community-x86_64

Added:
  python-html5-parser/repos/community-x86_64/PKGBUILD
(from rev 711965, python-html5-parser/trunk/PKGBUILD)
Deleted:
  python-html5-parser/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 05:44:07 UTC (rev 711965)
+++ PKGBUILD2020-09-25 05:44:21 UTC (rev 711966)
@@ -1,51 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-
-_pkgname=html5-parser
-pkgbase='python-html5-parser'
-pkgname=('python-html5-parser' 'python2-html5-parser')
-pkgver=0.4.9
-pkgrel=2
-pkgdesc="Fast C based HTML 5 parsing for python"
-arch=('x86_64')
-url="https://github.com/kovidgoyal/${_pkgname};
-license=('Apache')
-checkdepends=('python-beautifulsoup4' 'python2-beautifulsoup4')
-makedepends=('python-chardet' 'python-lxml' 'python-setuptools'
- 'python2-chardet' 'python2-lxml' 'python2-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('25fe8f6848cbc15187f6748c0695df32bcf1b37df6420b6a01b4ebe1ec1ed48f'
-'SKIP')
-b2sums=('7744798d74db1d591490c75eabae5333e90f053a8ba1c5517f08c1b9c253042796e42618ae0a674e1b1cfa97390448ffc595e861234f5b980a1f7c0b9056cc88'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-python2 setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py test
-python2 setup.py test
-}
-
-package_python-html5-parser() {
-depends=('python-chardet' 'python-lxml')
-optdepends=('python-beautifulsoup4: to use the soup treebuilder')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-package_python2-html5-parser() {
-depends=('python2-chardet' 'python2-lxml')
-optdepends=('python2-beautifulsoup4: to use the soup treebuilder')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: python-html5-parser/repos/community-x86_64/PKGBUILD (from rev 711965, 
python-html5-parser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 05:44:21 UTC (rev 711966)
@@ -0,0 +1,39 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+
+_pkgname=html5-parser
+pkgname=python-html5-parser
+pkgver=0.4.9
+pkgrel=3
+pkgdesc="Fast C based HTML 5 parsing for python"
+arch=('x86_64')
+url="https://github.com/kovidgoyal/${_pkgname};
+license=('Apache')
+depends=('python-chardet' 'python-lxml')
+makedepends=('python-setuptools')
+checkdepends=('python-beautifulsoup4')
+optdepends=('python-beautifulsoup4: to use the soup treebuilder')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('25fe8f6848cbc15187f6748c0695df32bcf1b37df6420b6a01b4ebe1ec1ed48f'
+'SKIP')
+b2sums=('7744798d74db1d591490c75eabae5333e90f053a8ba1c5517f08c1b9c253042796e42618ae0a674e1b1cfa97390448ffc595e861234f5b980a1f7c0b9056cc88'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py test
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:42:10
  Author: eschwartz
Revision: 711964

python-netifaces: drop python2

no longer used by calibre, and is therefore not needed at all

Modified:
  python-netifaces/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:35:37 UTC (rev 711963)
+++ PKGBUILD2020-09-25 05:42:10 UTC (rev 711964)
@@ -2,8 +2,7 @@
 # Contributor: Gergely Imreh 
 # Contributor: Ghost of Kendo 
 
-pkgbase=python-netifaces
-pkgname=(python-netifaces python2-netifaces)
+pkgname=python-netifaces
 pkgver=0.10.9
 pkgrel=3
 pkgdesc="Portable module to access network interface information in Python"
@@ -10,30 +9,16 @@
 arch=('x86_64')
 url="https://alastairs-place.net/netifaces/;
 license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 
source=("https://pypi.io/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
 
sha512sums=('8fc593de4d2cbda46a3e2430ede031360f1abfc64d47d00fbec09f3395fd83479bf29d97cb6834b1df06850c9ac2745c9344b6814f34be5975d4d5df98e05e87')
 
-prepare() {
-  cp -a "${srcdir}/netifaces-${pkgver}"{,-py2}
-}
+package() {
+  cd "${srcdir}/netifaces-${pkgver}"
 
-package_python-netifaces() {
-  depends=('python')
-
-  cd "${srcdir}/netifaces-${pkgver}"
   python setup.py install --root "${pkgdir}"
 
   # Install license, that is inside the readme file
   install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
-
-package_python2-netifaces() {
-  depends=('python2')
-
-  cd "${srcdir}/netifaces-${pkgver}-py2"
-  python2 setup.py install --root "${pkgdir}"
-
-  # Install license, that is inside the readme file
-  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:35:24
  Author: eschwartz
Revision: 711962

upgpkg: python-mechanize 1:0.4.5-2: drop python2

no longer used by calibre, and is therefore not needed at all

Modified:
  python-mechanize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:33:31 UTC (rev 711961)
+++ PKGBUILD2020-09-25 05:35:24 UTC (rev 711962)
@@ -6,19 +6,18 @@
 # Contributor: Roberto Alsina 
 
 _pkgname=mechanize
-pkgbase=python-mechanize
-pkgname=(python-mechanize python2-mechanize)
+pkgname=python-mechanize
 pkgver=0.4.5
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Stateful programmatic web browsing in Python'
 arch=('any')
 url="https://github.com/python-mechanize/mechanize;
 license=('BSD')
-makedepends=('python-setuptools' 'python-html5lib'
-  'python2-setuptools' 'python2-html5lib')
-checkdepends=('python-zope-interface' 'python-twisted'
-  'python2-zope-interface' 'python2-twisted')
+depends=('python-html5lib')
+makedepends=('python-setuptools')
+checkdepends=('python-zope-interface' 'python-twisted')
+optdepends=('python-html5-parser: faster parsing of HTML')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
 sha256sums=('6355c11141f6d4b54a17fc2106944806b5db2711e60b120d15d83db438c333fd'
 'SKIP')
@@ -30,7 +29,6 @@
   cd "mechanize-$pkgver"
 
   python setup.py build
-  python2 setup.py build
 }
 
 check() {
@@ -37,25 +35,11 @@
   cd "mechanize-$pkgver"
 
   python setup.py test
-  python2 setup.py test
 }
 
-package_python-mechanize() {
-  depends=('python-html5lib')
-  optdepends=('python-html5-parser: faster parsing of HTML')
+package() {
   cd "mechanize-$pkgver"
 
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
-
-package_python2-mechanize() {
-  depends=('python2-html5lib')
-  optdepends=('python2-html5-parser: faster parsing of HTML')
-  cd "mechanize-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:35:37
  Author: eschwartz
Revision: 711963

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 05:35:24 UTC (rev 711962)
+++ PKGBUILD2020-09-25 05:35:37 UTC (rev 711963)
@@ -1,61 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Jelle van der Waa 
-# Contributor: Alexander F Rødseth 
-# Contributor: Chris Brannon 
-# Contributor: Douglas Soares de Andrade
-# Contributor: Roberto Alsina 
-
-_pkgname=mechanize
-pkgbase=python-mechanize
-pkgname=(python-mechanize python2-mechanize)
-pkgver=0.4.5
-pkgrel=1
-epoch=1
-pkgdesc='Stateful programmatic web browsing in Python'
-arch=('any')
-url="https://github.com/python-mechanize/mechanize;
-license=('BSD')
-makedepends=('python-setuptools' 'python-html5lib'
-  'python2-setuptools' 'python2-html5lib')
-checkdepends=('python-zope-interface' 'python-twisted'
-  'python2-zope-interface' 'python2-twisted')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('6355c11141f6d4b54a17fc2106944806b5db2711e60b120d15d83db438c333fd'
-'SKIP')
-b2sums=('67951ad8295a32799768b3719525d45d502bc773c6f2a5e762e3dae97f309c8c265a2cb3efde95c9e8cb65e89dee6ad6ad8585685baa4e9ff1acfd146f115f6f'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-build() {
-  cd "mechanize-$pkgver"
-
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "mechanize-$pkgver"
-
-  python setup.py test
-  python2 setup.py test
-}
-
-package_python-mechanize() {
-  depends=('python-html5lib')
-  optdepends=('python-html5-parser: faster parsing of HTML')
-  cd "mechanize-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-mechanize() {
-  depends=('python2-html5lib')
-  optdepends=('python2-html5-parser: faster parsing of HTML')
-  cd "mechanize-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-mechanize/repos/community-any/PKGBUILD (from rev 711962, 
python-mechanize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 05:35:37 UTC (rev 711963)
@@ -0,0 +1,45 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Jelle van der Waa 
+# Contributor: Alexander F Rødseth 
+# Contributor: Chris Brannon 
+# Contributor: Douglas Soares de Andrade
+# Contributor: Roberto Alsina 
+
+_pkgname=mechanize
+pkgname=python-mechanize
+pkgver=0.4.5
+pkgrel=2
+epoch=1
+pkgdesc='Stateful programmatic web browsing in Python'
+arch=('any')
+url="https://github.com/python-mechanize/mechanize;
+license=('BSD')
+depends=('python-html5lib')
+makedepends=('python-setuptools')
+checkdepends=('python-zope-interface' 'python-twisted')
+optdepends=('python-html5-parser: faster parsing of HTML')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('6355c11141f6d4b54a17fc2106944806b5db2711e60b120d15d83db438c333fd'
+'SKIP')
+b2sums=('67951ad8295a32799768b3719525d45d502bc773c6f2a5e762e3dae97f309c8c265a2cb3efde95c9e8cb65e89dee6ad6ad8585685baa4e9ff1acfd146f115f6f'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
+
+build() {
+  cd "mechanize-$pkgver"
+
+  python setup.py build
+}
+
+check() {
+  cd "mechanize-$pkgver"
+
+  python setup.py test
+}
+
+package() {
+  cd "mechanize-$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-apsw/repos/community-x86_64 (4 files)

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:33:31
  Author: eschwartz
Revision: 711961

archrelease: copy trunk to community-x86_64

Added:
  python-apsw/repos/community-x86_64/LICENSE
(from rev 711960, python-apsw/trunk/LICENSE)
  python-apsw/repos/community-x86_64/PKGBUILD
(from rev 711960, python-apsw/trunk/PKGBUILD)
Deleted:
  python-apsw/repos/community-x86_64/LICENSE
  python-apsw/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   54 ++---
 PKGBUILD |   88 +
 2 files changed, 64 insertions(+), 78 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-09-25 05:33:14 UTC (rev 711960)
+++ LICENSE 2020-09-25 05:33:31 UTC (rev 711961)
@@ -1,27 +0,0 @@
-Copyright (c) 2004-2014 Roger Binns 
-See src/traceback.c for code by Greg Ewing.
-
-All code and documentation is provided under this license:
-
-This software is provided 'as-is', without any express or implied
-warranty. In no event will the authors be held liable for any damages
-arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-1. The origin of this software must not be misrepresented; you must not
-claim that you wrote the original software. If you use this software
-in a product, an acknowledgment in the product documentation would be
-appreciated but is not required.
-
-2. Altered source versions must be plainly marked as such, and must not be
-misrepresented as being the original software.
-
-3. This notice may not be removed or altered from any source
-distribution.
-
-Alternatively you may strike the license above and use it under any
-OSI approved open source license such as those listed at
-http://opensource.org/licenses/alphabetical

Copied: python-apsw/repos/community-x86_64/LICENSE (from rev 711960, 
python-apsw/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-09-25 05:33:31 UTC (rev 711961)
@@ -0,0 +1,27 @@
+Copyright (c) 2004-2014 Roger Binns 
+See src/traceback.c for code by Greg Ewing.
+
+All code and documentation is provided under this license:
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not
+claim that you wrote the original software. If you use this software
+in a product, an acknowledgment in the product documentation would be
+appreciated but is not required.
+
+2. Altered source versions must be plainly marked as such, and must not be
+misrepresented as being the original software.
+
+3. This notice may not be removed or altered from any source
+distribution.
+
+Alternatively you may strike the license above and use it under any
+OSI approved open source license such as those listed at
+http://opensource.org/licenses/alphabetical

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 05:33:14 UTC (rev 711960)
+++ PKGBUILD2020-09-25 05:33:31 UTC (rev 711961)
@@ -1,51 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Brendan MacDonell 
-# Contributor: Linmiao Xu 
-# Contributor: Juan Miguel Cejuela 
-
-pkgbase=python-apsw
-pkgname=('python-apsw' 'python2-apsw')
-pkgver=3.33.0
-pkgrel=1
-arch=('x86_64')
-url="https://github.com/rogerbinns/apsw;
-license=('MIT')
-depends=('sqlite')
-makedepends=('python' 'python2')
-source=("apsw-$pkgver-r1.tar.gz::https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz;)
-sha512sums=('ff0a93e314531d8fe21969d3efc7ccaf2c1a11b2e1a14a46ef9e6325ca3e6a911edee29152a77a2482e7d59fc9f6dab97955daa33ea82df140c3bb6259b6ee67')
-b2sums=('01cb3eee3d3f4ccbef695292006b466bbb91ff9734ae61e2b41210b9fd7d7fc52242121fdfeea1fa2bda81712c94c3d584688cf6406951edad7a7fb4af7c222e')
-
-build() {
-  cd apsw-${pkgver}-r1
-
-  python setup.py build --enable=load_extension
-  python2 setup.py build --enable=load_extension
-}
-
-check() {
-  cd "$srcdir"/apsw-${pkgver}-r1
-
-  # do glob expansion in variable assignment
-  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3* 
"$PWD/build/lib.linux-$CARCH-"2*)
-  PYTHONPATH="${pythonpaths[0]}" python setup.py test
-  PYTHONPATH="${pythonpaths[1]}" python2 setup.py test
-}
-
-package_python-apsw() {
-depends+=('python')
-pkgdesc="Python wrapper for SQLite"
-  cd "$srcdir"/apsw-${pkgver}-r1
-  python setup.py install 

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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:33:14
  Author: eschwartz
Revision: 711960

upgpkg: python-apsw 3.33.0-2: drop python2

no longer used by calibre, and is therefore not needed at all

Modified:
  python-apsw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:28:33 UTC (rev 711959)
+++ PKGBUILD2020-09-25 05:33:14 UTC (rev 711960)
@@ -3,15 +3,14 @@
 # Contributor: Linmiao Xu 
 # Contributor: Juan Miguel Cejuela 
 
-pkgbase=python-apsw
-pkgname=('python-apsw' 'python2-apsw')
+pkgname=python-apsw
 pkgver=3.33.0
-pkgrel=1
+pkgrel=2
+pkgdesc="Python wrapper for SQLite"
 arch=('x86_64')
 url="https://github.com/rogerbinns/apsw;
 license=('MIT')
-depends=('sqlite')
-makedepends=('python' 'python2')
+depends=('python' 'sqlite')
 
source=("apsw-$pkgver-r1.tar.gz::https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz;)
 
sha512sums=('ff0a93e314531d8fe21969d3efc7ccaf2c1a11b2e1a14a46ef9e6325ca3e6a911edee29152a77a2482e7d59fc9f6dab97955daa33ea82df140c3bb6259b6ee67')
 
b2sums=('01cb3eee3d3f4ccbef695292006b466bbb91ff9734ae61e2b41210b9fd7d7fc52242121fdfeea1fa2bda81712c94c3d584688cf6406951edad7a7fb4af7c222e')
@@ -20,7 +19,6 @@
   cd apsw-${pkgver}-r1
 
   python setup.py build --enable=load_extension
-  python2 setup.py build --enable=load_extension
 }
 
 check() {
@@ -27,25 +25,13 @@
   cd "$srcdir"/apsw-${pkgver}-r1
 
   # do glob expansion in variable assignment
-  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3* 
"$PWD/build/lib.linux-$CARCH-"2*)
+  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3*)
   PYTHONPATH="${pythonpaths[0]}" python setup.py test
-  PYTHONPATH="${pythonpaths[1]}" python2 setup.py test
 }
 
-package_python-apsw() {
-depends+=('python')
-pkgdesc="Python wrapper for SQLite"
+package() {
   cd "$srcdir"/apsw-${pkgver}-r1
+
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-apsw() {
-depends+=('python2')
-pkgdesc="Python2 wrapper for SQLite"
-  cd "$srcdir"/apsw-${pkgver}-r1
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


[arch-commits] Commit in (python2-markdown)

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:28:33
  Author: eschwartz
Revision: 711959

remove python2-markdown as we no longer need python2

calibre no longer uses it

Deleted:
  python2-markdown/


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:25:08
  Author: eschwartz
Revision: 711957

upgpkg: python-css-parser 1.0.4-4: drop python2

no longer used by calibre, and is therefore not needed at all

Modified:
  python-css-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:24:50 UTC (rev 711956)
+++ PKGBUILD2020-09-25 05:25:08 UTC (rev 711957)
@@ -1,15 +1,15 @@
 # Maintainer: Eli Schwartz 
 
 _pkgname=css-parser
-pkgbase='python-css-parser'
-pkgname=('python-css-parser' 'python2-css-parser')
+pkgname=python-css-parser
 pkgver=1.0.4
-pkgrel=3
+pkgrel=4
 pkgdesc="A CSS Cascading Style Sheets library for Python"
 arch=('any')
 url="https://github.com/ebook-utils/${_pkgname};
 license=('LGPL')
-makedepends=('python2-setuptools' 'python-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
 
sha512sums=('3781128e55c1e72aa00369873e214f683e3f42944ae83d399697adb7d2966f68fb500c39982845ce9cd06078e4021838d82b06f99d90938069371da8a89a0857'
 'SKIP')
@@ -19,19 +19,10 @@
 cd "${srcdir}"/${_pkgname}-${pkgver}
 
 python setup.py build
-python2 setup.py build
 }
 
-package_python-css-parser() {
-depends=('python')
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
 
-cd "${srcdir}"/${_pkgname}-${pkgver}
 python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }
-
-package_python2-css-parser() {
-depends=('python2')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:25:22
  Author: eschwartz
Revision: 711958

archrelease: copy trunk to community-any

Added:
  python-css-parser/repos/community-any/PKGBUILD
(from rev 711957, python-css-parser/trunk/PKGBUILD)
Deleted:
  python-css-parser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 05:25:08 UTC (rev 711957)
+++ PKGBUILD2020-09-25 05:25:22 UTC (rev 711958)
@@ -1,37 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=css-parser
-pkgbase='python-css-parser'
-pkgname=('python-css-parser' 'python2-css-parser')
-pkgver=1.0.4
-pkgrel=3
-pkgdesc="A CSS Cascading Style Sheets library for Python"
-arch=('any')
-url="https://github.com/ebook-utils/${_pkgname};
-license=('LGPL')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('3781128e55c1e72aa00369873e214f683e3f42944ae83d399697adb7d2966f68fb500c39982845ce9cd06078e4021838d82b06f99d90938069371da8a89a0857'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-python2 setup.py build
-}
-
-package_python-css-parser() {
-depends=('python')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-package_python2-css-parser() {
-depends=('python2')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: python-css-parser/repos/community-any/PKGBUILD (from rev 711957, 
python-css-parser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 05:25:22 UTC (rev 711958)
@@ -0,0 +1,28 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=css-parser
+pkgname=python-css-parser
+pkgver=1.0.4
+pkgrel=4
+pkgdesc="A CSS Cascading Style Sheets library for Python"
+arch=('any')
+url="https://github.com/ebook-utils/${_pkgname};
+license=('LGPL')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('3781128e55c1e72aa00369873e214f683e3f42944ae83d399697adb7d2966f68fb500c39982845ce9cd06078e4021838d82b06f99d90938069371da8a89a0857'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


[arch-commits] Commit in calibre/repos/community-x86_64 (12 files)

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:24:50
  Author: eschwartz
Revision: 711956

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/0001-De-vendor-pychm.patch
(from rev 711955, calibre/trunk/0001-De-vendor-pychm.patch)
  calibre/repos/community-x86_64/Dont-subclass-QLineEdit-in-QDateEdit.patch
(from rev 711955, calibre/trunk/Dont-subclass-QLineEdit-in-QDateEdit.patch)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 711955, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/calibre-alternatives.sh
(from rev 711955, calibre/trunk/calibre-alternatives.sh)
  calibre/repos/community-x86_64/calibre-common.install
(from rev 711955, calibre/trunk/calibre-common.install)
  calibre/repos/community-x86_64/calibre.install
(from rev 711955, calibre/trunk/calibre.install)
Deleted:
  calibre/repos/community-x86_64/0001-De-vendor-pychm.patch
  calibre/repos/community-x86_64/Dont-subclass-QLineEdit-in-QDateEdit.patch
  calibre/repos/community-x86_64/PKGBUILD
  calibre/repos/community-x86_64/calibre-alternatives.sh
  calibre/repos/community-x86_64/calibre-common.install
  calibre/repos/community-x86_64/calibre.install

+
 0001-De-vendor-pychm.patch |13730 +--
 Dont-subclass-QLineEdit-in-QDateEdit.patch |  360 
 PKGBUILD   |  283 
 calibre-alternatives.sh|  122 
 calibre-common.install |   22 
 calibre.install|   28 
 6 files changed, 7230 insertions(+), 7315 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 711955:711956 to see the changes.


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

2020-09-24 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 05:24:22
  Author: eschwartz
Revision: 711955

upgpkg: calibre 5.0.0-1: upstream release

Upstream is now fully migrated to python3 and python2 is no longer supported or
compatible. Good riddance! We now move back to a single package which replaces
all previous alternatives.

Moves from python-sip (4.x) to sip5 and sip-builder to build.

Also note one test is being ignored since it crashes in Qt, but only in
makechrootpkg/nspawn, and works fine on the host.

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:16:09 UTC (rev 711954)
+++ PKGBUILD2020-09-25 05:24:22 UTC (rev 711955)
@@ -7,9 +7,9 @@
 # Contributor: Larry Hajali 
 
 pkgbase=calibre
-pkgname=('calibre' 'calibre-common' 'calibre-python3')
-pkgver=4.23.0
-pkgrel=2
+pkgname=calibre
+pkgver=5.0.0
+pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
 url="https://calibre-ebook.com/;
@@ -17,29 +17,21 @@
 _py_deps=('apsw' 'beautifulsoup4' 'cssselect' 'css-parser' 'dateutil' 'dbus' 
'dnspython'
   'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
   'netifaces' 'unrardll' 'pillow' 'psutil' 'pychm' 'pygments' 'pyqt5'
-  'pyqtwebengine' 'regex')
-_py2_deps=("${_py_deps[@]}" 'ipaddress')
-_py3_deps=("${_py_deps[@]}" 'zeroconf')
+  'pyqtwebengine' 'regex' 'zeroconf')
 depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libusbx'
- 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo' 'qt5-svg' 'udisks2')
-makedepends=("${_py2_deps[@]/#/python2-}" "${_py3_deps[@]/#/python-}" 
'qt5-x11extras'
- 'rapydscript-ng' 'sip' 'xdg-utils')
+ 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
+ "${_py_deps[@]/#/python-}" 'qt5-svg' 'udisks2')
+makedepends=('qt5-x11extras' 'sip5' 'pyqt-builder' 'xdg-utils' 
'rapydscript-ng')
 checkdepends=('xorg-server-xvfb')
+optdepends=('poppler: required for converting pdf to html')
+conflicts=('calibre-common' 'calibre-python3')
+replaces=('calibre-common' 'calibre-python3')
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;
-"Dont-subclass-QLineEdit-in-QDateEdit.patch"
-"0001-De-vendor-pychm.patch"
-"calibre-alternatives.sh")
-sha256sums=('16de51473cf0e336f946a57251a1e4f4fbba1f857f17d8fc14aa132e7eb59518'
-'SKIP'
-'fb451d9d845a291412f8c26d1f39699d56c70d955b128f32aeed223aedcbadf3'
-'f7b829aea1d33818808cbeeb9a295e18e49edf619a5bc89b8315c88f56ce4d25'
-'940cc7081d0a64ba363bb0e1a1d8e0563c676458f90db845f2fbdd4195c075b3')
-b2sums=('3a950ac2b3aade547bb686cc99b963357e76b5931049ecb4a5e09ddaf1db26c74fa3b4ebd74e42d83f68c5c9827c534c0247a3c6a9b000641a778cfe5ac33599'
-'SKIP'
-
'886e66191f63959b8bcc8b2de2b7c431260100f9f3b54dc0e5b7dbeae4ea908fda0d8dc75e1aa990edde79ae29d5ecd4d5a91a204914c208d0b40fa1cbdb2cf0'
-
'c35181c70084813772c4d593311b48b3e3bcc3b4e9e8ee58112b9beab2bbc0de1ee22aafc3d06cfd812f87a2e91292f7b7f1dc5f522c55440f415b6b265d5671'
-
'543df218dfd2d4152a941ab57118d69bf4c6927e8020ee53c9a8b38efe9c89f032dc6385207e134cc9f69bfdc9cbcf63cd92fa6ea1647cbd534c5a511a5d1e91')
+"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
+sha256sums=('72b136273cba66c83cb780363500fab70974bf9f854ee3b98b7110ca719aea2e'
+'SKIP')
+b2sums=('20554a8c60b48fb4fc5277db493cb520a38c93df584dc825b2b980483d8a879570fe6f94f13e263050f3fefdb5c54a47109564691d684f71644503f6fa9360c7'
+'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 
 prepare(){
@@ -52,18 +44,6 @@
 -e "s/^Name=calibre/Name=Calibre/g" \
 -i  src/calibre/linux.py
 
-# cherry-picked bits of python2-backports.functools_lru_cache
-# needed for frozen builds + beautifulsoup4
-# see 
https://github.com/kovidgoyal/calibre/commit/b177f0a1096b4fdabd8772dd9edc2a69e683#commitcomment-33169700
-rm -r src/backports
-# biplist is only used on macOS + python2
-rm -r src/biplist/
-# devendor pychm now, from the py3 building branch:
-# 
https://github.com/kovidgoyal/calibre/commit/959b7e3fafff5faad6ae59263f825b23c7563dd4
-patch -p1 -i ../0001-De-vendor-pychm.patch
-# FS#67690 backport workaround for 
https://bugreports.qt.io/browse/QTBUG-86232
-patch -p1 -i ../Dont-subclass-QLineEdit-in-QDateEdit.patch
-
 cd resources
 
 # Remove unneeded files
@@ -76,12 +56,10 @@
 build() {
 cd "${pkgbase}-${pkgver}"
 
-LANG='en_US.UTF-8' python2 setup.py build
-LANG='en_US.UTF-8' python2 setup.py gui
-LANG='en_US.UTF-8' python2 setup.py mathjax --path-to-mathjax 

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

2020-09-24 Thread Tobias Powalowski via arch-commits
Date: Friday, September 25, 2020 @ 04:48:22
  Author: tpowa
Revision: 396528

upgpkg: ldb 1:2.2.0-1: bump to latest version

Modified:
  ldb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 04:48:08 UTC (rev 396527)
+++ PKGBUILD2020-09-25 04:48:22 UTC (rev 396528)
@@ -3,7 +3,7 @@
 # Contributor: Marco A Rojas 
 
 pkgname=ldb
-pkgver=2.1.4
+pkgver=2.2.0
 pkgrel=1
 epoch=1
 pkgdesc='Schema-less, ldap like, API and database'
@@ -16,7 +16,7 @@
 optdepends=('python: for python bindings')
 provides=(libldb.so)
 validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key 
-sha512sums=('7e0ee973881dde2390568dc71a2ffe7c7ed894daaa9cadf80c221e1b969fd9a8729f3c48a0f611a64b2941c295a2bc7bd8ba869881ba14f75b8bf331167e'
+sha512sums=('3814078a51d2110eeda291ac859c0027df88475812bd6b5f2ce8f8f50aba9c84faced97c37aa1f45e406783a8df97c60ae778df897bb0e89ba3ac8568acced69'
 'SKIP')
 
 build() {


[arch-commits] Commit in ldb/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-09-24 Thread Tobias Powalowski via arch-commits
Date: Friday, September 25, 2020 @ 04:48:25
  Author: tpowa
Revision: 396529

archrelease: copy trunk to testing-x86_64

Added:
  ldb/repos/testing-x86_64/
  ldb/repos/testing-x86_64/PKGBUILD
(from rev 396528, ldb/trunk/PKGBUILD)

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

Copied: ldb/repos/testing-x86_64/PKGBUILD (from rev 396528, ldb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-25 04:48:25 UTC (rev 396529)
@@ -0,0 +1,40 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+# Contributor: Marco A Rojas 
+
+pkgname=ldb
+pkgver=2.2.0
+pkgrel=1
+epoch=1
+pkgdesc='Schema-less, ldap like, API and database'
+arch=('x86_64')
+url="https://ldb.samba.org/;
+source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar{.gz,.asc})
+license=('GPL3')
+depends=('talloc' 'libtevent.so' 'tdb' 'libtdb.so' 'popt' 'lmdb')
+makedepends=('python' 'cmocka' 'docbook-xsl' 'tevent')
+optdepends=('python: for python bindings')
+provides=(libldb.so)
+validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key 
+sha512sums=('3814078a51d2110eeda291ac859c0027df88475812bd6b5f2ce8f8f50aba9c84faced97c37aa1f45e406783a8df97c60ae778df897bb0e89ba3ac8568acced69'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--disable-rpath \
+--disable-rpath-install \
+--bundled-libraries=NONE \
+--builtin-libraries=replace \
+--with-modulesdir=/usr/lib/ldb/modules \
+--with-privatelibdir=/usr/lib/ldb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in samba/repos (13 files)

2020-09-24 Thread Tobias Powalowski via arch-commits
Date: Friday, September 25, 2020 @ 04:48:08
  Author: tpowa
Revision: 396527

archrelease: copy trunk to testing-x86_64

Added:
  samba/repos/testing-x86_64/
  samba/repos/testing-x86_64/PKGBUILD
(from rev 396526, samba/trunk/PKGBUILD)
  samba/repos/testing-x86_64/nmbd.service
(from rev 396526, samba/trunk/nmbd.service)
  samba/repos/testing-x86_64/samba.conf
(from rev 396526, samba/trunk/samba.conf)
  samba/repos/testing-x86_64/samba.conf.d
(from rev 396526, samba/trunk/samba.conf.d)
  samba/repos/testing-x86_64/samba.install
(from rev 396526, samba/trunk/samba.install)
  samba/repos/testing-x86_64/samba.logrotate
(from rev 396526, samba/trunk/samba.logrotate)
  samba/repos/testing-x86_64/samba.pam
(from rev 396526, samba/trunk/samba.pam)
  samba/repos/testing-x86_64/samba.service
(from rev 396526, samba/trunk/samba.service)
  samba/repos/testing-x86_64/smbd.service
(from rev 396526, samba/trunk/smbd.service)
  samba/repos/testing-x86_64/smbd.socket
(from rev 396526, samba/trunk/smbd.socket)
  samba/repos/testing-x86_64/smbd@.service
(from rev 396526, samba/trunk/smbd@.service)
  samba/repos/testing-x86_64/winbindd.service
(from rev 396526, samba/trunk/winbindd.service)

--+
 PKGBUILD |  203 +
 nmbd.service |   12 +++
 samba.conf   |2 
 samba.conf.d |   18 
 samba.install|   10 ++
 samba.logrotate  |5 +
 samba.pam|3 
 samba.service|   14 +++
 smbd.service |   12 +++
 smbd.socket  |9 ++
 smbd@.service|7 +
 winbindd.service |   12 +++
 12 files changed, 307 insertions(+)

Copied: samba/repos/testing-x86_64/PKGBUILD (from rev 396526, 
samba/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-25 04:48:08 UTC (rev 396527)
@@ -0,0 +1,203 @@
+
+# Maintainer: Tobias Powalowski 
+# Contributor: judd 
+# Contributor: Michael Hansen 
+# Contributor: Marco A Rojas 
+# Contributor: Netanel Shine 
+# Contributor: ngoonee 
+# Contributor: Adam Russell 
+# Contributor: Dhananjay Sathe 
+
+pkgbase=samba
+pkgname=('smbclient' 'samba')
+pkgver=4.13.0
+pkgrel=1
+arch=(x86_64)
+url="https://www.samba.org;
+license=('GPL3')
+makedepends=('python' 'docbook-xsl' 'pkg-config' 'libbsd' 'db' 'popt' 'libcups'
+ 'readline' 'tevent' 'acl' 'libldap' 'libcap' 'ldb' 'krb5' 'pam'
+ 'systemd' 'gnutls' 'talloc' 'tdb' 'dbus' 'libaio'
+ 'perl-parse-yapp' 'libnsl' 'libtirpc' 'rpcsvc-proto' 'jansson'
+ 'ceph-libs' 'liburing')
+optdepends=(
+ 'python-dnspython: samba_dnsupdate and samba_upgradedns in AD 
setup'
+)
+source=(https://us1.samba.org/samba/ftp/stable/${pkgbase}-${pkgver}.tar{.gz,.asc}
+samba.logrotate
+samba.pam
+samba.conf)
+validpgpkeys=('52FBC0B86D954B0843324CDC6F33915B6568B7EA') #Samba Distribution 
Verification Key 
+sha512sums=('0c15e887efa79ba8c1d24eda2f03898a1a080cb947056df12abc361f12eb5659f9ee37132767f5ef7e4ecb9c431759e5b619cb785921276fda17f4a9411af81c'
+'SKIP'
+
'2ba0691ded467e4d6e40821f6de58c00f8962209efe2e60284c0c87756ab471c22c3d63b77d506e48c90ed0d852a2a24e41be1d499cf74a73cb99da0b503c858'
+
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
+
'e46ee848baabb261e7468ecee43aba4d001a24f86f5322ae522abdb75030fd0ebd9063b9df0be3576c4d1654d81331f5e389aee16ec2fa138259ae4728e94efc')
+### UNINSTALL dmapi package before building!!!
+
+build() {
+  # Use samba-pkg as a staging directory for the split packages
+  # (This is so RPATHS and symlinks are generated correctly via
+  # make install, but the otherwise unsplit pieces can be split)
+  _pkgsrc="${srcdir}"/samba-pkg
+  rm -rf ${_pkgsrc}
+  _samba4_idmap_modules=idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2
+  
_samba4_pdb_modules=pdb_tdbsam,pdb_ldap,pdb_ads,pdb_smbpasswd,pdb_wbc_sam,pdb_samba4
+  
_samba4_auth_modules=auth_unix,auth_wbc,auth_server,auth_netlogond,auth_script,auth_samba4
+  cd samba-${pkgver}
+  ./configure --enable-fhs \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libdir=/usr/lib \
+  --libexecdir=/usr/lib/samba \
+  --localstatedir=/var \
+  --with-configdir=/etc/samba \
+  --with-lockdir=/var/cache/samba \
+  --with-sockets-dir=/run/samba \
+  --with-piddir=/run \
+  --with-ads \
+  --with-ldap \
+  --with-winbind \
+  --with-acl-support \
+  --with-systemd \
+  --systemd-install-services \
+  --with-pam \
+  --with-pammodulesdir=/usr/lib/security \
+  

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

2020-09-24 Thread Tobias Powalowski via arch-commits
Date: Friday, September 25, 2020 @ 04:47:55
  Author: tpowa
Revision: 396526

upgpkg: samba 4.13.0-1: bump to latest version

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 00:40:37 UTC (rev 396525)
+++ PKGBUILD2020-09-25 04:47:55 UTC (rev 396526)
@@ -10,7 +10,7 @@
 
 pkgbase=samba
 pkgname=('smbclient' 'samba')
-pkgver=4.12.6
+pkgver=4.13.0
 pkgrel=1
 arch=(x86_64)
 url="https://www.samba.org;
@@ -28,7 +28,7 @@
 samba.pam
 samba.conf)
 validpgpkeys=('52FBC0B86D954B0843324CDC6F33915B6568B7EA') #Samba Distribution 
Verification Key 
-sha512sums=('16a4ced3942bc6d51e80db257e8caeaa426980f66caf2aaf2324f091ec5063bc6b9029d90ff2f321b68be4cede7555d1ebf142405105468bd581e7a7bf9f0be5'
+sha512sums=('0c15e887efa79ba8c1d24eda2f03898a1a080cb947056df12abc361f12eb5659f9ee37132767f5ef7e4ecb9c431759e5b619cb785921276fda17f4a9411af81c'
 'SKIP'
 
'2ba0691ded467e4d6e40821f6de58c00f8962209efe2e60284c0c87756ab471c22c3d63b77d506e48c90ed0d852a2a24e41be1d499cf74a73cb99da0b503c858'
 
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'


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

2020-09-24 Thread Evangelos Foutras via arch-commits
Date: Friday, September 25, 2020 @ 04:21:17
  Author: foutrelis
Revision: 711953

archrelease: copy trunk to community-any

Added:
  shorewall/repos/community-any/PKGBUILD
(from rev 711952, shorewall/trunk/PKGBUILD)
Deleted:
  shorewall/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 04:21:12 UTC (rev 711952)
+++ PKGBUILD2020-09-25 04:21:17 UTC (rev 711953)
@@ -1,78 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Malte Rabenseifner 
-# Contributor: Andrea Scarpino 
-# Contributor: FUBAR 
-
-pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.2.7
-pkgrel=1
-_v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
-_v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
-arch=('any')
-url="https://shorewall.org/;
-license=('GPL')
-source=(https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall-$pkgver.tar.bz2{,.asc}
-
https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
-
https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
-sha256sums=('fea6cdab5d844c29c4c6dcd6d77aa6fd1700af29814c5259252f83fd0b34fa15'
-'SKIP'
-'4fc5a1a9e18f1134925ce7edf094e5f4dd076ccf094521e55cc2000ee0e8fa9a'
-'SKIP'
-'ebfd03a4114fbf1a204b72b9d9b7a9fd12b406c4a6b819135d9864103c22542a'
-'SKIP')
-validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
-
-build() {
-  for product in shorewall{,6,-core}; do
-pushd "$srcdir/$product-$pkgver"
-./configure HOST=archlinux
-popd
-  done
-}
-
-package_shorewall() {
-  pkgdesc="An iptables-based firewall for Linux systems"
-  depends=('shorewall-core' 'perl')
-  
backup=(etc/shorewall/{accounting,actions,arprules,blrules,clear,conntrack,ecn,findgw,hosts,init,initdone,interfaces,lib.private,maclist,mangle,nat,netmap,params,policy,providers,proxyarp,refresh,refreshed,restored,routes,rtrules,rules,scfilter,secmarks,shorewall.conf,snat,start,started,stop,stopped,stoppedrules,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install
-}
-
-package_shorewall6() {
-  pkgdesc="An iptables-based firewall for Linux systems (with IPv6 support)"
-  depends=('shorewall')
-  
backup=(etc/shorewall6/{accounting,actions,blrules,clear,conntrack,findgw,hosts,init,interfaces,lib.private,maclist,mangle,nat,netmap,params,policy,providers,proxyndp,refresh,refreshed,restored,routes,rtrules,rules,scfilter,secmarks,shorewall6.conf,snat,start,started,stop,stopped,stoppedrules,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install 6
-}
-
-package_shorewall-core() {
-  pkgdesc="Core Shorewall libraries"
-  depends=('iptables' 'iproute2')
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  DESTDIR="$pkgdir" ./install.sh
-}
-
-do_install() {
-  local _name_suffix=$1
-
-  sed -i -e 's|^MODULE_SUFFIX=ko$|&.gz|' \
- -e 's|/subsys||' \
-  "configfiles/shorewall$_name_suffix.conf"
-
-  DESTDIR="$pkgdir" ./install.sh
-
-  install -d "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-  cp -r Samples$_name_suffix "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-
-  chmod -R 644 "$pkgdir/etc/shorewall$_name_suffix/"
-  chmod 755 "$pkgdir/etc/shorewall$_name_suffix/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: shorewall/repos/community-any/PKGBUILD (from rev 711952, 
shorewall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 04:21:17 UTC (rev 711953)
@@ -0,0 +1,78 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Malte Rabenseifner 
+# Contributor: Andrea Scarpino 
+# Contributor: FUBAR 
+
+pkgname=('shorewall' 'shorewall6' 'shorewall-core')
+pkgver=5.2.8
+pkgrel=1
+_v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
+_v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
+arch=('any')
+url="https://shorewall.org/;
+license=('GPL')
+source=(https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall-$pkgver.tar.bz2{,.asc}
+
https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
+
https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
+sha256sums=('fbb5ab492ed372eaaf02817cc730f82c49a81c5a5f5cee4bc8f1bce846f2306d'
+'SKIP'
+'e82c3a9538b6548195398dc39c83b01bcf66eb5a22814c915a924b9adc088cd1'
+'SKIP'
+'39996b9697a2017947049ad3f03cb278e8f939ff924b2bb4bf2a0bc17c59988e'
+'SKIP')
+validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
+
+build() {
+  for product in shorewall{,6,-core}; do
+

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

2020-09-24 Thread Evangelos Foutras via arch-commits
Date: Friday, September 25, 2020 @ 04:21:12
  Author: foutrelis
Revision: 711952

upgpkg: shorewall 5.2.8-1: new upstream release

Modified:
  shorewall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 03:38:19 UTC (rev 711951)
+++ PKGBUILD2020-09-25 04:21:12 UTC (rev 711952)
@@ -4,7 +4,7 @@
 # Contributor: FUBAR 
 
 pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.2.7
+pkgver=5.2.8
 pkgrel=1
 _v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
 _v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
@@ -14,11 +14,11 @@
 
source=(https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall-$pkgver.tar.bz2{,.asc}
 
https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
 
https://shorewall.org/pub/shorewall/$_v1/shorewall-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
-sha256sums=('fea6cdab5d844c29c4c6dcd6d77aa6fd1700af29814c5259252f83fd0b34fa15'
+sha256sums=('fbb5ab492ed372eaaf02817cc730f82c49a81c5a5f5cee4bc8f1bce846f2306d'
 'SKIP'
-'4fc5a1a9e18f1134925ce7edf094e5f4dd076ccf094521e55cc2000ee0e8fa9a'
+'e82c3a9538b6548195398dc39c83b01bcf66eb5a22814c915a924b9adc088cd1'
 'SKIP'
-'ebfd03a4114fbf1a204b72b9d9b7a9fd12b406c4a6b819135d9864103c22542a'
+'39996b9697a2017947049ad3f03cb278e8f939ff924b2bb4bf2a0bc17c59988e'
 'SKIP')
 validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
 


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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 25, 2020 @ 03:38:19
  Author: svenstaro
Revision: 711951

archrelease: copy trunk to community-x86_64

Added:
  tensorboard/repos/community-x86_64/PKGBUILD
(from rev 711950, tensorboard/trunk/PKGBUILD)
  tensorboard/repos/community-x86_64/bump-tensorflow.patch
(from rev 711950, tensorboard/trunk/bump-tensorflow.patch)
  tensorboard/repos/community-x86_64/fix-grpc-deps.patch
(from rev 711950, tensorboard/trunk/fix-grpc-deps.patch)
Deleted:
  tensorboard/repos/community-x86_64/PKGBUILD
  tensorboard/repos/community-x86_64/bump-tensorflow.patch
  tensorboard/repos/community-x86_64/fix-grpc-deps.patch

---+
 PKGBUILD  |  130 
 bump-tensorflow.patch |   36 ++---
 fix-grpc-deps.patch   |   94 +-
 3 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 03:38:12 UTC (rev 711950)
+++ PKGBUILD2020-09-25 03:38:19 UTC (rev 711951)
@@ -1,65 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=tensorboard
-pkgver=2.3.0
-pkgrel=2
-pkgdesc="TensorFlow's Visualization Toolkit"
-url='https://github.com/tensorflow/tensorboard'
-arch=('x86_64')
-license=('APACHE')
-depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
- 'python-html5lib' 'python-protobuf' 'python-setuptools' 
'python-grpcio' 'python-google-auth-oauthlib'
- 'python-tensorboard_plugin_wit')
-optdepends=('python-tensorflow: advanced features for TensorBoard')
-makedepends=('bazel' 'tree')
-source=("${pkgname}-${pkgver}::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;
-'bump-tensorflow.patch'
-'fix-grpc-deps.patch')
-sha512sums=('0f3299be1fc69d4e2c5cf4ee49a79bbed7b8321f8daa7dfb39390dce17fef4b11db72c8090503d10b152cfeed06aa8935ddbe8d18049692c3f4394c5cdee833f'
-
'87b38bb13b580f29ff4a28b150ee572b651630686292a73e1accf79b964433e9e4b19ca6193c5098ad642fee51fa2d3c97139c7bc1b7c1f9763d18710458d375'
-
'e3b339285ea1ee46e0cc560f9ef509d2307d15090bc740ae9cc322daafd1db1180458b565a234043049c5208679bb982360b7b364df7d97ffe671669')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 -i "${srcdir}/bump-tensorflow.patch"
-  patch -Np1 -i "${srcdir}/fix-grpc-deps.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  bazel build --experimental_repo_remote_exec tensorboard:tensorboard
-  bazel build --experimental_repo_remote_exec 
//tensorboard/pip_package:build_pip_package
-
-  mkdir pypackage
-  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
-  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
-  cp 
tensorboard/pip_package/{README.rst,MANIFEST.in,setup.py,requirements.txt} 
pypackage
-  cp README.md pypackage
-  cd pypackage
-  python setup.py build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd pypackage
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  rm -r "$pkgdir"/usr/lib/python3.8/site-packages/external/
-
-  
_requires="$pkgdir"/usr/lib/python3.8/site-packages/tensorboard-${pkgver}-py3.8.egg-info/requires.txt
-  # This is ugly: We need to patch it to use current bleach and html5lib
-  # because old ones are not even compatible with Python 3.6 and we don't have
-  # those in Arch of course.
-  sed -i 's/bleach==.*/bleach/' ${_requires}
-  sed -i 's/html5lib==.*/html5lib/' ${_requires}
-  # Other ugly hack: workaround for issues 650
-  # https://github.com/tensorflow/tensorboard/issues/650
-  sed -i '/^futures/d' ${_requires}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tensorboard/repos/community-x86_64/PKGBUILD (from rev 711950, 
tensorboard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 03:38:19 UTC (rev 711951)
@@ -0,0 +1,65 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=tensorboard
+pkgver=2.3.0
+pkgrel=3
+pkgdesc="TensorFlow's Visualization Toolkit"
+url='https://github.com/tensorflow/tensorboard'
+arch=('x86_64')
+license=('APACHE')
+depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
+ 'python-html5lib' 'python-protobuf' 'python-setuptools' 
'python-grpcio' 'python-google-auth-oauthlib'
+ 'python-tensorboard_plugin_wit' 'absl-py')
+optdepends=('python-tensorflow: advanced features for TensorBoard')
+makedepends=('bazel' 'tree')
+source=("${pkgname}-${pkgver}::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;
+'bump-tensorflow.patch'
+'fix-grpc-deps.patch')

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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 25, 2020 @ 03:38:12
  Author: svenstaro
Revision: 711950

upgpkg: tensorboard 2.3.0-3: Add absl-py to deps

Modified:
  tensorboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 02:02:32 UTC (rev 711949)
+++ PKGBUILD2020-09-25 03:38:12 UTC (rev 711950)
@@ -2,7 +2,7 @@
 
 pkgname=tensorboard
 pkgver=2.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="TensorFlow's Visualization Toolkit"
 url='https://github.com/tensorflow/tensorboard'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=('APACHE')
 depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
  'python-html5lib' 'python-protobuf' 'python-setuptools' 
'python-grpcio' 'python-google-auth-oauthlib'
- 'python-tensorboard_plugin_wit')
+ 'python-tensorboard_plugin_wit' 'absl-py')
 optdepends=('python-tensorflow: advanced features for TensorBoard')
 makedepends=('bazel' 'tree')
 
source=("${pkgname}-${pkgver}::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;


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

2020-09-24 Thread Jiachen Yang via arch-commits
Date: Friday, September 25, 2020 @ 02:02:32
  Author: farseerfc
Revision: 711949

archrelease: copy trunk to community-x86_64

Added:
  flameshot/repos/community-x86_64/PKGBUILD
(from rev 711948, flameshot/trunk/PKGBUILD)
  flameshot/repos/community-x86_64/flameshot.install
(from rev 711948, flameshot/trunk/flameshot.install)
Deleted:
  flameshot/repos/community-x86_64/PKGBUILD
  flameshot/repos/community-x86_64/flameshot.install

---+
 PKGBUILD  |   70 +---
 flameshot.install |   44 
 2 files changed, 62 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-25 02:01:47 UTC (rev 711948)
+++ PKGBUILD2020-09-25 02:02:32 UTC (rev 711949)
@@ -1,30 +0,0 @@
-# Maintainer: Jiachen YANG 
-# Contributor: xyzzy <628...@gmail.com>
-
-pkgname=flameshot
-pkgver=0.8.1
-pkgrel=1
-pkgdesc="Powerful yet simple to use screenshot software"
-arch=('x86_64')
-url="https://github.com/lupoDharkael/flameshot;
-license=('GPL')
-depends=('qt5-svg' 'hicolor-icon-theme')
-makedepends=('make' 'qt5-tools' 'cmake')
-source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;)
-sha256sums=('92394c469536b264f36e592b51468d9bbe4ea619888bb0090e8a4831c2ce2d7c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  mkdir build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-  make DESTDIR="${pkgdir}" install
-  
-  # zsh _flameshot completion is provided by zsh-completions so exclude from 
packaging
-  rm -rf ${pkgdir}/usr/share/zsh/
-}

Copied: flameshot/repos/community-x86_64/PKGBUILD (from rev 711948, 
flameshot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-25 02:02:32 UTC (rev 711949)
@@ -0,0 +1,40 @@
+# Maintainer: Jiachen YANG 
+# Contributor: xyzzy <628...@gmail.com>
+
+pkgname=flameshot
+pkgver=0.8.1
+pkgrel=2
+pkgdesc="Powerful yet simple to use screenshot software"
+arch=('x86_64')
+url="https://github.com/lupoDharkael/flameshot;
+license=('GPL')
+depends=('qt5-svg' 'hicolor-icon-theme')
+makedepends=('make' 'qt5-tools' 'cmake')
+source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;
+"pr969.patch::https://github.com/flameshot-org/flameshot/commit/0d5386edd4223dca682c0a50e53f6931af080ee9.patch;
+"pr648.patch::https://github.com/flameshot-org/flameshot/commit/e1214e23e5a2641d585e47aa064cfcbb8a2b6111.patch;)
+sha256sums=('92394c469536b264f36e592b51468d9bbe4ea619888bb0090e8a4831c2ce2d7c'
+'c69c5055452e688cd3f2ca8b2d7ba9e3f8985727884f5ee6cba8e1d686e815f2'
+'0f5aeb9cab8540ef0fec2ce71de18aabb7fd8ffeb2b080fab1ff88b88569a22c')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i ${srcdir}/pr969.patch # 
https://github.com/flameshot-org/flameshot/commit/0d5386edd4223dca682c0a50e53f6931af080ee9
+  patch -Np1 -i ${srcdir}/pr648.patch # 
https://github.com/flameshot-org/flameshot/commit/e1214e23e5a2641d585e47aa064cfcbb8a2b6111
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  mkdir build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+  
+  # zsh _flameshot completion is provided by zsh-completions so exclude from 
packaging
+  rm -rf ${pkgdir}/usr/share/zsh/
+}

Deleted: flameshot.install
===
--- flameshot.install   2020-09-25 02:01:47 UTC (rev 711948)
+++ flameshot.install   2020-09-25 02:02:32 UTC (rev 711949)
@@ -1,22 +0,0 @@
-echo_shortcut() {
-   echo "See the link about keyboard shortcuts: 
https://github.com/lupoDharkael/flameshot#keyboard-shortcuts;
-}
-
-echo_gnome3() {
-   echo "For Gnome3 users: please install one of the tray icons extension 
to use the systray icon"
-}
-
-post_upgrade(){
-   if [ $(vercmp $2 0.5.1) -lt 0 ]; then
-echo_shortcut
-   fi
-
-   if [ $(vercmp $2 0.5.1-3) -lt 0 ]; then
-echo_gnome3
-   fi
-}
-
-post_install(){
-echo_shortcut
-echo_gnome3
-}

Copied: flameshot/repos/community-x86_64/flameshot.install (from rev 711948, 
flameshot/trunk/flameshot.install)
===
--- flameshot.install   (rev 0)
+++ flameshot.install   2020-09-25 02:02:32 UTC (rev 711949)
@@ -0,0 +1,22 @@
+echo_shortcut() {
+   echo "See the link about keyboard shortcuts: 
https://github.com/lupoDharkael/flameshot#keyboard-shortcuts;
+}
+
+echo_gnome3() {
+   echo "For Gnome3 users: please install one of the tray icons extension 
to use the systray icon"
+}
+
+post_upgrade(){
+   if [ $(vercmp 

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

2020-09-24 Thread Jiachen Yang via arch-commits
Date: Friday, September 25, 2020 @ 02:01:47
  Author: farseerfc
Revision: 711948

upgpkg: flameshot 0.8.1-2: flameshot 0.8.1-2 backport PR#648

Modified:
  flameshot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 00:40:48 UTC (rev 711947)
+++ PKGBUILD2020-09-25 02:01:47 UTC (rev 711948)
@@ -3,7 +3,7 @@
 
 pkgname=flameshot
 pkgver=0.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Powerful yet simple to use screenshot software"
 arch=('x86_64')
 url="https://github.com/lupoDharkael/flameshot;
@@ -10,9 +10,19 @@
 license=('GPL')
 depends=('qt5-svg' 'hicolor-icon-theme')
 makedepends=('make' 'qt5-tools' 'cmake')
-source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;)
-sha256sums=('92394c469536b264f36e592b51468d9bbe4ea619888bb0090e8a4831c2ce2d7c')
+source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;
+"pr969.patch::https://github.com/flameshot-org/flameshot/commit/0d5386edd4223dca682c0a50e53f6931af080ee9.patch;
+"pr648.patch::https://github.com/flameshot-org/flameshot/commit/e1214e23e5a2641d585e47aa064cfcbb8a2b6111.patch;)
+sha256sums=('92394c469536b264f36e592b51468d9bbe4ea619888bb0090e8a4831c2ce2d7c'
+'c69c5055452e688cd3f2ca8b2d7ba9e3f8985727884f5ee6cba8e1d686e815f2'
+'0f5aeb9cab8540ef0fec2ce71de18aabb7fd8ffeb2b080fab1ff88b88569a22c')
 
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i ${srcdir}/pr969.patch # 
https://github.com/flameshot-org/flameshot/commit/0d5386edd4223dca682c0a50e53f6931af080ee9
+  patch -Np1 -i ${srcdir}/pr648.patch # 
https://github.com/flameshot-org/flameshot/commit/e1214e23e5a2641d585e47aa064cfcbb8a2b6111
+}
+
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   mkdir build


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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 25, 2020 @ 00:39:26
  Author: svenstaro
Revision: 396523

archrelease: copy trunk to staging-x86_64

Added:
  efl/repos/staging-x86_64/
  efl/repos/staging-x86_64/PKGBUILD
(from rev 396522, efl/trunk/PKGBUILD)
  efl/repos/staging-x86_64/eina_doxygen.patch
(from rev 396522, efl/trunk/eina_doxygen.patch)

+
 PKGBUILD   |   86 +++
 eina_doxygen.patch |   10 +
 2 files changed, 96 insertions(+)

Copied: efl/repos/staging-x86_64/PKGBUILD (from rev 396522, efl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-25 00:39:26 UTC (rev 396523)
@@ -0,0 +1,86 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Enlightenment Developers 
+
+pkgbase=efl
+pkgname=('efl' 'efl-docs')
+pkgver=1.24.3
+pkgrel=4
+pkgdesc="Enlightenment Foundation Libraries"
+arch=('x86_64')
+url="https://www.enlightenment.org;
+license=('BSD' 'LGPL2.1' 'GPL2' 'custom')
+depends=('avahi' 'bullet' 'curl' 'fontconfig' 'fribidi'
+ 'gst-plugins-base-libs' 'luajit' 'libexif' 'libgl' 'libinput'
+ 'libpulse' 'libspectre' 'libraw' 'librsvg' 'libwebp' 'libxcomposite'
+ 'libxcursor' 'libxinerama' 'libxkbcommon' 'libxp' 'libxrandr'
+ 'libxss' 'libunwind' 'mesa' 'openjpeg2' 'poppler'
+ 'shared-mime-info' 'mailcap' 'ttf-font' 'scim' 'libibus' 'glib2'
+ 'wayland' 'wayland-protocols' 'libxkbcommon-x11'
+ 'pulseaudio')
+optdepends=('geoclue: For elocation'
+'gst-plugins-base: Video and thumbnail codecs'
+'gst-plugins-good: Video and thumbnail codecs'
+'gst-plugins-bad: Video and thumbnail codecs'
+'gst-plugins-ugly: Video and thumbnail codecs'
+'gst-libav: Video and thumbnails with ffmpeg/libav'
+'libreoffice: Office document thumbnails')
+makedepends=('doxygen' 'python' 'texlive-core' 'ghostscript' 'imagemagick' 
'meson' 'ninja')
+options=('!emptydirs')
+source=(https://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.xz)
+sha256sums=('de95c6e673c170c1e21382918b122417c091c643e7dcaced89aa785529625c2a')
+
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CFLAGS="$CFLAGS -fvisibility=hidden"
+
+  if [ -d build ]; then
+rm -rf build
+  fi
+  mkdir -p build
+
+  meson --prefix=/usr \
+-Dfb=true \
+-Ddrm=true \
+-Dwl=true \
+-Dglib=true \
+-Dnetwork-backend=connman \
+-Devas-loaders-disabler=json \
+-Dbindings= \
+-Dbuild-examples=false \
+-Dbuild-tests=false \
+-Decore-imf-loaders-disabler= \
+. build
+
+  ninja -C build
+
+  cd build/doc
+  doxygen
+}
+
+package_efl(){
+  replaces=('elementary' 'evas_generic_loaders' 'emotion_generic_players')
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  DESTDIR="${pkgdir}" ninja -C build install
+  
+  # install non-standard license files
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.BSD" \
+"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.BSD"
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.SMALL" \
+"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.SMALL"
+}
+
+package_efl-docs() {
+  pkgdesc="Documentation for the Enlightenment Foundation Libraries"
+  depends=()
+
+  cd "${srcdir}/${pkgbase}-${pkgver}/build"
+  install -d "${pkgdir}/usr/share/doc/${pkgbase}"
+  cp -a html "${pkgdir}/usr/share/doc/${pkgbase}/html"
+  cp -a latex "${pkgdir}/usr/share/doc/${pkgbase}/latex"
+  #cp -a man "${pkgdir}/usr/share"
+  
+}
+

Copied: efl/repos/staging-x86_64/eina_doxygen.patch (from rev 396522, 
efl/trunk/eina_doxygen.patch)
===
--- staging-x86_64/eina_doxygen.patch   (rev 0)
+++ staging-x86_64/eina_doxygen.patch   2020-09-25 00:39:26 UTC (rev 396523)
@@ -0,0 +1,10 @@
+--- src/lib/eina/eina_hamster.h2013-02-16 12:52:32.0 +0100
 src/lib/eina/eina_hamster.h.new2014-09-16 22:19:04.820163522 +0200
+@@ -24,7 +24,6 @@
+  *
+  * @brief These functions provide hamster calls.
+  *
+- * @{
+  */
+ 
+ /**


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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 25, 2020 @ 00:39:18
  Author: svenstaro
Revision: 396522

upgpkg: efl 1.24.3-4: bullet 3.05 rebuild

Modified:
  efl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 23:59:06 UTC (rev 396521)
+++ PKGBUILD2020-09-25 00:39:18 UTC (rev 396522)
@@ -4,7 +4,7 @@
 pkgbase=efl
 pkgname=('efl' 'efl-docs')
 pkgver=1.24.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Enlightenment Foundation Libraries"
 arch=('x86_64')
 url="https://www.enlightenment.org;


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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 25, 2020 @ 00:14:28
  Author: svenstaro
Revision: 711945

upgpkg: openmw 0.46.0-2

bullet 3.05 rebuild

Modified:
  openmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 23:02:27 UTC (rev 711944)
+++ PKGBUILD2020-09-25 00:14:28 UTC (rev 711945)
@@ -3,7 +3,7 @@
 
 pkgname=openmw
 pkgver=0.46.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Open-source engine reimplementation for the role-playing game 
Morrowind"
 arch=('x86_64')
 url="http://www.openmw.org;


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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 25, 2020 @ 00:14:34
  Author: svenstaro
Revision: 711946

archrelease: copy trunk to community-staging-x86_64

Added:
  openmw/repos/community-staging-x86_64/
  openmw/repos/community-staging-x86_64/PKGBUILD
(from rev 711945, openmw/trunk/PKGBUILD)

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

Copied: openmw/repos/community-staging-x86_64/PKGBUILD (from rev 711945, 
openmw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-25 00:14:34 UTC (rev 711946)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+
+pkgname=openmw
+pkgver=0.46.0
+pkgrel=2
+pkgdesc="Open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield' 'libxt')
+makedepends=('cmake' 'boost' 'doxygen' 'ninja' 'git')
+source=("git+https://github.com/OpenMW/openmw.git#tag=openmw-$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd openmw
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DDESIRED_QT_VERSION=5 \
+-GNinja \
+-Bbuild
+  ninja -C build
+}
+
+package() {
+  cd openmw
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, September 24, 2020 @ 23:58:54
  Author: svenstaro
Revision: 396520

upgpkg: bullet 3.05-1

Modified:
  bullet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 22:43:18 UTC (rev 396519)
+++ PKGBUILD2020-09-24 23:58:54 UTC (rev 396520)
@@ -3,8 +3,8 @@
 
 pkgbase=bullet
 pkgname=('bullet' 'bullet-docs' 'python-pybullet')
-pkgver=2.89
-pkgrel=2
+pkgver=3.05
+pkgrel=1
 pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
 arch=('x86_64')
 url="http://www.bulletphysics.com/Bullet/;
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy' 'python-setuptools' 'ninja')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
 bullet3_examplebrowser.sh)
-sha512sums=('3c4ba6a3b3623ef44dd4a23e0bc2e90dec1f2b7af463edcb886e110feac1dfb4a91945f0ed640052cac228318539e275976d37238102fb10a0f78aef065a730b'
+sha512sums=('4cb67547b466e01f6c2258b1f350fdfac0f2dc73a7962b6e196491e6722e1cd22cdfe80d7b2f4e1e92a90f91e277bff5cabfd0f55ef55010f9a4d7286843cecd'
 
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
 
 build() {
@@ -62,11 +62,13 @@
 
 package_python-pybullet() {
   pkgdesc="Bullet Python bindings"
-  depends+=('bullet')
+  depends+=('bullet' 'gcc-libs')
 
   cd bullet3-${pkgver}
 
   python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }
 
 package_bullet-docs() {


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

2020-09-24 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, September 24, 2020 @ 23:59:06
  Author: svenstaro
Revision: 396521

archrelease: copy trunk to staging-x86_64

Added:
  bullet/repos/staging-x86_64/
  bullet/repos/staging-x86_64/PKGBUILD
(from rev 396520, bullet/trunk/PKGBUILD)
  bullet/repos/staging-x86_64/bullet3_examplebrowser.sh
(from rev 396520, bullet/trunk/bullet3_examplebrowser.sh)

---+
 PKGBUILD  |   85 
 bullet3_examplebrowser.sh |4 ++
 2 files changed, 89 insertions(+)

Copied: bullet/repos/staging-x86_64/PKGBUILD (from rev 396520, 
bullet/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-24 23:59:06 UTC (rev 396521)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+pkgbase=bullet
+pkgname=('bullet' 'bullet-docs' 'python-pybullet')
+pkgver=3.05
+pkgrel=1
+pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games 
and animation"
+arch=('x86_64')
+url="http://www.bulletphysics.com/Bullet/;
+license=('custom:zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 
'python-numpy' 'python-setuptools' 'ninja')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz;
+bullet3_examplebrowser.sh)
+sha512sums=('4cb67547b466e01f6c2258b1f350fdfac0f2dc73a7962b6e196491e6722e1cd22cdfe80d7b2f4e1e92a90f91e277bff5cabfd0f55ef55010f9a4d7286843cecd'
+
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
+
+build() {
+  cd bullet3-${pkgver}
+
+  cmake . \
+  -Bbuild \
+  -GNinja \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=1 \
+  -DINSTALL_LIBS=1 \
+  -DINSTALL_EXTRA_LIBS=1 \
+  -DBUILD_PYBULLET=ON \
+  -DBUILD_PYBULLET_NUMPY=ON \
+  -DBUILD_OPENGL3_DEMOS=ON \
+  -DCMAKE_BUILD_TYPE=Release
+
+  ninja -C build
+
+  python setup.py build
+  doxygen
+}
+
+package_bullet() {
+  optdepends=('glu: for the example browser'
+  'python: python bindings'
+  'python-numpy: python bindings'
+  'bullet-docs: documentation')
+
+  cd bullet3-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  cd build
+
+  install -Dm755 examples/pybullet/pybullet.so.${pkgver} 
"${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
+  install -Dm755 
examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} 
"${pkgdir}"/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
+  install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so 
"${pkgdir}"/usr/lib/libOpenGLWindow.so
+  install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so 
"${pkgdir}"/usr/lib/libgwen.so
+  install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so 
"${pkgdir}"/usr/lib/libBussIK.so
+  install -Dm755 "${srcdir}"/bullet3_examplebrowser.sh 
"${pkgdir}"/usr/bin/bullet3_examplebrowser
+  install -Dm755 examples/ExampleBrowser/App_ExampleBrowser 
"${pkgdir}"/opt/bullet/App_ExampleBrowser
+  cp -r data "${pkgdir}"/opt/bullet/
+
+  install -Dm644 ../LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/LICENSE
+}
+
+package_python-pybullet() {
+  pkgdesc="Bullet Python bindings"
+  depends+=('bullet' 'gcc-libs')
+
+  cd bullet3-${pkgver}
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_bullet-docs() {
+  pkgdesc="Documentation for bullet"
+
+  cd bullet3-${pkgver}
+
+  # install docs
+  install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf 
"${pkgdir}"/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
+  install -Dm644 docs/Bullet_User_Manual.pdf 
"${pkgdir}"/usr/share/doc/bullet/Bullet_User_Manual.pdf
+  install -Dm644 docs/BulletQuickstart.pdf 
"${pkgdir}"/usr/share/doc/bullet/BulletQuickstart.pdf
+  cp -r html "${pkgdir}"/usr/share/doc/bullet/html
+}
+# vim: sw=2 ts=2 et:

Copied: bullet/repos/staging-x86_64/bullet3_examplebrowser.sh (from rev 396520, 
bullet/trunk/bullet3_examplebrowser.sh)
===
--- staging-x86_64/bullet3_examplebrowser.sh(rev 0)
+++ staging-x86_64/bullet3_examplebrowser.sh2020-09-24 23:59:06 UTC (rev 
396521)
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+cd /opt/bullet
+./App_ExampleBrowser


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

2020-09-24 Thread Ivy Foster via arch-commits
Date: Thursday, September 24, 2020 @ 23:02:27
  Author: escondida
Revision: 711944

Add PGP source verification and location of upstream's checksums

Modified:
  sndio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 22:17:41 UTC (rev 711943)
+++ PKGBUILD2020-09-24 23:02:27 UTC (rev 711944)
@@ -14,9 +14,17 @@
 # if done that way. Licenses are complicated.
 depends=(alsa-lib libbsd)
 
-source=("http://www.sndio.org/sndio-$pkgver.tar.gz;)
-# checksums provided by packager
-sha256sums=(dda4e3d0879423ed57923975ba74668cbb9299939cad579b0ac64a4b01535552)
+source=(
+   "http://www.sndio.org/sndio-$pkgver.tar.gz;
+   "http://www.sndio.org/sndio-$pkgver.tar.gz.asc;
+)
+# Checksum source: http://www.sndio.org/sndio-$pkgver.tar.gz.sha256
+sha256sums=(
+   dda4e3d0879423ed57923975ba74668cbb9299939cad579b0ac64a4b01535552
+   SKIP
+)
+validpgpkeys=(6B1A7447AAF091CCDD36BAA6015E339411694A6E)
+
 backup=(etc/default/sndiod)
 
 build() {


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 22:17:41
  Author: anthraxx
Revision: 711943

archrelease: copy trunk to community-x86_64

Added:
  iperf3/repos/community-x86_64/PKGBUILD
(from rev 711942, iperf3/trunk/PKGBUILD)
Deleted:
  iperf3/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 22:17:37 UTC (rev 711942)
+++ PKGBUILD2020-09-24 22:17:41 UTC (rev 711943)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Timothy Redaelli 
-# Contributor: Jim Ferguson 
-# Contributor: Xi0N 
-# Contributor: goll 
-
-pkgname=iperf3
-pkgver=3.7
-pkgrel=2
-pkgdesc='TCP, UDP, and SCTP network bandwidth measurement tool'
-url='https://github.com/esnet/iperf'
-arch=('x86_64')
-license=('BSD')
-depends=('openssl')
-source=(http://downloads.es.net/pub/iperf/iperf-${pkgver}.tar.gz)
-sha256sums=('d846040224317caf2f75c843d309a950a7db23f9b44b94688ccbe557d6d1710c')
-sha512sums=('9b8d1ac6bdebb00e38e196db9a71ae6ff3b8b763cd4b1336d078c31f6d0a5ab53bbe70ba949c601af5efe674dbd032ed5d58a761d5159dae4e50122b68a8f086')
-
-build() {
-  cd iperf-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd iperf-${pkgver}
-  make check
-}
-
-package() {
-  cd iperf-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 examples/*{.am,.in,.c} -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
-}
-
-# vim: ts=2 sw=2 et:

Copied: iperf3/repos/community-x86_64/PKGBUILD (from rev 711942, 
iperf3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 22:17:41 UTC (rev 711943)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Timothy Redaelli 
+# Contributor: Jim Ferguson 
+# Contributor: Xi0N 
+# Contributor: goll 
+
+pkgname=iperf3
+pkgver=3.9
+pkgrel=1
+pkgdesc='TCP, UDP, and SCTP network bandwidth measurement tool'
+url='https://github.com/esnet/iperf'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'openssl')
+provides=('libiperf.so')
+source=(http://downloads.es.net/pub/iperf/iperf-${pkgver}.tar.gz)
+sha512sums=('4a2af8a6028b0f6bded9b3ac51c5463bc7595c9a2d2ac13f28b0e2e8dee0ac0a299e7817125e23e409f12e8e80862ed28d5541eef3cda7cd9f7104bb720165ce')
+b2sums=('b9b07590e0220b965f25ede95e71b2b8ae1ccea7a75dabc917356eb70405feab858c1e034af72cd87013f89eb098599938e7ee79e6dc58d356bcc68e03551be0')
+
+build() {
+  cd iperf-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd iperf-${pkgver}
+  make check
+}
+
+package() {
+  cd iperf-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 examples/*{.am,.in,.c} -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 22:17:37
  Author: anthraxx
Revision: 711942

upgpkg: iperf3 3.9-1

Modified:
  iperf3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 22:14:21 UTC (rev 711941)
+++ PKGBUILD2020-09-24 22:17:37 UTC (rev 711942)
@@ -5,16 +5,17 @@
 # Contributor: goll 
 
 pkgname=iperf3
-pkgver=3.7
-pkgrel=2
+pkgver=3.9
+pkgrel=1
 pkgdesc='TCP, UDP, and SCTP network bandwidth measurement tool'
 url='https://github.com/esnet/iperf'
 arch=('x86_64')
 license=('BSD')
-depends=('openssl')
+depends=('glibc' 'openssl')
+provides=('libiperf.so')
 source=(http://downloads.es.net/pub/iperf/iperf-${pkgver}.tar.gz)
-sha256sums=('d846040224317caf2f75c843d309a950a7db23f9b44b94688ccbe557d6d1710c')
-sha512sums=('9b8d1ac6bdebb00e38e196db9a71ae6ff3b8b763cd4b1336d078c31f6d0a5ab53bbe70ba949c601af5efe674dbd032ed5d58a761d5159dae4e50122b68a8f086')
+sha512sums=('4a2af8a6028b0f6bded9b3ac51c5463bc7595c9a2d2ac13f28b0e2e8dee0ac0a299e7817125e23e409f12e8e80862ed28d5541eef3cda7cd9f7104bb720165ce')
+b2sums=('b9b07590e0220b965f25ede95e71b2b8ae1ccea7a75dabc917356eb70405feab858c1e034af72cd87013f89eb098599938e7ee79e6dc58d356bcc68e03551be0')
 
 build() {
   cd iperf-${pkgver}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 22:14:21
  Author: anthraxx
Revision: 711941

archrelease: copy trunk to community-x86_64

Added:
  diffoscope/repos/community-x86_64/PKGBUILD
(from rev 711940, diffoscope/trunk/PKGBUILD)
Deleted:
  diffoscope/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 22:14:17 UTC (rev 711940)
+++ PKGBUILD2020-09-24 22:14:21 UTC (rev 711941)
@@ -1,98 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=diffoscope
-pkgver=146
-pkgrel=1
-pkgdesc='Tool for in-depth comparison of files, archives, and directories'
-url='https://diffoscope.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('python-magic' 'python-libarchive-c' 'python-setuptools' 
'python-distro' 'python-defusedxml'
- 'python-tlsh')
-optdepends=(
-  'acl: access control list utilities support'
-  'binutils: binary utilities support'
-  'binwalk: binwalk support'
-  'bzip2: bzip2 utilities support'
-  'cdrtools: ISO utilities support'
-  'colord: ICC profiles support'
-  'cpio: cpio archive support'
-  'diffutils: diff utilities support'
-  'docx2txt: docx comparing support'
-  'dtc: device tree comparing support'
-  'e2fsprogs: Ext2/3/4 filesystem utilities support'
-  'enjarify: Android dex file support'
-  'hdf5: Hierarchical Data Format support'
-  'imagemagick: ImageMagick identify support'
-  'fpc: Free Pascal utilities support'
-  'java-environment: java utilities support'
-  'libcaca: image compare support'
-  'llvm: LLVM bitcode files support'
-  'lz4: lz4 compression support'
-  'odt2txt: odt comparing support'
-  'fontforge: bitmap font utilities support'
-  'gettext: GNU internationalization utilities support'
-  'ghc: haskell utilities support'
-  'giflib: gifbuild utilities support'
-  'gnupg: GNU privacy guard support'
-  'gnumeric: GNOME Spreadsheet support'
-  'mono: mono support'
-  'openssh: OpenSSH key comparing support'
-  'openssl: .p7c and .p7b certificates. support'
-  'poppler: PDF utilities support'
-  'r: R language support'
-  'sqlite: SQLite support'
-  'squashfs-tools: squashfs filesystem support'
-  #'python-guestfs: guestfs filesystem support'
-  'python-argcomplete: completion support'
-  'python-jsbeautifier: javascript beautifier support'
-  'python-progressbar: show progressbar support'
-  'tcpdump: pcap matching support'
-  'unzip: zip utilities support'
-  'gzip: gzip utilities support'
-  'tar: tar utilities support'
-# 'wabt: webassembly support' unittest fails
-  'xxd: xxd utilities support'
-  'xz: XZ and LZMA utilities support'
-  'zstd: zst compression'
-)
-makedepends=('help2man' 'python-docutils' 'git')
-checkdepends=(
-  'python-pytest' 'python-jsbeautifier' 'python-h5py' 'acl' 'binutils' 'bzip2' 
'cdrtools' 'cpio' 'diffutils' 'e2fsprogs' 'enjarify'
-  'hdf5' 'imagemagick' 'java-environment=11' 'fontforge' 'gettext' 'ghc' 
'gnupg' 'mono' 'mono-tools' 'poppler' 'sqlite' 'squashfs-tools'
-  'lz4' 'unzip' 'gzip' 'tar' 'tcpdump' 'vim' 'xz' 'llvm' 'colord' 'fpc' 
'openssh' 'openssl' 'odt2txt' 'docx2txt' 'r' 'dtc' 'giflib'
-  'gnumeric' 'python-progressbar' 'binwalk' 'python-argcomplete' 'zstd')
-source=(https://diffoscope.org/archive/diffoscope-${pkgver}.tar.bz2{,.asc})
-sha512sums=('7be691c689ec3309985e83e07924c1726ff8e16e774209ec8c4a9e47446a49e75fb9a10a510a64344d5f4c8222fbfc9f964d93e4f5eec3379b2ff131880ad9bc'
-'SKIP')
-b2sums=('ab6f59ec127b90fc4feaa077f764ca263c4f3ff573f27013905a0b11b3e0b5e4cd33f22fcba48a1d8ffce1d3a3f703a7e7e047982200134271e9a8f9faf06db7'
-'SKIP')
-validpgpkeys=("C2FE4BD271C139B86C533E461E953E27D4311E58") # "Chris Lamb 
"
-
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed '/python-magic/d' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-  make -C doc
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  PYTHONPATH=".:${PYTHONPATH}" py.test \
--k 'not test_ppu and not test_superblock' # unsquashfs output differs from 
fixture.
-# ppu bug https://salsa.debian.org/reproducible-builds/diffoscope/issues/9
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 doc/diffoscope.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: diffoscope/repos/community-x86_64/PKGBUILD (from rev 711940, 
diffoscope/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 22:14:21 UTC (rev 711941)
@@ -0,0 +1,98 @@
+# Maintainer: Levente Polyak 
+
+pkgname=diffoscope
+pkgver=160
+pkgrel=1
+pkgdesc='Tool for in-depth comparison of files, archives, and directories'
+url='https://diffoscope.org/'
+arch=('x86_64')

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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 22:14:17
  Author: anthraxx
Revision: 711940

upgpkg: diffoscope 160-1

Modified:
  diffoscope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 22:08:35 UTC (rev 711939)
+++ PKGBUILD2020-09-24 22:14:17 UTC (rev 711940)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=diffoscope
-pkgver=146
+pkgver=160
 pkgrel=1
 pkgdesc='Tool for in-depth comparison of files, archives, and directories'
 url='https://diffoscope.org/'
@@ -63,9 +63,9 @@
   'lz4' 'unzip' 'gzip' 'tar' 'tcpdump' 'vim' 'xz' 'llvm' 'colord' 'fpc' 
'openssh' 'openssl' 'odt2txt' 'docx2txt' 'r' 'dtc' 'giflib'
   'gnumeric' 'python-progressbar' 'binwalk' 'python-argcomplete' 'zstd')
 source=(https://diffoscope.org/archive/diffoscope-${pkgver}.tar.bz2{,.asc})
-sha512sums=('7be691c689ec3309985e83e07924c1726ff8e16e774209ec8c4a9e47446a49e75fb9a10a510a64344d5f4c8222fbfc9f964d93e4f5eec3379b2ff131880ad9bc'
+sha512sums=('6bcbeb8ee92e821f1126dcdff4ebe2ed7cf64563a150e566ad918b516fb6e7f4874e7cd7801e7b19be2d20ecf4f7975b15a0674e26867a786bec12286fe4941c'
 'SKIP')
-b2sums=('ab6f59ec127b90fc4feaa077f764ca263c4f3ff573f27013905a0b11b3e0b5e4cd33f22fcba48a1d8ffce1d3a3f703a7e7e047982200134271e9a8f9faf06db7'
+b2sums=('2866a1d570e5ebe5f99f0d8dc4a034b7f5d384e2f1e85a1d1f9463391c7425c6ddbdf9d98e5203a68dc00e46c6834e39bcef7c6e275a69ea7f30c6244c2da814'
 'SKIP')
 validpgpkeys=("C2FE4BD271C139B86C533E461E953E27D4311E58") # "Chris Lamb 
"
 
@@ -84,7 +84,7 @@
 check() {
   cd ${pkgname}-${pkgver}
   PYTHONPATH=".:${PYTHONPATH}" py.test \
--k 'not test_ppu and not test_superblock' # unsquashfs output differs from 
fixture.
+-k 'not test_ppu and not test_superblock and not test_wasm' # unsquashfs 
output differs from fixture.
 # ppu bug https://salsa.debian.org/reproducible-builds/diffoscope/issues/9
 }
 


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 22:09:53
  Author: anthraxx
Revision: 396517

archrelease: copy trunk to extra-x86_64

Added:
  iptraf-ng/repos/extra-x86_64/PKGBUILD
(from rev 396516, iptraf-ng/trunk/PKGBUILD)
Deleted:
  iptraf-ng/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 22:09:49 UTC (rev 396516)
+++ PKGBUILD2020-09-24 22:09:53 UTC (rev 396517)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: sh0 
-
-pkgname=iptraf-ng
-pkgver=1.1.4
-pkgrel=5
-pkgdesc='Console-based network monitoring utility'
-url='https://sourceforge.net/projects/iptraf-ng/'
-arch=('x86_64')
-depends=('ncurses')
-license=('GPL2')
-replaces=('iptraf')
-source=(https://infrastructure.fedoraproject.org/infra/hosted-content/iptraf-ng/iptraf-ng/iptraf-ng-${pkgver}.tar.gz)
-sha256sums=('79140cf07c0cceb1b5723242847a73aa86f5e4f9dccfe8970fda6801d347eb09')
-sha512sums=('8cafbcec75eb4071156a9e9350ffe6de99cb6386e8f50d05337113872ee50082a30009d85faa02d83633a8e727039791332d600654321b95ca6cfc881774')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin
-  # preserve our own flags
-  make CFLAGS="${CFLAGS} -std=gnu99" \
-LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}"
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 iptraf-ng-logrotate.conf -t "${pkgdir}/etc/logrotate.d"
-}
-
-# vim: ts=2 sw=2 et:

Copied: iptraf-ng/repos/extra-x86_64/PKGBUILD (from rev 396516, 
iptraf-ng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 22:09:53 UTC (rev 396517)
@@ -0,0 +1,33 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: sh0 
+
+pkgname=iptraf-ng
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='Console-based network monitoring utility'
+url='https://github.com/iptraf-ng/iptraf-ng'
+arch=('x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('44d36fc92cdbf379f62cb63638663c3ee610225b9c28d60ee55e62e358f398a6b0db281129327b3472e45fb553ee3dd605af09c129f2233f8839ae3dbd799384')
+b2sums=('9b8df7fa24711b401464d492993b9c27424ec7ab6230218d1b792a66e5fb60c99b5cdb92ac1b5a6da578c4b10da79333f248f14d10e74057118aadf50263a4ed')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make CFLAGS="${CFLAGS} -std=gnu99 -D_GNU_SOURCE" \
+LDFLAGS="${LDFLAGS}" \
+CPPFLAGS="${CPPFLAGS}" \
+sbindir_relative=bin \
+prefix=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" prefix=/usr sbindir_relative=bin install
+  install -Dm 644 iptraf-ng-logrotate.conf -t "${pkgdir}/etc/logrotate.d"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 22:09:49
  Author: anthraxx
Revision: 396516

upgpkg: iptraf-ng 1.2.1-1

Modified:
  iptraf-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:55:02 UTC (rev 396515)
+++ PKGBUILD2020-09-24 22:09:49 UTC (rev 396516)
@@ -3,33 +3,30 @@
 # Contributor: sh0 
 
 pkgname=iptraf-ng
-pkgver=1.1.4
-pkgrel=5
+pkgver=1.2.1
+pkgrel=1
 pkgdesc='Console-based network monitoring utility'
-url='https://sourceforge.net/projects/iptraf-ng/'
+url='https://github.com/iptraf-ng/iptraf-ng'
 arch=('x86_64')
 depends=('ncurses')
 license=('GPL2')
 replaces=('iptraf')
-source=(https://infrastructure.fedoraproject.org/infra/hosted-content/iptraf-ng/iptraf-ng/iptraf-ng-${pkgver}.tar.gz)
-sha256sums=('79140cf07c0cceb1b5723242847a73aa86f5e4f9dccfe8970fda6801d347eb09')
-sha512sums=('8cafbcec75eb4071156a9e9350ffe6de99cb6386e8f50d05337113872ee50082a30009d85faa02d83633a8e727039791332d600654321b95ca6cfc881774')
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('44d36fc92cdbf379f62cb63638663c3ee610225b9c28d60ee55e62e358f398a6b0db281129327b3472e45fb553ee3dd605af09c129f2233f8839ae3dbd799384')
+b2sums=('9b8df7fa24711b401464d492993b9c27424ec7ab6230218d1b792a66e5fb60c99b5cdb92ac1b5a6da578c4b10da79333f248f14d10e74057118aadf50263a4ed')
 
 build() {
   cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin
-  # preserve our own flags
-  make CFLAGS="${CFLAGS} -std=gnu99" \
-LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}"
+  make CFLAGS="${CFLAGS} -std=gnu99 -D_GNU_SOURCE" \
+LDFLAGS="${LDFLAGS}" \
+CPPFLAGS="${CPPFLAGS}" \
+sbindir_relative=bin \
+prefix=/usr
 }
 
 package() {
   cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" prefix=/usr sbindir_relative=bin install
   install -Dm 644 iptraf-ng-logrotate.conf -t "${pkgdir}/etc/logrotate.d"
 }
 


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

2020-09-24 Thread Morten Linderud via arch-commits
Date: Thursday, September 24, 2020 @ 22:08:35
  Author: foxboron
Revision: 711939

archrelease: copy trunk to community-x86_64

Added:
  python-reportlab/repos/community-x86_64/ChangeLog
(from rev 711938, python-reportlab/trunk/ChangeLog)
  python-reportlab/repos/community-x86_64/PKGBUILD
(from rev 711938, python-reportlab/trunk/PKGBUILD)
Deleted:
  python-reportlab/repos/community-x86_64/ChangeLog
  python-reportlab/repos/community-x86_64/PKGBUILD

---+
 ChangeLog |   36 +++
 PKGBUILD  |   68 ++--
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2020-09-24 21:58:17 UTC (rev 711938)
+++ ChangeLog   2020-09-24 22:08:35 UTC (rev 711939)
@@ -1,18 +0,0 @@
-
-2009-02-17  Douglas Soares de Andrade  
-
-   * Updated for i686: 2.3
-
-2008-11-03  Giovanni Scafora   
-
-   * Rebuilt against python 2.6
-
-2008-09-14  Douglas Soares de Andrade  
-
-   * Updating for x86_64: 2.2
-
-2008-09-13  Douglas Soares de Andrade  
-
-   * Adding ChangeLog
-   * Updating for i686: 2.2
-

Copied: python-reportlab/repos/community-x86_64/ChangeLog (from rev 711938, 
python-reportlab/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2020-09-24 22:08:35 UTC (rev 711939)
@@ -0,0 +1,18 @@
+
+2009-02-17  Douglas Soares de Andrade  
+
+   * Updated for i686: 2.3
+
+2008-11-03  Giovanni Scafora   
+
+   * Rebuilt against python 2.6
+
+2008-09-14  Douglas Soares de Andrade  
+
+   * Updating for x86_64: 2.2
+
+2008-09-13  Douglas Soares de Andrade  
+
+   * Adding ChangeLog
+   * Updating for i686: 2.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:58:17 UTC (rev 711938)
+++ PKGBUILD2020-09-24 22:08:35 UTC (rev 711939)
@@ -1,34 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: William Rea 
-
-_origname=reportlab
-pkgname=python-reportlab
-pkgver=3.5.50
-pkgrel=1
-pkgdesc="A proven industry-strength PDF generating solution"
-arch=('x86_64')
-url="https://bitbucket.org/rptlab/reportlab;
-depends=('freetype2')
-depends=('python' 'python-pip' 'python-pillow')
-makedepends=('freetype2' 'python-pillow' 'mercurial')
-license=('BSD')
-source=(https://files.pythonhosted.org/packages/source/${_origname::1}/${_origname}/${_origname}-${pkgver}.tar.gz)
-sha256sums=('876ce59164245f62bf67b8502e127b0a3ffd40f37c7177d1b4d9da24e42a77b0')
-
-build() {
-cd ${_origname}-${pkgver}
-python setup.py build
-}
-
-check() {
-cd ${_origname}-${pkgver}
-python setup.py tests
-rm tests/_i_am_actually_a_*
-}
-
-package() {
-cd ${_origname}-${pkgver}
-python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
-}

Copied: python-reportlab/repos/community-x86_64/PKGBUILD (from rev 711938, 
python-reportlab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 22:08:35 UTC (rev 711939)
@@ -0,0 +1,34 @@
+# Maintainer: Morten Linderud 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: William Rea 
+
+_origname=reportlab
+pkgname=python-reportlab
+pkgver=3.5.51
+pkgrel=1
+pkgdesc="A proven industry-strength PDF generating solution"
+arch=('x86_64')
+url="https://bitbucket.org/rptlab/reportlab;
+depends=('freetype2')
+depends=('python' 'python-pip' 'python-pillow')
+makedepends=('freetype2' 'python-pillow' 'mercurial')
+license=('BSD')
+source=(https://files.pythonhosted.org/packages/source/${_origname::1}/${_origname}/${_origname}-${pkgver}.tar.gz)
+sha256sums=('bd1ed4d8a064e7372d46b7a23774d984c024d8bb0c2ff3283d5213749b9ffa1c')
+
+build() {
+cd ${_origname}-${pkgver}
+python setup.py build
+}
+
+check() {
+cd ${_origname}-${pkgver}
+python setup.py tests
+rm tests/_i_am_actually_a_*
+}
+
+package() {
+cd ${_origname}-${pkgver}
+python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:58:17
  Author: anthraxx
Revision: 711938

archrelease: copy trunk to community-any

Added:
  catch2/repos/community-any/PKGBUILD
(from rev 711937, catch2/trunk/PKGBUILD)
Deleted:
  catch2/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:58:14 UTC (rev 711937)
+++ PKGBUILD2020-09-24 21:58:17 UTC (rev 711938)
@@ -1,51 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Maintainer: Levente Polyak 
-# Contributor: Bart Verhagen 
-
-pkgname=catch2
-_gitcommit=7f21cc6c5599f59835f769debf13b4c3e6148a28
-pkgver=2.13.0
-pkgrel=1
-pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
-arch=('any')
-url="https://github.com/catchorg/catch2;
-license=('Boost')
-makedepends=('git' 'cmake' 'python') # python seems to be necessary for 
building tests (FS#60273)
-source=(${pkgname}::"git+https://github.com/catchorg/Catch2#commit=${_gitcommit}?signed;)
-sha512sums=('SKIP')
-validpgpkeys=(
-  E29C46F3B8A7502860793B7DECC9C20E314B2360 # Martin Hořeňovský
-  81E70B717FFB27AFDB45F52090BBFF120F9C087B # Jozef Grajciar
-)
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  cd ${pkgname}
-  export CFLAGS+=" ${CPPFLAGS}"
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  cmake -B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCATCH_USE_VALGRIND=OFF \
--DCATCH_BUILD_EXAMPLES=OFF \
--DCATCH_ENABLE_COVERAGE=OFF \
--DCATCH_ENABLE_WERROR=OFF \
--DBUILD_TESTING=ON
-  make -C build
-}
-
-check() {
-  cd ${pkgname}
-  make -C build test
-}
-
-package() {
-  cd ${pkgname}
-  make -C build DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: catch2/repos/community-any/PKGBUILD (from rev 711937, 
catch2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:58:17 UTC (rev 711938)
@@ -0,0 +1,51 @@
+# Maintainer: Baptiste Jonglez 
+# Maintainer: Levente Polyak 
+# Contributor: Bart Verhagen 
+
+pkgname=catch2
+_gitcommit=fd9f5ac661f87335ecd70d39849c1d3a90f1c64d
+pkgver=2.13.1
+pkgrel=1
+pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
+arch=('any')
+url="https://github.com/catchorg/catch2;
+license=('Boost')
+makedepends=('git' 'cmake' 'python') # python seems to be necessary for 
building tests (FS#60273)
+source=(${pkgname}::"git+https://github.com/catchorg/Catch2#commit=${_gitcommit}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=(
+  E29C46F3B8A7502860793B7DECC9C20E314B2360 # Martin Hořeňovský
+  81E70B717FFB27AFDB45F52090BBFF120F9C087B # Jozef Grajciar
+)
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd ${pkgname}
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCATCH_USE_VALGRIND=OFF \
+-DCATCH_BUILD_EXAMPLES=OFF \
+-DCATCH_ENABLE_COVERAGE=OFF \
+-DCATCH_ENABLE_WERROR=OFF \
+-DBUILD_TESTING=ON
+  make -C build
+}
+
+check() {
+  cd ${pkgname}
+  make -C build test
+}
+
+package() {
+  cd ${pkgname}
+  make -C build DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:58:14
  Author: anthraxx
Revision: 711937

upgpkg: catch2 2.13.1-1

Modified:
  catch2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:56:52 UTC (rev 711936)
+++ PKGBUILD2020-09-24 21:58:14 UTC (rev 711937)
@@ -3,8 +3,8 @@
 # Contributor: Bart Verhagen 
 
 pkgname=catch2
-_gitcommit=7f21cc6c5599f59835f769debf13b4c3e6148a28
-pkgver=2.13.0
+_gitcommit=fd9f5ac661f87335ecd70d39849c1d3a90f1c64d
+pkgver=2.13.1
 pkgrel=1
 pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
 arch=('any')


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

2020-09-24 Thread Antonio Rojas via arch-commits
Date: Thursday, September 24, 2020 @ 21:56:42
  Author: arojas
Revision: 711935

Update to 3.7.9

Modified:
  youtube-viewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:41:48 UTC (rev 711934)
+++ PKGBUILD2020-09-24 21:56:42 UTC (rev 711935)
@@ -10,7 +10,7 @@
 license=(GPL3)
 
 epoch=1
-pkgver=3.7.8
+pkgver=3.7.9
 pkgrel=1
 
 depends=(perl perl-data-dump perl-file-sharedir perl-json 
perl-lwp-protocol-https perl-libwww)
@@ -37,7 +37,7 @@
 
 validpgpkeys=(ABB8BBAA2E279767774149B7D0A443C703A3A056)
 # sums provided by packager makepkg -g
-sha512sums=('30d776486da5338914c7fbbdf1517c1c48c1a025a069605727302c16e500695cd82888e9896728966ab8f313799fd3aef23b35892cdd5f2decd9212d4c7fad87'
+sha512sums=('e59dfe11029bb243f301279354a849ca8de8afe98efb78947f362fd823cfe2e1cc038df711b0a5817da5e491b0d268474a060f698ec3c56914e2f4c3062b7005'
 'SKIP')
 
 build() {


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

2020-09-24 Thread Antonio Rojas via arch-commits
Date: Thursday, September 24, 2020 @ 21:56:52
  Author: arojas
Revision: 711936

archrelease: copy trunk to community-any

Added:
  youtube-viewer/repos/community-any/PKGBUILD
(from rev 711935, youtube-viewer/trunk/PKGBUILD)
  youtube-viewer/repos/community-any/youtube-viewer.install
(from rev 711935, youtube-viewer/trunk/youtube-viewer.install)
Deleted:
  youtube-viewer/repos/community-any/PKGBUILD
  youtube-viewer/repos/community-any/youtube-viewer.install

+
 PKGBUILD   |  132 +++
 youtube-viewer.install |   32 +--
 2 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:56:42 UTC (rev 711935)
+++ PKGBUILD2020-09-24 21:56:52 UTC (rev 711936)
@@ -1,66 +0,0 @@
-# Maintainer: Ivy Foster 
-# Contributor: Alad Wenter 
-# Contributor: Alexander F Rødseth 
-# Contributor: Daniel Wallace < danielwallace at gtmanfred dot com>
-# Contributor: Trizen 
-
-pkgname=youtube-viewer
-pkgdesc='Command line utility for viewing YouTube videos'
-url='https://github.com/trizen/youtube-viewer'
-license=(GPL3)
-
-epoch=1
-pkgver=3.7.8
-pkgrel=1
-
-depends=(perl perl-data-dump perl-file-sharedir perl-json 
perl-lwp-protocol-https perl-libwww)
-makedepends=(perl-module-build)
-optdepends=(
-   'gtk2-perl: GTK2 GUI'
-   'mpv: play videos with MPV'
-   'perl-file-sharedir: GTK GUI'
-   'perl-gtk3: GTK3 GUI'
-   'perl-json-xs: faster JSON to HASH conversion'
-   'perl-term-readline-gnu: better STDIN support'
-   'perl-text-charwidth: print results in a fixed-width format'
-   'vlc: play videos with VLC'
-   'wget: download videos with wget'
-   'youtube-dl: play videos with encrypted signatures'
-)
-
-arch=(any)
-source=(
-   
"$pkgname-$pkgver.tar.gz::https://github.com/trizen/youtube-viewer/archive/$pkgver.tar.gz;
-   
"https://github.com/trizen/youtube-viewer/releases/download/$pkgver/youtube-viewer-$pkgver.tar.gz.asc;
-)
-install=youtube-viewer.install
-
-validpgpkeys=(ABB8BBAA2E279767774149B7D0A443C703A3A056)
-# sums provided by packager makepkg -g
-sha512sums=('30d776486da5338914c7fbbdf1517c1c48c1a025a069605727302c16e500695cd82888e9896728966ab8f313799fd3aef23b35892cdd5f2decd9212d4c7fad87'
-'SKIP')
-
-build() {
-   cd "youtube-viewer-$pkgver"
-   perl Build.PL --installdirs vendor --gtk
-}
-
-check() {
-   cd "youtube-viewer-$pkgver"
-   ./Build test
-}
-
-package() {
-   cd "youtube-viewer-$pkgver"
-
-   ./Build install --destdir "$pkgdir"
-   rm -r "$pkgdir/usr/lib"
-
-   install -D -m 644 README.md 
"$pkgdir/usr/share/doc/youtube-viewer/README.md"
-
-   mkdir -p "$pkgdir/usr/share/applications" "$pkgdir/usr/share/pixmaps"
-   mv 
"$pkgdir/usr/share/perl5/vendor_perl/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.desktop"
 \
-   "$pkgdir/usr/share/applications/gtk-youtube-viewer.desktop"
-   cp 
"$pkgdir/usr/share/perl5/vendor_perl/auto/share/dist/WWW-YoutubeViewer/icons/gtk-youtube-viewer.png"
 \
-   "$pkgdir/usr/share/pixmaps/gtk-youtube-viewer.png"
-}

Copied: youtube-viewer/repos/community-any/PKGBUILD (from rev 711935, 
youtube-viewer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:56:52 UTC (rev 711936)
@@ -0,0 +1,66 @@
+# Maintainer: Ivy Foster 
+# Contributor: Alad Wenter 
+# Contributor: Alexander F Rødseth 
+# Contributor: Daniel Wallace < danielwallace at gtmanfred dot com>
+# Contributor: Trizen 
+
+pkgname=youtube-viewer
+pkgdesc='Command line utility for viewing YouTube videos'
+url='https://github.com/trizen/youtube-viewer'
+license=(GPL3)
+
+epoch=1
+pkgver=3.7.9
+pkgrel=1
+
+depends=(perl perl-data-dump perl-file-sharedir perl-json 
perl-lwp-protocol-https perl-libwww)
+makedepends=(perl-module-build)
+optdepends=(
+   'gtk2-perl: GTK2 GUI'
+   'mpv: play videos with MPV'
+   'perl-file-sharedir: GTK GUI'
+   'perl-gtk3: GTK3 GUI'
+   'perl-json-xs: faster JSON to HASH conversion'
+   'perl-term-readline-gnu: better STDIN support'
+   'perl-text-charwidth: print results in a fixed-width format'
+   'vlc: play videos with VLC'
+   'wget: download videos with wget'
+   'youtube-dl: play videos with encrypted signatures'
+)
+
+arch=(any)
+source=(
+   
"$pkgname-$pkgver.tar.gz::https://github.com/trizen/youtube-viewer/archive/$pkgver.tar.gz;
+   
"https://github.com/trizen/youtube-viewer/releases/download/$pkgver/youtube-viewer-$pkgver.tar.gz.asc;
+)
+install=youtube-viewer.install
+
+validpgpkeys=(ABB8BBAA2E279767774149B7D0A443C703A3A056)
+# sums provided by packager makepkg -g

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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:54:36
  Author: anthraxx
Revision: 396512

upgpkg: libfido2 1.5.0-2: libcbor rebuild

Modified:
  libfido2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:51:14 UTC (rev 396511)
+++ PKGBUILD2020-09-24 21:54:36 UTC (rev 396512)
@@ -3,7 +3,7 @@
 
 pkgname=libfido2
 pkgver=1.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Library functionality for FIDO 2.0, including communication with a 
device over USB'
 url='https://developers.yubico.com/libfido2/'
 arch=('x86_64')


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:54:38
  Author: anthraxx
Revision: 396513

archrelease: copy trunk to staging-x86_64

Added:
  libfido2/repos/staging-x86_64/
  libfido2/repos/staging-x86_64/PKGBUILD
(from rev 396512, libfido2/trunk/PKGBUILD)

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

Copied: libfido2/repos/staging-x86_64/PKGBUILD (from rev 396512, 
libfido2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-24 21:54:38 UTC (rev 396513)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: Karol Babioch 
+
+pkgname=libfido2
+pkgver=1.5.0
+pkgrel=2
+pkgdesc='Library functionality for FIDO 2.0, including communication with a 
device over USB'
+url='https://developers.yubico.com/libfido2/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'openssl' 'libcbor' 'libcbor.so' 'hidapi' 'systemd-libs'  
'libudev.so')
+makedepends=('cmake' 'systemd')
+provides=('libfido2.so')
+source=(https://developers.yubico.com/libfido2/Releases/libfido2-${pkgver}.tar.gz{,.sig})
+sha512sums=('240e2368e43846fddf5e98bbcc247468833565bcde4ec27976b88c814d787f1a477241a82b064818aa0eb0a98ff46a65d80b8243f4d0bbd763270e42492354e2'
+'SKIP')
+b2sums=('23a04f9230c45652aa1ac9fd8b3e809096ae31699c65ca0fda27b27b1b47263e375bb99e5b1ebc515b9edfb801bb2fba9c4f50d88e755efe3eaa23463ca01946'
+'SKIP')
+validpgpkeys=(
+  'EE90AE0D19774C8386628FAAB428949EF7914718' # pedro martelletto 

+  '1D7308B0055F5AEF36944A8F27A9C24D9588EA0F' # Aveen Ismail 

+  '7FBB6186957496D58C751AC20E777DD85755AA4A' # Konstantinos Georgantas 

+)
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cmake -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}"
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm 644 NEWS README.adoc -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:51:14
  Author: anthraxx
Revision: 396511

archrelease: copy trunk to staging-x86_64

Added:
  libcbor/repos/staging-x86_64/
  libcbor/repos/staging-x86_64/PKGBUILD
(from rev 396510, libcbor/trunk/PKGBUILD)

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

Copied: libcbor/repos/staging-x86_64/PKGBUILD (from rev 396510, 
libcbor/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-24 21:51:14 UTC (rev 396511)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Moritz Kiefer 
+
+pkgname=libcbor
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='C library for parsing and generating CBOR, the general-purpose 
schema-less binary data format'
+url='https://github.com/PJK/libcbor'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('cmake' 'cmocka')
+provides=('libcbor.so')
+source=(https://github.com/PJK/libcbor/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('694d2d3a78d80072f96e0afb73590ca1f3572e41d2117330ef4313ed06271743b048d3ba3259c6ffe9a802d5e441379d0e54787d1d42fed08dc81ac4f06c6dbc')
+b2sums=('e8548e7351984ebdcbeb5f13a7ca35412c3f3f05e2a44a5438d57b90bdcdc51f5265953163106f90ade911a96af665956ebeba7ed1c48cf207acf6d683af5606')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cmake . \
+-Bbuild \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}" \
+-DBUILD_SHARED_LIBS=ON \
+-DWITH_TESTS=1
+  make -C build VERBOSE=1
+  make -C build/test VERBOSE=1
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -C build/test test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:51:10
  Author: anthraxx
Revision: 396510

upgpkg: libcbor 0.8.0-1

Modified:
  libcbor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:50:43 UTC (rev 396509)
+++ PKGBUILD2020-09-24 21:51:10 UTC (rev 396510)
@@ -2,7 +2,7 @@
 # Contributor: Moritz Kiefer 
 
 pkgname=libcbor
-pkgver=0.7.0
+pkgver=0.8.0
 pkgrel=1
 pkgdesc='C library for parsing and generating CBOR, the general-purpose 
schema-less binary data format'
 url='https://github.com/PJK/libcbor'
@@ -12,25 +12,26 @@
 makedepends=('cmake' 'cmocka')
 provides=('libcbor.so')
 
source=(https://github.com/PJK/libcbor/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('4e2ed55ef17b8b77f82d780b1ee998d0342b67e6beabc24795117e5e222549640fe7fd261c8e78524d6489d03f7f5aa46b987709790a81f93e4d7409c32fecda')
-b2sums=('76f93d3199e703c4167aeed262da7ba78d1df82e081754609391572b89f216efba0c54511d4021049fc6c62ab01b08835f02a58bbf226d973174b37eff087761')
+sha512sums=('694d2d3a78d80072f96e0afb73590ca1f3572e41d2117330ef4313ed06271743b048d3ba3259c6ffe9a802d5e441379d0e54787d1d42fed08dc81ac4f06c6dbc')
+b2sums=('e8548e7351984ebdcbeb5f13a7ca35412c3f3f05e2a44a5438d57b90bdcdc51f5265953163106f90ade911a96af665956ebeba7ed1c48cf207acf6d683af5606')
 
 build() {
-  mkdir -p ${pkgname}-${pkgver}/build
-  cd ${pkgname}-${pkgver}/build
-  cmake .. \
+  cd ${pkgname}-${pkgver}
+  cmake . \
+-Bbuild \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}" \
+-DBUILD_SHARED_LIBS=ON \
 -DWITH_TESTS=1
-  make cbor cbor_shared VERBOSE=1
-  make -C test VERBOSE=1
+  make -C build VERBOSE=1
+  make -C build/test VERBOSE=1
 }
 
 check() {
-  cd ${pkgname}-${pkgver}/build
-  make -C test test
+  cd ${pkgname}-${pkgver}
+  make -C build/test test
 }
 
 package() {


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

2020-09-24 Thread Antonio Rojas via arch-commits
Date: Thursday, September 24, 2020 @ 21:50:30
  Author: arojas
Revision: 396508

Update to 1.2.5

Modified:
  freetds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:46:55 UTC (rev 396507)
+++ PKGBUILD2020-09-24 21:50:30 UTC (rev 396508)
@@ -1,7 +1,7 @@
 # Maintainer:
 
 pkgname=freetds
-pkgver=1.2.4
+pkgver=1.2.5
 pkgrel=1
 pkgdesc='Library for accessing Sybase and MS SQL Server databases'
 url='https://www.freetds.org'
@@ -12,7 +12,7 @@
 'etc/freetds/locales.conf'
 'etc/freetds/pool.conf')
 source=("ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2;)
-sha512sums=('511d21f590c699b1a1a0aa4f16cfefe5c28600f1dcceee86ef6a2b08b923bebff6b7b96ca4171ad286c6e96cb8836414845b63d0b664283b02c2e5f98edf5598')
+sha512sums=('7c1911c6af46f0fa7e1eb1cd66444e47d66fb8f3e6185d52e06c8d6543930188121c5a29c5a3b81b20654339b23c21539830adb1543f2a7bbb6e558284ab8f0b')
 
 build() {
   cd $pkgname-$pkgver


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

2020-09-24 Thread Antonio Rojas via arch-commits
Date: Thursday, September 24, 2020 @ 21:50:43
  Author: arojas
Revision: 396509

archrelease: copy trunk to extra-x86_64

Added:
  freetds/repos/extra-x86_64/PKGBUILD
(from rev 396508, freetds/trunk/PKGBUILD)
Deleted:
  freetds/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:50:30 UTC (rev 396508)
+++ PKGBUILD2020-09-24 21:50:43 UTC (rev 396509)
@@ -1,27 +0,0 @@
-# Maintainer:
-
-pkgname=freetds
-pkgver=1.2.4
-pkgrel=1
-pkgdesc='Library for accessing Sybase and MS SQL Server databases'
-url='https://www.freetds.org'
-arch=('x86_64')
-license=('LGPL')
-depends=('openssl' 'unixodbc')
-backup=('etc/freetds/freetds.conf'
-'etc/freetds/locales.conf'
-'etc/freetds/pool.conf')
-source=("ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2;)
-sha512sums=('511d21f590c699b1a1a0aa4f16cfefe5c28600f1dcceee86ef6a2b08b923bebff6b7b96ca4171ad286c6e96cb8836414845b63d0b664283b02c2e5f98edf5598')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc/freetds --enable-msdblib \
---with-unixodbc=/usr --with-openssl
-  make 
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: freetds/repos/extra-x86_64/PKGBUILD (from rev 396508, 
freetds/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:50:43 UTC (rev 396509)
@@ -0,0 +1,27 @@
+# Maintainer:
+
+pkgname=freetds
+pkgver=1.2.5
+pkgrel=1
+pkgdesc='Library for accessing Sybase and MS SQL Server databases'
+url='https://www.freetds.org'
+arch=('x86_64')
+license=('LGPL')
+depends=('openssl' 'unixodbc')
+backup=('etc/freetds/freetds.conf'
+'etc/freetds/locales.conf'
+'etc/freetds/pool.conf')
+source=("ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2;)
+sha512sums=('7c1911c6af46f0fa7e1eb1cd66444e47d66fb8f3e6185d52e06c8d6543930188121c5a29c5a3b81b20654339b23c21539830adb1543f2a7bbb6e558284ab8f0b')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc/freetds --enable-msdblib \
+--with-unixodbc=/usr --with-openssl
+  make 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:45:35
  Author: anthraxx
Revision: 396503

upgpkg: gst-plugins-bad 1.18.0-2: libmicrodns rebuild

Modified:
  gst-plugins-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:45:12 UTC (rev 396502)
+++ PKGBUILD2020-09-24 21:45:35 UTC (rev 396503)
@@ -4,7 +4,7 @@
 pkgbase=gst-plugins-bad
 pkgname=(gst-plugins-bad-libs gst-plugins-bad gst-plugin-opencv)
 pkgver=1.18.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Multimedia graph framework - bad plugins"
 url="https://gstreamer.freedesktop.org/;
 arch=(x86_64)


[arch-commits] Commit in vlc/trunk (lua53_compat.patch)

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:45:08
  Author: anthraxx
Revision: 396501

upgpkg: vlc 3.0.11.1-3: libmicrodns rebuild

Deleted:
  vlc/trunk/lua53_compat.patch

+
 lua53_compat.patch |   30 --
 1 file changed, 30 deletions(-)

Deleted: lua53_compat.patch
===
--- lua53_compat.patch  2020-09-24 21:43:42 UTC (rev 396500)
+++ lua53_compat.patch  2020-09-24 21:45:08 UTC (rev 396501)
@@ -1,30 +0,0 @@
-commit 41caaa08cde60c4fec4bf2e5f9610e2a1b9e6a23
-Author: Vinson Lee 
-Date:   Thu Feb 5 14:48:53 2015 -0800
-
-lua: Define LUA_COMPAT_APIINTCASTS for Lua >= 5.3.0 compatibility.
-
-In Lua 5.3.0, luaL_checkint was deprecated.
-
-This patch fixes this build error with Lua 5.3.0.
-
-lua/demux.c: In function ‘vlclua_demux_peek’:
-lua/demux.c:55:5: error: implicit declaration of function ‘luaL_checkint’ 
[-Werror=implicit-function-declaration]
- int n = luaL_checkint( L, 1 );
- ^
-
-Signed-off-by: Vinson Lee 
-Signed-off-by: Jean-Baptiste Kempf 
-
-diff --git a/modules/lua/vlc.h b/modules/lua/vlc.h
-index efd94f1..85c7fc1 100644
 a/modules/lua/vlc.h
-+++ b/modules/lua/vlc.h
-@@ -38,6 +38,7 @@
- #include 
- #include 
- 
-+#define LUA_COMPAT_APIINTCASTS
- #define LUA_COMPAT_MODULE
- #include /* Low level lua C API */
- #include /* Higher level C API */


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:45:12
  Author: anthraxx
Revision: 396502

archrelease: copy trunk to staging-x86_64

Added:
  vlc/repos/staging-x86_64/
  vlc/repos/staging-x86_64/PKGBUILD
(from rev 396501, vlc/trunk/PKGBUILD)
  vlc/repos/staging-x86_64/qt_5_15.patch
(from rev 396501, vlc/trunk/qt_5_15.patch)
  vlc/repos/staging-x86_64/update-vlc-plugin-cache.hook
(from rev 396501, vlc/trunk/update-vlc-plugin-cache.hook)

--+
 PKGBUILD |  245 +
 qt_5_15.patch|   33 +
 update-vlc-plugin-cache.hook |   11 +
 3 files changed, 289 insertions(+)

Copied: vlc/repos/staging-x86_64/PKGBUILD (from rev 396501, vlc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-24 21:45:12 UTC (rev 396502)
@@ -0,0 +1,245 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: Sarah Hay 
+# Contributor: Martin Sandsmark 
+
+pkgname=vlc
+_vlcver=3.0.11.1
+# optional fixup version including hyphen
+_vlcfixupver=
+pkgver=${_vlcver}${_vlcfixupver//-/.r}
+pkgrel=3
+pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
+url='https://www.videolan.org/vlc/'
+arch=('x86_64')
+license=('LGPL2.1' 'GPL2')
+depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'libproxy' 'lua52' 'libidn'
+ 'libmatroska' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp' 'libmad'
+ 'libmpeg2' 'xcb-util-keysyms' 'libtar' 'libxinerama' 'libsecret'
+ 'libarchive' 'qt5-base' 'qt5-x11extras' 'qt5-svg' 'freetype2'
+ 'fribidi' 'harfbuzz' 'fontconfig' 'libxml2' 'gnutls' 'libplacebo'
+ 'wayland-protocols' 'aribb24')
+makedepends=('gst-plugins-base-libs' 'live-media' 'libnotify' 'libbluray'
+ 'flac' 'libdc1394' 'libavc1394' 'libcaca' 'gtk3'
+ 'librsvg' 'libgme' 'xosd' 'twolame' 'aalib' 'avahi' 'systemd-libs'
+ 'libmtp' 'libupnp' 'libmicrodns' 'libdvdcss' 'smbclient'
+ 'vcdimager' 'libssh2' 'mesa' 'protobuf' 'libnfs' 'mpg123'
+ 'libdvdread' 'libdvdnav' 'libogg' 'libshout' 'libmodplug' 'libvpx'
+ 'libvorbis' 'speex' 'opus' 'libtheora' 'libpng' 'libjpeg-turbo'
+ 'libx265.so' 'libx264.so' 'zvbi' 'libass' 'libkate' 'libtiger'
+ 'sdl_image' 'libpulse' 'alsa-lib' 'jack' 'libsamplerate' 'libsoxr'
+ 'lirc' 'libgoom2' 'projectm' 'chromaprint' 'aom' 'srt' 'dav1d')
+optdepends=('avahi: service discovery using bonjour protocol'
+'aom: AOM AV1 codec'
+'gst-plugins-base-libs: for libgst plugins'
+'dav1d: dav1d AV1 decoder'
+'libdvdcss: decoding encrypted DVDs'
+'libavc1394: devices using the 1394ta AV/C'
+'libdc1394: IEEE 1394 access plugin'
+'kwallet: kwallet keystore'
+'libva-vdpau-driver: vdpau backend nvidia'
+'libva-intel-driver: video backend intel'
+'libbluray: Blu-Ray video input'
+'flac: Free Lossless Audio Codec plugin'
+'twolame: TwoLAME mpeg2 encoder plugin'
+'libgme: Game Music Emu plugin'
+'vcdimager: navigate VCD with libvcdinfo'
+'libmtp: MTP devices discovery'
+'systemd-libs: udev services discovery'
+'smbclient: SMB access plugin'
+'libcdio: audio CD playback'
+'gnu-free-fonts: subtitle font '
+'ttf-dejavu: subtitle font'
+'libssh2: sftp access'
+'libnfs: NFS access'
+'mpg123: mpg123 codec'
+'protobuf: chromecast streaming'
+'libmicrodns: mDNS services discovery (chromecast etc)'
+'lua52-socket: http interface'
+'live-media: RTSP input'
+'libdvdread: DVD input module'
+'libdvdnav: DVD with navigation input module'
+'libogg: Ogg and OggSpots codec'
+'libshout: shoutcast/icecast output plugin'
+'libmodplug: MOD output plugin'
+'libvpx: VP8 and VP9 codec'
+'libvorbis: Vorbis decoder/encoder'
+'speex: Speex codec'
+'opus: opus codec'
+'libtheora: theora codec'
+'libpng: PNG support'
+'libjpeg-turbo: JPEG support'
+'librsvg: SVG plugin'
+'x264: H264 encoding'
+'x265: HEVC/H.265 encoder'
+'zvbi: VBI/Teletext/webcam/v4l2 capture/decoding'
+'libass: Subtitle support'
+'libkate: Kate codec'
+'libtiger: Tiger rendering for Kate streams'
+'sdl_image: SDL image support'
+'srt: SRT input/output plugin'
+'aalib: ASCII art video output'
+'libcaca: colored ASCII art video output'
+'libpulse: PulseAudio audio output'
+'alsa-lib: ALSA audio 

[arch-commits] Commit in gst-plugins-bad/repos (3 files)

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:45:39
  Author: anthraxx
Revision: 396504

archrelease: copy trunk to staging-x86_64

Added:
  gst-plugins-bad/repos/staging-x86_64/
  
gst-plugins-bad/repos/staging-x86_64/0001-tests-svthevcenc-Fix-test_encode_simple.patch
(from rev 396503, 
gst-plugins-bad/trunk/0001-tests-svthevcenc-Fix-test_encode_simple.patch)
  gst-plugins-bad/repos/staging-x86_64/PKGBUILD
(from rev 396503, gst-plugins-bad/trunk/PKGBUILD)

+
 0001-tests-svthevcenc-Fix-test_encode_simple.patch |   24 +++
 PKGBUILD   |  129 +++
 2 files changed, 153 insertions(+)

Copied: 
gst-plugins-bad/repos/staging-x86_64/0001-tests-svthevcenc-Fix-test_encode_simple.patch
 (from rev 396503, 
gst-plugins-bad/trunk/0001-tests-svthevcenc-Fix-test_encode_simple.patch)
===
--- staging-x86_64/0001-tests-svthevcenc-Fix-test_encode_simple.patch   
(rev 0)
+++ staging-x86_64/0001-tests-svthevcenc-Fix-test_encode_simple.patch   
2020-09-24 21:45:39 UTC (rev 396504)
@@ -0,0 +1,24 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 12 Sep 2020 02:23:37 +0200
+Subject: [PATCH] tests: svthevcenc: Fix test_encode_simple
+
+Pick the same I420 format the other test use. Without this, the source
+picks AYUV64, which fails.
+---
+ tests/check/elements/svthevcenc.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/check/elements/svthevcenc.c 
b/tests/check/elements/svthevcenc.c
+index d1234fc27..1b938e10c 100644
+--- a/tests/check/elements/svthevcenc.c
 b/tests/check/elements/svthevcenc.c
+@@ -29,7 +29,7 @@ GST_START_TEST (test_encode_simple)
+   h = gst_harness_new_parse ("svthevcenc speed=9 bitrate=1000 ! h265parse");
+ 
+   gst_harness_add_src_parse (h, "videotestsrc is-live=true ! "
+-  "capsfilter caps=\"video/x-raw,width=320,height=240,framerate=25/1\"",
++  "capsfilter 
caps=\"video/x-raw,format=I420,width=320,height=240,framerate=25/1\"",
+   TRUE);
+ 
+   /* Push 25 buffers into the encoder */

Copied: gst-plugins-bad/repos/staging-x86_64/PKGBUILD (from rev 396503, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-24 21:45:39 UTC (rev 396504)
@@ -0,0 +1,129 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=gst-plugins-bad
+pkgname=(gst-plugins-bad-libs gst-plugins-bad gst-plugin-opencv)
+pkgver=1.18.0
+pkgrel=2
+pkgdesc="Multimedia graph framework - bad plugins"
+url="https://gstreamer.freedesktop.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(gst-plugins-base-libs orc libdrm libx11 libgudev libusb libvdpau
+ libxkbcommon-x11)
+makedepends=(mjpegtools curl chromaprint libmms faad2 libdca libdvdnav
+ libmodplug libgme nettle libkate wayland libofa openjpeg2 libwebp
+ libsrtp sbc rtmpdump libexif libdvdread wildmidi ladspa openal
+ vulkan-icd-loader libfdk-aac faac soundtouch spandsp neon
+ webrtc-audio-processing libdc1394 libmpcdec zvbi openexr libbs2b
+ libnice lcms2 bluez-libs glu srt aom x265 liblrdf libde265 zbar
+ librsvg fluidsynth lilv lv2 gst-plugins-good python git
+ gobject-introspection vulkan-headers vulkan-validation-layers
+ wayland-protocols gtk3 meson shaderc libavtp svt-hevc libmicrodns
+ zxing-cpp opencv libva)
+checkdepends=(xorg-server-xvfb)
+options=(!emptydirs)
+_commit=7cb583bb0427819a6b59b783e7df67961df2155f  # tags/1.18.0^0
+source=("git+https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad.git#commit=$_commit;
+0001-tests-svthevcenc-Fix-test_encode_simple.patch)
+sha256sums=('SKIP'
+'04b276b7dc5ae63d2a5bfcef446597114e9d28c743e325c60038f8fc5375f445')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+  git apply -3 ../0001-tests-svthevcenc-Fix-test_encode_simple.patch
+}
+
+build() {
+  arch-meson $pkgbase build \
+-D directfb=disabled \
+-D doc=disabled \
+-D flite=disabled \
+-D gsm=disabled \
+-D iqa=disabled \
+-D magicleap=disabled \
+-D msdk=disabled \
+-D nvdec=disabled \
+-D nvenc=disabled \
+-D openh264=disabled \
+-D openmpt=disabled \
+-D openni2=disabled \
+-D opensles=disabled \
+-D tinyalsa=disabled \
+-D voaacenc=disabled \
+-D voamrwbenc=disabled \
+-D wasapi2=disabled \
+-D wasapi=disabled \
+-D wpe=disabled \
+-D gobject-cast-checks=disabled \
+-D package-name="GStreamer Bad Plugins (Arch Linux)" \
+-D package-origin="https://www.archlinux.org/;
+  meson compile -C build
+}
+
+check() (
+  

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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:43:42
  Author: anthraxx
Revision: 396500

upgpkg: vlc 3.0.11.1-3: libmicrodns rebuild

Modified:
  vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:37:39 UTC (rev 396499)
+++ PKGBUILD2020-09-24 21:43:42 UTC (rev 396500)
@@ -8,7 +8,7 @@
 # optional fixup version including hyphen
 _vlcfixupver=
 pkgver=${_vlcver}${_vlcfixupver//-/.r}
-pkgrel=2
+pkgrel=3
 pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
 url='https://www.videolan.org/vlc/'
 arch=('x86_64')


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:41:28
  Author: felixonmars
Revision: 711933

upgpkg: python-celery 5.0.0-1

Modified:
  python-celery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:39:38 UTC (rev 711932)
+++ PKGBUILD2020-09-24 21:41:28 UTC (rev 711933)
@@ -6,13 +6,14 @@
 # Contributor: apkawa 
 
 pkgname=python-celery
-pkgver=4.4.7
+pkgver=5.0.0
 pkgrel=1
 pkgdesc='Distributed Asynchronous Task Queue'
 arch=('any')
 url='http://celeryproject.org/'
 license=('BSD')
-depends=('python-kombu' 'python-billiard' 'python-pytz' 'python-vine')
+depends=('python-billiard' 'python-click-didyoumean' 'python-click-repl' 
'python-kombu'
+ 'python-pytz' 'python-vine')
 optdepends=('python-cryptography: for celery.security'
 'python-pymongo: for celery.backends.mongodb'
 'python-msgpack: for using the msgpack serializer'
@@ -23,7 +24,7 @@
 'python-yaml: for using the yaml serializer'
 'python-pyzmq: for using ZeroMQ transport')
 makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-case' 'python-cryptography'
+checkdepends=('python-pytest-celery' 'python-pytest-timeout' 'python-case' 
'python-cryptography'
   'python-gevent' 'python-pymongo' 'python-msgpack' 'python-pyro' 
'python-redis'
   'python-sqlalchemy' 'python-boto3' 'python-yaml' 'python-pyzmq' 
'python-eventlet'
   'python-moto')
@@ -30,7 +31,7 @@
 source=("https://pypi.io/packages/source/c/celery/celery-$pkgver.tar.gz;
 celery@.service celery.tmpfiles.d)
 options=('!emptydirs')
-sha512sums=('e190c12c3afea19b96c839040da337a775d59d385e6db5e0b5e5db50d12a14e00d59429b9ac9405fa736202c1559f0275808a3951d31af8d438953ef6c3981b1'
+sha512sums=('8fa23c227eb7cd84d7980295e166d004fda2a961e0e339b1f0708c2f28ae49a090dfd020c3ac2a8022d9f976e906ed89b05bf1a4f9e4286f375379196fcf3108'
 
'3c6c9dbdacca2de12d49c03526b34797fd867c14d04115af0d1fda64d2848a5d3f64ceb6d284be319a81d932dc86e69c157b6f5f859f2fa213fc2f43a6052c65'
 
'67279b75c3b44d065811c9c90aee006296164000912d5bb97c74956b26ee4ad4f0847e846052a896d379848b869c849300367e676d3f689cf29e3a0c7ae5310b')
 
@@ -37,9 +38,6 @@
 prepare() {
   cd celery-$pkgver
   sed -i -e 's/==/>=/' -e '/pre-commit/d' requirements/test.txt
-
-  sed -i -e '/from pytest import PytestUnknownMarkWarning/a \from 
_pytest.outcomes import Failed' \
- -e 's/ValueError/Failed/' t/unit/contrib/test_pytest.py
 }
 
 build() {


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:41:48
  Author: felixonmars
Revision: 711934

archrelease: copy trunk to community-testing-any

Added:
  python-celery/repos/community-testing-any/
  python-celery/repos/community-testing-any/PKGBUILD
(from rev 711933, python-celery/trunk/PKGBUILD)
  python-celery/repos/community-testing-any/celery.tmpfiles.d
(from rev 711933, python-celery/trunk/celery.tmpfiles.d)
  python-celery/repos/community-testing-any/celery@.service
(from rev 711933, python-celery/trunk/celery@.service)

---+
 PKGBUILD  |   60 
 celery.tmpfiles.d |2 +
 celery@.service   |   15 +
 3 files changed, 77 insertions(+)

Copied: python-celery/repos/community-testing-any/PKGBUILD (from rev 711933, 
python-celery/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-09-24 21:41:48 UTC (rev 711934)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+# Contributor: Marcin Kolenda 
+# Contributor: Valentin Haloiu 
+# Contributor: Lukas Linhart 
+# Contributor: Marco Elver 
+# Contributor: apkawa 
+
+pkgname=python-celery
+pkgver=5.0.0
+pkgrel=1
+pkgdesc='Distributed Asynchronous Task Queue'
+arch=('any')
+url='http://celeryproject.org/'
+license=('BSD')
+depends=('python-billiard' 'python-click-didyoumean' 'python-click-repl' 
'python-kombu'
+ 'python-pytz' 'python-vine')
+optdepends=('python-cryptography: for celery.security'
+'python-pymongo: for celery.backends.mongodb'
+'python-msgpack: for using the msgpack serializer'
+'python-pyro: for using Pyro4 message transport'
+'python-redis: for celery.backends.redis'
+'python-sqlalchemy: for celery.backends.database'
+'python-boto3: for SQS transport'
+'python-yaml: for using the yaml serializer'
+'python-pyzmq: for using ZeroMQ transport')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-celery' 'python-pytest-timeout' 'python-case' 
'python-cryptography'
+  'python-gevent' 'python-pymongo' 'python-msgpack' 'python-pyro' 
'python-redis'
+  'python-sqlalchemy' 'python-boto3' 'python-yaml' 'python-pyzmq' 
'python-eventlet'
+  'python-moto')
+source=("https://pypi.io/packages/source/c/celery/celery-$pkgver.tar.gz;
+celery@.service celery.tmpfiles.d)
+options=('!emptydirs')
+sha512sums=('8fa23c227eb7cd84d7980295e166d004fda2a961e0e339b1f0708c2f28ae49a090dfd020c3ac2a8022d9f976e906ed89b05bf1a4f9e4286f375379196fcf3108'
+
'3c6c9dbdacca2de12d49c03526b34797fd867c14d04115af0d1fda64d2848a5d3f64ceb6d284be319a81d932dc86e69c157b6f5f859f2fa213fc2f43a6052c65'
+
'67279b75c3b44d065811c9c90aee006296164000912d5bb97c74956b26ee4ad4f0847e846052a896d379848b869c849300367e676d3f689cf29e3a0c7ae5310b')
+
+prepare() {
+  cd celery-$pkgver
+  sed -i -e 's/==/>=/' -e '/pre-commit/d' requirements/test.txt
+}
+
+build() {
+  cd celery-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd celery-$pkgver
+  # t/unit/apps/test_multi.py & t/unit/bin/test_multi.py: needs write 
permission to /var/run/celery
+  python -m pytest --deselect t/unit/apps/test_multi.py --deselect 
t/unit/bin/test_multi.py
+}
+
+package() {
+  cd celery-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 "$srcdir"/celery@.service 
"$pkgdir"/usr/lib/systemd/system/celery@.service
+  install -Dm644 "$srcdir"/celery.tmpfiles.d 
"$pkgdir"/usr/lib/tmpfiles.d/celery.conf
+}

Copied: python-celery/repos/community-testing-any/celery.tmpfiles.d (from rev 
711933, python-celery/trunk/celery.tmpfiles.d)
===
--- community-testing-any/celery.tmpfiles.d (rev 0)
+++ community-testing-any/celery.tmpfiles.d 2020-09-24 21:41:48 UTC (rev 
711934)
@@ -0,0 +1,2 @@
+d /run/celery 0755 - - - -
+d /var/log/celery 0755 - - - -

Copied: python-celery/repos/community-testing-any/celery@.service (from rev 
711933, python-celery/trunk/celery@.service)
===
--- community-testing-any/celery@.service   (rev 0)
+++ community-testing-any/celery@.service   2020-09-24 21:41:48 UTC (rev 
711934)
@@ -0,0 +1,15 @@
+[Unit]
+Description=Celery Nodes Daemon
+After=network.target
+
+[Service]
+Type=oneshot
+EnvironmentFile=/etc/celery/%I.conf
+ExecStart=/usr/bin/celery multi start $CELERYD_NODES 
--pidfile=/run/celery/%n.pid --logfile=/var/log/celery/%n.log --loglevel="INFO" 
$CELERYD_OPTS
+ExecStop=/usr/bin/celery multi stopwait $CELERYD_NODES 
--pidfile=/run/celery/%n.pid
+ExecReload=/usr/bin/celery multi restart $CELERYD_NODES 

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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:39:38
  Author: felixonmars
Revision: 711932

archrelease: copy trunk to community-any

Added:
  python-pytest-celery/repos/community-any/
  python-pytest-celery/repos/community-any/PKGBUILD
(from rev 711931, python-pytest-celery/trunk/PKGBUILD)

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

Copied: python-pytest-celery/repos/community-any/PKGBUILD (from rev 711931, 
python-pytest-celery/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-09-24 21:39:38 UTC (rev 711932)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-celery
+pkgver=0.0.0a1
+pkgrel=1
+pkgdesc='A shim pytest plugin to enable celery.contrib.pytest'
+arch=('any')
+license=('BSD')
+url='https://github.com/celery/pytest-celery'
+depends=('python-celery')
+makedepends=('python-dephell')
+source=("https://pypi.io/packages/source/p/pytest-celery/pytest-celery-$pkgver.tar.gz;)
+sha512sums=('ea8ef26aaa5dd5c04608cb01bedb4946bb6712d08203e5f9b1b9b2b1a9e49e7a550466d7a9dd896fb5d813960cee35eed139099952589cdf21e03dadd7e2a20f')
+
+prepare() {
+  cd pytest-celery-$pkgver
+
+  # poetry-generated setup.py is badly broken in several ways, including
+  # distribution of tests in the built package as well as using distutils for
+  # bad metadata. See https://github.com/sdispater/poetry/issues/866
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd pytest-celery-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd pytest-celery-$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 (4 files)

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:39:25
  Author: felixonmars
Revision: 711931

addpkg: python-pytest-celery 0.0.0a1-1

Added:
  python-pytest-celery/
  python-pytest-celery/repos/
  python-pytest-celery/trunk/
  python-pytest-celery/trunk/PKGBUILD

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

Added: python-pytest-celery/trunk/PKGBUILD
===
--- python-pytest-celery/trunk/PKGBUILD (rev 0)
+++ python-pytest-celery/trunk/PKGBUILD 2020-09-24 21:39:25 UTC (rev 711931)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-celery
+pkgver=0.0.0a1
+pkgrel=1
+pkgdesc='A shim pytest plugin to enable celery.contrib.pytest'
+arch=('any')
+license=('BSD')
+url='https://github.com/celery/pytest-celery'
+depends=('python-celery')
+makedepends=('python-dephell')
+source=("https://pypi.io/packages/source/p/pytest-celery/pytest-celery-$pkgver.tar.gz;)
+sha512sums=('ea8ef26aaa5dd5c04608cb01bedb4946bb6712d08203e5f9b1b9b2b1a9e49e7a550466d7a9dd896fb5d813960cee35eed139099952589cdf21e03dadd7e2a20f')
+
+prepare() {
+  cd pytest-celery-$pkgver
+
+  # poetry-generated setup.py is badly broken in several ways, including
+  # distribution of tests in the built package as well as using distutils for
+  # bad metadata. See https://github.com/sdispater/poetry/issues/866
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd pytest-celery-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd pytest-celery-$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 libmicrodns/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:37:39
  Author: anthraxx
Revision: 396499

archrelease: copy trunk to staging-x86_64

Added:
  libmicrodns/repos/staging-x86_64/
  libmicrodns/repos/staging-x86_64/PKGBUILD
(from rev 396498, libmicrodns/trunk/PKGBUILD)

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

Copied: libmicrodns/repos/staging-x86_64/PKGBUILD (from rev 396498, 
libmicrodns/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-09-24 21:37:39 UTC (rev 396499)
@@ -0,0 +1,29 @@
+# Maintainer: Levente Polyak 
+# Contributor: Niklas 
+
+pkgname=libmicrodns
+pkgver=0.2.0
+pkgrel=1
+pkgdesc='Minimal mDNS resolver library'
+url='https://github.com/videolabs/libmicrodns'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=('meson')
+provides=('libmicrodns.so')
+source=(https://github.com/videolabs/libmicrodns/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('6389ad9edaf1af7c831e8c05e4800964b13cf0eed2063fa3675e7b87c49428ae7b68ac4ed1e742ed5d46ea3ded190e3de076e73ebf167422505257d7b1a03e25')
+b2sums=('d58cd4e91334187b4ffe54063586d24f02d705f183e41c5edd3220c7cae137294fa3728daaf66e3d43c9e4ee031e6b87e7b4c5e1852a36486cb5495d6680f70a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  arch-meson build
+  ninja -C build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:35:58
  Author: anthraxx
Revision: 396498

archrelease: copy trunk to extra-x86_64

Added:
  libmicrodns/repos/extra-x86_64/PKGBUILD
(from rev 396497, libmicrodns/trunk/PKGBUILD)
Deleted:
  libmicrodns/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:35:53 UTC (rev 396497)
+++ PKGBUILD2020-09-24 21:35:58 UTC (rev 396498)
@@ -1,29 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Niklas 
-
-pkgname=libmicrodns
-pkgver=0.1.2
-pkgrel=1
-pkgdesc='Minimal mDNS resolver library'
-url='https://github.com/videolabs/libmicrodns'
-arch=('x86_64')
-license=('LGPL2.1')
-depends=('glibc')
-makedepends=('meson')
-provides=('libmicrodns.so')
-source=(https://github.com/videolabs/libmicrodns/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a2a40f785cfcab280c1d5e187eef5f63e642dccdf1ada2e9f7ed2b85aef26e5c1b1cefc7df6fa4f83b46e5da5eaf05e0f0b02b677ca4e5e73b7fd70d74878552')
-b2sums=('91d93101f7fe9a407d5dba8b4d67c83258c5ec04ee09458e60f3904ab0945473c71e98446763386396550e99b412ff2bacf8482436abd3c6edc995eddd4d73ba')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  arch-meson build
-  ninja -C build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  DESTDIR="${pkgdir}" meson install -C build
-}
-
-# vim: ts=2 sw=2 et:

Copied: libmicrodns/repos/extra-x86_64/PKGBUILD (from rev 396497, 
libmicrodns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:35:58 UTC (rev 396498)
@@ -0,0 +1,29 @@
+# Maintainer: Levente Polyak 
+# Contributor: Niklas 
+
+pkgname=libmicrodns
+pkgver=0.2.0
+pkgrel=1
+pkgdesc='Minimal mDNS resolver library'
+url='https://github.com/videolabs/libmicrodns'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=('meson')
+provides=('libmicrodns.so')
+source=(https://github.com/videolabs/libmicrodns/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('6389ad9edaf1af7c831e8c05e4800964b13cf0eed2063fa3675e7b87c49428ae7b68ac4ed1e742ed5d46ea3ded190e3de076e73ebf167422505257d7b1a03e25')
+b2sums=('d58cd4e91334187b4ffe54063586d24f02d705f183e41c5edd3220c7cae137294fa3728daaf66e3d43c9e4ee031e6b87e7b4c5e1852a36486cb5495d6680f70a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  arch-meson build
+  ninja -C build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:35:53
  Author: anthraxx
Revision: 396497

upgpkg: libmicrodns 0.2.0-1

Modified:
  libmicrodns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:32:36 UTC (rev 396496)
+++ PKGBUILD2020-09-24 21:35:53 UTC (rev 396497)
@@ -2,7 +2,7 @@
 # Contributor: Niklas 
 
 pkgname=libmicrodns
-pkgver=0.1.2
+pkgver=0.2.0
 pkgrel=1
 pkgdesc='Minimal mDNS resolver library'
 url='https://github.com/videolabs/libmicrodns'
@@ -12,8 +12,8 @@
 makedepends=('meson')
 provides=('libmicrodns.so')
 
source=(https://github.com/videolabs/libmicrodns/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a2a40f785cfcab280c1d5e187eef5f63e642dccdf1ada2e9f7ed2b85aef26e5c1b1cefc7df6fa4f83b46e5da5eaf05e0f0b02b677ca4e5e73b7fd70d74878552')
-b2sums=('91d93101f7fe9a407d5dba8b4d67c83258c5ec04ee09458e60f3904ab0945473c71e98446763386396550e99b412ff2bacf8482436abd3c6edc995eddd4d73ba')
+sha512sums=('6389ad9edaf1af7c831e8c05e4800964b13cf0eed2063fa3675e7b87c49428ae7b68ac4ed1e742ed5d46ea3ded190e3de076e73ebf167422505257d7b1a03e25')
+b2sums=('d58cd4e91334187b4ffe54063586d24f02d705f183e41c5edd3220c7cae137294fa3728daaf66e3d43c9e4ee031e6b87e7b4c5e1852a36486cb5495d6680f70a')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:32:57
  Author: anthraxx
Revision: 711929

upgpkg: python-alembic 1.4.3-1

Modified:
  python-alembic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:30:52 UTC (rev 711928)
+++ PKGBUILD2020-09-24 21:32:57 UTC (rev 711929)
@@ -3,7 +3,7 @@
 # Contributor: Oliver Mangold 
 
 pkgname=python-alembic
-pkgver=1.4.2
+pkgver=1.4.3
 pkgrel=1
 pkgdesc='Lightweight database migration tool for usage with SQLAlchemy'
 url='https://bitbucket.org/zzzeek/alembic'
@@ -13,9 +13,9 @@
 makedepends=('python-setuptools' 'python-mako' 'python-sqlalchemy' 
'python-editor' 'python-dateutil')
 checkdepends=('python-pytest' 'python-mock')
 
source=(https://pypi.org/packages/source/a/alembic/alembic-${pkgver}.tar.gz{,.asc})
-sha512sums=('82bdfe442c19033aa2b802ec49edd13ed265c00a2b5a048490a83ffa8e53587c56a90b64d554e746a9189923419c528482cb7a7c950c210e0de47b32fa7c270e'
+sha512sums=('925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463'
 'SKIP')
-b2sums=('5f4001a756aacbb4db509669bc0d4d7c59c38e2983c433283243efa97bf28a22e38bcfd28a4bc72573e8ab78d6590e78f4e12a5b9dd08b60cf5a84520b955056'
+b2sums=('d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1') # Michael Bayer 

 


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:33:01
  Author: anthraxx
Revision: 711930

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:32:57 UTC (rev 711929)
+++ PKGBUILD2020-09-24 21:33:01 UTC (rev 711930)
@@ -1,66 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: googol 
-# Contributor: Oliver Mangold 
-
-pkgbase=python-alembic
-pkgname=('python-alembic' 'python2-alembic')
-pkgver=1.4.2
-pkgrel=1
-pkgdesc='Lightweight database migration tool for usage with SQLAlchemy'
-url='https://bitbucket.org/zzzeek/alembic'
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python-mako' 'python-sqlalchemy' 
'python-editor' 'python-dateutil'
- 'python2-setuptools' 'python2-mako' 'python2-sqlalchemy' 
'python2-editor' 'python2-dateutil')
-checkdepends=('python-pytest' 'python-mock' 'python2-pytest' 'python2-mock')
-source=(https://pypi.org/packages/source/a/alembic/alembic-${pkgver}.tar.gz{,.asc})
-sha512sums=('82bdfe442c19033aa2b802ec49edd13ed265c00a2b5a048490a83ffa8e53587c56a90b64d554e746a9189923419c528482cb7a7c950c210e0de47b32fa7c270e'
-'SKIP')
-b2sums=('5f4001a756aacbb4db509669bc0d4d7c59c38e2983c433283243efa97bf28a22e38bcfd28a4bc72573e8ab78d6590e78f4e12a5b9dd08b60cf5a84520b955056'
-'SKIP')
-validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1') # Michael Bayer 

-
-prepare() {
-  cp -a alembic-${pkgver}{,-py2}
-}
-
-build() {
-  echo 'Building python...'
-  (cd alembic-${pkgver}
-python setup.py build
-  )
-  echo 'Building python2...'
-  (cd alembic-${pkgver}-py2
-python2 setup.py build
-  )
-}
-
-check() {
-  echo 'Checking python...'
-  (cd alembic-${pkgver}
-py.test
-  )
-  echo 'Checking python2...'
-  (cd alembic-${pkgver}-py2
-py.test2
-  )
-}
-
-package_python-alembic() {
-  depends=('python' 'python-mako' 'python-sqlalchemy' 'python-editor' 
'python-dateutil')
-  cd alembic-${pkgver}
-  python setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst CHANGES -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-package_python2-alembic() {
-  depends=('python2' 'python2-mako' 'python2-sqlalchemy' 'python2-editor' 
'python2-dateutil')
-  cd alembic-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst CHANGES -t "${pkgdir}/usr/share/doc/${pkgname}"
-  mv "${pkgdir}/usr/bin/alembic"{,2}
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-alembic/repos/community-any/PKGBUILD (from rev 711929, 
python-alembic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:33:01 UTC (rev 711930)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: googol 
+# Contributor: Oliver Mangold 
+
+pkgname=python-alembic
+pkgver=1.4.3
+pkgrel=1
+pkgdesc='Lightweight database migration tool for usage with SQLAlchemy'
+url='https://bitbucket.org/zzzeek/alembic'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-mako' 'python-sqlalchemy' 'python-editor' 
'python-dateutil')
+makedepends=('python-setuptools' 'python-mako' 'python-sqlalchemy' 
'python-editor' 'python-dateutil')
+checkdepends=('python-pytest' 'python-mock')
+source=(https://pypi.org/packages/source/a/alembic/alembic-${pkgver}.tar.gz{,.asc})
+sha512sums=('925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463'
+'SKIP')
+b2sums=('d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d'
+'SKIP')
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1') # Michael Bayer 

+
+build() {
+  echo 'Building python...'
+  (cd alembic-${pkgver}
+python setup.py build
+  )
+}
+
+check() {
+  echo 'Checking python...'
+  (cd alembic-${pkgver}
+py.test
+  )
+}
+
+package() {
+  cd alembic-${pkgver}
+  python setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst CHANGES -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:32:36
  Author: anthraxx
Revision: 396496

archrelease: copy trunk to extra-x86_64

Added:
  nasm/repos/extra-x86_64/PKGBUILD
(from rev 396495, nasm/trunk/PKGBUILD)
Deleted:
  nasm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:32:32 UTC (rev 396495)
+++ PKGBUILD2020-09-24 21:32:36 UTC (rev 396496)
@@ -1,31 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Eric Bélanger 
-
-pkgname=nasm
-pkgver=2.15.04
-pkgrel=1
-pkgdesc='80x86 assembler designed for portability and modularity'
-url='https://www.nasm.us'
-arch=('x86_64')
-license=('BSD')
-depends=('glibc')
-makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts'
- 'ttf-liberation' 'ghostscript' 'xmlto' 'asciidoc')
-source=(https://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('96d3131a422282f78e5326314570826d312bbab3c4ce3fdbad36578daf5963cc9a41672b4596d37ecdc002877b720bff44e2ce5b83f34b7a797f0b9ca5ca7c3c')
-b2sums=('57d619e1374cb76b1112b40d9a5bb97eb38a0d233d4ebdd9dab50ae38bc9bf7c2d254df0f48dace7ad418e38e50b621626e5374d06ce71dad23fdcb8934adef7')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make -C doc
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install install_rdf
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/nasm
-}
-
-# vim: ts=2 sw=2 et:

Copied: nasm/repos/extra-x86_64/PKGBUILD (from rev 396495, nasm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:32:36 UTC (rev 396496)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
+
+pkgname=nasm
+pkgver=2.15.05
+pkgrel=1
+pkgdesc='80x86 assembler designed for portability and modularity'
+url='https://www.nasm.us'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc')
+makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts'
+ 'ttf-liberation' 'ghostscript' 'xmlto' 'asciidoc')
+source=(https://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
+sha512sums=('512f90a2584f1c5811429274b97c64a2cedf37b9fdeffb1bcd0ea64afd9ecc19a2d7877ca8f1e05393aa324153fc9f39ea51dacbf8d25a7d5a2d7728c925dba7')
+b2sums=('a41434965c2125577b762d907a0a3c251c75d9f9beac230fba4099182c7f7beb08c6d2c05c2432b0dc8ba829f24077f44c3096faea9bd0a533250e6dbbfaef35')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+  make -C doc
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install install_rdf
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/nasm
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:32:32
  Author: anthraxx
Revision: 396495

upgpkg: nasm 2.15.05-1

Modified:
  nasm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:26:33 UTC (rev 396494)
+++ PKGBUILD2020-09-24 21:32:32 UTC (rev 396495)
@@ -2,7 +2,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=nasm
-pkgver=2.15.04
+pkgver=2.15.05
 pkgrel=1
 pkgdesc='80x86 assembler designed for portability and modularity'
 url='https://www.nasm.us'
@@ -12,8 +12,8 @@
 makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts'
  'ttf-liberation' 'ghostscript' 'xmlto' 'asciidoc')
 
source=(https://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('96d3131a422282f78e5326314570826d312bbab3c4ce3fdbad36578daf5963cc9a41672b4596d37ecdc002877b720bff44e2ce5b83f34b7a797f0b9ca5ca7c3c')
-b2sums=('57d619e1374cb76b1112b40d9a5bb97eb38a0d233d4ebdd9dab50ae38bc9bf7c2d254df0f48dace7ad418e38e50b621626e5374d06ce71dad23fdcb8934adef7')
+sha512sums=('512f90a2584f1c5811429274b97c64a2cedf37b9fdeffb1bcd0ea64afd9ecc19a2d7877ca8f1e05393aa324153fc9f39ea51dacbf8d25a7d5a2d7728c925dba7')
+b2sums=('a41434965c2125577b762d907a0a3c251c75d9f9beac230fba4099182c7f7beb08c6d2c05c2432b0dc8ba829f24077f44c3096faea9bd0a533250e6dbbfaef35')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in (4 files)

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:30:38
  Author: felixonmars
Revision: 711927

addpkg: python-click-didyoumean 0.0.3-1

Added:
  python-click-didyoumean/
  python-click-didyoumean/repos/
  python-click-didyoumean/trunk/
  python-click-didyoumean/trunk/PKGBUILD

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

Added: python-click-didyoumean/trunk/PKGBUILD
===
--- python-click-didyoumean/trunk/PKGBUILD  (rev 0)
+++ python-click-didyoumean/trunk/PKGBUILD  2020-09-24 21:30:38 UTC (rev 
711927)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-click-didyoumean
+pkgver=0.0.3
+pkgrel=1
+pkgdesc="Enable git-like did-you-mean feature in click"
+url="https://github.com/click-contrib/click-didyoumean;
+license=('MIT')
+arch=('any')
+depends=('python-click')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://github.com/click-contrib/click-didyoumean/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('6e832881817645eb8fa3a40acaab74a7f0dcc798aa984781a011b2ef78da2a4ae71ff2d58907bcbb35adbfc659727223c28c3622788eef05ecbdf758d6ac889d')
+
+build() {
+  cd click-didyoumean-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd click-didyoumean-$pkgver
+  python -m pytest || :
+}
+
+package() {
+  cd click-didyoumean-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:30:52
  Author: felixonmars
Revision: 711928

archrelease: copy trunk to community-any

Added:
  python-click-didyoumean/repos/community-any/
  python-click-didyoumean/repos/community-any/PKGBUILD
(from rev 711927, python-click-didyoumean/trunk/PKGBUILD)

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

Copied: python-click-didyoumean/repos/community-any/PKGBUILD (from rev 711927, 
python-click-didyoumean/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-09-24 21:30:52 UTC (rev 711928)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-click-didyoumean
+pkgver=0.0.3
+pkgrel=1
+pkgdesc="Enable git-like did-you-mean feature in click"
+url="https://github.com/click-contrib/click-didyoumean;
+license=('MIT')
+arch=('any')
+depends=('python-click')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://github.com/click-contrib/click-didyoumean/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('6e832881817645eb8fa3a40acaab74a7f0dcc798aa984781a011b2ef78da2a4ae71ff2d58907bcbb35adbfc659727223c28c3622788eef05ecbdf758d6ac889d')
+
+build() {
+  cd click-didyoumean-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd click-didyoumean-$pkgver
+  python -m pytest || :
+}
+
+package() {
+  cd click-didyoumean-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:30:29
  Author: anthraxx
Revision: 711926

archrelease: copy trunk to community-any

Added:
  vim-ale/repos/community-any/PKGBUILD
(from rev 711925, vim-ale/trunk/PKGBUILD)
Deleted:
  vim-ale/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:30:25 UTC (rev 711925)
+++ PKGBUILD2020-09-24 21:30:29 UTC (rev 711926)
@@ -1,34 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: David Thurstenson 
-
-pkgname=vim-ale
-_gitcommit=1428c7b29e50af56f53ee1d587679d97a027dd72
-pkgver=2.7.0
-pkgrel=1
-pkgdesc='Asynchronous Lint Engine'
-url='https://github.com/w0rp/ale'
-arch=('any')
-license=('BSD')
-depends=('vim')
-optdepends=('shellcheck: for sh/bash support'
-'flake8: for python support')
-makedepends=('git')
-groups=('vim-plugins')
-source=("${pkgname}::git+https://github.com/w0rp/ale#commit=${_gitcommit}?signed;)
-sha512sums=('SKIP')
-validpgpkeys=('E5132116F56ACE32A3D5D7DD0FC1ECAA8C81CD83') # _w0rp_ (Always be 
true to yourself) 
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-package() {
-  cd ${pkgname}
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -dm 755 "${pkgdir}/usr/share/vim/vimfiles"
-  cp -dr --no-preserve=ownership 
{ale_linters,autoload,doc,ftplugin,plugin,syntax} \
-"${pkgdir}/usr/share/vim/vimfiles"
-}
-
-# vim: ts=2 sw=2 et:

Copied: vim-ale/repos/community-any/PKGBUILD (from rev 711925, 
vim-ale/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:30:29 UTC (rev 711926)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Thurstenson 
+
+pkgname=vim-ale
+_gitcommit=08295ce17405cb5f6c80d2f726262493bfd21210
+pkgver=3.0.0
+pkgrel=1
+pkgdesc='Asynchronous Lint Engine'
+url='https://github.com/w0rp/ale'
+arch=('any')
+license=('BSD')
+depends=('vim')
+optdepends=('shellcheck: for sh/bash support'
+'flake8: for python support')
+makedepends=('git')
+groups=('vim-plugins')
+source=("${pkgname}::git+https://github.com/w0rp/ale#commit=${_gitcommit}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=('E5132116F56ACE32A3D5D7DD0FC1ECAA8C81CD83') # _w0rp_ (Always be 
true to yourself) 
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -dm 755 "${pkgdir}/usr/share/vim/vimfiles"
+  cp -dr --no-preserve=ownership 
{ale_linters,autoload,doc,ftplugin,plugin,syntax} \
+"${pkgdir}/usr/share/vim/vimfiles"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:30:25
  Author: anthraxx
Revision: 711925

upgpkg: vim-ale 3.0.0-1

Modified:
  vim-ale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:26:33 UTC (rev 711924)
+++ PKGBUILD2020-09-24 21:30:25 UTC (rev 711925)
@@ -2,8 +2,8 @@
 # Contributor: David Thurstenson 
 
 pkgname=vim-ale
-_gitcommit=1428c7b29e50af56f53ee1d587679d97a027dd72
-pkgver=2.7.0
+_gitcommit=08295ce17405cb5f6c80d2f726262493bfd21210
+pkgver=3.0.0
 pkgrel=1
 pkgdesc='Asynchronous Lint Engine'
 url='https://github.com/w0rp/ale'


[arch-commits] Commit in mtr/repos/extra-x86_64 (4 files)

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:26:33
  Author: anthraxx
Revision: 396494

archrelease: copy trunk to extra-x86_64

Added:
  mtr/repos/extra-x86_64/PKGBUILD
(from rev 396493, mtr/trunk/PKGBUILD)
  mtr/repos/extra-x86_64/mtr.install
(from rev 396493, mtr/trunk/mtr.install)
Deleted:
  mtr/repos/extra-x86_64/PKGBUILD
  mtr/repos/extra-x86_64/mtr.install

-+
 PKGBUILD|  121 +-
 mtr.install |   18 
 2 files changed, 70 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:26:28 UTC (rev 396493)
+++ PKGBUILD2020-09-24 21:26:33 UTC (rev 396494)
@@ -1,60 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=mtr
-pkgname=('mtr' 'mtr-gtk')
-pkgver=0.93
-pkgrel=3
-pkgdesc='Combines the functionality of traceroute and ping into one tool'
-url='https://www.bitwizard.nl/mtr/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('ncurses' 'gtk2' 'libcap')
-install=mtr.install
-source=(https://github.com/traviscross/mtr/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('865c394d8dfa234c472832dc205ddc9ec3cf0552475f565782fd4f4e878251c03f1473e2d28d6799e59da4fcb33c5355049f1e6f02e8610c6bbf681ffb78f53e')
-
-prepare() {
-  (cd ${pkgbase}-${pkgver}
-echo "${pkgver}" > .tarball-version
-autoreconf -fiv
-  )
-  cp -ra ${pkgbase}-${pkgver}{,-cli}
-}
-
-build() {
-  (cd ${pkgbase}-${pkgver}-cli
-./configure \
-  --prefix=/usr \
-  --without-gtk \
-  --sbindir=/usr/bin
-make
-  )
-  (cd ${pkgbase}-${pkgver}
-./configure \
-  --prefix=/usr \
-  --sbindir=/usr/bin
-make
-  )
-}
-
-package_mtr() {
-  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(CLI version)'
-  depends=('ncurses' 'libcap')
-  optdepends=('bash-completion: bash completion support')
-  cd ${pkgbase}-${pkgver}-cli
-  make DESTDIR="${pkgdir}" install
-}
-
-package_mtr-gtk() {
-  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(GTK version)'
-  depends=('ncurses' 'libcap' 'gtk2')
-  optdepends=('bash-completion: bash completion support')
-  conflicts=('mtr')
-  provides=("mtr=${pkgver}")
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: mtr/repos/extra-x86_64/PKGBUILD (from rev 396493, mtr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:26:33 UTC (rev 396494)
@@ -0,0 +1,61 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=mtr
+pkgname=('mtr' 'mtr-gtk')
+pkgver=0.94
+pkgrel=1
+pkgdesc='Combines the functionality of traceroute and ping into one tool'
+url='https://www.bitwizard.nl/mtr/'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('ncurses' 'gtk2' 'libcap')
+install=mtr.install
+source=(https://github.com/traviscross/mtr/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0e58bd79562ff80f9308135562ab22aa1f1eea686aefd3aef07bac05e661e34b60fde7c66c96bf4f0919f546376fbd6106ecd8fa92328c24f6f903097496bf11')
+b2sums=('e9b4619a85a515d729f0987d5882fb91e4bfa3be82476efbfdb832d0b13ed334be1c1a1bcf8ab4ca820002e79ca4a24d0b50f2739d9284b7dec0b8852a1a91e0')
+
+prepare() {
+  (cd ${pkgbase}-${pkgver}
+echo "${pkgver}" > .tarball-version
+autoreconf -fiv
+  )
+  cp -ra ${pkgbase}-${pkgver}{,-cli}
+}
+
+build() {
+  (cd ${pkgbase}-${pkgver}-cli
+./configure \
+  --prefix=/usr \
+  --without-gtk \
+  --sbindir=/usr/bin
+make
+  )
+  (cd ${pkgbase}-${pkgver}
+./configure \
+  --prefix=/usr \
+  --sbindir=/usr/bin
+make
+  )
+}
+
+package_mtr() {
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(CLI version)'
+  depends=('ncurses' 'libcap')
+  optdepends=('bash-completion: bash completion support')
+  cd ${pkgbase}-${pkgver}-cli
+  make DESTDIR="${pkgdir}" install
+}
+
+package_mtr-gtk() {
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(GTK version)'
+  depends=('ncurses' 'libcap' 'gtk2')
+  optdepends=('bash-completion: bash completion support')
+  conflicts=('mtr')
+  provides=("mtr=${pkgver}")
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: mtr.install
===
--- mtr.install 2020-09-24 21:26:28 UTC (rev 396493)
+++ mtr.install 2020-09-24 21:26:33 UTC (rev 396494)
@@ -1,9 +0,0 @@
-post_install() {
-  setcap cap_net_bind_service,cap_net_raw+ep usr/bin/mtr-packet
-}
-
-post_upgrade() {
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: mtr/repos/extra-x86_64/mtr.install (from rev 396493, 
mtr/trunk/mtr.install)
===
--- 

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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:26:20
  Author: felixonmars
Revision: 711923

upgpkg: python-kombu 5.0.2-1

Modified:
  python-kombu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:25:10 UTC (rev 711922)
+++ PKGBUILD2020-09-24 21:26:20 UTC (rev 711923)
@@ -2,7 +2,7 @@
 # Contributor: mutantmonkey 
 
 pkgname=python-kombu
-pkgver=4.6.11
+pkgver=5.0.2
 pkgrel=1
 pkgdesc='A messaging library for Python'
 arch=('any')
@@ -26,7 +26,7 @@
   'python-case' 'python-pymongo' 'python-pytz' 
'python-pytest-sugar' 'python-sqlalchemy'
   'python-pyro' 'python-boto3')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/celery/kombu/archive/v$pkgver.tar.gz;)
-sha512sums=('67656c63e42c1cf018c438d60edece925cdf1a25abb46c9b413bfca3032ba108550277ced70f6696d61561d501fe49f85f0f8ee063405ac650662aa24d0cc95a')
+sha512sums=('2ff1dfed530773ce500af4a1ad30bf66a1e5e65705f5192193714b59c12bd4c2bb69a2a716c169bd45784b8db2ad35f45226746d972df776d9b54c35b08d6e91')
 
 build() {
   cd kombu-$pkgver


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:26:28
  Author: anthraxx
Revision: 396493

upgpkg: mtr 0.94-1

Modified:
  mtr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 20:55:31 UTC (rev 396492)
+++ PKGBUILD2020-09-24 21:26:28 UTC (rev 396493)
@@ -4,8 +4,8 @@
 
 pkgbase=mtr
 pkgname=('mtr' 'mtr-gtk')
-pkgver=0.93
-pkgrel=3
+pkgver=0.94
+pkgrel=1
 pkgdesc='Combines the functionality of traceroute and ping into one tool'
 url='https://www.bitwizard.nl/mtr/'
 arch=('x86_64')
@@ -13,7 +13,8 @@
 makedepends=('ncurses' 'gtk2' 'libcap')
 install=mtr.install
 
source=(https://github.com/traviscross/mtr/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('865c394d8dfa234c472832dc205ddc9ec3cf0552475f565782fd4f4e878251c03f1473e2d28d6799e59da4fcb33c5355049f1e6f02e8610c6bbf681ffb78f53e')
+sha512sums=('0e58bd79562ff80f9308135562ab22aa1f1eea686aefd3aef07bac05e661e34b60fde7c66c96bf4f0919f546376fbd6106ecd8fa92328c24f6f903097496bf11')
+b2sums=('e9b4619a85a515d729f0987d5882fb91e4bfa3be82476efbfdb832d0b13ed334be1c1a1bcf8ab4ca820002e79ca4a24d0b50f2739d9284b7dec0b8852a1a91e0')
 
 prepare() {
   (cd ${pkgbase}-${pkgver}


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:26:33
  Author: felixonmars
Revision: 711924

archrelease: copy trunk to community-testing-any

Added:
  python-kombu/repos/community-testing-any/
  python-kombu/repos/community-testing-any/PKGBUILD
(from rev 711923, python-kombu/trunk/PKGBUILD)

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

Copied: python-kombu/repos/community-testing-any/PKGBUILD (from rev 711923, 
python-kombu/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-09-24 21:26:33 UTC (rev 711924)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: mutantmonkey 
+
+pkgname=python-kombu
+pkgver=5.0.2
+pkgrel=1
+pkgdesc='A messaging library for Python'
+arch=('any')
+url="https://kombu.readthedocs.org/;
+license=('BSD')
+options=('!emptydirs')
+depends=('python-amqp')
+optdepends=('python-pymongo: for MongoDB support'
+'python-msgpack: for MessagePack support'
+'python-pyro: for Pyro support'
+'python-redis: for Redis support'
+'python-sqlalchemy: for SQLAlchemy support'
+'python-boto3: for Amazon SQS support'
+'python-pycurl: for Amazon SQS support'
+'python-yaml: for YAML support')
+# 'python-softlayer-messaging: for SoftLayer Message Queue 
support': Not packaged yet
+# 'python-kazoo: for Zookeeper support': Not packaged yet
+# 'python-librabbitmq: C optimization for AMQP transport' Not 
available for python 3 yet
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-redis' 'python-yaml' 'python-msgpack' 
'python-pycurl'
+  'python-case' 'python-pymongo' 'python-pytz' 
'python-pytest-sugar' 'python-sqlalchemy'
+  'python-pyro' 'python-boto3')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/celery/kombu/archive/v$pkgver.tar.gz;)
+sha512sums=('2ff1dfed530773ce500af4a1ad30bf66a1e5e65705f5192193714b59c12bd4c2bb69a2a716c169bd45784b8db2ad35f45226746d972df776d9b54c35b08d6e91')
+
+build() {
+  cd kombu-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd kombu-$pkgver
+  python -m pytest
+}
+
+package() {
+  cd kombu-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:25:06
  Author: anthraxx
Revision: 711921

upgpkg: wpscan 1:3.8.7-1

Modified:
  wpscan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:24:50 UTC (rev 711920)
+++ PKGBUILD2020-09-24 21:25:06 UTC (rev 711921)
@@ -2,8 +2,8 @@
 # Contributor: alexiobash < me (at) alexiobash (dot) com >
 
 pkgname=wpscan
-pkgver=3.8.3
-pkgrel=2
+pkgver=3.8.7
+pkgrel=1
 epoch=1
 pkgdesc='Black box WordPress vulnerability scanner'
 url='https://wpscan.org'
@@ -14,8 +14,8 @@
 options=('!strip' '!emptydirs')
 install=wpscan.install
 
source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('d0721fbbbcee63393da02666bb715b16ebff2f164467a778a3f63e3533a81860332038cca7ba03023d3d9881685558a6971183307ad19a3a4c775d12454f5cea')
-b2sums=('a4fb930d5150f8159a9844110544bdc38600ca723305cd1e492315a3c5eef8b630096897cd2a1391b6be0f599063d5028067f56d803c27630d61446955ab967f')
+sha512sums=('75f8aa6162cea7fd33da1169a9e3c08d0de8196609e669f2cd5c0d86219198f8e7a987256bc8e1fb1cc3d840aecf5e1aab03cd4fcb6684bde75f47af072fe29e')
+b2sums=('6650efca0ae79841c60996745caa1ec79546976ed816b292fb89a4cfdb9ae91f31b888fc9318b6d89ea15b90243661822e978f3f435c5734967b1d1edb1e4048')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:25:10
  Author: anthraxx
Revision: 711922

archrelease: copy trunk to community-x86_64

Added:
  wpscan/repos/community-x86_64/PKGBUILD
(from rev 711921, wpscan/trunk/PKGBUILD)
  wpscan/repos/community-x86_64/wpscan.install
(from rev 711921, wpscan/trunk/wpscan.install)
Deleted:
  wpscan/repos/community-x86_64/PKGBUILD
  wpscan/repos/community-x86_64/wpscan.install

+
 PKGBUILD   |  110 +++
 wpscan.install |   18 -
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:25:06 UTC (rev 711921)
+++ PKGBUILD2020-09-24 21:25:10 UTC (rev 711922)
@@ -1,55 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: alexiobash < me (at) alexiobash (dot) com >
-
-pkgname=wpscan
-pkgver=3.8.3
-pkgrel=2
-epoch=1
-pkgdesc='Black box WordPress vulnerability scanner'
-url='https://wpscan.org'
-arch=('x86_64')
-license=('custom:WPScan')
-depends=('ruby-bundler' 'libxslt' 'libyaml' 'curl' 'libxml2')
-optdepends=('metasploit')
-options=('!strip' '!emptydirs')
-install=wpscan.install
-source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('d0721fbbbcee63393da02666bb715b16ebff2f164467a778a3f63e3533a81860332038cca7ba03023d3d9881685558a6971183307ad19a3a4c775d12454f5cea')
-b2sums=('a4fb930d5150f8159a9844110544bdc38600ca723305cd1e492315a3c5eef8b630096897cd2a1391b6be0f599063d5028067f56d803c27630d61446955ab967f')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i '/bundler/ s|~>|>=|g' $pkgname.gemspec
-  bundle config build.nokogiri --use-system-libraries
-  bundle config set --local path vendor/bundle
-  bundle config set --local without development test
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  CFLAGS+=" -I/usr/include/libxml2"
-  bundle install -j"$(nproc)"
-  # reproducible builds: don't leak jobs count
-  sed '/BUNDLE_JOBS/d' -i .bundle/config
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -d "${pkgdir}/opt/${pkgname}"
-  cp -ra --no-preserve=owner . "${pkgdir}/opt/${pkgname}"
-
-  install -d "${pkgdir}/usr/bin"
-  cat > "${pkgdir}/usr/bin/${pkgname}" << EOF
-#!/bin/sh
-BUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec ruby /opt/wpscan/bin/wpscan 
"\$@"
-EOF
-  chmod 755 "${pkgdir}/usr/bin/${pkgname}"
-
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  find "${pkgdir}" \( -name gem_make.out -or -name mkmf.log \) -delete
-  rm -r "${pkgdir}"/opt/wpscan/vendor/bundle/ruby/*/cache
-}
-
-# vim: ts=2 sw=2 et:

Copied: wpscan/repos/community-x86_64/PKGBUILD (from rev 711921, 
wpscan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:25:10 UTC (rev 711922)
@@ -0,0 +1,55 @@
+# Maintainer: Levente Polyak 
+# Contributor: alexiobash < me (at) alexiobash (dot) com >
+
+pkgname=wpscan
+pkgver=3.8.7
+pkgrel=1
+epoch=1
+pkgdesc='Black box WordPress vulnerability scanner'
+url='https://wpscan.org'
+arch=('x86_64')
+license=('custom:WPScan')
+depends=('ruby-bundler' 'libxslt' 'libyaml' 'curl' 'libxml2')
+optdepends=('metasploit')
+options=('!strip' '!emptydirs')
+install=wpscan.install
+source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('75f8aa6162cea7fd33da1169a9e3c08d0de8196609e669f2cd5c0d86219198f8e7a987256bc8e1fb1cc3d840aecf5e1aab03cd4fcb6684bde75f47af072fe29e')
+b2sums=('6650efca0ae79841c60996745caa1ec79546976ed816b292fb89a4cfdb9ae91f31b888fc9318b6d89ea15b90243661822e978f3f435c5734967b1d1edb1e4048')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i '/bundler/ s|~>|>=|g' $pkgname.gemspec
+  bundle config build.nokogiri --use-system-libraries
+  bundle config set --local path vendor/bundle
+  bundle config set --local without development test
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS+=" -I/usr/include/libxml2"
+  bundle install -j"$(nproc)"
+  # reproducible builds: don't leak jobs count
+  sed '/BUNDLE_JOBS/d' -i .bundle/config
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}"
+  cp -ra --no-preserve=owner . "${pkgdir}/opt/${pkgname}"
+
+  install -d "${pkgdir}/usr/bin"
+  cat > "${pkgdir}/usr/bin/${pkgname}" << EOF
+#!/bin/sh
+BUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec ruby /opt/wpscan/bin/wpscan 
"\$@"
+EOF
+  chmod 755 "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  find "${pkgdir}" \( -name gem_make.out -or -name mkmf.log \) -delete
+  rm -r "${pkgdir}"/opt/wpscan/vendor/bundle/ruby/*/cache
+}
+
+# vim: ts=2 sw=2 et:

Deleted: wpscan.install

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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:24:27
  Author: anthraxx
Revision: 711917

upgpkg: sqlitebrowser 3.12.0-1

Modified:
  sqlitebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:22:04 UTC (rev 711916)
+++ PKGBUILD2020-09-24 21:24:27 UTC (rev 711917)
@@ -4,9 +4,9 @@
 # Contributor: Michael Fellinger 
 
 pkgname=sqlitebrowser
-_gitcommit=f07dafdd10c361f2a5867d125c9f8f79b629edd1
-pkgver=3.11.2
-pkgrel=2
+_gitcommit=0dbe9b5f91234ed9b76535fc8ec37a5b8f8eb65c
+pkgver=3.12.0
+pkgrel=1
 pkgdesc='SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt'
 url='https://sqlitebrowser.org/'
 arch=('x86_64')


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:24:50
  Author: felixonmars
Revision: 711920

archrelease: copy trunk to community-testing-any

Added:
  python-amqp/repos/community-testing-any/
  python-amqp/repos/community-testing-any/PKGBUILD
(from rev 711919, python-amqp/trunk/PKGBUILD)

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

Copied: python-amqp/repos/community-testing-any/PKGBUILD (from rev 711919, 
python-amqp/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-09-24 21:24:50 UTC (rev 711920)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: mutantmonkey 
+
+pkgname=python-amqp
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
+arch=('any')
+url="https://github.com/celery/py-amqp;
+license=('LGPL')
+depends=('python-vine')
+checkdepends=('python-case' 'python-pytest-sugar')
+source=("https://github.com/celery/py-amqp/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('d716a54c1c23b3c2678b5904fd2fefe57c5e8b805770ee8a6850795811e321890a572825eca5d97e7d2bdfcc04a5c36dbd5b9554e2ca8a26829d0434588ae07a')
+
+build() {
+  cd py-amqp-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd py-amqp-$pkgver
+  pytest
+}
+
+package() {
+  cd py-amqp-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:24:31
  Author: anthraxx
Revision: 711918

archrelease: copy trunk to community-x86_64

Added:
  sqlitebrowser/repos/community-x86_64/PKGBUILD
(from rev 711917, sqlitebrowser/trunk/PKGBUILD)
Deleted:
  sqlitebrowser/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:24:27 UTC (rev 711917)
+++ PKGBUILD2020-09-24 21:24:31 UTC (rev 711918)
@@ -1,49 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sergej Pupykin 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Michael Fellinger 
-
-pkgname=sqlitebrowser
-_gitcommit=f07dafdd10c361f2a5867d125c9f8f79b629edd1
-pkgver=3.11.2
-pkgrel=2
-pkgdesc='SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt'
-url='https://sqlitebrowser.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('qt5-base' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('git' 'cmake' 'qt5-tools')
-source=("git+https://github.com/sqlitebrowser/sqlitebrowser#commit=${_gitcommit}?signed;)
-sha256sums=('SKIP')
-validpgpkeys=('05E463FDB5802C3D00257F9C79EAD0AB3BD7DD2C') # Justin Clift (GPG 
key for signing git commits) 
-
-pkgver() {
-  cd ${pkgname}
-  git describe --always --tags --match 'v*' | sed 
's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cd ${pkgname}
-  mkdir -p build
-}
-
-build() {
-  cd ${pkgname}/build
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_TESTING=ON \
-..
-  make
-}
-
-check() {
-  cd ${pkgname}/build
-  ctest -V
-}
-
-package() {
-  cd ${pkgname}
-  make -C build install DESTDIR="${pkgdir}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sqlitebrowser/repos/community-x86_64/PKGBUILD (from rev 711917, 
sqlitebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:24:31 UTC (rev 711918)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Michael Fellinger 
+
+pkgname=sqlitebrowser
+_gitcommit=0dbe9b5f91234ed9b76535fc8ec37a5b8f8eb65c
+pkgver=3.12.0
+pkgrel=1
+pkgdesc='SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt'
+url='https://sqlitebrowser.org/'
+arch=('x86_64')
+license=('GPL3')
+depends=('qt5-base' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://github.com/sqlitebrowser/sqlitebrowser#commit=${_gitcommit}?signed;)
+sha256sums=('SKIP')
+validpgpkeys=('05E463FDB5802C3D00257F9C79EAD0AB3BD7DD2C') # Justin Clift (GPG 
key for signing git commits) 
+
+pkgver() {
+  cd ${pkgname}
+  git describe --always --tags --match 'v*' | sed 
's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  mkdir -p build
+}
+
+build() {
+  cd ${pkgname}/build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_TESTING=ON \
+..
+  make
+}
+
+check() {
+  cd ${pkgname}/build
+  ctest -V
+}
+
+package() {
+  cd ${pkgname}
+  make -C build install DESTDIR="${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:24:36
  Author: felixonmars
Revision: 711919

upgpkg: python-amqp 5.0.1-1

Modified:
  python-amqp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:24:31 UTC (rev 711918)
+++ PKGBUILD2020-09-24 21:24:36 UTC (rev 711919)
@@ -2,7 +2,7 @@
 # Contributor: mutantmonkey 
 
 pkgname=python-amqp
-pkgver=2.6.1
+pkgver=5.0.1
 pkgrel=1
 pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python-vine')
 checkdepends=('python-case' 'python-pytest-sugar')
 
source=("https://github.com/celery/py-amqp/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('47e2d848df8023e31969fef54456eced1c63db49d7570264c6fdb969399d7a97998e948cf65995f8216cbf9932795573c13b6b08bcbcd5d9865155caaeee7aeb')
+sha512sums=('d716a54c1c23b3c2678b5904fd2fefe57c5e8b805770ee8a6850795811e321890a572825eca5d97e7d2bdfcc04a5c36dbd5b9554e2ca8a26829d0434588ae07a')
 
 build() {
   cd py-amqp-$pkgver


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:22:04
  Author: felixonmars
Revision: 711916

archrelease: copy trunk to community-testing-any

Added:
  python-vine/repos/community-testing-any/
  python-vine/repos/community-testing-any/PKGBUILD
(from rev 711915, python-vine/trunk/PKGBUILD)

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

Copied: python-vine/repos/community-testing-any/PKGBUILD (from rev 711915, 
python-vine/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-09-24 21:22:04 UTC (rev 711916)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-vine
+pkgver=5.0.0
+pkgrel=1
+pkgdesc="Promises, promises, promises"
+arch=('any')
+license=('BSD')
+url="https://github.com/celery/vine;
+depends=('python-case')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/celery/vine/archive/v$pkgver.tar.gz;)
+sha512sums=('db0598b05235a61416958e09582b2b1cd504ba54c04e325ade552fa76886463f447d8f6b423a0f9db777ae441c4898898e9acf2ed2e9c1d5c040bc703b226e97')
+
+build() {
+  cd "$srcdir"/vine-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/vine-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd vine-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:21:50
  Author: felixonmars
Revision: 711915

upgpkg: python-vine 5.0.0-1

Modified:
  python-vine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:21:40 UTC (rev 711914)
+++ PKGBUILD2020-09-24 21:21:50 UTC (rev 711915)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-vine
-pkgver=1.3.0
-pkgrel=3
+pkgver=5.0.0
+pkgrel=1
 pkgdesc="Promises, promises, promises"
 arch=('any')
 license=('BSD')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/celery/vine/archive/v$pkgver.tar.gz;)
-sha512sums=('cb6ee9fcfcd7e7e23e894fce646c9e8b2300622fcc1811c1547bda90e3756de248ac01e4f812ecbb31dd1798734219d0b8f986354ae16014a7e5d949ab5d994f')
+sha512sums=('db0598b05235a61416958e09582b2b1cd504ba54c04e325ade552fa76886463f447d8f6b423a0f9db777ae441c4898898e9acf2ed2e9c1d5c040bc703b226e97')
 
 build() {
   cd "$srcdir"/vine-$pkgver


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:21:40
  Author: felixonmars
Revision: 711914

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:21:24 UTC (rev 711913)
+++ PKGBUILD2020-09-24 21:21:40 UTC (rev 711914)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: David Campbell 
-# Contributor: Cilyan Olowen 
-
-pkgname=python-paste
-pkgver=3.4.4
-pkgrel=1
-pkgdesc="Tools for using a Web Server Gateway Interface stack"
-arch=('any')
-url="http://pythonpaste.org/index.html;
-license=('MIT')
-depends=('python-six')
-optdepends=('python-flup: WSGI utilities')
-makedepends=('python-setuptools' 'python-six')
-checkdepends=('python-pytest-runner' 'python-flup')
-source=("https://files.pythonhosted.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz;)
-sha512sums=('f977fa02b6800be27f703115b87987dcf8a1e4edd681f253b20fb363bfe625109b424ec6a0faba066e1d074f55a2ba336e17654f899b3100c9e3c3252d38b5a6')
-
-build() {
-  cd "$srcdir"/Paste-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/Paste-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd Paste-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
-}

Copied: python-paste/repos/community-any/PKGBUILD (from rev 711913, 
python-paste/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 21:21:40 UTC (rev 711914)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: David Campbell 
+# Contributor: Cilyan Olowen 
+
+pkgname=python-paste
+pkgver=3.4.5
+pkgrel=1
+pkgdesc="Tools for using a Web Server Gateway Interface stack"
+arch=('any')
+url="http://pythonpaste.org/index.html;
+license=('MIT')
+depends=('python-six')
+optdepends=('python-flup: WSGI utilities')
+makedepends=('python-setuptools' 'python-six')
+checkdepends=('python-pytest-runner' 'python-flup')
+source=("https://files.pythonhosted.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz;)
+sha512sums=('cffc7a36ea880acfed6878a8865161c35263a3a056e853cf0d7c5e4dd2101d9462a4bf71a36e9f4c707c8fc11ae23ad2d0ae31080adf8614680462e489f47d3a')
+
+build() {
+  cd "$srcdir"/Paste-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/Paste-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd Paste-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


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

2020-09-24 Thread Felix Yan via arch-commits
Date: Thursday, September 24, 2020 @ 21:21:24
  Author: felixonmars
Revision: 711913

upgpkg: python-paste 3.4.5-1

Modified:
  python-paste/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:13:32 UTC (rev 711912)
+++ PKGBUILD2020-09-24 21:21:24 UTC (rev 711913)
@@ -3,7 +3,7 @@
 # Contributor: Cilyan Olowen 
 
 pkgname=python-paste
-pkgver=3.4.4
+pkgver=3.4.5
 pkgrel=1
 pkgdesc="Tools for using a Web Server Gateway Interface stack"
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('python-setuptools' 'python-six')
 checkdepends=('python-pytest-runner' 'python-flup')
 
source=("https://files.pythonhosted.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz;)
-sha512sums=('f977fa02b6800be27f703115b87987dcf8a1e4edd681f253b20fb363bfe625109b424ec6a0faba066e1d074f55a2ba336e17654f899b3100c9e3c3252d38b5a6')
+sha512sums=('cffc7a36ea880acfed6878a8865161c35263a3a056e853cf0d7c5e4dd2101d9462a4bf71a36e9f4c707c8fc11ae23ad2d0ae31080adf8614680462e489f47d3a')
 
 build() {
   cd "$srcdir"/Paste-$pkgver


[arch-commits] Commit in lightdm-webkit2-greeter/repos (3 files)

2020-09-24 Thread Filipe Laíns via arch-commits
Date: Thursday, September 24, 2020 @ 21:13:32
  Author: ffy00
Revision: 711912

archrelease: copy trunk to community-testing-x86_64

Added:
  lightdm-webkit2-greeter/repos/community-testing-x86_64/
  lightdm-webkit2-greeter/repos/community-testing-x86_64/PKGBUILD
(from rev 711911, lightdm-webkit2-greeter/trunk/PKGBUILD)
  lightdm-webkit2-greeter/repos/community-testing-x86_64/archlinux-user.svg
(from rev 711911, lightdm-webkit2-greeter/trunk/archlinux-user.svg)

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

Copied: lightdm-webkit2-greeter/repos/community-testing-x86_64/PKGBUILD (from 
rev 711911, lightdm-webkit2-greeter/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-24 21:13:32 UTC (rev 711912)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Dustin Falgout 
+
+pkgname=lightdm-webkit2-greeter
+_pkgname=web-greeter
+pkgver=2.2.5
+pkgrel=4
+pkgdesc='LightDM greeter that uses WebKit2 for theming via HTML/JavaScript.'
+arch=('x86_64')
+url='https://github.com/antergos/web-greeter'
+license=('GPL3')
+depends=('lightdm' 'webkit2gtk' 'accountsservice' 'gnome-backgrounds')
+makedepends=('gobject-introspection' 'meson' 'gettext' 'dbus-glib')
+backup=("etc/lightdm/$pkgname.conf")
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+
'archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-light-scalable.svg'
+'archlinux-user.svg')
+sha512sums=('173fe64dc3ff9bde0bc3d72319ab014001364eae8336a72b052333e0c6687167164277fd87de7051c689f12f64aeb441f95a9f0d38cc780ccb77751ab62204da'
+
'a553510431d3771a0ef5c7aaec198f89302f11ea8fe6db83bdac496d087ded6d5a99e442d3d20fd7b9231a76ec0df0f1ffb3da2511f79d196c8516345241d1da'
+
'4cf515e5eefa0a16d1ebda6e4cbef2103e405325e265472c3cdc4928f05749597913406494fc4384b268288efbc0bbb86fefb648d1dd6e62c1dbc6569c8253b6')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # Replace antergos logos
+  sed -i \
+   -e 's|/usr.*antergos.png|/usr/share/pixmaps/archlinux-logo.svg|g;' \
+   -e 's|/usr.*logo-user.png|/usr/share/pixmaps/archlinux-user.svg|g' \
+   "data/$pkgname.conf"
+}
+
+build() {
+  cd $_pkgname-$pkgver/build
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+

Copied: 
lightdm-webkit2-greeter/repos/community-testing-x86_64/archlinux-user.svg (from 
rev 711911, lightdm-webkit2-greeter/trunk/archlinux-user.svg)
===
(Binary files differ)


[arch-commits] Commit in lightdm-webkit2-greeter/trunk (PKGBUILD)

2020-09-24 Thread Filipe Laíns via arch-commits
Date: Thursday, September 24, 2020 @ 21:13:28
  Author: ffy00
Revision: 711911

drop pixmaps which are now included in filesystem (lightdm-webkit2-greeter 
2.2.5-4)

Modified:
  lightdm-webkit2-greeter/trunk/PKGBUILD

--+
 PKGBUILD |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 21:10:13 UTC (rev 711910)
+++ PKGBUILD2020-09-24 21:13:28 UTC (rev 711911)
@@ -4,7 +4,7 @@
 pkgname=lightdm-webkit2-greeter
 _pkgname=web-greeter
 pkgver=2.2.5
-pkgrel=3
+pkgrel=4
 pkgdesc='LightDM greeter that uses WebKit2 for theming via HTML/JavaScript.'
 arch=('x86_64')
 url='https://github.com/antergos/web-greeter'
@@ -41,8 +41,5 @@
   cd $_pkgname-$pkgver/build
 
   DESTDIR="$pkgdir" ninja install
-
-  install -Dm 644 "$srcdir"/archlinux-logo.svg 
"$pkgdir"/usr/share/pixmaps/archlinux-logo.svg
-  install -Dm 644 "$srcdir"/archlinux-user.svg 
"$pkgdir"/usr/share/pixmaps/archlinux-user.svg
 }
 


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:10:13
  Author: anthraxx
Revision: 711910

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 711909, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 711909, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 711909, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 711909, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 711909, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  269 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++---
 4 files changed, 181 insertions(+), 180 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:10:07 UTC (rev 711909)
+++ PKGBUILD2020-09-24 21:10:13 UTC (rev 711910)
@@ -1,134 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.25
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2' 'python-bcrypt'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('a1944f9c65b8aa7ec5bd83ef75702293d869ae341ea73f81fb4358bfbc7f91a6981237eb9f1b20055c5f3fa182428afe19dc170963265789c34d73f2e240c268'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'a8c1a3762469b02b745da4e3b30f7534ad6bb94e91d43f7e63604fef24f638e09575e2c9336e753e5b6dbe167c55bb49fb6247a16431415318479eb3a3712adc')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' 

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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:10:07
  Author: anthraxx
Revision: 711909

upgpkg: pgadmin4 4.26-1

Modified:
  pgadmin4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 20:57:22 UTC (rev 711908)
+++ PKGBUILD2020-09-24 21:10:07 UTC (rev 711909)
@@ -2,7 +2,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=pgadmin4
-pkgver=4.25
+pkgver=4.26
 pkgrel=1
 pkgdesc='Comprehensive design and management interface for PostgreSQL'
 url='https://www.pgadmin.org/'
@@ -18,7 +18,7 @@
  'python-webencodings' 'python-werkzeug' 'python-dateutil'
  'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
  'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3')
+ 'python-werkzeug' 'python-flask-compress' 'python-ldap3' 
'python-cryptography')
 makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
  'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
  'imagemagick')
@@ -28,7 +28,7 @@
 config_local.py
 pgadmin4-python-de-vendor-venv-paths.patch)
 validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('a1944f9c65b8aa7ec5bd83ef75702293d869ae341ea73f81fb4358bfbc7f91a6981237eb9f1b20055c5f3fa182428afe19dc170963265789c34d73f2e240c268'
+sha512sums=('952a4771f80541c54234fcaa9c870283fdf4887246d0d9751a77c28340b7e39ba871141f230086efda9a274d5e6bd567305047cdc7edf766ccd41112281fdf94'
 'SKIP'
 
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
 
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
@@ -78,6 +78,7 @@
 -e '/Werkzeug>?=/d' \
 -e '/ldap3>?=/d' \
 -e '/bcrypt>??

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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:57:22
  Author: anthraxx
Revision: 711908

archrelease: copy trunk to community-x86_64

Added:
  libstrophe/repos/community-x86_64/PKGBUILD
(from rev 711907, libstrophe/trunk/PKGBUILD)
Deleted:
  libstrophe/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 20:57:18 UTC (rev 711907)
+++ PKGBUILD2020-09-24 20:57:22 UTC (rev 711908)
@@ -1,53 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgbase=libstrophe
-pkgname=('libstrophe' 'libstrophe-doc')
-pkgver=0.9.3
-pkgrel=1
-epoch=1
-pkgdesc='Simple, lightweight C library for writing XMPP clients'
-url='http://strophe.im/libstrophe/'
-arch=('x86_64')
-license=('GPL3' 'MIT')
-makedepends=('openssl' 'expat' 'pkg-config' 'doxygen')
-checkdepends=('check')
-options=('staticlibs')
-source=(https://github.com/strophe/libstrophe/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('8f3a886e96ff327cb6c459409509d4c01c6b306b30ed25941da33a99d0fde568769b30567e8442fe86c41eb28c226d14bff53a57da5f6fb4a34f4484b0f9')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  cat bootstrap.sh
-  ./bootstrap.sh
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  doxygen
-}
-
-check() {
-  make -C ${pkgbase}-${pkgver} check
-}
-
-package_libstrophe() {
-  depends=('openssl' 'expat')
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-}
-
-package_libstrophe-doc() {
-  pkgdesc+=' (documentation and samples)'
-  options=('!strip')
-  optdepends=('libstrophe')
-  cd ${pkgbase}-${pkgver}
-  install -Dm 644 docs/html/* -t "${pkgdir}/usr/share/doc/${pkgname}/html"
-  install -Dm 644 examples/{README.md,*.c} -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
-  install -Dm 644 MIT-LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libstrophe/repos/community-x86_64/PKGBUILD (from rev 711907, 
libstrophe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 20:57:22 UTC (rev 711908)
@@ -0,0 +1,54 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgbase=libstrophe
+pkgname=('libstrophe' 'libstrophe-doc')
+pkgver=0.10.0
+pkgrel=1
+epoch=1
+pkgdesc='Simple, lightweight C library for writing XMPP clients'
+url='http://strophe.im/libstrophe/'
+arch=('x86_64')
+license=('GPL3' 'MIT')
+makedepends=('openssl' 'expat' 'pkg-config' 'doxygen')
+checkdepends=('check')
+options=('staticlibs')
+source=(https://github.com/strophe/libstrophe/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('fa5a3fd249d9526d0cb07084e18989c74294d47812b2409b244308d068ddaa6ffca6af79422097ec5268a1efc1f620679eb3c9852b17110ca348da49b8f49383')
+b2sums=('9623a68ce78f6cdc4848600fffe2590fc482077f46834c62d011454d3354c0fcb744c6a1ddd0fc940834cb9c7026ea52da0fbf1e6a84e415d74eba578270685c')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  cat bootstrap.sh
+  ./bootstrap.sh
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure --prefix=/usr
+  make
+  doxygen
+}
+
+check() {
+  make -C ${pkgbase}-${pkgver} check
+}
+
+package_libstrophe() {
+  depends=('openssl' 'expat')
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+}
+
+package_libstrophe-doc() {
+  pkgdesc+=' (documentation and samples)'
+  options=('!strip')
+  optdepends=('libstrophe')
+  cd ${pkgbase}-${pkgver}
+  install -Dm 644 docs/html/* -t "${pkgdir}/usr/share/doc/${pkgname}/html"
+  install -Dm 644 examples/{README.md,*.c} -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
+  install -Dm 644 MIT-LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:57:18
  Author: anthraxx
Revision: 711907

upgpkg: libstrophe 1:0.10.0-1

Modified:
  libstrophe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 20:48:38 UTC (rev 711906)
+++ PKGBUILD2020-09-24 20:57:18 UTC (rev 711907)
@@ -3,7 +3,7 @@
 
 pkgbase=libstrophe
 pkgname=('libstrophe' 'libstrophe-doc')
-pkgver=0.9.3
+pkgver=0.10.0
 pkgrel=1
 epoch=1
 pkgdesc='Simple, lightweight C library for writing XMPP clients'
@@ -14,7 +14,8 @@
 checkdepends=('check')
 options=('staticlibs')
 
source=(https://github.com/strophe/libstrophe/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('8f3a886e96ff327cb6c459409509d4c01c6b306b30ed25941da33a99d0fde568769b30567e8442fe86c41eb28c226d14bff53a57da5f6fb4a34f4484b0f9')
+sha512sums=('fa5a3fd249d9526d0cb07084e18989c74294d47812b2409b244308d068ddaa6ffca6af79422097ec5268a1efc1f620679eb3c9852b17110ca348da49b8f49383')
+b2sums=('9623a68ce78f6cdc4848600fffe2590fc482077f46834c62d011454d3354c0fcb744c6a1ddd0fc940834cb9c7026ea52da0fbf1e6a84e415d74eba578270685c')
 
 prepare() {
   cd ${pkgbase}-${pkgver}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:54:23
  Author: anthraxx
Revision: 396491

archrelease: copy trunk to extra-x86_64

Added:
  libcap-ng/repos/extra-x86_64/
  libcap-ng/repos/extra-x86_64/PKGBUILD
(from rev 396490, libcap-ng/trunk/PKGBUILD)

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

Copied: libcap-ng/repos/extra-x86_64/PKGBUILD (from rev 396490, 
libcap-ng/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2020-09-24 20:54:23 UTC (rev 396491)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Gerardo Exequiel Pozzi 
+
+pkgname=libcap-ng
+pkgver=0.8
+pkgrel=1
+pkgdesc='Library making programming with POSIX capabilities easier than 
traditional libcap'
+url='https://people.redhat.com/sgrubb/libcap-ng/'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('glibc')
+provides=('libcap-ng.so')
+source=(https://github.com/stevegrubb/libcap-ng/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('47b079849ee051544e74b006bcfff1f7965c79099db52f39f49e3f138137748712df2ef88f3fbd9715d44d9f2d118593f557dba1ede45a0168e7c813a4e65f46')
+b2sums=('e31be8b3f3879f5a266c9ca2893353c84b628833d923992f3aaedfca5ca60b7a5d3beceb4144911ebc311c5cbb7bcf442e5221aa2bbf494d5eac9ef11d253909')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--enable-static=no \
+-with-python=no
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:54:20
  Author: anthraxx
Revision: 396490

upgpkg: libcap-ng 0.8-1

Modified:
  libcap-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 20:51:43 UTC (rev 396489)
+++ PKGBUILD2020-09-24 20:54:20 UTC (rev 396490)
@@ -3,8 +3,8 @@
 # Contributor: Gerardo Exequiel Pozzi 
 
 pkgname=libcap-ng
-pkgver=0.7.11
-pkgrel=2
+pkgver=0.8
+pkgrel=1
 pkgdesc='Library making programming with POSIX capabilities easier than 
traditional libcap'
 url='https://people.redhat.com/sgrubb/libcap-ng/'
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=('glibc')
 provides=('libcap-ng.so')
 
source=(https://github.com/stevegrubb/libcap-ng/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('ad2f07df90b730831fda87f2f8ad889602ac627d63dbdb5db8a39af6ad65a0b3e08eb37ea99cf5604a16f0b526ae3f847e03493663f66178590a8c6dfadae4eb')
-b2sums=('f634dceef47840f573b8c84d2af9f511486ea6d23a0e41d1157f1d0a433150aeba08da75284237573157ca9d5429cb47a79cfbe40356a7f875c8a14184173e15')
+sha512sums=('47b079849ee051544e74b006bcfff1f7965c79099db52f39f49e3f138137748712df2ef88f3fbd9715d44d9f2d118593f557dba1ede45a0168e7c813a4e65f46')
+b2sums=('e31be8b3f3879f5a266c9ca2893353c84b628833d923992f3aaedfca5ca60b7a5d3beceb4144911ebc311c5cbb7bcf442e5221aa2bbf494d5eac9ef11d253909')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-09-24 Thread Antonio Rojas via arch-commits
Date: Thursday, September 24, 2020 @ 20:51:32
  Author: arojas
Revision: 396488

Rebuild with ghostscript 9.53 (FS#67985)

Modified:
  libspectre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 20:35:02 UTC (rev 396487)
+++ PKGBUILD2020-09-24 20:51:32 UTC (rev 396488)
@@ -2,7 +2,7 @@
 
 pkgname=libspectre
 pkgver=0.2.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Small library for rendering Postscript documents"
 arch=('x86_64')
 license=('GPL2')


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

2020-09-24 Thread Antonio Rojas via arch-commits
Date: Thursday, September 24, 2020 @ 20:51:43
  Author: arojas
Revision: 396489

archrelease: copy trunk to extra-x86_64

Added:
  libspectre/repos/extra-x86_64/PKGBUILD
(from rev 396488, libspectre/trunk/PKGBUILD)
Deleted:
  libspectre/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 20:51:32 UTC (rev 396488)
+++ PKGBUILD2020-09-24 20:51:43 UTC (rev 396489)
@@ -1,23 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=libspectre
-pkgver=0.2.9
-pkgrel=1
-pkgdesc="Small library for rendering Postscript documents"
-arch=('x86_64')
-license=('GPL2')
-url="https://www.freedesktop.org/wiki/Software/libspectre;
-depends=('ghostscript>=9.00')
-source=(https://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('7c24b5c83c6d356c89417d09dc76566afbe886ec189fe80d030a239c23ad25b061db071768117fa06805aa3d86f749fb232b7491bd7d467f26a40e348e74d5d2')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libspectre/repos/extra-x86_64/PKGBUILD (from rev 396488, 
libspectre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-24 20:51:43 UTC (rev 396489)
@@ -0,0 +1,23 @@
+# Maintainer: Jan de Groot 
+
+pkgname=libspectre
+pkgver=0.2.9
+pkgrel=2
+pkgdesc="Small library for rendering Postscript documents"
+arch=('x86_64')
+license=('GPL2')
+url="https://www.freedesktop.org/wiki/Software/libspectre;
+depends=('ghostscript>=9.00')
+source=(https://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('7c24b5c83c6d356c89417d09dc76566afbe886ec189fe80d030a239c23ad25b061db071768117fa06805aa3d86f749fb232b7491bd7d467f26a40e348e74d5d2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:48:09
  Author: anthraxx
Revision: 711902

upgpkg: radare2-cutter 1:1.12.0-1

Modified:
  radare2-cutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 20:44:23 UTC (rev 711901)
+++ PKGBUILD2020-09-24 20:48:09 UTC (rev 711902)
@@ -3,10 +3,10 @@
 # Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
 
 pkgname=radare2-cutter
-_gitcommit=9a822ec3964381cb917da593b6404ee72be5433a
-pkgver=1.11.1
+_gitcommit=1adc30794b9d6906ee1ac86ceb80f3a612204169
+pkgver=1.12.0
 epoch=1
-pkgrel=2
+pkgrel=1
 pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
 url='https://github.com/radareorg/cutter'
 arch=('x86_64')


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:48:13
  Author: anthraxx
Revision: 711903

archrelease: copy trunk to community-staging-x86_64

Added:
  radare2-cutter/repos/community-staging-x86_64/
  radare2-cutter/repos/community-staging-x86_64/PKGBUILD
(from rev 711902, radare2-cutter/trunk/PKGBUILD)

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

Copied: radare2-cutter/repos/community-staging-x86_64/PKGBUILD (from rev 
711902, radare2-cutter/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-24 20:48:13 UTC (rev 711903)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Santiago Torres-Arias 
+# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
+
+pkgname=radare2-cutter
+_gitcommit=1adc30794b9d6906ee1ac86ceb80f3a612204169
+pkgver=1.12.0
+epoch=1
+pkgrel=1
+pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
+url='https://github.com/radareorg/cutter'
+arch=('x86_64')
+license=('GPL3')
+depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 
'python' 'jupyter'
+ 'pyside2' 'python-shiboken2' 'graphviz' 'gcc-libs')
+makedepends=('git' 'cmake' 'shiboken2' 'qt5-tools')
+optdepends=('r2ghidra-dec: ghidra decompiler plugin')
+source=(${pkgname}::"git+https://github.com/radareorg/cutter#commit=${_gitcommit};)
+sha512sums=('SKIP')
+b2sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd ${pkgname}/src
+  cmake -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DCUTTER_ENABLE_PYTHON=ON \
+-DCUTTER_ENABLE_PYTHON_BINDINGS=ON \
+-DCUTTER_USE_BUNDLED_RADARE2=OFF \
+-DCUTTER_USE_ADDITIONAL_RADARE2_PATHS=OFF \
+-DCUTTER_ENABLE_CRASH_REPORTS=OFF \
+-DCUTTER_ENABLE_GRAPHVIZ=ON
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm 755 src/build/Cutter -t "${pkgdir}/usr/bin"
+  install -Dm 644 src/org.radare.Cutter.desktop -t 
"${pkgdir}/usr/share/applications"
+  install -Dm 644 src/img/cutter.svg -t 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:44:20
  Author: anthraxx
Revision: 711900

upgpkg: r2ghidra-dec 4.5.1-1

Modified:
  r2ghidra-dec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-24 20:43:17 UTC (rev 711899)
+++ PKGBUILD2020-09-24 20:44:20 UTC (rev 711900)
@@ -1,9 +1,9 @@
 # Maintainer: Levente Polyak 
 
 pkgname=r2ghidra-dec
-_gitcommit=17ec3b3041e21f0492878e1d3147cdcd5830ae00
-_gitcutter=9a822ec3964381cb917da593b6404ee72be5433a
-pkgver=4.5.0
+_gitcommit=8e576eeadc211de4ac8d8c759cc368fa48cdfa99
+_gitcutter=1adc30794b9d6906ee1ac86ceb80f3a612204169
+pkgver=4.5.1
 pkgrel=1
 pkgdesc='Deep ghidra decompiler integration for radare2 and Cutter'
 url='https://github.com/radareorg/r2ghidra-dec'


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

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 20:44:23
  Author: anthraxx
Revision: 711901

archrelease: copy trunk to community-staging-x86_64

Added:
  r2ghidra-dec/repos/community-staging-x86_64/
  r2ghidra-dec/repos/community-staging-x86_64/PKGBUILD
(from rev 711900, r2ghidra-dec/trunk/PKGBUILD)

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

Copied: r2ghidra-dec/repos/community-staging-x86_64/PKGBUILD (from rev 711900, 
r2ghidra-dec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-24 20:44:23 UTC (rev 711901)
@@ -0,0 +1,59 @@
+# Maintainer: Levente Polyak 
+
+pkgname=r2ghidra-dec
+_gitcommit=8e576eeadc211de4ac8d8c759cc368fa48cdfa99
+_gitcutter=1adc30794b9d6906ee1ac86ceb80f3a612204169
+pkgver=4.5.1
+pkgrel=1
+pkgdesc='Deep ghidra decompiler integration for radare2 and Cutter'
+url='https://github.com/radareorg/r2ghidra-dec'
+arch=('x86_64')
+license=('LGPL3')
+depends=('radare2' 'glibc')
+makedepends=('git' 'cmake' 'qt5-base')
+provides=('radare2-cutter-r2ghidra-dec'
+  'radare2-r2ghidra-dec')
+source=("git+https://github.com/radareorg/r2ghidra-dec#commit=${_gitcommit};
+"git+https://github.com/radareorg/cutter#commit=${_gitcutter};
+thestr4ng3r-ghidra::git+https://github.com/thestr4ng3r/ghidra.git
+git+https://github.com/zeux/pugixml.git)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  git submodule init
+  git config submodule."third-party/pugixml".url "${srcdir}/pugixml"
+  git config submodule."ghidra/ghidra".url "${srcdir}/thestr4ng3r-ghidra"
+  git submodule update --recursive
+}
+
+build() {
+  cd ${pkgname}
+  cmake \
+-B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_CUTTER_PLUGIN=ON \
+-DBUILD_SLASPECS=ON \
+-DCUTTER_SOURCE_DIR="${srcdir}/cutter"
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}
+  make -C build DESTDIR="${pkgdir}" install
+  # move shared library into R2_LIBR_PLUGINS
+  r2version=$(r2 -version|grep radare2|sed -E 's/radare2 ([0-9\.]+) .*/\1/')
+  install -d "${pkgdir}/usr/lib/radare2/${r2version}"
+  mv "${pkgdir}"/usr/share/radare2/plugins/*.so -t 
"${pkgdir}/usr/lib/radare2/${r2version}"
+}
+
+# vim: ts=2 sw=2 et:


  1   2   3   4   >