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

2021-07-27 Thread Eli Schwartz via arch-commits
Date: Wednesday, July 28, 2021 @ 04:30:30
  Author: eschwartz
Revision: 988362

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-28 04:30:13 UTC (rev 988361)
+++ PKGBUILD2021-07-28 04:30:30 UTC (rev 988362)
@@ -1,68 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Maintainer: Eli Schwartz 
-
-_pkgname=flit
-pkgbase=python-$_pkgname
-pkgname=($pkgbase{,-core})
-pkgver=3.2.0
-pkgrel=2
-pkgdesc='Simplified packaging of Python modules'
-arch=('any')
-url='https://github.com/takluyver/flit'
-license=('BSD')
-depends=('python' 'python-toml')
-makedepends=('python-setuptools' 'python-dephell'
- 'python-requests' 'python-docutils')
- #'python-build' 'python-install' 'python-pyproject2setuppy'
-checkdepends=('python-pytest' 'python-testpath' 'python-responses')
-source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('b40768fb4b0b2a2e3116ac790dfa629da5a57cda34b10abb8ce6a8febcc3436795d5122dcfa3db2c6d07d493f00391d2ca7300112561c8ff2a0b04d77c879662')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  dephell deps convert --from pyproject.toml --to setup.py
-
-  cd flit_core
-
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-
-  cd flit_core
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH=flit_core python -m pytest
-}
-
-package_python-flit() {
-  depends+=('python-flit-core' 'python-requests' 'python-docutils')
-  provides=($_pkgname)
-  conflicts=($_pkgname)
-
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  cp -a flit/license_templates "$pkgdir"/usr/lib/python3.9/site-packages/flit/
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-flit-core() {
-  pkgdesc+=' (core backend)'
-
-  cd $_pkgname-$pkgver/flit_core
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-flit/repos/community-any/PKGBUILD (from rev 988361, 
python-flit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-28 04:30:30 UTC (rev 988362)
@@ -0,0 +1,80 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Eli Schwartz 
+
+_pkgname=flit
+pkgbase=python-$_pkgname
+pkgname=($pkgbase{,-core})
+pkgver=3.2.0
+pkgrel=3
+pkgdesc='Simplified packaging of Python modules'
+arch=('any')
+url='https://github.com/takluyver/flit'
+license=('BSD')
+depends=('python' 'python-toml')
+makedepends=('python-setuptools' 'python-requests' 'python-docutils')
+checkdepends=('python-pytest' 'python-testpath' 'python-responses')
+source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('b40768fb4b0b2a2e3116ac790dfa629da5a57cda34b10abb8ce6a8febcc3436795d5122dcfa3db2c6d07d493f00391d2ca7300112561c8ff2a0b04d77c879662')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # regenerate the dist without the "I don't support people using setup.py" 
flag
+  PYTHONPATH="$PWD/flit_core/" python -m flit build --format sdist
+  bsdtar --strip-components 1 -xvf \
+dist/${_pkgname}-${pkgver}.tar.gz ${_pkgname}-${pkgver}/setup.py
+
+  cd flit_core
+
+  # flit_core.buildapi does not ever generate setup.py, only `flit build` 
does???
+  # since we still rely on them... patch the self builder to import from the 
flit directory's subclass
+  sed -i 's/from .sdist import SdistBuilder/from flit.sdist import 
SdistBuilder/' flit_core/build_thyself.py
+  PYTHONPATH="$PWD/../" python ./build_dists.py
+  bsdtar --strip-components 1 -xvf \
+dist/flit_core-${pkgver}.tar.gz flit_core-${pkgver}/setup.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  # flit doesn't either support people invoking setup.py outside of pip. The
+  # undocumented setuptools.launch reimplements the same thing, but less well
+  # done. Still enough for flit to build.
+  python -m setuptools.launch setup.py build
+
+  cd flit_core
+
+  python -m setuptools.launch setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=flit_core python -m pytest
+}
+
+package_python-flit() {
+  depends+=('python-flit-core' 'python-requests' 'python-docutils')
+  provides=($_pkgname)
+  conflicts=($_pkgname)
+
+  cd $_pkgname-$pkgver
+
+  python -m setuptools.launch setup.py install --root="$pkgdir" --optimize=1 
--skip-build
+  cp -a flit/license_templates "$pkgdir"/usr/lib/python3.9/site-packages/flit/
+
+  install -Dm 644 LICENSE 

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

2021-07-27 Thread Eli Schwartz via arch-commits
Date: Wednesday, July 28, 2021 @ 04:30:13
  Author: eschwartz
Revision: 988361

upgpkg: python-flit 3.2.0-3: fix various issues with dephell + PEP 621 metadata

Use flit in-tree to run flit in order to build flit's sdist. Fixes support for
scripts, strangely including flit_core as a subdirectory of flit, and more.

Also remove tests from the install dir while we are at it.

Modified:
  python-flit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-28 04:04:17 UTC (rev 988360)
+++ PKGBUILD2021-07-28 04:30:13 UTC (rev 988361)
@@ -5,15 +5,13 @@
 pkgbase=python-$_pkgname
 pkgname=($pkgbase{,-core})
 pkgver=3.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Simplified packaging of Python modules'
 arch=('any')
 url='https://github.com/takluyver/flit'
 license=('BSD')
 depends=('python' 'python-toml')
-makedepends=('python-setuptools' 'python-dephell'
- 'python-requests' 'python-docutils')
- #'python-build' 'python-install' 'python-pyproject2setuppy'
+makedepends=('python-setuptools' 'python-requests' 'python-docutils')
 checkdepends=('python-pytest' 'python-testpath' 'python-responses')
 source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
 
sha512sums=('b40768fb4b0b2a2e3116ac790dfa629da5a57cda34b10abb8ce6a8febcc3436795d5122dcfa3db2c6d07d493f00391d2ca7300112561c8ff2a0b04d77c879662')
@@ -21,21 +19,32 @@
 prepare() {
   cd $_pkgname-$pkgver
 
-  dephell deps convert --from pyproject.toml --to setup.py
+  # regenerate the dist without the "I don't support people using setup.py" 
flag
+  PYTHONPATH="$PWD/flit_core/" python -m flit build --format sdist
+  bsdtar --strip-components 1 -xvf \
+dist/${_pkgname}-${pkgver}.tar.gz ${_pkgname}-${pkgver}/setup.py
 
   cd flit_core
 
-  dephell deps convert --from pyproject.toml --to setup.py
+  # flit_core.buildapi does not ever generate setup.py, only `flit build` 
does???
+  # since we still rely on them... patch the self builder to import from the 
flit directory's subclass
+  sed -i 's/from .sdist import SdistBuilder/from flit.sdist import 
SdistBuilder/' flit_core/build_thyself.py
+  PYTHONPATH="$PWD/../" python ./build_dists.py
+  bsdtar --strip-components 1 -xvf \
+dist/flit_core-${pkgver}.tar.gz flit_core-${pkgver}/setup.py
 }
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  # flit doesn't either support people invoking setup.py outside of pip. The
+  # undocumented setuptools.launch reimplements the same thing, but less well
+  # done. Still enough for flit to build.
+  python -m setuptools.launch setup.py build
 
   cd flit_core
 
-  python setup.py build
+  python -m setuptools.launch setup.py build
 }
 
 check() {
@@ -51,7 +60,7 @@
 
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m setuptools.launch setup.py install --root="$pkgdir" --optimize=1 
--skip-build
   cp -a flit/license_templates "$pkgdir"/usr/lib/python3.9/site-packages/flit/
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
@@ -62,7 +71,10 @@
 
   cd $_pkgname-$pkgver/flit_core
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m setuptools.launch setup.py install --root="$pkgdir" --optimize=1 
--skip-build
+  # installing tests to a subdir of your project might not conflict the 
toplevel, but
+  # don't do it anyway...
+  rm -r "$pkgdir"/usr/lib/python*/site-packages/flit_core/tests/
 
   install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2021-07-09 Thread Eli Schwartz via arch-commits
Date: Friday, July 9, 2021 @ 06:33:24
  Author: eschwartz
Revision: 975970

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/PKGBUILD
(from rev 975969, calibre/trunk/PKGBUILD)
Deleted:
  calibre/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-09 06:33:12 UTC (rev 975969)
+++ PKGBUILD2021-07-09 06:33:24 UTC (rev 975970)
@@ -1,106 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgbase=calibre
-pkgname=calibre
-pkgver=5.22.1
-pkgrel=1
-pkgdesc="Ebook management application"
-arch=('x86_64')
-url="https://calibre-ebook.com/;
-license=('GPL3')
-_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dbus' 'dnspython'
-  'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
-  'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
-  'pyqtwebengine' 'regex' 'zeroconf')
-depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libstemmer' 'libusb'
- 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
- "${_py_deps[@]/#/python-}" 'qt5-imageformats' 'qt5-svg' 
'ttf-liberation' 'udisks2')
-makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
-checkdepends=('xorg-server-xvfb')
-optdepends=('poppler: required for converting pdf to html'
-'speech-dispatcher: TTS support in the viewer')
-conflicts=('calibre-common' 'calibre-python3')
-replaces=('calibre-common' 'calibre-python3')
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('93c5e30ff08159694283d08a6b43c37e01a8454c6e7eb66a071e677c2681b516'
-'SKIP')
-b2sums=('8ce1329c7195625579f6b6bdc4e0083cf1a29caa4565e5c88ab943347623d2f0e5def8fdfbf59f31c97af37085d79820fa1ca2ca516bfeb5d582b714ea3ed09c'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare(){
-cd "${pkgbase}-${pkgver}"
-
-# Desktop integration (e.g. enforce arch defaults)
-# Use uppercase naming scheme, don't delete config files under fakeroot.
-sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
--e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
--e "s/^Name=calibre/Name=Calibre/g" \
--i  src/calibre/linux.py
-
-cd resources
-
-# Remove unneeded files
-rm ${pkgbase}-portable.* mozilla-ca-certs.pem
-
-# use system mathjax
-rm -r mathjax
-}
-
-build() {
-cd "${pkgbase}-${pkgver}"
-
-LANG='en_US.UTF-8' python setup.py build
-LANG='en_US.UTF-8' python setup.py gui
-python setup.py liberation_fonts --path-to-liberation_fonts 
/usr/share/fonts/liberation --system-liberation_fonts
-LANG='en_US.UTF-8' python setup.py mathjax --path-to-mathjax 
/usr/share/mathjax --system-mathjax
-LANG='en_US.UTF-8' python setup.py rapydscript
-}
-
-check() {
-cd "${pkgbase}-${pkgver}"
-
-_test_excludes=(
-# merely testing if a runtime-optional feature optdepend is importable
-'speech_dispatcher'
-# tests if a completely unused module is bundled
-'pycryptodome'
-)
-
-# without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
-# ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
-# one or two tests are a bit flaky, but the python3 build seems to succeed 
more often
-LANG='en_US.UTF-8' xvfb-run python setup.py test 
"${_test_excludes[@]/#/--exclude-test-name=}"
-}
-
-package() {
-cd "${pkgbase}-${pkgver}"
-
-# If this directory doesn't exist, zsh completion won't install.
-install -d "${pkgdir}/usr/share/zsh/site-functions"
-
-LANG='en_US.UTF-8' python setup.py install \
---staging-root="${pkgdir}/usr" \
---prefix=/usr \
---system-plugins-location=/usr/share/calibre/system-plugins
-
-cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-# not needed at runtime
-rm -r "${pkgdir}"/usr/share/calibre/rapydscript/
-
-# Compiling bytecode FS#33392
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python3 -m compileall -d "${_destdir}" "${_file}"
-python3 -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/ -name '*.py' -print0)
-}

Copied: calibre/repos/community-x86_64/PKGBUILD (from rev 975969, 
calibre/trunk/PKGBUILD)

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

2021-07-09 Thread Eli Schwartz via arch-commits
Date: Friday, July 9, 2021 @ 06:33:07
  Author: eschwartz
Revision: 975968

upgpkg: calibre 5.23.0-1: upstream release

dbus implementation used by upstream has changed, +1/-1 dependency

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 06:32:59 UTC (rev 975967)
+++ PKGBUILD2021-07-09 06:33:07 UTC (rev 975968)
@@ -8,14 +8,14 @@
 
 pkgbase=calibre
 pkgname=calibre
-pkgver=5.22.1
+pkgver=5.23.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
 url="https://calibre-ebook.com/;
 license=('GPL3')
-_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dbus' 'dnspython'
-  'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
+_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dnspython'
+  'feedparser' 'html2text' 'html5-parser' 'jeepney' 'lxml' 'markdown' 
'mechanize' 'msgpack'
   'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
   'pyqtwebengine' 'regex' 'zeroconf')
 depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libstemmer' 'libusb'
@@ -29,9 +29,9 @@
 replaces=('calibre-common' 'calibre-python3')
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 "https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('93c5e30ff08159694283d08a6b43c37e01a8454c6e7eb66a071e677c2681b516'
+sha256sums=('e1e5db8b88b6608e3214c62e9aa6214d7e5142bffb9a9eb0be6bb42caddb15fb'
 'SKIP')
-b2sums=('8ce1329c7195625579f6b6bdc4e0083cf1a29caa4565e5c88ab943347623d2f0e5def8fdfbf59f31c97af37085d79820fa1ca2ca516bfeb5d582b714ea3ed09c'
+b2sums=('065183b28d929a82e200f5bad6a7bf2bc2fe6902cb4c3738139e88eb90fab44a91984f50151b0713274c8f904776130175ea210cc6e165ea39856abf657575a7'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 



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

2021-07-07 Thread Eli Schwartz via arch-commits
Date: Thursday, July 8, 2021 @ 04:22:44
  Author: eschwartz
Revision: 975486

archrelease: copy trunk to community-x86_64

Added:
  hotdoc/repos/community-x86_64/PKGBUILD
(from rev 975485, hotdoc/trunk/PKGBUILD)
Deleted:
  hotdoc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 04:22:28 UTC (rev 975485)
+++ PKGBUILD2021-07-08 04:22:44 UTC (rev 975486)
@@ -1,37 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=hotdoc
-pkgname=hotdoc
-pkgver=0.13.3
-pkgrel=1
-pkgdesc="the tastiest API documentation system"
-arch=('x86_64')
-url="https://github.com/${_pkgname}/${_pkgname};
-license=('LGPL')
-_py_deps=('appdirs' 'cchardet' 'dbus-deviation' 'lxml' 'networkx' 'pkgconfig'
-  'schema' 'toposort' 'wheezy-template' 'yaml')
-depends=("${_py_deps[@]/#/python-}" 'json-glib')
-makedepends=('python-setuptools' 'cmake')
-optdepends=('clang: for the C extension'
-'llvm: for the C extension')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('226042da44a7a710316112fba1083c3165fe26bdfd701835569934c077a95cb1')
-b2sums=('bb01759ca7029f4fed448643316301c058fc81cc315d37b9bbddb9df117955c33ca5800c1e81eee8174e9e31f882dd0166d38fa23c59f8f6a3ee2d0528885a41')
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build/lib.linux-$CARCH-3*
-
-python -m unittest
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: hotdoc/repos/community-x86_64/PKGBUILD (from rev 975485, 
hotdoc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 04:22:44 UTC (rev 975486)
@@ -0,0 +1,37 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=hotdoc
+pkgname=hotdoc
+pkgver=0.13.4
+pkgrel=1
+pkgdesc="the tastiest API documentation system"
+arch=('x86_64')
+url="https://github.com/${_pkgname}/${_pkgname};
+license=('LGPL')
+_py_deps=('appdirs' 'cchardet' 'dbus-deviation' 'lxml' 'networkx' 'pkgconfig'
+  'schema' 'toposort' 'wheezy-template' 'yaml')
+depends=("${_py_deps[@]/#/python-}" 'json-glib')
+makedepends=('python-setuptools' 'cmake')
+optdepends=('clang: for the C extension'
+'llvm: for the C extension')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('2d917b20f084717ca607d39b4bc498292f9d170ddf3c94f21062cda7a3d5ab91')
+b2sums=('e9fa7d39970237a47c77d0c275fd84bf5ce3a446efabf810b23430ef06150d696e6ad223118fdd04632be297a0e564962cf3bbddafcfe9f3795036fbf0dc32a7')
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build/lib.linux-$CARCH-3*
+
+python -m unittest
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}



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

2021-07-07 Thread Eli Schwartz via arch-commits
Date: Thursday, July 8, 2021 @ 04:22:28
  Author: eschwartz
Revision: 975485

upgpkg: hotdoc 0.13.4-1: upstream release

Modified:
  hotdoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 04:10:08 UTC (rev 975484)
+++ PKGBUILD2021-07-08 04:22:28 UTC (rev 975485)
@@ -2,7 +2,7 @@
 
 _pkgname=hotdoc
 pkgname=hotdoc
-pkgver=0.13.3
+pkgver=0.13.4
 pkgrel=1
 pkgdesc="the tastiest API documentation system"
 arch=('x86_64')
@@ -15,8 +15,8 @@
 optdepends=('clang: for the C extension'
 'llvm: for the C extension')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('226042da44a7a710316112fba1083c3165fe26bdfd701835569934c077a95cb1')
-b2sums=('bb01759ca7029f4fed448643316301c058fc81cc315d37b9bbddb9df117955c33ca5800c1e81eee8174e9e31f882dd0166d38fa23c59f8f6a3ee2d0528885a41')
+sha256sums=('2d917b20f084717ca607d39b4bc498292f9d170ddf3c94f21062cda7a3d5ab91')
+b2sums=('e9fa7d39970237a47c77d0c275fd84bf5ce3a446efabf810b23430ef06150d696e6ad223118fdd04632be297a0e564962cf3bbddafcfe9f3795036fbf0dc32a7')
 
 build() {
 cd "${srcdir}"/${pkgname}-${pkgver}



[arch-commits] Commit in keybase/repos/community-x86_64 (9 files)

2021-07-07 Thread Eli Schwartz via arch-commits
Date: Thursday, July 8, 2021 @ 01:40:34
  Author: eschwartz
Revision: 975321

archrelease: copy trunk to community-x86_64

Added:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
(from rev 975320, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
  
keybase/repos/community-x86_64/0001-Maintain-current-contextIsolation-behavior-across-el.patch
(from rev 975320, 
keybase/trunk/0001-Maintain-current-contextIsolation-behavior-across-el.patch)
  keybase/repos/community-x86_64/PKGBUILD
(from rev 975320, keybase/trunk/PKGBUILD)
  keybase/repos/community-x86_64/kbfs.install
(from rev 975320, keybase/trunk/kbfs.install)
  keybase/repos/community-x86_64/keybase-gui
(from rev 975320, keybase/trunk/keybase-gui)
Deleted:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
  keybase/repos/community-x86_64/PKGBUILD
  keybase/repos/community-x86_64/kbfs.install
  keybase/repos/community-x86_64/keybase-gui

-+
 0001-Don-t-use-electron-to-build.patch  |  134 ++--
 0001-Maintain-current-contextIsolation-behavior-across-el.patch |   67 ++
 PKGBUILD|  281 
+-
 kbfs.install|   30 -
 keybase-gui |   36 -
 5 files changed, 311 insertions(+), 237 deletions(-)

Deleted: 0001-Don-t-use-electron-to-build.patch
===
--- 0001-Don-t-use-electron-to-build.patch  2021-07-08 01:40:00 UTC (rev 
975320)
+++ 0001-Don-t-use-electron-to-build.patch  2021-07-08 01:40:34 UTC (rev 
975321)
@@ -1,67 +0,0 @@
-From f13853908947e47a7853125865c98a406cd7772f Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 21 Jun 2018 05:00:37 -0400
-Subject: [PATCH] Don't use electron to build
-

- shared/desktop/package.desktop.tsx   | 4 ++--
- shared/desktop/yarn-helper/index.tsx | 2 --
- shared/package.json  | 1 -
- 3 files changed, 2 insertions(+), 5 deletions(-)
-
-diff --git a/shared/desktop/package.desktop.tsx 
b/shared/desktop/package.desktop.tsx
-index b10bb10295..f4b5fc3e6a 100644
 a/shared/desktop/package.desktop.tsx
-+++ b/shared/desktop/package.desktop.tsx
-@@ -133,7 +133,7 @@ function main() {
-   // use the same version as the currently-installed electron
-   console.log('Finding electron version')
-   try {
--packagerOpts.electronVersion = 
require('../package.json').devDependencies.electron
-+packagerOpts.electronVersion = 'unused string'
- console.log('Found electron version:', packagerOpts.electronVersion)
-   } catch (err) {
- console.log("Couldn't parse yarn list to find electron:", err)
-@@ -181,7 +181,7 @@ function startPack() {
- .catch(postPackError)
- })
-   })
--} else {
-+} else if (false) {
-   pack(platform, arch)
- .then(postPack(platform, arch))
- .catch(postPackError)
-diff --git a/shared/desktop/yarn-helper/index.tsx 
b/shared/desktop/yarn-helper/index.tsx
-index c7b04af258..a752ccd8bc 100644
 a/shared/desktop/yarn-helper/index.tsx
-+++ b/shared/desktop/yarn-helper/index.tsx
-@@ -1,6 +1,5 @@
- // Helper for cross platform yarn run script commands
- import buildCommands from './build'
--import electronComands from './electron'
- import fontCommands from './font'
- import prettierCommands from './prettier'
- import {execSync} from 'child_process'
-@@ -14,7 +13,6 @@ const [, , command, ...rest] = process.argv
- const commands = {
-   ...buildCommands,
-   ...fontCommands,
--  ...electronComands,
-   ...prettierCommands,
-   help: {
- code: () => {
-diff --git a/shared/package.json b/shared/package.json
-index 84e9247190..e5a9045157 100644
 a/shared/package.json
-+++ b/shared/package.json
-@@ -201,7 +201,6 @@
- "cross-env": "7.0.2",
- "css-loader": "3.2.0",
- "del": "3.0.0",
--"electron": "10.1.1",
- "electron-packager": "14.0.6",
- "eslint": "6.4.0",
- "eslint-plugin-filenames": "1.3.2",
--- 
-2.28.0
-

Copied: keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch 
(from rev 975320, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
===
--- 0001-Don-t-use-electron-to-build.patch  (rev 0)
+++ 0001-Don-t-use-electron-to-build.patch  2021-07-08 01:40:34 UTC (rev 
975321)
@@ -0,0 +1,67 @@
+From f13853908947e47a7853125865c98a406cd7772f Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Thu, 21 Jun 2018 05:00:37 -0400
+Subject: [PATCH] Don't use electron to build
+
+---
+ shared/desktop/package.desktop.tsx   | 4 ++--
+ shared/desktop/yarn-helper/index.tsx | 2 --
+ shared/package.json  | 1 -
+ 3 files changed, 2 insertions(+), 5 deletions(-)
+
+diff 

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

2021-07-07 Thread Eli Schwartz via arch-commits
Date: Thursday, July 8, 2021 @ 01:40:00
  Author: eschwartz
Revision: 975320

upgpkg: keybase 5.7.1-2: upstream release

and take this opportunity to debug and "fix" compatibility with the latest 
electron

Added:
  keybase/trunk/0001-Maintain-current-contextIsolation-behavior-across-el.patch
Modified:
  keybase/trunk/PKGBUILD
  keybase/trunk/keybase-gui

-+
 0001-Maintain-current-contextIsolation-behavior-across-el.patch |   67 
++
 PKGBUILD|   21 ++-
 keybase-gui |2 
 3 files changed, 82 insertions(+), 8 deletions(-)

Added: 0001-Maintain-current-contextIsolation-behavior-across-el.patch
===
--- 0001-Maintain-current-contextIsolation-behavior-across-el.patch 
(rev 0)
+++ 0001-Maintain-current-contextIsolation-behavior-across-el.patch 
2021-07-08 01:40:00 UTC (rev 975320)
@@ -0,0 +1,67 @@
+From c9f8ba2091da223fa703923e36afa4ba5f1731aa Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Wed, 23 Jun 2021 19:06:12 -0400
+Subject: [PATCH] Maintain current contextIsolation behavior across electron 11
+ vs. >=12
+
+For what this does, see:
+
+https://www.electronjs.org/docs/breaking-changes#default-changed-contextisolation-defaults-to-true
+https://github.com/electron/electron/blob/main/docs/tutorial/context-isolation.md
+
+In electron 11, this logged:
+
+> The default of contextIsolation is deprecated and will be changing from
+> false to true in a future release of Electron.
+
+In electron 12, Keybase refused to start. Explicitly specifying the old
+behavior makes Keybase run again.
+
+"for the security of your application" Keybase may wish in future to
+restructure and support context isolation, but that would be in the
+future.
+---
+ shared/desktop/app/main-window.desktop.tsx | 1 +
+ shared/desktop/app/menu-bar.desktop.tsx| 1 +
+ shared/desktop/app/node.desktop.tsx| 1 +
+ 3 files changed, 3 insertions(+)
+
+diff --git a/shared/desktop/app/main-window.desktop.tsx 
b/shared/desktop/app/main-window.desktop.tsx
+index a93ffa11a7..9ef4f6f288 100644
+--- a/shared/desktop/app/main-window.desktop.tsx
 b/shared/desktop/app/main-window.desktop.tsx
+@@ -275,6 +275,7 @@ export default () => {
+ minWidth: 740,
+ show: false,
+ webPreferences: {
++  contextIsolation: false,
+   backgroundThrottling: false,
+   devTools: showDevTools,
+   enableRemoteModule: true,
+diff --git a/shared/desktop/app/menu-bar.desktop.tsx 
b/shared/desktop/app/menu-bar.desktop.tsx
+index 1597c020bd..e1aa62a854 100644
+--- a/shared/desktop/app/menu-bar.desktop.tsx
 b/shared/desktop/app/menu-bar.desktop.tsx
+@@ -40,6 +40,7 @@ export default (menubarWindowIDCallback: (id: number) => 
void) => {
+   resizable: false,
+   transparent: true,
+   webPreferences: {
++contextIsolation: false,
+ enableRemoteModule: true,
+ nodeIntegration: true,
+ nodeIntegrationInWorker: false,
+diff --git a/shared/desktop/app/node.desktop.tsx 
b/shared/desktop/app/node.desktop.tsx
+index 6368bc18b9..7c8c4a34d5 100644
+--- a/shared/desktop/app/node.desktop.tsx
 b/shared/desktop/app/node.desktop.tsx
+@@ -365,6 +365,7 @@ const plumbEvents = () => {
+   show: false, // Start hidden and show when we actually get props
+   titleBarStyle: 'customButtonsOnHover' as const,
+   webPreferences: {
++contextIsolation: false,
+ enableRemoteModule: true,
+ nodeIntegration: true,
+ nodeIntegrationInWorker: false,
+-- 
+2.32.0
+

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 00:04:56 UTC (rev 975319)
+++ PKGBUILD2021-07-08 01:40:00 UTC (rev 975320)
@@ -5,7 +5,7 @@
 pkgbase=keybase
 pkgname=('keybase' 'kbfs' 'keybase-gui')
 pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=5.6.1
+pkgver=5.7.1
 pkgrel=2
 arch=('x86_64')
 url='https://keybase.io/'
@@ -14,14 +14,17 @@
 makedepends=('git' 'go' 'yarn')
 
source=("https://github.com/keybase/client/releases/download/v${pkgver}/${pkgbase}-v${pkgver}.tar.xz"{,.sig}
 "keybase-gui"
+"0001-Maintain-current-contextIsolation-behavior-across-el.patch"
 "0001-Don-t-use-electron-to-build.patch")
-sha512sums=('1c975bf5381593e650d3fb7fc1c7345e66f04a8730f38d8f2d6f1985d41b34e349506e269ab6736dee6e50c4d5563f25465dbf01061b33ea385015a2856d1eee'
+sha512sums=('1cdf93a2e52e16eedd7fe4544a2b1f0e6f6d47802e17e029ae08b19302c44d5cca0b297aa827332a62202045f91c7c6b1d9d627f2915fcdb4cc2a77076adbd0d'
 'SKIP'
-
'a0b306e2ade02a218d11f5220e140011e225d888deb8194aa2642531dde0c390fdf95aad5873b805208142ef47da9ef35f07311af84f1d1b08aed4a3d616fd39'
+

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

2021-07-05 Thread Eli Schwartz via arch-commits
Date: Tuesday, July 6, 2021 @ 04:45:58
  Author: eschwartz
Revision: 972622

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-06 04:45:43 UTC (rev 972621)
+++ PKGBUILD2021-07-06 04:45:58 UTC (rev 972622)
@@ -1,39 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Nikola Milinković 
-# Submitter: Xiao-Long Chen 
-
-_pkgbase=regex
-pkgname=python-regex
-pkgver=2021.7.1
-pkgrel=1
-pkgdesc="Alternative python regular expression module."
-arch=('x86_64')
-url="https://bitbucket.org/mrabarnett/mrab-regex;
-license=('Python' 'Apache')
-depends=('python')
-makedepends=('python-setuptools')
-options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('849802379a660206277675aa5a5c327f5c910c690649535863ddf329b0ba8c87')
-b2sums=('484259e14af99d911a20835be73686fea621e501756b02e760128b60a52eb62719efaa0b788ca57026dbdc3dfd55aa321a0feb8e73f6b7435f8711cf465ec2f6')
-
-build() {
-  cd "regex-${pkgver}"
-
-  python setup.py build
-}
-
-check() {
-  cd "regex-${pkgver}"
-
-  cd build/lib.linux-${CARCH}-3*/
-  python -m unittest regex/test_regex.py
-}
-
-package() {
-  cd "regex-${pkgver}"
-
-  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-  install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-regex/repos/community-x86_64/PKGBUILD (from rev 972621, 
python-regex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-06 04:45:58 UTC (rev 972622)
@@ -0,0 +1,39 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: Nikola Milinković 
+# Submitter: Xiao-Long Chen 
+
+_pkgbase=regex
+pkgname=python-regex
+pkgver=2021.7.6
+pkgrel=1
+pkgdesc="Alternative python regular expression module."
+arch=('x86_64')
+url="https://bitbucket.org/mrabarnett/mrab-regex;
+license=('Python' 'Apache')
+depends=('python')
+makedepends=('python-setuptools')
+options=(!emptydirs)
+source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('8394e266005f2d8c6f0bc6780001f7afa3ef81a7a2111fa35058ded6fce79e4d')
+b2sums=('9acbca300632ff45744d509e47de56625b003b2046c068f3bf5cae3987bc9bbd51e5cdc442c3e72c6c9c0daeeacd658c56b56754c0f9e83c03816237cc311000')
+
+build() {
+  cd "regex-${pkgver}"
+
+  python setup.py build
+}
+
+check() {
+  cd "regex-${pkgver}"
+
+  cd build/lib.linux-${CARCH}-3*/
+  python -m unittest regex/test_regex.py
+}
+
+package() {
+  cd "regex-${pkgver}"
+
+  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}



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

2021-07-05 Thread Eli Schwartz via arch-commits
Date: Tuesday, July 6, 2021 @ 04:45:43
  Author: eschwartz
Revision: 972621

upgpkg: python-regex 2021.7.6-1: upstream release

Modified:
  python-regex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-06 04:17:33 UTC (rev 972620)
+++ PKGBUILD2021-07-06 04:45:43 UTC (rev 972621)
@@ -5,7 +5,7 @@
 
 _pkgbase=regex
 pkgname=python-regex
-pkgver=2021.7.1
+pkgver=2021.7.6
 pkgrel=1
 pkgdesc="Alternative python regular expression module."
 arch=('x86_64')
@@ -15,8 +15,8 @@
 makedepends=('python-setuptools')
 options=(!emptydirs)
 
source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('849802379a660206277675aa5a5c327f5c910c690649535863ddf329b0ba8c87')
-b2sums=('484259e14af99d911a20835be73686fea621e501756b02e760128b60a52eb62719efaa0b788ca57026dbdc3dfd55aa321a0feb8e73f6b7435f8711cf465ec2f6')
+sha256sums=('8394e266005f2d8c6f0bc6780001f7afa3ef81a7a2111fa35058ded6fce79e4d')
+b2sums=('9acbca300632ff45744d509e47de56625b003b2046c068f3bf5cae3987bc9bbd51e5cdc442c3e72c6c9c0daeeacd658c56b56754c0f9e83c03816237cc311000')
 
 build() {
   cd "regex-${pkgver}"



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

2021-07-04 Thread Eli Schwartz via arch-commits
Date: Sunday, July 4, 2021 @ 16:35:07
  Author: eschwartz
Revision: 972157

archrelease: copy trunk to community-any

Added:
  sx/repos/community-any/PKGBUILD
(from rev 972156, sx/trunk/PKGBUILD)
Deleted:
  sx/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-04 16:34:52 UTC (rev 972156)
+++ PKGBUILD2021-07-04 16:35:07 UTC (rev 972157)
@@ -1,20 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-pkgname=sx
-pkgver=2.1.6
-pkgrel=1
-pkgdesc="Simple alternative to startx(1) for starting an Xorg server."
-arch=('any')
-url="https://github.com/Earnestly/sx;
-license=('MIT')
-depends=('xorg-server' 'xorg-xauth')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('85a3112cd9b25880685ce093da322e84f52534145e8b8db54551bd8964e3e66d')
-b2sums=('916db7873c7bc331dac5c4883caea48dd7b1fb7c51e5795ddcff90e113dec30955e3c4917072c2c445d7ded64b2dd1bbe05b373c71471ff03aab7b26c802b239')
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make PREFIX=/usr DESTDIR="${pkgdir}" install
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: sx/repos/community-any/PKGBUILD (from rev 972156, sx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-04 16:35:07 UTC (rev 972157)
@@ -0,0 +1,20 @@
+# Maintainer: Eli Schwartz 
+
+pkgname=sx
+pkgver=2.1.7
+pkgrel=1
+pkgdesc="Simple alternative to startx(1) for starting an Xorg server."
+arch=('any')
+url="https://github.com/Earnestly/sx;
+license=('MIT')
+depends=('xorg-server' 'xorg-xauth')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('81f680ac0728e10896987e18a7661dc474d90c09afff25c9795e748899085823')
+b2sums=('1f7989ca1b942cd46e9976a38e7fb4080cba60c47e9e184afd1ee7bd2b3cb42221d9f98113f2b9eb60968c8cfbbe1a7f0ebf4c7d1a6033a274aad11b004c64ac')
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make PREFIX=/usr DESTDIR="${pkgdir}" install
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2021-07-04 Thread Eli Schwartz via arch-commits
Date: Sunday, July 4, 2021 @ 16:34:52
  Author: eschwartz
Revision: 972156

upgpkg: sx 2.1.7-1: upstream release

Modified:
  sx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-04 16:33:42 UTC (rev 972155)
+++ PKGBUILD2021-07-04 16:34:52 UTC (rev 972156)
@@ -1,7 +1,7 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=sx
-pkgver=2.1.6
+pkgver=2.1.7
 pkgrel=1
 pkgdesc="Simple alternative to startx(1) for starting an Xorg server."
 arch=('any')
@@ -9,8 +9,8 @@
 license=('MIT')
 depends=('xorg-server' 'xorg-xauth')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('85a3112cd9b25880685ce093da322e84f52534145e8b8db54551bd8964e3e66d')
-b2sums=('916db7873c7bc331dac5c4883caea48dd7b1fb7c51e5795ddcff90e113dec30955e3c4917072c2c445d7ded64b2dd1bbe05b373c71471ff03aab7b26c802b239')
+sha256sums=('81f680ac0728e10896987e18a7661dc474d90c09afff25c9795e748899085823')
+b2sums=('1f7989ca1b942cd46e9976a38e7fb4080cba60c47e9e184afd1ee7bd2b3cb42221d9f98113f2b9eb60968c8cfbbe1a7f0ebf4c7d1a6033a274aad11b004c64ac')
 
 package() {
 cd "${srcdir}"/${pkgname}-${pkgver}



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

2021-07-02 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 22:23:46
  Author: eschwartz
Revision: 970954

archrelease: copy trunk to community-x86_64

Added:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
(from rev 970953, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 970953, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 970953, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-x86_64/set_wheel.diff
(from rev 970953, cinnamon/trunk/set_wheel.diff)
Deleted:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/set_wheel.diff

-+
 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch |   76 ++--
 PKGBUILD|  164 
+-
 default-theme.patch |   50 +--
 set_wheel.diff  |  110 +++---
 4 files changed, 200 insertions(+), 200 deletions(-)

Deleted: 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-07-02 22:23:24 UTC (rev 970953)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-07-02 22:23:46 UTC (rev 970954)
@@ -1,38 +0,0 @@
-From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Tue, 20 Mar 2018 14:11:02 -0400
-Subject: [PATCH] cinnamon-settings: don't rely on the presence of
- cinnamon-control-center
-
-The existence of the cinnamon-control-center binary does not even tell
-us what control center libraries are available. So instead, do the same
-thing we did for cinnamon-settings modules, and check if the library
-exists.

- files/usr/bin/cinnamon-settings | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
-index 9fbdbecd2..98ca454a5 100755
 a/files/usr/bin/cinnamon-settings
-+++ b/files/usr/bin/cinnamon-settings
-@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
- import getopt
- import os
- import sys
-+import sysconfig
- 
- def usage():
- print("""Usage:
-@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif 
os.path.exists("/usr/share/cinnamon/cinnamon-settings/modules/cs_%s.py" % 
module):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
--elif os.path.exists("/usr/bin/cinnamon-control-center"):
-+elif os.path.exists(os.path.join(sysconfig.get_config_var("LIBDIR"), 
"cinnamon-control-center-1/panels/lib%s.so" % module)):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif os.path.exists("/usr/bin/gnome-control-center"):
- print ("Unknown module %s, calling gnome-control-center" % module)
--- 
-2.22.0
-

Copied: 
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
 (from rev 970953, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
(rev 0)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-07-02 22:23:46 UTC (rev 970954)
@@ -0,0 +1,38 @@
+From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Tue, 20 Mar 2018 14:11:02 -0400
+Subject: [PATCH] cinnamon-settings: don't rely on the presence of
+ cinnamon-control-center
+
+The existence of the cinnamon-control-center binary does not even tell
+us what control center libraries are available. So instead, do the same
+thing we did for cinnamon-settings modules, and check if the library
+exists.
+---
+ files/usr/bin/cinnamon-settings | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
+index 9fbdbecd2..98ca454a5 100755
+--- a/files/usr/bin/cinnamon-settings
 b/files/usr/bin/cinnamon-settings
+@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
+ import getopt
+ import os
+ import sys
++import sysconfig
+ 
+ def usage():
+ print("""Usage:
+@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
+ 

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

2021-07-02 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 22:23:24
  Author: eschwartz
Revision: 970953

upgpkg: cinnamon 5.0.4-1: upstream release

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-02 22:05:18 UTC (rev 970952)
+++ PKGBUILD2021-07-02 22:23:24 UTC (rev 970953)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=5.0.3
+pkgver=5.0.4
 pkgrel=1
 pkgdesc="Linux desktop which provides advanced innovative features and a 
traditional user experience"
 arch=('x86_64')
@@ -28,11 +28,11 @@
 "0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch"
 "set_wheel.diff"
 "default-theme.patch")
-sha512sums=('97dfa527e2f530d31da775b6cf204b851d2e3dbe95b793d82b3944f77cc3426301a9b784bcad3f3041c418b843e90741eabb8bfa9c0be6a4019ba7c4699233f4'
+sha512sums=('ac3eb6384fcbacab77a8a7bff1f28572df4ee62d3e9f0e0d02f9406ef690b3093355652201194d4c324bc13b6f806d27715434701a57c3b7544ad715aee27ad1'
 
'77c2229d350bb1445375d206af769f1dde9329ce3575e40e9c1d5fea3ec0f49c0a7ef36d78caf895d9224147947bd102bab924b5579dc8dc5f8d3269e0c76374'
 
'fd7e117054996ed1c3dfd0f968c2bf98ca4fcee9a100221f8839a232147745ec0140e1f68eeffba58a3c44f66f26e05d433648a7a28858ec669524f7266ba04c'
 
'ee7dedd59ea370cf81d75def49060f9a29b22e7b025ca7d5db87a0102d50f138c79aa562b0d36a748c4b1c59a37f600ba1f60ff6caf303cf5b6fc4d110d051b4')
-b2sums=('9eca25345075c4b9927e350364a707cf16a851c61f0574940e856da2d0ac1b20527cfb259ace5242f7fa90161f852b032f2b5fb79b612ced80f510f49ed13bd1'
+b2sums=('d71d5c0a1d6386f77951629491fbc14f1c6e139b2a1f7ed87684ed3588897deecfe0158478ca52af18b18da250e8415822f56ce3ca758053a4b373b691627c6b'
 
'1d873efa0d17e358f834c4374f39bbf3f74340849f9c28a0950c0a064772083798aba3435e564acdf43a94665389917788e295073d4a65cc18600d71b7a9f008'
 
'3becf1f40068fc629109e6e7d464c3c484296afacc9ab6328b2ccbb3c9735bcbfa9550f9f73b430ede178ae668e37c660ce322b5b4d1873526de3d3d41185160'
 
'86c3a29acd132ca321f08fd81dd5a45707accdc035b2aeec95bf358b29072ff1eedb77b2566cf48d7253d1d791599f0f44938c4600761d711cb18b59019f1c62')



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

2021-07-02 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 22:05:18
  Author: eschwartz
Revision: 970952

archrelease: copy trunk to community-x86_64

Added:
  nemo/repos/community-x86_64/PKGBUILD
(from rev 970951, nemo/trunk/PKGBUILD)
Deleted:
  nemo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-02 22:05:03 UTC (rev 970951)
+++ PKGBUILD2021-07-02 22:05:18 UTC (rev 970952)
@@ -1,49 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="Cinnamon file manager (Nautilus fork)"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2'
- 'python' 'xapp')
-optdepends=('cinnamon-translations: i18n'
-'ffmpegthumbnailer: support for video thumbnails'
-'catdoc: search helpers support for legacy MS Office files'
-'ghostscript: search helpers support for PostScript files'
-'libgsf: search helpers support for MS Office files'
-'libreoffice: search helpers support for legacy MS Office 
powerpoint files'
-'odt2txt: search helpers support for LibreOffice files'
-'poppler: search helpers support for PDF')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'libgsf')
-source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('12b2bc982b3c73af35a21c37f10fbffaed77c5a8a03e08e2ae2cc5283c90c7759fa788d88cad58d44f23ef9022d479c71a8bff6d9ba02e2d38e1ddfc61aee64d')
-b2sums=('964ba4be3dee28afe2f6a680be3df9eda06a832b5d7de83c7e587e3a15eac82e5c0a19dd1bced52da93576ea1092c0ac50b0f00c967697658e156c896ca7f748')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# Rename 'Files' app name to avoid having the same as nautilus
-sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
-}
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: nemo/repos/community-x86_64/PKGBUILD (from rev 970951, 
nemo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-02 22:05:18 UTC (rev 970952)
@@ -0,0 +1,49 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="Cinnamon file manager (Nautilus fork)"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2'
+ 'python' 'xapp')
+optdepends=('cinnamon-translations: i18n'
+'ffmpegthumbnailer: support for video thumbnails'
+'catdoc: search helpers support for legacy MS Office files'
+'ghostscript: search helpers support for PostScript files'
+'libgsf: search helpers support for MS Office files'
+'libreoffice: search helpers support for legacy MS Office 
powerpoint files'
+'odt2txt: search helpers support for LibreOffice files'
+'poppler: search helpers support for PDF')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'libgsf')
+source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('f2f2c01338afe5ac50cc2babff323b2920c347d7b9c4d56bec005e90b517464d59f63ae0c4ce69ceab8689f6e762c20f6bd04ead4879b42c686270b82b2bb8d2')
+b2sums=('10a08aead870cc4d3b4600478038829bc55c5a3f934ac401e2471d2a5abb085439518eb869e3f35d67c58a669cce968438f4b604e90b48344e275d05b1792177')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# Rename 'Files' app name to avoid having the same as nautilus
+sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
+}
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}



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

2021-07-02 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 22:05:03
  Author: eschwartz
Revision: 970951

upgpkg: nemo 5.0.3-1: upstream release

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-02 21:33:49 UTC (rev 970950)
+++ PKGBUILD2021-07-02 22:05:03 UTC (rev 970951)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="Cinnamon file manager (Nautilus fork)"
 arch=('x86_64')
@@ -21,8 +21,8 @@
 'poppler: search helpers support for PDF')
 makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'libgsf')
 source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('12b2bc982b3c73af35a21c37f10fbffaed77c5a8a03e08e2ae2cc5283c90c7759fa788d88cad58d44f23ef9022d479c71a8bff6d9ba02e2d38e1ddfc61aee64d')
-b2sums=('964ba4be3dee28afe2f6a680be3df9eda06a832b5d7de83c7e587e3a15eac82e5c0a19dd1bced52da93576ea1092c0ac50b0f00c967697658e156c896ca7f748')
+sha512sums=('f2f2c01338afe5ac50cc2babff323b2920c347d7b9c4d56bec005e90b517464d59f63ae0c4ce69ceab8689f6e762c20f6bd04ead4879b42c686270b82b2bb8d2')
+b2sums=('10a08aead870cc4d3b4600478038829bc55c5a3f934ac401e2471d2a5abb085439518eb869e3f35d67c58a669cce968438f4b604e90b48344e275d05b1792177')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}



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

2021-07-02 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 18:14:30
  Author: eschwartz
Revision: 970914

archrelease: copy trunk to community-x86_64

Added:
  ncdu/repos/community-x86_64/PKGBUILD
(from rev 970913, ncdu/trunk/PKGBUILD)
Deleted:
  ncdu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-02 18:14:15 UTC (rev 970913)
+++ PKGBUILD2021-07-02 18:14:30 UTC (rev 970914)
@@ -1,28 +0,0 @@
-# Contributor: lp76 
-# Contributor: Daenyth 
-# Maintainer: Gaetan Bisson 
-
-pkgname=ncdu
-pkgver=1.15.1
-pkgrel=2
-pkgdesc='Disk usage analyzer with an ncurses interface'
-url='https://dev.yorhel.nl/ncdu'
-license=('custom:MIT')
-depends=('ncurses')
-arch=('x86_64')
-validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
-source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('b02ddc4dbf1db139cc6fbbe2f54a282770380f0ca5c17089855eab52a9ea3fb0'
-'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ncdu/repos/community-x86_64/PKGBUILD (from rev 970913, 
ncdu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-02 18:14:30 UTC (rev 970914)
@@ -0,0 +1,34 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Levente Polyak 
+# Contributor: lp76 
+# Contributor: Daenyth 
+# Contributor: Gaetan Bisson 
+
+pkgname=ncdu
+pkgver=1.16
+pkgrel=1
+pkgdesc='Disk usage analyzer with an ncurses interface'
+url='https://dev.yorhel.nl/ncdu'
+license=('MIT')
+depends=('ncurses')
+arch=('x86_64')
+source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('2b915752a183fae014b5e5b1f0a135b4b408de7488c716e325217c2513980fd4'
+'SKIP')
+b2sums=('61d004581bdcf1885bec24d0a1de4fc890fe91bba511abbdbc507a48f31946caf5c7324979e8410e53cfca8ada1b20342b737dc4e8b1f034f2fca5aea84e4369'
+'SKIP')
+validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA') # Yoran Heling 

+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-07-02 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 18:14:15
  Author: eschwartz
Revision: 970913

upgpkg: ncdu 1.16-1: upstream release

mark as adopted from vesath
add additional b2 checksum to verify multiple checksums worth of TOFU
cosmetic fixes, e.g. MIT isn't a custom label, add PGP key intended uid...

Modified:
  ncdu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-02 18:13:32 UTC (rev 970912)
+++ PKGBUILD2021-07-02 18:14:15 UTC (rev 970913)
@@ -1,28 +1,34 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Levente Polyak 
 # Contributor: lp76 
 # Contributor: Daenyth 
-# Maintainer: Gaetan Bisson 
+# Contributor: Gaetan Bisson 
 
 pkgname=ncdu
-pkgver=1.15.1
-pkgrel=2
+pkgver=1.16
+pkgrel=1
 pkgdesc='Disk usage analyzer with an ncurses interface'
 url='https://dev.yorhel.nl/ncdu'
-license=('custom:MIT')
+license=('MIT')
 depends=('ncurses')
 arch=('x86_64')
-validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
 source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('b02ddc4dbf1db139cc6fbbe2f54a282770380f0ca5c17089855eab52a9ea3fb0'
+sha256sums=('2b915752a183fae014b5e5b1f0a135b4b408de7488c716e325217c2513980fd4'
 'SKIP')
+b2sums=('61d004581bdcf1885bec24d0a1de4fc890fe91bba511abbdbc507a48f31946caf5c7324979e8410e53cfca8ada1b20342b737dc4e8b1f034f2fca5aea84e4369'
+'SKIP')
+validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA') # Yoran Heling 

 
 build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+./configure --prefix=/usr
+make
 }
 
 package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



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

2021-07-01 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 04:21:07
  Author: eschwartz
Revision: 970239

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 970238, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-02 04:20:53 UTC (rev 970238)
+++ PKGBUILD2021-07-02 04:21:07 UTC (rev 970239)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli schwartz 
-
-pkgname=firefox-noscript
-pkgver=11.2.8
-pkgrel=1
-_file=3778947
-pkgdesc="Extension for firefox which disables javascript"
-arch=('any')
-url="https://noscript.net/;
-license=('GPL2')
-groups=('firefox-addons')
-makedepends=('unzip')
-source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('4744f9d99acbe9dec3557765edd9173272b4681c8425228fb6af52493f853467')
-b2sums=('f194d17610e1b5d4a4ae43c0551648204fc21bbdcae92ce81e424a8b21629424708fde499fb4c475f70279e4483f38abfcfc912ec17a40e1549bcbbc9cc0efc2')
-
-package() {
-  depends=('firefox')
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 970238, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-02 04:21:07 UTC (rev 970239)
@@ -0,0 +1,24 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli schwartz 
+
+pkgname=firefox-noscript
+pkgver=11.2.9
+pkgrel=1
+_file=3800990
+pkgdesc="Extension for firefox which disables javascript"
+arch=('any')
+url="https://noscript.net/;
+license=('GPL2')
+groups=('firefox-addons')
+makedepends=('unzip')
+source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('830a25dad07327ae220b4740ea834b0abe715e9ef3dabc326bf7fef2c5af1efb')
+b2sums=('cfc817c803ad0028e436cf9a68678816ec35ed5baf45c28fdb39d31585fa675420489b9740ca595022aa75ff783cf5cd947b9a3790f9f9539587844379e5de27')
+
+package() {
+  depends=('firefox')
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}



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

2021-07-01 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 04:20:53
  Author: eschwartz
Revision: 970237

upgpkg: firefox-noscript 11.2.9-1: upstream release

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-02 04:20:44 UTC (rev 970236)
+++ PKGBUILD2021-07-02 04:20:53 UTC (rev 970237)
@@ -2,9 +2,9 @@
 # Maintainer: Eli schwartz 
 
 pkgname=firefox-noscript
-pkgver=11.2.8
+pkgver=11.2.9
 pkgrel=1
-_file=3778947
+_file=3800990
 pkgdesc="Extension for firefox which disables javascript"
 arch=('any')
 url="https://noscript.net/;
@@ -13,8 +13,8 @@
 makedepends=('unzip')
 
source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('4744f9d99acbe9dec3557765edd9173272b4681c8425228fb6af52493f853467')
-b2sums=('f194d17610e1b5d4a4ae43c0551648204fc21bbdcae92ce81e424a8b21629424708fde499fb4c475f70279e4483f38abfcfc912ec17a40e1549bcbbc9cc0efc2')
+sha256sums=('830a25dad07327ae220b4740ea834b0abe715e9ef3dabc326bf7fef2c5af1efb')
+b2sums=('cfc817c803ad0028e436cf9a68678816ec35ed5baf45c28fdb39d31585fa675420489b9740ca595022aa75ff783cf5cd947b9a3790f9f9539587844379e5de27')
 
 package() {
   depends=('firefox')



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

2021-07-01 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 04:16:19
  Author: eschwartz
Revision: 970231

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-02 04:16:05 UTC (rev 970230)
+++ PKGBUILD2021-07-02 04:16:19 UTC (rev 970231)
@@ -1,39 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Nikola Milinković 
-# Submitter: Xiao-Long Chen 
-
-_pkgbase=regex
-pkgname=python-regex
-pkgver=2021.4.4
-pkgrel=1
-pkgdesc="Alternative python regular expression module."
-arch=('x86_64')
-url="https://bitbucket.org/mrabarnett/mrab-regex;
-license=('Python' 'Apache')
-depends=('python')
-makedepends=('python-setuptools')
-options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('52ba3d3f9b942c49d7e4bc105bb28551c44065f139a65062ab7912bef10c9afb')
-b2sums=('a13a51a883599f726c20cdbf28d5b0f1a53d8f2eec5f4047da0ede2951694507c5065de5a84152510874db087c342d52f19d920a7b72c034325ddc91f5fb75ac')
-
-build() {
-  cd "regex-${pkgver}"
-
-  python setup.py build
-}
-
-check() {
-  cd "regex-${pkgver}"
-
-  cd build/lib.linux-${CARCH}-3*/
-  python -m unittest regex/test_regex.py
-}
-
-package() {
-  cd "regex-${pkgver}"
-
-  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-  install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-regex/repos/community-x86_64/PKGBUILD (from rev 970230, 
python-regex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-02 04:16:19 UTC (rev 970231)
@@ -0,0 +1,39 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: Nikola Milinković 
+# Submitter: Xiao-Long Chen 
+
+_pkgbase=regex
+pkgname=python-regex
+pkgver=2021.7.1
+pkgrel=1
+pkgdesc="Alternative python regular expression module."
+arch=('x86_64')
+url="https://bitbucket.org/mrabarnett/mrab-regex;
+license=('Python' 'Apache')
+depends=('python')
+makedepends=('python-setuptools')
+options=(!emptydirs)
+source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('849802379a660206277675aa5a5c327f5c910c690649535863ddf329b0ba8c87')
+b2sums=('484259e14af99d911a20835be73686fea621e501756b02e760128b60a52eb62719efaa0b788ca57026dbdc3dfd55aa321a0feb8e73f6b7435f8711cf465ec2f6')
+
+build() {
+  cd "regex-${pkgver}"
+
+  python setup.py build
+}
+
+check() {
+  cd "regex-${pkgver}"
+
+  cd build/lib.linux-${CARCH}-3*/
+  python -m unittest regex/test_regex.py
+}
+
+package() {
+  cd "regex-${pkgver}"
+
+  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}



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

2021-07-01 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 04:16:05
  Author: eschwartz
Revision: 970230

upgpkg: python-regex 2021.7.1-1: upstream release

Modified:
  python-regex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-02 03:08:11 UTC (rev 970229)
+++ PKGBUILD2021-07-02 04:16:05 UTC (rev 970230)
@@ -5,7 +5,7 @@
 
 _pkgbase=regex
 pkgname=python-regex
-pkgver=2021.4.4
+pkgver=2021.7.1
 pkgrel=1
 pkgdesc="Alternative python regular expression module."
 arch=('x86_64')
@@ -15,8 +15,8 @@
 makedepends=('python-setuptools')
 options=(!emptydirs)
 
source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('52ba3d3f9b942c49d7e4bc105bb28551c44065f139a65062ab7912bef10c9afb')
-b2sums=('a13a51a883599f726c20cdbf28d5b0f1a53d8f2eec5f4047da0ede2951694507c5065de5a84152510874db087c342d52f19d920a7b72c034325ddc91f5fb75ac')
+sha256sums=('849802379a660206277675aa5a5c327f5c910c690649535863ddf329b0ba8c87')
+b2sums=('484259e14af99d911a20835be73686fea621e501756b02e760128b60a52eb62719efaa0b788ca57026dbdc3dfd55aa321a0feb8e73f6b7435f8711cf465ec2f6')
 
 build() {
   cd "regex-${pkgver}"



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

2021-07-01 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 02:27:20
  Author: eschwartz
Revision: 970151

archrelease: copy trunk to community-any

Added:
  trash-cli/repos/community-any/PKGBUILD
(from rev 970150, trash-cli/trunk/PKGBUILD)
Deleted:
  trash-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-02 02:27:05 UTC (rev 970150)
+++ PKGBUILD2021-07-02 02:27:20 UTC (rev 970151)
@@ -1,42 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Pierre Neidhardt 
-# Contributor: Renato Garcia 
-
-pkgname=trash-cli
-pkgver=0.21.6.10.1
-pkgrel=1
-pkgdesc="Command line trashcan (recycle bin) interface"
-arch=('any')
-url="https://github.com/andreafrancia/${pkgname};
-license=('GPL')
-depends=('python-psutil')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('4b6ccbb0c49d287e9a462bf6beb7c7f02a080c14987dc1bd1507cbcae0fd8ab4')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# don't depend on thirdparty copies of the stdlib
-find tests -type f -name "*.py" -exec \
-sed -i 's/^import mock$/from unittest import mock/;s/from mock /from 
unittest.mock /' {} +
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-python -m pytest
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: trash-cli/repos/community-any/PKGBUILD (from rev 970150, 
trash-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-02 02:27:20 UTC (rev 970151)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Pierre Neidhardt 
+# Contributor: Renato Garcia 
+
+pkgname=trash-cli
+pkgver=0.21.6.30
+pkgrel=1
+pkgdesc="Command line trashcan (recycle bin) interface"
+arch=('any')
+url="https://github.com/andreafrancia/${pkgname};
+license=('GPL')
+depends=('python-psutil')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('582dc711d0225475920cb7fabf349965ef1b9848929fec20a1577d050ebdc2f5')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# don't depend on thirdparty copies of the stdlib
+find tests -type f -name "*.py" -exec \
+sed -i 's/^import mock$/from unittest import mock/;s/from mock /from 
unittest.mock /' {} +
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}



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

2021-07-01 Thread Eli Schwartz via arch-commits
Date: Friday, July 2, 2021 @ 02:27:05
  Author: eschwartz
Revision: 970150

upgpkg: trash-cli 0.21.6.30-1: upstream release

Modified:
  trash-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-02 02:26:34 UTC (rev 970149)
+++ PKGBUILD2021-07-02 02:27:05 UTC (rev 970150)
@@ -3,7 +3,7 @@
 # Contributor: Renato Garcia 
 
 pkgname=trash-cli
-pkgver=0.21.6.10.1
+pkgver=0.21.6.30
 pkgrel=1
 pkgdesc="Command line trashcan (recycle bin) interface"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('4b6ccbb0c49d287e9a462bf6beb7c7f02a080c14987dc1bd1507cbcae0fd8ab4')
+sha256sums=('582dc711d0225475920cb7fabf349965ef1b9848929fec20a1577d050ebdc2f5')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}



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

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 03:41:30
  Author: eschwartz
Revision: 967916

archrelease: copy trunk to community-any

Added:
  cinnamon-translations/repos/community-any/PKGBUILD
(from rev 967915, cinnamon-translations/trunk/PKGBUILD)
Deleted:
  cinnamon-translations/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-30 03:41:15 UTC (rev 967915)
+++ PKGBUILD2021-06-30 03:41:30 UTC (rev 967916)
@@ -1,26 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-
-pkgname=cinnamon-translations
-pkgver=5.0.1
-pkgrel=1
-pkgdesc="Translations for Cinnamon and Nemo"
-arch=('any')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL2')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('3c33d4799ffb44a04d639e82253bbf6968551a8b06b94807d2a8b1b2ea4e982f8d61664bf815fff571a94ed44c60c6d98344604d168e6a602df58306a3e3bf81')
-b2sums=('13455216b988a9901e51dca02977c8520225d4b24633557b28c72c97a9dee08d4d311dc8baee64af12a6e778b49e67a43222fce142b0dc53f2239a07f1ba')
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-cp -r usr/ "${pkgdir}"
-}

Copied: cinnamon-translations/repos/community-any/PKGBUILD (from rev 967915, 
cinnamon-translations/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-30 03:41:30 UTC (rev 967916)
@@ -0,0 +1,26 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+
+pkgname=cinnamon-translations
+pkgver=5.0.2
+pkgrel=1
+pkgdesc="Translations for Cinnamon and Nemo"
+arch=('any')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL2')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('97f119db2ee8f4b1c2327e4f2d0c56357cdd7fe2c53df380d6e48af715a56cc2326aecce9d5f5f3292854b0087bd139552d50e1f84938dcd838964bcf84a6cb4')
+b2sums=('ee2049154d378c4a48567593aa45277bae09101b1f0ef1916bab6ac5bafd7f7741ece4450398e784958aff8249d8da5b4277e19bf366da3064793bbd924e788a')
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+cp -r usr/ "${pkgdir}"
+}



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

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 03:41:15
  Author: eschwartz
Revision: 967915

upgpkg: cinnamon-translations 5.0.2-1: upstream release

Modified:
  cinnamon-translations/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-30 03:26:40 UTC (rev 967914)
+++ PKGBUILD2021-06-30 03:41:15 UTC (rev 967915)
@@ -2,7 +2,7 @@
 # Contributor: Alexandre Filgueira 
 
 pkgname=cinnamon-translations
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc="Translations for Cinnamon and Nemo"
 arch=('any')
@@ -10,8 +10,8 @@
 license=('GPL2')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('3c33d4799ffb44a04d639e82253bbf6968551a8b06b94807d2a8b1b2ea4e982f8d61664bf815fff571a94ed44c60c6d98344604d168e6a602df58306a3e3bf81')
-b2sums=('13455216b988a9901e51dca02977c8520225d4b24633557b28c72c97a9dee08d4d311dc8baee64af12a6e778b49e67a43222fce142b0dc53f2239a07f1ba')
+sha512sums=('97f119db2ee8f4b1c2327e4f2d0c56357cdd7fe2c53df380d6e48af715a56cc2326aecce9d5f5f3292854b0087bd139552d50e1f84938dcd838964bcf84a6cb4')
+b2sums=('ee2049154d378c4a48567593aa45277bae09101b1f0ef1916bab6ac5bafd7f7741ece4450398e784958aff8249d8da5b4277e19bf366da3064793bbd924e788a')
 
 build() {
 cd "${srcdir}"/${pkgname}-${pkgver}



[arch-commits] Commit in python-poetry/repos/community-any (8 files)

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 03:26:40
  Author: eschwartz
Revision: 967914

archrelease: copy trunk to community-any

Added:
  
python-poetry/repos/community-any/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
(from rev 967913, 
python-poetry/trunk/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch)
  
python-poetry/repos/community-any/0001-tests-cleanup-cache-and-http-usage.patch
(from rev 967913, 
python-poetry/trunk/0001-tests-cleanup-cache-and-http-usage.patch)
  python-poetry/repos/community-any/PKGBUILD
(from rev 967913, python-poetry/trunk/PKGBUILD)
  python-poetry/repos/community-any/poetry-completions-generator
(from rev 967913, python-poetry/trunk/poetry-completions-generator)
Deleted:
  
python-poetry/repos/community-any/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
  
python-poetry/repos/community-any/0001-tests-cleanup-cache-and-http-usage.patch
  python-poetry/repos/community-any/PKGBUILD
  python-poetry/repos/community-any/poetry-completions-generator

-+
 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch |  106 
 0001-tests-cleanup-cache-and-http-usage.patch   | 1116 
+-
 PKGBUILD|  158 -
 poetry-completions-generator|   30 
 4 files changed, 705 insertions(+), 705 deletions(-)

Deleted: 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
===
--- 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
2021-06-30 03:26:15 UTC (rev 967913)
+++ 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
2021-06-30 03:26:40 UTC (rev 967914)
@@ -1,53 +0,0 @@
-From cc5b938f7f9e3c536f4a60c35cdd2085b3933618 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Mon, 27 Apr 2020 21:51:57 -0400
-Subject: [PATCH] Fix completely broken dependencies.
-
-poetry habitually engages in:
-- dependency versions which are known to be too pessimistic
-- multiple editions of dependencies per python version
-
-The former all work just fine in reported use and should not be pinned; we
-package versions in Arch which are "too new". This is what unittests are
-for, anyway.
-
-The latter tries to enforce minimum versions of dependencies, but pins
-it twice, once with more relaxed pinning for older versions of python.
-If an old version works, it works irrespective of the python version,
-and you don't need to use minimum requirements as your mallet to force
-people to upgrade to the latest version anyway.
-https://github.com/dephell/dephell/issues/330

- pyproject.toml | 11 ++-
- 1 file changed, 2 insertions(+), 9 deletions(-)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index 8c1f137..81ebc89 100644
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -51,20 +51,13 @@ futures = { version = "^3.3.0", python = "~2.7" }
- glob2 = { version = "^0.6", python = "~2.7" }
- # functools32 is needed for Python 2.7
- functools32 = { version = "^3.2.3", python = "~2.7" }
--keyring = [
--{ version = "^18.0.1", python = "~2.7" },
--{ version = "^20.0.1", python = "~3.5" },
--{ version = "^21.2.0", python = "^3.6" }
--]
-+keyring = "*"
- # Use subprocess32 for Python 2.7
- subprocess32 = { version = "^3.5", python = "~2.7" }
- importlib-metadata = {version = "^1.6.0", python = "<3.8"}
- 
- [tool.poetry.dev-dependencies]
--pytest = [
--{version = "^4.1", python = "<3.5"},
--{version = "^5.4.3", python = ">=3.5"}
--]
-+pytest = { version = ">=4.1" }
- pytest-cov = "^2.5"
- pytest-mock = "^1.9"
- pre-commit = { version = "^2.6", python = "^3.6.1" }
--- 
-2.28.0
-

Copied: 
python-poetry/repos/community-any/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
 (from rev 967913, 
python-poetry/trunk/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch)
===
--- 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
(rev 0)
+++ 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
2021-06-30 03:26:40 UTC (rev 967914)
@@ -0,0 +1,53 @@
+From cc5b938f7f9e3c536f4a60c35cdd2085b3933618 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Mon, 27 Apr 2020 21:51:57 -0400
+Subject: [PATCH] Fix completely broken dependencies.
+
+poetry habitually engages in:
+- dependency versions which are known to be too pessimistic
+- multiple editions of dependencies per python version
+
+The former all work just fine in reported use and should not be pinned; we
+package versions in Arch which are "too new". This is what unittests are
+for, anyway.
+
+The latter tries to enforce minimum versions of dependencies, but pins
+it twice, once with more relaxed pinning for older versions of python.
+If an old version works, it works irrespective 

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

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 03:26:15
  Author: eschwartz
Revision: 967913

upgpkg: python-poetry 1.1.7-1: upstream release

Modified:
  python-poetry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-30 03:13:16 UTC (rev 967912)
+++ PKGBUILD2021-06-30 03:26:15 UTC (rev 967913)
@@ -3,7 +3,7 @@
 
 _pkgname=poetry
 pkgname=python-poetry
-pkgver=1.1.6
+pkgver=1.1.7
 pkgrel=1
 pkgdesc="Python dependency management and packaging made easy"
 arch=('any')
@@ -22,11 +22,11 @@
 "0001-Suppress-dependency-versions-which-are-known-to-be-t.patch"
 "0001-tests-cleanup-cache-and-http-usage.patch"
 "poetry-completions-generator")
-sha256sums=('28234a38cdd4a4196b5dcba867d566c0412d203ea655783f7d11441aed2b5ee8'
+sha256sums=('4bf3467c75113f1d4894e3535bb450cdc446e149866f8521d4965deea88d4102'
 '8bb321ae9ad06d4829c71727af7979bc68d7f325ccdaec919dda4fe8ac92f1a7'
 '4658321c04f36fb3aced9acc44b61f2cf22c5f9d8b8c715111881b24c3e0c99b'
 '970225289188ea8dc49fbec8a2bfe0c891aee80ff56ba6e69bdd8afef8bccab6')
-b2sums=('cd027be559f7891e7c4456b2e2d65da09296ae535aa917c9dbc2438b45c5fb724c4760a6202956c82c07c557b5af0308ea0234afc54569df3bddc9d39ed3de09'
+b2sums=('23454e0b290d32552a878000198557bef82bbcb43cc4fec0064bab9817cd1c031c1002a069b3d9c81f674d8f056f9f6e9d048957f7e13050db8042cb515dfb8a'
 
'c1c65fdfa1153d3e4c872adc00f02aea055268d28cd385918a5a3d60fb355c39b15eab895cf4aebd1b74f126cc225f870d60aa971a6593855ce094b448786a02'
 
'8750de6ee2748a7dac079af1ff35b43dbce3f2c48249322f3322290d03f46ea95513dfd223adc232f7f73cf0ac19554de96a3b8793a0dc13b38041e87569ca19'
 
'3fd62e7936d7547dcd06a1a7519f176a1597553ecc959144a4be799bb7e2d688e187f14604d3e359ed10c128c722ebd588c07ca318e0be0a31d276dcb388e2e1')



[arch-commits] Commit in cinnamon-screensaver/repos/community-x86_64 (2 files)

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 03:13:16
  Author: eschwartz
Revision: 967912

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 967911, cinnamon-screensaver/trunk/PKGBUILD)
Deleted:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-30 03:13:01 UTC (rev 967911)
+++ PKGBUILD2021-06-30 03:13:16 UTC (rev 967912)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-screensaver
-pkgver=5.0.5
-pkgrel=1
-pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
- 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('gobject-introspection' 'meson' 'samurai')
-backup=('etc/pam.d/cinnamon-screensaver')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('18cf174c372f2082b3984fab2fc6e18a41f0f508230fdf91e54b8d0d3c7cf1de1009327716eacf33a7975e0983882abb41944b1470b54f1bd77b7ced8570bea1')
-b2sums=('5bfe290547fe1bb8cd67cd99781b6ab59e7c146fd9775e4b73544a697e3f56793a998dcd55124df2df568877a3abcb1938ab9a695325562f286e6c03b44f8789')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/cinnamon-screensaver \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-screensaver/repos/community-x86_64/PKGBUILD (from rev 967911, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-30 03:13:16 UTC (rev 967912)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-screensaver
+pkgver=5.0.6
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
+ 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('gobject-introspection' 'meson' 'samurai')
+backup=('etc/pam.d/cinnamon-screensaver')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('fce753d4805ad8e0e6767238b5b24b741a8e6b974fb0739cbe76105dfcd33621330257cdbfc34d5a33256659f5b2f9ef457cca9351ff6f73802fbffd6c0828b6')
+b2sums=('b7bb32c3986f662e8ff9ff857ef8c8f2fb1945abbf6af39b6dd9e4f915dfb47be5b177d474a8199e07d31c8394d6fc1dcf3087cf30a9196d85380e195b8ee0ef')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/cinnamon-screensaver \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}



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

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 03:13:01
  Author: eschwartz
Revision: 967911

upgpkg: cinnamon-screensaver 5.0.6-1: upstream release

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-30 02:54:22 UTC (rev 967910)
+++ PKGBUILD2021-06-30 03:13:01 UTC (rev 967911)
@@ -5,7 +5,7 @@
 # Jan de Groot 
 
 pkgname=cinnamon-screensaver
-pkgver=5.0.5
+pkgver=5.0.6
 pkgrel=1
 pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
 arch=('x86_64')
@@ -17,8 +17,8 @@
 makedepends=('gobject-introspection' 'meson' 'samurai')
 backup=('etc/pam.d/cinnamon-screensaver')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('18cf174c372f2082b3984fab2fc6e18a41f0f508230fdf91e54b8d0d3c7cf1de1009327716eacf33a7975e0983882abb41944b1470b54f1bd77b7ced8570bea1')
-b2sums=('5bfe290547fe1bb8cd67cd99781b6ab59e7c146fd9775e4b73544a697e3f56793a998dcd55124df2df568877a3abcb1938ab9a695325562f286e6c03b44f8789')
+sha512sums=('fce753d4805ad8e0e6767238b5b24b741a8e6b974fb0739cbe76105dfcd33621330257cdbfc34d5a33256659f5b2f9ef457cca9351ff6f73802fbffd6c0828b6')
+b2sums=('b7bb32c3986f662e8ff9ff857ef8c8f2fb1945abbf6af39b6dd9e4f915dfb47be5b177d474a8199e07d31c8394d6fc1dcf3087cf30a9196d85380e195b8ee0ef')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build



[arch-commits] Commit in cinnamon-settings-daemon/repos/community-x86_64 (2 files)

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 02:54:22
  Author: eschwartz
Revision: 967910

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 967909, cinnamon-settings-daemon/trunk/PKGBUILD)
Deleted:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-30 02:54:06 UTC (rev 967909)
+++ PKGBUILD2021-06-30 02:54:22 UTC (rev 967910)
@@ -1,39 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira (faidoc) 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=cinnamon-settings-daemon
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="The Cinnamon Settings daemon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
- 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
- 'pulseaudio-alsa' 'upower')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('meson' 'samurai' 'xf86-input-wacom')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('6e68f7c9fd848a3c8fc39341523d5900b2ea72b341fedc6153cf3700e9d29c188e57dce4dd19c6d2eb18edad23dfaf66e29ed659c6f969b9721e2277f95cdf7b')
-b2sums=('3e467089b8cdc6bdf296c43e138cc71c316b71dc8a39c9ba78767624a6606db9cc1e9c14c1f12ffc7dbe98a0d9ccabacc5660a1b0a75cebe9ac429eef74f1c5b')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-meson --prefix=/usr \
-  --libexecdir="/usr/lib/${pkgname}" \
-  --buildtype=plain \
-  -Dinstall_binfiles=false \
-  ..
-
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
- DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD (from rev 
967909, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-30 02:54:22 UTC (rev 967910)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira (faidoc) 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=cinnamon-settings-daemon
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="The Cinnamon Settings daemon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
+ 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
+ 'pulseaudio-alsa' 'upower')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('meson' 'samurai' 'xf86-input-wacom')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('ab44c5c157d5a37b35a88f89ba76254ade3f7dfdfaaa7ea7a09aabb49dce3c8f7d789d5d136b2a629c37483d2098ec957bfd07f930d786475ac1bf3973f4d56f')
+b2sums=('78067cc11b0a8e77f8bc0a0a942430dbee31e9b8f1a857b9f10b7c16982c0d5e64267e91d35bbd1d66391d328e35efc536d953eee00b2b4b3c6d8c6c28052601')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --libexecdir="/usr/lib/${pkgname}" \
+  --buildtype=plain \
+  -Dinstall_binfiles=false \
+  ..
+
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+ DESTDIR="${pkgdir}" samu install
+}



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

2021-06-29 Thread Eli Schwartz via arch-commits
Date: Wednesday, June 30, 2021 @ 02:54:06
  Author: eschwartz
Revision: 967909

upgpkg: cinnamon-settings-daemon 5.0.3-1: upstream release

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-30 02:15:56 UTC (rev 967908)
+++ PKGBUILD2021-06-30 02:54:06 UTC (rev 967909)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=cinnamon-settings-daemon
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="The Cinnamon Settings daemon"
 arch=('x86_64')
@@ -16,8 +16,8 @@
 makedepends=('meson' 'samurai' 'xf86-input-wacom')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('6e68f7c9fd848a3c8fc39341523d5900b2ea72b341fedc6153cf3700e9d29c188e57dce4dd19c6d2eb18edad23dfaf66e29ed659c6f969b9721e2277f95cdf7b')
-b2sums=('3e467089b8cdc6bdf296c43e138cc71c316b71dc8a39c9ba78767624a6606db9cc1e9c14c1f12ffc7dbe98a0d9ccabacc5660a1b0a75cebe9ac429eef74f1c5b')
+sha512sums=('ab44c5c157d5a37b35a88f89ba76254ade3f7dfdfaaa7ea7a09aabb49dce3c8f7d789d5d136b2a629c37483d2098ec957bfd07f930d786475ac1bf3973f4d56f')
+b2sums=('78067cc11b0a8e77f8bc0a0a942430dbee31e9b8f1a857b9f10b7c16982c0d5e64267e91d35bbd1d66391d328e35efc536d953eee00b2b4b3c6d8c6c28052601')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir



[arch-commits] Commit in cinnamon-control-center/repos/community-x86_64 (2 files)

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 29, 2021 @ 03:28:44
  Author: eschwartz
Revision: 967828

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
(from rev 967827, cinnamon-control-center/trunk/PKGBUILD)
Deleted:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-29 03:28:30 UTC (rev 967827)
+++ PKGBUILD2021-06-29 03:28:44 UTC (rev 967828)
@@ -1,46 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-control-center:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-control-center
-pkgver=5.0.1
-pkgrel=1
-pkgdesc="The Control Center for Cinnamon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
- 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
-optdepends=('cinnamon-translations: i18n'
-'gnome-color-manager: for color management tasks'
-'gnome-online-accounts: for the online accounts module')
-makedepends=('meson' 'samurai' 'gnome-online-accounts')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('170ac90d3a11ac10258b1fff20f4ee792078520e8eb4e18e13a2c4caf8de3ede')
-b2sums=('f9c88aa3ad585f9fd867055b247d3cbc7442fb1b4e205dbac7de889e8dd6faa3c2cdee9a6f98b877054ace9d3ff5694e469df3ca35481bd768e019bf6c611541')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-meson --prefix=/usr \
-  --buildtype=plain \
-..
-
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-DESTDIR="${pkgdir}" samu install
-
-# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
-# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
-# Just install the shell libs/headers.
-rm "${pkgdir}"/usr/bin/cinnamon-control-center
-rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
-}

Copied: cinnamon-control-center/repos/community-x86_64/PKGBUILD (from rev 
967827, cinnamon-control-center/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-29 03:28:44 UTC (rev 967828)
@@ -0,0 +1,46 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-control-center:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-control-center
+pkgver=5.0.2
+pkgrel=1
+pkgdesc="The Control Center for Cinnamon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
+ 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
+optdepends=('cinnamon-translations: i18n'
+'gnome-color-manager: for color management tasks'
+'gnome-online-accounts: for the online accounts module')
+makedepends=('meson' 'samurai' 'gnome-online-accounts')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('30f697ebbf3d3d267b8ea09cdbfd358c994bf4b60a458f124dcfd415d2cb58a7')
+b2sums=('d292d610516647e149198cbfce652bfd094338612ef6b4765fcb80bd1fe15f2d643bbaa5343f1d79d57f3327c87a3256cfc3900493daf6f80569b1a0bacd821a')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --buildtype=plain \
+..
+
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+DESTDIR="${pkgdir}" samu install
+
+# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
+# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
+# Just install the shell libs/headers.
+rm "${pkgdir}"/usr/bin/cinnamon-control-center
+rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
+}



[arch-commits] Commit in cinnamon-control-center/trunk (PKGBUILD)

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 29, 2021 @ 03:28:30
  Author: eschwartz
Revision: 967827

upgpkg: cinnamon-control-center 5.0.2-1: upstream release

upstream is just removing a broken option that didn't work, not much to see

Modified:
  cinnamon-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-29 03:26:32 UTC (rev 967826)
+++ PKGBUILD2021-06-29 03:28:30 UTC (rev 967827)
@@ -5,7 +5,7 @@
 # Jan de Groot 
 
 pkgname=cinnamon-control-center
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc="The Control Center for Cinnamon"
 arch=('x86_64')
@@ -19,8 +19,8 @@
 makedepends=('meson' 'samurai' 'gnome-online-accounts')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('170ac90d3a11ac10258b1fff20f4ee792078520e8eb4e18e13a2c4caf8de3ede')
-b2sums=('f9c88aa3ad585f9fd867055b247d3cbc7442fb1b4e205dbac7de889e8dd6faa3c2cdee9a6f98b877054ace9d3ff5694e469df3ca35481bd768e019bf6c611541')
+sha256sums=('30f697ebbf3d3d267b8ea09cdbfd358c994bf4b60a458f124dcfd415d2cb58a7')
+b2sums=('d292d610516647e149198cbfce652bfd094338612ef6b4765fcb80bd1fe15f2d643bbaa5343f1d79d57f3327c87a3256cfc3900493daf6f80569b1a0bacd821a')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir



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

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 29, 2021 @ 03:26:32
  Author: eschwartz
Revision: 967826

archrelease: copy trunk to community-x86_64

Added:
  nemo/repos/community-x86_64/PKGBUILD
(from rev 967825, nemo/trunk/PKGBUILD)
Deleted:
  nemo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-29 03:24:53 UTC (rev 967825)
+++ PKGBUILD2021-06-29 03:26:32 UTC (rev 967826)
@@ -1,46 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=5.0.1
-pkgrel=1
-pkgdesc="Cinnamon file manager (Nautilus fork)"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2'
- 'python' 'xapp')
-optdepends=('cinnamon-translations: i18n'
-'ffmpegthumbnailer: support for video thumbnails'
-'libgsf: search helpers support for MS Office files'
-'odt2txt: search helpers support for LibreOffice files'
-'poppler: search helpers support for PDF')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'libgsf')
-source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('79aeec70b7d167a9b418585af5562dfc3e197708510a8acbb20ef028d0738889a369878c4f8d1daf0f392e419494b327176e5048b16c51d39f832696365edb9b')
-b2sums=('b846ec184ce1b516071cf11c88630dfbb78fbe8f29259564fd2928b71f951073cfdbd7199837ff9399ca96e211812e6a5921c41c384bf08c647f612b5de30cfb')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# Rename 'Files' app name to avoid having the same as nautilus
-sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
-}
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: nemo/repos/community-x86_64/PKGBUILD (from rev 967825, 
nemo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-29 03:26:32 UTC (rev 967826)
@@ -0,0 +1,49 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=5.0.2
+pkgrel=1
+pkgdesc="Cinnamon file manager (Nautilus fork)"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2'
+ 'python' 'xapp')
+optdepends=('cinnamon-translations: i18n'
+'ffmpegthumbnailer: support for video thumbnails'
+'catdoc: search helpers support for legacy MS Office files'
+'ghostscript: search helpers support for PostScript files'
+'libgsf: search helpers support for MS Office files'
+'libreoffice: search helpers support for legacy MS Office 
powerpoint files'
+'odt2txt: search helpers support for LibreOffice files'
+'poppler: search helpers support for PDF')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'libgsf')
+source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('12b2bc982b3c73af35a21c37f10fbffaed77c5a8a03e08e2ae2cc5283c90c7759fa788d88cad58d44f23ef9022d479c71a8bff6d9ba02e2d38e1ddfc61aee64d')
+b2sums=('964ba4be3dee28afe2f6a680be3df9eda06a832b5d7de83c7e587e3a15eac82e5c0a19dd1bced52da93576ea1092c0ac50b0f00c967697658e156c896ca7f748')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# Rename 'Files' app name to avoid having the same as nautilus
+sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
+}
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}



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

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 29, 2021 @ 03:24:53
  Author: eschwartz
Revision: 967825

upgpkg: nemo 5.0.2-1: upstream release

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-29 02:50:29 UTC (rev 967824)
+++ PKGBUILD2021-06-29 03:24:53 UTC (rev 967825)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc="Cinnamon file manager (Nautilus fork)"
 arch=('x86_64')
@@ -13,14 +13,16 @@
  'python' 'xapp')
 optdepends=('cinnamon-translations: i18n'
 'ffmpegthumbnailer: support for video thumbnails'
+'catdoc: search helpers support for legacy MS Office files'
 'ghostscript: search helpers support for PostScript files'
 'libgsf: search helpers support for MS Office files'
+'libreoffice: search helpers support for legacy MS Office 
powerpoint files'
 'odt2txt: search helpers support for LibreOffice files'
 'poppler: search helpers support for PDF')
 makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'libgsf')
 source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('79aeec70b7d167a9b418585af5562dfc3e197708510a8acbb20ef028d0738889a369878c4f8d1daf0f392e419494b327176e5048b16c51d39f832696365edb9b')
-b2sums=('b846ec184ce1b516071cf11c88630dfbb78fbe8f29259564fd2928b71f951073cfdbd7199837ff9399ca96e211812e6a5921c41c384bf08c647f612b5de30cfb')
+sha512sums=('12b2bc982b3c73af35a21c37f10fbffaed77c5a8a03e08e2ae2cc5283c90c7759fa788d88cad58d44f23ef9022d479c71a8bff6d9ba02e2d38e1ddfc61aee64d')
+b2sums=('964ba4be3dee28afe2f6a680be3df9eda06a832b5d7de83c7e587e3a15eac82e5c0a19dd1bced52da93576ea1092c0ac50b0f00c967697658e156c896ca7f748')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}



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

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 29, 2021 @ 02:50:29
  Author: eschwartz
Revision: 967824

archrelease: copy trunk to community-x86_64

Added:
  qbittorrent/repos/community-x86_64/PKGBUILD
(from rev 967823, qbittorrent/trunk/PKGBUILD)
Deleted:
  qbittorrent/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-29 02:50:12 UTC (rev 967823)
+++ PKGBUILD2021-06-29 02:50:29 UTC (rev 967824)
@@ -1,63 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Antonio Rojas 
-# Contributor: Timothy Redaelli 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Jkkyll Wu 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Daniel J Griffiths 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=qbittorrent
-pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.3.5
-pkgrel=1
-arch=('x86_64')
-url="https://www.qbittorrent.org;
-license=('custom' 'GPL')
-depends=('libtorrent-rasterbar' 'qt5-base')
-makedepends=('boost' 'qt5-tools' 'qt5-svg')
-optdepends=('python: needed for torrent search tab')
-source=("https://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('0a2feec6c16ef9a82c9a6a6ffacd619ede243ed4037ae04e7b9f3da74f704cd9d724f47e87d2da00eb8d0c0c3c9228e0578a6bc71fa530ef42cb5b65586f9db0'
-'SKIP')
-b2sums=('eadc46330bfc04778510123f143578ea12ec9a34d3f3e56ef47267d7fe4deaea92318e4213f75b8849b6cc047d05e0daa62a27c1c1d4f00acbc535589c26ca63'
-'SKIP')
-validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2') # sledgehammer999 

-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  # tell qmake not to break makepkg's debug/!strip options
-  export QBT_ADD_CONFIG='nostrip'
-
-  mkdir -p ${pkgbase}
-  pushd ${pkgbase}
-  ../configure --prefix=/usr
-  make
-  popd
-
-  # Build nox variant
-  mkdir -p "${pkgbase}-nox"
-  pushd "${pkgbase}-nox"
-  ../configure --prefix=/usr --disable-gui --enable-systemd
-  make
-}
-
-package_qbittorrent() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
-  depends+=('qt5-svg' 'hicolor-icon-theme')
-
-  cd ${pkgbase}-${pkgver}/${pkgbase}
-
-  make INSTALL_ROOT="${pkgdir}" install
-  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}
-
-package_qbittorrent-nox() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
-
-  cd ${pkgbase}-${pkgver}/${pkgbase}-nox
-
-  make INSTALL_ROOT="${pkgdir}" install
-  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: qbittorrent/repos/community-x86_64/PKGBUILD (from rev 967823, 
qbittorrent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-29 02:50:29 UTC (rev 967824)
@@ -0,0 +1,63 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Antonio Rojas 
+# Contributor: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=qbittorrent
+pkgname=(qbittorrent qbittorrent-nox)
+pkgver=4.3.6
+pkgrel=1
+arch=('x86_64')
+url="https://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('libtorrent-rasterbar' 'qt5-base')
+makedepends=('boost' 'qt5-tools' 'qt5-svg')
+optdepends=('python: needed for torrent search tab')
+source=("https://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha512sums=('ee495f957e2714f9a054d223bd3cff991317824f28bd6e4bc9cabf0e9b89a13def9637cf79c5bb93990dd4737b8b393bf314f1f9a2261cd0737f342f9eb2d52f'
+'SKIP')
+b2sums=('b3861d93aec76f51c68c5f342869c1330cf419d1bcfe993e226d7a5082c4e529d56bab462c3616937920470feaf45d8405e6d60d166d36cdf088ac51664c8e05'
+'SKIP')
+validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2') # sledgehammer999 

+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  # tell qmake not to break makepkg's debug/!strip options
+  export QBT_ADD_CONFIG='nostrip'
+
+  mkdir -p ${pkgbase}
+  pushd ${pkgbase}
+  ../configure --prefix=/usr
+  make
+  popd
+
+  # Build nox variant
+  mkdir -p "${pkgbase}-nox"
+  pushd "${pkgbase}-nox"
+  ../configure --prefix=/usr --disable-gui --enable-systemd
+  make
+}
+
+package_qbittorrent() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
+  depends+=('qt5-svg' 'hicolor-icon-theme')
+
+  cd ${pkgbase}-${pkgver}/${pkgbase}
+
+  make INSTALL_ROOT="${pkgdir}" install
+  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING

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

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 29, 2021 @ 02:50:12
  Author: eschwartz
Revision: 967823

upgpkg: qbittorrent 4.3.6-1: upstream release

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-29 02:48:29 UTC (rev 967822)
+++ PKGBUILD2021-06-29 02:50:12 UTC (rev 967823)
@@ -9,7 +9,7 @@
 
 pkgbase=qbittorrent
 pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.3.5
+pkgver=4.3.6
 pkgrel=1
 arch=('x86_64')
 url="https://www.qbittorrent.org;
@@ -18,9 +18,9 @@
 makedepends=('boost' 'qt5-tools' 'qt5-svg')
 optdepends=('python: needed for torrent search tab')
 
source=("https://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('0a2feec6c16ef9a82c9a6a6ffacd619ede243ed4037ae04e7b9f3da74f704cd9d724f47e87d2da00eb8d0c0c3c9228e0578a6bc71fa530ef42cb5b65586f9db0'
+sha512sums=('ee495f957e2714f9a054d223bd3cff991317824f28bd6e4bc9cabf0e9b89a13def9637cf79c5bb93990dd4737b8b393bf314f1f9a2261cd0737f342f9eb2d52f'
 'SKIP')
-b2sums=('eadc46330bfc04778510123f143578ea12ec9a34d3f3e56ef47267d7fe4deaea92318e4213f75b8849b6cc047d05e0daa62a27c1c1d4f00acbc535589c26ca63'
+b2sums=('b3861d93aec76f51c68c5f342869c1330cf419d1bcfe993e226d7a5082c4e529d56bab462c3616937920470feaf45d8405e6d60d166d36cdf088ac51664c8e05'
 'SKIP')
 validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2') # sledgehammer999 

 



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

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Monday, June 28, 2021 @ 10:58:05
  Author: eschwartz
Revision: 967686

archrelease: copy trunk to community-x86_64

Added:
  xreader/repos/community-x86_64/PKGBUILD
(from rev 967685, xreader/trunk/PKGBUILD)
Deleted:
  xreader/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-28 10:57:51 UTC (rev 967685)
+++ PKGBUILD2021-06-28 10:58:05 UTC (rev 967686)
@@ -1,48 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Nate Simon 
-
-pkgname=xreader
-pkgver=3.0.1
-pkgrel=1
-pkgdesc="Document viewer for files like PDF and Postscript. X-Apps Project."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-groups=('x-apps')
-depends=('poppler-glib' 'webkit2gtk' 'xapps')
-optdepends=('djvulibre: support for djvu files'
-'libgxps: support for xps files'
-'libspectre: support for dvi and ps files'
-'mathjax2: support for math in epub files'
-'texlive-bin: support for dvi files')
-makedepends=('meson' 'samurai' 'intltool' 'itstool' 'gobject-introspection' 
'djvulibre'
- 'libgxps' 'libspectre' 'texlive-bin')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('8da7e27792df0c0ed33ee08ab9b555edc35f981cb8ce76b45ac0618ca2d9c56b')
-b2sums=('cf20c87161870746c6a46bd4ddf4d9cc7f8ffacc12dcefd59d2a19777845f9f29a7b2dc9e4343a3968669440d41fd53e664f9a5451cfecb6d3ff75f4d6872a15')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  -Dmathjax-directory=/usr/share/mathjax2 \
-  -Dcomics=true \
-  -Ddjvu=true \
-  -Ddvi=true \
-  -Dt1lib=true \
-  -Dpixbuf=true \
-  -Dintrospection=true \
-  -Dhelp_files=true \
-  -Dtests=false \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: xreader/repos/community-x86_64/PKGBUILD (from rev 967685, 
xreader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-28 10:58:05 UTC (rev 967686)
@@ -0,0 +1,48 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Nate Simon 
+
+pkgname=xreader
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="Document viewer for files like PDF and Postscript. X-Apps Project."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+groups=('x-apps')
+depends=('poppler-glib' 'webkit2gtk' 'xapps')
+optdepends=('djvulibre: support for djvu files'
+'libgxps: support for xps files'
+'libspectre: support for dvi and ps files'
+'mathjax2: support for math in epub files'
+'texlive-bin: support for dvi files')
+makedepends=('meson' 'samurai' 'intltool' 'itstool' 'gobject-introspection' 
'djvulibre'
+ 'libgxps' 'libspectre' 'texlive-bin')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('a2e32274787723e81afeb62390c92b64f0ad222e3ca6295704535e5c499fdd28')
+b2sums=('3534f16b16ef73dfe58c62a5dc82bf13f7f68bea4a7646e65e612af6a6ff6250f3989c999f039d6d7044eeb30791554d660ee159e7f064e810f81d0e8f6a3f87')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  -Dmathjax-directory=/usr/share/mathjax2 \
+  -Dcomics=true \
+  -Ddjvu=true \
+  -Ddvi=true \
+  -Dt1lib=true \
+  -Dpixbuf=true \
+  -Dintrospection=true \
+  -Dhelp_files=true \
+  -Dtests=false \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}



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

2021-06-28 Thread Eli Schwartz via arch-commits
Date: Monday, June 28, 2021 @ 10:57:51
  Author: eschwartz
Revision: 967685

upgpkg: xreader 3.0.2-1: upstream translation-only release

Modified:
  xreader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-28 10:41:06 UTC (rev 967684)
+++ PKGBUILD2021-06-28 10:57:51 UTC (rev 967685)
@@ -2,7 +2,7 @@
 # Contributor: Nate Simon 
 
 pkgname=xreader
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="Document viewer for files like PDF and Postscript. X-Apps Project."
 arch=('x86_64')
@@ -18,8 +18,8 @@
 makedepends=('meson' 'samurai' 'intltool' 'itstool' 'gobject-introspection' 
'djvulibre'
  'libgxps' 'libspectre' 'texlive-bin')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('8da7e27792df0c0ed33ee08ab9b555edc35f981cb8ce76b45ac0618ca2d9c56b')
-b2sums=('cf20c87161870746c6a46bd4ddf4d9cc7f8ffacc12dcefd59d2a19777845f9f29a7b2dc9e4343a3968669440d41fd53e664f9a5451cfecb6d3ff75f4d6872a15')
+sha256sums=('a2e32274787723e81afeb62390c92b64f0ad222e3ca6295704535e5c499fdd28')
+b2sums=('3534f16b16ef73dfe58c62a5dc82bf13f7f68bea4a7646e65e612af6a6ff6250f3989c999f039d6d7044eeb30791554d660ee159e7f064e810f81d0e8f6a3f87')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build



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

2021-06-27 Thread Eli Schwartz via arch-commits
Date: Monday, June 28, 2021 @ 02:09:39
  Author: eschwartz
Revision: 967649

archrelease: copy trunk to community-x86_64

Added:
  xed/repos/community-x86_64/PKGBUILD
(from rev 967648, xed/trunk/PKGBUILD)
Deleted:
  xed/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-28 02:09:25 UTC (rev 967648)
+++ PKGBUILD2021-06-28 02:09:39 UTC (rev 967649)
@@ -1,33 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Nate Simon 
-
-pkgname=xed
-pkgver=3.0.1
-pkgrel=1
-pkgdesc="A small and lightweight text editor. X-Apps Project."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-groups=('x-apps')
-depends=('gspell' 'gtksourceview4' 'libpeas' 'xapps')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'itstool')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('cc1ff6094943375fc810215b2467871a674435bf44d32534f7efa38229cb6855')
-b2sums=('ee9cfc82d59901433e08822b5356d87a3a28a5bd613b7090f7e9b0034e7f5be9a36c1594868de9103e9fccfaa9799c085a0d99d51aafce54f8fbc2e20fbaebe9')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: xed/repos/community-x86_64/PKGBUILD (from rev 967648, 
xed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-28 02:09:39 UTC (rev 967649)
@@ -0,0 +1,33 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Nate Simon 
+
+pkgname=xed
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="A small and lightweight text editor. X-Apps Project."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+groups=('x-apps')
+depends=('gspell' 'gtksourceview4' 'libpeas' 'xapps')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'itstool')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('6e71347f64210369bd5ca2eefee36ee72ca9a701e40edfe4456115a95234e5c5')
+b2sums=('c7e01840840ab65a8b678bd61949399a318c186236bd05d88a06798406d8cbc3c75db858ae750791a5013c5328ba4aeb2a114c6274cfb97d8290cc8cc7521385')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}



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

2021-06-27 Thread Eli Schwartz via arch-commits
Date: Monday, June 28, 2021 @ 02:09:25
  Author: eschwartz
Revision: 967648

upgpkg: xed 3.0.2-1: upstream translation-only release

Modified:
  xed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-28 02:03:27 UTC (rev 967647)
+++ PKGBUILD2021-06-28 02:09:25 UTC (rev 967648)
@@ -2,7 +2,7 @@
 # Contributor: Nate Simon 
 
 pkgname=xed
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="A small and lightweight text editor. X-Apps Project."
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=('gspell' 'gtksourceview4' 'libpeas' 'xapps')
 makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'itstool')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('cc1ff6094943375fc810215b2467871a674435bf44d32534f7efa38229cb6855')
-b2sums=('ee9cfc82d59901433e08822b5356d87a3a28a5bd613b7090f7e9b0034e7f5be9a36c1594868de9103e9fccfaa9799c085a0d99d51aafce54f8fbc2e20fbaebe9')
+sha256sums=('6e71347f64210369bd5ca2eefee36ee72ca9a701e40edfe4456115a95234e5c5')
+b2sums=('c7e01840840ab65a8b678bd61949399a318c186236bd05d88a06798406d8cbc3c75db858ae750791a5013c5328ba4aeb2a114c6274cfb97d8290cc8cc7521385')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build



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

2021-06-27 Thread Eli Schwartz via arch-commits
Date: Monday, June 28, 2021 @ 02:03:27
  Author: eschwartz
Revision: 967647

archrelease: copy trunk to community-x86_64

Added:
  xapp/repos/community-x86_64/PKGBUILD
(from rev 967646, xapp/trunk/PKGBUILD)
Deleted:
  xapp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-28 02:03:13 UTC (rev 967646)
+++ PKGBUILD2021-06-28 02:03:27 UTC (rev 967647)
@@ -1,49 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alex Filgueira 
-# Contributor: Nate Simon 
-
-pkgname=xapp
-pkgver=2.2.1
-pkgrel=1
-pkgdesc="Common library for X-Apps project"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('libdbusmenu-gtk3' 'libgnomekbd')
-optdepends=('python: for mate-desktop status applet')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 'vala')
-provides=('xapps')
-conflicts=('xapps')
-replaces=('xapps')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('6b6c4bbdd256739bc40d3894b93c4b348a6a319100288c20df93721684f97555')
-b2sums=('ee7f3f2b3c54b0b40158dff6abbe2233c0d1a1fa4e134ce4bd6ee48842335b16e0d94ad430cb59301529dd85e2705cbb1c1f5ba10844b6fb85f598ca0c42d1db')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-
-# rm useless scripts
-rm -r "${pkgdir}"/usr/bin
-
-# byte-compile python modules since meson does not implement autotools'
-# py-compile.
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python -m compileall -d "${_destdir}" "${_file}"
-python -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/python3* -name '*.py' -print0)
-}

Copied: xapp/repos/community-x86_64/PKGBUILD (from rev 967646, 
xapp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-28 02:03:27 UTC (rev 967647)
@@ -0,0 +1,49 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alex Filgueira 
+# Contributor: Nate Simon 
+
+pkgname=xapp
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="Common library for X-Apps project"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('libdbusmenu-gtk3' 'libgnomekbd')
+optdepends=('python: for mate-desktop status applet')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 'vala')
+provides=('xapps')
+conflicts=('xapps')
+replaces=('xapps')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('1384eb5c3ef395aa7736346521639c7b7904f471f4a55ccd415a66c1031e8f75')
+b2sums=('a45b2707c505c9ed69b9748c846f69ef7668600619bc3d0f86c693c99e536afb9994ff4ed10cbf0efc194a1e861cf0911af50170e97a7b858b1363c370551799')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+
+# rm useless scripts
+rm -r "${pkgdir}"/usr/bin
+
+# byte-compile python modules since meson does not implement autotools'
+# py-compile.
+# This is kind of ugly but removes traces of the build root.
+while read -rd '' _file; do
+_destdir="$(dirname "${_file#${pkgdir}}")"
+python -m compileall -d "${_destdir}" "${_file}"
+python -O -m compileall -d "${_destdir}" "${_file}"
+done < <(find "${pkgdir}"/usr/lib/python3* -name '*.py' -print0)
+}



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

2021-06-27 Thread Eli Schwartz via arch-commits
Date: Monday, June 28, 2021 @ 02:03:13
  Author: eschwartz
Revision: 967646

upgpkg: xapp 2.2.2-1: upstream translations-only release

Modified:
  xapp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-28 01:36:12 UTC (rev 967645)
+++ PKGBUILD2021-06-28 02:03:13 UTC (rev 967646)
@@ -3,7 +3,7 @@
 # Contributor: Nate Simon 
 
 pkgname=xapp
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 pkgdesc="Common library for X-Apps project"
 arch=('x86_64')
@@ -16,8 +16,8 @@
 conflicts=('xapps')
 replaces=('xapps')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('6b6c4bbdd256739bc40d3894b93c4b348a6a319100288c20df93721684f97555')
-b2sums=('ee7f3f2b3c54b0b40158dff6abbe2233c0d1a1fa4e134ce4bd6ee48842335b16e0d94ad430cb59301529dd85e2705cbb1c1f5ba10844b6fb85f598ca0c42d1db')
+sha256sums=('1384eb5c3ef395aa7736346521639c7b7904f471f4a55ccd415a66c1031e8f75')
+b2sums=('a45b2707c505c9ed69b9748c846f69ef7668600619bc3d0f86c693c99e536afb9994ff4ed10cbf0efc194a1e861cf0911af50170e97a7b858b1363c370551799')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build



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

2021-06-25 Thread Eli Schwartz via arch-commits
Date: Friday, June 25, 2021 @ 21:16:49
  Author: eschwartz
Revision: 967461

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/PKGBUILD
(from rev 967460, calibre/trunk/PKGBUILD)
Deleted:
  calibre/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-25 21:16:34 UTC (rev 967460)
+++ PKGBUILD2021-06-25 21:16:49 UTC (rev 967461)
@@ -1,106 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgbase=calibre
-pkgname=calibre
-pkgver=5.21.0
-pkgrel=1
-pkgdesc="Ebook management application"
-arch=('x86_64')
-url="https://calibre-ebook.com/;
-license=('GPL3')
-_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dbus' 'dnspython'
-  'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
-  'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
-  'pyqtwebengine' 'regex' 'zeroconf')
-depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libusb'
- 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
- "${_py_deps[@]/#/python-}" 'qt5-imageformats' 'qt5-svg' 
'ttf-liberation' 'udisks2')
-makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
-checkdepends=('xorg-server-xvfb')
-optdepends=('poppler: required for converting pdf to html'
-'speech-dispatcher: TTS support in the viewer')
-conflicts=('calibre-common' 'calibre-python3')
-replaces=('calibre-common' 'calibre-python3')
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('458b6b2dcc6bcf63676c327277192e88333cf9545d89806855d31b4c17e20257'
-'SKIP')
-b2sums=('50c49d278af84691384eb39cac0f2b1eea4136750b8c527a20d97be8e8333a8c581e6924b970dc5d4d54c4485cbc064b186242873d6fb250c284c3eca0ec158b'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare(){
-cd "${pkgbase}-${pkgver}"
-
-# Desktop integration (e.g. enforce arch defaults)
-# Use uppercase naming scheme, don't delete config files under fakeroot.
-sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
--e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
--e "s/^Name=calibre/Name=Calibre/g" \
--i  src/calibre/linux.py
-
-cd resources
-
-# Remove unneeded files
-rm ${pkgbase}-portable.* mozilla-ca-certs.pem
-
-# use system mathjax
-rm -r mathjax
-}
-
-build() {
-cd "${pkgbase}-${pkgver}"
-
-LANG='en_US.UTF-8' python setup.py build
-LANG='en_US.UTF-8' python setup.py gui
-python setup.py liberation_fonts --path-to-liberation_fonts 
/usr/share/fonts/liberation --system-liberation_fonts
-LANG='en_US.UTF-8' python setup.py mathjax --path-to-mathjax 
/usr/share/mathjax --system-mathjax
-LANG='en_US.UTF-8' python setup.py rapydscript
-}
-
-check() {
-cd "${pkgbase}-${pkgver}"
-
-_test_excludes=(
-# merely testing if a runtime-optional feature optdepend is importable
-'speech_dispatcher'
-# tests if a completely unused module is bundled
-'pycryptodome'
-)
-
-# without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
-# ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
-# one or two tests are a bit flaky, but the python3 build seems to succeed 
more often
-LANG='en_US.UTF-8' xvfb-run python setup.py test 
"${_test_excludes[@]/#/--exclude-test-name=}"
-}
-
-package() {
-cd "${pkgbase}-${pkgver}"
-
-# If this directory doesn't exist, zsh completion won't install.
-install -d "${pkgdir}/usr/share/zsh/site-functions"
-
-LANG='en_US.UTF-8' python setup.py install \
---staging-root="${pkgdir}/usr" \
---prefix=/usr \
---system-plugins-location=/usr/share/calibre/system-plugins
-
-cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-# not needed at runtime
-rm -r "${pkgdir}"/usr/share/calibre/rapydscript/
-
-# Compiling bytecode FS#33392
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python3 -m compileall -d "${_destdir}" "${_file}"
-python3 -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/ -name '*.py' -print0)
-}

Copied: calibre/repos/community-x86_64/PKGBUILD (from rev 967460, 
calibre/trunk/PKGBUILD)

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

2021-06-25 Thread Eli Schwartz via arch-commits
Date: Friday, June 25, 2021 @ 21:16:34
  Author: eschwartz
Revision: 967460

upgpkg: calibre 5.22.1-1: upstream release

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-25 20:39:45 UTC (rev 967459)
+++ PKGBUILD2021-06-25 21:16:34 UTC (rev 967460)
@@ -8,7 +8,7 @@
 
 pkgbase=calibre
 pkgname=calibre
-pkgver=5.21.0
+pkgver=5.22.1
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
@@ -18,7 +18,7 @@
   'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
   'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
   'pyqtwebengine' 'regex' 'zeroconf')
-depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libusb'
+depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libstemmer' 'libusb'
  'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
  "${_py_deps[@]/#/python-}" 'qt5-imageformats' 'qt5-svg' 
'ttf-liberation' 'udisks2')
 makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
@@ -29,9 +29,9 @@
 replaces=('calibre-common' 'calibre-python3')
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 "https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('458b6b2dcc6bcf63676c327277192e88333cf9545d89806855d31b4c17e20257'
+sha256sums=('93c5e30ff08159694283d08a6b43c37e01a8454c6e7eb66a071e677c2681b516'
 'SKIP')
-b2sums=('50c49d278af84691384eb39cac0f2b1eea4136750b8c527a20d97be8e8333a8c581e6924b970dc5d4d54c4485cbc064b186242873d6fb250c284c3eca0ec158b'
+b2sums=('8ce1329c7195625579f6b6bdc4e0083cf1a29caa4565e5c88ab943347623d2f0e5def8fdfbf59f31c97af37085d79820fa1ca2ca516bfeb5d582b714ea3ed09c'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 



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

2021-06-25 Thread Eli Schwartz via arch-commits
Date: Friday, June 25, 2021 @ 19:32:20
  Author: eschwartz
Revision: 967453

archrelease: copy trunk to community-x86_64

Added:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
(from rev 967452, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 967452, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 967452, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-x86_64/set_wheel.diff
(from rev 967452, cinnamon/trunk/set_wheel.diff)
Deleted:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/set_wheel.diff

-+
 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch |   76 ++--
 PKGBUILD|  169 
--
 default-theme.patch |   50 +-
 set_wheel.diff  |  110 +++---
 4 files changed, 200 insertions(+), 205 deletions(-)

Deleted: 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-25 19:31:57 UTC (rev 967452)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-25 19:32:20 UTC (rev 967453)
@@ -1,38 +0,0 @@
-From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Tue, 20 Mar 2018 14:11:02 -0400
-Subject: [PATCH] cinnamon-settings: don't rely on the presence of
- cinnamon-control-center
-
-The existence of the cinnamon-control-center binary does not even tell
-us what control center libraries are available. So instead, do the same
-thing we did for cinnamon-settings modules, and check if the library
-exists.

- files/usr/bin/cinnamon-settings | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
-index 9fbdbecd2..98ca454a5 100755
 a/files/usr/bin/cinnamon-settings
-+++ b/files/usr/bin/cinnamon-settings
-@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
- import getopt
- import os
- import sys
-+import sysconfig
- 
- def usage():
- print("""Usage:
-@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif 
os.path.exists("/usr/share/cinnamon/cinnamon-settings/modules/cs_%s.py" % 
module):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
--elif os.path.exists("/usr/bin/cinnamon-control-center"):
-+elif os.path.exists(os.path.join(sysconfig.get_config_var("LIBDIR"), 
"cinnamon-control-center-1/panels/lib%s.so" % module)):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif os.path.exists("/usr/bin/gnome-control-center"):
- print ("Unknown module %s, calling gnome-control-center" % module)
--- 
-2.22.0
-

Copied: 
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
 (from rev 967452, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
(rev 0)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-25 19:32:20 UTC (rev 967453)
@@ -0,0 +1,38 @@
+From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Tue, 20 Mar 2018 14:11:02 -0400
+Subject: [PATCH] cinnamon-settings: don't rely on the presence of
+ cinnamon-control-center
+
+The existence of the cinnamon-control-center binary does not even tell
+us what control center libraries are available. So instead, do the same
+thing we did for cinnamon-settings modules, and check if the library
+exists.
+---
+ files/usr/bin/cinnamon-settings | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
+index 9fbdbecd2..98ca454a5 100755
+--- a/files/usr/bin/cinnamon-settings
 b/files/usr/bin/cinnamon-settings
+@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
+ import getopt
+ import os
+ import sys
++import sysconfig
+ 
+ def usage():
+ print("""Usage:
+@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
+ 

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

2021-06-25 Thread Eli Schwartz via arch-commits
Date: Friday, June 25, 2021 @ 19:31:57
  Author: eschwartz
Revision: 967452

upgpkg: cinnamon 5.0.3-1: upstream release

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-25 18:55:05 UTC (rev 967451)
+++ PKGBUILD2021-06-25 19:31:57 UTC (rev 967452)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="Linux desktop which provides advanced innovative features and a 
traditional user experience"
 arch=('x86_64')
@@ -28,11 +28,11 @@
 "0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch"
 "set_wheel.diff"
 "default-theme.patch")
-sha512sums=('f75e9f8382b27b0b29d37274b8687f861c6b46a46b378ee297024069ad70e0e5b48089cd724210148d657d25bcce5d3f18b6ba4826b8ff582c0c1afb5fef9578'
+sha512sums=('97dfa527e2f530d31da775b6cf204b851d2e3dbe95b793d82b3944f77cc3426301a9b784bcad3f3041c418b843e90741eabb8bfa9c0be6a4019ba7c4699233f4'
 
'77c2229d350bb1445375d206af769f1dde9329ce3575e40e9c1d5fea3ec0f49c0a7ef36d78caf895d9224147947bd102bab924b5579dc8dc5f8d3269e0c76374'
 
'fd7e117054996ed1c3dfd0f968c2bf98ca4fcee9a100221f8839a232147745ec0140e1f68eeffba58a3c44f66f26e05d433648a7a28858ec669524f7266ba04c'
 
'ee7dedd59ea370cf81d75def49060f9a29b22e7b025ca7d5db87a0102d50f138c79aa562b0d36a748c4b1c59a37f600ba1f60ff6caf303cf5b6fc4d110d051b4')
-b2sums=('fe7962f4d6481a1584700b3ad5495d2cdc79c4f61aa01b7e330929ff83150ca9a024a00bece4df0fbd18dc68df164c5c27024320c8e46041ae1eaa7c36c8c620'
+b2sums=('9eca25345075c4b9927e350364a707cf16a851c61f0574940e856da2d0ac1b20527cfb259ace5242f7fa90161f852b032f2b5fb79b612ced80f510f49ed13bd1'
 
'1d873efa0d17e358f834c4374f39bbf3f74340849f9c28a0950c0a064772083798aba3435e564acdf43a94665389917788e295073d4a65cc18600d71b7a9f008'
 
'3becf1f40068fc629109e6e7d464c3c484296afacc9ab6328b2ccbb3c9735bcbfa9550f9f73b430ede178ae668e37c660ce322b5b4d1873526de3d3d41185160'
 
'86c3a29acd132ca321f08fd81dd5a45707accdc035b2aeec95bf358b29072ff1eedb77b2566cf48d7253d1d791599f0f44938c4600761d711cb18b59019f1c62')
@@ -79,9 +79,4 @@
 cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
 DESTDIR="${pkgdir}" samu install
-
-# crazy debian-specific install paths
-local py_dir=$(python -c "import site; print(site.getsitepackages()[0])")
-mkdir -p "${pkgdir}/${py_dir}"
-mv "${pkgdir}"/usr/lib/python3/dist-packages/cinnamon 
"${pkgdir}/${py_dir}"/
 }



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

2021-06-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 22, 2021 @ 03:04:44
  Author: eschwartz
Revision: 966714

archrelease: copy trunk to community-any

Added:
  
python-httpx/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
(from rev 966713, 
python-httpx/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch)
  python-httpx/repos/community-any/PKGBUILD
(from rev 966713, python-httpx/trunk/PKGBUILD)
Deleted:
  
python-httpx/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
  python-httpx/repos/community-any/PKGBUILD

-+
 0001-Do-not-override-the-system-SSL-certificates-with-the.patch |  174 
+-
 PKGBUILD|   92 ++---
 2 files changed, 133 insertions(+), 133 deletions(-)

Deleted: 0001-Do-not-override-the-system-SSL-certificates-with-the.patch
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2021-06-22 03:04:26 UTC (rev 966713)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2021-06-22 03:04:44 UTC (rev 966714)
@@ -1,87 +0,0 @@
-From d03e57b75c2eb8a3696b6dd9a5f84aba4f01280c Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Mon, 13 Jul 2020 11:29:54 -0400
-Subject: [PATCH] Do not override the system SSL certificates with the certifi
- bundle.
-
-We need to respect the system certification policy, and by default the
-ssl module will use our packaged ca-certificates.
-
-ssl.create_default_context(cafile=None) is the default to use the
-builtin (system) certs, but due to the sorcery which this module uses to
-check how arguments are being passed, it's less invasive to simply
-hardcode the standard certificate path instead of letting python
-properly handle it.

- httpx/_config.py | 4 +---
- setup.py | 1 -
- tests/test_config.py | 5 ++---
- 3 files changed, 3 insertions(+), 7 deletions(-)
-
-diff --git a/httpx/_config.py b/httpx/_config.py
-index 8d589ea..ea256a8 100644
 a/httpx/_config.py
-+++ b/httpx/_config.py
-@@ -5,8 +5,6 @@ import warnings
- from base64 import b64encode
- from pathlib import Path
- 
--import certifi
--
- from ._models import URL, Headers
- from ._types import CertTypes, HeaderTypes, TimeoutTypes, URLTypes, 
VerifyTypes
- from ._utils import get_ca_bundle_from_env, get_logger, warn_deprecated
-@@ -57,7 +55,7 @@ class SSLConfig:
- SSL Configuration.
- """
- 
--DEFAULT_CA_BUNDLE_PATH = Path(certifi.where())
-+DEFAULT_CA_BUNDLE_PATH = Path("/etc/ssl/certs/ca-certificates.crt")
- 
- def __init__(
- self,
-diff --git a/setup.py b/setup.py
-index e811d2a..2eaf419 100644
 a/setup.py
-+++ b/setup.py
-@@ -55,7 +55,6 @@ setup(
- include_package_data=True,
- zip_safe=False,
- install_requires=[
--"certifi",
- "sniffio",
- "chardet==3.*",
- "rfc3986[idna2008]>=1.3,<2",
-diff --git a/tests/test_config.py b/tests/test_config.py
-index 5c68bad..a03c607 100644
 a/tests/test_config.py
-+++ b/tests/test_config.py
-@@ -3,7 +3,6 @@ import ssl
- import sys
- from pathlib import Path
- 
--import certifi
- import pytest
- 
- import httpx
-@@ -21,7 +20,7 @@ def test_load_ssl_config_verify_non_existing_path():
- 
- 
- def test_load_ssl_config_verify_existing_file():
--context = httpx.create_ssl_context(verify=certifi.where())
-+context = 
httpx.create_ssl_context(verify="/etc/ssl/certs/ca-certificates.crt")
- assert context.verify_mode == ssl.VerifyMode.CERT_REQUIRED
- assert context.check_hostname is True
- 
-@@ -44,7 +43,7 @@ def test_load_ssl_config_verify_env_file(
- 
- 
- def test_load_ssl_config_verify_directory():
--path = Path(certifi.where()).parent
-+path = Path("/etc/ssl/certs/ca-certificates.crt").parent
- context = httpx.create_ssl_context(verify=str(path))
- assert context.verify_mode == ssl.VerifyMode.CERT_REQUIRED
- assert context.check_hostname is True
--- 
-2.28.0
-

Copied: 
python-httpx/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
 (from rev 966713, 
python-httpx/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch)
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
(rev 0)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2021-06-22 03:04:44 UTC (rev 966714)
@@ -0,0 +1,87 @@
+From f2d28b9a35572134b336bcc6e347659cf0504be6 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Mon, 13 Jul 2020 11:29:54 -0400
+Subject: [PATCH] Do not override the system SSL certificates with the certifi
+ bundle.
+
+We need to respect the system certification policy, and by default the
+ssl module will use our packaged ca-certificates.
+
+ssl.create_default_context(cafile=None) is 

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

2021-06-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 22, 2021 @ 03:04:26
  Author: eschwartz
Revision: 966713

upgpkg: python-httpx 0.18.2-1: upstream release

Modified:
  
python-httpx/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
  python-httpx/trunk/PKGBUILD

-+
 0001-Do-not-override-the-system-SSL-certificates-with-the.patch |   18 
+-
 PKGBUILD|   12 +++---
 2 files changed, 15 insertions(+), 15 deletions(-)

Modified: 0001-Do-not-override-the-system-SSL-certificates-with-the.patch
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2021-06-22 03:04:05 UTC (rev 966712)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2021-06-22 03:04:26 UTC (rev 966713)
@@ -1,4 +1,4 @@
-From d03e57b75c2eb8a3696b6dd9a5f84aba4f01280c Mon Sep 17 00:00:00 2001
+From f2d28b9a35572134b336bcc6e347659cf0504be6 Mon Sep 17 00:00:00 2001
 From: Eli Schwartz 
 Date: Mon, 13 Jul 2020 11:29:54 -0400
 Subject: [PATCH] Do not override the system SSL certificates with the certifi
@@ -19,18 +19,18 @@
  3 files changed, 3 insertions(+), 7 deletions(-)
 
 diff --git a/httpx/_config.py b/httpx/_config.py
-index 8d589ea..ea256a8 100644
+index 9d29f9f..1ac64e1 100644
 --- a/httpx/_config.py
 +++ b/httpx/_config.py
-@@ -5,8 +5,6 @@ import warnings
+@@ -4,8 +4,6 @@ import typing
  from base64 import b64encode
  from pathlib import Path
  
 -import certifi
 -
+ from ._compat import set_minimum_tls_version_1_2
  from ._models import URL, Headers
  from ._types import CertTypes, HeaderTypes, TimeoutTypes, URLTypes, 
VerifyTypes
- from ._utils import get_ca_bundle_from_env, get_logger, warn_deprecated
 @@ -57,7 +55,7 @@ class SSLConfig:
  SSL Configuration.
  """
@@ -41,19 +41,19 @@
  def __init__(
  self,
 diff --git a/setup.py b/setup.py
-index e811d2a..2eaf419 100644
+index f3ada86..396d713 100644
 --- a/setup.py
 +++ b/setup.py
-@@ -55,7 +55,6 @@ setup(
+@@ -56,7 +56,6 @@ setup(
  include_package_data=True,
  zip_safe=False,
  install_requires=[
 -"certifi",
  "sniffio",
- "chardet==3.*",
  "rfc3986[idna2008]>=1.3,<2",
+ "httpcore>=0.13.3,<0.14.0",
 diff --git a/tests/test_config.py b/tests/test_config.py
-index 5c68bad..a03c607 100644
+index f218f8f..74ab743 100644
 --- a/tests/test_config.py
 +++ b/tests/test_config.py
 @@ -3,7 +3,6 @@ import ssl
@@ -83,5 +83,5 @@
  assert context.verify_mode == ssl.VerifyMode.CERT_REQUIRED
  assert context.check_hostname is True
 -- 
-2.28.0
+2.32.0
 

Modified: PKGBUILD
===
--- PKGBUILD2021-06-22 03:04:05 UTC (rev 966712)
+++ PKGBUILD2021-06-22 03:04:26 UTC (rev 966713)
@@ -2,7 +2,7 @@
 
 _pkgname=httpx
 pkgname=python-httpx
-pkgver=0.18.1
+pkgver=0.18.2
 pkgrel=1
 pkgdesc="A next generation HTTP client for Python"
 arch=('any')
@@ -11,13 +11,13 @@
 depends=('python-chardet' 'python-httpcore' 'python-idna' 'python-rfc3986' 
'python-sniffio')
 optdepends=('python-brotlicffi: for brotli response decompression')
 makedepends=('python-setuptools')
-checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 'python-brotlicffi' 
'python-h2' 'python-trustme' 'uvicorn')
+checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 
'python-typing_extensions' 'python-brotlicffi' 'python-h2' 'python-trustme' 
'uvicorn')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 "0001-Do-not-override-the-system-SSL-certificates-with-the.patch")
-sha512sums=('954b020d117dd1064262f3ac2d3137d01bba344b1a061e5713c3889283334d9ca92d9ed3d23f6ce79d684e31bae2d83fca6993178ef55e5a91353b812ad489e3'
-
'e4b1e33a77cdba4ac3d09b59bc4a0a176a7f5d97099d66a4876abcfd3889058e21beb8bfc375e8e7e61b3808d2a76119033e1a44602d8e6cd461ea3f88de')
-b2sums=('dcbfcb4a452b47b643d5114a535005f7f92170392202dedc6c152546430231d20fd8b94b7ecc1d2abacbc9d76acb14cbfdc268109b171cc40812504e696dcaab'
-
'e03d340cef44bfb322219030bbcbe53c1323c8b9d9d7aace07045e80faa185a7594839c9ff0fee9604a7fddf916db462f95a341d51f17072bce8e55d53055c7b')
+sha512sums=('727974e5d5924fdd653987dd4f528d27bb2653085b01ef5efcdac39dc92ef2ed586f872c202349aa31105ad970cff914de4315c2d79338a6aa18bebb8126f392'
+
'6c8f9e929f0b5bf24bd288c0ca75f2a97bda294df4ea48bb393d6e9116b515e0388c3a1131de87cfcf41a46af43d15529c0b0e6e0f1c4b05431b985c5f973d79')
+b2sums=('3d1e25d503ae5306150c157bc83afdac9a475110d042e041b58de448a0dcfd75de3f4c15836b838dc799cd5f8b7e0d646e43bbe107ffad87d51ff016afe585cd'
+
'7c226209cbea28e3a5360d61a70d9afc465f4f11ae48cb5bc9cc230bff25b320902070e0e0cb1fd55fc2f708b53665e7e247803c87a2ece6c5efa13ada3d8b76')
 
 prepare() {
 cd "${srcdir}"/${_pkgname}-${pkgver}


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

2021-06-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 22, 2021 @ 03:03:46
  Author: eschwartz
Revision: 966710

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-22 03:03:31 UTC (rev 966709)
+++ PKGBUILD2021-06-22 03:03:46 UTC (rev 966710)
@@ -1,46 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=httpcore
-pkgname=python-httpcore
-pkgver=0.13.3
-pkgrel=1
-pkgdesc="A minimal HTTP client"
-arch=('any')
-url="https://github.com/encode/${_pkgname};
-license=('BSD')
-depends=('python-h11' 'python-sniffio')
-optdepends=('python-h2: for HTTP/2 support')
-makedepends=('python-setuptools' 'python-h2')
-checkdepends=('hypercorn' 'python-anyio' 'python-curio' 'python-pproxy' 
'python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 'uvicorn')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('7ba6c2cb77c082bcdb8cdfad2bc17646ccc9348f49760150ec1070429f94913b2fb9eae6d3407b404581b48670b866bf11696453325dd70610bd700e94990450')
-b2sums=('afc43122a5502770b6efe7052846926e25fa678dcbd5c8ddbcd806df36dcf684d94df12571efaab0ff1b657fef14d5d71dd902be5cbec12c61db13004d7fe5a9')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# do not run coverage in unittests!
-sed -i '/^addopts/d' setup.cfg
-}
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# raise open files limits, many tests will fail otherwise
-ulimit -S -n 4096
-
-python -m pytest
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.md 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.md
-}

Copied: python-httpcore/repos/community-any/PKGBUILD (from rev 966709, 
python-httpcore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-22 03:03:46 UTC (rev 966710)
@@ -0,0 +1,46 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=httpcore
+pkgname=python-httpcore
+pkgver=0.13.6
+pkgrel=1
+pkgdesc="A minimal HTTP client"
+arch=('any')
+url="https://github.com/encode/${_pkgname};
+license=('BSD')
+depends=('python-anyio' 'python-h11' 'python-sniffio')
+optdepends=('python-h2: for HTTP/2 support')
+makedepends=('python-setuptools' 'python-h2')
+checkdepends=('hypercorn' 'python-curio' 'python-pproxy' 
'python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 'uvicorn')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('52b6189763755dbbd762ad26fef0107ad50949c1dd4865db788317ce981079cc095161e543f1a455ce84138b51f89806d8c55267378574feced107675f6cde47')
+b2sums=('6eadcaac626d4561dec2e41bdbde21836727f10870093890469e6b5a4af2aa276361044d08b5e25e3bf760092e5537edff9d0c99acb1ddf6ab0a17343bcd9af2')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# do not run coverage in unittests!
+sed -i '/^addopts/d' setup.cfg
+}
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# raise open files limits, many tests will fail otherwise
+ulimit -S -n 4096
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.md 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.md
+}


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

2021-06-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 22, 2021 @ 03:03:31
  Author: eschwartz
Revision: 966709

upgpkg: python-httpcore 0.13.6-1: upstream release

Modified:
  python-httpcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-22 03:03:02 UTC (rev 966708)
+++ PKGBUILD2021-06-22 03:03:31 UTC (rev 966709)
@@ -2,19 +2,19 @@
 
 _pkgname=httpcore
 pkgname=python-httpcore
-pkgver=0.13.3
+pkgver=0.13.6
 pkgrel=1
 pkgdesc="A minimal HTTP client"
 arch=('any')
 url="https://github.com/encode/${_pkgname};
 license=('BSD')
-depends=('python-h11' 'python-sniffio')
+depends=('python-anyio' 'python-h11' 'python-sniffio')
 optdepends=('python-h2: for HTTP/2 support')
 makedepends=('python-setuptools' 'python-h2')
-checkdepends=('hypercorn' 'python-anyio' 'python-curio' 'python-pproxy' 
'python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 'uvicorn')
+checkdepends=('hypercorn' 'python-curio' 'python-pproxy' 
'python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 'uvicorn')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('7ba6c2cb77c082bcdb8cdfad2bc17646ccc9348f49760150ec1070429f94913b2fb9eae6d3407b404581b48670b866bf11696453325dd70610bd700e94990450')
-b2sums=('afc43122a5502770b6efe7052846926e25fa678dcbd5c8ddbcd806df36dcf684d94df12571efaab0ff1b657fef14d5d71dd902be5cbec12c61db13004d7fe5a9')
+sha512sums=('52b6189763755dbbd762ad26fef0107ad50949c1dd4865db788317ce981079cc095161e543f1a455ce84138b51f89806d8c55267378574feced107675f6cde47')
+b2sums=('6eadcaac626d4561dec2e41bdbde21836727f10870093890469e6b5a4af2aa276361044d08b5e25e3bf760092e5537edff9d0c99acb1ddf6ab0a17343bcd9af2')
 
 prepare() {
 cd "${srcdir}"/${_pkgname}-${pkgver}


[arch-commits] Commit in (python-pytest-cache)

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 16:05:28
  Author: eschwartz
Revision: 964637

python-pytest-cache: purge from the repos, nothing uses it anymore

It was merged into pytest core in 2015 and I've just fixed every remaining
package that tried to depend on it.

Deleted:
  python-pytest-cache/


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 15:59:20
  Author: eschwartz
Revision: 964635

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 15:59:07 UTC (rev 964634)
+++ PKGBUILD2021-06-17 15:59:20 UTC (rev 964635)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-josepy
-pkgver=1.8.0
-pkgrel=1
-pkgdesc="JOSE protocol implementation in Python"
-url="https://github.com/certbot/josepy;
-license=('PerlArtistic')
-arch=('any')
-depends=('python-cryptography' 'python-pyopenssl' 'python-setuptools')
-checkdepends=('python-pytest-runner' 'python-coverage' 'python-pytest-isort' 
'python-pytest-cache'
-  'python-pytest-cov' 'flake8' 'python-pytest-flake8' 
'python-mock')
-source=("https://pypi.io/packages/source/j/josepy/josepy-$pkgver.tar.gz;)
-sha512sums=('50cdedfa4cf67055ae65dfeef2328ba7bb369fb8b763b425e4ca73108555c9cd04f12a644309c2f2e1db50e1d227be3bdbd00037e509d2b2d82565c213b81e4e')
-
-prepare() {
-  # https://github.com/certbot/josepy/issues/24
-  sed -i 's/flake8-ignore = E501/flake8-ignore = E501 W504/' 
josepy-$pkgver/pytest.ini
-}
-
-build() {
-  cd josepy-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd josepy-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd josepy-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-josepy/repos/community-any/PKGBUILD (from rev 964634, 
python-josepy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 15:59:20 UTC (rev 964635)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-josepy
+pkgver=1.8.0
+pkgrel=2
+pkgdesc="JOSE protocol implementation in Python"
+url="https://github.com/certbot/josepy;
+license=('PerlArtistic')
+arch=('any')
+depends=('python-cryptography' 'python-pyopenssl' 'python-setuptools')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/j/josepy/josepy-$pkgver.tar.gz;)
+sha512sums=('50cdedfa4cf67055ae65dfeef2328ba7bb369fb8b763b425e4ca73108555c9cd04f12a644309c2f2e1db50e1d227be3bdbd00037e509d2b2d82565c213b81e4e')
+
+prepare() {
+  # thou shalt not enforce coverage in distro packaging
+  # https://github.com/certbot/josepy/issues/34
+  rm josepy-$pkgver/pytest.ini
+}
+
+build() {
+  cd josepy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd josepy-$pkgver
+  python -m pytest
+}
+
+package() {
+  cd josepy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 15:59:07
  Author: eschwartz
Revision: 964634

upgpkg: python-josepy 1.8.0-2: tremendously simplify running tests without 
pointless dependencies

Modified:
  python-josepy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 15:31:59 UTC (rev 964633)
+++ PKGBUILD2021-06-17 15:59:07 UTC (rev 964634)
@@ -2,20 +2,20 @@
 
 pkgname=python-josepy
 pkgver=1.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="JOSE protocol implementation in Python"
 url="https://github.com/certbot/josepy;
 license=('PerlArtistic')
 arch=('any')
 depends=('python-cryptography' 'python-pyopenssl' 'python-setuptools')
-checkdepends=('python-pytest-runner' 'python-coverage' 'python-pytest-isort' 
'python-pytest-cache'
-  'python-pytest-cov' 'flake8' 'python-pytest-flake8' 
'python-mock')
+checkdepends=('python-pytest')
 source=("https://pypi.io/packages/source/j/josepy/josepy-$pkgver.tar.gz;)
 
sha512sums=('50cdedfa4cf67055ae65dfeef2328ba7bb369fb8b763b425e4ca73108555c9cd04f12a644309c2f2e1db50e1d227be3bdbd00037e509d2b2d82565c213b81e4e')
 
 prepare() {
-  # https://github.com/certbot/josepy/issues/24
-  sed -i 's/flake8-ignore = E501/flake8-ignore = E501 W504/' 
josepy-$pkgver/pytest.ini
+  # thou shalt not enforce coverage in distro packaging
+  # https://github.com/certbot/josepy/issues/34
+  rm josepy-$pkgver/pytest.ini
 }
 
 build() {
@@ -25,7 +25,7 @@
 
 check() {
   cd josepy-$pkgver
-  python setup.py pytest
+  python -m pytest
 }
 
 package() {


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 15:31:59
  Author: eschwartz
Revision: 964633

archrelease: copy trunk to community-any

Added:
  python-pytest-cov/repos/community-any/PKGBUILD
(from rev 964632, python-pytest-cov/trunk/PKGBUILD)
Deleted:
  python-pytest-cov/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 15:31:46 UTC (rev 964632)
+++ PKGBUILD2021-06-17 15:31:59 UTC (rev 964633)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sebastien LEDUC 
-# Contributor: Andrey Mikhaylenko 
-
-pkgbase=python-pytest-cov
-pkgname=python-pytest-cov
-pkgver=2.12.1
-pkgrel=2
-pkgdesc='py.test plugin for coverage reporting with support for both 
centralised and distributed testing, including subprocesses and multiprocessing'
-arch=('any')
-license=('MIT')
-url='https://github.com/schlamar/pytest-cov'
-depends=('python-pytest' 'python-coverage')
-makedepends=('python-setuptools')
-checkdepends=('python-virtualenv' 'python-process-tests'
-  'python-pytest-cache'
-  'python-pytest-xdist' 'python-fields')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-cov/archive/v$pkgver.tar.gz;)
-sha512sums=('a9893c81b7c5829c68b71e086719939c82622788fa471e2ab61f27cfb0efcc2008f09ec586ea06dba99ec1a6bf8789b8e3531c2ea8fa6435d7e45712b5cb9ea4')
-
-build() {
-  cd "$srcdir"/pytest-cov-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-cov-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD/tests"
 py.test || echo "Tests failed"
-}
-
-package_python-pytest-cov() {
-  cd pytest-cov-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-cov/repos/community-any/PKGBUILD (from rev 964632, 
python-pytest-cov/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 15:31:59 UTC (rev 964633)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Sebastien LEDUC 
+# Contributor: Andrey Mikhaylenko 
+
+pkgbase=python-pytest-cov
+pkgname=python-pytest-cov
+pkgver=2.12.1
+pkgrel=3
+pkgdesc='py.test plugin for coverage reporting with support for both 
centralised and distributed testing, including subprocesses and multiprocessing'
+arch=('any')
+license=('MIT')
+url='https://github.com/schlamar/pytest-cov'
+depends=('python-pytest' 'python-coverage')
+makedepends=('python-setuptools')
+checkdepends=('python-virtualenv' 'python-process-tests'
+  'python-pytest-xdist' 'python-fields')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-cov/archive/v$pkgver.tar.gz;)
+sha512sums=('a9893c81b7c5829c68b71e086719939c82622788fa471e2ab61f27cfb0efcc2008f09ec586ea06dba99ec1a6bf8789b8e3531c2ea8fa6435d7e45712b5cb9ea4')
+
+build() {
+  cd "$srcdir"/pytest-cov-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-cov-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD/tests"
 py.test || echo "Tests failed"
+}
+
+package_python-pytest-cov() {
+  cd pytest-cov-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 15:31:46
  Author: eschwartz
Revision: 964632

upgpkg: python-pytest-cov 2.12.1-3: drop deprecated and no longer needed 
checkdepends now built into pytest

Modified:
  python-pytest-cov/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 15:21:11 UTC (rev 964631)
+++ PKGBUILD2021-06-17 15:31:46 UTC (rev 964632)
@@ -5,7 +5,7 @@
 pkgbase=python-pytest-cov
 pkgname=python-pytest-cov
 pkgver=2.12.1
-pkgrel=2
+pkgrel=3
 pkgdesc='py.test plugin for coverage reporting with support for both 
centralised and distributed testing, including subprocesses and multiprocessing'
 arch=('any')
 license=('MIT')
@@ -13,7 +13,6 @@
 depends=('python-pytest' 'python-coverage')
 makedepends=('python-setuptools')
 checkdepends=('python-virtualenv' 'python-process-tests'
-  'python-pytest-cache'
   'python-pytest-xdist' 'python-fields')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-cov/archive/v$pkgver.tar.gz;)
 
sha512sums=('a9893c81b7c5829c68b71e086719939c82622788fa471e2ab61f27cfb0efcc2008f09ec586ea06dba99ec1a6bf8789b8e3531c2ea8fa6435d7e45712b5cb9ea4')


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 15:21:11
  Author: eschwartz
Revision: 964631

archrelease: copy trunk to community-any

Added:
  python-pytest-isort/repos/community-any/PKGBUILD
(from rev 964630, python-pytest-isort/trunk/PKGBUILD)
Deleted:
  python-pytest-isort/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 15:20:57 UTC (rev 964630)
+++ PKGBUILD2021-06-17 15:21:11 UTC (rev 964631)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-isort
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='pytest plugin to perform isort checks (import ordering)'
-arch=('any')
-license=('BSD')
-url='https://github.com/moccu/pytest-isort'
-depends=('python-pytest-cache' 'python-isort')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/moccu/pytest-isort/archive/$pkgver.tar.gz;)
-sha512sums=('b338bf0de7e98be330c1ee391e0b1aaae363efbcfd89f14138704ad6d0c29a4d7a0b27e17251148dc26d04aae39184e0c5a465f3091769cf1b4043f6faf3c653')
-
-build() {
-  cd pytest-isort-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd pytest-isort-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
py.test
-}
-
-package() {
-  cd pytest-isort-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.rst 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-isort/repos/community-any/PKGBUILD (from rev 964630, 
python-pytest-isort/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 15:21:11 UTC (rev 964631)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-isort
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='pytest plugin to perform isort checks (import ordering)'
+arch=('any')
+license=('BSD')
+url='https://github.com/moccu/pytest-isort'
+depends=('python-pytest' 'python-isort')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/moccu/pytest-isort/archive/$pkgver.tar.gz;)
+sha512sums=('b338bf0de7e98be330c1ee391e0b1aaae363efbcfd89f14138704ad6d0c29a4d7a0b27e17251148dc26d04aae39184e0c5a465f3091769cf1b4043f6faf3c653')
+
+build() {
+  cd pytest-isort-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd pytest-isort-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
py.test
+}
+
+package() {
+  cd pytest-isort-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.rst 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 15:20:57
  Author: eschwartz
Revision: 964630

upgpkg: python-pytest-isort 2.0.0-2: drop pytest-cache dependency not needed 
since 0.2.1

Modified:
  python-pytest-isort/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 15:00:05 UTC (rev 964629)
+++ PKGBUILD2021-06-17 15:20:57 UTC (rev 964630)
@@ -2,12 +2,12 @@
 
 pkgname=python-pytest-isort
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='pytest plugin to perform isort checks (import ordering)'
 arch=('any')
 license=('BSD')
 url='https://github.com/moccu/pytest-isort'
-depends=('python-pytest-cache' 'python-isort')
+depends=('python-pytest' 'python-isort')
 makedepends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/moccu/pytest-isort/archive/$pkgver.tar.gz;)
 
sha512sums=('b338bf0de7e98be330c1ee391e0b1aaae363efbcfd89f14138704ad6d0c29a4d7a0b27e17251148dc26d04aae39184e0c5a465f3091769cf1b4043f6faf3c653')


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 15:00:05
  Author: eschwartz
Revision: 964629

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 14:59:50 UTC (rev 964628)
+++ PKGBUILD2021-06-17 15:00:05 UTC (rev 964629)
@@ -1,53 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-characteristic
-pkgname=('python-characteristic' 'python2-characteristic')
-pkgver=14.3.0
-pkgrel=11
-pkgdesc="Python attributes without boilerplate."
-arch=('any')
-license=('MIT')
-url="https://pypi.python.org/pypi/characteristic;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("https://files.pythonhosted.org/packages/source/c/characteristic/characteristic-$pkgver.tar.gz"{,.asc})
-md5sums=('b249368dd021fde1c06b4802867c0913'
- 'SKIP')
-validpgpkeys=('C2A04F86ACE28ADCF817DBB7AE2536227F69F181') # Hynek Schlawack 

-
-prepare() {
-  sed -i 's/\[pytest\]/[tool:pytest]/' characteristic-$pkgver/setup.cfg
-  cp -a characteristic-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/characteristic-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/characteristic-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/characteristic-$pkgver
-  python setup.py test
-
-  cd "$srcdir"/characteristic-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-characteristic() {
-  depends=('python')
-
-  cd characteristic-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-characteristic() {
-  depends=('python2')
-
-  cd characteristic-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-characteristic/repos/community-any/PKGBUILD (from rev 964628, 
python-characteristic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 15:00:05 UTC (rev 964629)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-characteristic
+pkgver=14.3.0
+pkgrel=12
+pkgdesc="Python attributes without boilerplate."
+arch=('any')
+license=('MIT')
+url="https://pypi.python.org/pypi/characteristic;
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("https://files.pythonhosted.org/packages/source/c/characteristic/characteristic-$pkgver.tar.gz"{,.asc})
+md5sums=('b249368dd021fde1c06b4802867c0913'
+ 'SKIP')
+validpgpkeys=('C2A04F86ACE28ADCF817DBB7AE2536227F69F181') # Hynek Schlawack 

+
+prepare() {
+  sed -i 's/\[pytest\]/[tool:pytest]/' characteristic-$pkgver/setup.cfg
+}
+
+build() {
+  cd "$srcdir"/characteristic-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/characteristic-$pkgver
+  python setup.py test
+}
+
+package_python-characteristic() {
+  cd characteristic-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 14:59:50
  Author: eschwartz
Revision: 964628

upgpkg: python-characteristic 14.3.0-12: drop no-longer-needed python2 split 
package

Modified:
  python-characteristic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 14:50:18 UTC (rev 964627)
+++ PKGBUILD2021-06-17 14:59:50 UTC (rev 964628)
@@ -1,15 +1,15 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-characteristic
-pkgname=('python-characteristic' 'python2-characteristic')
+pkgname=python-characteristic
 pkgver=14.3.0
-pkgrel=11
+pkgrel=12
 pkgdesc="Python attributes without boilerplate."
 arch=('any')
 license=('MIT')
 url="https://pypi.python.org/pypi/characteristic;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
 
source=("https://files.pythonhosted.org/packages/source/c/characteristic/characteristic-$pkgver.tar.gz"{,.asc})
 md5sums=('b249368dd021fde1c06b4802867c0913'
  'SKIP')
@@ -17,37 +17,20 @@
 
 prepare() {
   sed -i 's/\[pytest\]/[tool:pytest]/' characteristic-$pkgver/setup.cfg
-  cp -a characteristic-$pkgver{,-py2}
 }
 
 build() {
   cd "$srcdir"/characteristic-$pkgver
   python setup.py build
-
-  cd "$srcdir"/characteristic-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/characteristic-$pkgver
   python setup.py test
-
-  cd "$srcdir"/characteristic-$pkgver-py2
-  python2 setup.py test
 }
 
 package_python-characteristic() {
-  depends=('python')
-
   cd characteristic-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
-
-package_python2-characteristic() {
-  depends=('python2')
-
-  cd characteristic-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 14:50:18
  Author: eschwartz
Revision: 964627

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 14:50:02 UTC (rev 964626)
+++ PKGBUILD2021-06-17 14:50:18 UTC (rev 964627)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-fields
-pkgname=('python-fields' 'python2-fields')
-pkgver=5.0.0
-pkgrel=9
-arch=('any')
-pkgdesc='A totally different take on container boilerplate'
-url='https://github.com/ionelmc/python-fields'
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-attrs' 'python2-attrs'
-  'python-characteristic' 'python2-characteristic')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/python-fields/archive/v$pkgver.tar.gz;)
-sha512sums=('feaba23b98271936d6dae20b1001978483c0fe89ccf217637fac536ae5814c2c02bac1c3ddc2a86dc0d2419a3b3658871018c0ea4b7905e1c2649aa905b8e5a3')
-
-prepare() {
-  sed -i 's/\[pytest\]/[tool:pytest]/;s/--benchmark-disable//' 
python-fields-$pkgver/setup.cfg 
-  cp -a python-fields-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-fields-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-fields-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-fields-$pkgver
-  python -m pytest --deselect tests/test_perf.py
-
-  cd "$srcdir"/python-fields-$pkgver-py2
-  python2 -m pytest --deselect tests/test_perf.py
-}
-
-package_python-fields() {
-  depends=('python')
-
-  cd python-fields-$pkgver
-  python setup.py install --root "$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-fields() {
-  depends=('python2')
-
-  cd python-fields-$pkgver-py2
-  python2 setup.py install --root "$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-fields/repos/community-any/PKGBUILD (from rev 964626, 
python-fields/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 14:50:18 UTC (rev 964627)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-fields
+pkgname=python-fields
+pkgver=5.0.0
+pkgrel=10
+arch=('any')
+pkgdesc='A totally different take on container boilerplate'
+url='https://github.com/ionelmc/python-fields'
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-attrs' 'python-characteristic')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/python-fields/archive/v$pkgver.tar.gz;)
+sha512sums=('feaba23b98271936d6dae20b1001978483c0fe89ccf217637fac536ae5814c2c02bac1c3ddc2a86dc0d2419a3b3658871018c0ea4b7905e1c2649aa905b8e5a3')
+
+prepare() {
+  sed -i 's/\[pytest\]/[tool:pytest]/;s/--benchmark-disable//' 
python-fields-$pkgver/setup.cfg
+}
+
+build() {
+  cd "$srcdir"/python-fields-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-fields-$pkgver
+  python -m pytest --deselect tests/test_perf.py
+}
+
+package_python-fields() {
+  cd python-fields-$pkgver
+  python setup.py install --root "$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 14:50:02
  Author: eschwartz
Revision: 964626

upgpkg: python-fields 5.0.0-10: drop no-longer-needed python2 split package

Modified:
  python-fields/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 14:19:43 UTC (rev 964625)
+++ PKGBUILD2021-06-17 14:50:02 UTC (rev 964626)
@@ -1,52 +1,35 @@
 # Maintainer: Felix Yan 
 
 pkgbase=python-fields
-pkgname=('python-fields' 'python2-fields')
+pkgname=python-fields
 pkgver=5.0.0
-pkgrel=9
+pkgrel=10
 arch=('any')
 pkgdesc='A totally different take on container boilerplate'
 url='https://github.com/ionelmc/python-fields'
 license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-attrs' 'python2-attrs'
-  'python-characteristic' 'python2-characteristic')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-attrs' 'python-characteristic')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/python-fields/archive/v$pkgver.tar.gz;)
 
sha512sums=('feaba23b98271936d6dae20b1001978483c0fe89ccf217637fac536ae5814c2c02bac1c3ddc2a86dc0d2419a3b3658871018c0ea4b7905e1c2649aa905b8e5a3')
 
 prepare() {
-  sed -i 's/\[pytest\]/[tool:pytest]/;s/--benchmark-disable//' 
python-fields-$pkgver/setup.cfg 
-  cp -a python-fields-$pkgver{,-py2}
+  sed -i 's/\[pytest\]/[tool:pytest]/;s/--benchmark-disable//' 
python-fields-$pkgver/setup.cfg
 }
 
 build() {
   cd "$srcdir"/python-fields-$pkgver
   python setup.py build
-
-  cd "$srcdir"/python-fields-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/python-fields-$pkgver
   python -m pytest --deselect tests/test_perf.py
-
-  cd "$srcdir"/python-fields-$pkgver-py2
-  python2 -m pytest --deselect tests/test_perf.py
 }
 
 package_python-fields() {
-  depends=('python')
-
   cd python-fields-$pkgver
   python setup.py install --root "$pkgdir" --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-fields() {
-  depends=('python2')
-
-  cd python-fields-$pkgver-py2
-  python2 setup.py install --root "$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 14:19:43
  Author: eschwartz
Revision: 964625

archrelease: copy trunk to community-any

Added:
  python-process-tests/repos/community-any/PKGBUILD
(from rev 964624, python-process-tests/trunk/PKGBUILD)
Deleted:
  python-process-tests/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 14:19:28 UTC (rev 964624)
+++ PKGBUILD2021-06-17 14:19:43 UTC (rev 964625)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-process-tests
-pkgname=('python-process-tests' 'python2-process-tests')
-pkgver=2.1.2
-pkgrel=1
-pkgdesc="Tools for testing processes"
-arch=('any')
-url="https://pypi.python.org/pypi/process-tests;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.io/packages/source/p/process-tests/process-tests-$pkgver.tar.gz;)
-sha512sums=('56a76d8467312de34413994e663eb63378ff179720b883037735eae9d8f23a5cc0ea32d4a9a2f9041af417b5ada07b7948fd481e3d5b2cb43db3c19183f6b263')
-
-prepare() {
-  cp -a process-tests-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/process-tests-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/process-tests-$pkgver-py2
-  python2 setup.py build
-}
-
-package_python-process-tests() {
-  depends=('python')
-
-  cd process-tests-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-process-tests() {
-  depends=('python2')
-
-  cd process-tests-$pkgver
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-process-tests/repos/community-any/PKGBUILD (from rev 964624, 
python-process-tests/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 14:19:43 UTC (rev 964625)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-process-tests
+pkgver=2.1.2
+pkgrel=2
+pkgdesc="Tools for testing processes"
+arch=('any')
+url="https://pypi.python.org/pypi/process-tests;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/p/process-tests/process-tests-$pkgver.tar.gz;)
+sha512sums=('56a76d8467312de34413994e663eb63378ff179720b883037735eae9d8f23a5cc0ea32d4a9a2f9041af417b5ada07b7948fd481e3d5b2cb43db3c19183f6b263')
+
+build() {
+  cd "$srcdir"/process-tests-$pkgver
+  python setup.py build
+}
+
+# "project skel" sets up pytest but there are zero tests to run
+# (and pytest therefore exits 5)
+
+package_python-process-tests() {
+  cd process-tests-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 14:19:28
  Author: eschwartz
Revision: 964624

upgpkg: python-process-tests 2.1.2-2: drop no-longer-needed python2 split 
package

Modified:
  python-process-tests/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 13:45:45 UTC (rev 964623)
+++ PKGBUILD2021-06-17 14:19:28 UTC (rev 964624)
@@ -1,43 +1,29 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-process-tests
-pkgname=('python-process-tests' 'python2-process-tests')
+pkgname=python-process-tests
 pkgver=2.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Tools for testing processes"
 arch=('any')
 url="https://pypi.python.org/pypi/process-tests;
 license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 
source=("https://pypi.io/packages/source/p/process-tests/process-tests-$pkgver.tar.gz;)
 
sha512sums=('56a76d8467312de34413994e663eb63378ff179720b883037735eae9d8f23a5cc0ea32d4a9a2f9041af417b5ada07b7948fd481e3d5b2cb43db3c19183f6b263')
 
-prepare() {
-  cp -a process-tests-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/process-tests-$pkgver
   python setup.py build
-
-  cd "$srcdir"/process-tests-$pkgver-py2
-  python2 setup.py build
 }
 
+# "project skel" sets up pytest but there are zero tests to run
+# (and pytest therefore exits 5)
+
 package_python-process-tests() {
-  depends=('python')
-
   cd process-tests-$pkgver
   python setup.py install --root="$pkgdir/" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
-package_python2-process-tests() {
-  depends=('python2')
-
-  cd process-tests-$pkgver
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
 # vim:set ts=2 sw=2 et:


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 13:45:45
  Author: eschwartz
Revision: 964623

archrelease: copy trunk to community-any

Added:
  python-pytest-cov/repos/community-any/PKGBUILD
(from rev 964622, python-pytest-cov/trunk/PKGBUILD)
Deleted:
  python-pytest-cov/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 13:45:31 UTC (rev 964622)
+++ PKGBUILD2021-06-17 13:45:45 UTC (rev 964623)
@@ -1,58 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sebastien LEDUC 
-# Contributor: Andrey Mikhaylenko 
-
-pkgbase=python-pytest-cov
-pkgname=('python-pytest-cov' 'python2-pytest-cov')
-pkgver=2.12.1
-pkgrel=1
-pkgdesc='py.test plugin for coverage reporting with support for both 
centralised and distributed testing, including subprocesses and multiprocessing'
-arch=('any')
-license=('MIT')
-url='https://github.com/schlamar/pytest-cov'
-makedepends=('python-coverage' 'python2-coverage' 'python-setuptools' 
'python2-setuptools'
- 'python-pytest' 'python2-pytest')
-checkdepends=('python-virtualenv' 'python2-virtualenv' 'python-process-tests'
-  'python2-process-tests' 'python-pytest-cache' 
'python2-pytest-cache'
-  'python-pytest-xdist' 'python2-pytest-xdist' 'python-fields' 
'python2-fields')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-cov/archive/v$pkgver.tar.gz;)
-sha512sums=('a9893c81b7c5829c68b71e086719939c82622788fa471e2ab61f27cfb0efcc2008f09ec586ea06dba99ec1a6bf8789b8e3531c2ea8fa6435d7e45712b5cb9ea4')
-
-prepare() {
-  cp -a pytest-cov-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest-cov-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-cov-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-cov-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD/tests"
 py.test || echo "Tests failed"
-
-  cd "$srcdir"/pytest-cov-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD/tests"
 py.test2 || echo "Tests failed"
-}
-
-package_python-pytest-cov() {
-  depends=('python-pytest' 'python-coverage')
-
-  cd pytest-cov-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pytest-cov() {
-  depends=('python2-pytest' 'python2-coverage')
-
-  cd pytest-cov-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-cov/repos/community-any/PKGBUILD (from rev 964622, 
python-pytest-cov/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 13:45:45 UTC (rev 964623)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Sebastien LEDUC 
+# Contributor: Andrey Mikhaylenko 
+
+pkgbase=python-pytest-cov
+pkgname=python-pytest-cov
+pkgver=2.12.1
+pkgrel=2
+pkgdesc='py.test plugin for coverage reporting with support for both 
centralised and distributed testing, including subprocesses and multiprocessing'
+arch=('any')
+license=('MIT')
+url='https://github.com/schlamar/pytest-cov'
+depends=('python-pytest' 'python-coverage')
+makedepends=('python-setuptools')
+checkdepends=('python-virtualenv' 'python-process-tests'
+  'python-pytest-cache'
+  'python-pytest-xdist' 'python-fields')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-cov/archive/v$pkgver.tar.gz;)
+sha512sums=('a9893c81b7c5829c68b71e086719939c82622788fa471e2ab61f27cfb0efcc2008f09ec586ea06dba99ec1a6bf8789b8e3531c2ea8fa6435d7e45712b5cb9ea4')
+
+build() {
+  cd "$srcdir"/pytest-cov-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-cov-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD/tests"
 py.test || echo "Tests failed"
+}
+
+package_python-pytest-cov() {
+  cd pytest-cov-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 13:45:31
  Author: eschwartz
Revision: 964622

upgpkg: python-pytest-cov 2.12.1-2: drop unneeded python2 split package

Modified:
  python-pytest-cov/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 13:35:14 UTC (rev 964621)
+++ PKGBUILD2021-06-17 13:45:31 UTC (rev 964622)
@@ -3,31 +3,24 @@
 # Contributor: Andrey Mikhaylenko 
 
 pkgbase=python-pytest-cov
-pkgname=('python-pytest-cov' 'python2-pytest-cov')
+pkgname=python-pytest-cov
 pkgver=2.12.1
-pkgrel=1
+pkgrel=2
 pkgdesc='py.test plugin for coverage reporting with support for both 
centralised and distributed testing, including subprocesses and multiprocessing'
 arch=('any')
 license=('MIT')
 url='https://github.com/schlamar/pytest-cov'
-makedepends=('python-coverage' 'python2-coverage' 'python-setuptools' 
'python2-setuptools'
- 'python-pytest' 'python2-pytest')
-checkdepends=('python-virtualenv' 'python2-virtualenv' 'python-process-tests'
-  'python2-process-tests' 'python-pytest-cache' 
'python2-pytest-cache'
-  'python-pytest-xdist' 'python2-pytest-xdist' 'python-fields' 
'python2-fields')
+depends=('python-pytest' 'python-coverage')
+makedepends=('python-setuptools')
+checkdepends=('python-virtualenv' 'python-process-tests'
+  'python-pytest-cache'
+  'python-pytest-xdist' 'python-fields')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-cov/archive/v$pkgver.tar.gz;)
 
sha512sums=('a9893c81b7c5829c68b71e086719939c82622788fa471e2ab61f27cfb0efcc2008f09ec586ea06dba99ec1a6bf8789b8e3531c2ea8fa6435d7e45712b5cb9ea4')
 
-prepare() {
-  cp -a pytest-cov-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/pytest-cov-$pkgver
   python setup.py build
-
-  cd "$srcdir"/pytest-cov-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
@@ -36,23 +29,11 @@
   cd "$srcdir"/pytest-cov-$pkgver
   python setup.py install --root="$PWD/tmp_install" --optimize=1
   
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD/tests"
 py.test || echo "Tests failed"
-
-  cd "$srcdir"/pytest-cov-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD/tests"
 py.test2 || echo "Tests failed"
 }
 
 package_python-pytest-cov() {
-  depends=('python-pytest' 'python-coverage')
-
   cd pytest-cov-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
 
-package_python2-pytest-cov() {
-  depends=('python2-pytest' 'python2-coverage')
-
-  cd pytest-cov-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
 # vim:set ts=2 sw=2 et:


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 13:35:14
  Author: eschwartz
Revision: 964621

archrelease: copy trunk to community-any

Added:
  python-pytest-timeout/repos/community-any/PKGBUILD
(from rev 964620, python-pytest-timeout/trunk/PKGBUILD)
Deleted:
  python-pytest-timeout/repos/community-any/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 13:35:00 UTC (rev 964620)
+++ PKGBUILD2021-06-17 13:35:14 UTC (rev 964621)
@@ -1,56 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-timeout
-pkgname=('python-pytest-timeout' 'python2-pytest-timeout')
-pkgver=1.4.2
-pkgrel=3
-pkgdesc='py.test plugin to abort hanging tests'
-arch=('any')
-license=('MIT')
-url='https://bitbucket.org/pytest-dev/pytest-timeout'
-makedepends=('python-setuptools' 'python-pytest' 'python2-pytest')
-checkdepends=('python-pexpect' 'python2-pexpect' 'python-pytest-cov' 
'python2-pytest-cov')
-source=("https://github.com/pytest-dev/pytest-timeout/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('062ce6c832a7139874ad8f165818c2a7d9cef4a2fe2c53a6c37d4f0a060cf920204f1d2d255e4d31953c0da268e708c1d305f362cd6d0ea103bc101ffb51b098')
-
-prepare() {
-  cp -a pytest-timeout-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest-timeout-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-timeout-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-timeout-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
py.test
-
-  cd "$srcdir"/pytest-timeout-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
-}
-
-package_python-pytest-timeout() {
-  depends=('python-pytest')
-
-  cd pytest-timeout-$pkgver
-  python setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pytest-timeout() {
-  depends=('python2-pytest')
-
-  cd pytest-timeout-$pkgver-py2
-  python2 setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-timeout/repos/community-any/PKGBUILD (from rev 964620, 
python-pytest-timeout/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 13:35:14 UTC (rev 964621)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-timeout
+pkgname=('python-pytest-timeout' 'python2-pytest-timeout')
+pkgver=1.4.2
+pkgrel=4
+pkgdesc='py.test plugin to abort hanging tests'
+arch=('any')
+license=('MIT')
+url='https://bitbucket.org/pytest-dev/pytest-timeout'
+makedepends=('python-setuptools' 'python-pytest' 'python2-setuptools' 
'python2-pytest')
+checkdepends=('python-pexpect' 'python2-pexpect' 'python-pytest-cov')
+source=("https://github.com/pytest-dev/pytest-timeout/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('062ce6c832a7139874ad8f165818c2a7d9cef4a2fe2c53a6c37d4f0a060cf920204f1d2d255e4d31953c0da268e708c1d305f362cd6d0ea103bc101ffb51b098')
+
+prepare() {
+  cp -a pytest-timeout-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-timeout-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-timeout-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-timeout-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-timeout-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 -k 'not cov'
+}
+
+package_python-pytest-timeout() {
+  depends=('python-pytest')
+
+  cd pytest-timeout-$pkgver
+  python setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-timeout() {
+  depends=('python2-pytest')
+
+  cd pytest-timeout-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-06-17 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 13:35:00
  Author: eschwartz
Revision: 964620

upgpkg: python-pytest-timeout 1.4.2-4

Don't test pytest-cov interactions on python2. We don't intend to officially
support python2-pytest-cov anyway, and this is the last reverse dependency so
after this we can just remove python2-pytest-cov from the repos.

Modified:
  python-pytest-timeout/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 13:27:23 UTC (rev 964619)
+++ PKGBUILD2021-06-17 13:35:00 UTC (rev 964620)
@@ -3,13 +3,13 @@
 pkgbase=python-pytest-timeout
 pkgname=('python-pytest-timeout' 'python2-pytest-timeout')
 pkgver=1.4.2
-pkgrel=3
+pkgrel=4
 pkgdesc='py.test plugin to abort hanging tests'
 arch=('any')
 license=('MIT')
 url='https://bitbucket.org/pytest-dev/pytest-timeout'
-makedepends=('python-setuptools' 'python-pytest' 'python2-pytest')
-checkdepends=('python-pexpect' 'python2-pexpect' 'python-pytest-cov' 
'python2-pytest-cov')
+makedepends=('python-setuptools' 'python-pytest' 'python2-setuptools' 
'python2-pytest')
+checkdepends=('python-pexpect' 'python2-pexpect' 'python-pytest-cov')
 
source=("https://github.com/pytest-dev/pytest-timeout/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('062ce6c832a7139874ad8f165818c2a7d9cef4a2fe2c53a6c37d4f0a060cf920204f1d2d255e4d31953c0da268e708c1d305f362cd6d0ea103bc101ffb51b098')
 
@@ -34,7 +34,7 @@
 
   cd "$srcdir"/pytest-timeout-$pkgver-py2
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 -k 'not cov'
 }
 
 package_python-pytest-timeout() {


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 04:24:40
  Author: eschwartz
Revision: 964563

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 04:24:27 UTC (rev 964562)
+++ PKGBUILD2021-06-17 04:24:40 UTC (rev 964563)
@@ -1,67 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=flit
-pkgbase=python-$_pkgname
-pkgname=($pkgbase{,-core})
-pkgver=3.2.0
-pkgrel=1
-pkgdesc='Simplified packaging of Python modules'
-arch=('any')
-url='https://github.com/takluyver/flit'
-license=('BSD')
-depends=('python')
-makedepends=('python-setuptools' 'python-dephell'
- 'python-requests' 'python-docutils' 'python-pytoml')
- #'python-build' 'python-install' 'python-pyproject2setuppy'
-checkdepends=('python-pytest-runner' 'python-pytest-cov' 'python-testpath' 
'python-responses')
-source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('b40768fb4b0b2a2e3116ac790dfa629da5a57cda34b10abb8ce6a8febcc3436795d5122dcfa3db2c6d07d493f00391d2ca7300112561c8ff2a0b04d77c879662')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  dephell deps convert --from pyproject.toml --to setup.py
-
-  cd flit_core
-
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-
-  cd flit_core
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python setup.py pytest
-}
-
-package_python-flit() {
-  depends+=('python-flit-core' 'python-requests' 'python-docutils' 
'python-pytoml')
-  provides=($_pkgname)
-  conflicts=($_pkgname)
-
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  cp -a flit/license_templates "$pkgdir"/usr/lib/python3.9/site-packages/flit/
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-flit-core() {
-  pkgdesc+=' (core backend)'
-
-  cd $_pkgname-$pkgver/flit_core
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-flit/repos/community-any/PKGBUILD (from rev 964562, 
python-flit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 04:24:40 UTC (rev 964563)
@@ -0,0 +1,68 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Eli Schwartz 
+
+_pkgname=flit
+pkgbase=python-$_pkgname
+pkgname=($pkgbase{,-core})
+pkgver=3.2.0
+pkgrel=2
+pkgdesc='Simplified packaging of Python modules'
+arch=('any')
+url='https://github.com/takluyver/flit'
+license=('BSD')
+depends=('python' 'python-toml')
+makedepends=('python-setuptools' 'python-dephell'
+ 'python-requests' 'python-docutils')
+ #'python-build' 'python-install' 'python-pyproject2setuppy'
+checkdepends=('python-pytest' 'python-testpath' 'python-responses')
+source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('b40768fb4b0b2a2e3116ac790dfa629da5a57cda34b10abb8ce6a8febcc3436795d5122dcfa3db2c6d07d493f00391d2ca7300112561c8ff2a0b04d77c879662')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  dephell deps convert --from pyproject.toml --to setup.py
+
+  cd flit_core
+
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+
+  cd flit_core
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=flit_core python -m pytest
+}
+
+package_python-flit() {
+  depends+=('python-flit-core' 'python-requests' 'python-docutils')
+  provides=($_pkgname)
+  conflicts=($_pkgname)
+
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  cp -a flit/license_templates "$pkgdir"/usr/lib/python3.9/site-packages/flit/
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-flit-core() {
+  pkgdesc+=' (core backend)'
+
+  cd $_pkgname-$pkgver/flit_core
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 04:24:27
  Author: eschwartz
Revision: 964562

upgpkg: python-flit 3.2.0-2:

Fix up dependencies on toml; upstream migrated from pytoml to toml, and it's
used in flit_core too.

Also make the tests run using pytest on its own. Gets rid of pytest-cov, which
should never ever be used in packaging. :p

Modified:
  python-flit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 01:04:58 UTC (rev 964561)
+++ PKGBUILD2021-06-17 04:24:27 UTC (rev 964562)
@@ -1,19 +1,20 @@
 # Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Eli Schwartz 
 
 _pkgname=flit
 pkgbase=python-$_pkgname
 pkgname=($pkgbase{,-core})
 pkgver=3.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Simplified packaging of Python modules'
 arch=('any')
 url='https://github.com/takluyver/flit'
 license=('BSD')
-depends=('python')
+depends=('python' 'python-toml')
 makedepends=('python-setuptools' 'python-dephell'
- 'python-requests' 'python-docutils' 'python-pytoml')
+ 'python-requests' 'python-docutils')
  #'python-build' 'python-install' 'python-pyproject2setuppy'
-checkdepends=('python-pytest-runner' 'python-pytest-cov' 'python-testpath' 
'python-responses')
+checkdepends=('python-pytest' 'python-testpath' 'python-responses')
 source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
 
sha512sums=('b40768fb4b0b2a2e3116ac790dfa629da5a57cda34b10abb8ce6a8febcc3436795d5122dcfa3db2c6d07d493f00391d2ca7300112561c8ff2a0b04d77c879662')
 
@@ -40,11 +41,11 @@
 check() {
   cd $_pkgname-$pkgver
 
-  python setup.py pytest
+  PYTHONPATH=flit_core python -m pytest
 }
 
 package_python-flit() {
-  depends+=('python-flit-core' 'python-requests' 'python-docutils' 
'python-pytoml')
+  depends+=('python-flit-core' 'python-requests' 'python-docutils')
   provides=($_pkgname)
   conflicts=($_pkgname)
 


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 00:32:52
  Author: eschwartz
Revision: 964493

archrelease: copy trunk to community-x86_64

Added:
  muffin/repos/community-x86_64/PKGBUILD
(from rev 964492, muffin/trunk/PKGBUILD)
Deleted:
  muffin/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 00:32:35 UTC (rev 964492)
+++ PKGBUILD2021-06-17 00:32:52 UTC (rev 964493)
@@ -1,58 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Adam Hani Schakaki 
-# Contributor: Ner0
-
-pkgname=muffin
-pkgver=5.0.0
-pkgrel=1
-pkgdesc="Cinnamon window manager based on Mutter"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'gobject-introspection-runtime' 'libcanberra' 
'libinput'
- 'libsm' 'libxkbcommon-x11' 'startup-notification' 'zenity')
-makedepends=('intltool' 'gobject-introspection' 'gtk-doc')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5b47334777b78e3d791a5fd956ca2c978819943d7c5cfd353bef1fac8c22783c')
-b2sums=('50499ad7a8b4a3ea56bf0d06b4f25b4f78d00721d58991fc1c4c174370862560e63ebf0eba32118e8c3a3537c3a98de65f4ee0ea8230130c3e36ad8fa814f2ee')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# thou shalt not -Werror
-sed -i 's/--warn-error//g' src/Makefile.am
-
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/muffin \
---localstatedir=/var \
---disable-gtk-doc \
---disable-static \
---disable-schemas-compile \
---enable-compile-warnings=minimum
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool clutter/libtool 
cogl/libtool
-
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-# Remove unused stuff
-make -C src DESTDIR="${pkgdir}" uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
-make -C src/tools DESTDIR="${pkgdir}" uninstall
-make -C src/compositor/plugins DESTDIR="${pkgdir}" uninstall
-make -C doc/man DESTDIR="${pkgdir}" uninstall
-}

Copied: muffin/repos/community-x86_64/PKGBUILD (from rev 964492, 
muffin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 00:32:52 UTC (rev 964493)
@@ -0,0 +1,58 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Adam Hani Schakaki 
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="Cinnamon window manager based on Mutter"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'gobject-introspection-runtime' 'libcanberra' 
'libinput'
+ 'libsm' 'libxkbcommon-x11' 'startup-notification' 'zenity')
+makedepends=('intltool' 'gobject-introspection' 'gtk-doc')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('6c78aaabcb5a0cf2e2b75a380ef4481c5b1ddb910faeae6e137f7356d1ac4b83')
+b2sums=('b9c9039c2fcd042859c28829f0df1f2d6991a0d90f4a1647d34cc56069ee80f5e0b4a13b1a49797f84815a97adbd96379060cc879c4aa4966f7f0a23cf7e938e')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# thou shalt not -Werror
+sed -i 's/--warn-error//g' src/Makefile.am
+
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/muffin \
+--localstatedir=/var \
+--disable-gtk-doc \
+--disable-static \
+--disable-schemas-compile \
+--enable-compile-warnings=minimum
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool clutter/libtool 
cogl/libtool
+
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+
+# Remove unused stuff
+make -C src DESTDIR="${pkgdir}" uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+make -C src/tools DESTDIR="${pkgdir}" uninstall
+make -C src/compositor/plugins DESTDIR="${pkgdir}" uninstall
+make -C doc/man DESTDIR="${pkgdir}" uninstall
+}


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 00:32:35
  Author: eschwartz
Revision: 964492

upgpkg: muffin 5.0.1-1: upstream release

Modified:
  muffin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 00:32:23 UTC (rev 964491)
+++ PKGBUILD2021-06-17 00:32:35 UTC (rev 964492)
@@ -4,7 +4,7 @@
 # Contributor: Ner0
 
 pkgname=muffin
-pkgver=5.0.0
+pkgver=5.0.1
 pkgrel=1
 pkgdesc="Cinnamon window manager based on Mutter"
 arch=('x86_64')
@@ -15,8 +15,8 @@
 makedepends=('intltool' 'gobject-introspection' 'gtk-doc')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5b47334777b78e3d791a5fd956ca2c978819943d7c5cfd353bef1fac8c22783c')
-b2sums=('50499ad7a8b4a3ea56bf0d06b4f25b4f78d00721d58991fc1c4c174370862560e63ebf0eba32118e8c3a3537c3a98de65f4ee0ea8230130c3e36ad8fa814f2ee')
+sha256sums=('6c78aaabcb5a0cf2e2b75a380ef4481c5b1ddb910faeae6e137f7356d1ac4b83')
+b2sums=('b9c9039c2fcd042859c28829f0df1f2d6991a0d90f4a1647d34cc56069ee80f5e0b4a13b1a49797f84815a97adbd96379060cc879c4aa4966f7f0a23cf7e938e')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 00:18:49
  Author: eschwartz
Revision: 964477

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 00:18:40 UTC (rev 964476)
+++ PKGBUILD2021-06-17 00:18:49 UTC (rev 964477)
@@ -1,27 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Balló György 
-
-_pkgname=python3-xapp
-pkgname=python-xapp
-pkgver=2.2.0
-pkgrel=1
-pkgdesc="Python Xapp Library"
-arch=('any')
-url="https://github.com/linuxmint/${_pkgname};
-license=('LGPL')
-depends=('python' 'python-psutil')
-makedepends=('python-setuptools')
-source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('169c8d6f5b94e58fea49e9bcc3b532ee0268e6a66d79257da2b113e6c4bfa5bc44b7cb03a08556372580667acbceca033e82140085e9367fd3bf97507257f26c')
-
-build(){
-  cd "${srcdir}"/${_pkgname}-${pkgver}
-
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}"/${_pkgname}-${pkgver}
-
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: python-xapp/repos/community-any/PKGBUILD (from rev 964476, 
python-xapp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 00:18:49 UTC (rev 964477)
@@ -0,0 +1,27 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Balló György 
+
+_pkgname=python3-xapp
+pkgname=python-xapp
+pkgver=2.2.1
+pkgrel=1
+pkgdesc="Python Xapp Library"
+arch=('any')
+url="https://github.com/linuxmint/${_pkgname};
+license=('LGPL')
+depends=('python' 'python-psutil')
+makedepends=('python-setuptools')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('2c03a6201404d7c792e12b10241309c912ca6b1daaa56aa0867ddbb16af053f110e4cb05da969b1800678d60acc0e6d19fc097581e6b195fff9f68acb48505ff')
+
+build(){
+  cd "${srcdir}"/${_pkgname}-${pkgver}
+
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}"/${_pkgname}-${pkgver}
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 00:18:36
  Author: eschwartz
Revision: 964475

upgpkg: python-xapp 2.2.1-1: upstream release

Modified:
  python-xapp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 00:18:25 UTC (rev 964474)
+++ PKGBUILD2021-06-17 00:18:36 UTC (rev 964475)
@@ -3,7 +3,7 @@
 
 _pkgname=python3-xapp
 pkgname=python-xapp
-pkgver=2.2.0
+pkgver=2.2.1
 pkgrel=1
 pkgdesc="Python Xapp Library"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('python' 'python-psutil')
 makedepends=('python-setuptools')
 source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('169c8d6f5b94e58fea49e9bcc3b532ee0268e6a66d79257da2b113e6c4bfa5bc44b7cb03a08556372580667acbceca033e82140085e9367fd3bf97507257f26c')
+sha512sums=('2c03a6201404d7c792e12b10241309c912ca6b1daaa56aa0867ddbb16af053f110e4cb05da969b1800678d60acc0e6d19fc097581e6b195fff9f68acb48505ff')
 
 build(){
   cd "${srcdir}"/${_pkgname}-${pkgver}


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 00:04:18
  Author: eschwartz
Revision: 964453

archrelease: copy trunk to community-any

Added:
  cinnamon-translations/repos/community-any/PKGBUILD
(from rev 964452, cinnamon-translations/trunk/PKGBUILD)
Deleted:
  cinnamon-translations/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-17 00:04:03 UTC (rev 964452)
+++ PKGBUILD2021-06-17 00:04:18 UTC (rev 964453)
@@ -1,26 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-
-pkgname=cinnamon-translations
-pkgver=4.8.3
-pkgrel=1
-pkgdesc="Translations for Cinnamon and Nemo"
-arch=('any')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL2')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('e7e674be8c542bb34cab9e191f4124b17d0fd932315838be241a7e0fea82aaa72f35e3ecf2d01972def7bd8c4b7a697107a6a14a64ab26c0d1cea4692cf62ff1')
-b2sums=('a1635f08376ff85a082078e3da64d0f5159d818ba1c57ae79439168553dd8c7e80e2d1aed93361c9df164d790f8be41059e7227c76ebee2285ea53a10df4f9ae')
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-cp -r usr/ "${pkgdir}"
-}

Copied: cinnamon-translations/repos/community-any/PKGBUILD (from rev 964452, 
cinnamon-translations/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-17 00:04:18 UTC (rev 964453)
@@ -0,0 +1,26 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+
+pkgname=cinnamon-translations
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="Translations for Cinnamon and Nemo"
+arch=('any')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL2')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('3c33d4799ffb44a04d639e82253bbf6968551a8b06b94807d2a8b1b2ea4e982f8d61664bf815fff571a94ed44c60c6d98344604d168e6a602df58306a3e3bf81')
+b2sums=('13455216b988a9901e51dca02977c8520225d4b24633557b28c72c97a9dee08d4d311dc8baee64af12a6e778b49e67a43222fce142b0dc53f2239a07f1ba')
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+cp -r usr/ "${pkgdir}"
+}


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

2021-06-16 Thread Eli Schwartz via arch-commits
Date: Thursday, June 17, 2021 @ 00:04:03
  Author: eschwartz
Revision: 964452

upgpkg: cinnamon-translations 5.0.1-1: upstream release

Modified:
  cinnamon-translations/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-17 00:02:14 UTC (rev 964451)
+++ PKGBUILD2021-06-17 00:04:03 UTC (rev 964452)
@@ -2,7 +2,7 @@
 # Contributor: Alexandre Filgueira 
 
 pkgname=cinnamon-translations
-pkgver=4.8.3
+pkgver=5.0.1
 pkgrel=1
 pkgdesc="Translations for Cinnamon and Nemo"
 arch=('any')
@@ -10,8 +10,8 @@
 license=('GPL2')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('e7e674be8c542bb34cab9e191f4124b17d0fd932315838be241a7e0fea82aaa72f35e3ecf2d01972def7bd8c4b7a697107a6a14a64ab26c0d1cea4692cf62ff1')
-b2sums=('a1635f08376ff85a082078e3da64d0f5159d818ba1c57ae79439168553dd8c7e80e2d1aed93361c9df164d790f8be41059e7227c76ebee2285ea53a10df4f9ae')
+sha512sums=('3c33d4799ffb44a04d639e82253bbf6968551a8b06b94807d2a8b1b2ea4e982f8d61664bf815fff571a94ed44c60c6d98344604d168e6a602df58306a3e3bf81')
+b2sums=('13455216b988a9901e51dca02977c8520225d4b24633557b28c72c97a9dee08d4d311dc8baee64af12a6e778b49e67a43222fce142b0dc53f2239a07f1ba')
 
 build() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2021-06-14 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 12:07:02
  Author: eschwartz
Revision: 963431

archrelease: copy trunk to community-x86_64

Added:
  xreader/repos/community-x86_64/PKGBUILD
(from rev 963430, xreader/trunk/PKGBUILD)
Deleted:
  xreader/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-14 12:06:47 UTC (rev 963430)
+++ PKGBUILD2021-06-14 12:07:02 UTC (rev 963431)
@@ -1,48 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Nate Simon 
-
-pkgname=xreader
-pkgver=3.0.0
-pkgrel=1
-pkgdesc="Document viewer for files like PDF and Postscript. X-Apps Project."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-groups=('x-apps')
-depends=('poppler-glib' 'webkit2gtk' 'xapps')
-optdepends=('djvulibre: support for djvu files'
-'libgxps: support for xps files'
-'libspectre: support for dvi and ps files'
-'mathjax2: support for math in epub files'
-'texlive-bin: support for dvi files')
-makedepends=('meson' 'samurai' 'intltool' 'itstool' 'gobject-introspection' 
'djvulibre'
- 'libgxps' 'libspectre' 'texlive-bin')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5d4ac49be7c2da410f17dbdcb57a431f232ccc313f9481a58554eb813da74809')
-b2sums=('d63dee58da67cb629543daefe2c8c91e8b644ee7c267235e676d25aac698040e77b6506461757439ad8374bb1b988bc1a43009d47d23ae654b609a069a2d6f77')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  -Dmathjax-directory=/usr/share/mathjax2 \
-  -Dcomics=true \
-  -Ddjvu=true \
-  -Ddvi=true \
-  -Dt1lib=true \
-  -Dpixbuf=true \
-  -Dintrospection=true \
-  -Dhelp_files=true \
-  -Dtests=false \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: xreader/repos/community-x86_64/PKGBUILD (from rev 963430, 
xreader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-14 12:07:02 UTC (rev 963431)
@@ -0,0 +1,48 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Nate Simon 
+
+pkgname=xreader
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="Document viewer for files like PDF and Postscript. X-Apps Project."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+groups=('x-apps')
+depends=('poppler-glib' 'webkit2gtk' 'xapps')
+optdepends=('djvulibre: support for djvu files'
+'libgxps: support for xps files'
+'libspectre: support for dvi and ps files'
+'mathjax2: support for math in epub files'
+'texlive-bin: support for dvi files')
+makedepends=('meson' 'samurai' 'intltool' 'itstool' 'gobject-introspection' 
'djvulibre'
+ 'libgxps' 'libspectre' 'texlive-bin')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('8da7e27792df0c0ed33ee08ab9b555edc35f981cb8ce76b45ac0618ca2d9c56b')
+b2sums=('cf20c87161870746c6a46bd4ddf4d9cc7f8ffacc12dcefd59d2a19777845f9f29a7b2dc9e4343a3968669440d41fd53e664f9a5451cfecb6d3ff75f4d6872a15')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  -Dmathjax-directory=/usr/share/mathjax2 \
+  -Dcomics=true \
+  -Ddjvu=true \
+  -Ddvi=true \
+  -Dt1lib=true \
+  -Dpixbuf=true \
+  -Dintrospection=true \
+  -Dhelp_files=true \
+  -Dtests=false \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2021-06-14 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 12:06:47
  Author: eschwartz
Revision: 963430

upgpkg: xreader 3.0.1-1: upstream release

Modified:
  xreader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-14 12:00:10 UTC (rev 963429)
+++ PKGBUILD2021-06-14 12:06:47 UTC (rev 963430)
@@ -2,7 +2,7 @@
 # Contributor: Nate Simon 
 
 pkgname=xreader
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc="Document viewer for files like PDF and Postscript. X-Apps Project."
 arch=('x86_64')
@@ -18,8 +18,8 @@
 makedepends=('meson' 'samurai' 'intltool' 'itstool' 'gobject-introspection' 
'djvulibre'
  'libgxps' 'libspectre' 'texlive-bin')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5d4ac49be7c2da410f17dbdcb57a431f232ccc313f9481a58554eb813da74809')
-b2sums=('d63dee58da67cb629543daefe2c8c91e8b644ee7c267235e676d25aac698040e77b6506461757439ad8374bb1b988bc1a43009d47d23ae654b609a069a2d6f77')
+sha256sums=('8da7e27792df0c0ed33ee08ab9b555edc35f981cb8ce76b45ac0618ca2d9c56b')
+b2sums=('cf20c87161870746c6a46bd4ddf4d9cc7f8ffacc12dcefd59d2a19777845f9f29a7b2dc9e4343a3968669440d41fd53e664f9a5451cfecb6d3ff75f4d6872a15')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 03:24:55
  Author: eschwartz
Revision: 963360

archrelease: copy trunk to community-x86_64

Added:
  xed/repos/community-x86_64/PKGBUILD
(from rev 963359, xed/trunk/PKGBUILD)
Deleted:
  xed/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-14 03:24:39 UTC (rev 963359)
+++ PKGBUILD2021-06-14 03:24:55 UTC (rev 963360)
@@ -1,33 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Nate Simon 
-
-pkgname=xed
-pkgver=3.0.0
-pkgrel=1
-pkgdesc="A small and lightweight text editor. X-Apps Project."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-groups=('x-apps')
-depends=('gspell' 'gtksourceview4' 'libpeas' 'xapps')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'itstool')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5f58ea6ca8fc6d2baef4531833124aef7c4c380cad2938f47833eece32ca8caf')
-b2sums=('efdc6a73a94cdade963df8a6c04977af5872722cbf122e12c9727f2895a4b931a77c9bca2d13a59ddb607a5117206fb182cac95694974b732aa66d6344199a6c')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: xed/repos/community-x86_64/PKGBUILD (from rev 963359, 
xed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-14 03:24:55 UTC (rev 963360)
@@ -0,0 +1,33 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Nate Simon 
+
+pkgname=xed
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="A small and lightweight text editor. X-Apps Project."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+groups=('x-apps')
+depends=('gspell' 'gtksourceview4' 'libpeas' 'xapps')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'itstool')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('cc1ff6094943375fc810215b2467871a674435bf44d32534f7efa38229cb6855')
+b2sums=('ee9cfc82d59901433e08822b5356d87a3a28a5bd613b7090f7e9b0034e7f5be9a36c1594868de9103e9fccfaa9799c085a0d99d51aafce54f8fbc2e20fbaebe9')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 03:24:39
  Author: eschwartz
Revision: 963359

upgpkg: xed 3.0.1-1: upstream translation-only release

Modified:
  xed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-14 02:58:07 UTC (rev 963358)
+++ PKGBUILD2021-06-14 03:24:39 UTC (rev 963359)
@@ -2,7 +2,7 @@
 # Contributor: Nate Simon 
 
 pkgname=xed
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc="A small and lightweight text editor. X-Apps Project."
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=('gspell' 'gtksourceview4' 'libpeas' 'xapps')
 makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool' 'itstool')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5f58ea6ca8fc6d2baef4531833124aef7c4c380cad2938f47833eece32ca8caf')
-b2sums=('efdc6a73a94cdade963df8a6c04977af5872722cbf122e12c9727f2895a4b931a77c9bca2d13a59ddb607a5117206fb182cac95694974b732aa66d6344199a6c')
+sha256sums=('cc1ff6094943375fc810215b2467871a674435bf44d32534f7efa38229cb6855')
+b2sums=('ee9cfc82d59901433e08822b5356d87a3a28a5bd613b7090f7e9b0034e7f5be9a36c1594868de9103e9fccfaa9799c085a0d99d51aafce54f8fbc2e20fbaebe9')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 01:43:24
  Author: eschwartz
Revision: 963354

archrelease: copy trunk to community-x86_64

Added:
  weechat/repos/community-x86_64/PKGBUILD
(from rev 963353, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-14 01:43:08 UTC (rev 963353)
+++ PKGBUILD2021-06-14 01:43:24 UTC (rev 963354)
@@ -1,49 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Maintainer : Eli Schwartz 
-# Contributor: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=3.1
-pkgrel=3
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('x86_64')
-url="https://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoctor' 'cmake' 'aspell' 'guile' 'lua' 'perl' 'python'
- 'ruby' 'tcl')
-optdepends=('aspell: spellchecker support'
-'guile: support for guile scripts'
-'lua: support for lua scripts'
-'perl: support for perl scripts'
-'python: support for python scripts'
-'ruby: support for ruby scripts'
-'tcl: support for tcl scripts')
-source=("https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('1eb3f5a0e4d3f6777970fc60c816e7bc9be5e5cf91b9e072f6c77003f284c7bdbabfae7058cb5083915a2adf7f4c651a9afb8cc8ae17cac950e7f2ef9608ed78'
-'SKIP')
-b2sums=('95ce8c6107351676b64c368484baf2245bd17093c90552339d35d058a3caff7a0c4bb8e7692757bcf8c2d7617621961b5bc118806c5084cc212283d6982bd896'
-'SKIP')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key) 
-
-# cmake does not correctly handle CPPFLAGS, so kludge it in anyway:
-# https://gitlab.kitware.com/cmake/cmake/-/issues/12928
-CFLAGS+=" ${CPPFLAGS}"
-
-build() {
-  mkdir -p build
-  cd build
-  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON \
--DENABLE_JAVASCRIPT=OFF \
--DENABLE_PHP=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: weechat/repos/community-x86_64/PKGBUILD (from rev 963353, 
weechat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-14 01:43:24 UTC (rev 963354)
@@ -0,0 +1,49 @@
+# Maintainer : Christian Rebischke 
+# Maintainer : Eli Schwartz 
+# Contributor: Giovanni Scafora 
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=3.2
+pkgrel=1
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('x86_64')
+url="https://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoctor' 'cmake' 'aspell' 'guile' 'lua' 'perl' 'python'
+ 'ruby' 'tcl')
+optdepends=('aspell: spellchecker support'
+'guile: support for guile scripts'
+'lua: support for lua scripts'
+'perl: support for perl scripts'
+'python: support for python scripts'
+'ruby: support for ruby scripts'
+'tcl: support for tcl scripts')
+source=("https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha512sums=('b4ad5cd6e678795d9093ddfa5aac0d396a7dbf994d04a6b9b083460b1639c851f1b9539cf7b97bd300154871d5df2c29f82fae387c42da840a1c3eb35c4a3660'
+'SKIP')
+b2sums=('6f9fcc72b4b36275e056f824a46d8640a45b1d78b9b6f0eaa5327fc2a965f891698982fade86c6d4e96d1f5c472ac4a82d036d478f37989f738f2ccd6e2f7002'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key) 
+
+# cmake does not correctly handle CPPFLAGS, so kludge it in anyway:
+# https://gitlab.kitware.com/cmake/cmake/-/issues/12928
+CFLAGS+=" ${CPPFLAGS}"
+
+build() {
+  mkdir -p build
+  cd build
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON \
+-DENABLE_JAVASCRIPT=OFF \
+-DENABLE_PHP=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 01:43:08
  Author: eschwartz
Revision: 963353

upgpkg: weechat 3.2-1: upstream release

a.k.a. the XDG Basedirs is now a thing release \o/

Modified:
  weechat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-14 00:23:20 UTC (rev 963352)
+++ PKGBUILD2021-06-14 01:43:08 UTC (rev 963353)
@@ -4,8 +4,8 @@
 # Contributor: lucke 
 
 pkgname=weechat
-pkgver=3.1
-pkgrel=3
+pkgver=3.2
+pkgrel=1
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('x86_64')
 url="https://www.weechat.org/;
@@ -21,9 +21,9 @@
 'ruby: support for ruby scripts'
 'tcl: support for tcl scripts')
 source=("https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('1eb3f5a0e4d3f6777970fc60c816e7bc9be5e5cf91b9e072f6c77003f284c7bdbabfae7058cb5083915a2adf7f4c651a9afb8cc8ae17cac950e7f2ef9608ed78'
+sha512sums=('b4ad5cd6e678795d9093ddfa5aac0d396a7dbf994d04a6b9b083460b1639c851f1b9539cf7b97bd300154871d5df2c29f82fae387c42da840a1c3eb35c4a3660'
 'SKIP')
-b2sums=('95ce8c6107351676b64c368484baf2245bd17093c90552339d35d058a3caff7a0c4bb8e7692757bcf8c2d7617621961b5bc118806c5084cc212283d6982bd896'
+b2sums=('6f9fcc72b4b36275e056f824a46d8640a45b1d78b9b6f0eaa5327fc2a965f891698982fade86c6d4e96d1f5c472ac4a82d036d478f37989f738f2ccd6e2f7002'
 'SKIP')
 validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key) 
 


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 00:23:20
  Author: eschwartz
Revision: 963352

archrelease: copy trunk to community-any

Added:
  trash-cli/repos/community-any/PKGBUILD
(from rev 963351, trash-cli/trunk/PKGBUILD)
Deleted:
  trash-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-14 00:23:04 UTC (rev 963351)
+++ PKGBUILD2021-06-14 00:23:20 UTC (rev 963352)
@@ -1,44 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Pierre Neidhardt 
-# Contributor: Renato Garcia 
-
-pkgname=trash-cli
-pkgver=0.21.5.25
-pkgrel=1
-pkgdesc="Command line trashcan (recycle bin) interface"
-arch=('any')
-url="https://github.com/andreafrancia/${pkgname};
-license=('GPL')
-depends=('python-psutil')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('1c26cbaa8daac275768c5f46c52d693af76050a6ee6d30b10a169059b61ee270')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# don't depend on thirdparty copies of the stdlib
-find tests -type f -name "*.py" -exec \
-sed -i 's/^import mock$/from unittest import mock/;s/from mock /from 
unittest.mock /' {} +
-
-# don't install dev tooling? 
https://github.com/andreafrancia/trash-cli/issues/205
-rm trashcli/bump.py tests/test_bump.py
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-python -m pytest
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: trash-cli/repos/community-any/PKGBUILD (from rev 963351, 
trash-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-14 00:23:20 UTC (rev 963352)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Pierre Neidhardt 
+# Contributor: Renato Garcia 
+
+pkgname=trash-cli
+pkgver=0.21.6.10.1
+pkgrel=1
+pkgdesc="Command line trashcan (recycle bin) interface"
+arch=('any')
+url="https://github.com/andreafrancia/${pkgname};
+license=('GPL')
+depends=('python-psutil')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('4b6ccbb0c49d287e9a462bf6beb7c7f02a080c14987dc1bd1507cbcae0fd8ab4')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# don't depend on thirdparty copies of the stdlib
+find tests -type f -name "*.py" -exec \
+sed -i 's/^import mock$/from unittest import mock/;s/from mock /from 
unittest.mock /' {} +
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 00:23:04
  Author: eschwartz
Revision: 963351

upgpkg: trash-cli 0.21.6.10.1-1: upstream release

Modified:
  trash-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-14 00:14:22 UTC (rev 963350)
+++ PKGBUILD2021-06-14 00:23:04 UTC (rev 963351)
@@ -3,7 +3,7 @@
 # Contributor: Renato Garcia 
 
 pkgname=trash-cli
-pkgver=0.21.5.25
+pkgver=0.21.6.10.1
 pkgrel=1
 pkgdesc="Command line trashcan (recycle bin) interface"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('1c26cbaa8daac275768c5f46c52d693af76050a6ee6d30b10a169059b61ee270')
+sha256sums=('4b6ccbb0c49d287e9a462bf6beb7c7f02a080c14987dc1bd1507cbcae0fd8ab4')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}
@@ -21,13 +21,11 @@
 # don't depend on thirdparty copies of the stdlib
 find tests -type f -name "*.py" -exec \
 sed -i 's/^import mock$/from unittest import mock/;s/from mock /from 
unittest.mock /' {} +
-
-# don't install dev tooling? 
https://github.com/andreafrancia/trash-cli/issues/205
-rm trashcli/bump.py tests/test_bump.py
 }
 
 build() {
 cd "${srcdir}"/${pkgname}-${pkgver}
+
 python setup.py build
 }
 


[arch-commits] Commit in firefox-extension-privacybadger/repos/community-any (2 files)

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 00:14:22
  Author: eschwartz
Revision: 963350

archrelease: copy trunk to community-any

Added:
  firefox-extension-privacybadger/repos/community-any/PKGBUILD
(from rev 963349, firefox-extension-privacybadger/trunk/PKGBUILD)
Deleted:
  firefox-extension-privacybadger/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-14 00:14:07 UTC (rev 963349)
+++ PKGBUILD2021-06-14 00:14:22 UTC (rev 963350)
@@ -1,47 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Hyacinthe Cartiaux 
-
-_pkgname=privacybadger
-pkgname=firefox-extension-${_pkgname}
-pkgver=2021.2.2
-pkgrel=1
-pkgdesc="Block third party tracking in your browser"
-arch=('any')
-url="https://www.eff.org/privacybadger;
-license=('GPL3')
-groups=('firefox-addons')
-makedepends=("unzip")
-source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/privacy-badger-eff-${pkgver}.xpi;
-
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/privacy-badger-eff-${pkgver}.xpi.sig;)
-noextract=("${_pkgname}-${pkgver}.xpi")
-sha256sums=('4d5518a54fa50309f355bcabd97ccf112c87bafd6ea00754af9ba49be6f2d602'
-'SKIP')
-b2sums=('d58e844caf4a5725756af52c4e02eab3ab782c9a7f8c96556cdcf8476c2dbd6565f9bbaf2a05366bd01c36da6a79e7efa2f5452e1621b466f2e2685386ad15a5'
-'SKIP')
-validpgpkeys=('88F8662241B0C16C16E3B5A7950FC3999D80F309') # Alexei 

-
-prepare() {
-  cd "$srcdir"
-
-  unzip -qqo "${_pkgname}-${pkgver}.xpi" -d "${_pkgname}-${pkgver}"
-}
-
-package() {
-  depends=("firefox")
-  cd "${srcdir}"
-
-  if [[ -f ${_pkgname}-${pkgver}/install.rdf ]]; then
-_extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
${_pkgname}-${pkgver}/install.rdf)"
-  else
-_extension_id="$(sed -n 's/.*"id": "\(.*\)".*/\1/p' 
${_pkgname}-${pkgver}/manifest.json)"
-  fi
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  # Should this extension be unpacked or not?
-  if grep -q 'true' ${_pkgname}-${pkgver}/install.rdf 
2>/dev/null; then
-install -dm755 "${_extension_dest}"
-cp -R ${_pkgname}-${pkgver}/* "${_extension_dest}"
-chmod -R ugo+rX "${_extension_dest}"
-  else
-install -Dm644 ${_pkgname}-${pkgver}.xpi "${_extension_dest}.xpi"
-  fi
-}

Copied: firefox-extension-privacybadger/repos/community-any/PKGBUILD (from rev 
963349, firefox-extension-privacybadger/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-14 00:14:22 UTC (rev 963350)
@@ -0,0 +1,47 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Hyacinthe Cartiaux 
+
+_pkgname=privacybadger
+pkgname=firefox-extension-${_pkgname}
+pkgver=2021.6.8
+pkgrel=1
+pkgdesc="Block third party tracking in your browser"
+arch=('any')
+url="https://www.eff.org/privacybadger;
+license=('GPL3')
+groups=('firefox-addons')
+makedepends=("unzip")
+source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/privacy-badger-eff-${pkgver}.xpi;
+
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/privacy-badger-eff-${pkgver}.xpi.sig;)
+noextract=("${_pkgname}-${pkgver}.xpi")
+sha256sums=('86d1fbada6c04365602ae1bd26eaeecbafebeb3ae951cb99e1e1bbf40e6fcbc7'
+'SKIP')
+b2sums=('3ceb9e0ae250741ff98399fcb8a82e65bb33b8422ee86cb2be9d18c34a11d3218b6e0e9d9d29d1886d2776aa9602fe3521ef5e9242bba8d17eac89ec84ea2e77'
+'SKIP')
+validpgpkeys=('88F8662241B0C16C16E3B5A7950FC3999D80F309') # Alexei 

+
+prepare() {
+  cd "$srcdir"
+
+  unzip -qqo "${_pkgname}-${pkgver}.xpi" -d "${_pkgname}-${pkgver}"
+}
+
+package() {
+  depends=("firefox")
+  cd "${srcdir}"
+
+  if [[ -f ${_pkgname}-${pkgver}/install.rdf ]]; then
+_extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
${_pkgname}-${pkgver}/install.rdf)"
+  else
+_extension_id="$(sed -n 's/.*"id": "\(.*\)".*/\1/p' 
${_pkgname}-${pkgver}/manifest.json)"
+  fi
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  # Should this extension be unpacked or not?
+  if grep -q 'true' ${_pkgname}-${pkgver}/install.rdf 
2>/dev/null; then
+install -dm755 "${_extension_dest}"
+cp -R ${_pkgname}-${pkgver}/* "${_extension_dest}"
+chmod -R ugo+rX "${_extension_dest}"
+  else
+install -Dm644 ${_pkgname}-${pkgver}.xpi "${_extension_dest}.xpi"
+  fi
+}


[arch-commits] Commit in firefox-extension-privacybadger/trunk (PKGBUILD)

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Monday, June 14, 2021 @ 00:14:07
  Author: eschwartz
Revision: 963349

upgpkg: firefox-extension-privacybadger 2021.6.8-1: upstream release

Modified:
  firefox-extension-privacybadger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-13 23:03:05 UTC (rev 963348)
+++ PKGBUILD2021-06-14 00:14:07 UTC (rev 963349)
@@ -3,7 +3,7 @@
 
 _pkgname=privacybadger
 pkgname=firefox-extension-${_pkgname}
-pkgver=2021.2.2
+pkgver=2021.6.8
 pkgrel=1
 pkgdesc="Block third party tracking in your browser"
 arch=('any')
@@ -14,9 +14,9 @@
 
source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/privacy-badger-eff-${pkgver}.xpi;
 
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/privacy-badger-eff-${pkgver}.xpi.sig;)
 noextract=("${_pkgname}-${pkgver}.xpi")
-sha256sums=('4d5518a54fa50309f355bcabd97ccf112c87bafd6ea00754af9ba49be6f2d602'
+sha256sums=('86d1fbada6c04365602ae1bd26eaeecbafebeb3ae951cb99e1e1bbf40e6fcbc7'
 'SKIP')
-b2sums=('d58e844caf4a5725756af52c4e02eab3ab782c9a7f8c96556cdcf8476c2dbd6565f9bbaf2a05366bd01c36da6a79e7efa2f5452e1621b466f2e2685386ad15a5'
+b2sums=('3ceb9e0ae250741ff98399fcb8a82e65bb33b8422ee86cb2be9d18c34a11d3218b6e0e9d9d29d1886d2776aa9602fe3521ef5e9242bba8d17eac89ec84ea2e77'
 'SKIP')
 validpgpkeys=('88F8662241B0C16C16E3B5A7950FC3999D80F309') # Alexei 

 


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Sunday, June 13, 2021 @ 06:16:10
  Author: eschwartz
Revision: 963262

archrelease: copy trunk to community-x86_64

Added:
  xapp/repos/community-x86_64/PKGBUILD
(from rev 963261, xapp/trunk/PKGBUILD)
Deleted:
  xapp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-13 06:15:55 UTC (rev 963261)
+++ PKGBUILD2021-06-13 06:16:10 UTC (rev 963262)
@@ -1,49 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alex Filgueira 
-# Contributor: Nate Simon 
-
-pkgname=xapp
-pkgver=2.2.0
-pkgrel=1
-pkgdesc="Common library for X-Apps project"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('libdbusmenu-gtk3' 'libgnomekbd')
-optdepends=('python: for mate-desktop status applet')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 'vala')
-provides=('xapps')
-conflicts=('xapps')
-replaces=('xapps')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('c1510443eb2f3f4f78ca792a9d327fa716a71116c3c5a7dff4c1313621a36768')
-b2sums=('212f0e9648b88db89cc801e8873db481c2879c4623e51b693601dbf2c1c48898979dd466038cc16e35a0754f5a15dd756d259478625bcb7282c80f597e3081c9')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-
-# rm useless scripts
-rm -r "${pkgdir}"/usr/bin
-
-# byte-compile python modules since meson does not implement autotools'
-# py-compile.
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python -m compileall -d "${_destdir}" "${_file}"
-python -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/python3* -name '*.py' -print0)
-}

Copied: xapp/repos/community-x86_64/PKGBUILD (from rev 963261, 
xapp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-13 06:16:10 UTC (rev 963262)
@@ -0,0 +1,49 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alex Filgueira 
+# Contributor: Nate Simon 
+
+pkgname=xapp
+pkgver=2.2.1
+pkgrel=1
+pkgdesc="Common library for X-Apps project"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('libdbusmenu-gtk3' 'libgnomekbd')
+optdepends=('python: for mate-desktop status applet')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 'vala')
+provides=('xapps')
+conflicts=('xapps')
+replaces=('xapps')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('6b6c4bbdd256739bc40d3894b93c4b348a6a319100288c20df93721684f97555')
+b2sums=('ee7f3f2b3c54b0b40158dff6abbe2233c0d1a1fa4e134ce4bd6ee48842335b16e0d94ad430cb59301529dd85e2705cbb1c1f5ba10844b6fb85f598ca0c42d1db')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+
+# rm useless scripts
+rm -r "${pkgdir}"/usr/bin
+
+# byte-compile python modules since meson does not implement autotools'
+# py-compile.
+# This is kind of ugly but removes traces of the build root.
+while read -rd '' _file; do
+_destdir="$(dirname "${_file#${pkgdir}}")"
+python -m compileall -d "${_destdir}" "${_file}"
+python -O -m compileall -d "${_destdir}" "${_file}"
+done < <(find "${pkgdir}"/usr/lib/python3* -name '*.py' -print0)
+}


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

2021-06-13 Thread Eli Schwartz via arch-commits
Date: Sunday, June 13, 2021 @ 06:15:55
  Author: eschwartz
Revision: 963261

upgpkg: xapp 2.2.1-1: upstream release

Modified:
  xapp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-13 05:05:23 UTC (rev 963260)
+++ PKGBUILD2021-06-13 06:15:55 UTC (rev 963261)
@@ -3,7 +3,7 @@
 # Contributor: Nate Simon 
 
 pkgname=xapp
-pkgver=2.2.0
+pkgver=2.2.1
 pkgrel=1
 pkgdesc="Common library for X-Apps project"
 arch=('x86_64')
@@ -16,8 +16,8 @@
 conflicts=('xapps')
 replaces=('xapps')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('c1510443eb2f3f4f78ca792a9d327fa716a71116c3c5a7dff4c1313621a36768')
-b2sums=('212f0e9648b88db89cc801e8873db481c2879c4623e51b693601dbf2c1c48898979dd466038cc16e35a0754f5a15dd756d259478625bcb7282c80f597e3081c9')
+sha256sums=('6b6c4bbdd256739bc40d3894b93c4b348a6a319100288c20df93721684f97555')
+b2sums=('ee7f3f2b3c54b0b40158dff6abbe2233c0d1a1fa4e134ce4bd6ee48842335b16e0d94ad430cb59301529dd85e2705cbb1c1f5ba10844b6fb85f598ca0c42d1db')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


[arch-commits] Commit in cinnamon-screensaver/repos/community-x86_64 (2 files)

2021-06-12 Thread Eli Schwartz via arch-commits
Date: Sunday, June 13, 2021 @ 05:05:23
  Author: eschwartz
Revision: 963260

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 963259, cinnamon-screensaver/trunk/PKGBUILD)
Deleted:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-13 05:05:04 UTC (rev 963259)
+++ PKGBUILD2021-06-13 05:05:23 UTC (rev 963260)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-screensaver
-pkgver=5.0.3
-pkgrel=1
-pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
- 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('gobject-introspection' 'meson' 'samurai')
-backup=('etc/pam.d/cinnamon-screensaver')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('a0f08873c0a829fec83cace103c761de3bde326f399879672eafd94207f0af8fc78313b67d21eb8cb765d356f2dbe3663fc974d1bc05abd73cab0921096e7269')
-b2sums=('840a301c65f4974176392dd5c8d4b6501a3d93039cdc4c5ce144e0938c2bc5714ab15128b2a09f7e6daa07127f9ec82310713e0fdc3eb6abee069c408eefbd24')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/cinnamon-screensaver \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-screensaver/repos/community-x86_64/PKGBUILD (from rev 963259, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-13 05:05:23 UTC (rev 963260)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-screensaver
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
+ 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('gobject-introspection' 'meson' 'samurai')
+backup=('etc/pam.d/cinnamon-screensaver')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('4510da4aa9372bdc683a9aee2b4388cb332a733dabc8666b5529783a0f7c4428101ae1f55d90e9150ba97a56f628a728f82a9d9edaffadc596ab246798bd60c1')
+b2sums=('2aed90c5498bf9a6e39436c87fbcc58ededebbe9a7e977385a8335bbb11f900e27dff59815513d239b92a8feddb596b1ef56a2dcfcba97db937fc6074b139c5b')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/cinnamon-screensaver \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2021-06-12 Thread Eli Schwartz via arch-commits
Date: Sunday, June 13, 2021 @ 05:05:04
  Author: eschwartz
Revision: 963259

upgpkg: cinnamon-screensaver 5.0.4-1: upstream release

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-13 04:47:44 UTC (rev 963258)
+++ PKGBUILD2021-06-13 05:05:04 UTC (rev 963259)
@@ -5,7 +5,7 @@
 # Jan de Groot 
 
 pkgname=cinnamon-screensaver
-pkgver=5.0.3
+pkgver=5.0.4
 pkgrel=1
 pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
 arch=('x86_64')
@@ -17,8 +17,8 @@
 makedepends=('gobject-introspection' 'meson' 'samurai')
 backup=('etc/pam.d/cinnamon-screensaver')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('a0f08873c0a829fec83cace103c761de3bde326f399879672eafd94207f0af8fc78313b67d21eb8cb765d356f2dbe3663fc974d1bc05abd73cab0921096e7269')
-b2sums=('840a301c65f4974176392dd5c8d4b6501a3d93039cdc4c5ce144e0938c2bc5714ab15128b2a09f7e6daa07127f9ec82310713e0fdc3eb6abee069c408eefbd24')
+sha512sums=('4510da4aa9372bdc683a9aee2b4388cb332a733dabc8666b5529783a0f7c4428101ae1f55d90e9150ba97a56f628a728f82a9d9edaffadc596ab246798bd60c1')
+b2sums=('2aed90c5498bf9a6e39436c87fbcc58ededebbe9a7e977385a8335bbb11f900e27dff59815513d239b92a8feddb596b1ef56a2dcfcba97db937fc6074b139c5b')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


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

2021-06-11 Thread Eli Schwartz via arch-commits
Date: Friday, June 11, 2021 @ 20:42:20
  Author: eschwartz
Revision: 962868

nemo: add optdepends enabled in 5.0.1

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-11 20:26:23 UTC (rev 962867)
+++ PKGBUILD2021-06-11 20:42:20 UTC (rev 962868)
@@ -13,6 +13,7 @@
  'python' 'xapp')
 optdepends=('cinnamon-translations: i18n'
 'ffmpegthumbnailer: support for video thumbnails'
+'ghostscript: search helpers support for PostScript files'
 'libgsf: search helpers support for MS Office files'
 'odt2txt: search helpers support for LibreOffice files'
 'poppler: search helpers support for PDF')


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

2021-06-11 Thread Eli Schwartz via arch-commits
Date: Friday, June 11, 2021 @ 12:08:33
  Author: eschwartz
Revision: 962053

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/PKGBUILD
(from rev 962052, calibre/trunk/PKGBUILD)
Deleted:
  calibre/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-11 12:08:18 UTC (rev 962052)
+++ PKGBUILD2021-06-11 12:08:33 UTC (rev 962053)
@@ -1,106 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgbase=calibre
-pkgname=calibre
-pkgver=5.20.0
-pkgrel=1
-pkgdesc="Ebook management application"
-arch=('x86_64')
-url="https://calibre-ebook.com/;
-license=('GPL3')
-_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dbus' 'dnspython'
-  'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
-  'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
-  'pyqtwebengine' 'regex' 'zeroconf')
-depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libusb'
- 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
- "${_py_deps[@]/#/python-}" 'qt5-imageformats' 'qt5-svg' 
'ttf-liberation' 'udisks2')
-makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
-checkdepends=('xorg-server-xvfb')
-optdepends=('poppler: required for converting pdf to html'
-'speech-dispatcher: TTS support in the viewer')
-conflicts=('calibre-common' 'calibre-python3')
-replaces=('calibre-common' 'calibre-python3')
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('b692a2fbc8333b4ea4665e43969c97e2fb7417231ae88a26683e9770065e545a'
-'SKIP')
-b2sums=('5b825eaac957c959383e3556dce22fa412b6cc32e4edf14d30c0782f60cf07005fe39b83c9bd79734542e572b6417086960f1e697447b931ad43a13f4aa5c828'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare(){
-cd "${pkgbase}-${pkgver}"
-
-# Desktop integration (e.g. enforce arch defaults)
-# Use uppercase naming scheme, don't delete config files under fakeroot.
-sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
--e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
--e "s/^Name=calibre/Name=Calibre/g" \
--i  src/calibre/linux.py
-
-cd resources
-
-# Remove unneeded files
-rm ${pkgbase}-portable.* mozilla-ca-certs.pem
-
-# use system mathjax
-rm -r mathjax
-}
-
-build() {
-cd "${pkgbase}-${pkgver}"
-
-LANG='en_US.UTF-8' python setup.py build
-LANG='en_US.UTF-8' python setup.py gui
-python setup.py liberation_fonts --path-to-liberation_fonts 
/usr/share/fonts/liberation --system-liberation_fonts
-LANG='en_US.UTF-8' python setup.py mathjax --path-to-mathjax 
/usr/share/mathjax --system-mathjax
-LANG='en_US.UTF-8' python setup.py rapydscript
-}
-
-check() {
-cd "${pkgbase}-${pkgver}"
-
-_test_excludes=(
-# merely testing if a runtime-optional feature optdepend is importable
-'speech_dispatcher'
-# tests if a completely unused module is bundled
-'pycryptodome'
-)
-
-# without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
-# ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
-# one or two tests are a bit flaky, but the python3 build seems to succeed 
more often
-LANG='en_US.UTF-8' xvfb-run python setup.py test 
"${_test_excludes[@]/#/--exclude-test-name=}"
-}
-
-package() {
-cd "${pkgbase}-${pkgver}"
-
-# If this directory doesn't exist, zsh completion won't install.
-install -d "${pkgdir}/usr/share/zsh/site-functions"
-
-LANG='en_US.UTF-8' python setup.py install \
---staging-root="${pkgdir}/usr" \
---prefix=/usr \
---system-plugins-location=/usr/share/calibre/system-plugins
-
-cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-# not needed at runtime
-rm -r "${pkgdir}"/usr/share/calibre/rapydscript/
-
-# Compiling bytecode FS#33392
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python3 -m compileall -d "${_destdir}" "${_file}"
-python3 -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/ -name '*.py' -print0)
-}

Copied: calibre/repos/community-x86_64/PKGBUILD (from rev 962052, 
calibre/trunk/PKGBUILD)

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

2021-06-11 Thread Eli Schwartz via arch-commits
Date: Friday, June 11, 2021 @ 12:08:18
  Author: eschwartz
Revision: 962052

upgpkg: calibre 5.21.0-1: upstream release

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-11 11:20:37 UTC (rev 962051)
+++ PKGBUILD2021-06-11 12:08:18 UTC (rev 962052)
@@ -8,7 +8,7 @@
 
 pkgbase=calibre
 pkgname=calibre
-pkgver=5.20.0
+pkgver=5.21.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
@@ -29,9 +29,9 @@
 replaces=('calibre-common' 'calibre-python3')
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 "https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('b692a2fbc8333b4ea4665e43969c97e2fb7417231ae88a26683e9770065e545a'
+sha256sums=('458b6b2dcc6bcf63676c327277192e88333cf9545d89806855d31b4c17e20257'
 'SKIP')
-b2sums=('5b825eaac957c959383e3556dce22fa412b6cc32e4edf14d30c0782f60cf07005fe39b83c9bd79734542e572b6417086960f1e697447b931ad43a13f4aa5c828'
+b2sums=('50c49d278af84691384eb39cac0f2b1eea4136750b8c527a20d97be8e8333a8c581e6924b970dc5d4d54c4485cbc064b186242873d6fb250c284c3eca0ec158b'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 


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

2021-06-11 Thread Eli Schwartz via arch-commits
Date: Friday, June 11, 2021 @ 11:20:37
  Author: eschwartz
Revision: 962051

archrelease: copy trunk to community-x86_64

Added:
  qbittorrent/repos/community-x86_64/PKGBUILD
(from rev 962050, qbittorrent/trunk/PKGBUILD)
Deleted:
  qbittorrent/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-11 11:20:23 UTC (rev 962050)
+++ PKGBUILD2021-06-11 11:20:37 UTC (rev 962051)
@@ -1,63 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Antonio Rojas 
-# Contributor: Timothy Redaelli 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Jkkyll Wu 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Daniel J Griffiths 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=qbittorrent
-pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.3.4
-pkgrel=1
-arch=('x86_64')
-url="https://www.qbittorrent.org;
-license=('custom' 'GPL')
-depends=('libtorrent-rasterbar' 'qt5-base')
-makedepends=('boost' 'qt5-tools' 'qt5-svg')
-optdepends=('python: needed for torrent search tab')
-source=("https://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('d27bc37b638a7d4c2c1c1b1d1e983ab3657ae88a7848ae714526d02c2d1a227d6ed03873059b4fadf51d90fa95d513d505a692de796c653b4bcca244887293cf'
-'SKIP')
-b2sums=('af95d6a642bf7b3af042023be868be08ae01c3b5dab1af2260d89abdd88842dadc2f63f811945d9cea2d9ef4037c4532d035787229b6ac7ad390c3fd4eb37d6a'
-'SKIP')
-validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2') # sledgehammer999 

-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  # tell qmake not to break makepkg's debug/!strip options
-  export QBT_ADD_CONFIG='nostrip'
-
-  mkdir -p ${pkgbase}
-  pushd ${pkgbase}
-  ../configure --prefix=/usr
-  make
-  popd
-
-  # Build nox variant
-  mkdir -p "${pkgbase}-nox"
-  pushd "${pkgbase}-nox"
-  ../configure --prefix=/usr --disable-gui --enable-systemd
-  make
-}
-
-package_qbittorrent() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
-  depends+=('qt5-svg' 'hicolor-icon-theme')
-
-  cd ${pkgbase}-${pkgver}/${pkgbase}
-
-  make INSTALL_ROOT="${pkgdir}" install
-  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}
-
-package_qbittorrent-nox() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
-
-  cd ${pkgbase}-${pkgver}/${pkgbase}-nox
-
-  make INSTALL_ROOT="${pkgdir}" install
-  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: qbittorrent/repos/community-x86_64/PKGBUILD (from rev 962050, 
qbittorrent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-11 11:20:37 UTC (rev 962051)
@@ -0,0 +1,63 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Antonio Rojas 
+# Contributor: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=qbittorrent
+pkgname=(qbittorrent qbittorrent-nox)
+pkgver=4.3.5
+pkgrel=1
+arch=('x86_64')
+url="https://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('libtorrent-rasterbar' 'qt5-base')
+makedepends=('boost' 'qt5-tools' 'qt5-svg')
+optdepends=('python: needed for torrent search tab')
+source=("https://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha512sums=('0a2feec6c16ef9a82c9a6a6ffacd619ede243ed4037ae04e7b9f3da74f704cd9d724f47e87d2da00eb8d0c0c3c9228e0578a6bc71fa530ef42cb5b65586f9db0'
+'SKIP')
+b2sums=('eadc46330bfc04778510123f143578ea12ec9a34d3f3e56ef47267d7fe4deaea92318e4213f75b8849b6cc047d05e0daa62a27c1c1d4f00acbc535589c26ca63'
+'SKIP')
+validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2') # sledgehammer999 

+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  # tell qmake not to break makepkg's debug/!strip options
+  export QBT_ADD_CONFIG='nostrip'
+
+  mkdir -p ${pkgbase}
+  pushd ${pkgbase}
+  ../configure --prefix=/usr
+  make
+  popd
+
+  # Build nox variant
+  mkdir -p "${pkgbase}-nox"
+  pushd "${pkgbase}-nox"
+  ../configure --prefix=/usr --disable-gui --enable-systemd
+  make
+}
+
+package_qbittorrent() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
+  depends+=('qt5-svg' 'hicolor-icon-theme')
+
+  cd ${pkgbase}-${pkgver}/${pkgbase}
+
+  make INSTALL_ROOT="${pkgdir}" install
+  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING

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

2021-06-11 Thread Eli Schwartz via arch-commits
Date: Friday, June 11, 2021 @ 11:20:23
  Author: eschwartz
Revision: 962050

upgpkg: qbittorrent 4.3.5-1: upstream release

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-11 11:01:16 UTC (rev 962049)
+++ PKGBUILD2021-06-11 11:20:23 UTC (rev 962050)
@@ -9,7 +9,7 @@
 
 pkgbase=qbittorrent
 pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.3.4
+pkgver=4.3.5
 pkgrel=1
 arch=('x86_64')
 url="https://www.qbittorrent.org;
@@ -18,9 +18,9 @@
 makedepends=('boost' 'qt5-tools' 'qt5-svg')
 optdepends=('python: needed for torrent search tab')
 
source=("https://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('d27bc37b638a7d4c2c1c1b1d1e983ab3657ae88a7848ae714526d02c2d1a227d6ed03873059b4fadf51d90fa95d513d505a692de796c653b4bcca244887293cf'
+sha512sums=('0a2feec6c16ef9a82c9a6a6ffacd619ede243ed4037ae04e7b9f3da74f704cd9d724f47e87d2da00eb8d0c0c3c9228e0578a6bc71fa530ef42cb5b65586f9db0'
 'SKIP')
-b2sums=('af95d6a642bf7b3af042023be868be08ae01c3b5dab1af2260d89abdd88842dadc2f63f811945d9cea2d9ef4037c4532d035787229b6ac7ad390c3fd4eb37d6a'
+b2sums=('eadc46330bfc04778510123f143578ea12ec9a34d3f3e56ef47267d7fe4deaea92318e4213f75b8849b6cc047d05e0daa62a27c1c1d4f00acbc535589c26ca63'
 'SKIP')
 validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2') # sledgehammer999 

 


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

2021-06-06 Thread Eli Schwartz via arch-commits
Date: Sunday, June 6, 2021 @ 21:06:48
  Author: eschwartz
Revision: 956342

archrelease: copy trunk to community-any

Added:
  trash-cli/repos/community-any/PKGBUILD
(from rev 956341, trash-cli/trunk/PKGBUILD)
Deleted:
  trash-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-06 21:06:33 UTC (rev 956341)
+++ PKGBUILD2021-06-06 21:06:48 UTC (rev 956342)
@@ -1,33 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Pierre Neidhardt 
-# Contributor: Renato Garcia 
-
-pkgname=trash-cli
-pkgver=0.17.1.14
-pkgrel=6
-pkgdesc="Command line trashcan (recycle bin) interface"
-arch=('any')
-url="https://github.com/andreafrancia/${pkgname};
-license=('GPL')
-depends=('python')
-makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-
"0001-Use-py-bytes-to-interact-with-ctypes.patch::${url}/pull/115.patch")
-sha256sums=('8fdd20e5e9c55ea4e24677e602a06a94a93f1155f9970c55b25dede5e037b974'
-'71c674d0c36fad172fd39c75052ac0de1a3f4739e13cffb8ed78148f11eda0a3')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-# https://github.com/andreafrancia/trash-cli/issues/95
-patch -p1 -i ../0001-Use-py-bytes-to-interact-with-ctypes.patch
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-python setup.py build
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: trash-cli/repos/community-any/PKGBUILD (from rev 956341, 
trash-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-06 21:06:48 UTC (rev 956342)
@@ -0,0 +1,44 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Pierre Neidhardt 
+# Contributor: Renato Garcia 
+
+pkgname=trash-cli
+pkgver=0.21.5.25
+pkgrel=1
+pkgdesc="Command line trashcan (recycle bin) interface"
+arch=('any')
+url="https://github.com/andreafrancia/${pkgname};
+license=('GPL')
+depends=('python-psutil')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('1c26cbaa8daac275768c5f46c52d693af76050a6ee6d30b10a169059b61ee270')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# don't depend on thirdparty copies of the stdlib
+find tests -type f -name "*.py" -exec \
+sed -i 's/^import mock$/from unittest import mock/;s/from mock /from 
unittest.mock /' {} +
+
+# don't install dev tooling? 
https://github.com/andreafrancia/trash-cli/issues/205
+rm trashcli/bump.py tests/test_bump.py
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2021-06-06 Thread Eli Schwartz via arch-commits
Date: Sunday, June 6, 2021 @ 21:06:33
  Author: eschwartz
Revision: 956341

upgpkg: trash-cli 0.21.5.25-1: upstream release

Modified:
  trash-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-06 21:01:53 UTC (rev 956340)
+++ PKGBUILD2021-06-06 21:06:33 UTC (rev 956341)
@@ -3,23 +3,27 @@
 # Contributor: Renato Garcia 
 
 pkgname=trash-cli
-pkgver=0.17.1.14
-pkgrel=6
+pkgver=0.21.5.25
+pkgrel=1
 pkgdesc="Command line trashcan (recycle bin) interface"
 arch=('any')
 url="https://github.com/andreafrancia/${pkgname};
 license=('GPL')
-depends=('python')
+depends=('python-psutil')
 makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-
"0001-Use-py-bytes-to-interact-with-ctypes.patch::${url}/pull/115.patch")
-sha256sums=('8fdd20e5e9c55ea4e24677e602a06a94a93f1155f9970c55b25dede5e037b974'
-'71c674d0c36fad172fd39c75052ac0de1a3f4739e13cffb8ed78148f11eda0a3')
+checkdepends=('python-pytest')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('1c26cbaa8daac275768c5f46c52d693af76050a6ee6d30b10a169059b61ee270')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}
-# https://github.com/andreafrancia/trash-cli/issues/95
-patch -p1 -i ../0001-Use-py-bytes-to-interact-with-ctypes.patch
+
+# don't depend on thirdparty copies of the stdlib
+find tests -type f -name "*.py" -exec \
+sed -i 's/^import mock$/from unittest import mock/;s/from mock /from 
unittest.mock /' {} +
+
+# don't install dev tooling? 
https://github.com/andreafrancia/trash-cli/issues/205
+rm trashcli/bump.py tests/test_bump.py
 }
 
 build() {
@@ -27,7 +31,14 @@
 python setup.py build
 }
 
+check() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+python -m pytest
+}
+
 package(){
 cd "${srcdir}"/${pkgname}-${pkgver}
+
 python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }


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

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 22:19:41
  Author: eschwartz
Revision: 955953

archrelease: copy trunk to community-x86_64

Added:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
(from rev 955952, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 955952, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 955952, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-x86_64/set_wheel.diff
(from rev 955952, cinnamon/trunk/set_wheel.diff)
Deleted:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/set_wheel.diff

-+
 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch |   76 ++--
 PKGBUILD|  174 
+-
 default-theme.patch |   50 +-
 set_wheel.diff  |  110 +++---
 4 files changed, 205 insertions(+), 205 deletions(-)

Deleted: 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-04 22:19:19 UTC (rev 955952)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-04 22:19:41 UTC (rev 955953)
@@ -1,38 +0,0 @@
-From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Tue, 20 Mar 2018 14:11:02 -0400
-Subject: [PATCH] cinnamon-settings: don't rely on the presence of
- cinnamon-control-center
-
-The existence of the cinnamon-control-center binary does not even tell
-us what control center libraries are available. So instead, do the same
-thing we did for cinnamon-settings modules, and check if the library
-exists.

- files/usr/bin/cinnamon-settings | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
-index 9fbdbecd2..98ca454a5 100755
 a/files/usr/bin/cinnamon-settings
-+++ b/files/usr/bin/cinnamon-settings
-@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
- import getopt
- import os
- import sys
-+import sysconfig
- 
- def usage():
- print("""Usage:
-@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif 
os.path.exists("/usr/share/cinnamon/cinnamon-settings/modules/cs_%s.py" % 
module):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
--elif os.path.exists("/usr/bin/cinnamon-control-center"):
-+elif os.path.exists(os.path.join(sysconfig.get_config_var("LIBDIR"), 
"cinnamon-control-center-1/panels/lib%s.so" % module)):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif os.path.exists("/usr/bin/gnome-control-center"):
- print ("Unknown module %s, calling gnome-control-center" % module)
--- 
-2.22.0
-

Copied: 
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
 (from rev 955952, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
(rev 0)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-04 22:19:41 UTC (rev 955953)
@@ -0,0 +1,38 @@
+From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Tue, 20 Mar 2018 14:11:02 -0400
+Subject: [PATCH] cinnamon-settings: don't rely on the presence of
+ cinnamon-control-center
+
+The existence of the cinnamon-control-center binary does not even tell
+us what control center libraries are available. So instead, do the same
+thing we did for cinnamon-settings modules, and check if the library
+exists.
+---
+ files/usr/bin/cinnamon-settings | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
+index 9fbdbecd2..98ca454a5 100755
+--- a/files/usr/bin/cinnamon-settings
 b/files/usr/bin/cinnamon-settings
+@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
+ import getopt
+ import os
+ import sys
++import sysconfig
+ 
+ def usage():
+ print("""Usage:
+@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
+ 

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

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 22:19:19
  Author: eschwartz
Revision: 955952

upgpkg: cinnamon 5.0.2-1: upstream release

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 22:11:18 UTC (rev 955951)
+++ PKGBUILD2021-06-04 22:19:19 UTC (rev 955952)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc="Linux desktop which provides advanced innovative features and a 
traditional user experience"
 arch=('x86_64')
@@ -28,11 +28,11 @@
 "0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch"
 "set_wheel.diff"
 "default-theme.patch")
-sha512sums=('7f10dbac4facb4b7c7924fdb7c95bb7dc22f17cd688145edba27ddae0862b2679a584a6b2160fd48e3128047618601d89acb182af880b68cabef5986f157aea8'
+sha512sums=('f75e9f8382b27b0b29d37274b8687f861c6b46a46b378ee297024069ad70e0e5b48089cd724210148d657d25bcce5d3f18b6ba4826b8ff582c0c1afb5fef9578'
 
'77c2229d350bb1445375d206af769f1dde9329ce3575e40e9c1d5fea3ec0f49c0a7ef36d78caf895d9224147947bd102bab924b5579dc8dc5f8d3269e0c76374'
 
'fd7e117054996ed1c3dfd0f968c2bf98ca4fcee9a100221f8839a232147745ec0140e1f68eeffba58a3c44f66f26e05d433648a7a28858ec669524f7266ba04c'
 
'ee7dedd59ea370cf81d75def49060f9a29b22e7b025ca7d5db87a0102d50f138c79aa562b0d36a748c4b1c59a37f600ba1f60ff6caf303cf5b6fc4d110d051b4')
-b2sums=('7bbe0937f1df9198b0143790130f45992b39ff8aa94d6fc66a66791010cb125a8cfd5b91442b1b6d3c072117e0f53fb86eb7bf3c8b2459dcaa49753b2b4d3d75'
+b2sums=('fe7962f4d6481a1584700b3ad5495d2cdc79c4f61aa01b7e330929ff83150ca9a024a00bece4df0fbd18dc68df164c5c27024320c8e46041ae1eaa7c36c8c620'
 
'1d873efa0d17e358f834c4374f39bbf3f74340849f9c28a0950c0a064772083798aba3435e564acdf43a94665389917788e295073d4a65cc18600d71b7a9f008'
 
'3becf1f40068fc629109e6e7d464c3c484296afacc9ab6328b2ccbb3c9735bcbfa9550f9f73b430ede178ae668e37c660ce322b5b4d1873526de3d3d41185160'
 
'86c3a29acd132ca321f08fd81dd5a45707accdc035b2aeec95bf358b29072ff1eedb77b2566cf48d7253d1d791599f0f44938c4600761d711cb18b59019f1c62')


  1   2   3   4   >