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

2022-09-01 Thread Johannes Löthberg via arch-commits
Date: Thursday, September 1, 2022 @ 21:16:26
  Author: demize
Revision: 1290484

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
(from rev 1290483, elixir/trunk/PKGBUILD)

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 1290483, 
elixir/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2022-09-01 21:16:26 UTC (rev 1290484)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.14.0
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('ac129e266a1e04cdc389551843ec3dbdf36086bb2174d3d7e7936e820735003b')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2022-09-01 Thread Johannes Löthberg via arch-commits
Date: Thursday, September 1, 2022 @ 21:16:20
  Author: demize
Revision: 1290483

upgpkg: elixir 1.14.0-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-01 21:08:15 UTC (rev 1290482)
+++ PKGBUILD2022-09-01 21:16:20 UTC (rev 1290483)
@@ -3,7 +3,7 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.13.4
+pkgver=1.14.0
 pkgrel=1
 
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
@@ -16,7 +16,7 @@
 checkdepends=('git')
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('95daf2dd3052e6ca7d4d849457eaaba09de52d65ca38d6933c65bc1cdf6b8579')
+sha256sums=('ac129e266a1e04cdc389551843ec3dbdf36086bb2174d3d7e7936e820735003b')
 
 build() {
   cd elixir-"$pkgver"



[arch-commits] Commit in (python-pafy)

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 19:37:54
  Author: demize
Revision: 1288955

Drop python-pafy

The only thing that depended on it was mps-youtube which has now been dropped.

Deleted:
  python-pafy/



[arch-commits] Commit in (mps-youtube)

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 19:34:11
  Author: demize
Revision: 1288953

Drop mps-youtube

It's unmaintained upstream and the API key used no longer work.

Deleted:
  mps-youtube/



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 19:24:20
  Author: demize
Revision: 1288947

archrelease: copy trunk to community-any

Added:
  python-srcinfo/repos/community-any/PKGBUILD
(from rev 1288946, python-srcinfo/trunk/PKGBUILD)
  python-srcinfo/repos/community-any/keys/
Deleted:
  python-srcinfo/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 19:24:13 UTC (rev 1288946)
+++ PKGBUILD2022-08-30 19:24:20 UTC (rev 1288947)
@@ -1,31 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=python-srcinfo
-pkgver=0.0.8
-pkgrel=6
-
-pkgdesc="Simple .SRCINFO parsing library"
-url='https://github.com/kyrias/python-srcinfo'
-arch=('any')
-license=('ISC')
-
-depends=('python' 'python-setuptools' 'python-parse')
-checkdepends=('python-nose')
-
-source=("https://pypi.python.org/packages/source/s/srcinfo/srcinfo-$pkgver.tar.gz";
-
"https://pypi.python.org/packages/source/s/srcinfo/srcinfo-$pkgver.tar.gz.asc";)
-
-validpgpkeys=('5134EF9EAF65F95B6BB1608E50FB9B273A9D0BB5')
-md5sums=('5905c054ac2cd080bd0dbf1df5253608'
- 'SKIP')
-
-check() {
-   cd srcinfo-"$pkgver"
-   python setup.py test
-}
-
-package() {
-   cd srcinfo-"$pkgver"
-   python setup.py install --root="$pkgdir" --optimize=1
-   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
-}

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



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 19:24:13
  Author: demize
Revision: 1288946

pgpkg: python-srcinfo 0.0.8-7: Remove setuptools dependency

Modified:
  python-srcinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 19:15:16 UTC (rev 1288945)
+++ PKGBUILD2022-08-30 19:24:13 UTC (rev 1288946)
@@ -2,7 +2,7 @@
 
 pkgname=python-srcinfo
 pkgver=0.0.8
-pkgrel=6
+pkgrel=7
 
 pkgdesc="Simple .SRCINFO parsing library"
 url='https://github.com/kyrias/python-srcinfo'
@@ -9,8 +9,8 @@
 arch=('any')
 license=('ISC')
 
-depends=('python' 'python-setuptools' 'python-parse')
-checkdepends=('python-nose')
+depends=('python' 'python-parse')
+checkdepends=('python-setuptools' 'python-nose')
 
 
source=("https://pypi.python.org/packages/source/s/srcinfo/srcinfo-$pkgver.tar.gz";
 
"https://pypi.python.org/packages/source/s/srcinfo/srcinfo-$pkgver.tar.gz.asc";)



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 19:08:53
  Author: demize
Revision: 1288943

archrelease: copy trunk to community-testing-x86_64

Added:
  kubo/repos/community-testing-x86_64/
  kubo/repos/community-testing-x86_64/PKGBUILD
(from rev 1288942, kubo/trunk/PKGBUILD)
  kubo/repos/community-testing-x86_64/ipfs.service
(from rev 1288942, kubo/trunk/ipfs.service)
  kubo/repos/community-testing-x86_64/ipfs@.service
(from rev 1288942, kubo/trunk/ipfs@.service)

---+
 PKGBUILD  |   60 
 ipfs.service  |   11 ++
 ipfs@.service |   12 +++
 3 files changed, 83 insertions(+)

Copied: kubo/repos/community-testing-x86_64/PKGBUILD (from rev 1288942, 
kubo/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-08-30 19:08:53 UTC (rev 1288943)
@@ -0,0 +1,60 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Anatol Pomozov
+# Contributor: kpcyrd 
+# Contributor: Frederik “Freso” S. Olesen 
+# Contributor: Ian Naval 
+
+pkgname=kubo
+pkgver=0.15.0
+pkgrel=1
+
+pkgdesc='A peer-to-peer hypermedia distribution protocol'
+url='https://github.com/ipfs/kubo'
+arch=(x86_64)
+license=(MIT)
+
+provides=('go-ipfs')
+replaces=('go-ipfs')
+conflicts=('go-ipfs')
+
+depends=(glibc)
+optdepends=('fuse2: for mounting/advanced use')
+makedepends=(go git)
+
+source=(kubo-$pkgver.tar.gz::https://github.com/ipfs/kubo/releases/download/v$pkgver/kubo-source.tar.gz
+ipfs.service
+ipfs@.service)
+noextract=(kubo-$pkgver.tar.gz)
+
+sha512sums=('26c1945c4ce641953e72a8f08802aa5acdd6c39fee3c1306bec0613a36b3d1ad79e23f7531427631848a6952ed950d27cd6a09f18352043bc145669b491843e6'
+
'b1d0b2ab3008adcd2c1871fe3ff57aa27cf43d6acbd4ab330f0d2efbba661a046b9c8a8cf514ddf131c5fce93ca5d91d10d516c4f39d98f33e4ac46aee1d0abb'
+
'a1254e40d0bacfceb92071de7f5331cd87cc454bf70be34e892af35dfc677fcf130903577c2a4e7fe6da6b5cedecb22dc0f73d1ad86f5aa27a8333d6bd85fe8c')
+
+prepare() {
+  mkdir -p kubo
+  tar -C kubo -xf kubo-$pkgver.tar.gz
+  cd kubo
+}
+
+build() {
+  cd kubo
+
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
+  make build
+  cmd/ipfs/ipfs commands completion bash >"$srcdir"/ipfs-completion.bash
+}
+
+package() {
+  cd kubo
+  install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
+  install -Dm 644 "$srcdir"/ipfs.service 
"$pkgdir/usr/lib/systemd/user/ipfs.service"
+  install -Dm 644 "$srcdir"/ipfs@.service 
"$pkgdir/usr/lib/systemd/system/ipfs@.service"
+  install -Dm 644 "$srcdir"/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/MIT" LICENSE-MIT
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/APACHE" 
LICENSE-APACHE
+  install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}

Copied: kubo/repos/community-testing-x86_64/ipfs.service (from rev 1288942, 
kubo/trunk/ipfs.service)
===
--- community-testing-x86_64/ipfs.service   (rev 0)
+++ community-testing-x86_64/ipfs.service   2022-08-30 19:08:53 UTC (rev 
1288943)
@@ -0,0 +1,11 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+Wants=network-online.target
+After=network-online.target
+
+[Service]
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target

Copied: kubo/repos/community-testing-x86_64/ipfs@.service (from rev 1288942, 
kubo/trunk/ipfs@.service)
===
--- community-testing-x86_64/ipfs@.service  (rev 0)
+++ community-testing-x86_64/ipfs@.service  2022-08-30 19:08:53 UTC (rev 
1288943)
@@ -0,0 +1,12 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+Wants=network-online.target
+After=network-online.target
+
+[Service]
+User=%i
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target



[arch-commits] Commit in kubo/trunk (PKGBUILD rb.patch)

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 19:08:46
  Author: demize
Revision: 1288942

upgpkg: kubo 0.15.0-1

Modified:
  kubo/trunk/PKGBUILD
Deleted:
  kubo/trunk/rb.patch

--+
 PKGBUILD |   12 
 rb.patch |   13 -
 2 files changed, 4 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 19:03:11 UTC (rev 1288941)
+++ PKGBUILD2022-08-30 19:08:46 UTC (rev 1288942)
@@ -5,7 +5,7 @@
 # Contributor: Ian Naval 
 
 pkgname=kubo
-pkgver=0.14.0
+pkgver=0.15.0
 pkgrel=1
 
 pkgdesc='A peer-to-peer hypermedia distribution protocol'
@@ -22,22 +22,18 @@
 makedepends=(go git)
 
 
source=(kubo-$pkgver.tar.gz::https://github.com/ipfs/kubo/releases/download/v$pkgver/kubo-source.tar.gz
-# https://github.com/ipfs/kubo/pull/8213#issuecomment-881866789
-rb.patch
 ipfs.service
 ipfs@.service)
 noextract=(kubo-$pkgver.tar.gz)
 
-sha512sums=('78d6be3f6e2250c260d697690b544d666817ac6826aee0871a867996b6aaeb8947b8d98a26dfab060e015801aa3e330a1956c20d6d3b1901d816acec7e2a7a92'
-
'5591bb5b309ccf6464723650831e7ed1bf6ffc7e18645c3563452df965091b94d265b079db92ae0b359aa964540b2ee1c1b60b3000102168bfd32730b640f12c'
-
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6'
-
'aed168a35228c4f873e0040d1412f3568bfe1ad1e94ffb8b1a2507058daaf75d7346381d299cf9f0b91951b21553170249ff5f45d5fc060e711cf628ab5e5aad')
+sha512sums=('26c1945c4ce641953e72a8f08802aa5acdd6c39fee3c1306bec0613a36b3d1ad79e23f7531427631848a6952ed950d27cd6a09f18352043bc145669b491843e6'
+
'b1d0b2ab3008adcd2c1871fe3ff57aa27cf43d6acbd4ab330f0d2efbba661a046b9c8a8cf514ddf131c5fce93ca5d91d10d516c4f39d98f33e4ac46aee1d0abb'
+
'a1254e40d0bacfceb92071de7f5331cd87cc454bf70be34e892af35dfc677fcf130903577c2a4e7fe6da6b5cedecb22dc0f73d1ad86f5aa27a8333d6bd85fe8c')
 
 prepare() {
   mkdir -p kubo
   tar -C kubo -xf kubo-$pkgver.tar.gz
   cd kubo
-  patch -Np1 -i ../rb.patch
 }
 
 build() {

Deleted: rb.patch
===
--- rb.patch2022-08-30 19:03:11 UTC (rev 1288941)
+++ rb.patch2022-08-30 19:08:46 UTC (rev 1288942)
@@ -1,13 +0,0 @@
-diff --git a/mk/golang.mk b/mk/golang.mk
-index 0b2a2c55a..2c7f24d75 100644
 a/mk/golang.mk
-+++ b/mk/golang.mk
-@@ -12,7 +12,7 @@ GOTFLAGS ?=
- unexport GOFLAGS
- # Override so we can combine with the user's go flags.
- # Try to make building as reproducible as possible by stripping the go path.
--override GOFLAGS += "-asmflags=all='-trimpath=$(GOPATH)'" 
"-gcflags=all='-trimpath=$(GOPATH)'"
-+override GOFLAGS += "-trimpath"
- 
- ifeq ($(tarball-is),1)
-GOFLAGS += -mod=vendor



[arch-commits] Commit in kubo/trunk (ipfs.service ipfs@.service)

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 19:03:11
  Author: demize
Revision: 1288941

Add Requires and Wants on network-online.target

Modified:
  kubo/trunk/ipfs.service
  kubo/trunk/ipfs@.service

---+
 ipfs.service  |2 ++
 ipfs@.service |2 ++
 2 files changed, 4 insertions(+)

Modified: ipfs.service
===
--- ipfs.service2022-08-30 18:59:04 UTC (rev 1288940)
+++ ipfs.service2022-08-30 19:03:11 UTC (rev 1288941)
@@ -1,5 +1,7 @@
 [Unit]
 Description=InterPlanetary File System (IPFS) daemon
+Wants=network-online.target
+After=network-online.target
 
 [Service]
 ExecStart=/usr/bin/ipfs daemon

Modified: ipfs@.service
===
--- ipfs@.service   2022-08-30 18:59:04 UTC (rev 1288940)
+++ ipfs@.service   2022-08-30 19:03:11 UTC (rev 1288941)
@@ -1,5 +1,7 @@
 [Unit]
 Description=InterPlanetary File System (IPFS) daemon
+Wants=network-online.target
+After=network-online.target
 
 [Service]
 User=%i



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:54:06
  Author: demize
Revision: 1288938

archrelease: copy trunk to community-any

Added:
  elixir/repos/community-any/PKGBUILD
(from rev 1288937, elixir/trunk/PKGBUILD)
Deleted:
  elixir/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 18:54:03 UTC (rev 1288937)
+++ PKGBUILD2022-08-30 18:54:06 UTC (rev 1288938)
@@ -1,39 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Sergej Pupykin 
-# Contributor: Gilbert Kennen 
-
-pkgname=elixir
-pkgver=1.13.3
-pkgrel=1
-
-pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
-url="https://elixir-lang.org";
-license=('Apache' 'custom:EPL')
-
-arch=('any')
-
-depends=('erlang-nox')
-checkdepends=('git')
-
-source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('652779f7199f5524e2df1747de0e373d8b9f1d1206df25b2e551cd0ad33f8440')
-
-build() {
-  cd elixir-"$pkgver"
-  make
-}
-
-check() {
-  cd elixir-"$pkgver"
-  ERL_EPMD_PORT=5369 make test
-
-  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
-  epmd -port 5369 -kill
-}
-
-package() {
-  cd elixir-"$pkgver"
-  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: elixir/repos/community-any/PKGBUILD (from rev 1288937, 
elixir/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 18:54:06 UTC (rev 1288938)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.13.4
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('95daf2dd3052e6ca7d4d849457eaaba09de52d65ca38d6933c65bc1cdf6b8579')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:54:03
  Author: demize
Revision: 1288937

upgpkg: elixir 1.13.4-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 18:49:42 UTC (rev 1288936)
+++ PKGBUILD2022-08-30 18:54:03 UTC (rev 1288937)
@@ -3,7 +3,7 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.13.3
+pkgver=1.13.4
 pkgrel=1
 
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
@@ -16,7 +16,7 @@
 checkdepends=('git')
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('652779f7199f5524e2df1747de0e373d8b9f1d1206df25b2e551cd0ad33f8440')
+sha256sums=('95daf2dd3052e6ca7d4d849457eaaba09de52d65ca38d6933c65bc1cdf6b8579')
 
 build() {
   cd elixir-"$pkgver"



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:49:42
  Author: demize
Revision: 1288936

archrelease: copy trunk to community-x86_64

Added:
  aspell-pl/repos/community-x86_64/PKGBUILD
(from rev 1288935, aspell-pl/trunk/PKGBUILD)
Deleted:
  aspell-pl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 18:49:36 UTC (rev 1288935)
+++ PKGBUILD2022-08-30 18:49:42 UTC (rev 1288936)
@@ -1,29 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Arkadiusz Laczynski 
-# Contributor: Jaroslav Lichtblau 
-
-pkgname=aspell-pl
-pkgver=20210731
-pkgrel=1
-pkgdesc='Polish dictionary for aspell'
-arch=('x86_64')
-url="https://www.sjp.pl/slownik/en/";
-license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
-depends=('aspell')
-source=(https://sources.archlinux.org/other/community/aspell-pl/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
-sha256sums=('bd20579c7207311d03dec039c28f01c0762693707dd35ccb8cc48bcf454d054c')
-
-build() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  ./configure
-  make
-}
-
-package() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  make DESTDIR="$pkgdir" install
-}

Copied: aspell-pl/repos/community-x86_64/PKGBUILD (from rev 1288935, 
aspell-pl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 18:49:42 UTC (rev 1288936)
@@ -0,0 +1,29 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Arkadiusz Laczynski 
+# Contributor: Jaroslav Lichtblau 
+
+pkgname=aspell-pl
+pkgver=20220801
+pkgrel=1
+pkgdesc='Polish dictionary for aspell'
+arch=('x86_64')
+url="https://www.sjp.pl/slownik/en/";
+license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
+depends=('aspell')
+source=(https://sources.archlinux.org/other/community/aspell-pl/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
+sha256sums=('51aec3b03595f35d1a88e93d3e1b526c4522f0e19fb0ebd43a981449b4972417')
+
+build() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  ./configure
+  make
+}
+
+package() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  make DESTDIR="$pkgdir" install
+}



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:49:36
  Author: demize
Revision: 1288935

upgpkg: aspell-pl 20220801-1

Modified:
  aspell-pl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 18:42:57 UTC (rev 1288934)
+++ PKGBUILD2022-08-30 18:49:36 UTC (rev 1288935)
@@ -5,7 +5,7 @@
 # Contributor: Jaroslav Lichtblau 
 
 pkgname=aspell-pl
-pkgver=20210731
+pkgver=20220801
 pkgrel=1
 pkgdesc='Polish dictionary for aspell'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
 depends=('aspell')
 
source=(https://sources.archlinux.org/other/community/aspell-pl/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
-sha256sums=('bd20579c7207311d03dec039c28f01c0762693707dd35ccb8cc48bcf454d054c')
+sha256sums=('51aec3b03595f35d1a88e93d3e1b526c4522f0e19fb0ebd43a981449b4972417')
 
 build() {
   cd aspell6-pl-6.0_$pkgver-0



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:39:19
  Author: demize
Revision: 1288930

archrelease: copy trunk to community-x86_64

Added:
  zathura-cb/repos/community-x86_64/PKGBUILD
(from rev 1288929, zathura-cb/trunk/PKGBUILD)
Deleted:
  zathura-cb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 18:39:16 UTC (rev 1288929)
+++ PKGBUILD2022-08-30 18:39:19 UTC (rev 1288930)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Lex Black 
-
-pkgname=zathura-cb
-pkgver=0.1.9
-pkgrel=1
-
-pkgdesc="Adds comic book support to zathura"
-url="https://git.pwmt.org/pwmt/zathura-cb";
-arch=('x86_64')
-license=('custom:zlib')
-
-depends=('zathura' 'libarchive' 'desktop-file-utils')
-makedepends=('meson' 'ninja')
-
-source=(zathura-cb-$pkgver.tar.gz::https://github.com/pwmt/zathura-cb/archive/$pkgver.tar.gz)
-
-sha512sums=('0ac5d614dcfebf3a0d2e0096c4f4ae02e0d1f879508aeba416d367c415be450f07b410effbd9de2c818b02de741d3001f15541e17a1a66a971ce4de779cfb75f')
-
-build() {
-  cd zathura-cb-$pkgver
-  arch-meson build
-
-  cd build
-  ninja
-}
-
-package() {
-  cd zathura-cb-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-  install -Dm664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: zathura-cb/repos/community-x86_64/PKGBUILD (from rev 1288929, 
zathura-cb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 18:39:19 UTC (rev 1288930)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Lex Black 
+
+pkgname=zathura-cb
+pkgver=0.1.10
+pkgrel=1
+
+pkgdesc="Adds comic book support to zathura"
+url="https://git.pwmt.org/pwmt/zathura-cb";
+arch=('x86_64')
+license=('custom:zlib')
+
+depends=('zathura' 'libarchive' 'desktop-file-utils')
+makedepends=('meson' 'ninja')
+
+source=(zathura-cb-$pkgver.tar.gz::https://pwmt.org/projects/zathura-cb/download/zathura-cb-$pkgver.tar.xz)
+
+sha256sums=('89b0ca17a80cba1ea9fd1b3b72f3a7173f0aad3a06a8c364d865c4999c18bbc8')
+
+build() {
+  cd zathura-cb-$pkgver
+  arch-meson build
+
+  cd build
+  ninja
+}
+
+package() {
+  cd zathura-cb-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+  install -Dm664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:39:16
  Author: demize
Revision: 1288929

upgpkg: zathura-cb 0.1.10-1

Modified:
  zathura-cb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 18:38:59 UTC (rev 1288928)
+++ PKGBUILD2022-08-30 18:39:16 UTC (rev 1288929)
@@ -2,7 +2,7 @@
 # Contributor: Lex Black 
 
 pkgname=zathura-cb
-pkgver=0.1.9
+pkgver=0.1.10
 pkgrel=1
 
 pkgdesc="Adds comic book support to zathura"
@@ -13,9 +13,9 @@
 depends=('zathura' 'libarchive' 'desktop-file-utils')
 makedepends=('meson' 'ninja')
 
-source=(zathura-cb-$pkgver.tar.gz::https://github.com/pwmt/zathura-cb/archive/$pkgver.tar.gz)
+source=(zathura-cb-$pkgver.tar.gz::https://pwmt.org/projects/zathura-cb/download/zathura-cb-$pkgver.tar.xz)
 
-sha512sums=('0ac5d614dcfebf3a0d2e0096c4f4ae02e0d1f879508aeba416d367c415be450f07b410effbd9de2c818b02de741d3001f15541e17a1a66a971ce4de779cfb75f')
+sha256sums=('89b0ca17a80cba1ea9fd1b3b72f3a7173f0aad3a06a8c364d865c4999c18bbc8')
 
 build() {
   cd zathura-cb-$pkgver



[arch-commits] Commit in zathura-pdf-mupdf/repos/community-x86_64 (4 files)

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:38:59
  Author: demize
Revision: 1288928

archrelease: copy trunk to community-x86_64

Added:
  
zathura-pdf-mupdf/repos/community-x86_64/0001-Remove-mupdf-linking-detection.patch
(from rev 1288927, 
zathura-pdf-mupdf/trunk/0001-Remove-mupdf-linking-detection.patch)
  zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD
(from rev 1288927, zathura-pdf-mupdf/trunk/PKGBUILD)
Deleted:
  
zathura-pdf-mupdf/repos/community-x86_64/0001-Remove-mupdf-linking-detection.patch
  zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD

---+
 0001-Remove-mupdf-linking-detection.patch |  152 ++--
 PKGBUILD  |   79 +++---
 2 files changed, 116 insertions(+), 115 deletions(-)

Deleted: 0001-Remove-mupdf-linking-detection.patch
===
--- 0001-Remove-mupdf-linking-detection.patch   2022-08-30 18:38:52 UTC (rev 
1288927)
+++ 0001-Remove-mupdf-linking-detection.patch   2022-08-30 18:38:59 UTC (rev 
1288928)
@@ -1,76 +0,0 @@
-From e91e5ad64d20eb4a7df377effc12ec21ba6f5f7c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
-Date: Fri, 18 Mar 2022 00:02:43 +0100
-Subject: [PATCH] Remove mupdf linking detection
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Johannes Löthberg 

- meson.build | 40 ++--
- 1 file changed, 14 insertions(+), 26 deletions(-)
-
-diff --git a/meson.build b/meson.build
-index c8c19dc..8174431 100644
 a/meson.build
-+++ b/meson.build
-@@ -19,8 +19,6 @@ zathura = dependency('zathura', version: '>=0.3.9')
- girara = dependency('girara-gtk3')
- glib = dependency('glib-2.0')
- cairo = dependency('cairo')
--mupdf = dependency('mupdf', required: false)
--mupdfthird = cc.find_library('mupdf-third')
- 
- build_dependencies = [
-   zathura,
-@@ -29,32 +27,22 @@ build_dependencies = [
-   cairo,
- ]
- 
--if not mupdf.found()
--  # normal build of mupdf
--  mupdf = cc.find_library('mupdf')
--  build_dependencies += [mupdf, mupdfthird]
--else
--  # build from Debian's libmupdf-dev
--  build_dependencies += [mupdf, mupdfthird]
-+mupdf = cc.find_library('mupdf')
-+mupdfthird = cc.find_library('mupdf-third')
- 
--  libjpeg = dependency('libjpeg')
--  libjbig2dec = cc.find_library('jbig2dec')
--  libopenjp2 = dependency('libopenjp2')
--  gumbo = dependency('gumbo')
--  tesseract = dependency('tesseract')
--  leptonica = dependency('lept')
--  mujs = dependency('mujs')
-+libjpeg = dependency('libjpeg')
-+libjbig2dec = cc.find_library('jbig2dec')
-+libopenjp2 = dependency('libopenjp2')
-+gumbo = dependency('gumbo')
- 
--  build_dependencies += [
--libjpeg,
--libjbig2dec,
--libopenjp2,
--gumbo,
--tesseract,
--leptonica,
--mujs
--  ]
--endif
-+build_dependencies += [
-+  mupdf,
-+  mupdfthird,
-+  libjpeg,
-+  libjbig2dec,
-+  libopenjp2,
-+  gumbo,
-+]
- 
- if get_option('plugindir') == ''
-   plugindir = zathura.get_pkgconfig_variable('plugindir')
--- 
-2.35.1
-

Copied: 
zathura-pdf-mupdf/repos/community-x86_64/0001-Remove-mupdf-linking-detection.patch
 (from rev 1288927, 
zathura-pdf-mupdf/trunk/0001-Remove-mupdf-linking-detection.patch)
===
--- 0001-Remove-mupdf-linking-detection.patch   (rev 0)
+++ 0001-Remove-mupdf-linking-detection.patch   2022-08-30 18:38:59 UTC (rev 
1288928)
@@ -0,0 +1,76 @@
+From e91e5ad64d20eb4a7df377effc12ec21ba6f5f7c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Fri, 18 Mar 2022 00:02:43 +0100
+Subject: [PATCH] Remove mupdf linking detection
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ meson.build | 40 ++--
+ 1 file changed, 14 insertions(+), 26 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index c8c19dc..8174431 100644
+--- a/meson.build
 b/meson.build
+@@ -19,8 +19,6 @@ zathura = dependency('zathura', version: '>=0.3.9')
+ girara = dependency('girara-gtk3')
+ glib = dependency('glib-2.0')
+ cairo = dependency('cairo')
+-mupdf = dependency('mupdf', required: false)
+-mupdfthird = cc.find_library('mupdf-third')
+ 
+ build_dependencies = [
+   zathura,
+@@ -29,32 +27,22 @@ build_dependencies = [
+   cairo,
+ ]
+ 
+-if not mupdf.found()
+-  # normal build of mupdf
+-  mupdf = cc.find_library('mupdf')
+-  build_dependencies += [mupdf, mupdfthird]
+-else
+-  # build from Debian's libmupdf-dev
+-  build_dependencies += [mupdf, mupdfthird]
++mupdf = cc.find_library('mupdf')
++mupdfthird = cc.find_library('mupdf-third')
+ 
+-  libjpeg = dependency('libjpeg')
+-  libjbig2dec = cc.find_library('jbig2dec')
+-  libopenjp2 = dependency('libopenjp2')
+-  gumbo = dependency('gumbo')
+-  tesseract = dep

[arch-commits] Commit in zathura-pdf-mupdf/trunk (PKGBUILD)

2022-08-30 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 30, 2022 @ 18:38:52
  Author: demize
Revision: 1288927

upgpkg: zathura-pdf-mupdf 0.3.9-1

Modified:
  zathura-pdf-mupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 18:37:28 UTC (rev 1288926)
+++ PKGBUILD2022-08-30 18:38:52 UTC (rev 1288927)
@@ -4,7 +4,7 @@
 # Contributor: Moritz Lipp 
 
 pkgname=zathura-pdf-mupdf
-pkgver=0.3.8
+pkgver=0.3.9
 pkgrel=1
 
 pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
@@ -17,10 +17,11 @@
 depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 'openjpeg2' 'openssl' 
'zathura')
 makedepends=('libmupdf' 'meson' 'ninja' 'git')
 
-source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://github.com/pwmt/zathura-pdf-mupdf/archive/$pkgver.tar.gz
+source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://pwmt.org/projects/zathura-pdf-mupdf/download/zathura-pdf-mupdf-$pkgver.tar.xz
 0001-Remove-mupdf-linking-detection.patch)
 
-sha256sums=('ba19c187fc8a441dcfb4d793624eadaea99e0d320b1e33ca25dd62be2b68bcea' 
SKIP)
+sha256sums=('77f795ea1745b695a50b6864e73569d4ed8ac0eaa4ee2e6069e725c932057c07'
+'8b51563a782a7dea38711335354bf65e2303b06bfecacf9cc060ecfc7b0851b8')
 
 prepare() {
   cd zathura-pdf-mupdf-$pkgver



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

2022-04-02 Thread Johannes Löthberg via arch-commits
Date: Saturday, April 2, 2022 @ 16:11:32
  Author: demize
Revision: 1180846

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
(from rev 1180845, elixir/trunk/PKGBUILD)

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 1180845, 
elixir/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2022-04-02 16:11:32 UTC (rev 1180846)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.13.3
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('652779f7199f5524e2df1747de0e373d8b9f1d1206df25b2e551cd0ad33f8440')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2022-04-02 Thread Johannes Löthberg via arch-commits
Date: Saturday, April 2, 2022 @ 16:11:26
  Author: demize
Revision: 1180845

upgpkg: elixir 1.13.3-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-02 16:10:39 UTC (rev 1180844)
+++ PKGBUILD2022-04-02 16:11:26 UTC (rev 1180845)
@@ -3,7 +3,7 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.13.2
+pkgver=1.13.3
 pkgrel=1
 
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
@@ -16,7 +16,7 @@
 checkdepends=('git')
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('03afed42dccf4347c4d3ae2b905134093a3ba2245d0d3098d75009a1d659ed1a')
+sha256sums=('652779f7199f5524e2df1747de0e373d8b9f1d1206df25b2e551cd0ad33f8440')
 
 build() {
   cd elixir-"$pkgver"



[arch-commits] Commit in zathura-pdf-mupdf/repos (3 files)

2022-03-17 Thread Johannes Löthberg via arch-commits
Date: Thursday, March 17, 2022 @ 23:16:09
  Author: demize
Revision: 1157277

archrelease: copy trunk to community-testing-x86_64

Added:
  zathura-pdf-mupdf/repos/community-testing-x86_64/
  
zathura-pdf-mupdf/repos/community-testing-x86_64/0001-Remove-mupdf-linking-detection.patch
(from rev 1157276, 
zathura-pdf-mupdf/trunk/0001-Remove-mupdf-linking-detection.patch)
  zathura-pdf-mupdf/repos/community-testing-x86_64/PKGBUILD
(from rev 1157276, zathura-pdf-mupdf/trunk/PKGBUILD)

---+
 0001-Remove-mupdf-linking-detection.patch |   76 
 PKGBUILD  |   39 ++
 2 files changed, 115 insertions(+)

Copied: 
zathura-pdf-mupdf/repos/community-testing-x86_64/0001-Remove-mupdf-linking-detection.patch
 (from rev 1157276, 
zathura-pdf-mupdf/trunk/0001-Remove-mupdf-linking-detection.patch)
===
--- community-testing-x86_64/0001-Remove-mupdf-linking-detection.patch  
(rev 0)
+++ community-testing-x86_64/0001-Remove-mupdf-linking-detection.patch  
2022-03-17 23:16:09 UTC (rev 1157277)
@@ -0,0 +1,76 @@
+From e91e5ad64d20eb4a7df377effc12ec21ba6f5f7c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Fri, 18 Mar 2022 00:02:43 +0100
+Subject: [PATCH] Remove mupdf linking detection
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ meson.build | 40 ++--
+ 1 file changed, 14 insertions(+), 26 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index c8c19dc..8174431 100644
+--- a/meson.build
 b/meson.build
+@@ -19,8 +19,6 @@ zathura = dependency('zathura', version: '>=0.3.9')
+ girara = dependency('girara-gtk3')
+ glib = dependency('glib-2.0')
+ cairo = dependency('cairo')
+-mupdf = dependency('mupdf', required: false)
+-mupdfthird = cc.find_library('mupdf-third')
+ 
+ build_dependencies = [
+   zathura,
+@@ -29,32 +27,22 @@ build_dependencies = [
+   cairo,
+ ]
+ 
+-if not mupdf.found()
+-  # normal build of mupdf
+-  mupdf = cc.find_library('mupdf')
+-  build_dependencies += [mupdf, mupdfthird]
+-else
+-  # build from Debian's libmupdf-dev
+-  build_dependencies += [mupdf, mupdfthird]
++mupdf = cc.find_library('mupdf')
++mupdfthird = cc.find_library('mupdf-third')
+ 
+-  libjpeg = dependency('libjpeg')
+-  libjbig2dec = cc.find_library('jbig2dec')
+-  libopenjp2 = dependency('libopenjp2')
+-  gumbo = dependency('gumbo')
+-  tesseract = dependency('tesseract')
+-  leptonica = dependency('lept')
+-  mujs = dependency('mujs')
++libjpeg = dependency('libjpeg')
++libjbig2dec = cc.find_library('jbig2dec')
++libopenjp2 = dependency('libopenjp2')
++gumbo = dependency('gumbo')
+ 
+-  build_dependencies += [
+-libjpeg,
+-libjbig2dec,
+-libopenjp2,
+-gumbo,
+-tesseract,
+-leptonica,
+-mujs
+-  ]
+-endif
++build_dependencies += [
++  mupdf,
++  mupdfthird,
++  libjpeg,
++  libjbig2dec,
++  libopenjp2,
++  gumbo,
++]
+ 
+ if get_option('plugindir') == ''
+   plugindir = zathura.get_pkgconfig_variable('plugindir')
+-- 
+2.35.1
+

Copied: zathura-pdf-mupdf/repos/community-testing-x86_64/PKGBUILD (from rev 
1157276, zathura-pdf-mupdf/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-03-17 23:16:09 UTC (rev 1157277)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: Moritz Lipp 
+
+pkgname=zathura-pdf-mupdf
+pkgver=0.3.8
+pkgrel=1
+
+pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
+url="https://pwmt.org/projects/zathura-pdf-mupdf/";
+arch=('x86_64')
+license=('zlib')
+
+conflicts=('zathura-pdf-poppler')
+
+depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 'openjpeg2' 'openssl' 
'zathura')
+makedepends=('libmupdf' 'meson' 'ninja' 'git')
+
+source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://github.com/pwmt/zathura-pdf-mupdf/archive/$pkgver.tar.gz
+0001-Remove-mupdf-linking-detection.patch)
+
+sha256sums=('ba19c187fc8a441dcfb4d793624eadaea99e0d320b1e33ca25dd62be2b68bcea' 
SKIP)
+
+prepare() {
+  cd zathura-pdf-mupdf-$pkgver
+  patch -p1 <"$srcdir"/0001-Remove-mupdf-linking-detection.patch
+}
+
+build() {
+  cd zathura-pdf-mupdf-$pkgver
+  arch-meson build
+  ninja -C build
+}
+
+package(){
+  DESTDIR="$pkgdir" ninja -C zathura-pdf-mupdf-$pkgver/build install
+  install -Dm0644 zathura-pdf-mupdf-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in zathura-pdf-mupdf/trunk (2 files)

2022-03-17 Thread Johannes Löthberg via arch-commits
Date: Thursday, March 17, 2022 @ 23:16:06
  Author: demize
Revision: 1157276

upgpkg: zathura-pdf-mupdf 0.3.8-1

Added:
  zathura-pdf-mupdf/trunk/0001-Remove-mupdf-linking-detection.patch
Modified:
  zathura-pdf-mupdf/trunk/PKGBUILD

---+
 0001-Remove-mupdf-linking-detection.patch |   76 
 PKGBUILD  |   14 +++--
 2 files changed, 86 insertions(+), 4 deletions(-)

Added: 0001-Remove-mupdf-linking-detection.patch
===
--- 0001-Remove-mupdf-linking-detection.patch   (rev 0)
+++ 0001-Remove-mupdf-linking-detection.patch   2022-03-17 23:16:06 UTC (rev 
1157276)
@@ -0,0 +1,76 @@
+From e91e5ad64d20eb4a7df377effc12ec21ba6f5f7c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Fri, 18 Mar 2022 00:02:43 +0100
+Subject: [PATCH] Remove mupdf linking detection
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ meson.build | 40 ++--
+ 1 file changed, 14 insertions(+), 26 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index c8c19dc..8174431 100644
+--- a/meson.build
 b/meson.build
+@@ -19,8 +19,6 @@ zathura = dependency('zathura', version: '>=0.3.9')
+ girara = dependency('girara-gtk3')
+ glib = dependency('glib-2.0')
+ cairo = dependency('cairo')
+-mupdf = dependency('mupdf', required: false)
+-mupdfthird = cc.find_library('mupdf-third')
+ 
+ build_dependencies = [
+   zathura,
+@@ -29,32 +27,22 @@ build_dependencies = [
+   cairo,
+ ]
+ 
+-if not mupdf.found()
+-  # normal build of mupdf
+-  mupdf = cc.find_library('mupdf')
+-  build_dependencies += [mupdf, mupdfthird]
+-else
+-  # build from Debian's libmupdf-dev
+-  build_dependencies += [mupdf, mupdfthird]
++mupdf = cc.find_library('mupdf')
++mupdfthird = cc.find_library('mupdf-third')
+ 
+-  libjpeg = dependency('libjpeg')
+-  libjbig2dec = cc.find_library('jbig2dec')
+-  libopenjp2 = dependency('libopenjp2')
+-  gumbo = dependency('gumbo')
+-  tesseract = dependency('tesseract')
+-  leptonica = dependency('lept')
+-  mujs = dependency('mujs')
++libjpeg = dependency('libjpeg')
++libjbig2dec = cc.find_library('jbig2dec')
++libopenjp2 = dependency('libopenjp2')
++gumbo = dependency('gumbo')
+ 
+-  build_dependencies += [
+-libjpeg,
+-libjbig2dec,
+-libopenjp2,
+-gumbo,
+-tesseract,
+-leptonica,
+-mujs
+-  ]
+-endif
++build_dependencies += [
++  mupdf,
++  mupdfthird,
++  libjpeg,
++  libjbig2dec,
++  libopenjp2,
++  gumbo,
++]
+ 
+ if get_option('plugindir') == ''
+   plugindir = zathura.get_pkgconfig_variable('plugindir')
+-- 
+2.35.1
+

Modified: PKGBUILD
===
--- PKGBUILD2022-03-17 23:15:54 UTC (rev 1157275)
+++ PKGBUILD2022-03-17 23:16:06 UTC (rev 1157276)
@@ -4,7 +4,7 @@
 # Contributor: Moritz Lipp 
 
 pkgname=zathura-pdf-mupdf
-pkgver=0.3.7
+pkgver=0.3.8
 pkgrel=1
 
 pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
@@ -17,13 +17,19 @@
 depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 'openjpeg2' 'openssl' 
'zathura')
 makedepends=('libmupdf' 'meson' 'ninja' 'git')
 
-source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://pwmt.org/projects/zathura-pdf-mupdf/download/zathura-pdf-mupdf-$pkgver.tar.xz)
+source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://github.com/pwmt/zathura-pdf-mupdf/archive/$pkgver.tar.gz
+0001-Remove-mupdf-linking-detection.patch)
 
-sha256sums=('2f00aa682d4d4a6324c9777bf158e51584c77729ec393f3e10343bec936ea21d')
+sha256sums=('ba19c187fc8a441dcfb4d793624eadaea99e0d320b1e33ca25dd62be2b68bcea' 
SKIP)
 
+prepare() {
+  cd zathura-pdf-mupdf-$pkgver
+  patch -p1 <"$srcdir"/0001-Remove-mupdf-linking-detection.patch
+}
+
 build() {
   cd zathura-pdf-mupdf-$pkgver
-  arch-meson -Dlink-external=true build
+  arch-meson build
   ninja -C build
 }
 



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

2022-03-17 Thread Johannes Löthberg via arch-commits
Date: Thursday, March 17, 2022 @ 23:15:54
  Author: demize
Revision: 1157275

archrelease: copy trunk to community-testing-x86_64

Added:
  zathura/repos/community-testing-x86_64/
  zathura/repos/community-testing-x86_64/PKGBUILD
(from rev 1157274, zathura/trunk/PKGBUILD)

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

Copied: zathura/repos/community-testing-x86_64/PKGBUILD (from rev 1157274, 
zathura/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-03-17 23:15:54 UTC (rev 1157275)
@@ -0,0 +1,46 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: ML 
+
+pkgname=zathura
+pkgver=0.4.9
+pkgrel=1
+
+pkgdesc="Minimalistic document viewer"
+url="https://pwmt.org/projects/zathura/";
+arch=('x86_64')
+license=('custom')
+
+makedepends=('python-sphinx' 'texlive-bin' 'meson' 'ninja' 'appstream-glib' 
'check')
+depends=('girara>=0.2.7' 'sqlite' 'desktop-file-utils' 'file' 'libsynctex')
+optdepends=('zathura-djvu: DjVu support'
+'zathura-pdf-poppler: PDF support using Poppler'
+'zathura-pdf-mupdf: PDF support using MuPDF'
+'zathura-ps: PostScript support'
+'zathura-cb: Comic book support')
+
+source=(zathura-$pkgver.tar.gz::https://github.com/pwmt/zathura/archive/$pkgver.tar.gz)
+
+sha256sums=('82235cbc89899421fca98477265626f2149df7d072740f0360550cc8d4e449d6')
+
+build() {
+  cd zathura-$pkgver
+  arch-meson build
+
+  cd build
+  ninja
+}
+
+check() {
+  cd zathura-$pkgver/build
+
+  ninja test
+}
+
+package() {
+  cd zathura-$pkgver/build
+  DESTDIR="$pkgdir" ninja install
+
+  install -D -m664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-03-17 Thread Johannes Löthberg via arch-commits
Date: Thursday, March 17, 2022 @ 23:15:52
  Author: demize
Revision: 1157274

upgpkg: zathura 0.4.9-1

Modified:
  zathura/trunk/PKGBUILD
Deleted:
  zathura/trunk/0001-meson.build-Don-t-do-broken-synctex-version-check.patch

--+
 0001-meson.build-Don-t-do-broken-synctex-version-check.patch |   30 --
 PKGBUILD |4 -
 2 files changed, 2 insertions(+), 32 deletions(-)

Deleted: 0001-meson.build-Don-t-do-broken-synctex-version-check.patch
===
--- 0001-meson.build-Don-t-do-broken-synctex-version-check.patch
2022-03-17 23:15:47 UTC (rev 1157273)
+++ 0001-meson.build-Don-t-do-broken-synctex-version-check.patch
2022-03-17 23:15:52 UTC (rev 1157274)
@@ -1,30 +0,0 @@
-From 024f228c45a1df3f01dada4e72e99dd7a76ecf26 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
-Date: Sun, 27 May 2018 02:11:24 +0200
-Subject: [PATCH] meson.build: Don't do broken synctex version check
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Johannes Löthberg 

- meson.build | 3 ---
- 1 file changed, 3 deletions(-)
-
-diff --git a/meson.build b/meson.build
-index 1862fa0..63246e8 100644
 a/meson.build
-+++ b/meson.build
-@@ -82,9 +82,6 @@ endif
- if get_option('enable-synctex') and synctex.found()
-   build_dependencies += synctex
-   defines += '-DWITH_SYNCTEX'
--  if synctex.version() < '2.0.0'
--defines += '-DWITH_SYNCTEX1'
--  endif
- endif
- 
- if get_option('enable-magic') and magic.found()
--- 
-2.17.0
-

Modified: PKGBUILD
===
--- PKGBUILD2022-03-17 23:15:47 UTC (rev 1157273)
+++ PKGBUILD2022-03-17 23:15:52 UTC (rev 1157274)
@@ -4,7 +4,7 @@
 # Contributor: ML 
 
 pkgname=zathura
-pkgver=0.4.8
+pkgver=0.4.9
 pkgrel=1
 
 pkgdesc="Minimalistic document viewer"
@@ -22,7 +22,7 @@
 
 
source=(zathura-$pkgver.tar.gz::https://github.com/pwmt/zathura/archive/$pkgver.tar.gz)
 
-sha1sums=('262d69e76987c57fe8d899e3ea3d8faa80aa9207')
+sha256sums=('82235cbc89899421fca98477265626f2149df7d072740f0360550cc8d4e449d6')
 
 build() {
   cd zathura-$pkgver



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

2022-03-17 Thread Johannes Löthberg via arch-commits
Date: Thursday, March 17, 2022 @ 23:15:41
  Author: demize
Revision: 1157272

upgpkg: girara 0.3.7-1

Modified:
  girara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-17 23:14:42 UTC (rev 1157271)
+++ PKGBUILD2022-03-17 23:15:41 UTC (rev 1157272)
@@ -4,7 +4,7 @@
 # Contributor: mlq 
 
 pkgname=girara
-pkgver=0.3.6
+pkgver=0.3.7
 pkgrel=1
 
 pkgdesc="User interface library focused on simplicity and minimalism"
@@ -19,10 +19,9 @@
 depends=('gtk3' 'glib2' 'json-c' 'pango')
 makedepends=('meson' 'ninja' 'doxygen' 'check')
 
-source=(https://pwmt.org/projects/girara/download/girara-$pkgver.tar.xz)
 
source=(girara-$pkgver.tar.gz::https://github.com/pwmt/girara/archive/$pkgver.tar.gz)
 
-sha512sums=('29b73d085669ef0d5cbbcdc8169bfdc2b08bffc9a98ec95ea41c61b2a7b9823e6c8c0f4e8cb543ed517f4b8c3742b164273e2c7c48506b7a60d7f395e73c1391')
+sha512sums=('19bfc1c8f5e19315a5bf0fd7ca0f60fb396af8d79663147db24564d93f4a31303d418d9c84eb11614ce8f4526ee65d15d95fa8b9c06e27f0da35e0248c6a8622')
 
 build() {
   cd girara-$pkgver



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

2022-03-17 Thread Johannes Löthberg via arch-commits
Date: Thursday, March 17, 2022 @ 23:15:47
  Author: demize
Revision: 1157273

archrelease: copy trunk to community-testing-x86_64

Added:
  girara/repos/community-testing-x86_64/
  girara/repos/community-testing-x86_64/PKGBUILD
(from rev 1157272, girara/trunk/PKGBUILD)

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

Copied: girara/repos/community-testing-x86_64/PKGBUILD (from rev 1157272, 
girara/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-03-17 23:15:47 UTC (rev 1157273)
@@ -0,0 +1,45 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: mlq 
+
+pkgname=girara
+pkgver=0.3.7
+pkgrel=1
+
+pkgdesc="User interface library focused on simplicity and minimalism"
+url="https://pwmt.org/projects/girara";
+arch=('x86_64')
+license=('custom')
+
+provides=('girara-gtk3' 'girara-common')
+replaces=('girara-gtk3' 'girara-common')
+conflicts=('girara-gtk3' 'girara-common')
+
+depends=('gtk3' 'glib2' 'json-c' 'pango')
+makedepends=('meson' 'ninja' 'doxygen' 'check')
+
+source=(girara-$pkgver.tar.gz::https://github.com/pwmt/girara/archive/$pkgver.tar.gz)
+
+sha512sums=('19bfc1c8f5e19315a5bf0fd7ca0f60fb396af8d79663147db24564d93f4a31303d418d9c84eb11614ce8f4526ee65d15d95fa8b9c06e27f0da35e0248c6a8622')
+
+build() {
+  cd girara-$pkgver
+  arch-meson build
+
+  cd build
+  ninja
+}
+
+check() {
+  cd girara-$pkgver/build
+
+  ninja test
+}
+
+package() {
+  cd girara-$pkgver/build
+  DESTDIR="$pkgdir/" ninja install
+
+  install -D -m664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-01-22 Thread Johannes Löthberg via arch-commits
Date: Saturday, January 22, 2022 @ 18:07:55
  Author: demize
Revision: 1113469

upgpkg: python-pysaml2 7.1.0-1

Modified:
  python-pysaml2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-01-22 18:07:39 UTC (rev 1113468)
+++ PKGBUILD2022-01-22 18:07:55 UTC (rev 1113469)
@@ -2,8 +2,8 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=python-pysaml2
-pkgver=6.5.1
-pkgrel=3
+pkgver=7.1.0
+pkgrel=1
 
 pkgdesc='Python implementation of SAML Version 2'
 url='https://pypi.python.org/pypi/pysaml2'
@@ -27,7 +27,7 @@
 
 source=("https://pypi.org/packages/source/p/pysaml2/pysaml2-$pkgver.tar.gz";)
 
-md5sums=('50865443d5d8d922ea11cdfc262a5a19')
+md5sums=('0a80697d8db3361f355018466c2fa1e2')
 
 build() {
cd "$srcdir"/pysaml2-$pkgver



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

2022-01-22 Thread Johannes Löthberg via arch-commits
Date: Saturday, January 22, 2022 @ 18:07:36
  Author: demize
Revision: 1113467

upgpkg: python-pycryptodomex 3.12.0-1

Modified:
  python-pycryptodomex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-01-22 18:06:09 UTC (rev 1113466)
+++ PKGBUILD2022-01-22 18:07:36 UTC (rev 1113467)
@@ -3,8 +3,8 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=python-pycryptodomex
-pkgver=3.10.1
-pkgrel=3
+pkgver=3.12.0
+pkgrel=1
 
 pkgdesc='A self-contained Python package of low-level cryptographic primitives'
 url='https://www.pycryptodome.org/'
@@ -14,8 +14,8 @@
 depends=('python')
 makedepends=('python-setuptools')
 
-source=("https://pypi.org/packages/source/p/pycryptodomex/pycryptodomex-$pkgver.tar.gz";)
-sha512sums=('0ffd37e75caf6472529bbc231c7e74290267094eb3a6013a55d32dc6e11313017bb8161bdfef6c96e911e788b837caa445a9e1fe3e17e5e0254c139378f2a5e6')
+source=("https://pypi.org/packages/source/p/pycryptodomex/pycryptodomex-$pkgver.zip";)
+sha512sums=('fca639c5e31a59ca16e524894873f8bbedabb12b3697b5a6a11001c3479ea534ff8a5a7b9c90ea7eae5eacdb3fa7770c92e0317ab620c8e016e2be3c2a77ab78')
 
 build() {
cd "$srcdir"/pycryptodomex-$pkgver



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

2022-01-22 Thread Johannes Löthberg via arch-commits
Date: Saturday, January 22, 2022 @ 18:06:09
  Author: demize
Revision: 1113466

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
(from rev 1113465, elixir/trunk/PKGBUILD)

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 1113465, 
elixir/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2022-01-22 18:06:09 UTC (rev 1113466)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.13.2
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('03afed42dccf4347c4d3ae2b905134093a3ba2245d0d3098d75009a1d659ed1a')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2022-01-22 Thread Johannes Löthberg via arch-commits
Date: Saturday, January 22, 2022 @ 18:06:03
  Author: demize
Revision: 1113465

upgpkg: elixir 1.13.2-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-01-22 17:25:29 UTC (rev 1113464)
+++ PKGBUILD2022-01-22 18:06:03 UTC (rev 1113465)
@@ -3,7 +3,7 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.13.0
+pkgver=1.13.2
 pkgrel=1
 
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
@@ -16,7 +16,7 @@
 checkdepends=('git')
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('0ed0fb89a9b6428cd1537b7f9aab1d6ea64e0c5972589eeb46dff6f0324468ae')
+sha256sums=('03afed42dccf4347c4d3ae2b905134093a3ba2245d0d3098d75009a1d659ed1a')
 
 build() {
   cd elixir-"$pkgver"



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

2021-12-09 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 9, 2021 @ 22:36:44
  Author: demize
Revision: 1065913

archrelease: copy trunk to community-testing-x86_64

Added:
  go-ipfs/repos/community-testing-x86_64/
  go-ipfs/repos/community-testing-x86_64/PKGBUILD
(from rev 1065912, go-ipfs/trunk/PKGBUILD)
  go-ipfs/repos/community-testing-x86_64/ipfs.service
(from rev 1065912, go-ipfs/trunk/ipfs.service)
  go-ipfs/repos/community-testing-x86_64/ipfs@.service
(from rev 1065912, go-ipfs/trunk/ipfs@.service)
  go-ipfs/repos/community-testing-x86_64/rb.patch
(from rev 1065912, go-ipfs/trunk/rb.patch)

---+
 PKGBUILD  |   61 
 ipfs.service  |9 
 ipfs@.service |   10 +
 rb.patch  |   13 +++
 4 files changed, 93 insertions(+)

Copied: go-ipfs/repos/community-testing-x86_64/PKGBUILD (from rev 1065912, 
go-ipfs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-12-09 22:36:44 UTC (rev 1065913)
@@ -0,0 +1,61 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Anatol Pomozov
+# Contributor: kpcyrd 
+# Contributor: Frederik “Freso” S. Olesen 
+# Contributor: Ian Naval 
+
+pkgname=go-ipfs
+pkgver=0.11.0
+pkgrel=1
+
+pkgdesc='A peer-to-peer hypermedia distribution protocol'
+url='https://ipfs.io/'
+arch=(x86_64)
+license=(MIT)
+
+depends=(glibc)
+optdepends=('fuse2: for mounting/advanced use')
+makedepends=(go git)
+
+source=(go-ipfs-$pkgver.tar.gz::https://github.com/ipfs/go-ipfs/releases/download/v$pkgver/go-ipfs-source.tar.gz
+# https://github.com/ipfs/go-ipfs/pull/8213#issuecomment-881866789
+rb.patch
+ipfs.service
+ipfs@.service)
+noextract=(go-ipfs-$pkgver.tar.gz)
+
+sha512sums=('4d94b697030d701969479559712e823dab14f98a1dea1418dc6ba2210a31b11ab9835db8b17d188f5fc15b2f0de260cb4c90e2e05915bda72e9dff4411cb6a86'
+
'5591bb5b309ccf6464723650831e7ed1bf6ffc7e18645c3563452df965091b94d265b079db92ae0b359aa964540b2ee1c1b60b3000102168bfd32730b640f12c'
+
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6'
+
'aed168a35228c4f873e0040d1412f3568bfe1ad1e94ffb8b1a2507058daaf75d7346381d299cf9f0b91951b21553170249ff5f45d5fc060e711cf628ab5e5aad')
+
+prepare() {
+  mkdir -p go-ipfs
+  tar -C go-ipfs -xf go-ipfs-$pkgver.tar.gz
+  cd go-ipfs
+  patch -Np1 -i ../rb.patch
+}
+
+build() {
+  cd go-ipfs
+
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
+  make build
+
+  cmd/ipfs/ipfs commands completion bash >"$srcdir"/ipfs-completion.bash
+}
+
+package() {
+  cd go-ipfs
+  install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
+  install -Dm 644 "$srcdir"/ipfs.service 
"$pkgdir/usr/lib/systemd/user/ipfs.service"
+  install -Dm 644 "$srcdir"/ipfs@.service 
"$pkgdir/usr/lib/systemd/system/ipfs@.service"
+  install -Dm 644 "$srcdir"/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/MIT" LICENSE-MIT
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/APACHE" 
LICENSE-APACHE
+  install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}

Copied: go-ipfs/repos/community-testing-x86_64/ipfs.service (from rev 1065912, 
go-ipfs/trunk/ipfs.service)
===
--- community-testing-x86_64/ipfs.service   (rev 0)
+++ community-testing-x86_64/ipfs.service   2021-12-09 22:36:44 UTC (rev 
1065913)
@@ -0,0 +1,9 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+
+[Service]
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target

Copied: go-ipfs/repos/community-testing-x86_64/ipfs@.service (from rev 1065912, 
go-ipfs/trunk/ipfs@.service)
===
--- community-testing-x86_64/ipfs@.service  (rev 0)
+++ community-testing-x86_64/ipfs@.service  2021-12-09 22:36:44 UTC (rev 
1065913)
@@ -0,0 +1,10 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+
+[Service]
+User=%i
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target

Copied: go-ipfs/repos/community-testing-x86_64/rb.patch (from rev 1065912, 
go-ipfs/trunk/rb.patch)
===
--- community-testing-x86_64/rb.patch   (rev 0)
+++ community-testing-x86_64/rb.patch   2021-12-09 22:36:44 UTC (rev 1065913)
@@ -0,0 +1,13 @@
+diff --git a/mk/golang.mk b/mk/golang.mk
+index 0b2a2c55a..2c7f24d75 100644
+--- a/mk/golang.mk
 b/mk/golang.mk
+@@ -12,7 +

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

2021-12-09 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 9, 2021 @ 22:36:35
  Author: demize
Revision: 1065912

upgpkg: go-ipfs 0.11.0-1

Modified:
  go-ipfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-09 22:33:52 UTC (rev 1065911)
+++ PKGBUILD2021-12-09 22:36:35 UTC (rev 1065912)
@@ -5,7 +5,7 @@
 # Contributor: Ian Naval 
 
 pkgname=go-ipfs
-pkgver=0.10.0
+pkgver=0.11.0
 pkgrel=1
 
 pkgdesc='A peer-to-peer hypermedia distribution protocol'
@@ -24,7 +24,7 @@
 ipfs@.service)
 noextract=(go-ipfs-$pkgver.tar.gz)
 
-sha512sums=('83e961db8f988d69638d82f2c6cad70f58c236a6d52815a89a4c74ef03ed83a953377c0906d8717f1c3b4b3c812faa40034c53225fdfeaab225733a89656efb4'
+sha512sums=('4d94b697030d701969479559712e823dab14f98a1dea1418dc6ba2210a31b11ab9835db8b17d188f5fc15b2f0de260cb4c90e2e05915bda72e9dff4411cb6a86'
 
'5591bb5b309ccf6464723650831e7ed1bf6ffc7e18645c3563452df965091b94d265b079db92ae0b359aa964540b2ee1c1b60b3000102168bfd32730b640f12c'
 
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6'
 
'aed168a35228c4f873e0040d1412f3568bfe1ad1e94ffb8b1a2507058daaf75d7346381d299cf9f0b91951b21553170249ff5f45d5fc060e711cf628ab5e5aad')



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:50:05
  Author: demize
Revision: 1065046

archrelease: copy trunk to community-testing-x86_64

Added:
  go-ipfs/repos/community-testing-x86_64/
  go-ipfs/repos/community-testing-x86_64/PKGBUILD
(from rev 1065045, go-ipfs/trunk/PKGBUILD)
  go-ipfs/repos/community-testing-x86_64/ipfs.service
(from rev 1065045, go-ipfs/trunk/ipfs.service)
  go-ipfs/repos/community-testing-x86_64/ipfs@.service
(from rev 1065045, go-ipfs/trunk/ipfs@.service)
  go-ipfs/repos/community-testing-x86_64/rb.patch
(from rev 1065045, go-ipfs/trunk/rb.patch)

---+
 PKGBUILD  |   61 
 ipfs.service  |9 
 ipfs@.service |   10 +
 rb.patch  |   13 +++
 4 files changed, 93 insertions(+)

Copied: go-ipfs/repos/community-testing-x86_64/PKGBUILD (from rev 1065045, 
go-ipfs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-12-04 16:50:05 UTC (rev 1065046)
@@ -0,0 +1,61 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Anatol Pomozov
+# Contributor: kpcyrd 
+# Contributor: Frederik “Freso” S. Olesen 
+# Contributor: Ian Naval 
+
+pkgname=go-ipfs
+pkgver=0.10.0
+pkgrel=1
+
+pkgdesc='A peer-to-peer hypermedia distribution protocol'
+url='https://ipfs.io/'
+arch=(x86_64)
+license=(MIT)
+
+depends=(glibc)
+optdepends=('fuse2: for mounting/advanced use')
+makedepends=(go git)
+
+source=(go-ipfs-$pkgver.tar.gz::https://github.com/ipfs/go-ipfs/releases/download/v$pkgver/go-ipfs-source.tar.gz
+# https://github.com/ipfs/go-ipfs/pull/8213#issuecomment-881866789
+rb.patch
+ipfs.service
+ipfs@.service)
+noextract=(go-ipfs-$pkgver.tar.gz)
+
+sha512sums=('83e961db8f988d69638d82f2c6cad70f58c236a6d52815a89a4c74ef03ed83a953377c0906d8717f1c3b4b3c812faa40034c53225fdfeaab225733a89656efb4'
+
'5591bb5b309ccf6464723650831e7ed1bf6ffc7e18645c3563452df965091b94d265b079db92ae0b359aa964540b2ee1c1b60b3000102168bfd32730b640f12c'
+
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6'
+
'aed168a35228c4f873e0040d1412f3568bfe1ad1e94ffb8b1a2507058daaf75d7346381d299cf9f0b91951b21553170249ff5f45d5fc060e711cf628ab5e5aad')
+
+prepare() {
+  mkdir -p go-ipfs
+  tar -C go-ipfs -xf go-ipfs-$pkgver.tar.gz
+  cd go-ipfs
+  patch -Np1 -i ../rb.patch
+}
+
+build() {
+  cd go-ipfs
+
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
+  make build
+
+  cmd/ipfs/ipfs commands completion bash >"$srcdir"/ipfs-completion.bash
+}
+
+package() {
+  cd go-ipfs
+  install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
+  install -Dm 644 "$srcdir"/ipfs.service 
"$pkgdir/usr/lib/systemd/user/ipfs.service"
+  install -Dm 644 "$srcdir"/ipfs@.service 
"$pkgdir/usr/lib/systemd/system/ipfs@.service"
+  install -Dm 644 "$srcdir"/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/MIT" LICENSE-MIT
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/APACHE" 
LICENSE-APACHE
+  install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}

Copied: go-ipfs/repos/community-testing-x86_64/ipfs.service (from rev 1065045, 
go-ipfs/trunk/ipfs.service)
===
--- community-testing-x86_64/ipfs.service   (rev 0)
+++ community-testing-x86_64/ipfs.service   2021-12-04 16:50:05 UTC (rev 
1065046)
@@ -0,0 +1,9 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+
+[Service]
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target

Copied: go-ipfs/repos/community-testing-x86_64/ipfs@.service (from rev 1065045, 
go-ipfs/trunk/ipfs@.service)
===
--- community-testing-x86_64/ipfs@.service  (rev 0)
+++ community-testing-x86_64/ipfs@.service  2021-12-04 16:50:05 UTC (rev 
1065046)
@@ -0,0 +1,10 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+
+[Service]
+User=%i
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target

Copied: go-ipfs/repos/community-testing-x86_64/rb.patch (from rev 1065045, 
go-ipfs/trunk/rb.patch)
===
--- community-testing-x86_64/rb.patch   (rev 0)
+++ community-testing-x86_64/rb.patch   2021-12-04 16:50:05 UTC (rev 1065046)
@@ -0,0 +1,13 @@
+diff --git a/mk/golang.mk b/mk/golang.mk
+index 0b2a2c55a..2c7f24d75 100644
+--- a/mk/golang.mk
 b/mk/golang.mk
+@@ -12,7 +

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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:49:58
  Author: demize
Revision: 1065045

upgpkg: go-ipfs 0.10.0-1

Modified:
  go-ipfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 16:43:06 UTC (rev 1065044)
+++ PKGBUILD2021-12-04 16:49:58 UTC (rev 1065045)
@@ -5,7 +5,7 @@
 # Contributor: Ian Naval 
 
 pkgname=go-ipfs
-pkgver=0.9.1
+pkgver=0.10.0
 pkgrel=1
 
 pkgdesc='A peer-to-peer hypermedia distribution protocol'
@@ -24,7 +24,7 @@
 ipfs@.service)
 noextract=(go-ipfs-$pkgver.tar.gz)
 
-sha512sums=('0e8b0e1ccfdb595cb24caeb8c984d7681f9b861dbb7ab1f27ea0346151afe4c3215c2278764dda40b5d6bdec4f4782e34ec8ee5d6a62d6a7848233b588cf4267'
+sha512sums=('83e961db8f988d69638d82f2c6cad70f58c236a6d52815a89a4c74ef03ed83a953377c0906d8717f1c3b4b3c812faa40034c53225fdfeaab225733a89656efb4'
 
'5591bb5b309ccf6464723650831e7ed1bf6ffc7e18645c3563452df965091b94d265b079db92ae0b359aa964540b2ee1c1b60b3000102168bfd32730b640f12c'
 
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6'
 
'aed168a35228c4f873e0040d1412f3568bfe1ad1e94ffb8b1a2507058daaf75d7346381d299cf9f0b91951b21553170249ff5f45d5fc060e711cf628ab5e5aad')
@@ -45,6 +45,8 @@
   export CGO_CXXFLAGS="$CXXFLAGS"
   export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
   make build
+
+  cmd/ipfs/ipfs commands completion bash >"$srcdir"/ipfs-completion.bash
 }
 
 package() {
@@ -52,7 +54,7 @@
   install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
   install -Dm 644 "$srcdir"/ipfs.service 
"$pkgdir/usr/lib/systemd/user/ipfs.service"
   install -Dm 644 "$srcdir"/ipfs@.service 
"$pkgdir/usr/lib/systemd/system/ipfs@.service"
-  install -Dm 644 misc/completion/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
+  install -Dm 644 "$srcdir"/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
   install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/MIT" LICENSE-MIT
   install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/APACHE" 
LICENSE-APACHE
   install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:43:06
  Author: demize
Revision: 1065044

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
(from rev 1065043, elixir/trunk/PKGBUILD)

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 1065043, 
elixir/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-12-04 16:43:06 UTC (rev 1065044)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.13.0
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('0ed0fb89a9b6428cd1537b7f9aab1d6ea64e0c5972589eeb46dff6f0324468ae')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:43:04
  Author: demize
Revision: 1065043

upgpkg: elixir 1.13.0-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 16:42:53 UTC (rev 1065042)
+++ PKGBUILD2021-12-04 16:43:04 UTC (rev 1065043)
@@ -3,7 +3,7 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.12.3
+pkgver=1.13.0
 pkgrel=1
 
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
@@ -16,7 +16,7 @@
 checkdepends=('git')
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('c5affa97defafa1fd89c81656464d61da8f76ccfec2ea80c8a528decd5cb04ad')
+sha256sums=('0ed0fb89a9b6428cd1537b7f9aab1d6ea64e0c5972589eeb46dff6f0324468ae')
 
 build() {
   cd elixir-"$pkgver"



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:42:47
  Author: demize
Revision: 1065041

upgpkg: oidentd 3.0.0-1

Modified:
  oidentd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 16:36:15 UTC (rev 1065040)
+++ PKGBUILD2021-12-04 16:42:47 UTC (rev 1065041)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=oidentd
-pkgver=2.5.1
+pkgver=3.0.0
 pkgrel=1
 pkgdesc='An RFC1413 compliant ident daemon'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 
source=(https://files.janikrabe.com/pub/oidentd/releases/$pkgver/oidentd-$pkgver.tar.xz{,.asc}
 service socket sysusers.conf)
 
-md5sums=('20a1cb0d7ef5f55052ffdf3f95bdf4ec'
+md5sums=('b183cb70c65dbaf281e1da1e84d1e178'
  'SKIP'
  '8e1fec6ceece6bbf394381c58b531f76'
  '4442fb9fc10754914568e6ffc3d5fc42'



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

2021-12-02 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 2, 2021 @ 19:44:17
  Author: demize
Revision: 430393

Apply upstream patch fixing tests on Python 3.10

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-02 19:35:45 UTC (rev 430392)
+++ PKGBUILD2021-12-02 19:44:17 UTC (rev 430393)
@@ -21,15 +21,18 @@
 
source=(https://github.com/vim/vim/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz
 vimrc
 archlinux.vim
-vimdoc.hook)
+vimdoc.hook
+
1be7e215830d6ec9aa6200aac4ef34ac0ae85af5.patch::https://github.com/vim/vim/commit/1be7e215830d6ec9aa6200aac4ef34ac0ae85af5.patch)
 sha256sums=('363a90e45eb93c73340a711223c7ce5e564432f9eb34624e1a545f4fd57dd49d'
 'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
 'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
-'8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
+'8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae'
+'624ef2413afc26dda845879bc12dfe7b03c30f81b798d7a93988294c21cd2d21')
 
sha512sums=('f476f24390807b71a0e02729f1815b3743b6b42cdd28a414e9ceaf0aa3fd4cab91e3550a669b1c64b4cd83207515cfe2b4acf2358a6def60e216e101c979037e'
 
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
 
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
-
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')
+
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1'
+
'1448a6b62acb8273f6c4f4f154cb2dc48654addd68094cbb803ee0fbaacbb0d5f2e8951aa4c7d7a95d4b9ecfa8a8da30a5e8a69effd45f702f4609fa46f3654a')
 
 prepare() {
   (cd vim-${pkgver}/src
@@ -38,6 +41,8 @@
 sed -E 's|^.*(#define VIMRC_FILE.*").*$|\1|g' -i feature.h
 autoconf
   )
+  (cd vim-${pkgver}
+  patch -p1 <"$srcdir"/1be7e215830d6ec9aa6200aac4ef34ac0ae85af5.patch)
   cp -a vim-${pkgver} gvim-${pkgver}
 }
 



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

2021-12-02 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 2, 2021 @ 19:20:29
  Author: demize
Revision: 1062320

Apply patch fixing tests with Hypothesis >= 6.6

Modified:
  python-h2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-02 19:20:21 UTC (rev 1062319)
+++ PKGBUILD2021-12-02 19:20:29 UTC (rev 1062320)
@@ -10,9 +10,16 @@
 depends=('python-hpack' 'python-hyperframe')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner' 'python-hypothesis')
-source=("https://github.com/python-hyper/h2/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('ae145421549ecd29845b100e3895f1088598142824d82cf0b59293b0f647939e4acd0ff809187cabd67a3a524a0337cc925a3f17624c86767bd87a2d18a59b2b')
+source=("https://github.com/python-hyper/h2/archive/v$pkgver/$pkgname-$pkgver.tar.gz";
+
'0646279dab694a89562846c810202ce2c0b49be3.patch::https://github.com/python-hyper/h2/commit/0646279dab694a89562846c810202ce2c0b49be3.patch')
+sha512sums=('ae145421549ecd29845b100e3895f1088598142824d82cf0b59293b0f647939e4acd0ff809187cabd67a3a524a0337cc925a3f17624c86767bd87a2d18a59b2b'
+
'c92a5577338b6ef355a203a2a74ba3d6b997458a179fa7d12eaf4a0f89fe430a2c90a586791afd0c1563d94352586d59aacfb34926c67e5ec7d2236b2c0fcff2')
 
+prepare() {
+  cd h2-$pkgver
+  patch -p1 <"$srcdir"/0646279dab694a89562846c810202ce2c0b49be3.patch
+}
+
 build() {
   cd h2-$pkgver
   python setup.py build



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

2021-12-02 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 2, 2021 @ 18:30:38
  Author: demize
Revision: 1062140

Disable test broken by sphinx upstream change

https://github.com/python-trio/sphinxcontrib-trio/issues/260

Modified:
  python-sphinxcontrib-trio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-02 18:26:15 UTC (rev 1062139)
+++ PKGBUILD2021-12-02 18:30:38 UTC (rev 1062140)
@@ -21,7 +21,8 @@
 
 check() {
   cd ${_pyname}-${pkgver}
-  PYTHONPATH=. py.test
+  # https://github.com/python-trio/sphinxcontrib-trio/issues/260
+  PYTHONPATH=. py.test -k 'not test_end_to_end'
 }
 
 package() {



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

2021-12-02 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 2, 2021 @ 18:25:02
  Author: demize
Revision: 1062131

Apply patch to fix test failures with 3.10

Modified:
  python-parso/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-02 18:24:42 UTC (rev 1062130)
+++ PKGBUILD2021-12-02 18:25:02 UTC (rev 1062131)
@@ -14,13 +14,23 @@
 depends=('python')
 makedepends=('python-setuptools' 'python-sphinx')
 checkdepends=('python-pytest')
-source=(https://github.com/davidhalter/parso/archive/v$pkgver/$_pkgbase-$pkgver.tar.gz)
-sha512sums=('a90810ad89301d804d215392ed77593b015f13bc7ef8512302a8893b314a9e74c15e2aaa77157c8595a134d3481e8115f306f9628835271478837ec6f19e645f')
-b2sums=('f4e86ae55140adc9bbfdd34a8044e7fdfbf9d318a6385ac5feedc07127061943c2d690581af144f158846e3bf6f82124046c7e625369a4055ab92a54f9210c49')
+source=(https://github.com/davidhalter/parso/archive/v$pkgver/$_pkgbase-$pkgver.tar.gz
+
7652d3904be3fd5513581a8250d95df31a8cef06.patch::https://github.com/davidhalter/parso/commit/7652d3904be3fd5513581a8250d95df31a8cef06.patch)
+sha512sums=('a90810ad89301d804d215392ed77593b015f13bc7ef8512302a8893b314a9e74c15e2aaa77157c8595a134d3481e8115f306f9628835271478837ec6f19e645f'
+
'a60f8e1030e08b18251dac49e81a9e9cfac5e367af44fae94c4ef19ba857311df49264b2c3327d4fdc17005f03c0d71d67a4fbb907627a96869ed18ec0d25bfa')
+b2sums=('f4e86ae55140adc9bbfdd34a8044e7fdfbf9d318a6385ac5feedc07127061943c2d690581af144f158846e3bf6f82124046c7e625369a4055ab92a54f9210c49'
+
'767f63dcb6a8368a94162bd1e30614d19ae234b0554a00ef2821260b0992eb7f3ca2d8342571822e5bc8afd5c81b68f538de20ac976414f8f9878a82b4ecd10c')
 
+prepare() {
+  cd "$_pkgbase-$pkgver"
+  patch -p1 <"$srcdir"/7652d3904be3fd5513581a8250d95df31a8cef06.patch
+}
+
 check() {
   cd "$_pkgbase-$pkgver"
-  pytest test
+  # test_python_excetion_matches broke with 3.10 due to exception formatting 
changes.
+  # https://github.com/davidhalter/parso/issues/192
+  pytest test -k 'not test_python_exception_matches'
 }
 
 build() {



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

2021-12-02 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 2, 2021 @ 14:31:57
  Author: demize
Revision: 1061915

Disable broken x509 tests

Currently these tests fail due to the static certificates used expired on
2021-11-27.  But they were reported as failing due to a _different_ error all
the way back in March[0], so let's just disable the tests for now.

[0]: https://github.com/requests/toolbelt/issues/306

Modified:
  python-requests-toolbelt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-02 14:31:25 UTC (rev 1061914)
+++ PKGBUILD2021-12-02 14:31:57 UTC (rev 1061915)
@@ -28,7 +28,7 @@
 
 check() {
   cd "$srcdir"/toolbelt-$pkgver
-  py.test -k 'not test_no_content_length_header and not test_read_file and not 
test_reads_file_from_url_wrapper'
+  py.test -k 'not test_no_content_length_header and not test_read_file and not 
test_reads_file_from_url_wrapper and not test_x509_der and not test_x509_pem'
 }
 
 package() {



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

2021-12-02 Thread Johannes Löthberg via arch-commits
Date: Thursday, December 2, 2021 @ 14:30:34
  Author: demize
Revision: 1061913

Apply patch fixing deprecated usage of ABCs in collections

Modified:
  python-requests-toolbelt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-02 13:58:10 UTC (rev 1061912)
+++ PKGBUILD2021-12-02 14:30:34 UTC (rev 1061913)
@@ -11,9 +11,16 @@
 depends=('python-requests')
 makedepends=('python-setuptools' 'python-requests')
 checkdepends=('python-pytest' 'python-betamax' 'python-mock' 
'python-pyopenssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/requests/toolbelt/archive/$pkgver.tar.gz";)
-sha512sums=('12667056c225ce0bc88a5959660103feed23810890abd3890ef15581aa64c09c0552c3974473e1742cbe6200bd37d6475ad34ec051e83d4fbf0a33f320dbc0cc')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/requests/toolbelt/archive/$pkgver.tar.gz";
+
'7188b06330e5260be20bce8cbcf0d5ae44e34eaf.patch::https://github.com/requests/toolbelt/commit/7188b06330e5260be20bce8cbcf0d5ae44e34eaf.patch')
+sha512sums=('12667056c225ce0bc88a5959660103feed23810890abd3890ef15581aa64c09c0552c3974473e1742cbe6200bd37d6475ad34ec051e83d4fbf0a33f320dbc0cc'
+
'3265c1cc903ee878fecc0a98be935c4471c89c4ed0def6c0862d581b7ca84e97b402dd6e532127d5eca7b04d8f78127116c06324c1bf514406cc6c37006e')
 
+prepare() {
+  cd "$srcdir"/toolbelt-$pkgver
+  patch -p1 <"$srcdir"/7188b06330e5260be20bce8cbcf0d5ae44e34eaf.patch
+}
+
 build() {
   cd "$srcdir"/toolbelt-$pkgver
   python setup.py build



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 23:14:07
  Author: demize
Revision: 1061518

Apply upstream patches to fix tests under Python 3.10

Modified:
  python-sybil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 23:08:00 UTC (rev 1061517)
+++ PKGBUILD2021-12-01 23:14:07 UTC (rev 1061518)
@@ -10,9 +10,19 @@
 depends=('python')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/cjw296/sybil/archive/$pkgver.tar.gz";)
-sha512sums=('77892932f947ace293df1732a01c3272414ce22edefafc1ee09b28214b34278d5030edea1130aa0ffd7acce569cf0f877dbe21c21f32e4333ac8d25c5ec0a058')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cjw296/sybil/archive/$pkgver.tar.gz";
+
'fix-tests-for-python-3-10.1.patch::https://github.com/simplistix/sybil/commit/3650f5e609a6da7e114224a578e4182e262cdec5.patch'
+
'fix-tests-for-python-3-10.2.patch::https://github.com/simplistix/sybil/commit/4c12bfc0340a77cbe6496ebcef2fc777006a9c0e.patch')
+sha512sums=('77892932f947ace293df1732a01c3272414ce22edefafc1ee09b28214b34278d5030edea1130aa0ffd7acce569cf0f877dbe21c21f32e4333ac8d25c5ec0a058'
+
'84a8c0515dcc2b440e7785a05c6a4a2cb3a756a0cb4573b278e42cca711af4d9519102ad3df86ff93335e4d521db1e4be3b74d4c5b95e57d8be0f832586c3595'
+
'a0c7efdcf72eb54660599f3ef76346f2c3582c37f71e0ea27fb24f08dd223e4cff601a104e7690f08312ea8576664be2f09f9715641df22df7d5550028276096')
 
+prepare() {
+  cd sybil-$pkgver
+  patch -p1 <"$srcdir"/fix-tests-for-python-3-10.1.patch
+  patch -p1 <"$srcdir"/fix-tests-for-python-3-10.2.patch
+}
+
 build() {
   cd sybil-$pkgver
   python setup.py build



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 23:06:37
  Author: demize
Revision: 1061515

Apply patch fixing tests under Python 3.10

Modified:
  python-testfixtures/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 23:02:26 UTC (rev 1061514)
+++ PKGBUILD2021-12-01 23:06:37 UTC (rev 1061515)
@@ -11,9 +11,16 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner' 'python-zope-component' 'python-sybil'
   'python-pytest-django' 'python-django' 'python-twisted')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Simplistix/testfixtures/archive/$pkgver.tar.gz";)
-sha512sums=('1fdd3e8a9dc39be00ebb707c4febb30f4975e7c2c83d6edead14f180bb6171b8cd2625acf0f6285c1ecf5ea56ee3c1e40317a9c47fa0b01fd525303816ced69c')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Simplistix/testfixtures/archive/$pkgver.tar.gz";
+
'tests-fix-with-python-3-10.patch::https://github.com/simplistix/testfixtures/commit/8fb2122eea0f1d0de1ccca7a3a0f5426bc6d4964.patch')
+sha512sums=('1fdd3e8a9dc39be00ebb707c4febb30f4975e7c2c83d6edead14f180bb6171b8cd2625acf0f6285c1ecf5ea56ee3c1e40317a9c47fa0b01fd525303816ced69c'
+
'd91b46005525cbefa2100eee25720b1229c6ca8213aaf36578635ffc82edc50aeef278d8e009d13bdb14ab791d7969b5fd39ae70fb2becce8f255edee1256792')
 
+prepare() {
+  cd "$srcdir"/testfixtures-$pkgver
+  patch -p1 <"$srcdir"/tests-fix-with-python-3-10.patch
+}
+
 build() {
   cd "$srcdir"/testfixtures-$pkgver
   python setup.py build



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 16:55:03
  Author: demize
Revision: 1060621

Add flake8 to makedepends (Python 3.10 rebuild)

Upstream project has flake8 in setup_requires, so is always required during 
build-time

Modified:
  python-clickclick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 16:53:00 UTC (rev 1060620)
+++ PKGBUILD2021-12-01 16:55:03 UTC (rev 1060621)
@@ -8,7 +8,7 @@
 license=('Apache')
 arch=('any')
 depends=('python-click' 'python-yaml')
-makedepends=('python-setuptools')
+makedepends=('python-setuptools' 'flake8')
 #checkdepends=('python-pytest-runner')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
 
sha512sums=('d8954d231bff6945ac0e8350be05775a8a0b852dd0284e3446b3f9c8bc5861870ed1bc058e132c144fe8d543aee87d7a7a54894abdb4006664e5994c8cfb507f')



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 16:48:11
  Author: demize
Revision: 1060613

Move vault to makedepends (Python 3.10 rebuild)

The prepare function requires vault to be installed, so it needs to be moved to 
makedepends.

Modified:
  python-hvac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 16:46:57 UTC (rev 1060612)
+++ PKGBUILD2021-12-01 16:48:11 UTC (rev 1060613)
@@ -11,10 +11,10 @@
 license=(Apache)
 arch=(any)
 depends=(python python-requests python-six)
-makedepends=(python-setuptools)
+makedepends=(python-setuptools vault)
 checkdepends=(python-pytest python-authlib python-flask 
python-flask-sqlalchemy python-mock
   python-parameterized python-pyhcl python-requests-mock 
python-werkzeug python-jwcrypto
-  vault consul)
+  consul)
 optdepends=(
   'python-pyhcl: for parsing returned data'
 )



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 16:12:10
  Author: demize
Revision: 1060594

Add python-pytest-runner to makedepends (Python 3.10 rebuild)

Upstream project has pytest-runner in setup_requires, so python-pytest-runner 
is always required during build-time

Modified:
  python-pygal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 16:11:43 UTC (rev 1060593)
+++ PKGBUILD2021-12-01 16:12:10 UTC (rev 1060594)
@@ -12,6 +12,7 @@
 depends=('python-setuptools')
 optdepends=('python-lxml: for XML output through lxml instead of xml.etree'
 'python-cairosvg: for PNG output')
+makedepends=('python-pytest-runner')
 checkdepends=('python-pytest' 'python-lxml' 'python-pyquery' 'python-cairosvg' 
'python-flask')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Kozea/pygal/archive/$pkgver.tar.gz";
 
$pkgname-pytest-fix.patch::https://github.com/Kozea/pygal/commit/19e5399be18a.patch)



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 16:09:24
  Author: demize
Revision: 1060589

Add python-pytest-runner to makedepends (Python 3.10 rebuild)

Upstream has pytest-runner in setup_requires, so python-pytest-runner is always 
required during build-time.

Modified:
  python-trio-asyncio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 16:07:42 UTC (rev 1060588)
+++ PKGBUILD2021-12-01 16:09:24 UTC (rev 1060589)
@@ -19,6 +19,7 @@
 makedepends=(
   git
   python-setuptools
+  python-pytest-runner
 )
 _tag=970d81c498f857d052738a2c4db2c899910dc038
 source=(git+https://github.com/python-trio/trio-asyncio.git#tag=${_tag})



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 16:03:23
  Author: demize
Revision: 1060583

Move python-pytest-runner from checkdepends to makedepends

The package has pytest-runner in setup_requires, so the dependency needs to
always be installed during build-time, even when not running tests.

Modified:
  python-jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 16:00:53 UTC (rev 1060582)
+++ PKGBUILD2021-12-01 16:03:23 UTC (rev 1060583)
@@ -10,8 +10,8 @@
 depends=('python-rsa' 'python-six' 'python-ecdsa' 'python-future')
 optdepends=('python-cryptography: one option for better performance'
 'python-pycryptodome: one option for better performance')
-makedepends=('python-setuptools' 'python-rsa' 'python-six' 'python-ecdsa' 
'python-future')
-checkdepends=('python-pytest-runner' 'python-cryptography' 
'python-pycryptodome' 'python-pytest-cov')
+makedepends=('python-setuptools' 'python-rsa' 'python-six' 'python-ecdsa' 
'python-future' 'python-pytest-runner')
+checkdepends=('python-cryptography' 'python-pycryptodome' 'python-pytest-cov')
 
source=("https://github.com/mpdavis/python-jose/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
 
sha512sums=('de7147cc6e12406d6e459c32829acae46395acba727c53e65bc05f4794ee3050eecd355e3ae2e87f4ebdbd871f53822eea08a10f25d7ca6088fc6128dc7d9637')
 



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 15:52:30
  Author: demize
Revision: 1060574

Add missing python-setuptools-scm makedepend

Modified:
  python-humanize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 15:51:52 UTC (rev 1060573)
+++ PKGBUILD2021-12-01 15:52:30 UTC (rev 1060574)
@@ -9,7 +9,7 @@
 url="https://github.com/jmoiron/humanize";
 license=("MIT")
 depends=("python")
-makedepends=("python-setuptools")
+makedepends=("python-setuptools" "python-setuptools-scm")
 
source=("https://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";)
 sha256sums=("fd3eb915310335c63a54d4507289ecc7b3a7454cd2c22ac5086d061a3cbfd592")
 



[arch-commits] Commit in matrix-synapse/repos (10 files)

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 15:51:52
  Author: demize
Revision: 1060573

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/
  matrix-synapse/repos/community-testing-any/PKGBUILD
(from rev 1060572, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/generic_worker.yaml.example
(from rev 1060572, matrix-synapse/trunk/generic_worker.yaml.example)
  matrix-synapse/repos/community-testing-any/override-hardened.conf
(from rev 1060572, matrix-synapse/trunk/override-hardened.conf)
  matrix-synapse/repos/community-testing-any/synapse-worker@.service
(from rev 1060572, matrix-synapse/trunk/synapse-worker@.service)
  matrix-synapse/repos/community-testing-any/synapse.install
(from rev 1060572, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
(from rev 1060572, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/synapse.target
(from rev 1060572, matrix-synapse/trunk/synapse.target)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
(from rev 1060572, matrix-synapse/trunk/sysusers-synapse.conf)
  matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf
(from rev 1060572, matrix-synapse/trunk/tmpfiles-synapse.conf)

-+
 PKGBUILD|   75 +++
 generic_worker.yaml.example |   34 +
 override-hardened.conf  |   71 +
 synapse-worker@.service |   22 +++
 synapse.install |   80 ++
 synapse.service |   23 
 synapse.target  |7 +++
 sysusers-synapse.conf   |1 
 tmpfiles-synapse.conf   |1 
 9 files changed, 314 insertions(+)

Copied: matrix-synapse/repos/community-testing-any/PKGBUILD (from rev 1060572, 
matrix-synapse/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-12-01 15:51:52 UTC (rev 1060573)
@@ -0,0 +1,75 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Alexander Epaneshnikov 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=1.48.0
+pkgrel=1
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse";
+arch=('any')
+license=('Apache')
+depends=('libwebp' 'python-ijson' 'python-jsonschema' 'python-twisted'
+ 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
+ 'python-bcrypt' 'python-frozendict'
+ 'python-pillow' 'python-pysaml2'
+ 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
+ 'python-signedjson' 'python-pymacaroons'
+ 'python-service-identity' 'python-msgpack'
+ 'python-phonenumbers' 'python-prometheus_client'
+ 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
+ 'python-treq' 'python-idna' 'python-jinja'
+ 'python-bleach' 'python-typing_extensions' 'systemd')
+makedepends=('python-setuptools')
+checkdepends=('python-authlib' 'python-pyjwt' 'python-lxml' 
'python-parameterized'
+  'python-txredisapi' 'python-hiredis')
+optdepends=('perl: sync_room_to_group.pl'
+'python-psycopg2: PostgreSQL support'
+'python-lxml: URL previewing'
+'python-psutil: metrics'
+'python-pyjwt: jwt'
+'python-txredisapi: redis'
+'python-hiredis')
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz";
+'generic_worker.yaml.example'
+'synapse.service'
+'synapse.target'
+'synapse-worker@.service'
+'sysusers-synapse.conf'
+'tmpfiles-synapse.conf'
+'override-hardened.conf')
+sha256sums=('182facc856f8d0c0d2d0dd4105fae4f851297167c0ee95c202a3aad9ed86c486'
+'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
+'74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
+'408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'
+'c9657c201ad89985c8c915bfa0ea7517a412071736b4d9545d8f6474fddc44e2'
+'aadfdd78fe73e6eb325ee4299b8db8b97bfa2f4e7df953aa8477f442598a7ec5'
+'65588c8c64dfb84cab831cd8d028a295d753cf7322dd63053e8488466047b45f'
+'d8e6b2a43a8a7d8f09c643f32e789a7ffeeb2d20bb07ee88ddc6923e1ab3b0e6')
+backup=('etc/synapse/log_config.yaml')
+install=synapse.install
+
+build() {
+   cd synapse-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd synapse-$pkgver
+   PYTHONPATH=. trial -j8 tests
+}
+
+package() {
+   cd synapse-$pkgver
+   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+
+   install -vdm755 -o 198 -g 198 "$pkgdir"/etc/

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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 15:51:44
  Author: demize
Revision: 1060572

upgpkg: matrix-synapse 1.48.0-1

Modified:
  matrix-synapse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 15:48:47 UTC (rev 1060571)
+++ PKGBUILD2021-12-01 15:51:44 UTC (rev 1060572)
@@ -3,7 +3,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.47.1
+pkgver=1.48.0
 pkgrel=1
 pkgdesc="Matrix reference homeserver"
 url="https://github.com/matrix-org/synapse";
@@ -38,7 +38,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf'
 'override-hardened.conf')
-sha256sums=('cc385b6cfeba671bba800c2557ad39063bdd53f70dfb3781c85df7af6f5d064c'
+sha256sums=('182facc856f8d0c0d2d0dd4105fae4f851297167c0ee95c202a3aad9ed86c486'
 'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
 '74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
 '408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'



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

2021-12-01 Thread Johannes Löthberg via arch-commits
Date: Wednesday, December 1, 2021 @ 15:45:05
  Author: demize
Revision: 1060569

Add missing make dependencies

Without these it tries to install them itself with pip, which fails since pip
for some reason isn't being pulled in automatically now.

Modified:
  python-signedjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-01 15:43:26 UTC (rev 1060568)
+++ PKGBUILD2021-12-01 15:45:05 UTC (rev 1060569)
@@ -11,7 +11,7 @@
 license=('Apache')
 
 depends=('python' 'python-canonicaljson' 'python-unpaddedbase64' 
'python-pynacl')
-makedepends=('python-setuptools')
+makedepends=('python-setuptools' 'python-setuptools-scm' 'python-wheel')
 
 
source=("https://files.pythonhosted.org/packages/source/s/signedjson/signedjson-$pkgver.tar.gz";)
 



[arch-commits] Commit in matrix-synapse/repos/community-any (18 files)

2021-11-23 Thread Johannes Löthberg via arch-commits
Date: Tuesday, November 23, 2021 @ 13:07:08
  Author: demize
Revision: 1054451

archrelease: copy trunk to community-any

Added:
  matrix-synapse/repos/community-any/PKGBUILD
(from rev 1054450, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-any/generic_worker.yaml.example
(from rev 1054450, matrix-synapse/trunk/generic_worker.yaml.example)
  matrix-synapse/repos/community-any/override-hardened.conf
(from rev 1054450, matrix-synapse/trunk/override-hardened.conf)
  matrix-synapse/repos/community-any/synapse-worker@.service
(from rev 1054450, matrix-synapse/trunk/synapse-worker@.service)
  matrix-synapse/repos/community-any/synapse.install
(from rev 1054450, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-any/synapse.service
(from rev 1054450, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-any/synapse.target
(from rev 1054450, matrix-synapse/trunk/synapse.target)
  matrix-synapse/repos/community-any/sysusers-synapse.conf
(from rev 1054450, matrix-synapse/trunk/sysusers-synapse.conf)
  matrix-synapse/repos/community-any/tmpfiles-synapse.conf
(from rev 1054450, matrix-synapse/trunk/tmpfiles-synapse.conf)
Deleted:
  matrix-synapse/repos/community-any/PKGBUILD
  matrix-synapse/repos/community-any/generic_worker.yaml.example
  matrix-synapse/repos/community-any/override-hardened.conf
  matrix-synapse/repos/community-any/synapse-worker@.service
  matrix-synapse/repos/community-any/synapse.install
  matrix-synapse/repos/community-any/synapse.service
  matrix-synapse/repos/community-any/synapse.target
  matrix-synapse/repos/community-any/sysusers-synapse.conf
  matrix-synapse/repos/community-any/tmpfiles-synapse.conf

-+
 PKGBUILD|  150 +++
 generic_worker.yaml.example |   68 -
 override-hardened.conf  |  142 ++---
 synapse-worker@.service |   44 +--
 synapse.install |  160 +-
 synapse.service |   46 ++--
 synapse.target  |   14 +--
 sysusers-synapse.conf   |2 
 tmpfiles-synapse.conf   |2 
 9 files changed, 314 insertions(+), 314 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 13:06:57 UTC (rev 1054450)
+++ PKGBUILD2021-11-23 13:07:08 UTC (rev 1054451)
@@ -1,75 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Alexander Epaneshnikov 
-# Contributor: Ivan Shapovalov 
-
-pkgname=matrix-synapse
-pkgver=1.47.0
-pkgrel=1
-pkgdesc="Matrix reference homeserver"
-url="https://github.com/matrix-org/synapse";
-arch=('any')
-license=('Apache')
-depends=('libwebp' 'python-ijson' 'python-jsonschema' 'python-twisted'
- 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
- 'python-bcrypt' 'python-frozendict'
- 'python-pillow' 'python-pysaml2'
- 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
- 'python-signedjson' 'python-pymacaroons'
- 'python-service-identity' 'python-msgpack'
- 'python-phonenumbers' 'python-prometheus_client'
- 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
- 'python-treq' 'python-idna' 'python-jinja'
- 'python-bleach' 'python-typing_extensions' 'systemd')
-makedepends=('python-setuptools')
-checkdepends=('python-authlib' 'python-pyjwt' 'python-lxml' 
'python-parameterized'
-  'python-txredisapi' 'python-hiredis')
-optdepends=('perl: sync_room_to_group.pl'
-'python-psycopg2: PostgreSQL support'
-'python-lxml: URL previewing'
-'python-psutil: metrics'
-'python-pyjwt: jwt'
-'python-txredisapi: redis'
-'python-hiredis')
-source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz";
-'generic_worker.yaml.example'
-'synapse.service'
-'synapse.target'
-'synapse-worker@.service'
-'sysusers-synapse.conf'
-'tmpfiles-synapse.conf'
-'override-hardened.conf')
-sha256sums=('329e5f075fd68835f36a2aa960e6c5fd7e9f82d79797350870f581a2c47f3a42'
-'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
-'74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
-'408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'
-'c9657c201ad89985c8c915bfa0ea7517a412071736b4d9545d8f6474fddc44e2'
-'aadfdd78fe73e6eb325ee4299b8db8b97bfa2f4e7df953aa8477f442598a7ec5'
-'65588c8c64dfb84cab831cd8d028a295d753cf7322dd63053e8488466047b45f'
-'d8e6b2a43a8a7d8f09c643f32e789a7ffeeb2d20bb07ee88ddc6923e1ab3b0e6')
-backup=('etc/synapse/log_config.yaml')
-install=synapse.install
-
-build() {
-   cd synapse-$pkgver
-   pyt

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

2021-11-23 Thread Johannes Löthberg via arch-commits
Date: Tuesday, November 23, 2021 @ 13:06:57
  Author: demize
Revision: 1054450

upgpkg: matrix-synapse 1.47.1-1 (Fixes CVE-2021-41281)

Modified:
  matrix-synapse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 11:55:35 UTC (rev 1054449)
+++ PKGBUILD2021-11-23 13:06:57 UTC (rev 1054450)
@@ -3,7 +3,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.47.0
+pkgver=1.47.1
 pkgrel=1
 pkgdesc="Matrix reference homeserver"
 url="https://github.com/matrix-org/synapse";
@@ -38,7 +38,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf'
 'override-hardened.conf')
-sha256sums=('329e5f075fd68835f36a2aa960e6c5fd7e9f82d79797350870f581a2c47f3a42'
+sha256sums=('cc385b6cfeba671bba800c2557ad39063bdd53f70dfb3781c85df7af6f5d064c'
 'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
 '74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
 '408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'



[arch-commits] Commit in (python-mypy-protobuf)

2021-09-17 Thread Johannes Löthberg via arch-commits
Date: Saturday, September 18, 2021 @ 00:13:56
  Author: demize
Revision: 1016909

Dropping python-mypy-protobuf to the AUR

It was only required by anki.

Deleted:
  python-mypy-protobuf/



[arch-commits] Commit in (anki)

2021-09-17 Thread Johannes Löthberg via arch-commits
Date: Friday, September 17, 2021 @ 22:37:25
  Author: demize
Revision: 1016905

Droppin anki to the AUR

Deleted:
  anki/



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

2021-09-17 Thread Johannes Löthberg via arch-commits
Date: Friday, September 17, 2021 @ 22:24:13
  Author: demize
Revision: 1016903

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
(from rev 1016902, elixir/trunk/PKGBUILD)

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 1016902, 
elixir/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-09-17 22:24:13 UTC (rev 1016903)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.12.3
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('c5affa97defafa1fd89c81656464d61da8f76ccfec2ea80c8a528decd5cb04ad')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2021-09-17 Thread Johannes Löthberg via arch-commits
Date: Friday, September 17, 2021 @ 22:24:07
  Author: demize
Revision: 1016902

upgpkg: elixir 1.12.3-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-17 22:09:17 UTC (rev 1016901)
+++ PKGBUILD2021-09-17 22:24:07 UTC (rev 1016902)
@@ -3,16 +3,20 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.12.2
+pkgver=1.12.3
 pkgrel=1
+
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
 url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
 arch=('any')
-license=('Apache' 'custom:EPL')
+
 depends=('erlang-nox')
 checkdepends=('git')
+
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('701006d1279225fc42f15c8d3f39906db127ddcc95373d34d8d160993356b15c')
+sha256sums=('c5affa97defafa1fd89c81656464d61da8f76ccfec2ea80c8a528decd5cb04ad')
 
 build() {
   cd elixir-"$pkgver"



[arch-commits] Commit in matrix-synapse/trunk (PKGBUILD synapse.install)

2021-08-31 Thread Johannes Löthberg via arch-commits
Date: Tuesday, August 31, 2021 @ 17:08:23
  Author: demize
Revision: 1010147

upgpkg: matrix-synapse 1.41.1-1

Modified:
  matrix-synapse/trunk/PKGBUILD
  matrix-synapse/trunk/synapse.install

-+
 PKGBUILD|4 ++--
 synapse.install |9 +
 2 files changed, 11 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-31 16:41:35 UTC (rev 1010146)
+++ PKGBUILD2021-08-31 17:08:23 UTC (rev 1010147)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.40.0
+pkgver=1.41.1
 pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
@@ -39,7 +39,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf')
 
-sha256sums=('0fbd3c99e9b5b4a34ff3bc56ddb7543dee036b22da464303cc6ba7ef91600818'
+sha256sums=('ebebc810c01f6bcfc970a5327f3149965da60621ab91730dd97f849d3d339efe'
 'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
 '74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
 '408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'

Modified: synapse.install
===
--- synapse.install 2021-08-31 16:41:35 UTC (rev 1010146)
+++ synapse.install 2021-08-31 17:08:23 UTC (rev 1010147)
@@ -58,4 +58,13 @@
See 
https://matrix-org.github.io/synapse/develop/upgrade#upgrading-to-v1380
EOF
fi
+
+   if [[ "$(vercmp "$2" 1.41.0)" -lt 0 ]]; then
+   cat <<-EOF
+   ==> Synapse 1.41.0 changes how template directories are handled,
+   and adds a new path for media workers.
+
+   See 
https://matrix-org.github.io/synapse/v1.41/upgrade.html#upgrading-to-v1410
+   EOF
+   fi
 }



[arch-commits] Commit in bftpd/repos (10 files)

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:45:07
  Author: demize
Revision: 422115

archrelease: copy trunk to testing-x86_64

Added:
  bftpd/repos/testing-x86_64/
  bftpd/repos/testing-x86_64/PKGBUILD
(from rev 422114, bftpd/trunk/PKGBUILD)
  bftpd/repos/testing-x86_64/bftpd-4.9-Makefile.patch
(from rev 422114, bftpd/trunk/bftpd-4.9-Makefile.patch)
  bftpd/repos/testing-x86_64/bftpd.logrotate
(from rev 422114, bftpd/trunk/bftpd.logrotate)
  bftpd/repos/testing-x86_64/bftpd.pam
(from rev 422114, bftpd/trunk/bftpd.pam)
  bftpd/repos/testing-x86_64/bftpd.service
(from rev 422114, bftpd/trunk/bftpd.service)
  bftpd/repos/testing-x86_64/bftpd.socket
(from rev 422114, bftpd/trunk/bftpd.socket)
  bftpd/repos/testing-x86_64/bftpd.tmpfiles
(from rev 422114, bftpd/trunk/bftpd.tmpfiles)
  bftpd/repos/testing-x86_64/bftpd.xinetd
(from rev 422114, bftpd/trunk/bftpd.xinetd)
  bftpd/repos/testing-x86_64/bftpd_AT.service
(from rev 422114, bftpd/trunk/bftpd_AT.service)

--+
 PKGBUILD |   69 +
 bftpd-4.9-Makefile.patch |   63 +
 bftpd.logrotate  |5 +++
 bftpd.pam|3 +
 bftpd.service|   10 ++
 bftpd.socket |   10 ++
 bftpd.tmpfiles   |1 
 bftpd.xinetd |   11 +++
 bftpd_AT.service |8 +
 9 files changed, 180 insertions(+)

Copied: bftpd/repos/testing-x86_64/PKGBUILD (from rev 422114, 
bftpd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-14 09:45:07 UTC (rev 422115)
@@ -0,0 +1,69 @@
+# Maintainer: Levente Polyak 
+# Contributor: Thomas Bächler 
+
+pkgname=bftpd
+pkgver=6.0
+pkgrel=1
+pkgdesc='Small, easy-to-configure FTP server'
+url='http://bftpd.sourceforge.net/'
+arch=('x86_64')
+license=('GPL')
+depends=('pam' 'zlib' 'glibc' 'libxcrypt' 'libcrypt.so')
+backup=(etc/bftpd.conf
+etc/logrotate.d/bftpd
+etc/pam.d/bftpd
+etc/xinetd.d/bftpd)
+source=(https://downloads.sourceforge.net/sourceforge/bftpd/bftpd-${pkgver}.tar.gz
+bftpd.logrotate
+bftpd.pam
+bftpd.xinetd
+bftpd.service
+bftpd.socket
+bftpd_AT.service
+bftpd.tmpfiles
+bftpd-4.9-Makefile.patch)
+sha512sums=('26e5ef3729e0a46737617b2e48dee4c462e5633807206eff8f14df8368b6be758688eca167c3b49c324397761da16c817c022b19cf35966408d9e8c207bc7350'
+
'50faec3cf93a4702945bb8aee5b2e9b227183ec098fe93c729ca14d02c9432ccf4b25bc86f9b4b1ae40c9a9820b6b5a9e83a1dde78085a36a2c84b69690262b6'
+
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
+
'98d7679faffd497f0cc2faa6129b010f0a47092e1caebc82582e362e3eb107c09cf17496b10bbc4fc406ebfea7f75a70d119c071721099d169765f53ce89b51a'
+
'1433b8b1a2eea07b095e41eb83e8819fcb22c63b632fe73ec87e1f0490a5f84f836cc65ea1ca2f8fa9ab901122350a45f781593748df04fa211168b5f08546b8'
+
'd37b9e6f69d781ecf8ddf63072a0e00c1cb27959ac622b5ba19fc7db0021f2da83fb427ee13f310c52565e5cbc8a5016bf28e63e9fb95e2fd0a568f5028f0056'
+
'b1a9f01f974b72a40d072c75a3962f5354eeb23f7383643f20cf3809ffc2d6217c450d0564be223b99552ebc55e26c0e4f1362a2ede24280e865a3f63ceca4a5'
+
'92650582747a34a29631b1755d2eb14d124a9632888c39cf2dbe5c2834f5b4c5f6506588ef0106cc643397587ffbe9a2240787030452bf29b17b7aacf1632cc1'
+
'b6e7e455b94b6c6b442a57416b285f870e7a99546f9aa26c67d381ec1e62a1e1d2492d144cf075b6f1ecaa42bf1f9c3e0390a45d0edab456de8cb7fe5d24ede7')
+prepare() {
+  cd ${pkgname}
+  patch -Np1 < ../bftpd-4.9-Makefile.patch
+  # Fix default in config file
+  sed 's|#ROOTDIR="/path/for/anonymous/user"|# bftpd interprets ROOTDIR="%h" 
(the default), as ROOTDIR="/" for the anonymous user, override it\n  
ROOTDIR="/srv/ftp"|' -i bftpd.conf
+  rm -f config.{cache,status}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}
+  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+  ./configure \
+--prefix=/usr \
+--enable-pam \
+--enable-libz \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}/usr/var"
+  install -Dm 644 ../bftpd.service 
"${pkgdir}/usr/lib/systemd/system/bftpd.service"
+  install -Dm 644 ../bftpd_AT.service 
"${pkgdir}/usr/lib/systemd/system/bftpd@.service"
+  install -Dm 644 ../bftpd.socket 
"${pkgdir}/usr/lib/systemd/system/bftpd.socket"
+  install -Dm 644 ../bftpd.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/bftpd.conf"
+  install -Dm 644 ../bftpd.logrotate "${pkgdir}/etc/logrotate.d/bftpd"
+  install -Dm 644 ../bftpd.pam "${pkgdir}/etc/pam.d/bftpd"
+  install -Dm 644 ../bftpd.xinetd "$

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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:45:01
  Author: demize
Revision: 422114

upgpkg: bftpd 6.0-1

Modified:
  bftpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-14 09:45:00 UTC (rev 422113)
+++ PKGBUILD2021-08-14 09:45:01 UTC (rev 422114)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Bächler 
 
 pkgname=bftpd
-pkgver=5.7
+pkgver=6.0
 pkgrel=1
 pkgdesc='Small, easy-to-configure FTP server'
 url='http://bftpd.sourceforge.net/'
@@ -22,7 +22,7 @@
 bftpd_AT.service
 bftpd.tmpfiles
 bftpd-4.9-Makefile.patch)
-sha512sums=('8d3cb5e2830abe10f4f38e4e1dce27da8b6ff6224fa3fd89db7b182917ff734aa5761563dc22eb04fcba4195404c205593ab40d4ac3f08d8284c8e15c4731879'
+sha512sums=('26e5ef3729e0a46737617b2e48dee4c462e5633807206eff8f14df8368b6be758688eca167c3b49c324397761da16c817c022b19cf35966408d9e8c207bc7350'
 
'50faec3cf93a4702945bb8aee5b2e9b227183ec098fe93c729ca14d02c9432ccf4b25bc86f9b4b1ae40c9a9820b6b5a9e83a1dde78085a36a2c84b69690262b6'
 
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
 
'98d7679faffd497f0cc2faa6129b010f0a47092e1caebc82582e362e3eb107c09cf17496b10bbc4fc406ebfea7f75a70d119c071721099d169765f53ce89b51a'



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:40:23
  Author: demize
Revision: 422081

archrelease: copy trunk to testing-x86_64

Added:
  vim/repos/testing-x86_64/
  vim/repos/testing-x86_64/PKGBUILD
(from rev 422079, vim/trunk/PKGBUILD)
  vim/repos/testing-x86_64/archlinux.vim
(from rev 422079, vim/trunk/archlinux.vim)
  vim/repos/testing-x86_64/vimdoc.hook
(from rev 422079, vim/trunk/vimdoc.hook)
  vim/repos/testing-x86_64/vimrc
(from rev 422079, vim/trunk/vimrc)

---+
 PKGBUILD  |  210 
 archlinux.vim |   46 
 vimdoc.hook   |   11 ++
 vimrc |   18 
 4 files changed, 285 insertions(+)

Copied: vim/repos/testing-x86_64/PKGBUILD (from rev 422079, vim/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-14 09:40:23 UTC (rev 422081)
@@ -0,0 +1,210 @@
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+# Contributor: Thomas Dziedzic 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: tobias [ tobias at archlinux org ]
+# Contributor: Daniel J Griffiths 
+# Contributor: Christian Hesse 
+# Contributor: Eli Schwartz 
+
+pkgbase=vim
+pkgname=('vim' 'gvim' 'vim-runtime')
+pkgver=8.2.3340
+_versiondir=82
+pkgrel=1
+pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
+url='https://www.vim.org'
+arch=('x86_64')
+license=('custom:vim')
+makedepends=('glibc' 'libgcrypt' 'gpm' 'python2' 'python' 'ruby' 'libxt' 
'gtk3' 'lua'
+ 'gawk' 'tcl' 'pcre' 'zlib' 'libcanberra')
+source=(https://github.com/vim/vim/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz
+vimrc
+archlinux.vim
+vimdoc.hook)
+sha256sums=('83c6774871bc9bd2a8dfa5aefe906a48c9442c813a59c5227bcca82e2974'
+'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
+'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
+'8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
+sha512sums=('fb3260a80a5e3875631761a74f9f25e176b884fff1bc0b4eb706c1e36b5795d4dc837fafcf6a642fca7e56bf271b86af0dd22cbb965c6c780703920f227be6bf'
+
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
+
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
+
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')
+
+prepare() {
+  (cd vim-${pkgver}/src
+# define the place for the global (g)vimrc file (set to /etc/vimrc)
+sed -E 's|^.*(#define SYS_.*VIMRC_FILE.*").*$|\1|g' -i feature.h
+sed -E 's|^.*(#define VIMRC_FILE.*").*$|\1|g' -i feature.h
+autoconf
+  )
+  cp -a vim-${pkgver} gvim-${pkgver}
+}
+
+build() {
+  echo "Building vim..."
+  (cd vim-${pkgver}
+./configure \
+  --prefix=/usr \
+  --localstatedir=/var/lib/vim \
+  --with-features=huge \
+  --with-compiledby='Arch Linux' \
+  --enable-gpm \
+  --enable-acl \
+  --with-x=no \
+  --disable-gui \
+  --enable-multibyte \
+  --enable-cscope \
+  --enable-netbeans \
+  --enable-perlinterp=dynamic \
+  --enable-pythoninterp=dynamic \
+  --enable-python3interp=dynamic \
+  --enable-rubyinterp=dynamic \
+  --enable-luainterp=dynamic \
+  --enable-tclinterp=dynamic \
+  --disable-canberra
+make
+  )
+
+  echo "Building gvim..."
+  (cd gvim-${pkgver}
+./configure \
+  --prefix=/usr \
+  --localstatedir=/var/lib/vim \
+  --with-features=huge \
+  --with-compiledby='Arch Linux' \
+  --enable-gpm \
+  --enable-acl \
+  --with-x=yes \
+  --enable-gui=gtk3 \
+  --enable-multibyte \
+  --enable-cscope \
+  --enable-netbeans \
+  --enable-perlinterp=dynamic \
+  --enable-pythoninterp=dynamic \
+  --enable-python3interp=dynamic \
+  --enable-rubyinterp=dynamic \
+  --enable-luainterp=dynamic \
+  --enable-tclinterp=dynamic \
+  --enable-canberra
+make
+  )
+}
+
+check() {
+  cd vim-${pkgver}
+  TERM=xterm make -j1 test
+}
+
+package_vim-runtime() {
+  pkgdesc+=' (shared runtime)'
+  optdepends=('sh: support for some tools and macros'
+  'python: demoserver example tool'
+  'gawk: mve tools upport')
+  backup=('etc/vimrc')
+
+  cd vim-${pkgver}
+
+  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
+  # man and bin files belong to 'vim'
+  rm -r "${pkgdir}"/usr/share/man/ "${pkgdir}"/usr/bin/
+
+  # Don't forget logtalk.dict
+  install -Dm 644 runtime/ftplugin/logtalk.dict \
+"${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/logtalk.dict
+
+  # rc files
+  install -Dm 644 "${srcdir}"/vimrc "${pkg

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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:40:19
  Author: demize
Revision: 422079

upgpkg: vim 8.2.3340-1

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-14 08:13:31 UTC (rev 422078)
+++ PKGBUILD2021-08-14 09:40:19 UTC (rev 422079)
@@ -9,7 +9,7 @@
 
 pkgbase=vim
 pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.2.2891
+pkgver=8.2.3340
 _versiondir=82
 pkgrel=1
 pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
@@ -22,11 +22,11 @@
 vimrc
 archlinux.vim
 vimdoc.hook)
-sha256sums=('3d0a424f637e4920dc514b124782d7e1f29a7b819031924989ca69e231ee686a'
+sha256sums=('83c6774871bc9bd2a8dfa5aefe906a48c9442c813a59c5227bcca82e2974'
 'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
 'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
 '8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
-sha512sums=('a16f73720925f59db305f149f5d9bdea9fb2a4a993e7c07d4e83fdca5617ebb17b2e63b77a0d2ea05f8014f14edb0a41e6be633d848b81fce36162a45c23ccca'
+sha512sums=('fb3260a80a5e3875631761a74f9f25e176b884fff1bc0b4eb706c1e36b5795d4dc837fafcf6a642fca7e56bf271b86af0dd22cbb965c6c780703920f227be6bf'
 
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
 
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
 
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:36:35
  Author: demize
Revision: 998499

archrelease: copy trunk to community-testing-x86_64

Added:
  patchelf/repos/community-testing-x86_64/
  patchelf/repos/community-testing-x86_64/PKGBUILD
(from rev 998498, patchelf/trunk/PKGBUILD)

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

Copied: patchelf/repos/community-testing-x86_64/PKGBUILD (from rev 998498, 
patchelf/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-14 09:36:35 UTC (rev 998499)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+# Contributor: Daniel Wallace 
+# Contributor: xduugu
+
+pkgname=patchelf
+pkgver=0.13
+pkgrel=1
+pkgdesc='Small utility to modify the dynamic linker and RPATH of ELF 
executables'
+url='https://nixos.org/patchelf.html'
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs')
+source=(https://github.com/NixOS/patchelf/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0b4cb41dc1b76d1c0f46655d8b1c56187d2bf18fa12fad9ad6e8acd321a98df372713a92c6649479498bb5939c91ce16a1032ec03afc5a2f7c92cd68882c2bd9')
+b2sums=('5db88c9ff9103f2e4b8e15d7dc0d677c3956a85ce5e86e371c4c32a21c3bc219990edd71a20a6b650342eff1068c0ba0976529d62d21dcc17dfc020abf7167ec')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -C tests -j1 check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:36:30
  Author: demize
Revision: 998498

upgpkg: patchelf 0.13-1

Modified:
  patchelf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-14 09:32:51 UTC (rev 998497)
+++ PKGBUILD2021-08-14 09:36:30 UTC (rev 998498)
@@ -3,7 +3,7 @@
 # Contributor: xduugu
 
 pkgname=patchelf
-pkgver=0.12
+pkgver=0.13
 pkgrel=1
 pkgdesc='Small utility to modify the dynamic linker and RPATH of ELF 
executables'
 url='https://nixos.org/patchelf.html'
@@ -11,8 +11,8 @@
 license=('GPL3')
 depends=('gcc-libs')
 
source=(https://github.com/NixOS/patchelf/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('2563a5b22b90392d5755d9a08022daf8570fa1b741becbbca92548d0a2f82f7ee21175a2c34816a4653c89c2219bf59b1440304b0fa2d49842e398ab18b9923c')
-b2sums=('8ea71eb75bcc40e18a168c1e65856809fcceb8f68a9939e5248464d8c2e5d14d4eb1278965727417a26e70734712121d057c3da689be397f93bdb5234a11d5ba')
+sha512sums=('0b4cb41dc1b76d1c0f46655d8b1c56187d2bf18fa12fad9ad6e8acd321a98df372713a92c6649479498bb5939c91ce16a1032ec03afc5a2f7c92cd68882c2bd9')
+b2sums=('5db88c9ff9103f2e4b8e15d7dc0d677c3956a85ce5e86e371c4c32a21c3bc219990edd71a20a6b650342eff1068c0ba0976529d62d21dcc17dfc020abf7167ec')
 
 prepare() {
   cd ${pkgname}-${pkgver}



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:27:55
  Author: demize
Revision: 998494

upgpkg: matrix-synapse 1.40.0-1

Modified:
  matrix-synapse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-14 09:17:43 UTC (rev 998493)
+++ PKGBUILD2021-08-14 09:27:55 UTC (rev 998494)
@@ -2,8 +2,8 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.39.0
-pkgrel=2
+pkgver=1.40.0
+pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
 url="https://github.com/matrix-org/synapse";
@@ -39,7 +39,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf')
 
-sha256sums=('36b5949f3a989a52efb8ba7d9ca0f71cd13eea1a1cd0048756e2309c143dec53'
+sha256sums=('0fbd3c99e9b5b4a34ff3bc56ddb7543dee036b22da464303cc6ba7ef91600818'
 'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
 '74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
 '408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:11:04
  Author: demize
Revision: 998346

archrelease: copy trunk to community-testing-x86_64

Added:
  pacutils/repos/community-testing-x86_64/
  pacutils/repos/community-testing-x86_64/PKGBUILD
(from rev 998345, pacutils/trunk/PKGBUILD)

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

Copied: pacutils/repos/community-testing-x86_64/PKGBUILD (from rev 998345, 
pacutils/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-14 09:11:04 UTC (rev 998346)
@@ -0,0 +1,34 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=pacutils
+pkgver=0.11.1
+pkgrel=1
+
+pkgdesc='Helper tools for libalpm'
+url='https://github.com/andrewgregory/pacutils'
+arch=('x86_64')
+license=('MIT')
+
+depends=('pacman')
+makedepends=('git')
+
+source=("git+https://github.com/andrewgregory/pacutils.git#commit=aa4ba003cb446907a71be4aa976546d113ecc688";)
+sha1sums=('SKIP')
+
+build() {
+  cd pacutils
+  make CFLAGS="$CFLAGS $LDFLAGS" SYSCONFDIR=/etc LOCALSTATEDIR=/var
+}
+
+check() {
+  cd pacutils
+  make check
+}
+
+package() {
+  cd pacutils
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/"$pkgname"/COPYING
+}
+
+# vim: set ft=PKGBUILD et sw=2:



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:10:59
  Author: demize
Revision: 998345

upgpkg: pacutils 0.11.1-1

Modified:
  pacutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-14 09:00:04 UTC (rev 998344)
+++ PKGBUILD2021-08-14 09:10:59 UTC (rev 998345)
@@ -1,8 +1,8 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=pacutils
-pkgver=0.11.0
-pkgrel=2
+pkgver=0.11.1
+pkgrel=1
 
 pkgdesc='Helper tools for libalpm'
 url='https://github.com/andrewgregory/pacutils'
@@ -12,7 +12,7 @@
 depends=('pacman')
 makedepends=('git')
 
-source=("git+https://github.com/andrewgregory/pacutils.git#commit=e891b53173d7a8960eec7893e2429dac155be414";)
+source=("git+https://github.com/andrewgregory/pacutils.git#commit=aa4ba003cb446907a71be4aa976546d113ecc688";)
 sha1sums=('SKIP')
 
 build() {



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:00:04
  Author: demize
Revision: 998344

archrelease: copy trunk to community-testing-any

Added:
  salt/repos/community-testing-any/
  salt/repos/community-testing-any/PKGBUILD
(from rev 998343, salt/trunk/PKGBUILD)
  salt/repos/community-testing-any/salt.install
(from rev 998343, salt/trunk/salt.install)
  salt/repos/community-testing-any/salt.logrotate
(from rev 998343, salt/trunk/salt.logrotate)

+
 PKGBUILD   |   81 +++
 salt.install   |   22 ++
 salt.logrotate |   12 
 3 files changed, 115 insertions(+)

Copied: salt/repos/community-testing-any/PKGBUILD (from rev 998343, 
salt/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-08-14 09:00:04 UTC (rev 998344)
@@ -0,0 +1,81 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Morten Linderud 
+# Contributor: Sébastien Luttringer
+# Contributor: Daniel Wallace 
+# Contributor: Christer Edwards 
+# Contributor: zer0def 
+
+pkgname=salt
+pkgver=3003.2
+pkgrel=1
+
+pkgdesc='Central system and configuration manager'
+arch=('any')
+url='http://saltstack.org/'
+license=('Apache')
+
+replaces=('salt-zmq' 'salt-raet')
+conflicts=('salt-zmq' 'salt-raet')
+
+depends=('python-jinja'
+ 'python-msgpack'
+ 'python-yaml'
+ 'python-markupsafe'
+ 'python-requests'
+ 'python-pyzmq'
+ 'python-m2crypto'
+ 'python-systemd'
+ 'python-distro'
+ 'python-pycryptodomex')
+optdepends=('dmidecode: decode SMBIOS/DMI tables'
+'python-pygit2: gitfs support')
+#checkdepends=('python-pytest' 'python-psutil')
+
+backup=('etc/logrotate.d/salt'
+'etc/salt/master'
+'etc/salt/minion')
+
+install=salt.install
+source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz";
+salt.logrotate)
+
+sha256sums=('73c86c44b176d8cfdc033bb1e42e4fdc8dd3424833faa2ea0d0938fa173856a9'
+'abecc3c1be124c4afffaaeb3ba32b60dfee8ba6dc32189edfa2ad154ecb7a215')
+
+prepare() {
+  sed -i '/^contextvars/d' $pkgname-$pkgver/requirements/base.txt
+}
+
+build() {
+  cd salt-$pkgver
+  python setup.py build
+}
+
+# TODO: Missing salt-factories, pytest-tempdir
+# check() {
+#   cd salt-$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() {
+  install -Dm644 salt.logrotate "$pkgdir"/etc/logrotate.d/salt
+
+  cd salt-$pkgver
+
+  export PYTHONHASHSEED=0
+  python setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1 --skip-build
+
+  # default config
+  install -Dm644 conf/master "$pkgdir/etc/salt/master"
+  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
+
+  # systemd services
+  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
+install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
+  done
+  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
+  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-testing-any/salt.install (from rev 998343, 
salt/trunk/salt.install)
===
--- community-testing-any/salt.install  (rev 0)
+++ community-testing-any/salt.install  2021-08-14 09:00:04 UTC (rev 998344)
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if [[ "$(vercmp $2 2014.1.1-1)" -le 0 ]]; then
+cat << EOF
+==> Since version 2014.1.1-2, salt-master runs by default as root user.
+==> You need to manually update your configuration and remove the salt user and
+==> group to follow the new default behavior.
+EOF
+  fi
+
+  if [[ "$(vercmp $2 2016.3.3-1)" -le 0 ]]; then
+cat << EOF
+==> Since version 2016.3.3-2 RAET is no longer supported.  Please switch to 
either
+==> zeromq or tcp for transport instead.
+EOF
+  fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: salt/repos/community-testing-any/salt.logrotate (from rev 998343, 
salt/trunk/salt.logrotate)
===
--- community-testing-any/salt.logrotate(rev 0)
+++ community-testing-any/salt.logrotate2021-08-14 09:00:04 UTC (rev 
998344)
@@ -0,0 +1,12 @@
+/var/log/salt/master
+/var/log/salt/minion
+/var/log/salt/key
+/var/log/salt/cloud
+/var/log/salt/ssh
+ {
+  compress
+  copytruncate
+  missingok
+  notifempty
+  rotate 7
+}



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 09:00:01
  Author: demize
Revision: 998343

upgpkg: salt 3003.2-1

Modified:
  salt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-14 08:59:57 UTC (rev 998342)
+++ PKGBUILD2021-08-14 09:00:01 UTC (rev 998343)
@@ -6,8 +6,8 @@
 # Contributor: zer0def 
 
 pkgname=salt
-pkgver=3003.1
-pkgrel=2
+pkgver=3003.2
+pkgrel=1
 
 pkgdesc='Central system and configuration manager'
 arch=('any')
@@ -39,7 +39,7 @@
 source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz";
 salt.logrotate)
 
-sha256sums=('8a7184d3de4d1727618f0d3fbba79e54389aeff85b72f4ceb8200bcc167f6ebe'
+sha256sums=('73c86c44b176d8cfdc033bb1e42e4fdc8dd3424833faa2ea0d0938fa173856a9'
 'abecc3c1be124c4afffaaeb3ba32b60dfee8ba6dc32189edfa2ad154ecb7a215')
 
 prepare() {



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

2021-08-14 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 14, 2021 @ 08:59:51
  Author: demize
Revision: 998341

upgpkg: python-frozendict 2.0.6-1

Modified:
  python-frozendict/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-14 05:04:53 UTC (rev 998340)
+++ PKGBUILD2021-08-14 08:59:51 UTC (rev 998341)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=python-frozendict
-pkgver=2.0.3
+pkgver=2.0.6
 pkgrel=1
 
 pkgdesc='An immutable dictionary'
@@ -14,7 +14,7 @@
 
 
source=("https://pypi.org/packages/source/f/frozendict/frozendict-$pkgver.tar.gz";)
 
-md5sums=('ca3d59c4fb744fb3be459ac71c1ccaed')
+md5sums=('67fe973cf3faae650a3ac0cbda1b2773')
 
 build() {
cd "$srcdir"/frozendict-$pkgver



[arch-commits] Commit in matrix-synapse/trunk (PKGBUILD synapse.install)

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 12:33:50
  Author: demize
Revision: 991104

upgpkg: matrix-synapse 1.39.0-2

Modified:
  matrix-synapse/trunk/PKGBUILD
  matrix-synapse/trunk/synapse.install

-+
 PKGBUILD|2 +-
 synapse.install |   12 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 12:24:33 UTC (rev 991103)
+++ PKGBUILD2021-07-31 12:33:50 UTC (rev 991104)
@@ -3,7 +3,7 @@
 
 pkgname=matrix-synapse
 pkgver=1.39.0
-pkgrel=1
+pkgrel=2
 
 pkgdesc="Matrix reference homeserver"
 url="https://github.com/matrix-org/synapse";

Modified: synapse.install
===
--- synapse.install 2021-07-31 12:24:33 UTC (rev 991103)
+++ synapse.install 2021-07-31 12:33:50 UTC (rev 991104)
@@ -47,13 +47,13 @@
 
if [[ "$(vercmp "$2" 1.38.0)" -lt 0 ]]; then
cat <<-EOF
-   ==> Synapse 1.38.0 includes a new database schema version.
+   ==> Synapse 1.38.0 includes a database migration that 
re-indexes the events table.
 
-   > This could result in increased disk I/O for several 
hours or days
-   > after upgrading while the migration completes. 
Furthermore,
-   > because we have to keep the old indexes until the new 
indexes are
-   > ready, it could result in a significant, temporary, 
increase in
-   > disk space.
+   > This could result in increased disk I/O for several hours 
or days
+   > after upgrading while the migration completes. 
Furthermore,
+   > because we have to keep the old indexes until the new 
indexes are
+   > ready, it could result in a significant, temporary, 
increase in
+   > disk space.
 
See 
https://matrix-org.github.io/synapse/develop/upgrade#upgrading-to-v1380
EOF



[arch-commits] Commit in matrix-synapse/repos/community-testing-any (16 files)

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 12:33:59
  Author: demize
Revision: 991105

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/PKGBUILD
(from rev 991104, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/generic_worker.yaml.example
(from rev 991104, matrix-synapse/trunk/generic_worker.yaml.example)
  matrix-synapse/repos/community-testing-any/synapse-worker@.service
(from rev 991104, matrix-synapse/trunk/synapse-worker@.service)
  matrix-synapse/repos/community-testing-any/synapse.install
(from rev 991104, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
(from rev 991104, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/synapse.target
(from rev 991104, matrix-synapse/trunk/synapse.target)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
(from rev 991104, matrix-synapse/trunk/sysusers-synapse.conf)
  matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf
(from rev 991104, matrix-synapse/trunk/tmpfiles-synapse.conf)
Deleted:
  matrix-synapse/repos/community-testing-any/PKGBUILD
  matrix-synapse/repos/community-testing-any/generic_worker.yaml.example
  matrix-synapse/repos/community-testing-any/synapse-worker@.service
  matrix-synapse/repos/community-testing-any/synapse.install
  matrix-synapse/repos/community-testing-any/synapse.service
  matrix-synapse/repos/community-testing-any/synapse.target
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
  matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf

-+
 PKGBUILD|  150 +-
 generic_worker.yaml.example |   68 +--
 synapse-worker@.service |   44 ++--
 synapse.install |  122 +-
 synapse.service |   46 ++--
 synapse.target  |   14 +--
 sysusers-synapse.conf   |2 
 tmpfiles-synapse.conf   |2 
 8 files changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-31 12:33:50 UTC (rev 991104)
+++ PKGBUILD2021-07-31 12:33:59 UTC (rev 991105)
@@ -1,75 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Ivan Shapovalov 
-
-pkgname=matrix-synapse
-pkgver=1.39.0
-pkgrel=1
-
-pkgdesc="Matrix reference homeserver"
-url="https://github.com/matrix-org/synapse";
-arch=('any')
-license=('Apache')
-
-depends=('libwebp' 'python-ijson' 'python-jsonschema' 'python-twisted'
- 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
- 'python-bcrypt' 'python-frozendict'
- 'python-pillow' 'python-pysaml2' 'python-setuptools'
- 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
- 'python-signedjson' 'python-pymacaroons'
- 'python-service-identity' 'python-msgpack'
- 'python-phonenumbers' 'python-prometheus_client'
- 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
- 'python-treq' 'python-idna' 'python-jinja'
- 'python-bleach' 'python-typing_extensions' 'systemd')
-checkdepends=('python-authlib' 'python-pyjwt' 'python-lxml' 
'python-parameterized'
-  'python-txredisapi' 'python-hiredis')
-optdepends=('perl: sync_room_to_group.pl'
-'python-psycopg2: PostgreSQL support'
-'python-lxml: URL previewing'
-'python-psutil: metrics'
-'python-pyjwt: jwt'
-'python-txredisapi: redis'
-'python-hiredis')
-
-source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz";
-'generic_worker.yaml.example'
-'synapse.service'
-'synapse.target'
-'synapse-worker@.service'
-'sysusers-synapse.conf'
-'tmpfiles-synapse.conf')
-
-sha256sums=('36b5949f3a989a52efb8ba7d9ca0f71cd13eea1a1cd0048756e2309c143dec53'
-'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
-'74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
-'408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'
-'c9657c201ad89985c8c915bfa0ea7517a412071736b4d9545d8f6474fddc44e2'
-'aadfdd78fe73e6eb325ee4299b8db8b97bfa2f4e7df953aa8477f442598a7ec5'
-'65588c8c64dfb84cab831cd8d028a295d753cf7322dd63053e8488466047b45f')
-
-backup=('etc/synapse/log_config.yaml')
-install=synapse.install
-
-build() {
-   cd synapse-$pkgver
-   python setup.py build
-}
-
-check() {
-   cd synapse-$pkgver
-   PYTHONPATH=. trial tests
-}
-
-package() {
-   cd synapse-$pkgver
-   export PYTHONHASHSEED=0
-   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
-
-   install -dm755 -o 198 -g 198 "$pkgdir"/etc/

[arch-commits] Commit in zathura-pdf-mupdf/repos (2 files)

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 12:06:58
  Author: demize
Revision: 991101

archrelease: copy trunk to community-testing-x86_64

Added:
  zathura-pdf-mupdf/repos/community-testing-x86_64/
  zathura-pdf-mupdf/repos/community-testing-x86_64/PKGBUILD
(from rev 991100, zathura-pdf-mupdf/trunk/PKGBUILD)

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

Copied: zathura-pdf-mupdf/repos/community-testing-x86_64/PKGBUILD (from rev 
991100, zathura-pdf-mupdf/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-31 12:06:58 UTC (rev 991101)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: Moritz Lipp 
+
+pkgname=zathura-pdf-mupdf
+pkgver=0.3.7
+pkgrel=1
+
+pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
+url="https://pwmt.org/projects/zathura-pdf-mupdf/";
+arch=('x86_64')
+license=('zlib')
+
+conflicts=('zathura-pdf-poppler')
+
+depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 'openjpeg2' 'openssl' 
'zathura')
+makedepends=('libmupdf' 'meson' 'ninja' 'git')
+
+source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://pwmt.org/projects/zathura-pdf-mupdf/download/zathura-pdf-mupdf-$pkgver.tar.xz)
+
+sha256sums=('2f00aa682d4d4a6324c9777bf158e51584c77729ec393f3e10343bec936ea21d')
+
+build() {
+  cd zathura-pdf-mupdf-$pkgver
+  arch-meson -Dlink-external=true build
+  ninja -C build
+}
+
+package(){
+  DESTDIR="$pkgdir" ninja -C zathura-pdf-mupdf-$pkgver/build install
+  install -Dm0644 zathura-pdf-mupdf-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in zathura-pdf-mupdf/trunk (PKGBUILD)

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 12:06:52
  Author: demize
Revision: 991100

upgpkg: zathura-pdf-mupdf 0.3.7-1

Modified:
  zathura-pdf-mupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:59:45 UTC (rev 991099)
+++ PKGBUILD2021-07-31 12:06:52 UTC (rev 991100)
@@ -4,8 +4,8 @@
 # Contributor: Moritz Lipp 
 
 pkgname=zathura-pdf-mupdf
-pkgver=0.3.6
-pkgrel=5
+pkgver=0.3.7
+pkgrel=1
 
 pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
 url="https://pwmt.org/projects/zathura-pdf-mupdf/";
@@ -17,17 +17,10 @@
 depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 'openjpeg2' 'openssl' 
'zathura')
 makedepends=('libmupdf' 'meson' 'ninja' 'git')
 
-source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://github.com/pwmt/zathura-pdf-mupdf/archive/$pkgver.tar.gz
-
https://git.pwmt.org/pwmt/zathura-pdf-mupdf/-/commit/988ad45b1ee0f2dceb269f9016a926e110e8ee21.patch)
+source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://pwmt.org/projects/zathura-pdf-mupdf/download/zathura-pdf-mupdf-$pkgver.tar.xz)
 
-sha1sums=('ece4731ee5744433b47d403e03eea89e67906c4f'
-  '7fbc8fb6b0840c12114dac51c756bc61c503d08b')
+sha256sums=('2f00aa682d4d4a6324c9777bf158e51584c77729ec393f3e10343bec936ea21d')
 
-prepare() {
-  cd zathura-pdf-mupdf-$pkgver
-  patch -p1 <"$srcdir"/988ad45b1ee0f2dceb269f9016a926e110e8ee21.patch
-}
-
 build() {
   cd zathura-pdf-mupdf-$pkgver
   arch-meson -Dlink-external=true build



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:59:45
  Author: demize
Revision: 991099

archrelease: copy trunk to community-testing-x86_64

Added:
  zathura/repos/community-testing-x86_64/
  
zathura/repos/community-testing-x86_64/0001-meson.build-Don-t-do-broken-synctex-version-check.patch
(from rev 991098, 
zathura/trunk/0001-meson.build-Don-t-do-broken-synctex-version-check.patch)
  zathura/repos/community-testing-x86_64/PKGBUILD
(from rev 991098, zathura/trunk/PKGBUILD)

--+
 0001-meson.build-Don-t-do-broken-synctex-version-check.patch |   30 ++
 PKGBUILD |   46 ++
 2 files changed, 76 insertions(+)

Copied: 
zathura/repos/community-testing-x86_64/0001-meson.build-Don-t-do-broken-synctex-version-check.patch
 (from rev 991098, 
zathura/trunk/0001-meson.build-Don-t-do-broken-synctex-version-check.patch)
===
--- 
community-testing-x86_64/0001-meson.build-Don-t-do-broken-synctex-version-check.patch
   (rev 0)
+++ 
community-testing-x86_64/0001-meson.build-Don-t-do-broken-synctex-version-check.patch
   2021-07-31 11:59:45 UTC (rev 991099)
@@ -0,0 +1,30 @@
+From 024f228c45a1df3f01dada4e72e99dd7a76ecf26 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Sun, 27 May 2018 02:11:24 +0200
+Subject: [PATCH] meson.build: Don't do broken synctex version check
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ meson.build | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index 1862fa0..63246e8 100644
+--- a/meson.build
 b/meson.build
+@@ -82,9 +82,6 @@ endif
+ if get_option('enable-synctex') and synctex.found()
+   build_dependencies += synctex
+   defines += '-DWITH_SYNCTEX'
+-  if synctex.version() < '2.0.0'
+-defines += '-DWITH_SYNCTEX1'
+-  endif
+ endif
+ 
+ if get_option('enable-magic') and magic.found()
+-- 
+2.17.0
+

Copied: zathura/repos/community-testing-x86_64/PKGBUILD (from rev 991098, 
zathura/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-31 11:59:45 UTC (rev 991099)
@@ -0,0 +1,46 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: ML 
+
+pkgname=zathura
+pkgver=0.4.8
+pkgrel=1
+
+pkgdesc="Minimalistic document viewer"
+url="https://pwmt.org/projects/zathura/";
+arch=('x86_64')
+license=('custom')
+
+makedepends=('python-sphinx' 'texlive-bin' 'meson' 'ninja' 'appstream-glib' 
'check')
+depends=('girara>=0.2.7' 'sqlite' 'desktop-file-utils' 'file' 'libsynctex')
+optdepends=('zathura-djvu: DjVu support'
+'zathura-pdf-poppler: PDF support using Poppler'
+'zathura-pdf-mupdf: PDF support using MuPDF'
+'zathura-ps: PostScript support'
+'zathura-cb: Comic book support')
+
+source=(zathura-$pkgver.tar.gz::https://github.com/pwmt/zathura/archive/$pkgver.tar.gz)
+
+sha1sums=('262d69e76987c57fe8d899e3ea3d8faa80aa9207')
+
+build() {
+  cd zathura-$pkgver
+  arch-meson build
+
+  cd build
+  ninja
+}
+
+check() {
+  cd zathura-$pkgver/build
+
+  ninja test
+}
+
+package() {
+  cd zathura-$pkgver/build
+  DESTDIR="$pkgdir" ninja install
+
+  install -D -m664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:59:42
  Author: demize
Revision: 991098

upgpkg: zathura 0.4.8-1

Modified:
  zathura/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:52:31 UTC (rev 991097)
+++ PKGBUILD2021-07-31 11:59:42 UTC (rev 991098)
@@ -4,7 +4,7 @@
 # Contributor: ML 
 
 pkgname=zathura
-pkgver=0.4.7
+pkgver=0.4.8
 pkgrel=1
 
 pkgdesc="Minimalistic document viewer"
@@ -22,7 +22,7 @@
 
 
source=(zathura-$pkgver.tar.gz::https://github.com/pwmt/zathura/archive/$pkgver.tar.gz)
 
-sha1sums=('4923fd590b31c8dea38d80d55cf4f922c1bd2b9f')
+sha1sums=('262d69e76987c57fe8d899e3ea3d8faa80aa9207')
 
 build() {
   cd zathura-$pkgver



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:57:17
  Author: demize
Revision: 420953

archrelease: copy trunk to testing-any

Added:
  python-prometheus_client/repos/testing-any/
  python-prometheus_client/repos/testing-any/PKGBUILD
(from rev 420952, python-prometheus_client/trunk/PKGBUILD)
Deleted:
  python-prometheus_client/repos/community-testing-any/

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

Copied: python-prometheus_client/repos/testing-any/PKGBUILD (from rev 420952, 
python-prometheus_client/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2021-07-31 11:57:17 UTC (rev 420953)
@@ -0,0 +1,34 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-prometheus_client
+pkgver=0.11.0
+pkgrel=1
+
+pkgdesc="Prometheus instrumentation library for Python applications"
+url="https://github.com/prometheus/client_python";
+arch=('any')
+license=('APACHE')
+
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-twisted' 'python-pytest')
+
+source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
+
+sha512sums=('5e644d781b7fcc3e0e386a2244f524ccaf978f1eab87b1d6d8009ac3f10fe2ca4adf2c76c2a2ffa47b4b54237cd906807d55bd99530a92d82cd3825de93280dc')
+
+build() {
+  cd client_python-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd client_python-$pkgver
+  # Make reproducible by not writing pyc files for test files. (rebuilderd 
does not run tests)
+  PYTHONDONTWRITEBYTECODE=1 python setup.py test
+}
+
+package() {
+  cd client_python-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:56:03
  Author: demize
Revision: 420952

archrelease: copy trunk to community-testing-any

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

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

Copied: python-prometheus_client/repos/community-testing-any/PKGBUILD (from rev 
420951, python-prometheus_client/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-07-31 11:56:03 UTC (rev 420952)
@@ -0,0 +1,34 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-prometheus_client
+pkgver=0.11.0
+pkgrel=1
+
+pkgdesc="Prometheus instrumentation library for Python applications"
+url="https://github.com/prometheus/client_python";
+arch=('any')
+license=('APACHE')
+
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-twisted' 'python-pytest')
+
+source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
+
+sha512sums=('5e644d781b7fcc3e0e386a2244f524ccaf978f1eab87b1d6d8009ac3f10fe2ca4adf2c76c2a2ffa47b4b54237cd906807d55bd99530a92d82cd3825de93280dc')
+
+build() {
+  cd client_python-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd client_python-$pkgver
+  # Make reproducible by not writing pyc files for test files. (rebuilderd 
does not run tests)
+  PYTHONDONTWRITEBYTECODE=1 python setup.py test
+}
+
+package() {
+  cd client_python-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:56:00
  Author: demize
Revision: 420951

upgpkg: python-prometheus_client 0.11.0-1

Modified:
  python-prometheus_client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 09:17:42 UTC (rev 420950)
+++ PKGBUILD2021-07-31 11:56:00 UTC (rev 420951)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=python-prometheus_client
-pkgver=0.10.1
+pkgver=0.11.0
 pkgrel=1
 
 pkgdesc="Prometheus instrumentation library for Python applications"
@@ -15,7 +15,7 @@
 
 
source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
 
-sha512sums=('231c86bfeb2a35fbaf172005ead5b790b107c55f3657d94ad417c0036cc72ad6b48ebef7d52d2fdd1bca9b98032d1057250a880b002a29e98efa803886f26766')
+sha512sums=('5e644d781b7fcc3e0e386a2244f524ccaf978f1eab87b1d6d8009ac3f10fe2ca4adf2c76c2a2ffa47b4b54237cd906807d55bd99530a92d82cd3825de93280dc')
 
 build() {
   cd client_python-$pkgver



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:52:31
  Author: demize
Revision: 991097

archrelease: copy trunk to community-testing-any

Added:
  python-mypy-protobuf/repos/community-testing-any/
  python-mypy-protobuf/repos/community-testing-any/PKGBUILD
(from rev 991096, python-mypy-protobuf/trunk/PKGBUILD)

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

Copied: python-mypy-protobuf/repos/community-testing-any/PKGBUILD (from rev 
991096, python-mypy-protobuf/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-07-31 11:52:31 UTC (rev 991097)
@@ -0,0 +1,26 @@
+# Don't bump to 2.X until we have Anki >= 2.1.41
+pkgname=python-mypy-protobuf
+pkgver=2.9
+pkgrel=1
+
+pkgdesc='Generate mypy stub files from protobuf specs'
+url='https://github.com/dropbox/mypy-protobuf'
+arch=('any')
+license=('Apache')
+
+depends=('mypy' 'protobuf' 'python' 'python-protobuf')
+makedepends=('python-setuptools')
+
+source=("https://files.pythonhosted.org/packages/source/m/mypy-protobuf/mypy-protobuf-$pkgver.tar.gz";)
+
+sha256sums=('278172935d7121c2f8c7c0a05518dd565a2b76d9e9c4a0a3fcd08a21fa685d43')
+
+build() {
+  cd mypy-protobuf-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd mypy-protobuf-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:52:28
  Author: demize
Revision: 991096

upgpkg: python-mypy-protobuf 2.9-1

Modified:
  python-mypy-protobuf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:50:08 UTC (rev 991095)
+++ PKGBUILD2021-07-31 11:52:28 UTC (rev 991096)
@@ -1,6 +1,6 @@
 # Don't bump to 2.X until we have Anki >= 2.1.41
 pkgname=python-mypy-protobuf
-pkgver=1.24
+pkgver=2.9
 pkgrel=1
 
 pkgdesc='Generate mypy stub files from protobuf specs'
@@ -13,7 +13,7 @@
 
 
source=("https://files.pythonhosted.org/packages/source/m/mypy-protobuf/mypy-protobuf-$pkgver.tar.gz";)
 
-sha256sums=('5637376deba46b68dec62bad75b8655a5f328ecdedd6a5e78c50a68326391c61')
+sha256sums=('278172935d7121c2f8c7c0a05518dd565a2b76d9e9c4a0a3fcd08a21fa685d43')
 
 build() {
   cd mypy-protobuf-$pkgver



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:50:08
  Author: demize
Revision: 991095

archrelease: copy trunk to community-testing-x86_64

Added:
  python-hiredis/repos/community-testing-x86_64/
  python-hiredis/repos/community-testing-x86_64/PKGBUILD
(from rev 991094, python-hiredis/trunk/PKGBUILD)

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

Copied: python-hiredis/repos/community-testing-x86_64/PKGBUILD (from rev 
991094, python-hiredis/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-31 11:50:08 UTC (rev 991095)
@@ -0,0 +1,29 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-hiredis
+pkgver=2.0.0
+pkgrel=1
+
+pkgdesc='Non-blocking redis client for python'
+url='https://pypi.org/project/hiredis/'
+arch=('x86_64')
+license=('Apache')
+
+depends=('python')
+makedepends=('python-setuptools')
+
+source=("https://pypi.org/packages/source/h/hiredis/hiredis-$pkgver.tar.gz";)
+
+sha256sums=('81d6d8e39695f2c37954d1011c0480ef7cf444d4e3ae24bc5e89ee5de360139a')
+
+build() {
+   cd "$srcdir"/hiredis-$pkgver
+   python setup.py build
+}
+
+package() {
+   cd hiredis-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:50:06
  Author: demize
Revision: 991094

upgpkg: python-hiredis 2.0.0-1

Modified:
  python-hiredis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:48:16 UTC (rev 991093)
+++ PKGBUILD2021-07-31 11:50:06 UTC (rev 991094)
@@ -1,11 +1,11 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=python-hiredis
-pkgver=1.1.0
-pkgrel=3
+pkgver=2.0.0
+pkgrel=1
 
 pkgdesc='Non-blocking redis client for python'
-url='https://pypi.python.org/pypi/txredisapi/'
+url='https://pypi.org/project/hiredis/'
 arch=('x86_64')
 license=('Apache')
 
@@ -14,7 +14,7 @@
 
 source=("https://pypi.org/packages/source/h/hiredis/hiredis-$pkgver.tar.gz";)
 
-sha256sums=('996021ef33e0f50b97ff2d6b5f422a0fe5577de21a8873b58a779a5ddd1c3132')
+sha256sums=('81d6d8e39695f2c37954d1011c0480ef7cf444d4e3ae24bc5e89ee5de360139a')
 
 build() {
cd "$srcdir"/hiredis-$pkgver



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:48:14
  Author: demize
Revision: 991092

upgpkg: python-frozendict 2.0.3-1

Modified:
  python-frozendict/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:46:28 UTC (rev 991091)
+++ PKGBUILD2021-07-31 11:48:14 UTC (rev 991092)
@@ -2,8 +2,8 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=python-frozendict
-pkgver=1.2
-pkgrel=8
+pkgver=2.0.3
+pkgrel=1
 
 pkgdesc='An immutable dictionary'
 url='https://pypi.python.org/pypi/frozendict/'
@@ -14,7 +14,7 @@
 
 
source=("https://pypi.org/packages/source/f/frozendict/frozendict-$pkgver.tar.gz";)
 
-md5sums=('483ce6ddfe68ca197bc123aaafebf9ab')
+md5sums=('ca3d59c4fb744fb3be459ac71c1ccaed')
 
 build() {
cd "$srcdir"/frozendict-$pkgver



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:46:28
  Author: demize
Revision: 991091

archrelease: copy trunk to community-x86_64

Added:
  oidentd/repos/community-x86_64/PKGBUILD
(from rev 991090, oidentd/trunk/PKGBUILD)
  oidentd/repos/community-x86_64/service
(from rev 991090, oidentd/trunk/service)
  oidentd/repos/community-x86_64/socket
(from rev 991090, oidentd/trunk/socket)
  oidentd/repos/community-x86_64/sysusers.conf
(from rev 991090, oidentd/trunk/sysusers.conf)
Deleted:
  oidentd/repos/community-x86_64/PKGBUILD
  oidentd/repos/community-x86_64/service
  oidentd/repos/community-x86_64/socket
  oidentd/repos/community-x86_64/sysusers.conf

---+
 PKGBUILD  |   88 
 service   |   16 +-
 socket|   18 +--
 sysusers.conf |2 -
 4 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-31 11:46:24 UTC (rev 991090)
+++ PKGBUILD2021-07-31 11:46:28 UTC (rev 991091)
@@ -1,44 +0,0 @@
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: simo 
-# Contributor: Mateusz Herych 
-# Contributor: Tom Newsom 
-
-pkgname=oidentd
-pkgver=2.5.0
-pkgrel=1
-pkgdesc='An RFC1413 compliant ident daemon'
-arch=('x86_64')
-url="https://oidentd.janikrabe.com/";
-license=('GPL')
-depends=('glibc' 'libnetfilter_conntrack')
-backup=(etc/oidentd.conf)
-source=(https://files.janikrabe.com/pub/oidentd/releases/$pkgver/oidentd-$pkgver.tar.xz{,.asc}
-service socket sysusers.conf)
-
-md5sums=('dc994cb652ef018e651f25e565d6f02a'
- 'SKIP'
- '8e1fec6ceece6bbf394381c58b531f76'
- '4442fb9fc10754914568e6ffc3d5fc42'
- '62cda7be7064da326e091bf7110c6ca4')
-
-validpgpkeys=('63694DD76ED116B84D286F75C4CD3CE186D1CA13') # Janik Rabe
-
-build() {
-   cd oidentd-$pkgver
-   ./configure \
-   --sysconfdir=/etc \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd oidentd-$pkgver
-   make DESTDIR="$pkgdir" install
-
-   install -D -m644 "$srcdir"/service 
"$pkgdir"/usr/lib/systemd/system/oidentd@.service
-   install -D -m644 "$srcdir"/socket 
"$pkgdir"/usr/lib/systemd/system/oidentd.socket
-   install -D -m644 "$srcdir"/sysusers.conf 
"$pkgdir"/usr/lib/sysusers.d/oidentd.conf
-}
-

Copied: oidentd/repos/community-x86_64/PKGBUILD (from rev 991090, 
oidentd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-31 11:46:28 UTC (rev 991091)
@@ -0,0 +1,44 @@
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: simo 
+# Contributor: Mateusz Herych 
+# Contributor: Tom Newsom 
+
+pkgname=oidentd
+pkgver=2.5.1
+pkgrel=1
+pkgdesc='An RFC1413 compliant ident daemon'
+arch=('x86_64')
+url="https://oidentd.janikrabe.com/";
+license=('GPL')
+depends=('glibc' 'libnetfilter_conntrack')
+backup=(etc/oidentd.conf)
+source=(https://files.janikrabe.com/pub/oidentd/releases/$pkgver/oidentd-$pkgver.tar.xz{,.asc}
+service socket sysusers.conf)
+
+md5sums=('20a1cb0d7ef5f55052ffdf3f95bdf4ec'
+ 'SKIP'
+ '8e1fec6ceece6bbf394381c58b531f76'
+ '4442fb9fc10754914568e6ffc3d5fc42'
+ '62cda7be7064da326e091bf7110c6ca4')
+
+validpgpkeys=('63694DD76ED116B84D286F75C4CD3CE186D1CA13') # Janik Rabe
+
+build() {
+   cd oidentd-$pkgver
+   ./configure \
+   --sysconfdir=/etc \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd oidentd-$pkgver
+   make DESTDIR="$pkgdir" install
+
+   install -D -m644 "$srcdir"/service 
"$pkgdir"/usr/lib/systemd/system/oidentd@.service
+   install -D -m644 "$srcdir"/socket 
"$pkgdir"/usr/lib/systemd/system/oidentd.socket
+   install -D -m644 "$srcdir"/sysusers.conf 
"$pkgdir"/usr/lib/sysusers.d/oidentd.conf
+}
+

Deleted: service
===
--- service 2021-07-31 11:46:24 UTC (rev 991090)
+++ service 2021-07-31 11:46:28 UTC (rev 991091)
@@ -1,8 +0,0 @@
-[Unit]
-Description=Ident (RFC 1413) per-connection server
-
-[Service]
-ExecStart=/usr/bin/oidentd -I -u oidentd -g oidentd
-ExecReload=/bin/kill -HUP $MAINPID
-StandardInput=socket
-StandardError=syslog

Copied: oidentd/repos/community-x86_64/service (from rev 991090, 
oidentd/trunk/service)
===
--- service (rev 0)
+++ service 2021-07-31 11:46:28 UTC (rev 991091)
@@ -0,0 +1,8 @@
+[Unit]
+Description=Ident (RFC 1413) per-connection server
+
+[Service]
+ExecStart=/usr/bin/oidentd -I -u oidentd -g oidentd
+ExecReload=/bin/kill -HUP $MAINPID
+StandardInput=socket
+StandardError=syslog

Deleted:

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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:46:24
  Author: demize
Revision: 991090

upgpkg: oidentd 2.5.1-1

Modified:
  oidentd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:42:28 UTC (rev 991089)
+++ PKGBUILD2021-07-31 11:46:24 UTC (rev 991090)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=oidentd
-pkgver=2.5.0
+pkgver=2.5.1
 pkgrel=1
 pkgdesc='An RFC1413 compliant ident daemon'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 
source=(https://files.janikrabe.com/pub/oidentd/releases/$pkgver/oidentd-$pkgver.tar.xz{,.asc}
 service socket sysusers.conf)
 
-md5sums=('dc994cb652ef018e651f25e565d6f02a'
+md5sums=('20a1cb0d7ef5f55052ffdf3f95bdf4ec'
  'SKIP'
  '8e1fec6ceece6bbf394381c58b531f76'
  '4442fb9fc10754914568e6ffc3d5fc42'



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:42:28
  Author: demize
Revision: 991089

archrelease: copy trunk to community-any

Added:
  repo/repos/community-any/PKGBUILD
(from rev 991088, repo/trunk/PKGBUILD)
Deleted:
  repo/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-31 11:42:26 UTC (rev 991088)
+++ PKGBUILD2021-07-31 11:42:28 UTC (rev 991089)
@@ -1,24 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=repo
-pkgver=2.16
-pkgrel=1
-
-pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"
-url="https://android.googlesource.com/tools/repo";
-arch=('any')
-license=("APACHE")
-
-depends=("git" "python")
-
-validpgpkeys=('8BB9AD793E8E6153AF0F9A4416530D5E920F5C65'
-  '16530D5E920F5C65') # Repo Maintainer 
-source=("git+https://android.googlesource.com/tools/repo.git#tag=v$pkgver?signed";)
-
-sha256sums=('SKIP')
-
-package() {
-  cd repo
-  install -D -m 755 repo "$pkgdir/usr/bin/repo"
-  install -D -m 644 docs/manifest-format.md 
"$pkgdir/usr/share/doc/$pkgname/manifest-format.md"
-}

Copied: repo/repos/community-any/PKGBUILD (from rev 991088, repo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-31 11:42:28 UTC (rev 991089)
@@ -0,0 +1,24 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=repo
+pkgver=2.16.4
+pkgrel=1
+
+pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"
+url="https://android.googlesource.com/tools/repo";
+arch=('any')
+license=("APACHE")
+
+depends=("git" "python")
+
+validpgpkeys=('8BB9AD793E8E6153AF0F9A4416530D5E920F5C65'
+  '16530D5E920F5C65') # Repo Maintainer 
+source=("git+https://android.googlesource.com/tools/repo.git#tag=v$pkgver?signed";)
+
+sha256sums=('SKIP')
+
+package() {
+  cd repo
+  install -D -m 755 repo "$pkgdir/usr/bin/repo"
+  install -D -m 644 docs/manifest-format.md 
"$pkgdir/usr/share/doc/$pkgname/manifest-format.md"
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:42:26
  Author: demize
Revision: 991088

upgpkg: repo 2.16.4-1

Modified:
  repo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:42:17 UTC (rev 991087)
+++ PKGBUILD2021-07-31 11:42:26 UTC (rev 991088)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=repo
-pkgver=2.16
+pkgver=2.16.4
 pkgrel=1
 
 pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:42:17
  Author: demize
Revision: 991087

archrelease: copy trunk to community-testing-x86_64

Added:
  maturin/repos/community-testing-x86_64/
  maturin/repos/community-testing-x86_64/PKGBUILD
(from rev 991086, maturin/trunk/PKGBUILD)

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

Copied: maturin/repos/community-testing-x86_64/PKGBUILD (from rev 991086, 
maturin/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-31 11:42:17 UTC (rev 991087)
@@ -0,0 +1,25 @@
+pkgname=maturin
+pkgver=0.11.2
+pkgrel=1
+
+pkgdesc="Build and publish crates with pyo3, rust-cpython and cffi bindings"
+url="https://github.com/PyO3/maturin";
+arch=(x86_64)
+license=(Apache)
+
+depends=(gcc-libs libdbus-1.so rust)
+makedepends=(git)
+
+source=(git+https://github.com/PyO3/maturin#tag=v$pkgver)
+sha256sums=('SKIP')
+validpgpkeys=('07515D832489235391FD5799305BDEA95BCA5CBF')
+
+build() {
+  cd maturin
+  cargo build --release --locked --all-features
+}
+
+package() {
+  cd maturin
+  install -Dm755 target/release/maturin "$pkgdir"/usr/bin/maturin
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:42:12
  Author: demize
Revision: 991086

upgpkg: maturin 0.11.2-1

Modified:
  maturin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:31:38 UTC (rev 991085)
+++ PKGBUILD2021-07-31 11:42:12 UTC (rev 991086)
@@ -1,5 +1,5 @@
 pkgname=maturin
-pkgver=0.9.4
+pkgver=0.11.2
 pkgrel=1
 
 pkgdesc="Build and publish crates with pyo3, rust-cpython and cffi bindings"



[arch-commits] Commit in matrix-synapse/trunk (PKGBUILD synapse.install)

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:31:30
  Author: demize
Revision: 991084

upgpkg: matrix-synapse 1.39.0-1

Modified:
  matrix-synapse/trunk/PKGBUILD
  matrix-synapse/trunk/synapse.install

-+
 PKGBUILD|4 ++--
 synapse.install |   14 ++
 2 files changed, 16 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:14:41 UTC (rev 991083)
+++ PKGBUILD2021-07-31 11:31:30 UTC (rev 991084)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.37.1
+pkgver=1.39.0
 pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
@@ -39,7 +39,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf')
 
-sha256sums=('1c2e9acbc52c55585d864e708f6299b0fda23e70ab7a01a0f6e01c3944889dc5'
+sha256sums=('36b5949f3a989a52efb8ba7d9ca0f71cd13eea1a1cd0048756e2309c143dec53'
 'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
 '74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
 '408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'

Modified: synapse.install
===
--- synapse.install 2021-07-31 11:14:41 UTC (rev 991083)
+++ synapse.install 2021-07-31 11:31:30 UTC (rev 991084)
@@ -44,4 +44,18 @@

https://github.com/matrix-org/synapse/blob/v1.26.0/UPGRADE.rst#upgrading-to-v1260
EOF
fi
+
+   if [[ "$(vercmp "$2" 1.38.0)" -lt 0 ]]; then
+   cat <<-EOF
+   ==> Synapse 1.38.0 includes a new database schema version.
+
+   > This could result in increased disk I/O for several 
hours or days
+   > after upgrading while the migration completes. 
Furthermore,
+   > because we have to keep the old indexes until the new 
indexes are
+   > ready, it could result in a significant, temporary, 
increase in
+   > disk space.
+
+   See 
https://matrix-org.github.io/synapse/develop/upgrade#upgrading-to-v1380
+   EOF
+   fi
 }



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:14:41
  Author: demize
Revision: 991083

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
(from rev 991082, elixir/trunk/PKGBUILD)

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 991082, 
elixir/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-07-31 11:14:41 UTC (rev 991083)
@@ -0,0 +1,35 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.12.2
+pkgrel=1
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+arch=('any')
+license=('Apache' 'custom:EPL')
+depends=('erlang-nox')
+checkdepends=('git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('701006d1279225fc42f15c8d3f39906db127ddcc95373d34d8d160993356b15c')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:14:35
  Author: demize
Revision: 991082

upgpkg: elixir 1.12.2-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:04:44 UTC (rev 991081)
+++ PKGBUILD2021-07-31 11:14:35 UTC (rev 991082)
@@ -3,7 +3,7 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.12.1
+pkgver=1.12.2
 pkgrel=1
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
 url="https://elixir-lang.org";
@@ -12,7 +12,7 @@
 depends=('erlang-nox')
 checkdepends=('git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
-sha256sums=('96167d614b9c483efc54bd7898c3eea4768569a77dd8892ada85d7800d5e3ea4')
+sha256sums=('701006d1279225fc42f15c8d3f39906db127ddcc95373d34d8d160993356b15c')
 
 build() {
   cd elixir-"$pkgver"



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:04:44
  Author: demize
Revision: 991081

archrelease: copy trunk to community-any

Added:
  hunspell-pl/repos/community-any/PKGBUILD
(from rev 991080, hunspell-pl/trunk/PKGBUILD)
Deleted:
  hunspell-pl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-31 11:04:41 UTC (rev 991080)
+++ PKGBUILD2021-07-31 11:04:44 UTC (rev 991081)
@@ -1,51 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Maciej Sitarz 
-
-pkgname=hunspell-pl
-pkgver=20210105
-pkgrel=1
-pkgdesc='Polish dictionary for Hunspell'
-arch=('any')
-url='https://www.sjp.pl/slownik/ort/'
-license=('GPL')
-optdepends=('hunspell: the spell checking libraries and apps')
-makedepends=('qt5-webengine')
-source=(https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-$pkgver.zip)
-md5sums=('6d08c60ad34d638997bceaa50b590970')
-
-prepare() {
-  bsdtar -xf pl_PL.zip
-
-  # fix file encoding - FS#68481
-  # check for broken files using
-  # file -i  $(pacman -Qql hunspell-pl) | grep iso
-  for file in pl_PL.aff pl_PL.dic; do
-  mv $file $file.ISO-8859
-  iconv -f iso-8859-2 -t utf-8 $file.ISO-8859 -o $file
-  # fix encoding in .aff files
-  sed -i "s/SET ISO8859-2/SET UTF-8/" $file
-  done
-}
-
-package() {
-  install -dm755 "$pkgdir"/usr/share/hunspell
-  install -m644 pl_PL.aff "$pkgdir"/usr/share/hunspell
-  install -m644 pl_PL.dic "$pkgdir"/usr/share/hunspell
-
-  # the symlinks
-  install -dm755 "$pkgdir"/usr/share/myspell/dicts
-  pushd "$pkgdir"/usr/share/myspell/dicts
-  for file in "$pkgdir"/usr/share/hunspell/*; do
-ln -sv /usr/share/hunspell/$(basename $file) .
-  done
-  popd
-
-  # docs
-  install -dm755 "$pkgdir"/usr/share/doc/$pkgname
-  install -m644 README_pl_PL.txt "$pkgdir"/usr/share/doc/$pkgname
-
- # Install webengine dictionaries
-  install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/
-  qwebengine_convert_dict "$pkgdir"/usr/share/hunspell/pl_PL.dic 
"$pkgdir"/usr/share/qt/qtwebengine_dictionaries/pl_PL.bdic
-}

Copied: hunspell-pl/repos/community-any/PKGBUILD (from rev 991080, 
hunspell-pl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-31 11:04:44 UTC (rev 991081)
@@ -0,0 +1,51 @@
+# Maintainer: Johannes Löthberg 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Maciej Sitarz 
+
+pkgname=hunspell-pl
+pkgver=20210731
+pkgrel=1
+pkgdesc='Polish dictionary for Hunspell'
+arch=('any')
+url='https://www.sjp.pl/slownik/ort/'
+license=('GPL')
+optdepends=('hunspell: the spell checking libraries and apps')
+makedepends=('qt5-webengine')
+source=(https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-$pkgver.zip)
+sha256sums=('40dda0324406ba053e7fcb9ef96fd6658bb48de048d03fef96fb17103a585f44')
+
+prepare() {
+  bsdtar -xf pl_PL.zip
+
+  # fix file encoding - FS#68481
+  # check for broken files using
+  # file -i  $(pacman -Qql hunspell-pl) | grep iso
+  for file in pl_PL.aff pl_PL.dic; do
+  mv $file $file.ISO-8859
+  iconv -f iso-8859-2 -t utf-8 $file.ISO-8859 -o $file
+  # fix encoding in .aff files
+  sed -i "s/SET ISO8859-2/SET UTF-8/" $file
+  done
+}
+
+package() {
+  install -dm755 "$pkgdir"/usr/share/hunspell
+  install -m644 pl_PL.aff "$pkgdir"/usr/share/hunspell
+  install -m644 pl_PL.dic "$pkgdir"/usr/share/hunspell
+
+  # the symlinks
+  install -dm755 "$pkgdir"/usr/share/myspell/dicts
+  pushd "$pkgdir"/usr/share/myspell/dicts
+  for file in "$pkgdir"/usr/share/hunspell/*; do
+ln -sv /usr/share/hunspell/$(basename $file) .
+  done
+  popd
+
+  # docs
+  install -dm755 "$pkgdir"/usr/share/doc/$pkgname
+  install -m644 README_pl_PL.txt "$pkgdir"/usr/share/doc/$pkgname
+
+ # Install webengine dictionaries
+  install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/
+  qwebengine_convert_dict "$pkgdir"/usr/share/hunspell/pl_PL.dic 
"$pkgdir"/usr/share/qt/qtwebengine_dictionaries/pl_PL.bdic
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:04:41
  Author: demize
Revision: 991080

upgpkg: hunspell-pl 20210731-1

Modified:
  hunspell-pl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 11:03:16 UTC (rev 991079)
+++ PKGBUILD2021-07-31 11:04:41 UTC (rev 991080)
@@ -3,7 +3,7 @@
 # Contributor: Maciej Sitarz 
 
 pkgname=hunspell-pl
-pkgver=20210105
+pkgver=20210731
 pkgrel=1
 pkgdesc='Polish dictionary for Hunspell'
 arch=('any')
@@ -12,7 +12,7 @@
 optdepends=('hunspell: the spell checking libraries and apps')
 makedepends=('qt5-webengine')
 
source=(https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-$pkgver.zip)
-md5sums=('6d08c60ad34d638997bceaa50b590970')
+sha256sums=('40dda0324406ba053e7fcb9ef96fd6658bb48de048d03fef96fb17103a585f44')
 
 prepare() {
   bsdtar -xf pl_PL.zip



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:03:16
  Author: demize
Revision: 991079

archrelease: copy trunk to community-x86_64

Added:
  aspell-pl/repos/community-x86_64/PKGBUILD
(from rev 991078, aspell-pl/trunk/PKGBUILD)
Deleted:
  aspell-pl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-31 11:03:10 UTC (rev 991078)
+++ PKGBUILD2021-07-31 11:03:16 UTC (rev 991079)
@@ -1,29 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Arkadiusz Laczynski 
-# Contributor: Jaroslav Lichtblau 
-
-pkgname=aspell-pl
-pkgver=20210105
-pkgrel=1
-pkgdesc='Polish dictionary for aspell'
-arch=('x86_64')
-url="https://www.sjp.pl/slownik/en/";
-license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
-depends=('aspell')
-source=(https://sources.archlinux.org/other/community/aspell-pl/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
-md5sums=('35ea5fd0611258f356a1a91140b6a838')
-
-build() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  ./configure
-  make
-}
-
-package() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  make DESTDIR="$pkgdir" install
-}

Copied: aspell-pl/repos/community-x86_64/PKGBUILD (from rev 991078, 
aspell-pl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-31 11:03:16 UTC (rev 991079)
@@ -0,0 +1,29 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Arkadiusz Laczynski 
+# Contributor: Jaroslav Lichtblau 
+
+pkgname=aspell-pl
+pkgver=20210731
+pkgrel=1
+pkgdesc='Polish dictionary for aspell'
+arch=('x86_64')
+url="https://www.sjp.pl/slownik/en/";
+license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
+depends=('aspell')
+source=(https://sources.archlinux.org/other/community/aspell-pl/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
+sha256sums=('bd20579c7207311d03dec039c28f01c0762693707dd35ccb8cc48bcf454d054c')
+
+build() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  ./configure
+  make
+}
+
+package() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  make DESTDIR="$pkgdir" install
+}



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

2021-07-31 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 31, 2021 @ 11:03:10
  Author: demize
Revision: 991078

upgpkg: aspell-pl 20210731-1

Modified:
  aspell-pl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-31 10:33:46 UTC (rev 991077)
+++ PKGBUILD2021-07-31 11:03:10 UTC (rev 991078)
@@ -5,7 +5,7 @@
 # Contributor: Jaroslav Lichtblau 
 
 pkgname=aspell-pl
-pkgver=20210105
+pkgver=20210731
 pkgrel=1
 pkgdesc='Polish dictionary for aspell'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
 depends=('aspell')
 
source=(https://sources.archlinux.org/other/community/aspell-pl/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
-md5sums=('35ea5fd0611258f356a1a91140b6a838')
+sha256sums=('bd20579c7207311d03dec039c28f01c0762693707dd35ccb8cc48bcf454d054c')
 
 build() {
   cd aspell6-pl-6.0_$pkgver-0



[arch-commits] Commit in matrix-synapse/repos (9 files)

2021-06-30 Thread Johannes Löthberg via arch-commits
Date: Wednesday, June 30, 2021 @ 19:39:31
  Author: demize
Revision: 968042

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/
  matrix-synapse/repos/community-testing-any/PKGBUILD
(from rev 968041, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/generic_worker.yaml.example
(from rev 968041, matrix-synapse/trunk/generic_worker.yaml.example)
  matrix-synapse/repos/community-testing-any/synapse-worker@.service
(from rev 968041, matrix-synapse/trunk/synapse-worker@.service)
  matrix-synapse/repos/community-testing-any/synapse.install
(from rev 968041, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
(from rev 968041, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/synapse.target
(from rev 968041, matrix-synapse/trunk/synapse.target)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
(from rev 968041, matrix-synapse/trunk/sysusers-synapse.conf)
  matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf
(from rev 968041, matrix-synapse/trunk/tmpfiles-synapse.conf)

-+
 PKGBUILD|   75 ++
 generic_worker.yaml.example |   34 +++
 synapse-worker@.service |   22 
 synapse.install |   47 ++
 synapse.service |   23 
 synapse.target  |7 +++
 sysusers-synapse.conf   |1 
 tmpfiles-synapse.conf   |1 
 8 files changed, 210 insertions(+)

Copied: matrix-synapse/repos/community-testing-any/PKGBUILD (from rev 968041, 
matrix-synapse/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-06-30 19:39:31 UTC (rev 968042)
@@ -0,0 +1,75 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=1.37.1
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse";
+arch=('any')
+license=('Apache')
+
+depends=('libwebp' 'python-ijson' 'python-jsonschema' 'python-twisted'
+ 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
+ 'python-bcrypt' 'python-frozendict'
+ 'python-pillow' 'python-pysaml2' 'python-setuptools'
+ 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
+ 'python-signedjson' 'python-pymacaroons'
+ 'python-service-identity' 'python-msgpack'
+ 'python-phonenumbers' 'python-prometheus_client'
+ 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
+ 'python-treq' 'python-idna' 'python-jinja'
+ 'python-bleach' 'python-typing_extensions' 'systemd')
+checkdepends=('python-authlib' 'python-pyjwt' 'python-lxml' 
'python-parameterized'
+  'python-txredisapi' 'python-hiredis')
+optdepends=('perl: sync_room_to_group.pl'
+'python-psycopg2: PostgreSQL support'
+'python-lxml: URL previewing'
+'python-psutil: metrics'
+'python-pyjwt: jwt'
+'python-txredisapi: redis'
+'python-hiredis')
+
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz";
+'generic_worker.yaml.example'
+'synapse.service'
+'synapse.target'
+'synapse-worker@.service'
+'sysusers-synapse.conf'
+'tmpfiles-synapse.conf')
+
+sha256sums=('1c2e9acbc52c55585d864e708f6299b0fda23e70ab7a01a0f6e01c3944889dc5'
+'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
+'74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
+'408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'
+'c9657c201ad89985c8c915bfa0ea7517a412071736b4d9545d8f6474fddc44e2'
+'aadfdd78fe73e6eb325ee4299b8db8b97bfa2f4e7df953aa8477f442598a7ec5'
+'65588c8c64dfb84cab831cd8d028a295d753cf7322dd63053e8488466047b45f')
+
+backup=('etc/synapse/log_config.yaml')
+install=synapse.install
+
+build() {
+   cd synapse-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd synapse-$pkgver
+   PYTHONPATH=. trial tests
+}
+
+package() {
+   cd synapse-$pkgver
+   export PYTHONHASHSEED=0
+   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+
+   install -dm755 -o 198 -g 198 "$pkgdir"/etc/synapse
+   install -Dm644 contrib/systemd/log_config.yaml 
"$pkgdir"/etc/synapse/log_config.yaml
+   install -Dm644 "$srcdir"/generic_worker.yaml.example 
"$pkgdir"/etc/synapse/workers/generic_worker.yaml.example
+
+   install -Dm644 -t "$pkgdir"/usr/lib/systemd/system/ 
"$srcdir"/synapse{,-worker@}.service "$srcdir"/synapse.target
+   install -D

  1   2   >