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

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 04:27:36
  Author: polyzen
Revision: 1030938

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-19 04:26:32 UTC (rev 1030937)
+++ PKGBUILD2021-10-19 04:27:36 UTC (rev 1030938)
@@ -1,55 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: eolianoe 
-# Contributor: Étienne Deparis 
-# Contributor: Patrice Peterson 
-# Contributor: Patrick Burroughs 
-
-_name=tzlocal
-pkgname=python-tzlocal
-pkgver=2.1
-pkgrel=3
-pkgdesc="Tzinfo object for the local timezone"
-arch=('any')
-url="https://github.com/regebro/tzlocal;
-license=('MIT')
-depends=('python-pytz')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-mock')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('5419f3316dfcbf0355cc6f0790454fe6cecfa8b1ae17bfa7bf8aff89b0af3e63c94ffe9c22b11f612e53826a33e7179ff71bc2a86f6a358cdff36c7ae34e2453')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  # fix symlink, required for test: 
https://github.com/regebro/tzlocal/issues/53
-  cd tests/test_data/symlink_localtime/etc
-  ln -sfv ../usr/share/zoneinfo/Africa/Harare localtime
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  # disable failing timezone test:
-  # https://github.com/regebro/tzlocal/issues/89
-  pytest -v tests/tests.py -k 'not test_fail'
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --prefix=/usr \
-  --root="${pkgdir}"
-  # license
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  # docs
-  install -vDm 644 {CHANGES.txt,README.rst} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-# vim:set ts=2 sw=2 et:

Copied: python-tzlocal/repos/community-any/PKGBUILD (from rev 1030937, 
python-tzlocal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-19 04:27:36 UTC (rev 1030938)
@@ -0,0 +1,54 @@
+# Maintainer: David Runge 
+# Contributor: eolianoe 
+# Contributor: Étienne Deparis 
+# Contributor: Patrice Peterson 
+# Contributor: Patrick Burroughs 
+
+_name=tzlocal
+pkgname=python-tzlocal
+pkgver=4.0
+pkgrel=1
+pkgdesc="Tzinfo object for the local timezone"
+arch=('any')
+url="https://github.com/regebro/tzlocal;
+license=('MIT')
+depends=('python-pytz-deprecation-shim')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-mock')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('02a29b12b3bb30bc33d0f0184dcf32944bf41d3f0aa1c7c21a9621ca4326b260')
+b2sums=('bbf6628471fc8fc3f1ad541d6b8c20fde9cb75e819120648ca7bb526ff2ebbf352b467fd7bbfbb0c79cbe218a9aa1c5fbc1125edbfeff05247c312d6f21387f6')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  # fix symlink, required for test: 
https://github.com/regebro/tzlocal/issues/53
+  cd tests/test_data/symlink_localtime/etc
+  ln -sfv ../usr/share/zoneinfo/Africa/Harare localtime
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --prefix=/usr \
+  --root="${pkgdir}"
+  # license
+  install -vDm 644 LICENSE.txt \
+-t "${pkgdir}/usr/share/licenses/${pkgname}"
+  # docs
+  install -vDm 644 {CHANGES.txt,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+# vim:set ts=2 sw=2 et:



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

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 04:26:32
  Author: polyzen
Revision: 1030937

upgpkg: python-tzlocal 4.0-1

Modified:
  python-tzlocal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-19 04:22:52 UTC (rev 1030936)
+++ PKGBUILD2021-10-19 04:26:32 UTC (rev 1030937)
@@ -6,17 +6,18 @@
 
 _name=tzlocal
 pkgname=python-tzlocal
-pkgver=2.1
-pkgrel=3
+pkgver=4.0
+pkgrel=1
 pkgdesc="Tzinfo object for the local timezone"
 arch=('any')
 url="https://github.com/regebro/tzlocal;
 license=('MIT')
-depends=('python-pytz')
+depends=('python-pytz-deprecation-shim')
 makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-mock')
+checkdepends=('python-pytest' 'python-pytest-mock')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('5419f3316dfcbf0355cc6f0790454fe6cecfa8b1ae17bfa7bf8aff89b0af3e63c94ffe9c22b11f612e53826a33e7179ff71bc2a86f6a358cdff36c7ae34e2453')
+sha256sums=('02a29b12b3bb30bc33d0f0184dcf32944bf41d3f0aa1c7c21a9621ca4326b260')
+b2sums=('bbf6628471fc8fc3f1ad541d6b8c20fde9cb75e819120648ca7bb526ff2ebbf352b467fd7bbfbb0c79cbe218a9aa1c5fbc1125edbfeff05247c312d6f21387f6')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
@@ -34,9 +35,7 @@
 check() {
   cd "${pkgname}-${pkgver}"
   export PYTHONPATH="build:${PYTHONPATH}"
-  # disable failing timezone test:
-  # https://github.com/regebro/tzlocal/issues/89
-  pytest -v tests/tests.py -k 'not test_fail'
+  pytest -v
 }
 
 package() {



[arch-commits] Commit in python-pytz-deprecation-shim/repos (2 files)

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 04:22:52
  Author: polyzen
Revision: 1030936

archrelease: copy trunk to community-any

Added:
  python-pytz-deprecation-shim/repos/community-any/
  python-pytz-deprecation-shim/repos/community-any/PKGBUILD
(from rev 1030935, python-pytz-deprecation-shim/trunk/PKGBUILD)

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

Copied: python-pytz-deprecation-shim/repos/community-any/PKGBUILD (from rev 
1030935, python-pytz-deprecation-shim/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-10-19 04:22:52 UTC (rev 1030936)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+
+_name=pytz_deprecation_shim
+pkgname=python-pytz-deprecation-shim
+pkgver=0.1.0.post0
+pkgrel=1
+pkgdesc='Shims to make deprecation of pytz easier'
+arch=('any')
+url=https://github.com/pganssle/pytz-deprecation-shim
+license=('Apache')
+depends=('python-tzdata')
+makedepends=('python-build' 'python-install' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-hypothesis' 'python-pytest' 'python-pytz')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('af097bae1b616dde5c571e2ddc69e74dfdcb0c263129610d85b87445a59d')
+b2sums=('a6d186ca6fff17a3fb787ad6164fcf45fbac272e6123491a6822699cf54a115c9941f2b1ee3d227f531a0ab1d11846300dc24974611cc1671c77405606704754')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python -m install --optimize=1 --destdir=temp dist/*.whl
+  PYTHONPATH="$PWD/temp/$site_packages" pytest tests
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 04:22:22
  Author: polyzen
Revision: 1030935

Add python-pytz-deprecation-shim as dep of python-tzlocal

Added:
  python-pytz-deprecation-shim/
  python-pytz-deprecation-shim/repos/
  python-pytz-deprecation-shim/trunk/
  python-pytz-deprecation-shim/trunk/PKGBUILD

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

Added: python-pytz-deprecation-shim/trunk/PKGBUILD
===
--- python-pytz-deprecation-shim/trunk/PKGBUILD (rev 0)
+++ python-pytz-deprecation-shim/trunk/PKGBUILD 2021-10-19 04:22:22 UTC (rev 
1030935)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+
+_name=pytz_deprecation_shim
+pkgname=python-pytz-deprecation-shim
+pkgver=0.1.0.post0
+pkgrel=1
+pkgdesc='Shims to make deprecation of pytz easier'
+arch=('any')
+url=https://github.com/pganssle/pytz-deprecation-shim
+license=('Apache')
+depends=('python-tzdata')
+makedepends=('python-build' 'python-install' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-hypothesis' 'python-pytest' 'python-pytz')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('af097bae1b616dde5c571e2ddc69e74dfdcb0c263129610d85b87445a59d')
+b2sums=('a6d186ca6fff17a3fb787ad6164fcf45fbac272e6123491a6822699cf54a115c9941f2b1ee3d227f531a0ab1d11846300dc24974611cc1671c77405606704754')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python -m install --optimize=1 --destdir=temp dist/*.whl
+  PYTHONPATH="$PWD/temp/$site_packages" pytest tests
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 04:21:02
  Author: polyzen
Revision: 1030934

archrelease: copy trunk to community-any

Added:
  python-tzdata/repos/community-any/
  python-tzdata/repos/community-any/PKGBUILD
(from rev 1030933, python-tzdata/trunk/PKGBUILD)

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

Copied: python-tzdata/repos/community-any/PKGBUILD (from rev 1030933, 
python-tzdata/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-10-19 04:21:02 UTC (rev 1030934)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+
+_name=tzdata
+pkgname=python-tzdata
+pkgver=2021.2.post0
+pkgrel=1
+pkgdesc='Provider of IANA time zone data'
+arch=('any')
+url=https://github.com/python/tzdata
+license=('Apache')
+depends=('python')
+makedepends=('python-build' 'python-install' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'python-pytest-subtests')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('99d30a01967bb8d7868c03dc924862b1ae8a0e649a322a1107bacc1723c430b9')
+b2sums=('34648e3f086d395377be2f51dec7b1881942a7b72377d092a5338b8e4c3408c25eea693025ee75e4cd0f31667f19aa4da9fccdcad66ac23a0268142d62814bc0')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python -m install --optimize=1 --destdir=temp dist/*.whl
+  PYTHONPATH="$PWD/temp/$site_packages" pytest tests
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 04:20:40
  Author: polyzen
Revision: 1030933

Add python-tzdata as dep of python-pytz-deprecation-shim

Added:
  python-tzdata/
  python-tzdata/repos/
  python-tzdata/trunk/
  python-tzdata/trunk/PKGBUILD

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

Added: python-tzdata/trunk/PKGBUILD
===
--- python-tzdata/trunk/PKGBUILD(rev 0)
+++ python-tzdata/trunk/PKGBUILD2021-10-19 04:20:40 UTC (rev 1030933)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+
+_name=tzdata
+pkgname=python-tzdata
+pkgver=2021.2.post0
+pkgrel=1
+pkgdesc='Provider of IANA time zone data'
+arch=('any')
+url=https://github.com/python/tzdata
+license=('Apache')
+depends=('python')
+makedepends=('python-build' 'python-install' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'python-pytest-subtests')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('99d30a01967bb8d7868c03dc924862b1ae8a0e649a322a1107bacc1723c430b9')
+b2sums=('34648e3f086d395377be2f51dec7b1881942a7b72377d092a5338b8e4c3408c25eea693025ee75e4cd0f31667f19aa4da9fccdcad66ac23a0268142d62814bc0')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python -m install --optimize=1 --destdir=temp dist/*.whl
+  PYTHONPATH="$PWD/temp/$site_packages" pytest tests
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 00:43:21
  Author: polyzen
Revision: 1030932

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-19 00:43:02 UTC (rev 1030931)
+++ PKGBUILD2021-10-19 00:43:21 UTC (rev 1030932)
@@ -1,40 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=python-pycares
-pkgver=4.0.0
-pkgrel=1
-pkgdesc='Python interface for c-ares'
-arch=('x86_64')
-url=https://github.com/saghul/pycares
-license=('MIT')
-depends=('c-ares' 'python-cffi')
-makedepends=('python-setuptools')
-#checkdepends=('python-idna')
-optdepends=('python-idna')
-source=("https://files.pythonhosted.org/packages/source/p/pycares/pycares-$pkgver.tar.gz;)
-sha256sums=('d0154fc5753b088758fbec9bc137e1b24bb84fc0c6a09725c8bac25a342311cd')
-b2sums=('cf83efcd3b7f0c32dfd013c4211ae0bce2cbc8cfa49f295239f315b3217d17c2cf1f6e491c41b4b3ca4de8762405f560a62d1ef6252b961bc94fed2253b6a632')
-
-build() {
-  cd pycares-$pkgver
-  PYCARES_USE_SYSTEM_LIB=1 python setup.py build
-}
-
-# Test failures: test_custom_resolvconf, test_getaddrinfo{,2..4},
-#gethostbyaddr{,6}, gethostbyname{,_small_timeout},
-#test_getnameinfo
-#check() {
-#  cd pycares-$pkgver
-#  mkdir -p temp
-#  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-#  python setup.py install --skip-build --root=temp
-#  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$site_packages" python 
tests/tests.py
-#}
-
-package() {
-  cd pycares-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pycares/repos/community-x86_64/PKGBUILD (from rev 1030931, 
python-pycares/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-19 00:43:21 UTC (rev 1030932)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=python-pycares
+pkgver=4.1.2
+pkgrel=1
+pkgdesc='Python interface for c-ares'
+arch=('x86_64')
+url=https://github.com/saghul/pycares
+license=('MIT')
+depends=('c-ares' 'python-cffi')
+makedepends=('python-setuptools')
+#checkdepends=('python-idna')
+optdepends=('python-idna')
+source=("https://files.pythonhosted.org/packages/source/p/pycares/pycares-$pkgver.tar.gz;)
+sha256sums=('03490be0e7b51a0c8073f877bec347eff31003f64f57d9518d419d9369452837')
+b2sums=('0996030aa19aac737a7d1e98561bc4b99d6e99c97e989a823b4e4222de895e8fcf49bbfa76e39cfe59a39394c64f8f60e3da1b157cd3a62d4e2f1e8e71607f59')
+
+build() {
+  cd pycares-$pkgver
+  PYCARES_USE_SYSTEM_LIB=1 python setup.py build
+}
+
+# Test failures: test_custom_resolvconf, test_getaddrinfo{,2..4},
+#gethostbyaddr{,6}, gethostbyname{,_small_timeout},
+#test_getnameinfo
+#check() {
+#  cd pycares-$pkgver
+#  mkdir -p temp
+#  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+#  python setup.py install --root=temp --optimize=1 --skip-build
+#  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$site_packages" python 
tests/tests.py
+#}
+
+package() {
+  cd pycares-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 00:43:02
  Author: polyzen
Revision: 1030931

upgpkg: python-pycares 4.1.2-1

Modified:
  python-pycares/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-19 00:34:58 UTC (rev 1030930)
+++ PKGBUILD2021-10-19 00:43:02 UTC (rev 1030931)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=python-pycares
-pkgver=4.0.0
+pkgver=4.1.2
 pkgrel=1
 pkgdesc='Python interface for c-ares'
 arch=('x86_64')
@@ -12,8 +12,8 @@
 #checkdepends=('python-idna')
 optdepends=('python-idna')
 
source=("https://files.pythonhosted.org/packages/source/p/pycares/pycares-$pkgver.tar.gz;)
-sha256sums=('d0154fc5753b088758fbec9bc137e1b24bb84fc0c6a09725c8bac25a342311cd')
-b2sums=('cf83efcd3b7f0c32dfd013c4211ae0bce2cbc8cfa49f295239f315b3217d17c2cf1f6e491c41b4b3ca4de8762405f560a62d1ef6252b961bc94fed2253b6a632')
+sha256sums=('03490be0e7b51a0c8073f877bec347eff31003f64f57d9518d419d9369452837')
+b2sums=('0996030aa19aac737a7d1e98561bc4b99d6e99c97e989a823b4e4222de895e8fcf49bbfa76e39cfe59a39394c64f8f60e3da1b157cd3a62d4e2f1e8e71607f59')
 
 build() {
   cd pycares-$pkgver
@@ -27,7 +27,7 @@
 #  cd pycares-$pkgver
 #  mkdir -p temp
 #  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-#  python setup.py install --skip-build --root=temp
+#  python setup.py install --root=temp --optimize=1 --skip-build
 #  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$site_packages" python 
tests/tests.py
 #}
 



[arch-commits] Commit in lua-language-server/repos/community-x86_64 (4 files)

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 00:34:58
  Author: polyzen
Revision: 1030930

archrelease: copy trunk to community-x86_64

Added:
  lua-language-server/repos/community-x86_64/PKGBUILD
(from rev 1030929, lua-language-server/trunk/PKGBUILD)
  lua-language-server/repos/community-x86_64/wrapper
(from rev 1030929, lua-language-server/trunk/wrapper)
Deleted:
  lua-language-server/repos/community-x86_64/PKGBUILD
  lua-language-server/repos/community-x86_64/wrapper

--+
 PKGBUILD |  116 ++---
 wrapper  |   16 
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-19 00:34:36 UTC (rev 1030929)
+++ PKGBUILD2021-10-19 00:34:58 UTC (rev 1030930)
@@ -1,58 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: KokaKiwi 
-# Contributor: Mohammad AlSaleh 
-
-pkgname=lua-language-server
-pkgver=2.4.4
-pkgrel=1
-license=('MIT')
-pkgdesc='Lua Language Server coded by Lua'
-url=https://github.com/sumneko/lua-language-server
-arch=('x86_64')
-depends=('bash' 'gcc-libs')
-makedepends=('git' 'ninja')
-source=("git+$url.git#tag=$pkgver"
-'git+https://github.com/actboy168/bee.lua.git'
-'git+https://github.com/love2d-community/love-api.git'
-'git+https://github.com/sqmedeiros/lpeglabel.git'
-'git+https://github.com/actboy168/luamake.git'
-'git+https://github.com/electron/rcedit.git'
-'wrapper')
-b2sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'0e7bac7ff59c86dc9d6124a139773586846d6224b7b6c7941e1b6672c4c387746bc3d3fb85a62225e4f1740774273648109783281686a957b650838f7f1e10cd')
-
-prepare() {
-  cd $pkgname
-  git submodule init
-  for i in ../{bee.lua,love-api,lpeglabel,luamake,rcedit}; do
-git config submodule.3rd/${i##../}.url $i
-  done
-  git submodule update
-  cd 3rd/luamake
-  git submodule init
-  git config submodule.3rd/bee.lua.url ../../../bee.lua
-  git submodule update
-}
-
-build() {
-  cd $pkgname
-  ninja -C 3rd/luamake -f compile/ninja/linux.ninja
-  ./3rd/luamake/luamake rebuild
-}
-
-package() {
-  install -D wrapper "$pkgdir"/usr/bin/$pkgname
-  cd $pkgname
-  install -Dt "$pkgdir"/usr/lib/$pkgname/bin/Linux bin/Linux/$pkgname
-  install -m644 -t "$pkgdir"/usr/lib/$pkgname/bin/Linux bin/Linux/main.lua
-  install -m644 -t "$pkgdir"/usr/lib/$pkgname {debugger,main}.lua
-  cp -r locale meta script "$pkgdir"/usr/lib/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lua-language-server/repos/community-x86_64/PKGBUILD (from rev 1030929, 
lua-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-19 00:34:58 UTC (rev 1030930)
@@ -0,0 +1,58 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: KokaKiwi 
+# Contributor: Mohammad AlSaleh 
+
+pkgname=lua-language-server
+pkgver=2.4.5
+pkgrel=1
+license=('MIT')
+pkgdesc='Lua Language Server coded by Lua'
+url=https://github.com/sumneko/lua-language-server
+arch=('x86_64')
+depends=('bash' 'gcc-libs')
+makedepends=('git' 'ninja')
+source=("git+$url.git#tag=$pkgver"
+'git+https://github.com/actboy168/bee.lua.git'
+'git+https://github.com/love2d-community/love-api.git'
+'git+https://github.com/sqmedeiros/lpeglabel.git'
+'git+https://github.com/actboy168/luamake.git'
+'git+https://github.com/electron/rcedit.git'
+'wrapper')
+b2sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'0e7bac7ff59c86dc9d6124a139773586846d6224b7b6c7941e1b6672c4c387746bc3d3fb85a62225e4f1740774273648109783281686a957b650838f7f1e10cd')
+
+prepare() {
+  cd $pkgname
+  git submodule init
+  for i in ../{bee.lua,love-api,lpeglabel,luamake,rcedit}; do
+git config submodule.3rd/${i##../}.url $i
+  done
+  git submodule update
+  cd 3rd/luamake
+  git submodule init
+  git config submodule.3rd/bee.lua.url ../../../bee.lua
+  git submodule update
+}
+
+build() {
+  cd $pkgname
+  ninja -C 3rd/luamake -f compile/ninja/linux.ninja
+  ./3rd/luamake/luamake rebuild
+}
+
+package() {
+  install -D wrapper "$pkgdir"/usr/bin/$pkgname
+  cd $pkgname
+  install -Dt "$pkgdir"/usr/lib/$pkgname/bin/Linux bin/Linux/$pkgname
+  install -m644 -t "$pkgdir"/usr/lib/$pkgname/bin/Linux bin/Linux/main.lua
+  install -m644 -t "$pkgdir"/usr/lib/$pkgname {debugger,main}.lua
+  cp -r locale meta script "$pkgdir"/usr/lib/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: wrapper
===
--- wrapper 2021-10-19 00:34:36 UTC (rev 1030929)
+++ wrapper 2021-10-19 00:34:58 UTC (rev 1030930)
@@ -1,8 +0,0 @@
-#!/usr/bin/env sh

[arch-commits] Commit in lua-language-server/trunk (PKGBUILD)

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 00:34:36
  Author: polyzen
Revision: 1030929

upgpkg: lua-language-server 2.4.5-1

Modified:
  lua-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-19 00:26:17 UTC (rev 1030928)
+++ PKGBUILD2021-10-19 00:34:36 UTC (rev 1030929)
@@ -3,7 +3,7 @@
 # Contributor: Mohammad AlSaleh 
 
 pkgname=lua-language-server
-pkgver=2.4.4
+pkgver=2.4.5
 pkgrel=1
 license=('MIT')
 pkgdesc='Lua Language Server coded by Lua'



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

2021-10-18 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, October 19, 2021 @ 00:33:43
  Author: seblu
Revision: 426223

archrelease: copy trunk to testing-x86_64

Added:
  file/repos/testing-x86_64/
  file/repos/testing-x86_64/PKGBUILD
(from rev 426222, file/trunk/PKGBUILD)

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

Copied: file/repos/testing-x86_64/PKGBUILD (from rev 426222, 
file/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-10-19 00:33:43 UTC (rev 426223)
@@ -0,0 +1,60 @@
+# Maintainer: Sébastien Luttringer 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=file
+pkgver=5.41
+pkgrel=1
+pkgdesc='File type identification utility'
+arch=('x86_64')
+license=('custom')
+groups=('base-devel')
+url='https://www.darwinsys.com/file/'
+depends=('glibc' 'zlib' 'xz' 'bzip2' 'libseccomp' 'libseccomp.so')
+provides=('libmagic.so')
+options=('!emptydirs')
+source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
+sha256sums=('13e532c7b364f7d57e23dfeea3147103150cb90593a57af86c10e4f6e411603f'
+'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Fix linking libmagic (vfork needs libpthread)
+  CFLAGS+=" -pthread"
+
+  ./configure \
+--prefix=/usr \
+--datadir=/usr/share/file \
+--enable-fsect-man5 \
+--enable-libseccomp
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in file/trunk (PKGBUILD pr256.patch pr259.patch pr261.patch)

2021-10-18 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, October 19, 2021 @ 00:33:38
  Author: seblu
Revision: 426222

upgpkg: file 5.41-1

Modified:
  file/trunk/PKGBUILD
Deleted:
  file/trunk/pr256.patch
  file/trunk/pr259.patch
  file/trunk/pr261.patch

-+
 PKGBUILD|   19 +-
 pr256.patch |   23 --
 pr259.patch |   59 --
 pr261.patch |   44 ---
 4 files changed, 6 insertions(+), 139 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 21:21:26 UTC (rev 426221)
+++ PKGBUILD2021-10-19 00:33:38 UTC (rev 426222)
@@ -3,8 +3,8 @@
 # Contributor: Andreas Radke 
 
 pkgname=file
-pkgver=5.40
-pkgrel=6
+pkgver=5.41
+pkgrel=1
 pkgdesc='File type identification utility'
 arch=('x86_64')
 license=('custom')
@@ -12,18 +12,11 @@
 url='https://www.darwinsys.com/file/'
 depends=('glibc' 'zlib' 'xz' 'bzip2' 'libseccomp' 'libseccomp.so')
 provides=('libmagic.so')
-source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
-"pr256.patch" # fix binary detection that breaks subversion tests
-"pr259.patch" # mime printing through indirect magic is not taken into 
account, use match directly so that it does
-"pr261.patch" # follow-up patch which restores file 5.39 behavior
-
"https://github.com/file/file/commit/9b0459afab309a82aa4e46f73a4e50dd641f3d39.patch;)
+options=('!emptydirs')
+source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
-sha256sums=('167321f43c148a553f68a0ea7f579821ef3b11c27b8cbe158e4df897e4a5dd57'
-'SKIP'
-'5fd8dc41a10ee8097ddbffad37e07ea417b6ea5ff9d416d4aadfe15bc33a46df'
-'e811744d8e02883e7ddea67497a113db6a9a176dd6c3696d43498ad15440aa6c'
-'c149311a54ee2539344d6ace2cb733e45bc1c134cd91d50d462dd9edbff916f5'
-'f5d9c964233b75d6b5ac1b95fe4cc23143fbc6070d3b136e91b542021959e7dd')
+sha256sums=('13e532c7b364f7d57e23dfeea3147103150cb90593a57af86c10e4f6e411603f'
+'SKIP')
 
 prepare() {
   cd $pkgname-$pkgver

Deleted: pr256.patch
===
--- pr256.patch 2021-10-18 21:21:26 UTC (rev 426221)
+++ pr256.patch 2021-10-19 00:33:38 UTC (rev 426222)
@@ -1,23 +0,0 @@
-From 749e1ecfc3d333e5ec8b1a2e639da7ccb2498c34 Mon Sep 17 00:00:00 2001
-From: Christos Zoulas 
-Date: Mon, 19 Apr 2021 18:38:04 +
-Subject: [PATCH] PR/256: mutableVoid: If the file is less than 3 bytes, use
- the file length to determine type
-

- src/encoding.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/encoding.c b/src/encoding.c
-index 0fb1f47b..31d4d125 100644
 a/src/encoding.c
-+++ b/src/encoding.c
-@@ -285,7 +285,7 @@ looks_ ## NAME(const unsigned char *buf, size_t nbytes, 
file_unichar_t *ubuf, \
-   if (dist[i]) \
-   u++; \
-   } \
--  if (u < 3) \
-+  if (u < MIN(nbytes, 3)) \
-   return 0; \
- \
-   return 1; \

Deleted: pr259.patch
===
--- pr259.patch 2021-10-18 21:21:26 UTC (rev 426221)
+++ pr259.patch 2021-10-19 00:33:38 UTC (rev 426222)
@@ -1,59 +0,0 @@
-From 07595622bd09e5b09720ccd717d2d862703a95fe Mon Sep 17 00:00:00 2001
-From: Christos Zoulas 
-Date: Mon, 19 Apr 2021 16:47:13 +
-Subject: PR/259: aleksandr.v.novichkov: mime printing through indirect magic
- is not taken into account, use match directly so that it does.
-

- src/softmagic.c | 15 +++
- 1 file changed, 11 insertions(+), 4 deletions(-)
-
-diff --git a/src/softmagic.c b/src/softmagic.c
-index 1ec3e604..2eb5b630 100644
 a/src/softmagic.c
-+++ b/src/softmagic.c
-@@ -1559,7 +1559,7 @@ mget(struct magic_set *ms, struct magic *m, const struct 
buffer *b,
-   int rv, oneed_separator, in_type, nfound_match;
-   char *rbuf;
-   union VALUETYPE *p = >ms_value;
--  struct mlist ml;
-+  struct mlist ml, *mlp;
-   struct cont c;
- 
-   if (*indir_count >= ms->indir_max) {
-@@ -1829,8 +1829,15 @@ mget(struct magic_set *ms, struct magic *m, const 
struct buffer *b,
-   bb = *b;
-   bb.fbuf = s + offset;
-   bb.flen = nbytes - offset;
--  rv = file_softmagic(ms, ,
--  indir_count, name_count, BINTEST, text);
-+  for (mlp = ms->mlist[0]->next; mlp != ms->mlist[0];
-+  mlp = mlp->next)
-+  {
-+  if ((rv = match(ms, mlp->magic, mlp->nmagic, , 0,
-+  BINTEST, text, 0, indir_count, name_count,
-+  printed_something, need_separator, NULL,
-+  NULL)) != 0)
-+  break;
-+  }
- 
-   if 

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

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 00:26:17
  Author: polyzen
Revision: 1030928

archrelease: copy trunk to community-x86_64

Added:
  rust-analyzer/repos/community-x86_64/PKGBUILD
(from rev 1030927, rust-analyzer/trunk/PKGBUILD)
Deleted:
  rust-analyzer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-19 00:25:52 UTC (rev 1030927)
+++ PKGBUILD2021-10-19 00:26:17 UTC (rev 1030928)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Sergey A. 
-
-pkgname=rust-analyzer
-_pkgver=2021-10-11
-pkgver=${_pkgver//-}
-pkgrel=1
-pkgdesc='Rust compiler front-end for IDEs'
-arch=('x86_64')
-url=https://rust-analyzer.github.io/
-license=('Apache' 'MIT')
-depends=('gcc-libs' 'rust')
-makedepends=('git')
-source=("git+https://github.com/rust-analyzer/rust-analyzer.git#tag=$_pkgver;)
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  cargo fetch --locked
-}
-
-build() {
-  cd $pkgname
-  RUST_ANALYZER_REV=$_pkgver cargo build --release --locked --offline
-}
-
-package() {
-  cd $pkgname
-  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust-analyzer/repos/community-x86_64/PKGBUILD (from rev 1030927, 
rust-analyzer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-19 00:26:17 UTC (rev 1030928)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Sergey A. 
+
+pkgname=rust-analyzer
+_pkgver=2021-10-18
+pkgver=${_pkgver//-}
+pkgrel=1
+pkgdesc='Rust compiler front-end for IDEs'
+arch=('x86_64')
+url=https://rust-analyzer.github.io/
+license=('Apache' 'MIT')
+depends=('gcc-libs' 'rust')
+makedepends=('git')
+source=("git+https://github.com/rust-analyzer/rust-analyzer.git#tag=$_pkgver;)
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  cargo fetch --locked
+}
+
+build() {
+  cd $pkgname
+  RUST_ANALYZER_REV=$_pkgver cargo build --release --locked --offline
+}
+
+package() {
+  cd $pkgname
+  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-10-18 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 19, 2021 @ 00:25:52
  Author: polyzen
Revision: 1030927

upgpkg: rust-analyzer 20211018-1

Modified:
  rust-analyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 23:41:54 UTC (rev 1030926)
+++ PKGBUILD2021-10-19 00:25:52 UTC (rev 1030927)
@@ -2,7 +2,7 @@
 # Contributor: Sergey A. 
 
 pkgname=rust-analyzer
-_pkgver=2021-10-11
+_pkgver=2021-10-18
 pkgver=${_pkgver//-}
 pkgrel=1
 pkgdesc='Rust compiler front-end for IDEs'



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

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 23:41:54
  Author: felixonmars
Revision: 1030926

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 23:41:46 UTC (rev 1030925)
+++ PKGBUILD2021-10-18 23:41:54 UTC (rev 1030926)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-marshmallow
-pkgver=3.13.0
-pkgrel=2
-pkgdesc="A lightweight library for converting complex datatypes to and from 
native Python datatypes."
-url="https://github.com/marshmallow-code/marshmallow;
-license=('MIT')
-arch=('any')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-simplejson' 'python-pytz' 
'python-dateutil')
-source=("https://pypi.io/packages/source/m/marshmallow/marshmallow-$pkgver.tar.gz;)
-sha512sums=('e4425bfa26609c80bc581b60be5554effe4a57eafc36338dc672cb0b42fc14d788a1ef3b4506b6429bf8d235e6edb10925173c8414b2abca12a4c7bb5496ed53')
-
-build() {
-  cd "$srcdir"/marshmallow-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/marshmallow-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd marshmallow-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-marshmallow/repos/community-any/PKGBUILD (from rev 1030925, 
python-marshmallow/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 23:41:54 UTC (rev 1030926)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-marshmallow
+pkgver=3.14.0
+pkgrel=1
+pkgdesc="A lightweight library for converting complex datatypes to and from 
native Python datatypes."
+url="https://github.com/marshmallow-code/marshmallow;
+license=('MIT')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-simplejson' 'python-pytz' 
'python-dateutil')
+source=("https://pypi.io/packages/source/m/marshmallow/marshmallow-$pkgver.tar.gz;)
+sha512sums=('3eed3cb7ba063c6a3503091b46443c6ad96f82e6c21e7ceb047b379dddad4429e59a8e5c828be258433b2743a8231bb338ef96f21767f17ed75fe44138bb0d64')
+
+build() {
+  cd "$srcdir"/marshmallow-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/marshmallow-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd marshmallow-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 23:41:46
  Author: felixonmars
Revision: 1030925

upgpkg: python-marshmallow 3.14.0-1

Modified:
  python-marshmallow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 23:41:00 UTC (rev 1030924)
+++ PKGBUILD2021-10-18 23:41:46 UTC (rev 1030925)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-marshmallow
-pkgver=3.13.0
-pkgrel=2
+pkgver=3.14.0
+pkgrel=1
 pkgdesc="A lightweight library for converting complex datatypes to and from 
native Python datatypes."
 url="https://github.com/marshmallow-code/marshmallow;
 license=('MIT')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner' 'python-simplejson' 'python-pytz' 
'python-dateutil')
 
source=("https://pypi.io/packages/source/m/marshmallow/marshmallow-$pkgver.tar.gz;)
-sha512sums=('e4425bfa26609c80bc581b60be5554effe4a57eafc36338dc672cb0b42fc14d788a1ef3b4506b6429bf8d235e6edb10925173c8414b2abca12a4c7bb5496ed53')
+sha512sums=('3eed3cb7ba063c6a3503091b46443c6ad96f82e6c21e7ceb047b379dddad4429e59a8e5c828be258433b2743a8231bb338ef96f21767f17ed75fe44138bb0d64')
 
 build() {
   cd "$srcdir"/marshmallow-$pkgver



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 23:41:00
  Author: grawlinson
Revision: 1030924

archrelease: copy trunk to community-x86_64

Added:
  distrobuilder/repos/community-x86_64/PKGBUILD
(from rev 1030923, distrobuilder/trunk/PKGBUILD)
Deleted:
  distrobuilder/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 23:40:18 UTC (rev 1030923)
+++ PKGBUILD2021-10-18 23:41:00 UTC (rev 1030924)
@@ -1,62 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: graysky 
-# Contributor: Stéphane Graber 
-
-pkgname=distrobuilder
-pkgver=1.3
-pkgrel=2
-pkgdesc="System container image builder for LXC and LXD"
-arch=('x86_64')
-url="https://github.com/lxc/distrobuilder;
-license=('Apache')
-depends=(
-  'rsync'
-  'squashfs-tools'
-  'gnupg'
-  'debootstrap'
-  'dosfstools'
-  'gptfdisk'
-  'qemu'
-  'e2fsprogs'
-  'btrfs-progs'
-)
-makedepends=('go' 'git')
-conflicts=('distrobuilder-git')
-source=("$url/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
-b2sums=('fa3b9ee784fb84f349e0646389ee4cb11811cde15da11ce7cdc2f983f39e2ced51612d734ea2093865dc4f141951287be772e414907fe09d4b364f7a70acd7f0'
-'SKIP')
-validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67') # Stéphane Graber 

-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # create folder for build output
-  mkdir build
-
-  # download dependencies
-  go mod vendor
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  # set Go flags
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-
-  # build binary
-  go build -v -o build ./...
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  go test -v ./...
-  go vet -v ./...
-}
-
-package() {
-  install -vDm755 -t "$pkgdir/usr/bin" "$pkgname-$pkgver/build/$pkgname"
-}

Copied: distrobuilder/repos/community-x86_64/PKGBUILD (from rev 1030923, 
distrobuilder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 23:41:00 UTC (rev 1030924)
@@ -0,0 +1,64 @@
+# Maintainer: George Rawlinson 
+# Contributor: graysky 
+# Contributor: Stéphane Graber 
+
+pkgname=distrobuilder
+pkgver=2.0
+pkgrel=1
+pkgdesc="System container image builder for LXC and LXD"
+arch=('x86_64')
+url="https://github.com/lxc/distrobuilder;
+license=('Apache')
+depends=(
+  'rsync'
+  'squashfs-tools'
+  'gnupg'
+  'debootstrap'
+  'dosfstools'
+  'gptfdisk'
+  'qemu'
+  'e2fsprogs'
+  'btrfs-progs'
+)
+makedepends=('go' 'git')
+conflicts=('distrobuilder-git')
+source=("$url/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('9007200845ca0b2b3964eb492abe9fb5e8fecfcba0f829c8e0f22a4e0d73ffed5c8e620694193822e2bc6d07ef9ba48b873a21203998d3b149e06ee6fbf24c23'
+'SKIP')
+b2sums=('8ad432a65ed1416c22eb674684fc3b93c7f6cba4045ba79706d7c810670187e50424b725f3d189b8e2019ee992901ace3ed4035827aa5a67dfbfb008e3dc4771'
+'SKIP')
+validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67') # Stéphane Graber 

+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # create folder for build output
+  mkdir build
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # set Go flags
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+
+  # verify modules
+  go mod verify
+
+  # build binary
+  go build -v -o build ./...
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  go test -v ./...
+  go vet -v ./...
+}
+
+package() {
+  install -vDm755 -t "$pkgdir/usr/bin" "$pkgname-$pkgver/build/$pkgname"
+}



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 23:40:18
  Author: grawlinson
Revision: 1030923

upgpkg: distrobuilder 2.0-1

New upstream release.

Modified:
  distrobuilder/trunk/PKGBUILD

--+
 PKGBUILD |   16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 22:36:06 UTC (rev 1030922)
+++ PKGBUILD2021-10-18 23:40:18 UTC (rev 1030923)
@@ -3,8 +3,8 @@
 # Contributor: Stéphane Graber 
 
 pkgname=distrobuilder
-pkgver=1.3
-pkgrel=2
+pkgver=2.0
+pkgrel=1
 pkgdesc="System container image builder for LXC and LXD"
 arch=('x86_64')
 url="https://github.com/lxc/distrobuilder;
@@ -23,7 +23,9 @@
 makedepends=('go' 'git')
 conflicts=('distrobuilder-git')
 
source=("$url/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
-b2sums=('fa3b9ee784fb84f349e0646389ee4cb11811cde15da11ce7cdc2f983f39e2ced51612d734ea2093865dc4f141951287be772e414907fe09d4b364f7a70acd7f0'
+sha512sums=('9007200845ca0b2b3964eb492abe9fb5e8fecfcba0f829c8e0f22a4e0d73ffed5c8e620694193822e2bc6d07ef9ba48b873a21203998d3b149e06ee6fbf24c23'
+'SKIP')
+b2sums=('8ad432a65ed1416c22eb674684fc3b93c7f6cba4045ba79706d7c810670187e50424b725f3d189b8e2019ee992901ace3ed4035827aa5a67dfbfb008e3dc4771'
 'SKIP')
 validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67') # Stéphane Graber 

 
@@ -32,9 +34,6 @@
 
   # create folder for build output
   mkdir build
-
-  # download dependencies
-  go mod vendor
 }
 
 build() {
@@ -45,8 +44,11 @@
   export CGO_CFLAGS="$CFLAGS"
   export CGO_CXXFLAGS="$CXXFLAGS"
   export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
 
+  # verify modules
+  go mod verify
+
   # build binary
   go build -v -o build ./...
 }



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 22:36:06
  Author: grawlinson
Revision: 1030922

archrelease: copy trunk to community-any

Added:
  vaultwarden-web/repos/community-any/PKGBUILD
(from rev 1030921, vaultwarden-web/trunk/PKGBUILD)
  vaultwarden-web/repos/community-any/vaultwarden-web.install
(from rev 1030921, vaultwarden-web/trunk/vaultwarden-web.install)
Deleted:
  vaultwarden-web/repos/community-any/PKGBUILD
  vaultwarden-web/repos/community-any/vaultwarden-web.install

-+
 PKGBUILD|   95 +++---
 vaultwarden-web.install |   18 
 2 files changed, 58 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 22:35:14 UTC (rev 1030921)
+++ PKGBUILD2021-10-18 22:36:06 UTC (rev 1030922)
@@ -1,46 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Markus Richter 
-
-pkgname=vaultwarden-web
-_pkgver=2.23.0
-pkgver=2.23.0
-_upstreamver=${_pkgver%[[:lower:]]}
-_patchver=$_upstreamver
-pkgrel=1
-pkgdesc='Bitwarden web vault with the patches to make it work with vaultwarden'
-arch=('any')
-url=https://github.com/dani-garcia/bw_web_builds
-license=('GPL3')
-depends=('vaultwarden')
-makedepends=('git' 'nodejs-lts-fermium' 'npm')
-provides=('bitwarden_rs-vault' 'bitwarden_rs-web')
-replaces=('bitwarden_rs-vault' 'bitwarden_rs-web')
-install=$pkgname.install
-source=("bitwarden-web::git+https://github.com/bitwarden/web.git#tag=v$_upstreamver;
-
"$pkgname-v$_patchver.patch::https://raw.githubusercontent.com/dani-garcia/bw_web_builds/v$_pkgver/patches/v$_patchver.patch;)
-b2sums=('SKIP'
-
'bfd08114bd701366189d626b5c768affc45bde84dc6f0aa0f86ffa866ab4b9c79f896ae1f9c25b4d42fbfb709577ed10e5b9d43f7ed25aaa5b13d3f832c07d25')
-
-pkgver() {
-  echo $_pkgver | sed 's/[[:lower:]]$/.&/'
-}
-
-prepare() {
-  cd bitwarden-web
-  git submodule update --init
-  patch --forward --strip=1 --input=../$pkgname-v$_patchver.patch
-  npm ci
-}
-
-build() {
-  cd bitwarden-web
-  npm run dist
-}
-
-package() {
-  cd bitwarden-web
-  install -d "$pkgdir"/usr/share/webapps/$pkgname
-  cp -R build/* "$pkgdir"/usr/share/webapps/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vaultwarden-web/repos/community-any/PKGBUILD (from rev 1030921, 
vaultwarden-web/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 22:36:06 UTC (rev 1030922)
@@ -0,0 +1,49 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Markus Richter 
+
+pkgname=vaultwarden-web
+_pkgver=2.23.0c
+pkgver=2.23.0.c
+_upstreamver=${_pkgver%[[:lower:]]}
+_patchver=$_upstreamver
+pkgrel=1
+pkgdesc='Bitwarden web vault with the patches to make it work with vaultwarden'
+arch=('any')
+url=https://github.com/dani-garcia/bw_web_builds
+license=('GPL3')
+depends=('vaultwarden')
+makedepends=('git' 'nodejs-lts-fermium' 'npm')
+provides=('bitwarden_rs-vault' 'bitwarden_rs-web')
+replaces=('bitwarden_rs-vault' 'bitwarden_rs-web')
+install=$pkgname.install
+source=("bitwarden-web::git+https://github.com/bitwarden/web.git#tag=v$_upstreamver;
+
"$pkgname-v$_patchver.patch::https://raw.githubusercontent.com/dani-garcia/bw_web_builds/v$_pkgver/patches/v$_patchver.patch;)
+b2sums=('SKIP'
+
'2721a96db72714c7db93b7d468e8a7aad27db07fe5e3ab9d6d9656ae261388f6ee304ae1b38531a10f2c4d9a4cb1e4c174eef4e0c6bd0500de950fd43aa4f425')
+
+pkgver() {
+  echo $_pkgver | sed 's/[[:lower:]]$/.&/'
+}
+
+prepare() {
+  cd bitwarden-web
+  git submodule update --init
+  patch --forward --strip=1 --input=../$pkgname-v$_patchver.patch
+
+  # ref: 
https://github.com/dani-garcia/bw_web_builds/blob/v2.23.0c/Dockerfile#L29
+  sed -i 's/"gulp-google-webfonts": "^4.0.0"/"gulp-google-webfonts": 
"^4.1.0"/' package.json
+  npm ci --legacy-peer-deps
+}
+
+build() {
+  cd bitwarden-web
+  npm run dist
+}
+
+package() {
+  cd bitwarden-web
+  install -d "$pkgdir"/usr/share/webapps/$pkgname
+  cp -R build/* "$pkgdir"/usr/share/webapps/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: vaultwarden-web.install
===
--- vaultwarden-web.install 2021-10-18 22:35:14 UTC (rev 1030921)
+++ vaultwarden-web.install 2021-10-18 22:36:06 UTC (rev 1030922)
@@ -1,9 +0,0 @@
-post_install() {
-  cat << EOF
-Uncomment WEB_VAULT_FOLDER and set WEB_VAULT_ENABLED to true in your
-/etc/vaultwarden.env.
-
-Restart vaultwarden after configuration changes have been made:
-# systemctl restart vaultwarden
-EOF
-}

Copied: vaultwarden-web/repos/community-any/vaultwarden-web.install (from rev 
1030921, vaultwarden-web/trunk/vaultwarden-web.install)
===
--- vaultwarden-web.install (rev 0)
+++ vaultwarden-web.install 2021-10-18 22:36:06 UTC (rev 1030922)
@@ -0,0 +1,9 @@

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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 22:35:14
  Author: grawlinson
Revision: 1030921

upgpkg: vaultwarden-web 2.23.0.c-1

* New upstream release.
* Fix temporary compilation failure.

Modified:
  vaultwarden-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 22:16:11 UTC (rev 1030920)
+++ PKGBUILD2021-10-18 22:35:14 UTC (rev 1030921)
@@ -2,8 +2,8 @@
 # Contributor: Markus Richter 
 
 pkgname=vaultwarden-web
-_pkgver=2.23.0
-pkgver=2.23.0
+_pkgver=2.23.0c
+pkgver=2.23.0.c
 _upstreamver=${_pkgver%[[:lower:]]}
 _patchver=$_upstreamver
 pkgrel=1
@@ -19,7 +19,7 @@
 
source=("bitwarden-web::git+https://github.com/bitwarden/web.git#tag=v$_upstreamver;
 
"$pkgname-v$_patchver.patch::https://raw.githubusercontent.com/dani-garcia/bw_web_builds/v$_pkgver/patches/v$_patchver.patch;)
 b2sums=('SKIP'
-
'bfd08114bd701366189d626b5c768affc45bde84dc6f0aa0f86ffa866ab4b9c79f896ae1f9c25b4d42fbfb709577ed10e5b9d43f7ed25aaa5b13d3f832c07d25')
+
'2721a96db72714c7db93b7d468e8a7aad27db07fe5e3ab9d6d9656ae261388f6ee304ae1b38531a10f2c4d9a4cb1e4c174eef4e0c6bd0500de950fd43aa4f425')
 
 pkgver() {
   echo $_pkgver | sed 's/[[:lower:]]$/.&/'
@@ -29,7 +29,10 @@
   cd bitwarden-web
   git submodule update --init
   patch --forward --strip=1 --input=../$pkgname-v$_patchver.patch
-  npm ci
+
+  # ref: 
https://github.com/dani-garcia/bw_web_builds/blob/v2.23.0c/Dockerfile#L29
+  sed -i 's/"gulp-google-webfonts": "^4.0.0"/"gulp-google-webfonts": 
"^4.1.0"/' package.json
+  npm ci --legacy-peer-deps
 }
 
 build() {



[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2021-10-18 Thread Sergej Pupykin via arch-commits
Date: Monday, October 18, 2021 @ 22:16:11
  Author: spupykin
Revision: 1030920

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 1030919, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 1030919, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 1030919, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  110 -
 apache.conf  |   14 +-
 3 files changed, 95 insertions(+), 95 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2021-10-18 
22:15:59 UTC (rev 1030919)
+++ 0001-plugins-password-make-Python-3-compatible.patch2021-10-18 
22:16:11 UTC (rev 1030920)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 1030919, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2021-10-18 
22:16:11 UTC (rev 1030920)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 22:15:59 UTC (rev 1030919)
+++ PKGBUILD2021-10-18 22:16:11 UTC (rev 1030920)
@@ -1,55 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.11
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php7')
-options=('emptydirs')
-makedepends=('git')
-optdepends=('python: password change script'
-'perl: for change_ldap_pass.pl helper'
-   'php7-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('2bfe0ff3716f76bf9eb5bf5f7b62c738b233c57e67d6ac767c044d1a3a694ae003642d9cc68a18d6f6ba94135aa7ee1692db920e9127128669faee9ddf78fe80'
-'SKIP'
-

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

2021-10-18 Thread Sergej Pupykin via arch-commits
Date: Monday, October 18, 2021 @ 22:15:59
  Author: spupykin
Revision: 1030919

archrelease: copy trunk to community-x86_64

Added:
  remmina/repos/community-x86_64/PKGBUILD
(from rev 1030918, remmina/trunk/PKGBUILD)
Deleted:
  remmina/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 22:15:51 UTC (rev 1030918)
+++ PKGBUILD2021-10-18 22:15:59 UTC (rev 1030919)
@@ -1,40 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=remmina
-epoch=1
-pkgver=1.4.20
-pkgrel=1
-pkgdesc="remote desktop client written in GTK+"
-arch=(x86_64)
-url="https://www.remmina.org/;
-license=('GPL')
-depends=('avahi' 'libgcrypt' 'libssh' 'vte3' 'libsodium' 
'libappindicator-gtk3')
-makedepends=('cmake' 'freerdp' 'libvncserver' 'spice-gtk' 'spice-protocol' 
'telepathy-glib'
- 'harfbuzz' 'xorgproto' 'gobject-introspection' 'kwallet')
-optdepends=('freerdp: RDP plugin'
-'libsecret: Secret plugin'
-'libvncserver: VNC plugin'
-'libxkbfile: NX plugin'
-'nxproxy: NX plugin'
-'spice-gtk: Spice plugin'
-'telepathy-glib: Telepathy plugin'
-'xorg-server-xephyr: XDMCP plugin'
-'gnome-terminal: external tools')
-replaces=('remmina-plugins')
-provides=('remmina-plugins')
-source=("$pkgname-$pkgver.tar.bz2::https://gitlab.com/Remmina/Remmina/-/archive/v${pkgver/rc/-rc}/Remmina-v${pkgver/rc/-rc}.tar.bz2;)
-sha512sums=('14c5f5312bc97b3d12c95a84ab57fb0cdfdb237ad9e0b8853f514013901205457bf9a621d68edb8d8688758384184fb2c730126b89efaecc29bddf049e4cfb78')
-
-build() {
-  cmake -S Remmina-v${pkgver/rc/-rc} -B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DWITH_APPINDICATOR=ON \
--DWITH_NEWS=OFF \
--DWITH_KF5WALLET=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: remmina/repos/community-x86_64/PKGBUILD (from rev 1030918, 
remmina/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 22:15:59 UTC (rev 1030919)
@@ -0,0 +1,40 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=remmina
+epoch=1
+pkgver=1.4.21
+pkgrel=1
+pkgdesc="remote desktop client written in GTK+"
+arch=(x86_64)
+url="https://www.remmina.org/;
+license=('GPL')
+depends=('avahi' 'libgcrypt' 'libssh' 'vte3' 'libsodium' 
'libappindicator-gtk3')
+makedepends=('cmake' 'freerdp' 'libvncserver' 'spice-gtk' 'spice-protocol' 
'telepathy-glib'
+ 'harfbuzz' 'xorgproto' 'gobject-introspection' 'kwallet')
+optdepends=('freerdp: RDP plugin'
+'libsecret: Secret plugin'
+'libvncserver: VNC plugin'
+'libxkbfile: NX plugin'
+'nxproxy: NX plugin'
+'spice-gtk: Spice plugin'
+'telepathy-glib: Telepathy plugin'
+'xorg-server-xephyr: XDMCP plugin'
+'gnome-terminal: external tools')
+replaces=('remmina-plugins')
+provides=('remmina-plugins')
+source=("$pkgname-$pkgver.tar.bz2::https://gitlab.com/Remmina/Remmina/-/archive/v${pkgver/rc/-rc}/Remmina-v${pkgver/rc/-rc}.tar.bz2;)
+sha512sums=('65253c58803ffce6d9a197a698814a905e6ea7e5ba14ed20bede1001ba8a8212f2aae2c5170ed5502f47e6f26c12d396a32d7cbeb65a38e14a9b6de9d455dbb7')
+
+build() {
+  cmake -S Remmina-v${pkgver/rc/-rc} -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DWITH_APPINDICATOR=ON \
+-DWITH_NEWS=OFF \
+-DWITH_KF5WALLET=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-10-18 Thread Sergej Pupykin via arch-commits
Date: Monday, October 18, 2021 @ 22:15:51
  Author: spupykin
Revision: 1030918

archrelease: copy trunk to community-any

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

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

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



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

2021-10-18 Thread Sergej Pupykin via arch-commits
Date: Monday, October 18, 2021 @ 22:15:44
  Author: spupykin
Revision: 1030917

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 22:15:37 UTC (rev 1030916)
+++ PKGBUILD2021-10-18 22:15:44 UTC (rev 1030917)
@@ -1,41 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: John D Jones III AKA jnbek 
-# Generator  : CPANPLUS::Dist::Arch 1.32
-
-pkgname='perl-pegex'
-pkgver=0.70
-pkgrel=4
-pkgdesc="Acmeist PEG Parser Framework"
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl-yaml-libyaml' 'perl-file-sharedir-install')
-makedepends=()
-url='https://metacpan.org/release/Pegex'
-source=("https://search.cpan.org/CPAN/authors/id/I/IN/INGY/Pegex-$pkgver.tar.gz;)
-sha256sums=('fd3521321026048f493a88d43ce4b8e054f5d7acfec6a1db32fcaabe4dfda0fd')
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
-  MODULEBUILDRC=/dev/null
-cd "$srcdir/Pegex-$pkgver"
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$srcdir/Pegex-$pkgver"
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$srcdir/Pegex-$pkgver"
-  make install
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-pegex/repos/community-any/PKGBUILD (from rev 1030916, 
perl-pegex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 22:15:44 UTC (rev 1030917)
@@ -0,0 +1,41 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: John D Jones III AKA jnbek 
+# Generator  : CPANPLUS::Dist::Arch 1.32
+
+pkgname='perl-pegex'
+pkgver=0.75
+pkgrel=1
+pkgdesc="Acmeist PEG Parser Framework"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl-yaml-libyaml' 'perl-file-sharedir-install' 'perl-yaml-pp')
+makedepends=()
+url='https://metacpan.org/release/Pegex'
+source=("https://search.cpan.org/CPAN/authors/id/I/IN/INGY/Pegex-$pkgver.tar.gz;)
+sha256sums=('4dc8d335de80b25247cdb3f946f0d10d9ba0b3c34b0ed7d00316fd068fd05edc')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
+  MODULEBUILDRC=/dev/null
+cd "$srcdir/Pegex-$pkgver"
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$srcdir/Pegex-$pkgver"
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$srcdir/Pegex-$pkgver"
+  make install
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}



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

2021-10-18 Thread Sergej Pupykin via arch-commits
Date: Monday, October 18, 2021 @ 22:15:37
  Author: spupykin
Revision: 1030916

upgpkg: perl-pegex 0.75-1

Modified:
  perl-pegex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 22:15:31 UTC (rev 1030915)
+++ PKGBUILD2021-10-18 22:15:37 UTC (rev 1030916)
@@ -9,7 +9,7 @@
 arch=('any')
 license=('PerlArtistic' 'GPL')
 options=('!emptydirs')
-depends=('perl-yaml-libyaml' 'perl-file-sharedir-install')
+depends=('perl-yaml-libyaml' 'perl-file-sharedir-install' 'perl-yaml-pp')
 makedepends=()
 url='https://metacpan.org/release/Pegex'
 
source=("https://search.cpan.org/CPAN/authors/id/I/IN/INGY/Pegex-$pkgver.tar.gz;)



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

2021-10-18 Thread Sergej Pupykin via arch-commits
Date: Monday, October 18, 2021 @ 22:15:31
  Author: spupykin
Revision: 1030915

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 22:13:20 UTC (rev 1030914)
+++ PKGBUILD2021-10-18 22:15:31 UTC (rev 1030915)
@@ -1,45 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud-app-bookmarks
-_name=bookmarks
-epoch=1
-pkgver=10.0.0
-pkgrel=1
-pkgdesc="Bookmarks app for nextcloud"
-arch=('any')
-url="https://github.com/nextcloud/bookmarks;
-license=('AGPL3')
-depends=('nextcloud')
-makedepends=('ripgrep' 'yq')
-groups=('nextcloud-apps')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz;)
-sha256sums=('0c43f480dbf04cbb77918a5a94962338bb51e05b3a8411e8b73b8322cd6b6a2d')
-b2sums=('ecf401f6906b73fd4f5d47ec462182b3502fefe7769c2e70b178b762bae442ac70164c00735a1d7ae41561652f30ca59f19f49b41530f09f9bdbd3f1088fd2d3')
-
-_get_nextcloud_versions() {
-  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
-}
-
-check() {
-  local _app_min_major_version
-  local _app_max_major_version
-  _get_nextcloud_versions
-
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
-printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
-exit 1
-  fi
-}
-
-package() {
-  _get_nextcloud_versions
-
-  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
-
-  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
-  cp -a "$srcdir"/bookmarks 
"$pkgdir"/usr/share/webapps/nextcloud/apps/bookmarks
-}

Copied: nextcloud-app-bookmarks/repos/community-any/PKGBUILD (from rev 1030914, 
nextcloud-app-bookmarks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 22:15:31 UTC (rev 1030915)
@@ -0,0 +1,45 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=nextcloud-app-bookmarks
+_name=bookmarks
+epoch=1
+pkgver=10.0.2
+pkgrel=1
+pkgdesc="Bookmarks app for nextcloud"
+arch=('any')
+url="https://github.com/nextcloud/bookmarks;
+license=('AGPL3')
+depends=('nextcloud')
+makedepends=('ripgrep' 'yq')
+groups=('nextcloud-apps')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz;)
+sha256sums=('9a9c7f7bf1214453469082fc31608347e734e16e009312ffab7c25e423443f73')
+b2sums=('a9d1ea97e27aa0e275969a1760a13dac00034c5de61917c537cf953ce6265c25e0177d95099474604a98d18540bff3d28f5589af0017f5ebb40340f28c7b5b39')
+
+_get_nextcloud_versions() {
+  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
+}
+
+check() {
+  local _app_min_major_version
+  local _app_max_major_version
+  _get_nextcloud_versions
+
+  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
+  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
+printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
+exit 1
+  fi
+}
+
+package() {
+  _get_nextcloud_versions
+
+  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
+
+  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
+  cp -a "$srcdir"/bookmarks 
"$pkgdir"/usr/share/webapps/nextcloud/apps/bookmarks
+}



[arch-commits] Commit in (9 files)

2021-10-18 Thread Sergej Pupykin via arch-commits
Date: Monday, October 18, 2021 @ 22:13:20
  Author: spupykin
Revision: 1030914

add perl-yaml-pp

Added:
  perl-yaml-pp/
  perl-yaml-pp/repos/
  perl-yaml-pp/trunk/
  perl-yaml-pp/trunk/PKGBUILD
Modified:
  fbreader/trunk/PKGBUILD
  nextcloud-app-bookmarks/trunk/PKGBUILD
  perl-pegex/trunk/PKGBUILD
  remmina/trunk/PKGBUILD
  roundcubemail/trunk/PKGBUILD

+
 fbreader/trunk/PKGBUILD|   27 +---
 nextcloud-app-bookmarks/trunk/PKGBUILD |6 ++--
 perl-pegex/trunk/PKGBUILD  |6 ++--
 perl-yaml-pp/trunk/PKGBUILD|   41 +++
 remmina/trunk/PKGBUILD |4 +--
 roundcubemail/trunk/PKGBUILD   |4 +--
 6 files changed, 64 insertions(+), 24 deletions(-)

Modified: fbreader/trunk/PKGBUILD
===
--- fbreader/trunk/PKGBUILD 2021-10-18 21:57:04 UTC (rev 1030913)
+++ fbreader/trunk/PKGBUILD 2021-10-18 22:13:20 UTC (rev 1030914)
@@ -2,29 +2,28 @@
 # Contributor: William Rea 
 
 pkgname=fbreader
-pkgver=0.99.4
-pkgrel=9
+pkgver=0.99.5
+pkgrel=1
 pkgdesc="An e-book reader for Linux"
 arch=('x86_64')
 url="http://www.fbreader.org/;
 license=('GPL')
 depends=('fribidi' 'bzip2' 'curl' 'qt5-base' 'libunibreak' 'sqlite')
-source=(http://www.fbreader.org/files/desktop/fbreader-sources-$pkgver.tgz
-   
"fbreader-0.99.4.patch::https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-text/fbreader/files/fbreader-0.99.4.patch?revision=1.1;
-fbreader-gcc6.patch fbreader-qt5.patch)
-sha256sums=('3d7c31d5ea314589d2a963290ad16f4d3d631a41e802b8b39f8be0c9f71eb8e9'
-'cb3aa6795c8f7c694ba296f6f6e6a7939648578a289bc84c10f8302c7e72df86'
+source=($pkgname-$pkgver.tar.gz::https://github.com/geometer/FBReader/archive/refs/tags/$pkgver.tar.gz
+   fbreader-gcc6.patch
+   fbreader-qt5.patch)
+sha256sums=('5e4fe6cd18d2fe3f8ea36084da5f15c961479e6e639fdeeff8db293e02471e3f'
 'bc67b538c51a5b77468469df6b5e96ce918ee11a5ff4e88e398ad5661d322f9c'
 '9d00f95f2a026b7bdafa6ab8519659cd2c293f1b9b00681a62d3f4992399e716')
 
 prepare() {
-  cd "$srcdir"/fbreader-$pkgver
-  patch -p1 <"$srcdir"/fbreader-0.99.4.patch
+  cd FBReader-$pkgver
 
+#  sed -i "s|VERSION|\"$pkgver\"|" fbreader/src/fbreader/FBReader.cpp
   patch -p0 -i ../fbreader-gcc6.patch # Fix build with GCC6 (Gentoo)
   patch -p1 -i ../fbreader-qt5.patch # Port to Qt5 (Gentoo)
 
-# Use system FLAGS
+  # Use system FLAGS
   sed -e "s/^CFLAGS = -pipe/CFLAGS +=/" -i makefiles/arch/desktop.mk
   sed -e "/^   CFLAGS +=/d" -i makefiles/config.mk
   sed -e "/^   LDFLAGS += -s$/d" -i makefiles/config.mk
@@ -34,15 +33,15 @@
 
 build() {
   export TARGET_ARCH=desktop
-  export UI_TYPE=qt4
   export TARGET_STATUS=release
-  export CXXFLAGS+=' -fPIC'
-  cd fbreader-$pkgver
+  export CXXFLAGS+=" -fPIC"
+  export UI_TYPE=qt
+  cd FBReader-$pkgver
   make
 }
 
 package() {
-  cd fbreader-$pkgver
+  cd FBReader-$pkgver
   export CXXFLAGS+=' -fPIC'
   make DESTDIR="$pkgdir" install
 }

Modified: nextcloud-app-bookmarks/trunk/PKGBUILD
===
--- nextcloud-app-bookmarks/trunk/PKGBUILD  2021-10-18 21:57:04 UTC (rev 
1030913)
+++ nextcloud-app-bookmarks/trunk/PKGBUILD  2021-10-18 22:13:20 UTC (rev 
1030914)
@@ -3,7 +3,7 @@
 pkgname=nextcloud-app-bookmarks
 _name=bookmarks
 epoch=1
-pkgver=10.0.0
+pkgver=10.0.2
 pkgrel=1
 pkgdesc="Bookmarks app for nextcloud"
 arch=('any')
@@ -14,8 +14,8 @@
 groups=('nextcloud-apps')
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz;)
-sha256sums=('0c43f480dbf04cbb77918a5a94962338bb51e05b3a8411e8b73b8322cd6b6a2d')
-b2sums=('ecf401f6906b73fd4f5d47ec462182b3502fefe7769c2e70b178b762bae442ac70164c00735a1d7ae41561652f30ca59f19f49b41530f09f9bdbd3f1088fd2d3')
+sha256sums=('9a9c7f7bf1214453469082fc31608347e734e16e009312ffab7c25e423443f73')
+b2sums=('a9d1ea97e27aa0e275969a1760a13dac00034c5de61917c537cf953ce6265c25e0177d95099474604a98d18540bff3d28f5589af0017f5ebb40340f28c7b5b39')
 
 _get_nextcloud_versions() {
   _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"

Modified: perl-pegex/trunk/PKGBUILD
===
--- perl-pegex/trunk/PKGBUILD   2021-10-18 21:57:04 UTC (rev 1030913)
+++ perl-pegex/trunk/PKGBUILD   2021-10-18 22:13:20 UTC (rev 1030914)
@@ -3,8 +3,8 @@
 # Generator  : CPANPLUS::Dist::Arch 1.32
 
 pkgname='perl-pegex'
-pkgver=0.70
-pkgrel=4
+pkgver=0.75
+pkgrel=1
 pkgdesc="Acmeist PEG Parser Framework"
 arch=('any')
 license=('PerlArtistic' 'GPL')
@@ -13,7 +13,7 @@
 makedepends=()
 url='https://metacpan.org/release/Pegex'
 
source=("https://search.cpan.org/CPAN/authors/id/I/IN/INGY/Pegex-$pkgver.tar.gz;)

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

2021-10-18 Thread Evangelos Foutras via arch-commits
Date: Monday, October 18, 2021 @ 21:57:04
  Author: foutrelis
Revision: 1030913

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 21:57:00 UTC (rev 1030912)
+++ PKGBUILD2021-10-18 21:57:04 UTC (rev 1030913)
@@ -1,27 +0,0 @@
-# Maintainer: Evangelos Foutras https://github.com/openstack/stevedore;
-license=('Apache')
-depends=('python')
-makedepends=('python-pbr')
-options=('!emptydirs')
-source=(https://pypi.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
-sha256sums=('59b58edb7f57b11897f150475e7bc0c39c5381f0b8e3fa9f5c20ce6c89ec4aa1')
-
-prepare() {
-  cd stevedore-$pkgver
-  # Remove dependency on pbr; it's not a runtime dependency
-  sed -i '/pbr/d' requirements.txt
-}
-
-package() {
-  cd stevedore-$pkgver
-  python3 setup.py install --root="$pkgdir" -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-stevedore/repos/community-any/PKGBUILD (from rev 1030912, 
python-stevedore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 21:57:04 UTC (rev 1030913)
@@ -0,0 +1,27 @@
+# Maintainer: Evangelos Foutras https://github.com/openstack/stevedore;
+license=('Apache')
+depends=('python')
+makedepends=('python-pbr')
+options=('!emptydirs')
+source=(https://pypi.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
+sha256sums=('f40253887d8712eaa2bb0ea3830374416736dc8ec0e22f5a65092c1174c44335')
+
+prepare() {
+  cd stevedore-$pkgver
+  # Remove dependency on pbr; it's not a runtime dependency
+  sed -i '/pbr/d' requirements.txt
+}
+
+package() {
+  cd stevedore-$pkgver
+  python3 setup.py install --root="$pkgdir" -O1
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-10-18 Thread Evangelos Foutras via arch-commits
Date: Monday, October 18, 2021 @ 21:57:00
  Author: foutrelis
Revision: 1030912

upgpkg: python-stevedore 3.5.0-1: new upstream release

Modified:
  python-stevedore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 21:17:17 UTC (rev 1030911)
+++ PKGBUILD2021-10-18 21:57:00 UTC (rev 1030912)
@@ -1,7 +1,7 @@
 # Maintainer: Evangelos Foutras https://pypi.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
-sha256sums=('59b58edb7f57b11897f150475e7bc0c39c5381f0b8e3fa9f5c20ce6c89ec4aa1')
+sha256sums=('f40253887d8712eaa2bb0ea3830374416736dc8ec0e22f5a65092c1174c44335')
 
 prepare() {
   cd stevedore-$pkgver



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

2021-10-18 Thread Christian Hesse via arch-commits
Date: Monday, October 18, 2021 @ 21:21:26
  Author: eworm
Revision: 426221

remove ancient upgrade command

Modified:
  fakeroot/trunk/fakeroot.install

--+
 fakeroot.install |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: fakeroot.install
===
--- fakeroot.install2021-10-18 20:35:34 UTC (rev 426220)
+++ fakeroot.install2021-10-18 21:21:26 UTC (rev 426221)
@@ -1,11 +1,10 @@
+#!/bin/sh
+
 post_install() {
   usr/bin/ldconfig -r .
 }
 
 post_upgrade() {
-  if [ "$(vercmp $2 1.14.4-2)" -lt 0 ]; then
-sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
-  fi
   usr/bin/ldconfig -r .
 }
 



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 21:17:17
  Author: arojas
Revision: 1030911

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 21:17:08 UTC (rev 1030910)
+++ PKGBUILD2021-10-18 21:17:17 UTC (rev 1030911)
@@ -1,36 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: mark.blakeney at bullet-systems dot net
-
-_pipname=debugpy
-pkgname=python-$_pipname
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='An implementation of the Debug Adapter Protocol for Python'
-arch=(x86_64)
-url='https://aka.ms/debugpy'
-license=(EPL MIT)
-depends=(python)
-makedepends=(python-setuptools)
-source=(https://github.com/microsoft/debugpy/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('13b85f3d498f270ea0ea421ee7ca55319cdc5f4cf49d00ede58990a152c2576b')
-
-prepare() {
-  cd $_pipname-$pkgver
-# remove precompiled libs
-  rm 
src/debugpy/_vendored/pydevd/pydevd_attach_to_process/*.{so,dll,dylib,exe,pdb}
-}
-
-build() {
-  cd $_pipname-$pkgver
-  python setup.py build
-# Compile attach libraries
-  cd build/lib*/debugpy/_vendored/pydevd/pydevd_attach_to_process
-  g++ ${CXXFLAGS} -m64 -shared -o attach_linux_amd64.so -fPIC -nostartfiles 
linux_and_mac/attach.cpp ${LDFLAGS}
-}
-
-package() {
-  cd $_pipname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-debugpy/repos/community-x86_64/PKGBUILD (from rev 1030910, 
python-debugpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 21:17:17 UTC (rev 1030911)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+# Contributor: mark.blakeney at bullet-systems dot net
+
+_pipname=debugpy
+pkgname=python-$_pipname
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='An implementation of the Debug Adapter Protocol for Python'
+arch=(x86_64)
+url='https://aka.ms/debugpy'
+license=(EPL MIT)
+depends=(python)
+makedepends=(python-setuptools)
+source=(https://github.com/microsoft/debugpy/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('86c8a957269a49fe5955f47233609b896ac48033e4f5e94c5b5a908f7230cf19')
+
+prepare() {
+  cd $_pipname-$pkgver
+# remove precompiled libs
+  rm 
src/debugpy/_vendored/pydevd/pydevd_attach_to_process/*.{so,dll,dylib,exe,pdb}
+}
+
+build() {
+  cd $_pipname-$pkgver
+  python setup.py build
+# Compile attach libraries
+  cd build/lib*/debugpy/_vendored/pydevd/pydevd_attach_to_process
+  g++ ${CXXFLAGS} -m64 -shared -o attach_linux_amd64.so -fPIC -nostartfiles 
linux_and_mac/attach.cpp ${LDFLAGS}
+}
+
+package() {
+  cd $_pipname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 21:17:08
  Author: arojas
Revision: 1030910

Update to 1.5.1

Modified:
  python-debugpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 20:58:32 UTC (rev 1030909)
+++ PKGBUILD2021-10-18 21:17:08 UTC (rev 1030910)
@@ -3,7 +3,7 @@
 
 _pipname=debugpy
 pkgname=python-$_pipname
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc='An implementation of the Debug Adapter Protocol for Python'
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(python)
 makedepends=(python-setuptools)
 
source=(https://github.com/microsoft/debugpy/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('13b85f3d498f270ea0ea421ee7ca55319cdc5f4cf49d00ede58990a152c2576b')
+sha256sums=('86c8a957269a49fe5955f47233609b896ac48033e4f5e94c5b5a908f7230cf19')
 
 prepare() {
   cd $_pipname-$pkgver



[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 20:58:32
  Author: felixonmars
Revision: 1030909

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 1030908, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 20:58:24 UTC (rev 1030908)
+++ PKGBUILD2021-10-18 20:58:32 UTC (rev 1030909)
@@ -1,23 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=20211016144834
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2fly/domain-list-community;
-license=('MIT')
-makedepends=('go' 'git')
-source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('4ce915f00a7934ef80d3827cac3f6fe425d6f919dc84ade419b7011dc5dec3ba026a3342d057b8f4a89c2c92b637a44c684c47c824e52a8dc83435ad590f395c')
-
-build() {
-  cd domain-list-community-$pkgver
-  go run main.go
-}
-
-package() {
-  cd domain-list-community-$pkgver
-  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
1030908, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 20:58:32 UTC (rev 1030909)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20211018134657
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2fly/domain-list-community;
+license=('MIT')
+makedepends=('go' 'git')
+source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('4e68aed99f2751ce8951dbd233d1855e2dddf795471a7e637a4d0f2980d05189a69362844dbec801361c75a101fa378d9ba7d2a2b0667cc659e3499c22f91e77')
+
+build() {
+  cd domain-list-community-$pkgver
+  go run main.go
+}
+
+package() {
+  cd domain-list-community-$pkgver
+  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in v2ray-domain-list-community/trunk (PKGBUILD)

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 20:58:24
  Author: felixonmars
Revision: 1030908

upgpkg: v2ray-domain-list-community 20211018134657-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 20:34:16 UTC (rev 1030907)
+++ PKGBUILD2021-10-18 20:58:24 UTC (rev 1030908)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=20211016144834
+pkgver=20211018134657
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go' 'git')
 
source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('4ce915f00a7934ef80d3827cac3f6fe425d6f919dc84ade419b7011dc5dec3ba026a3342d057b8f4a89c2c92b637a44c684c47c824e52a8dc83435ad590f395c')
+sha512sums=('4e68aed99f2751ce8951dbd233d1855e2dddf795471a7e637a4d0f2980d05189a69362844dbec801361c75a101fa378d9ba7d2a2b0667cc659e3499c22f91e77')
 
 build() {
   cd domain-list-community-$pkgver



[arch-commits] Commit in systemd/repos (22 files)

2021-10-18 Thread Christian Hesse via arch-commits
Date: Monday, October 18, 2021 @ 20:35:34
  Author: eworm
Revision: 426220

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 426219, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  
systemd/repos/testing-x86_64/0003-PARTIAL-REVERT-commit-tree-wide-replace-strverscmp-and-str_verscmp-with-strverscmp_improved.patch
(from rev 426219, 
systemd/trunk/0003-PARTIAL-REVERT-commit-tree-wide-replace-strverscmp-and-str_verscmp-with-strverscmp_improved.patch)
  systemd/repos/testing-x86_64/20-systemd-sysusers.hook
(from rev 426219, systemd/trunk/20-systemd-sysusers.hook)
  systemd/repos/testing-x86_64/30-systemd-binfmt.hook
(from rev 426219, systemd/trunk/30-systemd-binfmt.hook)
  systemd/repos/testing-x86_64/30-systemd-catalog.hook
(from rev 426219, systemd/trunk/30-systemd-catalog.hook)
  systemd/repos/testing-x86_64/30-systemd-daemon-reload.hook
(from rev 426219, systemd/trunk/30-systemd-daemon-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-hwdb.hook
(from rev 426219, systemd/trunk/30-systemd-hwdb.hook)
  systemd/repos/testing-x86_64/30-systemd-sysctl.hook
(from rev 426219, systemd/trunk/30-systemd-sysctl.hook)
  systemd/repos/testing-x86_64/30-systemd-tmpfiles.hook
(from rev 426219, systemd/trunk/30-systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/30-systemd-udev-reload.hook
(from rev 426219, systemd/trunk/30-systemd-udev-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-update.hook
(from rev 426219, systemd/trunk/30-systemd-update.hook)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 426219, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 426219, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 426219, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 426219, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 426219, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 426219, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 426219, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hook
(from rev 426219, systemd/trunk/systemd-hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 426219, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 426219, systemd/trunk/systemd.install)

+
 0001-Use-Arch-Linux-device-access-groups.patch 
|  143 
 
0003-PARTIAL-REVERT-commit-tree-wide-replace-strverscmp-and-str_verscmp-with-strverscmp_improved.patch
 |   78 ++
 20-systemd-sysusers.hook   
|   10 
 30-systemd-binfmt.hook 
|   10 
 30-systemd-catalog.hook
|   11 
 30-systemd-daemon-reload.hook  
|   11 
 30-systemd-hwdb.hook   
|   11 
 30-systemd-sysctl.hook 
|   10 
 30-systemd-tmpfiles.hook   
|   10 
 30-systemd-udev-reload.hook
|   11 
 30-systemd-update.hook 
|   11 
 PKGBUILD   
|  297 ++
 arch.conf  
|7 
 initcpio-hook-udev 
|   22 
 initcpio-install-systemd   
|  192 ++
 initcpio-install-udev  
|   29 
 loader.conf
|1 
 systemd-hook   
|   46 +
 systemd-user.pam   
|5 
 systemd.install  

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

2021-10-18 Thread Christian Hesse via arch-commits
Date: Monday, October 18, 2021 @ 20:35:12
  Author: eworm
Revision: 426219

upgpkg: systemd 249.5-2: pull in latest fixes

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 20:08:47 UTC (rev 426218)
+++ PKGBUILD2021-10-18 20:35:12 UTC (rev 426219)
@@ -7,7 +7,7 @@
 _tag='f1d37a5c491d85255e9996960dc2889a15022b78' # git rev-parse v${_tag_name}
 _tag_name=249.5
 pkgver="${_tag_name/-/}"
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -64,6 +64,11 @@
 
'825b9dd0167c072ba62cabe0677e7cd20f2b4b850328022540f122689d8b25315005fa98ce867cf6e7460b2b26df16b88bb3b5c9ebf721746dce4e2271af7b97')
 
 _backports=(
+  # coredumpctl: stop truncating information about coredump
+  '473627e1c9fcdf8f819ced2bb79cb7e9ff598b0c'
+
+  # Revert "core: Check unit start rate limiting earlier"
+  '4fa9d8f14523982482386d398d2b2669902f2098'
 )
 
 _reverts=(



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 20:32:27
  Author: grawlinson
Revision: 1030901

archrelease: copy trunk to community-x86_64

Added:
  blosc/repos/community-x86_64/PKGBUILD
(from rev 1030900, blosc/trunk/PKGBUILD)
Deleted:
  blosc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 20:29:16 UTC (rev 1030900)
+++ PKGBUILD2021-10-18 20:32:27 UTC (rev 1030901)
@@ -1,39 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=blosc
-pkgver=1.21.0
-pkgrel=1
-pkgdesc='A blocking, shuffling and loss-less compression library.'
-arch=('x86_64')
-url='http://blosc.org/'
-license=('BSD')
-depends=('snappy' 'zstd')
-makedepends=('cmake')
-options=(staticlibs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-sha256sums=('b0ef4fda82a1d9cbd11e0f4b9685abf14372db51703c595ecd4d76001a8b342d')
-
-build() {
-  cd "${srcdir}"
-  rm -rf build
-  mkdir build
-  cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DDEACTIVATE_SNAPPY="OFF" \
--DPREFER_EXTERNAL_LZ4="ON" \
-   -DPREFER_EXTERNAL_ZLIB="ON" \
-   -DPREFER_EXTERNAL_ZSTD="ON" \
--DBUILD_TESTS="OFF" \
-../c-blosc-${pkgver}
-
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: blosc/repos/community-x86_64/PKGBUILD (from rev 1030900, 
blosc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 20:32:27 UTC (rev 1030901)
@@ -0,0 +1,41 @@
+# Maintainer: Andrzej Giniewicz 
+# Maintainer: George Rawlinson 
+
+pkgname=blosc
+pkgver=1.21.1
+pkgrel=1
+pkgdesc='A blocking, shuffling and loss-less compression library'
+arch=('x86_64')
+url='https://www.blosc.org'
+license=('BSD')
+depends=('snappy' 'zstd')
+makedepends=('cmake')
+options=(staticlibs)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
+sha512sums=('e06712ffaeaa6892415a6b01219221426c20af4191db6ca923301313daa8f5b0a83a7a3cd273f7013766349ace4e4869590e9c44bd892e57027ca45de53779e7')
+b2sums=('a6a48d79fc8cb3df277e878a69361a5d12552be4b8ae50a4a95d2fe48d5b073c849724913a20c2834de7cf3cac7f288ddfec977ed1e4a1875fc3d21975907b44')
+
+build() {
+  cd "${srcdir}"
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DDEACTIVATE_SNAPPY="OFF" \
+-DPREFER_EXTERNAL_LZ4="ON" \
+   -DPREFER_EXTERNAL_ZLIB="ON" \
+   -DPREFER_EXTERNAL_ZSTD="ON" \
+-DBUILD_TESTS="OFF" \
+../c-blosc-${pkgver}
+
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+}



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 20:29:16
  Author: grawlinson
Revision: 1030900

upgpkg: blosc 1.21.1-1

* New upstream release.
* Updated URL to use HTTPS.
* Replaced hashes used in packaging: sha256 to sha512 & b2.

Modified:
  blosc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 20:21:33 UTC (rev 1030899)
+++ PKGBUILD2021-10-18 20:29:16 UTC (rev 1030900)
@@ -1,17 +1,19 @@
 # Maintainer: Andrzej Giniewicz 
+# Maintainer: George Rawlinson 
 
 pkgname=blosc
-pkgver=1.21.0
+pkgver=1.21.1
 pkgrel=1
-pkgdesc='A blocking, shuffling and loss-less compression library.'
+pkgdesc='A blocking, shuffling and loss-less compression library'
 arch=('x86_64')
-url='http://blosc.org/'
+url='https://www.blosc.org'
 license=('BSD')
 depends=('snappy' 'zstd')
 makedepends=('cmake')
 options=(staticlibs)
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-sha256sums=('b0ef4fda82a1d9cbd11e0f4b9685abf14372db51703c595ecd4d76001a8b342d')
+sha512sums=('e06712ffaeaa6892415a6b01219221426c20af4191db6ca923301313daa8f5b0a83a7a3cd273f7013766349ace4e4869590e9c44bd892e57027ca45de53779e7')
+b2sums=('a6a48d79fc8cb3df277e878a69361a5d12552be4b8ae50a4a95d2fe48d5b073c849724913a20c2834de7cf3cac7f288ddfec977ed1e4a1875fc3d21975907b44')
 
 build() {
   cd "${srcdir}"



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 20:21:33
  Author: grawlinson
Revision: 1030899

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 20:20:48 UTC (rev 1030898)
+++ PKGBUILD2021-10-18 20:21:33 UTC (rev 1030899)
@@ -1,34 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=python-blosc
-pkgver=1.10.4
-pkgrel=1
-pkgdesc="A Python wrapper for the extremely fast Blosc compression library"
-arch=('x86_64')
-url="http://python-blosc.blosc.org/;
-license=('BSD')
-depends=('python' 'blosc')
-optdepends=('python-numpy: for tests and benchmarks')
-makedepends=('python-scikit-build' 'ninja')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Blosc/python-blosc/archive/v${pkgver}.tar.gz;)
-sha256sums=('2fdb29a624d96d0f47b22aec4a144814d5b9c5a1cdaa51c802e73155d5677746')
-
-prepare() {
-  sed -e '/c-blosc/d' -e 's|blosc_static|blosc|' \
--i $pkgname-$pkgver/blosc/CMakeLists.txt # Use system blosc
-}
- 
-build() {
-  cd "$pkgname-$pkgver"
-  BLOSC_DIR=/usr
-  export BLOSC_DIR
-  python setup.py build_clib
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-blosc/repos/community-x86_64/PKGBUILD (from rev 1030898, 
python-blosc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 20:21:33 UTC (rev 1030899)
@@ -0,0 +1,35 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgname=python-blosc
+pkgver=1.10.6
+pkgrel=1
+pkgdesc="A Python wrapper for the extremely fast Blosc compression library"
+arch=('x86_64')
+url="http://python-blosc.blosc.org/;
+license=('BSD')
+depends=('python' 'blosc')
+optdepends=('python-numpy: for tests and benchmarks')
+makedepends=('python-scikit-build' 'ninja')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Blosc/python-blosc/archive/v${pkgver}.tar.gz;)
+sha512sums=('e283b132ebb91e7ce362ec65a1d6760e3793046371ea545a9e842372084182bcc194c3a0e1cb20914de58554063995a238ea0a129214731689e8cd5f4203d3ed')
+b2sums=('44f444fa5050a6198e83649973fc82d6804eec50bf79c332ed6a974e417f2a58baf09480a9bb5c5b7abcef2a961cd7bc61f962c12db625b1a7c48799ace0b39a')
+
+prepare() {
+  sed -e '/c-blosc/d' -e 's|blosc_static|blosc|' \
+-i $pkgname-$pkgver/blosc/CMakeLists.txt # Use system blosc
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  BLOSC_DIR=/usr
+  export BLOSC_DIR
+  python setup.py build_clib
+  python setup.py build_ext --inplace
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 20:20:48
  Author: grawlinson
Revision: 1030898

upgpkg: python-blosc 1.10.6-1

New upstream release.

Modified:
  python-blosc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 20:17:00 UTC (rev 1030897)
+++ PKGBUILD2021-10-18 20:20:48 UTC (rev 1030898)
@@ -1,7 +1,7 @@
 # Maintainer: Andrzej Giniewicz 
 
 pkgname=python-blosc
-pkgver=1.10.4
+pkgver=1.10.6
 pkgrel=1
 pkgdesc="A Python wrapper for the extremely fast Blosc compression library"
 arch=('x86_64')
@@ -11,13 +11,14 @@
 optdepends=('python-numpy: for tests and benchmarks')
 makedepends=('python-scikit-build' 'ninja')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Blosc/python-blosc/archive/v${pkgver}.tar.gz;)
-sha256sums=('2fdb29a624d96d0f47b22aec4a144814d5b9c5a1cdaa51c802e73155d5677746')
+sha512sums=('e283b132ebb91e7ce362ec65a1d6760e3793046371ea545a9e842372084182bcc194c3a0e1cb20914de58554063995a238ea0a129214731689e8cd5f4203d3ed')
+b2sums=('44f444fa5050a6198e83649973fc82d6804eec50bf79c332ed6a974e417f2a58baf09480a9bb5c5b7abcef2a961cd7bc61f962c12db625b1a7c48799ace0b39a')
 
 prepare() {
   sed -e '/c-blosc/d' -e 's|blosc_static|blosc|' \
 -i $pkgname-$pkgver/blosc/CMakeLists.txt # Use system blosc
 }
- 
+
 build() {
   cd "$pkgname-$pkgver"
   BLOSC_DIR=/usr



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 20:17:00
  Author: grawlinson
Revision: 1030897

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 20:16:02 UTC (rev 1030896)
+++ PKGBUILD2021-10-18 20:17:00 UTC (rev 1030897)
@@ -1,33 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Justin Vreeland 
-# Contributor: Mike Javorski (javmorin) 
-# Contributor: Johannes Dewender   arch at JonnyJD dot net
-
-pkgname=python-debian
-pkgver=0.1.41
-pkgrel=1
-pkgdesc='Python module to work with Debian-related data formats'
-arch=('any')
-url='https://salsa.debian.org/python-debian-team/python-debian'
-license=('GPL')
-depends=('python-chardet' 'python-six')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::$url/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('01bcd9ec9b5892f22b68c2a93eed504a0b03d7e1a509e80d87ac61950ebe9c8e7554c02798e653c8244b359e7bb6491f1fe5a8c77b337ffb564a9ee6fb4157a5')
-b2sums=('18ecc00662fe101b1a9f1dc2fd03a99b219049ed049fda33a3d5c3b9bb3454540fa0be453088d67634186d2a376063362ed9aa2841ba3136b3444c50c4a6c669')
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  rm lib/debian/tests/test_deb{822,file}.py # remove failing tests .. for now
-  python -m unittest discover --verbose lib/
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-debian/repos/community-any/PKGBUILD (from rev 1030896, 
python-debian/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 20:17:00 UTC (rev 1030897)
@@ -0,0 +1,33 @@
+# Maintainer: George Rawlinson 
+# Contributor: Justin Vreeland 
+# Contributor: Mike Javorski (javmorin) 
+# Contributor: Johannes Dewender   arch at JonnyJD dot net
+
+pkgname=python-debian
+pkgver=0.1.42
+pkgrel=1
+pkgdesc='Python module to work with Debian-related data formats'
+arch=('any')
+url='https://salsa.debian.org/python-debian-team/python-debian'
+license=('GPL')
+depends=('python-chardet' 'python-six')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::$url/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('b7f27dda52f110006c0397144ba725194d14947d78484e4846a9a2d1edb75b134aca409db3452cffbffbb8f592b3ba4eaf5d4c7531896b7cb8999fe0174b29fd')
+b2sums=('f2fa589462c17a41118f0f3408b62af0dd171ad25f537b1f8b7110e75f0924ac5c46cddd43a3a8521bff4f0de9f76fcd614081321a971c2953c6c598ddd43187')
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  rm lib/debian/tests/test_deb{822,file}.py # remove failing tests .. for now
+  python -m unittest discover --verbose lib/
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-10-18 Thread George Rawlinson via arch-commits
Date: Monday, October 18, 2021 @ 20:16:02
  Author: grawlinson
Revision: 1030896

upgpkg: python-debian 0.1.42-1

New upstream release.

Modified:
  python-debian/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 20:12:48 UTC (rev 1030895)
+++ PKGBUILD2021-10-18 20:16:02 UTC (rev 1030896)
@@ -4,7 +4,7 @@
 # Contributor: Johannes Dewender   arch at JonnyJD dot net
 
 pkgname=python-debian
-pkgver=0.1.41
+pkgver=0.1.42
 pkgrel=1
 pkgdesc='Python module to work with Debian-related data formats'
 arch=('any')
@@ -13,8 +13,8 @@
 depends=('python-chardet' 'python-six')
 makedepends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::$url/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('01bcd9ec9b5892f22b68c2a93eed504a0b03d7e1a509e80d87ac61950ebe9c8e7554c02798e653c8244b359e7bb6491f1fe5a8c77b337ffb564a9ee6fb4157a5')
-b2sums=('18ecc00662fe101b1a9f1dc2fd03a99b219049ed049fda33a3d5c3b9bb3454540fa0be453088d67634186d2a376063362ed9aa2841ba3136b3444c50c4a6c669')
+sha512sums=('b7f27dda52f110006c0397144ba725194d14947d78484e4846a9a2d1edb75b134aca409db3452cffbffbb8f592b3ba4eaf5d4c7531896b7cb8999fe0174b29fd')
+b2sums=('f2fa589462c17a41118f0f3408b62af0dd171ad25f537b1f8b7110e75f0924ac5c46cddd43a3a8521bff4f0de9f76fcd614081321a971c2953c6c598ddd43187')
 
 build() {
   cd "$pkgname-$pkgver"



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 20:12:48
  Author: archange
Revision: 1030895

archrelease: copy trunk to community-testing-x86_64

Added:
  jami-qt/repos/community-testing-x86_64/
  jami-qt/repos/community-testing-x86_64/PKGBUILD
(from rev 1030894, jami-qt/trunk/PKGBUILD)

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

Copied: jami-qt/repos/community-testing-x86_64/PKGBUILD (from rev 1030894, 
jami-qt/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-18 20:12:48 UTC (rev 1030895)
@@ -0,0 +1,28 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=jami-qt
+pkgver=20211004
+pkgrel=1
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (Qt client)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(libjamiclient jami-daemon glib2 gdk-pixbuf2 libnm libnotify qrencode
+ qt5-declarative qt5-svg qt5-webengine)
+makedepends=(git cmake python qt5-quickcontrols2 qt5-tools)
+_commit=e0b28eed7b4971d1ac96a234395fd7d045ac9cdd
+source=(git+https://git.jami.net/savoirfairelinux/jami-client-qt.git#commit=${_commit})
+md5sums=(SKIP)
+
+build() {
+  cmake -B build -S jami-client-qt \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-Wno-dev
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 20:08:47
  Author: arojas
Revision: 426218

archrelease: copy trunk to extra-x86_64

Added:
  qt5-declarative/repos/extra-x86_64/PKGBUILD
(from rev 426217, qt5-declarative/trunk/PKGBUILD)
Deleted:
  qt5-declarative/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 20:08:38 UTC (rev 426217)
+++ PKGBUILD2021-10-18 20:08:47 UTC (rev 426218)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-declarative
-pkgver=5.15.2+kde+r33
-pkgrel=1
-_commit=9c0030bc8e828ecfbd8a4c8dd6bbfcbd3655b71c
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Classes for QML and JavaScript languages'
-depends=('qt5-base')
-makedepends=('python' 'vulkan-headers' 'git')
-groups=('qt' 'qt5')
-conflicts=('qtchooser')
-_pkgfqn=qtdeclarative
-source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $_pkgfqn
-  echo "5.15.2+kde+r"`git rev-list --count origin/5.15.2..$_commit`
-}
-
-prepare() {
-  mkdir -p build
-
-  cd $_pkgfqn
-  git revert -n 568763928a78b52373932b01be17e040f7c3fa50 # Revert version bump
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Symlinks for backwards compatibility
-  for b in "$pkgdir"/usr/bin/*; do
-ln -s $(basename $b) "$pkgdir"/usr/bin/$(basename $b)-qt5
-  done
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-declarative/repos/extra-x86_64/PKGBUILD (from rev 426217, 
qt5-declarative/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 20:08:47 UTC (rev 426218)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-declarative
+pkgver=5.15.2+kde+r34
+pkgrel=1
+_commit=c1ddd97c87c729c7d05c7a74f82d41cfc5bd9cf8
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for QML and JavaScript languages'
+depends=('qt5-base')
+makedepends=('python' 'vulkan-headers' 'git')
+groups=('qt' 'qt5')
+conflicts=('qtchooser')
+_pkgfqn=qtdeclarative
+source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $_pkgfqn
+  echo "5.15.2+kde+r"`git rev-list --count origin/5.15.2..$_commit`
+}
+
+prepare() {
+  mkdir -p build
+
+  cd $_pkgfqn
+  git revert -n 568763928a78b52373932b01be17e040f7c3fa50 # Revert version bump
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Symlinks for backwards compatibility
+  for b in "$pkgdir"/usr/bin/*; do
+ln -s $(basename $b) "$pkgdir"/usr/bin/$(basename $b)-qt5
+  done
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 20:08:38
  Author: arojas
Revision: 426217

Bump revision

Modified:
  qt5-declarative/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:44:46 UTC (rev 426216)
+++ PKGBUILD2021-10-18 20:08:38 UTC (rev 426217)
@@ -2,9 +2,9 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=qt5-declarative
-pkgver=5.15.2+kde+r33
+pkgver=5.15.2+kde+r34
 pkgrel=1
-_commit=9c0030bc8e828ecfbd8a4c8dd6bbfcbd3655b71c
+_commit=c1ddd97c87c729c7d05c7a74f82d41cfc5bd9cf8
 arch=('x86_64')
 url='https://www.qt.io'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')



[arch-commits] Commit in (jami-qt jami-qt/repos jami-qt/trunk jami-qt/trunk/PKGBUILD)

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 20:08:19
  Author: archange
Revision: 1030894

Initial addition of jami-qt to [community]

Added:
  jami-qt/
  jami-qt/repos/
  jami-qt/trunk/
  jami-qt/trunk/PKGBUILD

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

Added: jami-qt/trunk/PKGBUILD
===
--- jami-qt/trunk/PKGBUILD  (rev 0)
+++ jami-qt/trunk/PKGBUILD  2021-10-18 20:08:19 UTC (rev 1030894)
@@ -0,0 +1,28 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=jami-qt
+pkgver=20211004
+pkgrel=1
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (Qt client)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(libjamiclient jami-daemon glib2 gdk-pixbuf2 libnm libnotify qrencode
+ qt5-declarative qt5-svg qt5-webengine)
+makedepends=(git cmake python qt5-quickcontrols2 qt5-tools)
+_commit=e0b28eed7b4971d1ac96a234395fd7d045ac9cdd
+source=(git+https://git.jami.net/savoirfairelinux/jami-client-qt.git#commit=${_commit})
+md5sums=(SKIP)
+
+build() {
+  cmake -B build -S jami-client-qt \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-Wno-dev
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in python-tensorflow-serving-api/repos/community-any (2 files)

2021-10-18 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, October 18, 2021 @ 19:16:06
  Author: svenstaro
Revision: 1030893

archrelease: copy trunk to community-any

Added:
  python-tensorflow-serving-api/repos/community-any/PKGBUILD
(from rev 1030892, python-tensorflow-serving-api/trunk/PKGBUILD)
Deleted:
  python-tensorflow-serving-api/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 19:15:59 UTC (rev 1030892)
+++ PKGBUILD2021-10-18 19:16:06 UTC (rev 1030893)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: getzze 
-pkgname=python-tensorflow-serving-api
-_name=tensorflow_serving_api
-pkgver=2.3.0
-pkgrel=2
-pkgdesc="Serving system for machine learning models, designed for production 
environments"
-arch=(any)
-url="https://www.tensorflow.org/serving/;
-license=('Apache')
-depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
-makedepends=('bazel' 'git' 'python-wheel' 'python-pip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/tensorflow/serving/archive/${pkgver}.tar.gz;)
-sha256sums=('99b66ac021064f7f15b9daa36a202a139a22c28b915f35965d77255d0575')
-
-build() {
-  cd serving-*
-  bazel build -c opt tensorflow_serving/tools/pip_package:build_pip_package
-  sed -i "s|bazel-genfiles/|bazel-out/k8-opt/bin/|g" 
tensorflow_serving/tools/pip_package/build_pip_package.sh
-  bazel-bin/tensorflow_serving/tools/pip_package/build_pip_package /tmp/pip
-}
-
-package() {
-  cd serving-*
-  pip install --ignore-installed --upgrade --root "${pkgdir}"/ 
/tmp/pip/tensorflow_serving*.whl --no-dependencies
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-tensorflow-serving-api/repos/community-any/PKGBUILD (from rev 
1030892, python-tensorflow-serving-api/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 19:16:06 UTC (rev 1030893)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: getzze 
+pkgname=python-tensorflow-serving-api
+_name=tensorflow_serving_api
+pkgver=2.6.0
+pkgrel=1
+pkgdesc="Serving system for machine learning models, designed for production 
environments"
+arch=(any)
+url="https://www.tensorflow.org/serving/;
+license=('Apache')
+depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
+makedepends=('bazel' 'git' 'python-wheel' 'python-pip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/tensorflow/serving/archive/${pkgver}.tar.gz;)
+sha256sums=('fdcef3631d1f2e889c394906b441908cbb90211d3095c8fa717640996a54fb3d')
+
+build() {
+  cd serving-*
+  bazel build -c opt tensorflow_serving/tools/pip_package:build_pip_package
+  sed -i "s|bazel-genfiles/|bazel-out/k8-opt/bin/|g" 
tensorflow_serving/tools/pip_package/build_pip_package.sh
+  bazel-bin/tensorflow_serving/tools/pip_package/build_pip_package /tmp/pip
+}
+
+package() {
+  cd serving-*
+  pip install --ignore-installed --upgrade --root "${pkgdir}"/ 
/tmp/pip/tensorflow_serving*.whl --no-dependencies
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2021-10-18 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, October 18, 2021 @ 19:15:59
  Author: svenstaro
Revision: 1030892

upgpkg: python-tensorflow-serving-api 2.6.0-1

Modified:
  python-tensorflow-serving-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 19:08:46 UTC (rev 1030891)
+++ PKGBUILD2021-10-18 19:15:59 UTC (rev 1030892)
@@ -2,8 +2,8 @@
 # Contributor: getzze 
 pkgname=python-tensorflow-serving-api
 _name=tensorflow_serving_api
-pkgver=2.3.0
-pkgrel=2
+pkgver=2.6.0
+pkgrel=1
 pkgdesc="Serving system for machine learning models, designed for production 
environments"
 arch=(any)
 url="https://www.tensorflow.org/serving/;
@@ -11,7 +11,7 @@
 depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
 makedepends=('bazel' 'git' 'python-wheel' 'python-pip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/tensorflow/serving/archive/${pkgver}.tar.gz;)
-sha256sums=('99b66ac021064f7f15b9daa36a202a139a22c28b915f35965d77255d0575')
+sha256sums=('fdcef3631d1f2e889c394906b441908cbb90211d3095c8fa717640996a54fb3d')
 
 build() {
   cd serving-*



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

2021-10-18 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, October 18, 2021 @ 19:08:46
  Author: svenstaro
Revision: 1030891

archrelease: copy trunk to community-x86_64

Added:
  tensorboard/repos/community-x86_64/PKGBUILD
(from rev 1030890, tensorboard/trunk/PKGBUILD)
Deleted:
  tensorboard/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 19:08:39 UTC (rev 1030890)
+++ PKGBUILD2021-10-18 19:08:46 UTC (rev 1030891)
@@ -1,55 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Konstantin Gizdov 
-
-pkgname=tensorboard
-pkgver=2.6.0
-pkgrel=1
-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-grpcio' 
'python-google-auth-oauthlib'
- 'python-tensorboard_plugin_wit' 'absl-py')
-makedepends=('bazel' 'python-setuptools' 'tree' 'rust' 'python-pip')
-optdepends=('python-tensorflow: advanced features for TensorBoard')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
-sha512sums=('6d6f6352f363d5efaca7687c98a848c6fc05962dfd913716cce71ce32b3d2cf15155c5cff037e315f3abe8a6d1f337e3fcec6c05f19df9180b05d84457138062')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  bazel build //tensorboard
-  bazel build //tensorboard/pip_package:build_pip_package
-
-  cd tensorboard/data/server
-  cargo build --release
-  python pip_package/build.py --server-binary target/release/rustboard 
--out-dir /tmp
-  cd "$srcdir/$pkgname-$pkgver"
-
-  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"
-
-  pip install --ignore-installed --root "$pkgdir" /tmp/*.whl
-
-  cd pypackage
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  rm -r "$pkgdir"/usr/lib/python3.9/site-packages/external/
-
-  
_requires="$pkgdir"/usr/lib/python3.9/site-packages/tensorboard-${pkgver}-py3.9.egg-info/requires.txt
-  sed -i 's/tensorboard-data-server.*/tensorboard-data-server/' ${_requires}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tensorboard/repos/community-x86_64/PKGBUILD (from rev 1030890, 
tensorboard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 19:08:46 UTC (rev 1030891)
@@ -0,0 +1,55 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Konstantin Gizdov 
+
+pkgname=tensorboard
+pkgver=2.7.0
+pkgrel=1
+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-grpcio' 
'python-google-auth-oauthlib'
+ 'python-tensorboard_plugin_wit' 'absl-py')
+makedepends=('bazel' 'python-setuptools' 'tree' 'rust' 'python-pip')
+optdepends=('python-tensorflow: advanced features for TensorBoard')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
+sha512sums=('ede5aea29a7e2a373d027a67bc4bc1ec4d175e16df075430782da39a80f06110b4c648c0eee14840ce6f2027d26780cee8cb830505c6eb74f1d769cf01f74382')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  bazel build //tensorboard
+  bazel build //tensorboard/pip_package:build_pip_package
+
+  cd tensorboard/data/server
+  cargo build --release
+  python pip_package/build.py --server-binary target/release/rustboard 
--out-dir /tmp
+  cd "$srcdir/$pkgname-$pkgver"
+
+  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"
+
+  pip install --ignore-installed --root "$pkgdir" /tmp/*.whl
+
+  cd pypackage
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  rm -r 

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

2021-10-18 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, October 18, 2021 @ 19:08:39
  Author: svenstaro
Revision: 1030890

upgpkg: tensorboard 2.7.0-1

Modified:
  tensorboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 19:08:37 UTC (rev 1030889)
+++ PKGBUILD2021-10-18 19:08:39 UTC (rev 1030890)
@@ -2,7 +2,7 @@
 # Contributor: Konstantin Gizdov 
 
 pkgname=tensorboard
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="TensorFlow's Visualization Toolkit"
 url='https://github.com/tensorflow/tensorboard'
@@ -14,7 +14,7 @@
 makedepends=('bazel' 'python-setuptools' 'tree' 'rust' 'python-pip')
 optdepends=('python-tensorflow: advanced features for TensorBoard')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
-sha512sums=('6d6f6352f363d5efaca7687c98a848c6fc05962dfd913716cce71ce32b3d2cf15155c5cff037e315f3abe8a6d1f337e3fcec6c05f19df9180b05d84457138062')
+sha512sums=('ede5aea29a7e2a373d027a67bc4bc1ec4d175e16df075430782da39a80f06110b4c648c0eee14840ce6f2027d26780cee8cb830505c6eb74f1d769cf01f74382')
 
 build() {
   cd "$pkgname-$pkgver"



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 19:07:31
  Author: archange
Revision: 1030885

archrelease: copy trunk to community-staging-x86_64

Added:
  jami-gnome/repos/community-staging-x86_64/
  jami-gnome/repos/community-staging-x86_64/PKGBUILD
(from rev 1030884, jami-gnome/trunk/PKGBUILD)

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

Copied: jami-gnome/repos/community-staging-x86_64/PKGBUILD (from rev 1030884, 
jami-gnome/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-18 19:07:31 UTC (rev 1030885)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
+
+pkgname=jami-gnome
+pkgver=20211004
+pkgrel=1
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (GNOME client)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(libjamiclient jami-daemon
+ gtk3 dconf clutter clutter-gtk webkit2gtk qrencode qt5-base libnotify 
libcanberra libnm)
+makedepends=(git cmake)
+_commit=e9bc95724de31484a20d15c1a5acffb159a525a7
+source=(git+https://git.jami.net/savoirfairelinux/jami-client-gnome.git#commit=${_commit})
+md5sums=(SKIP)
+
+prepare() {
+  cd jami-client-gnome
+  # Fix build system looking for lrc sources
+  rm -r web
+  ln -s /usr/include/libringclient/web-chatview/ web
+}
+
+build() {
+  cmake -B build -S jami-client-gnome \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 19:07:09
  Author: archange
Revision: 1030884

upgpkg: jami-gnome 20211004-1

Modified:
  jami-gnome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:57:35 UTC (rev 1030883)
+++ PKGBUILD2021-10-18 19:07:09 UTC (rev 1030884)
@@ -2,7 +2,7 @@
 # Contributor: Baptiste Jonglez 
 
 pkgname=jami-gnome
-pkgver=20210308
+pkgver=20211004
 pkgrel=1
 pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (GNOME client)"
 arch=(x86_64)
@@ -12,12 +12,12 @@
 depends=(libjamiclient jami-daemon
  gtk3 dconf clutter clutter-gtk webkit2gtk qrencode qt5-base libnotify 
libcanberra libnm)
 makedepends=(git cmake)
-_commit=a7b6be4507d1f3b3ffebd4e283ee56b9599897ac
-source=(git+https://git.jami.net/savoirfairelinux/ring-client-gnome.git#commit=${_commit})
+_commit=e9bc95724de31484a20d15c1a5acffb159a525a7
+source=(git+https://git.jami.net/savoirfairelinux/jami-client-gnome.git#commit=${_commit})
 md5sums=(SKIP)
 
 prepare() {
-  cd ring-client-gnome
+  cd jami-client-gnome
   # Fix build system looking for lrc sources
   rm -r web
   ln -s /usr/include/libringclient/web-chatview/ web
@@ -24,7 +24,7 @@
 }
 
 build() {
-  cmake -B build -S ring-client-gnome \
+  cmake -B build -S jami-client-gnome \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=None
   make -C build



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 18:57:35
  Author: archange
Revision: 1030883

archrelease: copy trunk to community-staging-x86_64

Added:
  libjamiclient/repos/community-staging-x86_64/
  libjamiclient/repos/community-staging-x86_64/PKGBUILD
(from rev 1030882, libjamiclient/trunk/PKGBUILD)

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

Copied: libjamiclient/repos/community-staging-x86_64/PKGBUILD (from rev 
1030882, libjamiclient/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-18 18:57:35 UTC (rev 1030883)
@@ -0,0 +1,27 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
+
+pkgname=libjamiclient
+pkgver=20211004
+pkgrel=1
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (client communication library)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(jami-daemon qt5-base)
+makedepends=(git cmake qt5-tools)
+_commit=44202dea3b46ca5c7cd58f8c6f08530c0fae8efa
+source=(git+https://git.jami.net/savoirfairelinux/jami-libclient.git#commit=${_commit})
+md5sums=(SKIP)
+
+build() {
+  cmake -B build -S jami-libclient \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 18:57:14
  Author: archange
Revision: 1030882

upgpkg: libjamiclient 20211004-1

Modified:
  libjamiclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:48:15 UTC (rev 1030881)
+++ PKGBUILD2021-10-18 18:57:14 UTC (rev 1030882)
@@ -2,7 +2,7 @@
 # Contributor: Baptiste Jonglez 
 
 pkgname=libjamiclient
-pkgver=20210301
+pkgver=20211004
 pkgrel=1
 pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (client communication library)"
 arch=(x86_64)
@@ -11,12 +11,12 @@
 groups=(jami)
 depends=(jami-daemon qt5-base)
 makedepends=(git cmake qt5-tools)
-_commit=bae0c7e740b12dc80af4fabae7520b1f856a44c5
-source=(git+https://git.jami.net/savoirfairelinux/ring-lrc.git#commit=${_commit})
+_commit=44202dea3b46ca5c7cd58f8c6f08530c0fae8efa
+source=(git+https://git.jami.net/savoirfairelinux/jami-libclient.git#commit=${_commit})
 md5sums=(SKIP)
 
 build() {
-  cmake -B build -S ring-lrc \
+  cmake -B build -S jami-libclient \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release
   make -C build



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 18:48:15
  Author: archange
Revision: 1030881

archrelease: copy trunk to community-staging-x86_64

Added:
  jami-daemon/repos/community-staging-x86_64/
  jami-daemon/repos/community-staging-x86_64/PKGBUILD
(from rev 1030880, jami-daemon/trunk/PKGBUILD)

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

Copied: jami-daemon/repos/community-staging-x86_64/PKGBUILD (from rev 1030880, 
jami-daemon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-18 18:48:15 UTC (rev 1030881)
@@ -0,0 +1,69 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
+
+pkgname=jami-daemon
+pkgver=20211004
+pkgrel=1
+_pjprojectver=2.11
+pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (daemon component)"
+arch=(x86_64)
+url="https://jami.net;
+license=(GPL3)
+groups=(jami)
+depends=(glibc opendht asio gnutls libgit2 libsecp256k1 ffmpeg speexdsp fmt
+ yaml-cpp jsoncpp zlib dbus-c++ alsa-lib libpulse jack
+ libupnp libnatpmp openssl webrtc-audio-processing systemd-libs
+ libarchive) # expat opus http-parser #portaudio
+makedepends=(git meson cmake perl msgpack-c msgpack-cxx restinio 
autoconf-archive)
+checkdepends=(cppunit)
+_commit=042ad25ca2174df18ca18bcaf39286259fe275be
+source=(git+https://git.jami.net/savoirfairelinux/${pkgname}.git#commit=${_commit}
+
https://github.com/pjsip/pjproject/archive/${_pjprojectver}/pjproject-${_pjprojectver}.tar.gz)
+noextract=(pjproject-${_pjprojectver}.tar.gz)
+sha512sums=(SKIP 
021fe3f904b15e149cf647fe2ebdf530b5a8f11ba226396b6df1c8b85c406a532e6d9c310617434b520de787ec0cc4b07d9d54507d51b80627a5c23e884516c2)
+
+prepare() {
+  cd ${pkgname}
+  cp ../pjproject-${_pjprojectver}.tar.gz contrib/tarballs
+  mkdir contrib/native
+  autoreconf -fvi
+}
+
+build() {
+  cd ${pkgname}/contrib/native
+  ../bootstrap \
+  --disable-downloads \
+  --disable-all \
+  --enable-pjproject
+  make DEPS_pjproject=
+
+  cd ../..
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--sysconfdir=/etc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+
+# https://git.jami.net/savoirfairelinux/jami-daemon/-/issues/651
+  #cd "${srcdir}"
+  #export PATH="$PATH:${PWD}/${pgname}/contrib/$(cc -dumpmachine)/bin"
+  #arch-meson ${pkgname} build -D interfaces=library,dbus -D opensl=disabled 
-D portaudio=disabled -D tests=false \
+  #-D 
pkg_config_path="${PWD}/${pkgname}/contrib/$(cc -dumpmachine)/lib/pkgconfig"
+  #meson compile -C build
+}
+
+#check() {
+# https://git.jami.net/savoirfairelinux/jami-daemon/-/issues/651
+#  cd ${pkgname}
+#  make -k check
+# https://git.jami.net/savoirfairelinux/jami-daemon/-/issues/649
+#  meson test -C build --print-errorlogs
+#}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+  #meson install -C build --destdir "${pkgdir}"
+}



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 18:47:53
  Author: archange
Revision: 1030880

upgpkg: jami-daemon 20211004-1

Tentative update, meson did not worked but other things might be broken

Modified:
  jami-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:23:22 UTC (rev 1030879)
+++ PKGBUILD2021-10-18 18:47:53 UTC (rev 1030880)
@@ -2,27 +2,28 @@
 # Contributor: Baptiste Jonglez 
 
 pkgname=jami-daemon
-pkgver=20210308
+pkgver=20211004
 pkgrel=1
-_pjprojectver=2.10
+_pjprojectver=2.11
 pkgdesc="Free and universal communication platform which preserves the users’ 
privacy and freedoms (daemon component)"
 arch=(x86_64)
 url="https://jami.net;
 license=(GPL3)
 groups=(jami)
-depends=(opendht yaml-cpp alsa-lib libpulse jack jsoncpp dbus-c++ ffmpeg gnutls
- expat libupnp libnatpmp libva libvdpau libsecp256k1 util-linux opus
- openssl asio fmt http-parser libarchive)
-makedepends=(git msgpack-c restinio autoconf-archive)
-#checkdepends=(cppunit)
-_commit=8d428f44847399d9e858ff0090934db095ba8ee3
-source=(git+https://git.jami.net/savoirfairelinux/ring-daemon.git#commit=${_commit}
+depends=(glibc opendht asio gnutls libgit2 libsecp256k1 ffmpeg speexdsp fmt
+ yaml-cpp jsoncpp zlib dbus-c++ alsa-lib libpulse jack
+ libupnp libnatpmp openssl webrtc-audio-processing systemd-libs
+ libarchive) # expat opus http-parser #portaudio
+makedepends=(git meson cmake perl msgpack-c msgpack-cxx restinio 
autoconf-archive)
+checkdepends=(cppunit)
+_commit=042ad25ca2174df18ca18bcaf39286259fe275be
+source=(git+https://git.jami.net/savoirfairelinux/${pkgname}.git#commit=${_commit}
 
https://github.com/pjsip/pjproject/archive/${_pjprojectver}/pjproject-${_pjprojectver}.tar.gz)
 noextract=(pjproject-${_pjprojectver}.tar.gz)
-sha512sums=(SKIP 
a67f083df175b536b4e6a7b7fe39e07d3ee805d6917ec64a50694542a7455c33a100889191044ab3fa679b6656774a6be045621aa53510b5f04cdde9ddd59893)
+sha512sums=(SKIP 
021fe3f904b15e149cf647fe2ebdf530b5a8f11ba226396b6df1c8b85c406a532e6d9c310617434b520de787ec0cc4b07d9d54507d51b80627a5c23e884516c2)
 
 prepare() {
-  cd ring-daemon
+  cd ${pkgname}
   cp ../pjproject-${_pjprojectver}.tar.gz contrib/tarballs
   mkdir contrib/native
   autoreconf -fvi
@@ -29,7 +30,7 @@
 }
 
 build() {
-  cd ring-daemon/contrib/native
+  cd ${pkgname}/contrib/native
   ../bootstrap \
   --disable-downloads \
   --disable-all \
@@ -44,15 +45,25 @@
 --sysconfdir=/etc
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
+
+# https://git.jami.net/savoirfairelinux/jami-daemon/-/issues/651
+  #cd "${srcdir}"
+  #export PATH="$PATH:${PWD}/${pgname}/contrib/$(cc -dumpmachine)/bin"
+  #arch-meson ${pkgname} build -D interfaces=library,dbus -D opensl=disabled 
-D portaudio=disabled -D tests=false \
+  #-D 
pkg_config_path="${PWD}/${pkgname}/contrib/$(cc -dumpmachine)/lib/pkgconfig"
+  #meson compile -C build
 }
 
-# Disabled because some tests (TURN) use the network.
 #check() {
-#  cd ring-daemon
+# https://git.jami.net/savoirfairelinux/jami-daemon/-/issues/651
+#  cd ${pkgname}
 #  make -k check
+# https://git.jami.net/savoirfairelinux/jami-daemon/-/issues/649
+#  meson test -C build --print-errorlogs
 #}
 
 package() {
-  cd ring-daemon
+  cd ${pkgname}
   make DESTDIR="${pkgdir}" install
+  #meson install -C build --destdir "${pkgdir}"
 }



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:44:46
  Author: arojas
Revision: 426216

archrelease: copy trunk to extra-x86_64

Added:
  pyqt5-webengine/repos/extra-x86_64/PKGBUILD
(from rev 426215, pyqt5-webengine/trunk/PKGBUILD)
Deleted:
  pyqt5-webengine/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:44:37 UTC (rev 426215)
+++ PKGBUILD2021-10-18 18:44:46 UTC (rev 426216)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgbase=pyqt5-webengine
-pkgname=(python-pyqt5-webengine)
-pkgdesc="Python bindings for QtWebEngine"
-pkgver=5.15.4
-pkgrel=1
-arch=(x86_64)
-url="https://www.riverbankcomputing.com/software/pyqtwebengine/intro;
-license=(GPL)
-groups=(pyqt5)
-depends=(python-pyqt5 qt5-webengine)
-makedepends=(sip pyqt-builder)
-conflicts=(pyqtwebengine-common python-pyqtwebwengine)
-provides=(python-pyqtwebengine)
-replaces=(python-pyqtwebengine)
-source=("https://pypi.python.org/packages/source/P/PyQtWebEngine/PyQtWebEngine-$pkgver.tar.gz;)
-sha256sums=('cedc28f54165f4b8067652145aec7f732a17eadf6736835852868cf76119cc19')
-
-build() {
-  cd PyQtWebEngine-$pkgver
-  sip-build \
---no-make \
---api-dir /usr/share/qt/qsci/api/python
-  cd build
-  make
-}
-
-package_python-pyqt5-webengine() {
-  cd PyQtWebEngine-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: pyqt5-webengine/repos/extra-x86_64/PKGBUILD (from rev 426215, 
pyqt5-webengine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:44:46 UTC (rev 426216)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=pyqt5-webengine
+pkgname=(python-pyqt5-webengine)
+pkgdesc="Python bindings for QtWebEngine"
+pkgver=5.15.5
+pkgrel=1
+arch=(x86_64)
+url="https://www.riverbankcomputing.com/software/pyqtwebengine/intro;
+license=(GPL)
+groups=(pyqt5)
+depends=(python-pyqt5 qt5-webengine)
+makedepends=(sip pyqt-builder)
+conflicts=(pyqtwebengine-common python-pyqtwebwengine)
+provides=(python-pyqtwebengine)
+replaces=(python-pyqtwebengine)
+source=("https://pypi.python.org/packages/source/P/PyQtWebEngine/PyQtWebEngine-$pkgver.tar.gz;)
+sha256sums=('ab47608dccf2b5e4b950d5a3cc704b17711af035024d07a9b71ad29fc103b941')
+
+build() {
+  cd PyQtWebEngine-$pkgver
+  sip-build \
+--no-make \
+--api-dir /usr/share/qt/qsci/api/python
+  cd build
+  make
+}
+
+package_python-pyqt5-webengine() {
+  cd PyQtWebEngine-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:44:37
  Author: arojas
Revision: 426215

Update to 5.15.5

Modified:
  pyqt5-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:32:40 UTC (rev 426214)
+++ PKGBUILD2021-10-18 18:44:37 UTC (rev 426215)
@@ -4,7 +4,7 @@
 pkgbase=pyqt5-webengine
 pkgname=(python-pyqt5-webengine)
 pkgdesc="Python bindings for QtWebEngine"
-pkgver=5.15.4
+pkgver=5.15.5
 pkgrel=1
 arch=(x86_64)
 url="https://www.riverbankcomputing.com/software/pyqtwebengine/intro;
@@ -16,7 +16,7 @@
 provides=(python-pyqtwebengine)
 replaces=(python-pyqtwebengine)
 
source=("https://pypi.python.org/packages/source/P/PyQtWebEngine/PyQtWebEngine-$pkgver.tar.gz;)
-sha256sums=('cedc28f54165f4b8067652145aec7f732a17eadf6736835852868cf76119cc19')
+sha256sums=('ab47608dccf2b5e4b950d5a3cc704b17711af035024d07a9b71ad29fc103b941')
 
 build() {
   cd PyQtWebEngine-$pkgver



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:32:40
  Author: arojas
Revision: 426214

archrelease: copy trunk to extra-x86_64

Added:
  pyqt5-networkauth/repos/extra-x86_64/PKGBUILD
(from rev 426213, pyqt5-networkauth/trunk/PKGBUILD)
Deleted:
  pyqt5-networkauth/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:32:32 UTC (rev 426213)
+++ PKGBUILD2021-10-18 18:32:40 UTC (rev 426214)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgbase=pyqt5-networkauth
-pkgname=(python-pyqt5-networkauth)
-pkgver=5.15.4
-pkgrel=1
-pkgdesc="Python bindings for QtNetworkAuth"
-arch=(x86_64)
-url="https://www.riverbankcomputing.com/software/pyqtnetworkauth/intro;
-license=(GPL3)
-groups=(pyqt5)
-depends=(qt5-networkauth python-pyqt5)
-makedepends=(sip pyqt-builder)
-source=("https://pypi.python.org/packages/source/P/PyQtNetworkAuth/PyQtNetworkAuth-$pkgver.tar.gz;)
-sha256sums=('893b9f8afb26a64757e9fa3436261b8bfcb4e696efc2a364a9dc8ac44db67fa7')
-
-build() {
-  cd PyQtNetworkAuth-$pkgver
-  sip-build \
---no-make \
---api-dir /usr/share/qt/qsci/api/python
-  cd build
-  make
-}
-
-package_python-pyqt5-networkauth(){
-  cd PyQtNetworkAuth-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: pyqt5-networkauth/repos/extra-x86_64/PKGBUILD (from rev 426213, 
pyqt5-networkauth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:32:40 UTC (rev 426214)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=pyqt5-networkauth
+pkgname=(python-pyqt5-networkauth)
+pkgver=5.15.5
+pkgrel=1
+pkgdesc="Python bindings for QtNetworkAuth"
+arch=(x86_64)
+url="https://www.riverbankcomputing.com/software/pyqtnetworkauth/intro;
+license=(GPL3)
+groups=(pyqt5)
+depends=(qt5-networkauth python-pyqt5)
+makedepends=(sip pyqt-builder)
+source=("https://pypi.python.org/packages/source/P/PyQtNetworkAuth/PyQtNetworkAuth-$pkgver.tar.gz;)
+sha256sums=('2230b6f56f4c9ad2e88bf5ac648e2f3bee9cd757550de0fb98fe0bcb31217b16')
+
+build() {
+  cd PyQtNetworkAuth-$pkgver
+  sip-build \
+--no-make \
+--api-dir /usr/share/qt/qsci/api/python
+  cd build
+  make
+}
+
+package_python-pyqt5-networkauth(){
+  cd PyQtNetworkAuth-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:32:32
  Author: arojas
Revision: 426213

Update to 5.15.5

Modified:
  pyqt5-networkauth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:27:20 UTC (rev 426212)
+++ PKGBUILD2021-10-18 18:32:32 UTC (rev 426213)
@@ -3,7 +3,7 @@
 
 pkgbase=pyqt5-networkauth
 pkgname=(python-pyqt5-networkauth)
-pkgver=5.15.4
+pkgver=5.15.5
 pkgrel=1
 pkgdesc="Python bindings for QtNetworkAuth"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-networkauth python-pyqt5)
 makedepends=(sip pyqt-builder)
 
source=("https://pypi.python.org/packages/source/P/PyQtNetworkAuth/PyQtNetworkAuth-$pkgver.tar.gz;)
-sha256sums=('893b9f8afb26a64757e9fa3436261b8bfcb4e696efc2a364a9dc8ac44db67fa7')
+sha256sums=('2230b6f56f4c9ad2e88bf5ac648e2f3bee9cd757550de0fb98fe0bcb31217b16')
 
 build() {
   cd PyQtNetworkAuth-$pkgver



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:27:20
  Author: arojas
Revision: 426212

archrelease: copy trunk to extra-x86_64

Added:
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 426211, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:27:11 UTC (rev 426211)
+++ PKGBUILD2021-10-18 18:27:20 UTC (rev 426212)
@@ -1,61 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=('python-pyqt5')
-pkgdesc="A set of Python bindings for the Qt5 toolkit"
-pkgver=5.15.4
-pkgrel=1
-arch=('x86_64')
-url="https://riverbankcomputing.com/software/pyqt/intro;
-license=('GPL')
-groups=(pyqt5)
-depends=('python-pyqt5-sip' 'qt5-base')
-optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-'python-dbus: for python-dbus mainloop support'
-'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-'qt5-tools: QtHelp, QtDesigner'
-'qt5-svg: QtSvg'
-'qt5-webkit: QtWebKit, QtWebKitWidgets'
-'qt5-xmlpatterns: QtXmlPatterns'
-'qt5-declarative: QtQml, qmlplugin'
-'qt5-serialport: QtSerialPort'
-'qt5-websockets: QtWebSockets'
-'qt5-connectivity: QtNfc, QtBluetooth'
-'qt5-x11extras: QtX11Extras'
-'qt5-remoteobjects: QtRemoteObjects'
-'qt5-speech: QtTextToSpeech'
-'qt5-quick3d: QtQuick3D')
-provides=(qt5-python-bindings)
-makedepends=('sip' 'pyqt-builder' 'python-opengl' 'python-dbus'
- 'qt5-connectivity' 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 
'qt5-speech' 'qt5-svg'
- 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras' 'qt5-xmlpatterns' 
'qt5-remoteobjects' 'qt5-quick3d')
-conflicts=('pyqt5-common')
-source=("https://pypi.python.org/packages/source/P/PyQt5/PyQt5-$pkgver.tar.gz;)
-sha256sums=('2a69597e0dd11caabe75fae133feca66387819fc9bc050f547e5551bce97e5be')
-
-build() {
-  cd PyQt5-$pkgver
-  sip-build \
---confirm-license \
---no-make \
---api-dir /usr/share/qt/qsci/api/python
-  cd build
-  make
-}
-
-package_python-pyqt5(){
-  cd PyQt5-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install -j1
-
-  # Remove unused py2 version of uic modules:
-  rm -r "$pkgdir"/usr/lib/python*/site-packages/PyQt5/uic/port_v2
-
-  # compile Python bytecode
-  python -m compileall -d / "$pkgdir"/usr/lib
-  python -O -m compileall -d / "$pkgdir"/usr/lib
-}

Copied: pyqt5/repos/extra-x86_64/PKGBUILD (from rev 426211, 
pyqt5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:27:20 UTC (rev 426212)
@@ -0,0 +1,61 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=('python-pyqt5')
+pkgdesc="A set of Python bindings for the Qt5 toolkit"
+pkgver=5.15.5
+pkgrel=1
+arch=('x86_64')
+url="https://riverbankcomputing.com/software/pyqt/intro;
+license=('GPL')
+groups=(pyqt5)
+depends=('python-pyqt5-sip' 'qt5-base')
+optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+'python-dbus: for python-dbus mainloop support'
+'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+'qt5-tools: QtHelp, QtDesigner'
+'qt5-svg: QtSvg'
+'qt5-webkit: QtWebKit, QtWebKitWidgets'
+'qt5-xmlpatterns: QtXmlPatterns'
+'qt5-declarative: QtQml, qmlplugin'
+'qt5-serialport: QtSerialPort'
+'qt5-websockets: QtWebSockets'
+'qt5-connectivity: QtNfc, QtBluetooth'
+'qt5-x11extras: QtX11Extras'
+'qt5-remoteobjects: QtRemoteObjects'
+'qt5-speech: QtTextToSpeech'
+'qt5-quick3d: QtQuick3D')
+provides=(qt5-python-bindings)
+makedepends=('sip' 'pyqt-builder' 'python-opengl' 'python-dbus'
+ 'qt5-connectivity' 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 
'qt5-speech' 'qt5-svg'
+ 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras' 'qt5-xmlpatterns' 
'qt5-remoteobjects' 'qt5-quick3d')
+conflicts=('pyqt5-common')
+source=("https://pypi.python.org/packages/source/P/PyQt5/PyQt5-$pkgver.tar.gz;)
+sha256sums=('b411b7a8fa03901c9feb1dcbac7ea1fc3ce20b9ae682762b777cd5398749ca2b')
+
+build() {
+  cd PyQt5-$pkgver
+  sip-build \
+--confirm-license \
+--no-make \
+--api-dir /usr/share/qt/qsci/api/python
+  cd build
+  make
+}
+
+package_python-pyqt5(){
+  cd PyQt5-$pkgver/build
+  

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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:27:11
  Author: arojas
Revision: 426211

Update to 5.15.5

Modified:
  pyqt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:19:45 UTC (rev 426210)
+++ PKGBUILD2021-10-18 18:27:11 UTC (rev 426211)
@@ -8,7 +8,7 @@
 pkgbase=pyqt5
 pkgname=('python-pyqt5')
 pkgdesc="A set of Python bindings for the Qt5 toolkit"
-pkgver=5.15.4
+pkgver=5.15.5
 pkgrel=1
 arch=('x86_64')
 url="https://riverbankcomputing.com/software/pyqt/intro;
@@ -36,7 +36,7 @@
  'qt5-webkit' 'qt5-websockets' 'qt5-x11extras' 'qt5-xmlpatterns' 
'qt5-remoteobjects' 'qt5-quick3d')
 conflicts=('pyqt5-common')
 source=("https://pypi.python.org/packages/source/P/PyQt5/PyQt5-$pkgver.tar.gz;)
-sha256sums=('2a69597e0dd11caabe75fae133feca66387819fc9bc050f547e5551bce97e5be')
+sha256sums=('b411b7a8fa03901c9feb1dcbac7ea1fc3ce20b9ae682762b777cd5398749ca2b')
 
 build() {
   cd PyQt5-$pkgver



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 18:23:22
  Author: archange
Revision: 1030879

archrelease: copy trunk to community-staging-x86_64

Added:
  libsecp256k1/repos/community-staging-x86_64/
  libsecp256k1/repos/community-staging-x86_64/PKGBUILD
(from rev 1030878, libsecp256k1/trunk/PKGBUILD)

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

Copied: libsecp256k1/repos/community-staging-x86_64/PKGBUILD (from rev 1030878, 
libsecp256k1/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-18 18:23:22 UTC (rev 1030879)
@@ -0,0 +1,52 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Baptiste Jonglez 
+# Contributor: Andy Weidenbaum 
+
+pkgname=libsecp256k1
+_gitcommit=9526874d1406a13193743c605ba64358d55a8785
+pkgver=20211017+1410+g9526874
+pkgrel=1
+pkgdesc="Optimized C library for EC operations on curve secp256k1"
+arch=(x86_64)
+url="https://github.com/bitcoin-core/secp256k1;
+license=(MIT)
+depends=(gmp)
+source=(${url}/archive/${_gitcommit}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e7138d9262e52885d1c5de8f91138832c3a1875de509ce169934be20416b08d7')
+
+prepare() {
+  cd secp256k1-${_gitcommit}
+  autoreconf -vfi
+}
+
+build() {
+  cd secp256k1-${_gitcommit}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/bin \
+--sysconfdir=/etc \
+--sharedstatedir=/usr/share/libsecp256k1 \
+--localstatedir=/var/lib/libsecp256k1 \
+--disable-static \
+--disable-benchmark \
+--disable-coverage \
+--enable-module-ecdh \
+--enable-module-recovery \
+--enable-tests \
+--enable-exhaustive-tests \
+--disable-openssl-tests \
+--with-gnu-ld
+  make
+}
+
+check() {
+  cd secp256k1-${_gitcommit}
+  make check
+}
+
+package() {
+  cd secp256k1-${_gitcommit}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 18:23:00
  Author: archange
Revision: 1030878

upgpkg: libsecp256k1 20211017+1410+g9526874-1

Modified:
  libsecp256k1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:14:27 UTC (rev 1030877)
+++ PKGBUILD2021-10-18 18:23:00 UTC (rev 1030878)
@@ -3,8 +3,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=libsecp256k1
-_gitcommit=ac05f61fcf639a15b5101131561620303e4bd808
-pkgver=20201021+1209+gac05f61
+_gitcommit=9526874d1406a13193743c605ba64358d55a8785
+pkgver=20211017+1410+g9526874
 pkgrel=1
 pkgdesc="Optimized C library for EC operations on curve secp256k1"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 license=(MIT)
 depends=(gmp)
 source=(${url}/archive/${_gitcommit}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a5a5971f4534c0880602bcd0cf43d95ea8dcb278b5c161d55eae979fe3fb196b')
+sha256sums=('e7138d9262e52885d1c5de8f91138832c3a1875de509ce169934be20416b08d7')
 
 prepare() {
   cd secp256k1-${_gitcommit}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:19:45
  Author: arojas
Revision: 426210

archrelease: copy trunk to extra-x86_64

Added:
  sip/repos/extra-x86_64/PKGBUILD
(from rev 426209, sip/trunk/PKGBUILD)
Deleted:
  sip/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:19:37 UTC (rev 426209)
+++ PKGBUILD2021-10-18 18:19:45 UTC (rev 426210)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=sip
-pkgver=6.3.0
-pkgrel=1
-arch=(x86_64)
-pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
-url='https://www.riverbankcomputing.com/software/sip/intro'
-license=('custom:"sip"')
-depends=(python-toml python-packaging python-setuptools)
-conflicts=(sip5)
-replaces=(sip5)
-source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
-sha256sums=('483c8c7db21b67398c331f058fb19508597ed655375804c1cebb9291fc880f1f')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-}

Copied: sip/repos/extra-x86_64/PKGBUILD (from rev 426209, sip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:19:45 UTC (rev 426210)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=sip
+pkgver=6.3.1
+pkgrel=1
+arch=(x86_64)
+pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
+url='https://www.riverbankcomputing.com/software/sip/intro'
+license=('custom:"sip"')
+depends=(python-toml python-packaging python-setuptools)
+conflicts=(sip5)
+replaces=(sip5)
+source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
+sha256sums=('2f9cd6ce0e19226d53d62ad6ba81a62f624626f14924724eab2a23390d4dc684')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:19:37
  Author: arojas
Revision: 426209

Update to 6.3.1

Modified:
  sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:24:49 UTC (rev 426208)
+++ PKGBUILD2021-10-18 18:19:37 UTC (rev 426209)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=sip
-pkgver=6.3.0
+pkgver=6.3.1
 pkgrel=1
 arch=(x86_64)
 pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
@@ -11,7 +11,7 @@
 conflicts=(sip5)
 replaces=(sip5)
 source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
-sha256sums=('483c8c7db21b67398c331f058fb19508597ed655375804c1cebb9291fc880f1f')
+sha256sums=('2f9cd6ce0e19226d53d62ad6ba81a62f624626f14924724eab2a23390d4dc684')
 
 build() {
   cd $pkgname-$pkgver



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

2021-10-18 Thread Alexander Rødseth via arch-commits
Date: Monday, October 18, 2021 @ 18:14:27
  Author: arodseth
Revision: 1030877

archrelease: copy trunk to community-x86_64

Added:
  openttd/repos/community-x86_64/PKGBUILD
(from rev 1030876, openttd/trunk/PKGBUILD)
Deleted:
  openttd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:14:22 UTC (rev 1030876)
+++ PKGBUILD2021-10-18 18:14:27 UTC (rev 1030877)
@@ -1,38 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Vesa Kaihlavirta 
-
-pkgname=openttd
-pkgver=1.11.2
-pkgrel=5
-pkgdesc='Engine for running Transport Tycoon Deluxe'
-arch=(x86_64)
-url='https://www.openttd.org'
-license=(GPL)
-depends=(fluidsynth fontconfig hicolor-icon-theme libpng)
-makedepends=(cmake ninja)
-optdepends=('openttd-opengfx: free graphics'
-'openttd-opensfx: free soundset')
-source=("https://proxy.binaries.openttd.org/openttd-releases/$pkgver/$pkgname-$pkgver-source.tar.xz;)
-b2sums=('c71fd98a480566aede29f84afbd100b6d0dfa80311860907a7287d2d5bed74bd492c2b1012cd83f45fe68d60fb0c2378e1384530a84c28bd7fbd907b45110491')
-
-prepare() {
-  sed -i '/sse/d;/SSE/d' $pkgname-$pkgver/CMakeLists.txt
-}
-
-build() {
-  cmake \
--B build \
--D CMAKE_BUILD_TYPE=Release \
--D CMAKE_INSTALL_PREFIX=/usr \
--D CMAKE_INSTALL_BINDIR=bin \
--D CMAKE_INSTALL_DATADIR=/usr/share \
--G Ninja \
--S $pkgname-$pkgver
-  ninja -C build
-  cd build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: openttd/repos/community-x86_64/PKGBUILD (from rev 1030876, 
openttd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:14:27 UTC (rev 1030877)
@@ -0,0 +1,38 @@
+# Maintainer: Laurent Carlier 
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Vesa Kaihlavirta 
+
+pkgname=openttd
+pkgver=12.0
+pkgrel=1
+pkgdesc='Engine for running Transport Tycoon Deluxe'
+arch=(x86_64)
+url='https://www.openttd.org'
+license=(GPL)
+depends=(fluidsynth fontconfig hicolor-icon-theme libpng)
+makedepends=(cmake ninja)
+optdepends=('openttd-opengfx: free graphics'
+'openttd-opensfx: free soundset')
+source=("https://cdn.$pkgname.org/$pkgname-releases/$pkgver/$pkgname-$pkgver-source.tar.xz;)
+b2sums=('12ffd0978e1f735f4a1d9eb63876a6f4a38867f11e5cbfbb7386f34564ef8b79f394b782c99f28e8a65196b7311aee28427d0485abd2e16dd69f36beb40fa3b1')
+
+prepare() {
+  sed -i '/sse/d;/SSE/d' $pkgname-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cmake \
+-B build \
+-D CMAKE_BUILD_TYPE=Release \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-D CMAKE_INSTALL_BINDIR=bin \
+-D CMAKE_INSTALL_DATADIR=/usr/share \
+-G Ninja \
+-S $pkgname-$pkgver
+  ninja -C build
+  cd build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}



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

2021-10-18 Thread Alexander Rødseth via arch-commits
Date: Monday, October 18, 2021 @ 18:14:22
  Author: arodseth
Revision: 1030876

upgpkg: openttd 12.0-1

Modified:
  openttd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:12:26 UTC (rev 1030875)
+++ PKGBUILD2021-10-18 18:14:22 UTC (rev 1030876)
@@ -3,8 +3,8 @@
 # Contributor: Vesa Kaihlavirta 
 
 pkgname=openttd
-pkgver=1.11.2
-pkgrel=5
+pkgver=12.0
+pkgrel=1
 pkgdesc='Engine for running Transport Tycoon Deluxe'
 arch=(x86_64)
 url='https://www.openttd.org'
@@ -13,8 +13,8 @@
 makedepends=(cmake ninja)
 optdepends=('openttd-opengfx: free graphics'
 'openttd-opensfx: free soundset')
-source=("https://proxy.binaries.openttd.org/openttd-releases/$pkgver/$pkgname-$pkgver-source.tar.xz;)
-b2sums=('c71fd98a480566aede29f84afbd100b6d0dfa80311860907a7287d2d5bed74bd492c2b1012cd83f45fe68d60fb0c2378e1384530a84c28bd7fbd907b45110491')
+source=("https://cdn.$pkgname.org/$pkgname-releases/$pkgver/$pkgname-$pkgver-source.tar.xz;)
+b2sums=('12ffd0978e1f735f4a1d9eb63876a6f4a38867f11e5cbfbb7386f34564ef8b79f394b782c99f28e8a65196b7311aee28427d0485abd2e16dd69f36beb40fa3b1')
 
 prepare() {
   sed -i '/sse/d;/SSE/d' $pkgname-$pkgver/CMakeLists.txt



[arch-commits] Commit in ttf-sarasa-gothic/repos/community-any (PKGBUILD PKGBUILD)

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 18:12:26
  Author: felixonmars
Revision: 1030875

archrelease: copy trunk to community-any

Added:
  ttf-sarasa-gothic/repos/community-any/PKGBUILD
(from rev 1030874, ttf-sarasa-gothic/trunk/PKGBUILD)
Deleted:
  ttf-sarasa-gothic/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:12:16 UTC (rev 1030874)
+++ PKGBUILD2021-10-18 18:12:26 UTC (rev 1030875)
@@ -1,22 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Ye Jingchen 
-# Contributor: Markus Weimar 
-
-pkgname=ttf-sarasa-gothic
-pkgver=0.34.5
-pkgrel=1
-pkgdesc="A CJK programming font based on Iosevka and Source Han Sans. (TTC)"
-arch=('any')
-url="https://github.com/be5invis/Sarasa-Gothic;
-license=('OFL')
-provides=('ttf-sarasa-slab')
-source=("https://github.com/be5invis/Sarasa-Gothic/releases/download/v$pkgver/sarasa-gothic-ttc-$pkgver.7z;
-
"LICENSE-$pkgver::https://raw.githubusercontent.com/be5invis/Sarasa-Gothic/v${pkgver}/LICENSE;)
-sha512sums=('31f3755a7875698d4987ced65ca5d3c97a654ae9c5a443d71d03e44c85c30d2b54b200a36eea1478792065599a3b5b178a799e59082c6fb25f292951c17293e3'
-
'235a437c02a41bb7b7c2a7209f6333d439dd27ff83f0d8b53ae146e92b0159a5196ffcc5fdcc47dc4c995826e468d0af6d9648a2468f39b72a734d8cde6643f9')
-
-package() {
-install -d "$pkgdir/usr/share/fonts/${pkgname:4}"
-install -m644 *.ttc "$pkgdir/usr/share/fonts/${pkgname:4}"
-install -Dm644 "LICENSE-$pkgver" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: ttf-sarasa-gothic/repos/community-any/PKGBUILD (from rev 1030874, 
ttf-sarasa-gothic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:12:26 UTC (rev 1030875)
@@ -0,0 +1,22 @@
+# Maintainer: Felix Yan 
+# Contributor: Ye Jingchen 
+# Contributor: Markus Weimar 
+
+pkgname=ttf-sarasa-gothic
+pkgver=0.34.6
+pkgrel=1
+pkgdesc="A CJK programming font based on Iosevka and Source Han Sans. (TTC)"
+arch=('any')
+url="https://github.com/be5invis/Sarasa-Gothic;
+license=('OFL')
+provides=('ttf-sarasa-slab')
+source=("https://github.com/be5invis/Sarasa-Gothic/releases/download/v$pkgver/sarasa-gothic-ttc-$pkgver.7z;
+
"LICENSE-$pkgver::https://raw.githubusercontent.com/be5invis/Sarasa-Gothic/v${pkgver}/LICENSE;)
+sha512sums=('d91f524a80c7bcf842bb9885ce7485d1a8cf606f14e7c38b6bec306edfe3947ea8e5fc49b8d0a3f87cadcd4d73864b8cdd970e56f54a68caf5c82650c5e30ddb'
+
'235a437c02a41bb7b7c2a7209f6333d439dd27ff83f0d8b53ae146e92b0159a5196ffcc5fdcc47dc4c995826e468d0af6d9648a2468f39b72a734d8cde6643f9')
+
+package() {
+install -d "$pkgdir/usr/share/fonts/${pkgname:4}"
+install -m644 *.ttc "$pkgdir/usr/share/fonts/${pkgname:4}"
+install -Dm644 "LICENSE-$pkgver" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in ttf-sarasa-gothic/trunk (PKGBUILD)

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 18:12:16
  Author: felixonmars
Revision: 1030874

upgpkg: ttf-sarasa-gothic 0.34.6-1

Modified:
  ttf-sarasa-gothic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:12:07 UTC (rev 1030873)
+++ PKGBUILD2021-10-18 18:12:16 UTC (rev 1030874)
@@ -3,7 +3,7 @@
 # Contributor: Markus Weimar 
 
 pkgname=ttf-sarasa-gothic
-pkgver=0.34.5
+pkgver=0.34.6
 pkgrel=1
 pkgdesc="A CJK programming font based on Iosevka and Source Han Sans. (TTC)"
 arch=('any')
@@ -12,7 +12,7 @@
 provides=('ttf-sarasa-slab')
 
source=("https://github.com/be5invis/Sarasa-Gothic/releases/download/v$pkgver/sarasa-gothic-ttc-$pkgver.7z;
 
"LICENSE-$pkgver::https://raw.githubusercontent.com/be5invis/Sarasa-Gothic/v${pkgver}/LICENSE;)
-sha512sums=('31f3755a7875698d4987ced65ca5d3c97a654ae9c5a443d71d03e44c85c30d2b54b200a36eea1478792065599a3b5b178a799e59082c6fb25f292951c17293e3'
+sha512sums=('d91f524a80c7bcf842bb9885ce7485d1a8cf606f14e7c38b6bec306edfe3947ea8e5fc49b8d0a3f87cadcd4d73864b8cdd970e56f54a68caf5c82650c5e30ddb'
 
'235a437c02a41bb7b7c2a7209f6333d439dd27ff83f0d8b53ae146e92b0159a5196ffcc5fdcc47dc4c995826e468d0af6d9648a2468f39b72a734d8cde6643f9')
 
 package() {



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

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 18:12:07
  Author: felixonmars
Revision: 1030873

archrelease: copy trunk to community-x86_64

Added:
  verilator/repos/community-x86_64/PKGBUILD
(from rev 1030872, verilator/trunk/PKGBUILD)
Deleted:
  verilator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:11:58 UTC (rev 1030872)
+++ PKGBUILD2021-10-18 18:12:07 UTC (rev 1030873)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Marcin (CTRL) Wieczorek 
-# Contributor: Jeffrey Tolar 
-
-pkgname=verilator
-pkgver=4.212
-pkgrel=1
-pkgdesc='The fastest free Verilog HDL simulator'
-url='https://www.veripool.org/projects/verilator/wiki/Intro'
-arch=('x86_64')
-license=('LGPL')
-depends=('perl')
-optdepends=('systemc')
-makedepends=('python' 'systemc')
-source=("https://github.com/verilator/verilator/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('efa6d38a1a2e4bde67fd2914f3fb88ea2f7d7d40b9309932ce1e307dfeccd3fefb4fbf3fd5e277232e0fc1ed315b5aa65ae48e6f567c14db0b84e245e9c02095')
-
-prepare() {
-  cd verilator-$pkgver
-  sed -i 
's/#_MY_CXX_CHECK_SET(CFG_CXXFLAGS_STD_NEWEST,-std=c++17)/_MY_CXX_CHECK_SET(CFG_CXXFLAGS_STD_NEWEST,-std=c++17)/'
 configure.ac
-  autoconf
-}
-
-build() {
-  cd verilator-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd verilator-$pkgver
-  make test
-}
-
-package() {
-  cd verilator-$pkgver
-  make install DESTDIR="$pkgdir"
-}

Copied: verilator/repos/community-x86_64/PKGBUILD (from rev 1030872, 
verilator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:12:07 UTC (rev 1030873)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Marcin (CTRL) Wieczorek 
+# Contributor: Jeffrey Tolar 
+
+pkgname=verilator
+pkgver=4.214
+pkgrel=1
+pkgdesc='The fastest free Verilog HDL simulator'
+url='https://www.veripool.org/projects/verilator/wiki/Intro'
+arch=('x86_64')
+license=('LGPL')
+depends=('perl')
+optdepends=('systemc')
+makedepends=('python' 'systemc')
+source=("https://github.com/verilator/verilator/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('e06884f1a0c21ca52cdd6978c101878fcff1732a14b50839552db1e336013d9fd3b923ce399820216a8d84edb6abc7acc37644a436839be87d08c734fc144ddd')
+
+prepare() {
+  cd verilator-$pkgver
+  sed -i 
's/#_MY_CXX_CHECK_SET(CFG_CXXFLAGS_STD_NEWEST,-std=c++17)/_MY_CXX_CHECK_SET(CFG_CXXFLAGS_STD_NEWEST,-std=c++17)/'
 configure.ac
+  autoconf
+}
+
+build() {
+  cd verilator-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd verilator-$pkgver
+  make test
+}
+
+package() {
+  cd verilator-$pkgver
+  make install DESTDIR="$pkgdir"
+}



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

2021-10-18 Thread Felix Yan via arch-commits
Date: Monday, October 18, 2021 @ 18:11:58
  Author: felixonmars
Revision: 1030872

upgpkg: verilator 4.214-1

Modified:
  verilator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:10:51 UTC (rev 1030871)
+++ PKGBUILD2021-10-18 18:11:58 UTC (rev 1030872)
@@ -3,7 +3,7 @@
 # Contributor: Jeffrey Tolar 
 
 pkgname=verilator
-pkgver=4.212
+pkgver=4.214
 pkgrel=1
 pkgdesc='The fastest free Verilog HDL simulator'
 url='https://www.veripool.org/projects/verilator/wiki/Intro'
@@ -13,7 +13,7 @@
 optdepends=('systemc')
 makedepends=('python' 'systemc')
 
source=("https://github.com/verilator/verilator/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('efa6d38a1a2e4bde67fd2914f3fb88ea2f7d7d40b9309932ce1e307dfeccd3fefb4fbf3fd5e277232e0fc1ed315b5aa65ae48e6f567c14db0b84e245e9c02095')
+sha512sums=('e06884f1a0c21ca52cdd6978c101878fcff1732a14b50839552db1e336013d9fd3b923ce399820216a8d84edb6abc7acc37644a436839be87d08c734fc144ddd')
 
 prepare() {
   cd verilator-$pkgver



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:10:51
  Author: arojas
Revision: 1030871

archrelease: copy trunk to community-staging-x86_64

Added:
  mediastreamer/repos/community-staging-x86_64/PKGBUILD
(from rev 1030870, mediastreamer/trunk/PKGBUILD)
Deleted:
  mediastreamer/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:10:35 UTC (rev 1030870)
+++ PKGBUILD2021-10-18 18:10:51 UTC (rev 1030871)
@@ -1,31 +0,0 @@
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Adrià Arrufat 
-# Contributor: Mark Lee 
-
-pkgname=mediastreamer
-pkgver=5.0.32
-pkgrel=2
-pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/mediastreamer2'
-license=(GPL)
-depends=(ortp ffmpeg bzrtp glew libsrtp)
-makedepends=(cmake python bcunit doxygen)
-source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('91308d12a30a1d04e4d396b0d76eb77ea359f0eee9715142047568502149ccfb')
-validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
-
-build() {
-  cmake -B build -S ${pkgname}2-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF \
--DENABLE_STRICT=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-  rm -r "$pkgdir"/usr/include/OpenGL
-}

Copied: mediastreamer/repos/community-staging-x86_64/PKGBUILD (from rev 
1030870, mediastreamer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:10:51 UTC (rev 1030871)
@@ -0,0 +1,31 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+# Contributor: Mark Lee 
+
+pkgname=mediastreamer
+pkgver=5.0.36
+pkgrel=2
+pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
+arch=(x86_64)
+url='https://gitlab.linphone.org/'
+license=(GPL)
+depends=(ortp ffmpeg bzrtp glew libsrtp)
+makedepends=(cmake python bcunit doxygen)
+source=(https://gitlab.linphone.org/BC/public/${pkgname}2/-/archive/$pkgver/${pkgname}2-$pkgver.tar.bz2)
+sha256sums=('674cc435e408b55e530a51ee78b5d83c5fe3c599dc3de4fea77e543434c2ad35')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+
+build() {
+  cmake -B build -S ${pkgname}2-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF \
+-DENABLE_STRICT=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  rm -r "$pkgdir"/usr/include/OpenGL
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:10:35
  Author: arojas
Revision: 1030870

Update to 5.0.36

Modified:
  mediastreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:09:17 UTC (rev 1030869)
+++ PKGBUILD2021-10-18 18:10:35 UTC (rev 1030870)
@@ -6,7 +6,7 @@
 
 pkgname=mediastreamer
 pkgver=5.0.36
-pkgrel=1
+pkgrel=2
 pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
 arch=(x86_64)
 url='https://gitlab.linphone.org/'



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:09:17
  Author: arojas
Revision: 1030869

archrelease: copy trunk to community-x86_64

Added:
  mediastreamer/repos/community-x86_64/PKGBUILD
(from rev 1030868, mediastreamer/trunk/PKGBUILD)
Deleted:
  mediastreamer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:09:05 UTC (rev 1030868)
+++ PKGBUILD2021-10-18 18:09:17 UTC (rev 1030869)
@@ -1,31 +0,0 @@
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Adrià Arrufat 
-# Contributor: Mark Lee 
-
-pkgname=mediastreamer
-pkgver=5.0.32
-pkgrel=1
-pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/mediastreamer2'
-license=(GPL)
-depends=(ortp ffmpeg bzrtp glew libsrtp)
-makedepends=(cmake python bcunit doxygen)
-source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('91308d12a30a1d04e4d396b0d76eb77ea359f0eee9715142047568502149ccfb')
-validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
-
-build() {
-  cmake -B build -S ${pkgname}2-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF \
--DENABLE_STRICT=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-  rm -r "$pkgdir"/usr/include/OpenGL
-}

Copied: mediastreamer/repos/community-x86_64/PKGBUILD (from rev 1030868, 
mediastreamer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:09:17 UTC (rev 1030869)
@@ -0,0 +1,31 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+# Contributor: Mark Lee 
+
+pkgname=mediastreamer
+pkgver=5.0.36
+pkgrel=1
+pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
+arch=(x86_64)
+url='https://gitlab.linphone.org/'
+license=(GPL)
+depends=(ortp ffmpeg bzrtp glew libsrtp)
+makedepends=(cmake python bcunit doxygen)
+source=(https://gitlab.linphone.org/BC/public/${pkgname}2/-/archive/$pkgver/${pkgname}2-$pkgver.tar.bz2)
+sha256sums=('674cc435e408b55e530a51ee78b5d83c5fe3c599dc3de4fea77e543434c2ad35')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+
+build() {
+  cmake -B build -S ${pkgname}2-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF \
+-DENABLE_STRICT=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  rm -r "$pkgdir"/usr/include/OpenGL
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:09:05
  Author: arojas
Revision: 1030868

Update to 5.0.36

Modified:
  mediastreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:06:39 UTC (rev 1030867)
+++ PKGBUILD2021-10-18 18:09:05 UTC (rev 1030868)
@@ -5,16 +5,16 @@
 # Contributor: Mark Lee 
 
 pkgname=mediastreamer
-pkgver=5.0.32
-pkgrel=2
+pkgver=5.0.36
+pkgrel=1
 pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
 arch=(x86_64)
-url='https://github.com/BelledonneCommunications/mediastreamer2'
+url='https://gitlab.linphone.org/'
 license=(GPL)
 depends=(ortp ffmpeg bzrtp glew libsrtp)
 makedepends=(cmake python bcunit doxygen)
-source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('91308d12a30a1d04e4d396b0d76eb77ea359f0eee9715142047568502149ccfb')
+source=(https://gitlab.linphone.org/BC/public/${pkgname}2/-/archive/$pkgver/${pkgname}2-$pkgver.tar.bz2)
+sha256sums=('674cc435e408b55e530a51ee78b5d83c5fe3c599dc3de4fea77e543434c2ad35')
 validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
 
 build() {



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:06:39
  Author: arojas
Revision: 1030867

archrelease: copy trunk to community-x86_64

Added:
  ortp/repos/community-x86_64/PKGBUILD
(from rev 1030866, ortp/trunk/PKGBUILD)
Deleted:
  ortp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:06:29 UTC (rev 1030866)
+++ PKGBUILD2021-10-18 18:06:39 UTC (rev 1030867)
@@ -1,27 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: William Rea 
-
-pkgname=ortp
-pkgver=5.0.32
-pkgrel=1
-pkgdesc='A Real-time Transport Protocol (RTP) library'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/ortp'
-license=(GPL3)
-depends=(bctoolbox)
-makedepends=(cmake doxygen)
-source=(https://github.com/BelledonneCommunications/ortp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('e54371b121dda6c0f6df09c1a54009d8efc103debebb777a4f92262cbffca8af')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: ortp/repos/community-x86_64/PKGBUILD (from rev 1030866, 
ortp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:06:39 UTC (rev 1030867)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: William Rea 
+
+pkgname=ortp
+pkgver=5.0.36
+pkgrel=1
+pkgdesc='A Real-time Transport Protocol (RTP) library'
+arch=(x86_64)
+url='https://gitlab.linphone.org/'
+license=(GPL3)
+depends=(bctoolbox)
+makedepends=(cmake doxygen)
+source=(https://gitlab.linphone.org/BC/public/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('322e6921d882e554eecb34a0ca11ec5b7065aa74453ef07cdb480a26b3c5b650')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:06:29
  Author: arojas
Revision: 1030866

Update to 5.0.36

Modified:
  ortp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:04:33 UTC (rev 1030865)
+++ PKGBUILD2021-10-18 18:06:29 UTC (rev 1030866)
@@ -4,16 +4,16 @@
 # Contributor: William Rea 
 
 pkgname=ortp
-pkgver=5.0.32
+pkgver=5.0.36
 pkgrel=1
 pkgdesc='A Real-time Transport Protocol (RTP) library'
 arch=(x86_64)
-url='https://github.com/BelledonneCommunications/ortp'
+url='https://gitlab.linphone.org/'
 license=(GPL3)
 depends=(bctoolbox)
 makedepends=(cmake doxygen)
-source=(https://github.com/BelledonneCommunications/ortp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('e54371b121dda6c0f6df09c1a54009d8efc103debebb777a4f92262cbffca8af')
+source=(https://gitlab.linphone.org/BC/public/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('322e6921d882e554eecb34a0ca11ec5b7065aa74453ef07cdb480a26b3c5b650')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:04:33
  Author: arojas
Revision: 1030865

archrelease: copy trunk to community-x86_64

Added:
  bzrtp/repos/community-x86_64/PKGBUILD
(from rev 1030864, bzrtp/trunk/PKGBUILD)
Deleted:
  bzrtp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:04:25 UTC (rev 1030864)
+++ PKGBUILD2021-10-18 18:04:33 UTC (rev 1030865)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=bzrtp
-pkgver=5.0.32
-pkgrel=1
-pkgdesc='Open source implementation of ZRTP keys exchange protocol'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/bzrtp'
-license=(GPL2)
-depends=(libxml2 bctoolbox sqlite)
-makedepends=(bcunit cmake)
-source=(https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('17f4c4a4da792dc1126021fae3299bc7e8862af872bb98adc7de58459e83e7c2')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: bzrtp/repos/community-x86_64/PKGBUILD (from rev 1030864, 
bzrtp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:04:33 UTC (rev 1030865)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=bzrtp
+pkgver=5.0.36
+pkgrel=1
+pkgdesc='Open source implementation of ZRTP keys exchange protocol'
+arch=(x86_64)
+url='https://gitlab.linphone.org/'
+license=(GPL2)
+depends=(libxml2 bctoolbox sqlite)
+makedepends=(bcunit cmake)
+source=(https://gitlab.linphone.org/BC/public/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('e620e68e7cfc4b2762850a8f5725028eb830349af016c7446e796434268d8c6c')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:04:25
  Author: arojas
Revision: 1030864

Update to 5.0.36

Modified:
  bzrtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 18:03:31 UTC (rev 1030863)
+++ PKGBUILD2021-10-18 18:04:25 UTC (rev 1030864)
@@ -1,16 +1,16 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=bzrtp
-pkgver=5.0.32
+pkgver=5.0.36
 pkgrel=1
 pkgdesc='Open source implementation of ZRTP keys exchange protocol'
 arch=(x86_64)
-url='https://github.com/BelledonneCommunications/bzrtp'
+url='https://gitlab.linphone.org/'
 license=(GPL2)
 depends=(libxml2 bctoolbox sqlite)
 makedepends=(bcunit cmake)
-source=(https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('17f4c4a4da792dc1126021fae3299bc7e8862af872bb98adc7de58459e83e7c2')
+source=(https://gitlab.linphone.org/BC/public/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('e620e68e7cfc4b2762850a8f5725028eb830349af016c7446e796434268d8c6c')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:03:31
  Author: arojas
Revision: 1030863

archrelease: copy trunk to community-x86_64

Added:
  bctoolbox/repos/community-x86_64/PKGBUILD
(from rev 1030862, bctoolbox/trunk/PKGBUILD)
Deleted:
  bctoolbox/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 18:02:09 UTC (rev 1030862)
+++ PKGBUILD2021-10-18 18:03:31 UTC (rev 1030863)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-
-pkgname=bctoolbox
-pkgver=5.0.32
-pkgrel=1
-pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/bctoolbox'
-license=(GPL)
-depends=(mbedtls bcunit)
-makedepends=(cmake)
-source=(https://github.com/BelledonneCommunications/bctoolbox/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('f9a460339567914626bd218889c9c136c703c006c5087c81a4333c8379c6b836')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: bctoolbox/repos/community-x86_64/PKGBUILD (from rev 1030862, 
bctoolbox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 18:03:31 UTC (rev 1030863)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+
+pkgname=bctoolbox
+pkgver=5.0.36
+pkgrel=1
+pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
+arch=(x86_64)
+url='https://gitlab.linphone.org/'
+license=(GPL)
+depends=(mbedtls bcunit)
+makedepends=(cmake)
+source=(https://gitlab.linphone.org/BC/public/bctoolbox/-/archive/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('766ab4f804ced6af56bb3dac49aee717a91e2ec6d4c402c26bf35958995b8a0e')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 18:02:09
  Author: arojas
Revision: 1030862

Update to 5.0.36

Modified:
  bctoolbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:58:57 UTC (rev 1030861)
+++ PKGBUILD2021-10-18 18:02:09 UTC (rev 1030862)
@@ -2,16 +2,16 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=bctoolbox
-pkgver=5.0.32
+pkgver=5.0.36
 pkgrel=1
 pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
 arch=(x86_64)
-url='https://github.com/BelledonneCommunications/bctoolbox'
+url='https://gitlab.linphone.org/'
 license=(GPL)
 depends=(mbedtls bcunit)
 makedepends=(cmake)
-source=(https://github.com/BelledonneCommunications/bctoolbox/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('f9a460339567914626bd218889c9c136c703c006c5087c81a4333c8379c6b836')
+source=(https://gitlab.linphone.org/BC/public/bctoolbox/-/archive/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('766ab4f804ced6af56bb3dac49aee717a91e2ec6d4c402c26bf35958995b8a0e')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 17:58:57
  Author: arojas
Revision: 1030861

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:58:47 UTC (rev 1030860)
+++ PKGBUILD2021-10-18 17:58:57 UTC (rev 1030861)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-_pipname=jupyter_packaging
-pkgname=python-jupyter_packaging
-pkgver=0.10.6
-pkgrel=1
-pkgdesc='Jupyter Packaging Utilities'
-arch=(any)
-url='https://jupyter.org/'
-license=(custom)
-depends=(python-packaging python-deprecation python-wheel python-tomlkit)
-makedepends=(python-setuptools)
-source=(https://pypi.io/packages/source/j/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('a8a2c90bf2e0cae83be63ccb0b7035032a1589f268cc08b1d479e37ce50fc940')
-
-build() {
-  cd $_pipname-$pkgver
-  python setup.py build 
-}
-
-package() {
-  cd $_pipname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-jupyter_packaging/repos/community-any/PKGBUILD (from rev 
1030860, python-jupyter_packaging/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:58:57 UTC (rev 1030861)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+
+_pipname=jupyter_packaging
+pkgname=python-jupyter_packaging
+pkgver=0.11.0
+pkgrel=1
+pkgdesc='Jupyter Packaging Utilities'
+arch=(any)
+url='https://jupyter.org/'
+license=(custom)
+depends=(python-packaging python-deprecation python-wheel python-tomlkit)
+makedepends=(python-setuptools)
+source=(https://pypi.io/packages/source/j/$_pipname/$_pipname-$pkgver.tar.gz)
+sha256sums=('fdfc7756eac11fe804bf77a6ad1b315458faf314ac46d2869191c4ad5f26cf05')
+
+build() {
+  cd $_pipname-$pkgver
+  python setup.py build 
+}
+
+package() {
+  cd $_pipname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 17:58:47
  Author: arojas
Revision: 1030860

Update to 0.11.0

Modified:
  python-jupyter_packaging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:57:23 UTC (rev 1030859)
+++ PKGBUILD2021-10-18 17:58:47 UTC (rev 1030860)
@@ -2,7 +2,7 @@
 
 _pipname=jupyter_packaging
 pkgname=python-jupyter_packaging
-pkgver=0.10.6
+pkgver=0.11.0
 pkgrel=1
 pkgdesc='Jupyter Packaging Utilities'
 arch=(any)
@@ -11,7 +11,7 @@
 depends=(python-packaging python-deprecation python-wheel python-tomlkit)
 makedepends=(python-setuptools)
 source=(https://pypi.io/packages/source/j/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('a8a2c90bf2e0cae83be63ccb0b7035032a1589f268cc08b1d479e37ce50fc940')
+sha256sums=('fdfc7756eac11fe804bf77a6ad1b315458faf314ac46d2869191c4ad5f26cf05')
 
 build() {
   cd $_pipname-$pkgver



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 17:57:23
  Author: arojas
Revision: 1030859

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 1030858, giac/trunk/PKGBUILD)
  giac/repos/community-x86_64/giac-test-pari-2.11.patch
(from rev 1030858, giac/trunk/giac-test-pari-2.11.patch)
Deleted:
  giac/repos/community-x86_64/PKGBUILD
  giac/repos/community-x86_64/giac-test-pari-2.11.patch

---+
 PKGBUILD  |   84 ++--
 giac-test-pari-2.11.patch |   34 -
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:57:11 UTC (rev 1030858)
+++ PKGBUILD2021-10-18 17:57:23 UTC (rev 1030859)
@@ -1,42 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=giac
-_pkgver=1.7.0-37
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc='A free computer algebra system'
-arch=(x86_64)
-url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
-license=(GPL3)
-depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
-makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
-optdepends=('perl: for pgiac')
-replaces=(libgiac xcas)
-provides=(libgiac xcas)
-source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
-giac-test-pari-2.11.patch)
-sha256sums=('ff06d32808295061f3a7139edb8d6397036fce94da68e27afcf55e40f271f8d7'
-'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
-
-prepare() {
-  cd $pkgname-${pkgver%.*}
-  patch -p1 < ../giac-test-pari-2.11.patch # Fix tests with pari 2.11
-}
-
-build() {
-  cd $pkgname-${pkgver%.*}
-  CXXFLAGS+=" -std=c++14" # workaround build with GCC 11
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-${pkgver%.*}
-
-  make check
-}
-
-package() {
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 1030858, 
giac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:57:23 UTC (rev 1030859)
@@ -0,0 +1,42 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=giac
+_pkgver=1.7.0-39
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc='A free computer algebra system'
+arch=(x86_64)
+url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
+license=(GPL3)
+depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
+makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
+optdepends=('perl: for pgiac')
+replaces=(libgiac xcas)
+provides=(libgiac xcas)
+source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
+giac-test-pari-2.11.patch)
+sha256sums=('234645e33284969fac5901e6172756ac925a6b93362fa24e86e647a82cfcad56'
+'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
+
+prepare() {
+  cd $pkgname-${pkgver%.*}
+  patch -p1 < ../giac-test-pari-2.11.patch # Fix tests with pari 2.11
+}
+
+build() {
+  cd $pkgname-${pkgver%.*}
+  CXXFLAGS+=" -std=c++14" # workaround build with GCC 11
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-${pkgver%.*}
+
+  make check
+}
+
+package() {
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+}

Deleted: giac-test-pari-2.11.patch
===
--- giac-test-pari-2.11.patch   2021-10-18 17:57:11 UTC (rev 1030858)
+++ giac-test-pari-2.11.patch   2021-10-18 17:57:23 UTC (rev 1030859)
@@ -1,17 +0,0 @@
-Change test output for PARI 2.11
-
-See https://trac.sagemath.org/ticket/25567
-and https://xcas.univ-grenoble-alpes.fr/forum/viewtopic.php?f=4=2102
-
-diff -ru a/check/TP11-sol.cas.out1 b/check/TP11-sol.cas.out1
 a/check/TP11-sol.cas.out1  2014-10-21 10:51:48.0 +0200
-+++ b/check/TP11-sol.cas.out1  2018-08-07 17:04:12.528052773 +0200
-@@ -10,7 +10,7 @@
- 107374182400061203284109008409,
- 2^3*3*389*733*156904374622257604823879982847602392900751802349981470895277241,
- "Done",
--matrix[[2,7,1],[3,2,1],[389,2,1],[733,2,1],[156904374622257604823879982847602392900751802349981470895277241,2,matrix[[2,13,1],[3,3,1],[5,2,1],[7,2,1],[56467,2,1],[6553084925887974620811527,2,matrix[[2,5,1],[19,2,1],[71,2,1],[126823,2,1]],
-+1,
- 0,
- [],
- 1,

Copied: giac/repos/community-x86_64/giac-test-pari-2.11.patch (from rev 
1030858, giac/trunk/giac-test-pari-2.11.patch)
===
--- giac-test-pari-2.11.patch   (rev 0)
+++ giac-test-pari-2.11.patch   2021-10-18 17:57:23 UTC (rev 1030859)
@@ -0,0 +1,17 @@
+Change test output for PARI 2.11
+
+See https://trac.sagemath.org/ticket/25567
+and 

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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 17:57:11
  Author: arojas
Revision: 1030858

Update to 1.7.0.39

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:50:01 UTC (rev 1030857)
+++ PKGBUILD2021-10-18 17:57:11 UTC (rev 1030858)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=giac
-_pkgver=1.7.0-37
+_pkgver=1.7.0-39
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc='A free computer algebra system'
@@ -15,7 +15,7 @@
 provides=(libgiac xcas)
 
source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
 giac-test-pari-2.11.patch)
-sha256sums=('ff06d32808295061f3a7139edb8d6397036fce94da68e27afcf55e40f271f8d7'
+sha256sums=('234645e33284969fac5901e6172756ac925a6b93362fa24e86e647a82cfcad56'
 'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
 
 prepare() {



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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 17:50:01
  Author: arojas
Revision: 1030857

archrelease: copy trunk to community-x86_64

Added:
  geogebra/repos/community-x86_64/PKGBUILD
(from rev 1030856, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-x86_64/geogebra
(from rev 1030856, geogebra/trunk/geogebra)
  geogebra/repos/community-x86_64/geogebra-mime.xml
(from rev 1030856, geogebra/trunk/geogebra-mime.xml)
  geogebra/repos/community-x86_64/geogebra.desktop
(from rev 1030856, geogebra/trunk/geogebra.desktop)
Deleted:
  geogebra/repos/community-x86_64/PKGBUILD
  geogebra/repos/community-x86_64/geogebra
  geogebra/repos/community-x86_64/geogebra-mime.xml
  geogebra/repos/community-x86_64/geogebra.desktop

---+
 PKGBUILD  |   72 ++--
 geogebra  |6 ++--
 geogebra-mime.xml |   54 +++
 geogebra.desktop  |   22 +++
 4 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:49:47 UTC (rev 1030856)
+++ PKGBUILD2021-10-18 17:50:01 UTC (rev 1030857)
@@ -1,36 +0,0 @@
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Felipe Hommen 
-# Contributor: moostik 
-
-pkgname=geogebra
-pkgver=6.0.670.0
-pkgrel=1
-pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
-arch=(x86_64)
-url='https://www.geogebra.org/'
-license=(GPL3 'CCPL:by-sa' 'CCPL:by-nc')
-depends=(electron)
-source=(https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${pkgver//./-}.zip
-https://static.geogebra.org/images/geogebra-logo.svg
-geogebra
-geogebra.desktop
-geogebra-mime.xml)
-sha256sums=('bcebe4275764aa3eb04357b63602a3a13136891c29f6bc1e42523efa63367fcd'
-'55ded6b5ec9ad382494f858d8ab5def0ed6c7d529481cd212863b2edde3b5e07'
-'62d6d48511ec9a3d08440d0bba7e6da35e61f84348729872941f66f2f8f15e57'
-'e8f3ac2c91daf1bb38ef4dddf705d341c3d8028aa4afb9b74a2d1a78a9953b98'
-'100dd83e61057b9a104630ea39a84d967475d459ab38e29783a7587b3acfb6a4')
-
-package() {
-  cd GeoGebra-linux-x64
-
-  install -Dm755 "$srcdir"/geogebra "$pkgdir"/usr/bin/geogebra
-  install -dm755 "$pkgdir"/usr/lib/geogebra
-  cp -dpr --no-preserve=ownership resources "$pkgdir"/usr/lib/geogebra
-  cp -dpr --no-preserve=ownership locales "$pkgdir"/usr/lib/geogebra
-
-  install -Dm644 "$srcdir"/geogebra.desktop -t 
"$pkgdir"/usr/share/applications/
-  install -Dm644 "$srcdir"/geogebra-logo.svg 
"$pkgdir"/usr/share/icons/hicolor/scalable/apps/geogebra.svg
-  install -Dm644 "$srcdir"/geogebra-mime.xml 
"$pkgdir"/usr/share/mime/packages/geogebra.xml
-}

Copied: geogebra/repos/community-x86_64/PKGBUILD (from rev 1030856, 
geogebra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:50:01 UTC (rev 1030857)
@@ -0,0 +1,36 @@
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Felipe Hommen 
+# Contributor: moostik 
+
+pkgname=geogebra
+pkgver=6.0.671.0
+pkgrel=1
+pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
+arch=(x86_64)
+url='https://www.geogebra.org/'
+license=(GPL3 'CCPL:by-sa' 'CCPL:by-nc')
+depends=(electron)
+source=(https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${pkgver//./-}.zip
+https://static.geogebra.org/images/geogebra-logo.svg
+geogebra
+geogebra.desktop
+geogebra-mime.xml)
+sha256sums=('8bff6dc5a21bcaad620e6315f4c925c89465822f9b8e0ef4757c109410bcd25a'
+'55ded6b5ec9ad382494f858d8ab5def0ed6c7d529481cd212863b2edde3b5e07'
+'62d6d48511ec9a3d08440d0bba7e6da35e61f84348729872941f66f2f8f15e57'
+'e8f3ac2c91daf1bb38ef4dddf705d341c3d8028aa4afb9b74a2d1a78a9953b98'
+'100dd83e61057b9a104630ea39a84d967475d459ab38e29783a7587b3acfb6a4')
+
+package() {
+  cd GeoGebra-linux-x64
+
+  install -Dm755 "$srcdir"/geogebra "$pkgdir"/usr/bin/geogebra
+  install -dm755 "$pkgdir"/usr/lib/geogebra
+  cp -dpr --no-preserve=ownership resources "$pkgdir"/usr/lib/geogebra
+  cp -dpr --no-preserve=ownership locales "$pkgdir"/usr/lib/geogebra
+
+  install -Dm644 "$srcdir"/geogebra.desktop -t 
"$pkgdir"/usr/share/applications/
+  install -Dm644 "$srcdir"/geogebra-logo.svg 
"$pkgdir"/usr/share/icons/hicolor/scalable/apps/geogebra.svg
+  install -Dm644 "$srcdir"/geogebra-mime.xml 
"$pkgdir"/usr/share/mime/packages/geogebra.xml
+}

Deleted: geogebra
===
--- geogebra2021-10-18 17:49:47 UTC (rev 1030856)
+++ geogebra2021-10-18 17:50:01 UTC (rev 1030857)
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-electron "/usr/lib/geogebra/resources/app" $@

Copied: 

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

2021-10-18 Thread Antonio Rojas via arch-commits
Date: Monday, October 18, 2021 @ 17:49:47
  Author: arojas
Revision: 1030856

Update to 6.0.671.0

Modified:
  geogebra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:44:03 UTC (rev 1030855)
+++ PKGBUILD2021-10-18 17:49:47 UTC (rev 1030856)
@@ -4,7 +4,7 @@
 # Contributor: moostik 
 
 pkgname=geogebra
-pkgver=6.0.670.0
+pkgver=6.0.671.0
 pkgrel=1
 pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
 arch=(x86_64)
@@ -16,7 +16,7 @@
 geogebra
 geogebra.desktop
 geogebra-mime.xml)
-sha256sums=('bcebe4275764aa3eb04357b63602a3a13136891c29f6bc1e42523efa63367fcd'
+sha256sums=('8bff6dc5a21bcaad620e6315f4c925c89465822f9b8e0ef4757c109410bcd25a'
 '55ded6b5ec9ad382494f858d8ab5def0ed6c7d529481cd212863b2edde3b5e07'
 '62d6d48511ec9a3d08440d0bba7e6da35e61f84348729872941f66f2f8f15e57'
 'e8f3ac2c91daf1bb38ef4dddf705d341c3d8028aa4afb9b74a2d1a78a9953b98'



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

2021-10-18 Thread Caleb Maclennan via arch-commits
Date: Monday, October 18, 2021 @ 17:44:03
  Author: alerque
Revision: 1030855

archrelease: copy trunk to community-x86_64

Added:
  btop/repos/community-x86_64/PKGBUILD
(from rev 1030854, btop/trunk/PKGBUILD)
Deleted:
  btop/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:35:15 UTC (rev 1030854)
+++ PKGBUILD2021-10-18 17:44:03 UTC (rev 1030855)
@@ -1,24 +0,0 @@
-# Maintainer: Caleb Maclennan 
-
-pkgname=btop
-pkgver=1.0.17
-pkgrel=1
-pkgdesc='A monitor of system resourecs, bpytop ported to C++'
-arch=(x86_64 aarch64)
-url="https://github.com/aristocratos/$pkgname;
-license=(Apache)
-depends=(gcc-libs)
-_archive="$pkgname-$pkgver"
-source=("$_archive.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('1a301a4d342703b3f4f5cada30f9db2db83cc1775e00e4ff0806a9061e10355d')
-
-build() {
-   cd "$_archive"
-   make all
-}
-
-package() {
-   cd "$_archive"
-   make DESTDIR="$pkgdir" PREFIX=/usr install
-}
-

Copied: btop/repos/community-x86_64/PKGBUILD (from rev 1030854, 
btop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:44:03 UTC (rev 1030855)
@@ -0,0 +1,24 @@
+# Maintainer: Caleb Maclennan 
+
+pkgname=btop
+pkgver=1.0.17
+pkgrel=1
+pkgdesc='A monitor of system resourecs, bpytop ported to C++'
+arch=(x86_64 aarch64)
+url="https://github.com/aristocratos/$pkgname;
+license=(Apache)
+depends=(gcc-libs)
+_archive="$pkgname-$pkgver"
+source=("$_archive.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('1a301a4d342703b3f4f5cada30f9db2db83cc1775e00e4ff0806a9061e10355d')
+
+build() {
+   cd "$_archive"
+   make all
+}
+
+package() {
+   cd "$_archive"
+   make DESTDIR="$pkgdir" PREFIX=/usr install
+}
+



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

2021-10-18 Thread Caleb Maclennan via arch-commits
Date: Monday, October 18, 2021 @ 17:35:15
  Author: alerque
Revision: 1030854

archrelease: copy trunk to community-x86_64

Added:
  btop/repos/community-x86_64/PKGBUILD
(from rev 1030853, btop/trunk/PKGBUILD)
Deleted:
  btop/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:34:55 UTC (rev 1030853)
+++ PKGBUILD2021-10-18 17:35:15 UTC (rev 1030854)
@@ -1,24 +0,0 @@
-# Maintainer: Caleb Maclennan 
-
-pkgname=btop
-pkgver=1.0.15
-pkgrel=1
-pkgdesc='A monitor of system resourecs, bpytop ported to C++'
-arch=(x86_64 aarch64)
-url="https://github.com/aristocratos/$pkgname;
-license=(Apache)
-depends=(gcc-libs)
-_archive="$pkgname-$pkgver"
-source=("$_archive.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('ddb1e396e220a8d9a1a84a8b0d84b907950adf0ead6f4c9261fbfbacaf0589d7')
-
-build() {
-   cd "$_archive"
-   make all
-}
-
-package() {
-   cd "$_archive"
-   make DESTDIR="$pkgdir" PREFIX=/usr install
-}
-

Copied: btop/repos/community-x86_64/PKGBUILD (from rev 1030853, 
btop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:35:15 UTC (rev 1030854)
@@ -0,0 +1,24 @@
+# Maintainer: Caleb Maclennan 
+
+pkgname=btop
+pkgver=1.0.17
+pkgrel=1
+pkgdesc='A monitor of system resourecs, bpytop ported to C++'
+arch=(x86_64 aarch64)
+url="https://github.com/aristocratos/$pkgname;
+license=(Apache)
+depends=(gcc-libs)
+_archive="$pkgname-$pkgver"
+source=("$_archive.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('1a301a4d342703b3f4f5cada30f9db2db83cc1775e00e4ff0806a9061e10355d')
+
+build() {
+   cd "$_archive"
+   make all
+}
+
+package() {
+   cd "$_archive"
+   make DESTDIR="$pkgdir" PREFIX=/usr install
+}
+



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

2021-10-18 Thread Caleb Maclennan via arch-commits
Date: Monday, October 18, 2021 @ 17:34:55
  Author: alerque
Revision: 1030853

upgpkg: btop 1.0.17-1

Modified:
  btop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:34:36 UTC (rev 1030852)
+++ PKGBUILD2021-10-18 17:34:55 UTC (rev 1030853)
@@ -1,7 +1,7 @@
 # Maintainer: Caleb Maclennan 
 
 pkgname=btop
-pkgver=1.0.15
+pkgver=1.0.17
 pkgrel=1
 pkgdesc='A monitor of system resourecs, bpytop ported to C++'
 arch=(x86_64 aarch64)
@@ -10,7 +10,7 @@
 depends=(gcc-libs)
 _archive="$pkgname-$pkgver"
 source=("$_archive.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('ddb1e396e220a8d9a1a84a8b0d84b907950adf0ead6f4c9261fbfbacaf0589d7')
+sha256sums=('1a301a4d342703b3f4f5cada30f9db2db83cc1775e00e4ff0806a9061e10355d')
 
 build() {
cd "$_archive"



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 17:34:36
  Author: archange
Revision: 1030852

archrelease: copy trunk to community-x86_64

Added:
  knot/repos/community-x86_64/PKGBUILD
(from rev 1030851, knot/trunk/PKGBUILD)
Deleted:
  knot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:34:09 UTC (rev 1030851)
+++ PKGBUILD2021-10-18 17:34:36 UTC (rev 1030852)
@@ -1,62 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Ondřej Surý 
-# Contributor: Julian Brost 
-# Contributor: Oleander Reis 
-# Contributor: Otto Sabart 
-
-pkgname=knot
-pkgver=3.1.2
-pkgrel=1
-pkgdesc="High-performance authoritative-only DNS server"
-arch=(x86_64)
-url="https://www.knot-dns.cz/;
-license=(GPL3)
-depends=(libedit gnutls liburcu lmdb
- libidn2 systemd libcap-ng
- fstrm protobuf-c libmaxminddb
- libbpf libnghttp2 libmnl)
-backup=('etc/knot/knot.conf')
-source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=(580087695df350898b2da8a5c2bdf1dc5eb262ed5ff2cb1538cee480a50fa094 
SKIP)
-validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

-
-build() {
-cd ${pkgname}-${pkgver}
-
-./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---libexecdir=/usr/lib/knot \
---with-rundir=/run/knot \
---with-storage=/var/lib/knot \
---enable-recvmmsg \
---enable-dnstap \
---enable-systemd \
---enable-reuseport \
---disable-silent-rules
-
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
-rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
-
-rm "${pkgdir}"/etc/knot/example.com.zone
-mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
-
-install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 distro/pkg/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-install -Dm644 distro/pkg/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-}

Copied: knot/repos/community-x86_64/PKGBUILD (from rev 1030851, 
knot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:34:36 UTC (rev 1030852)
@@ -0,0 +1,62 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Ondřej Surý 
+# Contributor: Julian Brost 
+# Contributor: Oleander Reis 
+# Contributor: Otto Sabart 
+
+pkgname=knot
+pkgver=3.1.3
+pkgrel=1
+pkgdesc="High-performance authoritative-only DNS server"
+arch=(x86_64)
+url="https://www.knot-dns.cz/;
+license=(GPL3)
+depends=(libedit gnutls liburcu lmdb
+ libidn2 systemd libcap-ng
+ fstrm protobuf-c libmaxminddb
+ libbpf libnghttp2 libmnl)
+backup=('etc/knot/knot.conf')
+source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=(a3fc448cbce3209575f93a3cf1224fa37802fc6606f7c7d4bb3aa6dbeaed2c64 
SKIP)
+validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

+
+build() {
+cd ${pkgname}-${pkgver}
+
+./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--libexecdir=/usr/lib/knot \
+--with-rundir=/run/knot \
+--with-storage=/var/lib/knot \
+--enable-recvmmsg \
+--enable-dnstap \
+--enable-systemd \
+--enable-reuseport \
+--disable-silent-rules
+
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+
+# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
+rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
+
+rm "${pkgdir}"/etc/knot/example.com.zone
+mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
+
+install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
+install -Dm644 distro/pkg/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+install -Dm644 distro/pkg/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+}



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 17:34:09
  Author: archange
Revision: 1030851

upgpkg: knot 3.1.3-1

Modified:
  knot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:30:45 UTC (rev 1030850)
+++ PKGBUILD2021-10-18 17:34:09 UTC (rev 1030851)
@@ -5,7 +5,7 @@
 # Contributor: Otto Sabart 
 
 pkgname=knot
-pkgver=3.1.2
+pkgver=3.1.3
 pkgrel=1
 pkgdesc="High-performance authoritative-only DNS server"
 arch=(x86_64)
@@ -17,7 +17,7 @@
  libbpf libnghttp2 libmnl)
 backup=('etc/knot/knot.conf')
 
source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=(580087695df350898b2da8a5c2bdf1dc5eb262ed5ff2cb1538cee480a50fa094 
SKIP)
+sha256sums=(a3fc448cbce3209575f93a3cf1224fa37802fc6606f7c7d4bb3aa6dbeaed2c64 
SKIP)
 validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

 
 build() {



[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2021-10-18 Thread Andrew Crerar via arch-commits
Date: Monday, October 18, 2021 @ 17:30:45
  Author: andrewsc
Revision: 1030850

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 1030849, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  460 ++---
 1 file changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:30:28 UTC (rev 1030849)
+++ PKGBUILD2021-10-18 17:30:45 UTC (rev 1030850)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=94.0b6
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach "Acholi"'
-  'af  "Afrikaans"'
-  'an  "Aragonese"'
-  'ar  "Arabic"'
-  'ast "Asturian"'
-  'az  "Azerbaijani"'
-  'be  "Belarusian"'
-  'bg  "Bulgarian"'
-  'bn  "Bengali"'
-  'br  "Breton"'
-  'bs  "Bosnian"'
-  'ca  "Catalan"'
-  'ca-valencia "Catalan (Valencian)"'
-  'cak "Maya Kaqchikel"'
-  'cs  "Czech"'
-  'cy  "Welsh"'
-  'da  "Danish"'
-  'de  "German"'
-  'dsb "Lower Sorbian"'
-  'el  "Greek"'
-  'en-CA   "English (Canada)"'
-  'en-GB   "English (British)"'
-  'en-US   "English (American)"'
-  'eo  "Esperanto"'
-  'es-AR   "Spanish (Argentina)"'
-  'es-CL   "Spanish (Chile)"'
-  'es-ES   "Spanish (Spain)"'
-  'es-MX   "Spanish (Mexico)"'
-  'et  "Estonian"'
-  'eu  "Basque"'
-  'fa  "Persian"'
-  'ff  "Fulah"'
-  'fi  "Finnish"'
-  'fr  "French"'
-  'fy-NL   "Frisian"'
-  'ga-IE   "Irish"'
-  'gd  "Gaelic (Scotland)"'
-  'gl  "Galician"'
-  'gn  "Guarani"'
-  'gu-IN   "Gujarati (India)"'
-  'he  "Hebrew"'
-  'hi-IN   "Hindi (India)"'
-  'hr  "Croatian"'
-  'hsb "Upper Sorbian"'
-  'hu  "Hungarian"'
-  'hy-AM   "Armenian"'
-  'ia  "Interlingua"'
-  'id  "Indonesian"'
-  'is  "Icelandic"'
-  'it  "Italian"'
-  'ja  "Japanese"'
-  'ka  "Georgian"'
-  'kab "Kabyle"'
-  'kk  "Kazakh"'
-  'km  "Khmer"'
-  'kn  "Kannada"'
-  'ko  "Korean"'
-  'lij "Ligurian"'
-  'lt  "Lithuanian"'
-  'lv  "Latvian"'
-  'mk  "Macedonian"'
-  'mr  "Marathi"'
-  'ms  "Malay"'
-  'my  "Burmese"'
-  'nb-NO   "Norwegian (Bokmål)"'
-  'ne-NP   "Nepali"'
-  'nl  "Dutch"'
-  'nn-NO   "Norwegian (Nynorsk)"'
-  'oc  "Occitan"'
-  'pa-IN   "Punjabi (India)"'
-  'pl  "Polish"'
-  'pt-BR   "Portuguese (Brazilian)"'
-  'pt-PT   "Portuguese (Portugal)"'
-  'rm  "Romansh"'
-  'ro  "Romanian"'
-  'ru  "Russian"'
-  'si  "Sinhala"'
-  'sk  "Slovak"'
-  'sl  "Slovenian"'
-  'son "Songhai"'
-  'sq  "Albanian"'
-  'sr  "Serbian"'
-  'sv-SE   "Swedish"'
-  'ta  "Tamil"'
-  'te  "Telugu"'
-  'th  "Thai"'
-  'tl  "Tagalog"'
-  'tr  "Turkish"'
-  'trs "Triqui"'
-  'uk  "Ukrainian"'
-  'ur  "Urdu"'
-  'uz  "Uzbek"'
-  'vi  "Vietnamese"'
-  'xh  "Xhosa"'
-  'zh-CN   "Chinese (Simplified)"'
-  'zh-TW   "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha512sums=('df8847d8bd9187edc0abb7fd8d76e1131262f2eb83c7c803598475c2b7e6e2499c6327f954c7e12f0ec9da9314a96de7788b68951f4f90672a29ac0f578e0981'
-
'323f7547d3d436e175c1dad64870e8c9630bda17fc0f62ea520dd21c8e5b76f08749d7dc4f7ce0873601de124c4524a90df5b2f6b538e13de728f99287a542c7'
-
'e6b9a5f6d71161384fa4e2b1e4aad16e16cb025720a1726ae4de5696bb20b78dd2c4db26ebbed4cc26acb78c457e896fb79aaecb7b40f345ce00318fa90170cf'
-

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2021-10-18 Thread Andrew Crerar via arch-commits
Date: Monday, October 18, 2021 @ 17:30:28
  Author: andrewsc
Revision: 1030849

upgpkg: firefox-developer-edition-i18n 94.0b7-1

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:10:58 UTC (rev 1030848)
+++ PKGBUILD2021-10-18 17:30:28 UTC (rev 1030849)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=94.0b6
+pkgver=94.0b7
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha512sums=('df8847d8bd9187edc0abb7fd8d76e1131262f2eb83c7c803598475c2b7e6e2499c6327f954c7e12f0ec9da9314a96de7788b68951f4f90672a29ac0f578e0981'
-
'323f7547d3d436e175c1dad64870e8c9630bda17fc0f62ea520dd21c8e5b76f08749d7dc4f7ce0873601de124c4524a90df5b2f6b538e13de728f99287a542c7'
-
'e6b9a5f6d71161384fa4e2b1e4aad16e16cb025720a1726ae4de5696bb20b78dd2c4db26ebbed4cc26acb78c457e896fb79aaecb7b40f345ce00318fa90170cf'
-
'99de03e86e786b0f644fa2ee9629418a49270d95189e192d33dbb88d0881bb88ba1845c7825ace3dca46bb75e8bd08dc3468e7bc107a1091612391bcdd15022b'
-
'0e3dde8c121e194ca57ff0875e449871b391d68169fbbdde75cb90b0bb066f3332c7b57f752f0d1598ddf2a22f49163702da7a6a82061937e340fe03bf76c9ed'
-
'6ce805064078914eed157f792d616553d6acd7b9dc24e9ad21104880913a2be9d17493d5cb25107894a366ac64e3555afad34ec9e5ebddc21b1d7d60ed344a2b'
-
'785386c5bad1bae3b268410e6e64ace7a255753cf84fd8f6f6f9b80c223be6d41f6fa153fc239aa80add975576732bbb279041b91cca2c938e81174bf95a2986'
-
'092c240f424b55faa851f7e8ce0263bec743aec0df518b3a07cc5686d87a99d1dc935254febf3d559dce0e4ee7fea81c7cdaf02cd67e5cdb33271a0ec6c4db02'
-
'cf557f8662dabd1fa41c9024bc73ca7cfebca25d2878639b8420d4099c2488a21b5de50a35fb77b2ca55601bdca4c8fb06510c7b54c4c4ba33135255efd9'
-
'd88eda9bbf7e478d7af04fa28d5764cf7662e9cb498f52ba77fb7bacf9641460b7a20bf7cb7255b2a57bb5db25b0a2c22aa73b7bff7456b66db82cdae18b3825'
-
'a29497037a4e24c819cd9d50b5015de192613dcd46511a071d0d92593415de9f4a1e82e07fba0c6aa9c070e91c40a1188b2743dd2e1e386cf45dc79eb5717400'
-
'483a2d8f0b4616f40c05d9b658df95d39b0eee537f3c96b612313c641c0406833e90d4757b6d55789cfa5091be4f0f3dc11c1ec37b4202b4700e092fee02c7f8'
-
'de117dda263a168307a624d039c3107fd663c308799611fae7e48c5943187238d2791b9f882753f3d43808bd4fb698f503c292c0df74f26c7bc9189de954bbb5'
-
'8f0e17ec1c5f6f0e531888e00fb47038ad90a3673d9f9f55e33c67a5d8de07acbf8bd4b16f317c6bc524e5c2c52bd1d6cb00f1996b426e613883708925b5936c'
-
'a20760bac849a82cf16291297fd942b4ec74041a4d2d30361be82427ef98cbfa9076cf3d3c4b7d2e3f310a29817d8686c7574172fd65d15d69985c53ff390687'
-
'0ef337ba4beebbf7ee14dc5b5b78244514a653ee7f587d9275b27f980bb5e63a7747236b5bded5c49339630b452c0a124ded9a8e2608d8eb208fb96d056c91b1'
-
'c68795f64031a275a59d1ae48700c0b38279bbe017a31f4ee429a523587c258fdc87a6935c955e5966fbdc12c167281f0d3a481661cfc8b24136ce0867ca318b'
-
'71b0fd8a4b585e01d541f2229e06c6a1873eba16eb81054e5c05bfb844957b990ca2f58cf17ce41de93ef2eda56083d2d74475975a73af28e93ddf127785c772'
-
'b65ee097638c5631dbcd83a8c271e20908f0aef234741beb219e17873b00ab4068b8db211ed5f2a8cc1a1938fbcfd3c92ccd15a810a633d54dc18a6112af497a'
-
'2f10400e15433e77c403b1f2a1e810643ab9802a1805c793439e7caeb75b2a1f657af43c706286091de7dfe792a7a5459147785653b37b9d961aa37891e4860a'
-
'7e851df24dba51bb7cd459b4aefa4fccc2272f3ec98fb6688473b629673dbc6f0d974341768eb9fa10e7678828f71b6b77b9e1228dd3b0bb1129f41d5a8ecb36'
-
'5fcd11f7a31cdb7f861ba5722fc79c1ba0c70322629acad4fea877968efeb954484293f8724d091667110a1e56433a7f680d33f05ea76fa1f4230daffb88679c'
-
'23fdffc7acb89e06b538e7f4134d4c4bf64ca2cbad700afa128c3ee74373fd18e4937417f12f3e0c59a8bbceb83ed4dc9e8c81f661dec090953184f2713be931'
-
'f17fa78f816e610aeb918f54f789ebe687a5233d34d6d82be1fa7db8dd3888acfe87f825b92d2d4ba63deaa11594a2de9e96325588d7a4ef0795377d123c'
-
'3515d1f4b2afdfe67a702fa18d06817e5a966249066c4196ed60178f2ec54dfab0b0abc6bfbc0b3bdb8a9d660bcc9e8eb17164098b9dfc735d3f5e31d5b4fbad'
-
'7872f04d7b81d4ae039cebdd8b365f35870421e726621e085e36f012e5df199eaf273ba9a8503ec504fbf8decdf391db8abac6011596ff5dd5b2e53afd513a4b'
-
'3db5f7efbea41f8f9517e4ec7304a13ebe34490c592d1ca5a33c666856668a46fb810bafce99f137b887e0a813d051d217f9a40a07006c1736950d3684a7ce3b'
-
'f09b5f3fbf4c33742f7c7a459e115d27a38ef4e58958183d2bc71add5cd5f1accc099c61953237199eeb0dde28a7f3a6981128b7c77c98b9a727c0296f298a9f'
-

[arch-commits] Commit in archboot/repos/extra-any (4 files)

2021-10-18 Thread Tobias Powalowski via arch-commits
Date: Monday, October 18, 2021 @ 17:24:49
  Author: tpowa
Revision: 426208

archrelease: copy trunk to extra-any

Added:
  archboot/repos/extra-any/PKGBUILD
(from rev 426207, archboot/trunk/PKGBUILD)
  archboot/repos/extra-any/archboot.install
(from rev 426207, archboot/trunk/archboot.install)
Deleted:
  archboot/repos/extra-any/PKGBUILD
  archboot/repos/extra-any/archboot.install

--+
 PKGBUILD |   86 ++---
 archboot.install |   38 +++
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:24:44 UTC (rev 426207)
+++ PKGBUILD2021-10-18 17:24:49 UTC (rev 426208)
@@ -1,43 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2021.10
-pkgrel=53
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'reiserfsprogs' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'memtest86+' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'ifenslave' 'dosfstools' 
'glibc' 'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'iptables-nft' 'ntfs-3g' 'pciutils' 'usbutils' 'vpnc' 'openvpn' 
'b43-fwcutter' 'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vim' 'lzo' 'libsasl' 'libldap' 'gpm' 'libevent' 
'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 'ipw2100-fw'
-'ipw2200-fw' 'smbclient'  'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 
'netctl' 'parted' 'tzdata' 'ntp' 'libgcrypt' 'iw' 'crda'
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'syslinux' 'mtools' 
'fsarchiver' 'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'libusb-compat' 'keyutils' 'libisoburn' 'file' 'curl'  
'smartmontools' 'dnsmasq' 'lftp'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat' 'progsreiserfs'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'pth' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwids' 'systemd' 'archlinux-keyring' 
'haveged' 'pambase' 'chntpw' 'traceroute' 'grub' 
-'systemd-sysvcompat' 'intel-ucode' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'refind' 'efibootmgr' 'f2fs-tools' 'efitools' 
'efivar' 'ethtool' 'exfatprogs' 'broadcom-wl'
-'fuse3' 'flex' 'expac' 'amd-ucode' 'edk2-shell' 'cdrtools' 'mktorrent' 
'nvme-cli' 'fatresize' 'iwd' 'elinks' 'lshw' 
-'sbsigntools' 'openresolv' 'mokutil')
-makedepends=('git')
-optdepends=('archboot-linux-firmware: for stripped down firmware inclusion on 
image file'
-'linux-firmware: for firmware inclusion on image file')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/x86_64.conf'
-'etc/archboot/presets/x86_64'
-)
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot/repos/extra-any/PKGBUILD (from rev 426207, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:24:49 UTC (rev 426208)
@@ -0,0 +1,43 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2021.10
+pkgrel=54
+pkgdesc="Advanced, modular arch boot/install image creation utility"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'reiserfsprogs' 'sed' 'snarf'
+ 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'memtest86+' 'inetutils'
+ 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'ifenslave' 'dosfstools' 
'glibc' 'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
+ 'iptables-nft' 'ntfs-3g' 'pciutils' 'usbutils' 'vpnc' 'openvpn' 
'b43-fwcutter' 'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
+'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 

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

2021-10-18 Thread Tobias Powalowski via arch-commits
Date: Monday, October 18, 2021 @ 17:24:44
  Author: tpowa
Revision: 426207

upgpkg: archboot 2021.10-54: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:07:39 UTC (rev 426206)
+++ PKGBUILD2021-10-18 17:24:44 UTC (rev 426207)
@@ -2,7 +2,7 @@
 
 pkgname=archboot
 pkgver=2021.10
-pkgrel=53
+pkgrel=54
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 17:10:58
  Author: archange
Revision: 1030848

archrelease: copy trunk to community-testing-x86_64

Added:
  opendht/repos/community-testing-x86_64/
  opendht/repos/community-testing-x86_64/PKGBUILD
(from rev 1030847, opendht/trunk/PKGBUILD)
  opendht/repos/community-testing-x86_64/opendht-gcc11.patch
(from rev 1030847, opendht/trunk/opendht-gcc11.patch)

-+
 PKGBUILD|   53 ++
 opendht-gcc11.patch |   12 +++
 2 files changed, 65 insertions(+)

Copied: opendht/repos/community-testing-x86_64/PKGBUILD (from rev 1030847, 
opendht/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-18 17:10:58 UTC (rev 1030848)
@@ -0,0 +1,53 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
+
+pkgname=opendht
+epoch=1
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="C++14 Distributed Hash Table (DHT) implementation"
+arch=(x86_64)
+url="https://github.com/savoirfairelinux/opendht;
+license=(GPL3)
+depends=(glibc gnutls nettle readline argon2 jsoncpp libjsoncpp.so fmt 
http-parser openssl)
+makedepends=(cmake msgpack-c msgpack-cxx asio restinio cython 
python-setuptools)
+checkdepends=(cppunit)
+optdepends=('python: to use the Python bindings')
+source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+opendht-gcc11.patch)
+sha256sums=('9a75db4f119761d6524964b27d3a49aa809a6cb08bde963edc2f338458433c78'
+'4cd9ee51b3da01f00b0eb4367c48fb3a00df0840d5cf7beafaabcd149c8bd0fc')
+
+prepare() {
+  # https://github.com/savoirfairelinux/opendht/pull/567
+  patch -d ${pkgname}-${pkgver} -p1 < opendht-gcc11.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DOPENDHT_DOCUMENTATION=OFF \
+-DOPENDHT_TESTS=ON \
+-DOPENDHT_STATIC=OFF \
+-DOPENDHT_SYSTEMD=ON \
+-DOPENDHT_SYSTEMD_UNIT_FILE_LOCATION=/usr/lib/systemd/system/ \
+-DOPENDHT_LTO=ON \
+-DOPENDHT_INDEX=ON \
+-DOPENDHT_PYTHON=ON \
+-DOPENDHT_HTTP=ON \
+-DOPENDHT_PROXY_SERVER=ON \
+-DOPENDHT_PROXY_CLIENT=ON \
+-DOPENDHT_PUSH_NOTIFICATIONS=ON
+  make -C build
+}
+
+check() {
+  # https://github.com/savoirfairelinux/opendht/issues/568
+  make -C build test || echo "Tests failed"
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}

Copied: opendht/repos/community-testing-x86_64/opendht-gcc11.patch (from rev 
1030847, opendht/trunk/opendht-gcc11.patch)
===
--- community-testing-x86_64/opendht-gcc11.patch
(rev 0)
+++ community-testing-x86_64/opendht-gcc11.patch2021-10-18 17:10:58 UTC 
(rev 1030848)
@@ -0,0 +1,12 @@
+diff --git a/tests/threadpooltester.cpp b/tests/threadpooltester.cpp
+index be948f9..4a5199f 100644
+--- a/tests/threadpooltester.cpp
 b/tests/threadpooltester.cpp
+@@ -21,6 +21,7 @@
+ 
+ #include "opendht/thread_pool.h"
+ #include 
++#include 
+ 
+ namespace test {
+ CPPUNIT_TEST_SUITE_REGISTRATION(ThreadPoolTester);



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

2021-10-18 Thread Bruno Pagani via arch-commits
Date: Monday, October 18, 2021 @ 17:10:30
  Author: archange
Revision: 1030847

upgpkg: opendht 1:2.3.1-1

Modified:
  opendht/trunk/PKGBUILD

--+
 PKGBUILD |   26 ++
 1 file changed, 14 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-18 17:05:51 UTC (rev 1030846)
+++ PKGBUILD2021-10-18 17:10:30 UTC (rev 1030847)
@@ -1,24 +1,26 @@
-# Maintainer: Baptiste Jonglez 
 # Maintainer: Bruno Pagani 
+# Contributor: Baptiste Jonglez 
 
 pkgname=opendht
 epoch=1
-pkgver=2.1.10
-pkgrel=3
+pkgver=2.3.1
+pkgrel=1
 pkgdesc="C++14 Distributed Hash Table (DHT) implementation"
 arch=(x86_64)
 url="https://github.com/savoirfairelinux/opendht;
 license=(GPL3)
-depends=(openssl gnutls nettle argon2 readline fmt http-parser jsoncpp 
libjsoncpp.so)
-makedepends=(msgpack-c cmake cython python-setuptools cppunit restinio)
+depends=(glibc gnutls nettle readline argon2 jsoncpp libjsoncpp.so fmt 
http-parser openssl)
+makedepends=(cmake msgpack-c msgpack-cxx asio restinio cython 
python-setuptools)
+checkdepends=(cppunit)
 optdepends=('python: to use the Python bindings')
 source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
 opendht-gcc11.patch)
-sha256sums=('917e5f691199349d6884a68c26645840914c18e72b2e21d97817618ddc55fb81'
+sha256sums=('9a75db4f119761d6524964b27d3a49aa809a6cb08bde963edc2f338458433c78'
 '4cd9ee51b3da01f00b0eb4367c48fb3a00df0840d5cf7beafaabcd149c8bd0fc')
 
 prepare() {
-  patch -d $pkgname-$pkgver -p1 < opendht-gcc11.patch # Fix build with GCC 11
+  # https://github.com/savoirfairelinux/opendht/pull/567
+  patch -d ${pkgname}-${pkgver} -p1 < opendht-gcc11.patch
 }
 
 build() {
@@ -26,13 +28,12 @@
 -DCMAKE_BUILD_TYPE=None \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
+-DOPENDHT_DOCUMENTATION=OFF \
 -DOPENDHT_TESTS=ON \
--DOPENDHT_DOCUMENTATION=OFF \
 -DOPENDHT_STATIC=OFF \
 -DOPENDHT_SYSTEMD=ON \
 -DOPENDHT_SYSTEMD_UNIT_FILE_LOCATION=/usr/lib/systemd/system/ \
 -DOPENDHT_LTO=ON \
--DOPENDHT_TOOLS=ON \
 -DOPENDHT_INDEX=ON \
 -DOPENDHT_PYTHON=ON \
 -DOPENDHT_HTTP=ON \
@@ -42,9 +43,10 @@
   make -C build
 }
 
-#check() {
-#  make -C build test
-#}
+check() {
+  # https://github.com/savoirfairelinux/opendht/issues/568
+  make -C build test || echo "Tests failed"
+}
 
 package() {
   make -C build DESTDIR="${pkgdir}" install



[arch-commits] Commit in archboot/repos/extra-any (4 files)

2021-10-18 Thread Tobias Powalowski via arch-commits
Date: Monday, October 18, 2021 @ 17:07:39
  Author: tpowa
Revision: 426206

archrelease: copy trunk to extra-any

Added:
  archboot/repos/extra-any/PKGBUILD
(from rev 426205, archboot/trunk/PKGBUILD)
  archboot/repos/extra-any/archboot.install
(from rev 426205, archboot/trunk/archboot.install)
Deleted:
  archboot/repos/extra-any/PKGBUILD
  archboot/repos/extra-any/archboot.install

--+
 PKGBUILD |   86 ++---
 archboot.install |   38 +++
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-18 17:07:34 UTC (rev 426205)
+++ PKGBUILD2021-10-18 17:07:39 UTC (rev 426206)
@@ -1,43 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2021.10
-pkgrel=52
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'reiserfsprogs' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'memtest86+' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'ifenslave' 'dosfstools' 
'glibc' 'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'iptables-nft' 'ntfs-3g' 'pciutils' 'usbutils' 'vpnc' 'openvpn' 
'b43-fwcutter' 'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vim' 'lzo' 'libsasl' 'libldap' 'gpm' 'libevent' 
'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 'ipw2100-fw'
-'ipw2200-fw' 'smbclient'  'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 
'netctl' 'parted' 'tzdata' 'ntp' 'libgcrypt' 'iw' 'crda'
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'syslinux' 'mtools' 
'fsarchiver' 'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'libusb-compat' 'keyutils' 'libisoburn' 'file' 'curl'  
'smartmontools' 'dnsmasq' 'lftp'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat' 'progsreiserfs'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'pth' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwids' 'systemd' 'archlinux-keyring' 
'haveged' 'pambase' 'chntpw' 'traceroute' 'grub' 
-'systemd-sysvcompat' 'intel-ucode' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'refind' 'efibootmgr' 'f2fs-tools' 'efitools' 
'efivar' 'ethtool' 'exfatprogs' 'broadcom-wl'
-'fuse3' 'flex' 'expac' 'amd-ucode' 'edk2-shell' 'cdrtools' 'mktorrent' 
'nvme-cli' 'fatresize' 'iwd' 'elinks' 'lshw' 
-'sbsigntools' 'openresolv' 'mokutil')
-makedepends=('git')
-optdepends=('archboot-linux-firmware: for stripped down firmware inclusion on 
image file'
-'linux-firmware: for firmware inclusion on image file')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/x86_64.conf'
-'etc/archboot/presets/x86_64'
-)
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot/repos/extra-any/PKGBUILD (from rev 426205, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-18 17:07:39 UTC (rev 426206)
@@ -0,0 +1,43 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2021.10
+pkgrel=53
+pkgdesc="Advanced, modular arch boot/install image creation utility"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'reiserfsprogs' 'sed' 'snarf'
+ 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'memtest86+' 'inetutils'
+ 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'ifenslave' 'dosfstools' 
'glibc' 'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
+ 'iptables-nft' 'ntfs-3g' 'pciutils' 'usbutils' 'vpnc' 'openvpn' 
'b43-fwcutter' 'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
+'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 

  1   2   >