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

2021-08-21 Thread George Rawlinson via arch-commits
Date: Sunday, August 22, 2021 @ 00:09:18
  Author: grawlinson
Revision: 1004174

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |  114 +++
 elvish.install |   28 ++---
 2 files changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-22 00:08:25 UTC (rev 1004173)
+++ PKGBUILD2021-08-22 00:09:18 UTC (rev 1004174)
@@ -1,57 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Haochen Tong 
-# Contributor: Qi Xiao 
-
-pkgname=elvish
-pkgver=0.15.0
-pkgrel=3
-pkgdesc="A friendly and expressive Unix shell"
-arch=('x86_64')
-url="https://github.com/elves/elvish;
-license=('BSD')
-makedepends=('git' 'go')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-b2sums=('51ccf4bf51e1d750ee10b95b67c819f3d81b5bf494c0257bd7cc20d16a7de0a4e6ff61623d1fe358c3ce2d9cb360af4732a899c66a831bae66f967bb061b2c8a')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir build
-  go mod vendor
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-
-  go build -v \
--trimpath \
--buildmode=pie \
--mod=vendor \
--modcacherw \
--ldflags "-linkmode external -extldflags ${LDFLAGS} \
--X github.com/elves/elvish/pkg/buildinfo.Reproducible=true \
--X github.com/elves/elvish/pkg/buildinfo.Version=$pkgver" \
--o build \
-./cmd/...
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  go test -v -race ./...
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  # binary
-  install -vDm755 -t "$pkgdir/usr/bin" build/elvish
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}

Copied: elvish/repos/community-x86_64/PKGBUILD (from rev 1004173, 
elvish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-22 00:09:18 UTC (rev 1004174)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson 
+# Contributor: Haochen Tong 
+# Contributor: Qi Xiao 
+
+pkgname=elvish
+pkgver=0.16.1
+pkgrel=1
+pkgdesc="A friendly and expressive Unix shell"
+arch=('x86_64')
+url="https://github.com/elves/elvish;
+license=('BSD')
+makedepends=('git' 'go')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+b2sums=('da57d44706f26cdf17f5ee880bba884b88a0bf46abd75b4a8f50a45e0ea168dceff483c93f0aba5264eb47e0d900174191730214dbdfed141251dbe3a3ba4c0f')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  mkdir build
+  go mod vendor
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+
+  go build -v \
+-trimpath \
+-buildmode=pie \
+-mod=vendor \
+-modcacherw \
+-ldflags "-linkmode external -extldflags ${LDFLAGS} \
+-X github.com/elves/elvish/pkg/buildinfo.Reproducible=true \
+-X github.com/elves/elvish/pkg/buildinfo.Version=$pkgver" \
+-o build \
+./cmd/...
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  go test -v -race ./...
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" build/elvish
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Deleted: elvish.install
===
--- elvish.install  2021-08-22 00:08:25 UTC (rev 1004173)
+++ elvish.install  2021-08-22 00:09:18 UTC (rev 1004174)
@@ -1,14 +0,0 @@
-post_install() {
-  grep -qe '^/bin/elvish$' etc/shells || echo '/bin/elvish' >> etc/shells
-  grep -qe '^/usr/bin/elvish$' etc/shells || echo '/usr/bin/elvish' >> 
etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -i -r '/^(\/usr)?\/bin\/elvish$/d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: elvish/repos/community-x86_64/elvish.install (from rev 1004173, 
elvish/trunk/elvish.install)
===
--- elvish.install  (rev 0)
+++ elvish.install  2021-08-22 00:09:18 UTC (rev 1004174)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe '^/bin/elvish$' etc/shells || echo '/bin/elvish' >> etc/shells
+  grep -qe '^/usr/bin/elvish$' etc/shells || echo '/usr/bin/elvish' >> 
etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -i -r 

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

2021-08-21 Thread George Rawlinson via arch-commits
Date: Sunday, August 22, 2021 @ 00:08:25
  Author: grawlinson
Revision: 1004173

upgpkg: elvish 0.16.1-1

New upstream release.

Modified:
  elvish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 19:27:53 UTC (rev 1004172)
+++ PKGBUILD2021-08-22 00:08:25 UTC (rev 1004173)
@@ -3,8 +3,8 @@
 # Contributor: Qi Xiao 
 
 pkgname=elvish
-pkgver=0.15.0
-pkgrel=3
+pkgver=0.16.1
+pkgrel=1
 pkgdesc="A friendly and expressive Unix shell"
 arch=('x86_64')
 url="https://github.com/elves/elvish;
@@ -12,7 +12,7 @@
 makedepends=('git' 'go')
 install="$pkgname.install"
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-b2sums=('51ccf4bf51e1d750ee10b95b67c819f3d81b5bf494c0257bd7cc20d16a7de0a4e6ff61623d1fe358c3ce2d9cb360af4732a899c66a831bae66f967bb061b2c8a')
+b2sums=('da57d44706f26cdf17f5ee880bba884b88a0bf46abd75b4a8f50a45e0ea168dceff483c93f0aba5264eb47e0d900174191730214dbdfed141251dbe3a3ba4c0f')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2021-08-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 21, 2021 @ 19:27:53
  Author: svenstaro
Revision: 1004172

archrelease: copy trunk to community-any

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

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

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

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

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

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

2021-08-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 21, 2021 @ 19:27:46
  Author: svenstaro
Revision: 1004171

upgpkg: python-poetry 1.1.8-1

Modified:
  python-poetry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 19:26:03 UTC (rev 1004170)
+++ PKGBUILD2021-08-21 19:27:46 UTC (rev 1004171)
@@ -3,7 +3,7 @@
 
 _pkgname=poetry
 pkgname=python-poetry
-pkgver=1.1.7
+pkgver=1.1.8
 pkgrel=1
 pkgdesc="Python dependency management and packaging made easy"
 arch=('any')
@@ -22,11 +22,11 @@
 "0001-Suppress-dependency-versions-which-are-known-to-be-t.patch"
 "0001-tests-cleanup-cache-and-http-usage.patch"
 "poetry-completions-generator")
-sha256sums=('4bf3467c75113f1d4894e3535bb450cdc446e149866f8521d4965deea88d4102'
+sha256sums=('20381e6669c24e28dadf8ac3cb81016da4955757ef70816f3927b08d2556910f'
 '8bb321ae9ad06d4829c71727af7979bc68d7f325ccdaec919dda4fe8ac92f1a7'
 '4658321c04f36fb3aced9acc44b61f2cf22c5f9d8b8c715111881b24c3e0c99b'
 '970225289188ea8dc49fbec8a2bfe0c891aee80ff56ba6e69bdd8afef8bccab6')
-b2sums=('23454e0b290d32552a878000198557bef82bbcb43cc4fec0064bab9817cd1c031c1002a069b3d9c81f674d8f056f9f6e9d048957f7e13050db8042cb515dfb8a'
+b2sums=('a43c761ec948fdd830f9771e775c7636d459fa231b908d6a201246201ea92be7c9bf3230b107f0603b5ed989d770ffdbeadb19a2ade5e4c44822cafbbdeeb0ef'
 
'c1c65fdfa1153d3e4c872adc00f02aea055268d28cd385918a5a3d60fb355c39b15eab895cf4aebd1b74f126cc225f870d60aa971a6593855ce094b448786a02'
 
'8750de6ee2748a7dac079af1ff35b43dbce3f2c48249322f3322290d03f46ea95513dfd223adc232f7f73cf0ac19554de96a3b8793a0dc13b38041e87569ca19'
 
'3fd62e7936d7547dcd06a1a7519f176a1597553ecc959144a4be799bb7e2d688e187f14604d3e359ed10c128c722ebd588c07ca318e0be0a31d276dcb388e2e1')



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

2021-08-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 21, 2021 @ 19:26:03
  Author: svenstaro
Revision: 1004170

archrelease: copy trunk to community-any

Added:
  ansible-core/repos/community-any/PKGBUILD
(from rev 1004169, ansible-core/trunk/PKGBUILD)
Deleted:
  ansible-core/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 19:25:59 UTC (rev 1004169)
+++ PKGBUILD2021-08-21 19:26:03 UTC (rev 1004170)
@@ -1,47 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Daniel Wallace 
-# Contributor: Chris 
-# Contributor: m0ikz 
-# Contributor: atweiden 
-
-pkgname=ansible-core
-pkgver=2.11.3
-pkgrel=1
-pkgdesc='Radically simple IT automation platform'
-arch=('any')
-url='https://pypi.org/project/ansible-core'
-license=('GPL3')
-depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja' 
'python-resolvelib')
-provides=('python-ansible' 'ansible-base')
-replaces=('ansible-base')
-optdepends=('sshpass: for ssh connections with password'
-'python-passlib: crypt values for vars_prompt'
-'python-netaddr: for the ipaddr filter'
-'python-systemd: log to journal'
-'python-pywinrm: connect to Windows machines'
-'python-dnspython: for dig lookup'
-'python-jmespath: json_query support')
-makedepends=('python-setuptools')
-backup=('etc/ansible/ansible.cfg')
-source=("https://pypi.python.org/packages/source/a/ansible-core/ansible-core-${pkgver}.tar.gz;)
-sha512sums=('93a28200dd0ab289cc05add5fbe46a1cfbbd4ba91fc7d7e95ee4060dc4f126bf4bd4affce5e44dac9cf2c12792b2a2a10b97d96b795f5bed579959391b7c4a65')
-
-build() {
-  cd ansible-core-${pkgver}
-  export PYTHONHASHSEED=0
-  python setup.py build
-}
-
-package() {
-  cd ansible-core-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
-
-  install -d "${pkgdir}"/usr/share/ansible/doc
-  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
-  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
-}

Copied: ansible-core/repos/community-any/PKGBUILD (from rev 1004169, 
ansible-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 19:26:03 UTC (rev 1004170)
@@ -0,0 +1,47 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible-core
+pkgver=2.11.4
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='https://pypi.org/project/ansible-core'
+license=('GPL3')
+depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja' 
'python-resolvelib')
+provides=('python-ansible' 'ansible-base')
+replaces=('ansible-base')
+optdepends=('sshpass: for ssh connections with password'
+'python-passlib: crypt values for vars_prompt'
+'python-netaddr: for the ipaddr filter'
+'python-systemd: log to journal'
+'python-pywinrm: connect to Windows machines'
+'python-dnspython: for dig lookup'
+'python-jmespath: json_query support')
+makedepends=('python-setuptools')
+backup=('etc/ansible/ansible.cfg')
+source=("https://pypi.python.org/packages/source/a/ansible-core/ansible-core-${pkgver}.tar.gz;)
+sha512sums=('9385a3877e6e9a25d244c855cf50c0c6b62a91cc9cebc5e7b5b5ec23424b3e3dcddd71e7367482a03996fcd5d591ad29771edd19d62758ae61473f97a5c9351d')
+
+build() {
+  cd ansible-core-${pkgver}
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+package() {
+  cd ansible-core-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}



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

2021-08-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 21, 2021 @ 19:25:59
  Author: svenstaro
Revision: 1004169

upgpkg: ansible-core 2.11.4-1

Modified:
  ansible-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 19:24:26 UTC (rev 1004168)
+++ PKGBUILD2021-08-21 19:25:59 UTC (rev 1004169)
@@ -6,7 +6,7 @@
 # Contributor: atweiden 
 
 pkgname=ansible-core
-pkgver=2.11.3
+pkgver=2.11.4
 pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
@@ -25,7 +25,7 @@
 makedepends=('python-setuptools')
 backup=('etc/ansible/ansible.cfg')
 
source=("https://pypi.python.org/packages/source/a/ansible-core/ansible-core-${pkgver}.tar.gz;)
-sha512sums=('93a28200dd0ab289cc05add5fbe46a1cfbbd4ba91fc7d7e95ee4060dc4f126bf4bd4affce5e44dac9cf2c12792b2a2a10b97d96b795f5bed579959391b7c4a65')
+sha512sums=('9385a3877e6e9a25d244c855cf50c0c6b62a91cc9cebc5e7b5b5ec23424b3e3dcddd71e7367482a03996fcd5d591ad29771edd19d62758ae61473f97a5c9351d')
 
 build() {
   cd ansible-core-${pkgver}



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

2021-08-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 21, 2021 @ 19:24:26
  Author: svenstaro
Revision: 1004168

archrelease: copy trunk to community-x86_64

Added:
  just/repos/community-x86_64/PKGBUILD
(from rev 1004167, just/trunk/PKGBUILD)
Deleted:
  just/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 19:24:17 UTC (rev 1004167)
+++ PKGBUILD2021-08-21 19:24:26 UTC (rev 1004168)
@@ -1,33 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Fredy García 
-
-pkgname=just
-pkgver=0.9.9
-pkgrel=1
-pkgdesc="A handy way to save and run project-specific commands"
-arch=("x86_64")
-url="https://github.com/casey/just;
-license=("custom:CC0")
-depends=("gcc-libs")
-makedepends=("cargo")
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/casey/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('822d13cb976d645d355260695a751a99f525705e7e688b8024708a4e2899cfdb')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  cargo check --release
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 "completions/just.zsh" 
"${pkgdir}/usr/share/zsh/site-functions/_just"
-  install -Dm644 "completions/just.bash" 
"${pkgdir}/usr/share/bash-completion/completions/just"
-  install -Dm644 "completions/just.fish" 
"${pkgdir}/usr/share/fish/vendor_completions.d/just.fish"
-}

Copied: just/repos/community-x86_64/PKGBUILD (from rev 1004167, 
just/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 19:24:26 UTC (rev 1004168)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Fredy García 
+
+pkgname=just
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="A handy way to save and run project-specific commands"
+arch=("x86_64")
+url="https://github.com/casey/just;
+license=("custom:CC0")
+depends=("gcc-libs")
+makedepends=("cargo")
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/casey/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('e566c333771697d61c6257f61d85fe8ff0a5993e66f050b2d10e80bd99d5fac0')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo check --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 "completions/just.zsh" 
"${pkgdir}/usr/share/zsh/site-functions/_just"
+  install -Dm644 "completions/just.bash" 
"${pkgdir}/usr/share/bash-completion/completions/just"
+  install -Dm644 "completions/just.fish" 
"${pkgdir}/usr/share/fish/vendor_completions.d/just.fish"
+}



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

2021-08-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 21, 2021 @ 19:24:17
  Author: svenstaro
Revision: 1004167

upgpkg: just 0.10.0-1

Modified:
  just/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 18:12:27 UTC (rev 1004166)
+++ PKGBUILD2021-08-21 19:24:17 UTC (rev 1004167)
@@ -2,7 +2,7 @@
 # Contributor: Fredy García 
 
 pkgname=just
-pkgver=0.9.9
+pkgver=0.10.0
 pkgrel=1
 pkgdesc="A handy way to save and run project-specific commands"
 arch=("x86_64")
@@ -11,7 +11,7 @@
 depends=("gcc-libs")
 makedepends=("cargo")
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/casey/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('822d13cb976d645d355260695a751a99f525705e7e688b8024708a4e2899cfdb')
+sha256sums=('e566c333771697d61c6257f61d85fe8ff0a5993e66f050b2d10e80bd99d5fac0')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2021-08-21 Thread Christian Hesse via arch-commits
Date: Saturday, August 21, 2021 @ 18:12:27
  Author: eworm
Revision: 1004166

archrelease: copy trunk to community-testing-x86_64

Added:
  keepalived/repos/community-testing-x86_64/
  keepalived/repos/community-testing-x86_64/0001-symlink-genhash.patch
(from rev 1004165, keepalived/trunk/0001-symlink-genhash.patch)
  keepalived/repos/community-testing-x86_64/PKGBUILD
(from rev 1004165, keepalived/trunk/PKGBUILD)

+
 0001-symlink-genhash.patch |   61 +++
 PKGBUILD   |   44 +++
 2 files changed, 105 insertions(+)

Copied: keepalived/repos/community-testing-x86_64/0001-symlink-genhash.patch 
(from rev 1004165, keepalived/trunk/0001-symlink-genhash.patch)
===
--- community-testing-x86_64/0001-symlink-genhash.patch 
(rev 0)
+++ community-testing-x86_64/0001-symlink-genhash.patch 2021-08-21 18:12:27 UTC 
(rev 1004166)
@@ -0,0 +1,61 @@
+diff --git a/keepalived/Makefile.am b/keepalived/Makefile.am
+index 86c3ed3a..9a47eb61 100644
+--- a/keepalived/Makefile.am
 b/keepalived/Makefile.am
+@@ -75,26 +75,38 @@ init_DATA  = etc/openrc/keepalived
+ endif
+ 
+ if WITH_IPVS
++# checks for realpath, and also not busybox version which does not support 
--relative-to
+ install-exec-hook:
++  $(MKDIR_P) $(DESTDIR)/$(bindir)
+   @( \
+-  d=`echo $(bindir) | sed -e "s:^/::"`; \
+-  s=`echo $(sbindir) | sed -e "s:^/::"`; \
+-  \
+-  while [ 1 ]; do \
+-  d1=`echo $$d | sed -e "s:/.*::"`; \
+-  s1=`echo $$s | sed -e "s:/.*::"`; \
+-  if [ $$d1 != $$s1 ]; then \
+-  break; \
++  realpath --relative-to=/ / >/dev/null 2>&1; \
++  if [ $$? -eq 0 ]; then \
++  $(LN_S) `realpath --relative-to="$(DESTDIR)/$(bindir)" 
"$(DESTDIR)/$(sbindir)/keepalived"` $(DESTDIR)/$(bindir)/genhash; \
++  else \
++  if [ $(bindir) = $(sbindir) ]; then \
++  d= ; \
++  s= ; \
++  else \
++  d=`echo $(bindir) | sed -e "s:^/::"`; \
++  s=`echo $(sbindir) | sed -e "s:^/::"`; \
++  \
++  while [ 1 ]; do \
++  d1=`echo $$d | sed -e "s:/.*::"`; \
++  s1=`echo $$s | sed -e "s:/.*::"`; \
++  if [ $$d1 != $$s1 ]; then \
++  break; \
++  fi; \
++  d=`echo $$d | sed -e "s:^[^/]*/::"`; \
++  s=`echo $$s | sed -e "s:^[^/]*/::"`; \
++  if [ -z $$d ]; then break; fi; \
++  if [ -z $$s ]; then break; fi; \
++  done; \
++  \
++  d=`echo /$$d/ | sed -e "s:/[^/.]*/:/../:g" -e 
"s:/[^/.]*/:/../:g" -e "s:^/::"`; \
++  s=$$s/ ; \
+   fi; \
+-  d=`echo $$d | sed -e "s:^[^/]*/::"`; \
+-  s=`echo $$s | sed -e "s:^[^/]*/::"`; \
+-  if [ -z $$d ]; then break; fi; \
+-  if [ -z $$s ]; then break; fi; \
+-  done; \
+-  \
+-  d=`echo /$$d/ | sed -e "s:/[^/.]*/:/../:g" -e "s:/[^/.]*/:/../:g" -e 
"s:^/::"`; \
+-  \
+-  $(MKDIR_P) $(DESTDIR)/$(bindir); \
+-  $(LN_S) $$d$$s/keepalived $(DESTDIR)/$(bindir)/genhash; \
++  \
++  $(LN_S) $$d$${s}keepalived $(DESTDIR)/$(bindir)/genhash; \
++  fi; \
+   )
+ endif

Copied: keepalived/repos/community-testing-x86_64/PKGBUILD (from rev 1004165, 
keepalived/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-21 18:12:27 UTC (rev 1004166)
@@ -0,0 +1,44 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=2.2.4
+pkgrel=1
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('x86_64')
+url='https://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf' 'etc/sysconfig/keepalived')
+makedepends=('ipset')
+depends=('glibc' 'libnl' 'openssl' 'file' 'iptables' 'systemd-libs')
+optdepends=('ipset: ipset support')
+makedepends=('libnfnetlink' 'ipset' 'systemd')
+options=('!emptydirs')
+source=("https://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
+sha256sums=('0138d69087d44beaaa589527f0cfa6885958b320a837147d02b6b7df73ebc1df')
+
+build() {
+  # trick broken ./configure systemctl test
+  printf "#!/bin/sh\necho -.mount\n" > systemctl
+  chmod +x systemctl
+  PATH=$PWD:$PATH
+
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+

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

2021-08-21 Thread Christian Hesse via arch-commits
Date: Saturday, August 21, 2021 @ 18:12:24
  Author: eworm
Revision: 1004165

upgpkg: keepalived 2.2.4-1: new upstream release

Modified:
  keepalived/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 18:04:45 UTC (rev 1004164)
+++ PKGBUILD2021-08-21 18:12:24 UTC (rev 1004165)
@@ -2,7 +2,7 @@
 # Contributor: Andrea Zucchelli 
 
 pkgname=keepalived
-pkgver=2.2.3
+pkgver=2.2.4
 pkgrel=1
 pkgdesc='Failover and monitoring daemon for LVS clusters'
 arch=('x86_64')
@@ -14,19 +14,9 @@
 optdepends=('ipset: ipset support')
 makedepends=('libnfnetlink' 'ipset' 'systemd')
 options=('!emptydirs')
-source=("https://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
-'0001-symlink-genhash.patch')
-sha256sums=('8391e511c47c256bce4c93169b924da3d37e3f4d88fadc124fae052dc62f302c'
-'5ca0af6e4ce60eb611d9d17801057670685c6a98f0ae43c3f60f68f0efdf0606')
+source=("https://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
+sha256sums=('0138d69087d44beaaa589527f0cfa6885958b320a837147d02b6b7df73ebc1df')
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -Np1 < ../0001-symlink-genhash.patch
-
-  autoreconf
-}
-
 build() {
   # trick broken ./configure systemctl test
   printf "#!/bin/sh\necho -.mount\n" > systemctl



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

2021-08-21 Thread Caleb Maclennan via arch-commits
Date: Saturday, August 21, 2021 @ 18:04:45
  Author: alerque
Revision: 1004164

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 18:03:56 UTC (rev 1004163)
+++ PKGBUILD2021-08-21 18:04:45 UTC (rev 1004164)
@@ -1,55 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Contributor: Angel Velasquez 
-# Contributor: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Alexander Fehr 
-
-_pyname=pylint
-pkgname=python-$_pyname
-pkgver=2.10.1
-pkgrel=1
-pkgdesc='Analyzes Python code looking for bugs and signs of poor quality'
-arch=(any)
-url=https://pylint.org
-license=(GPL)
-_pydeps=(appdirs
- astroid
- isort
- mccabe
- toml)
-depends=(python
- "${_pydeps[@]/#/python-}")
-makedepends=(python-setuptools
- python-sphinx)
-checkdepends=(mpdecimal
-  python-pytest)
-optdepends=('graphviz: Enable output formats other than dot or vcg'
-'tk: Pylint GUI')
-_archive="$_pyname-$pkgver"
-source=("https://github.com/PyCQA/pylint/archive/v$pkgver/pylint-$pkgver.tar.gz;)
-sha256sums=('2355dd9d22467264c31a1699047d24d5a1d87bd8141d63ad1bd1e2d081ca4b2e')
-
-prepare() {
-   cd "$_archive"
-   # Remove overly restrictive dependency pinning that ends up in runtime 
checks
-   sed -i -e '/>=/{s/>.*//;p}' setup.cfg
-}
-
-build() {
-   cd "$_archive"
-   python setup.py build
-   make PYTHONPATH="$PWD/build/lib" -C doc man
-}
-
-check() {
-   cd "$_archive"
-   PYTHONPATH="$PWD/build/lib" pytest \
-   --deselect tests/benchmark/test_baseline_benchmarks.py
-}
-
-package() {
-   cd "$_archive"
-   export PYTHONHASHSEED=0
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm0644 -t "$pkgdir/usr/share/man/man1/" doc/_build/man/*
-}

Copied: python-pylint/repos/community-any/PKGBUILD (from rev 1004163, 
python-pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 18:04:45 UTC (rev 1004164)
@@ -0,0 +1,54 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Angel Velasquez 
+# Contributor: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Alexander Fehr 
+
+_pyname=pylint
+pkgname=python-$_pyname
+pkgver=2.10.2
+pkgrel=1
+pkgdesc='Analyzes Python code looking for bugs and signs of poor quality'
+arch=(any)
+url=https://pylint.org
+license=(GPL)
+depends=(python
+ python-astroid
+ python-platformdirs)
+makedepends=(python-setuptools
+ python-sphinx)
+checkdepends=(mpdecimal
+  python-isort
+  python-mccabe
+  python-toml
+  python-pytest)
+optdepends=('graphviz: Enable output formats other than dot or vcg'
+'tk: Pylint GUI')
+_archive="$_pyname-$pkgver"
+source=("https://github.com/PyCQA/pylint/archive/v$pkgver/pylint-$pkgver.tar.gz;)
+sha256sums=('639254a0ef06dacfcfb27ce01bc3b1ddf27dbe702ba0685ae0286e0d02ff9194')
+
+prepare() {
+   cd "$_archive"
+   # Remove overly restrictive dependency pinning that ends up in runtime 
checks
+   sed -i -e '/>=/{s/>.*//;p}' setup.cfg
+}
+
+build() {
+   cd "$_archive"
+   python setup.py build
+   make PYTHONPATH="$PWD/build/lib" -C doc man
+}
+
+check() {
+   cd "$_archive"
+   PYTHONPATH="$PWD/build/lib" pytest \
+   --deselect tests/benchmark/test_baseline_benchmarks.py
+}
+
+package() {
+   cd "$_archive"
+   export PYTHONHASHSEED=0
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm0644 -t "$pkgdir/usr/share/man/man1/" doc/_build/man/*
+}



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

2021-08-21 Thread Caleb Maclennan via arch-commits
Date: Saturday, August 21, 2021 @ 18:03:56
  Author: alerque
Revision: 1004163

upgpkg: python-pylint 2.10.2-1

Modified:
  python-pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 17:57:18 UTC (rev 1004162)
+++ PKGBUILD2021-08-21 18:03:56 UTC (rev 1004163)
@@ -6,28 +6,27 @@
 
 _pyname=pylint
 pkgname=python-$_pyname
-pkgver=2.10.1
+pkgver=2.10.2
 pkgrel=1
 pkgdesc='Analyzes Python code looking for bugs and signs of poor quality'
 arch=(any)
 url=https://pylint.org
 license=(GPL)
-_pydeps=(appdirs
- astroid
- isort
- mccabe
- toml)
 depends=(python
- "${_pydeps[@]/#/python-}")
+ python-astroid
+ python-platformdirs)
 makedepends=(python-setuptools
  python-sphinx)
 checkdepends=(mpdecimal
+  python-isort
+  python-mccabe
+  python-toml
   python-pytest)
 optdepends=('graphviz: Enable output formats other than dot or vcg'
 'tk: Pylint GUI')
 _archive="$_pyname-$pkgver"
 
source=("https://github.com/PyCQA/pylint/archive/v$pkgver/pylint-$pkgver.tar.gz;)
-sha256sums=('2355dd9d22467264c31a1699047d24d5a1d87bd8141d63ad1bd1e2d081ca4b2e')
+sha256sums=('639254a0ef06dacfcfb27ce01bc3b1ddf27dbe702ba0685ae0286e0d02ff9194')
 
 prepare() {
cd "$_archive"



[arch-commits] Commit in intel-media-sdk/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-08-21 Thread Daniel Bermond via arch-commits
Date: Saturday, August 21, 2021 @ 14:44:03
  Author: dbermond
Revision: 1004160

archrelease: copy trunk to community-x86_64

Added:
  intel-media-sdk/repos/community-x86_64/PKGBUILD
(from rev 1004159, intel-media-sdk/trunk/PKGBUILD)
Deleted:
  intel-media-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 14:43:38 UTC (rev 1004159)
+++ PKGBUILD2021-08-21 14:44:03 UTC (rev 1004160)
@@ -1,63 +0,0 @@
-# Maintainer: Daniel Bermond 
-
-pkgbase=intel-media-sdk
-pkgname=('intel-media-sdk' 'libmfx')
-pkgver=21.2.3
-pkgrel=1
-pkgdesc='API to access hardware-accelerated video on Intel Gen graphics 
hardware platforms'
-arch=('x86_64')
-url='https://software.intel.com/en-us/media-sdk/'
-license=('MIT')
-makedepends=('libdrm' 'libva' 'wayland' 'intel-media-driver'
- 'cmake' 'libpciaccess' 'libx11' 'libxcb' 'python')
-source=("https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${pkgver}.tar.gz;
-
'010-intel-media-sdk-fix-reproducible-build.patch'::'https://github.com/Intel-Media-SDK/MediaSDK/commit/f6925886f27a39eed2e43c5b7b6c342d00f7a970.patch')
-sha256sums=('7791be83e5e9f6d55f31d6ad9037012fc78b846724644b9db2087d1b7dfec078'
-'f1d8a4edf953cfec1516f1a8383c5ee033245aba16cfae0bc79b7de1a6365fcc')
-
-prepare() {
-patch -d "MediaSDK-intel-mediasdk-${pkgver}" -Np1 -i 
"${srcdir}/010-intel-media-sdk-fix-reproducible-build.patch"
-}
-
-build() {
-cmake -B build -S "MediaSDK-intel-mediasdk-${pkgver}" \
--DBUILD_ALL:BOOL='ON' \
--DBUILD_TOOLS:BOOL='ON' \
--DCMAKE_BUILD_TYPE:STRING='None' \
--DCMAKE_INSTALL_PREFIX:PATH='/usr' \
--DENABLE_ITT:BOOL='OFF' \
--DENABLE_OPENCL:BOOL='OFF' \
--DENABLE_WAYLAND:BOOL='ON' \
--DENABLE_X11_DRI3:BOOL='ON' \
--DMFX_APPS_DIR='/usr/lib/mfx' \
--Wno-dev
-make -C build
-}
-
-check() {
-make -C build test
-}
-
-package_intel-media-sdk() {
-depends=('libdrm' 'libva' 'wayland' "libmfx=${pkgver}" 
'intel-media-driver')
-
-make -C build DESTDIR="$pkgdir" install
-ln -s mfx/samples/libcttmetrics.so "${pkgdir}/usr/lib/libcttmetrics.so"
-install -D -m644 "MediaSDK-intel-mediasdk-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-
-# remove core component libmfx
-[ -d 'libmfx' ] && rm -rf libmfx
-mkdir -p libmfx/{include,lib/pkgconfig}
-mv "${pkgdir}/usr/include/mfx" libmfx/include
-mv "${pkgdir}/usr/lib/libmfx.so"* libmfx/lib
-mv "${pkgdir}/usr/lib/pkgconfig/"{,lib}mfx.pc libmfx/lib/pkgconfig
-rm -d "${pkgdir}/usr/include"
-}
-
-package_libmfx() {
-pkgdesc='Intel Media SDK dispatcher library'
-depends=('gcc-libs')
-
-mv libmfx "${pkgdir}/usr"
-install -D -m644 "MediaSDK-intel-mediasdk-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: intel-media-sdk/repos/community-x86_64/PKGBUILD (from rev 1004159, 
intel-media-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 14:44:03 UTC (rev 1004160)
@@ -0,0 +1,63 @@
+# Maintainer: Daniel Bermond 
+
+pkgbase=intel-media-sdk
+pkgname=('intel-media-sdk' 'libmfx')
+pkgver=21.3.2
+pkgrel=1
+pkgdesc='API to access hardware-accelerated video on Intel Gen graphics 
hardware platforms'
+arch=('x86_64')
+url='https://software.intel.com/en-us/media-sdk/'
+license=('MIT')
+makedepends=('libdrm' 'libva' 'wayland' 'intel-media-driver'
+ 'cmake' 'libpciaccess' 'libx11' 'libxcb' 'python')
+source=("https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${pkgver}.tar.gz;
+
'010-intel-media-sdk-fix-reproducible-build.patch'::'https://github.com/Intel-Media-SDK/MediaSDK/commit/f6925886f27a39eed2e43c5b7b6c342d00f7a970.patch')
+sha256sums=('45dd0eabee42ff4f9378851a8adbdfa781c8fef20822f5c9d8709db54cdd35f3'
+'f1d8a4edf953cfec1516f1a8383c5ee033245aba16cfae0bc79b7de1a6365fcc')
+
+prepare() {
+patch -d "MediaSDK-intel-mediasdk-${pkgver}" -Np1 -i 
"${srcdir}/010-intel-media-sdk-fix-reproducible-build.patch"
+}
+
+build() {
+cmake -B build -S "MediaSDK-intel-mediasdk-${pkgver}" \
+-DBUILD_ALL:BOOL='ON' \
+-DBUILD_TOOLS:BOOL='ON' \
+-DCMAKE_BUILD_TYPE:STRING='None' \
+-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
+-DENABLE_ITT:BOOL='OFF' \
+-DENABLE_OPENCL:BOOL='OFF' \
+-DENABLE_WAYLAND:BOOL='ON' \
+-DENABLE_X11_DRI3:BOOL='ON' \
+-DMFX_APPS_DIR='/usr/lib/mfx' \
+-Wno-dev
+make -C build
+}
+
+check() {
+make -C build test
+}
+
+package_intel-media-sdk() {
+depends=('libdrm' 'libva' 'wayland' "libmfx=${pkgver}" 
'intel-media-driver')
+
+make -C 

[arch-commits] Commit in intel-media-sdk/trunk (PKGBUILD)

2021-08-21 Thread Daniel Bermond via arch-commits
Date: Saturday, August 21, 2021 @ 14:43:38
  Author: dbermond
Revision: 1004159

upgpkg: intel-media-sdk 21.3.2-1

Modified:
  intel-media-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 14:43:14 UTC (rev 1004158)
+++ PKGBUILD2021-08-21 14:43:38 UTC (rev 1004159)
@@ -2,7 +2,7 @@
 
 pkgbase=intel-media-sdk
 pkgname=('intel-media-sdk' 'libmfx')
-pkgver=21.2.3
+pkgver=21.3.2
 pkgrel=1
 pkgdesc='API to access hardware-accelerated video on Intel Gen graphics 
hardware platforms'
 arch=('x86_64')
@@ -12,7 +12,7 @@
  'cmake' 'libpciaccess' 'libx11' 'libxcb' 'python')
 
source=("https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${pkgver}.tar.gz;
 
'010-intel-media-sdk-fix-reproducible-build.patch'::'https://github.com/Intel-Media-SDK/MediaSDK/commit/f6925886f27a39eed2e43c5b7b6c342d00f7a970.patch')
-sha256sums=('7791be83e5e9f6d55f31d6ad9037012fc78b846724644b9db2087d1b7dfec078'
+sha256sums=('45dd0eabee42ff4f9378851a8adbdfa781c8fef20822f5c9d8709db54cdd35f3'
 'f1d8a4edf953cfec1516f1a8383c5ee033245aba16cfae0bc79b7de1a6365fcc')
 
 prepare() {



[arch-commits] Commit in intel-media-driver/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-08-21 Thread Daniel Bermond via arch-commits
Date: Saturday, August 21, 2021 @ 14:43:14
  Author: dbermond
Revision: 1004158

archrelease: copy trunk to community-x86_64

Added:
  intel-media-driver/repos/community-x86_64/PKGBUILD
(from rev 1004157, intel-media-driver/trunk/PKGBUILD)
Deleted:
  intel-media-driver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 14:42:50 UTC (rev 1004157)
+++ PKGBUILD2021-08-21 14:43:14 UTC (rev 1004158)
@@ -1,29 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Daniel Bermond 
-
-pkgname=intel-media-driver
-pkgver=21.2.3
-pkgrel=1
-pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
-arch=(x86_64)
-url="https://github.com/intel/media-driver/;
-license=(MIT BSD)
-depends=(gcc-libs intel-gmmlib libva libpciaccess)
-makedepends=(cmake)
-source=("${url}"/archive/${pkgname%-*}-${pkgver}.tar.gz)
-sha256sums=('7b190a980447284508969da38971cfdaaf6e69d840d49e81f5969e124bf17e16')
-
-build() {
-  cmake -B build -S ${pkgname#*-}-${pkgname%-*}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DINSTALL_DRIVER_SYSCONF=OFF \
--DMEDIA_BUILD_FATAL_WARNINGS=OFF \
--Wno-dev
-  make -C build
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir" install
-  install -Dm644 ${pkgname#*-}-${pkgname%-*}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: intel-media-driver/repos/community-x86_64/PKGBUILD (from rev 1004157, 
intel-media-driver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 14:43:14 UTC (rev 1004158)
@@ -0,0 +1,29 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Daniel Bermond 
+
+pkgname=intel-media-driver
+pkgver=21.3.2
+pkgrel=1
+pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
+arch=(x86_64)
+url="https://github.com/intel/media-driver/;
+license=(MIT BSD)
+depends=(gcc-libs intel-gmmlib libva libpciaccess)
+makedepends=(cmake)
+source=("${url}"/archive/${pkgname%-*}-${pkgver}.tar.gz)
+sha256sums=('562a99109704d859003ee484fdfd049e7cb1f87c16e2b7376238ae2e3908dff7')
+
+build() {
+  cmake -B build -S ${pkgname#*-}-${pkgname%-*}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DINSTALL_DRIVER_SYSCONF=OFF \
+-DMEDIA_BUILD_FATAL_WARNINGS=OFF \
+-Wno-dev
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="$pkgdir" install
+  install -Dm644 ${pkgname#*-}-${pkgname%-*}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}



[arch-commits] Commit in intel-media-driver/trunk (PKGBUILD)

2021-08-21 Thread Daniel Bermond via arch-commits
Date: Saturday, August 21, 2021 @ 14:42:50
  Author: dbermond
Revision: 1004157

upgpkg: intel-media-driver 21.3.2-1

Modified:
  intel-media-driver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 13:16:27 UTC (rev 1004156)
+++ PKGBUILD2021-08-21 14:42:50 UTC (rev 1004157)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Bermond 
 
 pkgname=intel-media-driver
-pkgver=21.2.3
+pkgver=21.3.2
 pkgrel=1
 pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(gcc-libs intel-gmmlib libva libpciaccess)
 makedepends=(cmake)
 source=("${url}"/archive/${pkgname%-*}-${pkgver}.tar.gz)
-sha256sums=('7b190a980447284508969da38971cfdaaf6e69d840d49e81f5969e124bf17e16')
+sha256sums=('562a99109704d859003ee484fdfd049e7cb1f87c16e2b7376238ae2e3908dff7')
 
 build() {
   cmake -B build -S ${pkgname#*-}-${pkgname%-*}-${pkgver} \



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

2021-08-21 Thread Daniel Bermond via arch-commits
Date: Saturday, August 21, 2021 @ 13:12:17
  Author: dbermond
Revision: 1004154

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio/repos/community-staging-x86_64/
  gnuradio/repos/community-staging-x86_64/21-fcd.rules
(from rev 1004153, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-staging-x86_64/PKGBUILD
(from rev 1004153, gnuradio/trunk/PKGBUILD)
  gnuradio/repos/community-staging-x86_64/gnuradio-bind-placeholders.patch
(from rev 1004153, gnuradio/trunk/gnuradio-bind-placeholders.patch)

--+
 21-fcd.rules |9 
 PKGBUILD |  133 ++
 gnuradio-bind-placeholders.patch |  461 +
 3 files changed, 603 insertions(+)

Copied: gnuradio/repos/community-staging-x86_64/21-fcd.rules (from rev 1004153, 
gnuradio/trunk/21-fcd.rules)
===
--- community-staging-x86_64/21-fcd.rules   (rev 0)
+++ community-staging-x86_64/21-fcd.rules   2021-08-21 13:12:17 UTC (rev 
1004154)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio/repos/community-staging-x86_64/PKGBUILD (from rev 1004153, 
gnuradio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-21 13:12:17 UTC (rev 1004154)
@@ -0,0 +1,133 @@
+# Maintainer: Kyle Keen 
+# Contributor: David Runge 
+# Contributor: Dominik Heidler 
+# Contributor: Jonatan Sastre 
+pkgbase=gnuradio
+pkgname=(gnuradio gnuradio-companion)
+pkgver=3.9.2.0
+pkgrel=3
+pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
+arch=('x86_64')
+url="https://gnuradio.org;
+license=('GPL')
+depends=('python-numpy' 'gsl' 'blas' 'libuhd' 'libvolk' 'log4cpp' 'python-yaml'
+'gmp' 'gsm' 'codec2' 'python-mako' 'python-click-plugins' 'soapysdr'
+'pybind11')
+makedepends=('alsa-lib' 'boost' 'cmake' 'fftw' 'glu' 'gtk3' 'jack' 'pango'
+'portaudio' 'python-gobject' 'python-lxml' 'python-pyqt5' 'python-cairo'
+'qwt' 'zeromq')
+
+# todo
+# split the gui components?
+# build doxygen docs?
+# gr-video-sdl ?
+# icons
+# add thrift?
+# could soapy and pybind be optional makedeps?
+
+# zeroc-ice: gr-ctrlport
+# doxygen: C++ autogenerated documentation
+# python-sphinx: Python autogenerated documentation
+
+# secret release directory
+#source=("http://s3-dist.gnuradio.org/gnuradio-$pkgver.tar.gz;
+# neglected official release directory
+#source=("https://gnuradio.org/releases/$pkgbase/$pkgbase-$pkgver.tar.gz;
+
+# seems upstream stopped doing signed tags/release assets > 3.8.0.0 :-/
+# https://github.com/gnuradio/gnuradio/issues/3858
+source=("gnuradio-$pkgver.tgz::https://github.com/gnuradio/gnuradio/archive/refs/tags/v$pkgver.tar.gz;
+
#"https://github.com/gnuradio/gnuradio/releases/download/v$pkgver/gnuradio-$pkgver.tar.gz;
+# 
"https://github.com/gnuradio/gnuradio/releases/download/v$pkgver/gnuradio-$pkgver.tar.gz.asc;
+gnuradio-bind-placeholders.patch
+"21-fcd.rules")
+validpgpkeys=('B90DDFAC56989BF62262EB812987C77CBB8ED9B2'  # GNU Radio Project
+  'D74F9F146E7F755783583158B343B2BA293E5174') # Marcus Müller
+sha512sums=('4a2807d6713fff10906354553ef5810b81ef4116573fdf15b122e8fc18373c56e1685b8592a8f0f08c0524c4983f3d7d4774bdada98dff0990d028f71cbd7898'
+
'f4e52e6e9ef6054f358d3ee00cbcb70bab65c36dfac8975c3182f6514c547905f36801a049f0918d69c9ffd98ce801891a3bfc4e4faeb8fb33582d84140a70b7'
+
'6f02dc8e20a7a1cd11099c851a7c8427fcd21e9652e6cddd0a72ca747b0e93cd4fd1b7b7b7e426b6231348bcc34fb2417716a2f03c92ec141889edc65031c3a0')
+
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  #patch -Np1 -i ../gnuradio-bind-placeholders.patch
+  sed -i -e "s|GR_PKG_LIBEXEC_DIR|GR_RUNTIME_DIR|" 
grc/scripts/freedesktop/CMakeLists.txt
+  #sed -i -e "s|/qwt$|/qwt5|" -e "s| qwt | qwt5 |" cmake/Modules/FindQwt.cmake
+  #sed -i -e "s| sphinx-build$| sphinx-build2|" cmake/Modules/FindSphinx.cmake
+}
+
+build() {
+  export PYTHON=python3
+  cd "$pkgbase-$pkgver"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=/usr/include/python3.9 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.9.so \
+-DGR_PYTHON_DIR=/usr/lib/python3.9/site-packages \
+-DENABLE_INTERNAL_VOLK=OFF \
+-DENABLE_GRC=ON \
+-DENABLE_GR_QTGUI=ON \
+

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

2021-08-21 Thread Daniel Bermond via arch-commits
Date: Saturday, August 21, 2021 @ 13:11:45
  Author: dbermond
Revision: 1004153

upgpkg: gnuradio 3.9.2.0-3: rebuild for codec2 1.0.0

Modified:
  gnuradio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 12:58:45 UTC (rev 1004152)
+++ PKGBUILD2021-08-21 13:11:45 UTC (rev 1004153)
@@ -5,7 +5,7 @@
 pkgbase=gnuradio
 pkgname=(gnuradio gnuradio-companion)
 pkgver=3.9.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
 arch=('x86_64')
 url="https://gnuradio.org;



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

2021-08-21 Thread Sergej Pupykin via arch-commits
Date: Saturday, August 21, 2021 @ 12:58:45
  Author: spupykin
Revision: 1004152

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 12:58:37 UTC (rev 1004151)
+++ PKGBUILD2021-08-21 12:58:45 UTC (rev 1004152)
@@ -1,43 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud-app-calendar
-_name=calendar
-epoch=1
-pkgver=2.3.1
-pkgrel=1
-pkgdesc="Calendar app for nextcloud"
-arch=('any')
-url="https://github.com/nextcloud/calendar/;
-license=('AGPL')
-depends=('nextcloud')
-makedepends=('ripgrep' 'yq')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/calendar/releases/download/v$pkgver/calendar.tar.gz;)
-sha256sums=('14e04a53ea70db4085257e123e51255ff52f5b3cbde05689bdf351b374045a41')
-
-_get_nextcloud_versions() {
-  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
-}
-
-check() {
-  local _app_min_major_version
-  local _app_max_major_version
-  _get_nextcloud_versions
-
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
-printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
-exit 1
-  fi
-}
-sha256sums=('58f01864f743b42960104d8616c3b7c65779cb1e1cb0f33daf8dc55c4d854bec')
-
-package() {
-  _get_nextcloud_versions
-  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
-
-  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
-  cp -a "$srcdir"/calendar "$pkgdir"/usr/share/webapps/nextcloud/apps/calendar
-}

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



[arch-commits] Commit in nextcloud-app-calendar/trunk (PKGBUILD)

2021-08-21 Thread Sergej Pupykin via arch-commits
Date: Saturday, August 21, 2021 @ 12:58:37
  Author: spupykin
Revision: 1004151

upgpkg: nextcloud-app-calendar 1:2.3.2-1

Modified:
  nextcloud-app-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 12:58:32 UTC (rev 1004150)
+++ PKGBUILD2021-08-21 12:58:37 UTC (rev 1004151)
@@ -3,7 +3,7 @@
 pkgname=nextcloud-app-calendar
 _name=calendar
 epoch=1
-pkgver=2.3.1
+pkgver=2.3.2
 pkgrel=1
 pkgdesc="Calendar app for nextcloud"
 arch=('any')
@@ -14,7 +14,7 @@
 groups=('nextcloud-apps')
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/calendar/releases/download/v$pkgver/calendar.tar.gz;)
-sha256sums=('14e04a53ea70db4085257e123e51255ff52f5b3cbde05689bdf351b374045a41')
+sha256sums=('50ebeacd30ddebf749370e7258990af37e522e8e8101e57e6f2e2510d7fe0b14')
 
 _get_nextcloud_versions() {
   _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
@@ -33,7 +33,6 @@
 exit 1
   fi
 }
-sha256sums=('58f01864f743b42960104d8616c3b7c65779cb1e1cb0f33daf8dc55c4d854bec')
 
 package() {
   _get_nextcloud_versions



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

2021-08-21 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, August 21, 2021 @ 12:36:45
  Author: yan12125
Revision: 1004148

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 12:36:31 UTC (rev 1004147)
+++ PKGBUILD2021-08-21 12:36:45 UTC (rev 1004148)
@@ -1,47 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=1.3.3
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-makedepends=(python-setuptools)
-checkdepends=(python-moto python-pytest python-pytest-asyncio
-  # moto optdepends
-  python-docker python-yaml python-flask python-flask-cors)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('2ea7fb706b718d5f2a616ebaf121fdb5508a063a6aaa19574035dbf49793f11d')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  export PYTHONPATH="$PWD"
-  # test_lambda uses moto.awslambda, which requires a running Docker service
-  # See: https://github.com/spulec/moto/issues/3276
-  pytest -m moto tests \
-  --ignore=tests/test_patches.py \
-  --ignore=tests/test_lambda.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 1004147, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 12:36:45 UTC (rev 1004148)
@@ -0,0 +1,47 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+makedepends=(python-setuptools)
+checkdepends=(python-moto python-pytest python-pytest-asyncio
+  # moto optdepends
+  python-docker python-yaml python-flask python-flask-cors)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('10d93c0731ec9fa820007e0cdd34c34653ab0de9781b041def806fe34f8c8e5f')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  # See: https://github.com/spulec/moto/issues/3276
+  pytest -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-08-21 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, August 21, 2021 @ 12:36:31
  Author: yan12125
Revision: 1004147

upgpkg: python-aiobotocore 1.4.0-1

Modified:
  python-aiobotocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 12:03:07 UTC (rev 1004146)
+++ PKGBUILD2021-08-21 12:36:31 UTC (rev 1004147)
@@ -2,7 +2,7 @@
 
 pkgname=python-aiobotocore
 _pkgname=aiobotocore
-pkgver=1.3.3
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='asyncio support for botocore library using aiohttp'
 arch=(any)
@@ -14,7 +14,7 @@
   # moto optdepends
   python-docker python-yaml python-flask python-flask-cors)
 
source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('2ea7fb706b718d5f2a616ebaf121fdb5508a063a6aaa19574035dbf49793f11d')
+sha256sums=('10d93c0731ec9fa820007e0cdd34c34653ab0de9781b041def806fe34f8c8e5f')
 
 prepare() {
   cd $_pkgname-$pkgver



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

2021-08-21 Thread Laurent Carlier via arch-commits
Date: Saturday, August 21, 2021 @ 12:03:07
  Author: lcarlier
Revision: 1004146

archrelease: copy trunk to community-x86_64

Added:
  gpxsee/repos/community-x86_64/PKGBUILD
(from rev 1004145, gpxsee/trunk/PKGBUILD)
Deleted:
  gpxsee/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 12:03:03 UTC (rev 1004145)
+++ PKGBUILD2021-08-21 12:03:07 UTC (rev 1004146)
@@ -1,31 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Raffaele Zamorano
-# Contributor: Jose Riha 
-# Contributor: Nikolay Korotkiy 
-
-pkgname=gpxsee
-_pkgname=GPXSee
-pkgver=9.3
-pkgrel=1
-pkgdesc='GPS log file viewer and analyzer'
-arch=(x86_64)
-url='https://www.gpxsee.org/'
-license=(GPL3)
-depends=(qt6-imageformats)
-makedepends=(qt6-tools)
-source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.tar.gz)
-sha256sums=('73ea6d2819409046b1ddb0d270930ffab9111c1d5ce7a815b29823c2e2387043')
-
-build() {
-  cd $_pkgname-$pkgver
-  /usr/lib/qt6/bin/lrelease gpxsee.pro
-  qmake6 gpxsee.pro PREFIX=/usr
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-  # Install appdata
-  install -Dm644 pkg/appdata.xml 
"$pkgdir"/usr/share/metainfo/$pkgname.appdata.xml
-}

Copied: gpxsee/repos/community-x86_64/PKGBUILD (from rev 1004145, 
gpxsee/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 12:03:07 UTC (rev 1004146)
@@ -0,0 +1,31 @@
+# Maintainer: Balló György 
+# Contributor: Raffaele Zamorano
+# Contributor: Jose Riha 
+# Contributor: Nikolay Korotkiy 
+
+pkgname=gpxsee
+_pkgname=GPXSee
+pkgver=9.4
+pkgrel=1
+pkgdesc='GPS log file viewer and analyzer'
+arch=(x86_64)
+url='https://www.gpxsee.org/'
+license=(GPL3)
+depends=(qt6-imageformats)
+makedepends=(qt6-tools)
+source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.tar.gz)
+sha256sums=('75f58e900e4ca7cc01e23e4e14823e1ad6e69aadf5f517e36b1cf9296eefecf6')
+
+build() {
+  cd $_pkgname-$pkgver
+  /usr/lib/qt6/bin/lrelease gpxsee.pro
+  qmake6 gpxsee.pro PREFIX=/usr
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  # Install appdata
+  install -Dm644 pkg/appdata.xml 
"$pkgdir"/usr/share/metainfo/$pkgname.appdata.xml
+}



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

2021-08-21 Thread Laurent Carlier via arch-commits
Date: Saturday, August 21, 2021 @ 12:03:03
  Author: lcarlier
Revision: 1004145

upgpkg: gpxsee 9.4-1: upstream update 9.4

Modified:
  gpxsee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 11:54:03 UTC (rev 1004144)
+++ PKGBUILD2021-08-21 12:03:03 UTC (rev 1004145)
@@ -5,7 +5,7 @@
 
 pkgname=gpxsee
 _pkgname=GPXSee
-pkgver=9.3
+pkgver=9.4
 pkgrel=1
 pkgdesc='GPS log file viewer and analyzer'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 depends=(qt6-imageformats)
 makedepends=(qt6-tools)
 source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.tar.gz)
-sha256sums=('73ea6d2819409046b1ddb0d270930ffab9111c1d5ce7a815b29823c2e2387043')
+sha256sums=('75f58e900e4ca7cc01e23e4e14823e1ad6e69aadf5f517e36b1cf9296eefecf6')
 
 build() {
   cd $_pkgname-$pkgver



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

2021-08-21 Thread Morten Linderud via arch-commits
Date: Saturday, August 21, 2021 @ 11:54:03
  Author: foxboron
Revision: 1004144

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  118 ++--
 tailscale.install |   24 +-
 2 files changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 11:53:55 UTC (rev 1004143)
+++ PKGBUILD2021-08-21 11:54:03 UTC (rev 1004144)
@@ -1,59 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: David Anderson 
-
-pkgname=tailscale
-pkgver=1.12.3
-pkgrel=1
-pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
-arch=("x86_64")
-url="https://tailscale.com;
-license=("MIT")
-makedepends=("git" "go")
-depends=("glibc")
-backup=("etc/default/tailscaled")
-_commit=2be791762ed8d183c2e6c877bfe0a6f1229ccf7b   #refs/tags/v1.12.3^{}
-source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
-sha256sums=('SKIP')
-install="tailscale.install"
-
-pkgver() {
-  cd "${pkgname}"
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-prepare() {
-cd "${pkgname}"
-go mod vendor
-}
-
-build() {
-cd "${pkgname}"
-eval "$(./version/version.sh)"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-GO_LDFLAGS="\
--linkmode=external \
--X tailscale.com/version.Long=${VERSION_LONG} \
--X tailscale.com/version.Short=${VERSION_SHORT} \
--X tailscale.com/version.GitCommit=${VERSION_GIT_HASH}"
-for cmd in ./cmd/tailscale ./cmd/tailscaled; do
-go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
-done
-}
-
-#TODO: Figure out why tests are failing
-# check() {
-# cd "${pkgname}"
-# go test $(go list ./... | grep -v tsdns_test)
-# }
-
-package() {
-cd "${pkgname}"
-install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
-install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
-install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
-install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: tailscale/repos/community-x86_64/PKGBUILD (from rev 1004143, 
tailscale/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 11:54:03 UTC (rev 1004144)
@@ -0,0 +1,59 @@
+# Maintainer: Morten Linderud 
+# Contributor: David Anderson 
+
+pkgname=tailscale
+pkgver=1.12.4
+pkgrel=1
+pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
+arch=("x86_64")
+url="https://tailscale.com;
+license=("MIT")
+makedepends=("git" "go")
+depends=("glibc")
+backup=("etc/default/tailscaled")
+_commit=fdeeb8de42f1c446b659f96b6a9fb856f67877f2   #refs/tags/v1.12.4^{}
+source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
+sha256sums=('SKIP')
+install="tailscale.install"
+
+pkgver() {
+  cd "${pkgname}"
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+prepare() {
+cd "${pkgname}"
+go mod vendor
+}
+
+build() {
+cd "${pkgname}"
+eval "$(./version/version.sh)"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+GO_LDFLAGS="\
+-linkmode=external \
+-X tailscale.com/version.Long=${VERSION_LONG} \
+-X tailscale.com/version.Short=${VERSION_SHORT} \
+-X tailscale.com/version.GitCommit=${VERSION_GIT_HASH}"
+for cmd in ./cmd/tailscale ./cmd/tailscaled; do
+go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
+done
+}
+
+#TODO: Figure out why tests are failing
+# check() {
+# cd "${pkgname}"
+# go test $(go list ./... | grep -v tsdns_test)
+# }
+
+package() {
+cd "${pkgname}"
+install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
+install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
+install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
+install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}

Deleted: tailscale.install
===
--- tailscale.install   2021-08-21 11:53:55 UTC (rev 1004143)
+++ tailscale.install   2021-08-21 11:54:03 UTC 

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

2021-08-21 Thread Morten Linderud via arch-commits
Date: Saturday, August 21, 2021 @ 11:53:55
  Author: foxboron
Revision: 1004143

upgpkg: tailscale 1.12.4-1

Modified:
  tailscale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 11:52:01 UTC (rev 1004142)
+++ PKGBUILD2021-08-21 11:53:55 UTC (rev 1004143)
@@ -2,7 +2,7 @@
 # Contributor: David Anderson 
 
 pkgname=tailscale
-pkgver=1.12.3
+pkgver=1.12.4
 pkgrel=1
 pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
 arch=("x86_64")
@@ -11,7 +11,7 @@
 makedepends=("git" "go")
 depends=("glibc")
 backup=("etc/default/tailscaled")
-_commit=2be791762ed8d183c2e6c877bfe0a6f1229ccf7b   #refs/tags/v1.12.3^{}
+_commit=fdeeb8de42f1c446b659f96b6a9fb856f67877f2   #refs/tags/v1.12.4^{}
 source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
 sha256sums=('SKIP')
 install="tailscale.install"



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

2021-08-21 Thread Morten Linderud via arch-commits
Date: Saturday, August 21, 2021 @ 11:52:01
  Author: foxboron
Revision: 1004142

archrelease: copy trunk to community-x86_64

Added:
  podman/repos/community-x86_64/PKGBUILD
(from rev 1004141, podman/trunk/PKGBUILD)
Deleted:
  podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 11:51:53 UTC (rev 1004141)
+++ PKGBUILD2021-08-21 11:52:01 UTC (rev 1004142)
@@ -1,61 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: David Runge 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=3.2.3
-pkgrel=1
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon containers-common
- device-mapper iptables libseccomp
- crun slirp4netns libsystemd fuse-overlayfs)
-makedepends=(btrfs-progs go go-md2man git gpgme systemd)
-backup=('etc/cni/net.d/87-podman-bridge.conflist')
-source=("git+$url#tag=v$pkgver?signed")
-validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4'
-  '7CE1E6F8C90CB53E7E4D8F2D502E08DB0BBF8EEE')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libpod
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  export BUILDTAGS='seccomp systemd'
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath"
-
-  cd libpod
-  make EXTRA_LDFLAGS='-s -w -linkmode=external'
-}
-
-package_podman() {
-  depends+=('libgpgme.so')
-  optdepends+=('podman-docker: for Docker-compatible CLI'
-  'btrfs-progs: support btrfs backend devices'
-  'catatonit: --init flag support'
-  'crun: support for unified cgroupsv2')
-
-  cd libpod
-  make install install.completions DESTDIR="$pkgdir" PREFIX=/usr
-  # remove man pages provided by containers-common
-  rm -rvf "${pkgdir}/usr/share/man/man5"
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-  provides=(docker)
-
-  cd libpod
-  make -j1 install.docker-full DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 1004141, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 11:52:01 UTC (rev 1004142)
@@ -0,0 +1,68 @@
+# Maintainer: Morten Linderud 
+# Contributor: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=3.3.0
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/podman'
+license=(Apache)
+depends=(cni-plugins conmon containers-common
+ device-mapper iptables libseccomp
+ crun slirp4netns libsystemd fuse-overlayfs)
+makedepends=(btrfs-progs go go-md2man git gpgme systemd)
+backup=('etc/cni/net.d/87-podman-bridge.conflist')
+source=("git+$url#tag=v$pkgver?signed")
+validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4'
+  '7CE1E6F8C90CB53E7E4D8F2D502E08DB0BBF8EEE')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare(){
+  cd $pkgname
+  # Fix trimpath in makefile
+  # 
https://github.com/containers/podman/commit/e7b7c90bae1c65f61f524498e0ff152639f1ce04.patch
 
+  git cherry-pick -n e7b7c90bae1c65f61f524498e0ff152639f1ce04  
+}
+
+build() {
+  export BUILDTAGS='seccomp systemd'
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+
+  cd $pkgname
+  make EXTRA_LDFLAGS='-s -w -linkmode=external'
+}
+
+package_podman() {
+  depends+=('libgpgme.so')
+  optdepends+=('podman-docker: for Docker-compatible CLI'
+  'btrfs-progs: support btrfs backend devices'
+  'catatonit: --init flag support'
+  'crun: support for unified cgroupsv2')
+
+  cd $pkgname
+  make install install.completions DESTDIR="$pkgdir" PREFIX=/usr
+  # remove man pages provided by containers-common
+  rm -rvf "${pkgdir}/usr/share/man/man5"
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+  provides=(docker)
+
+  cd podman
+  make -j1 install.docker-full DESTDIR="$pkgdir" PREFIX=/usr
+}



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

2021-08-21 Thread Morten Linderud via arch-commits
Date: Saturday, August 21, 2021 @ 11:51:53
  Author: foxboron
Revision: 1004141

upgpkg: podman 3.3.0-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 11:35:53 UTC (rev 1004140)
+++ PKGBUILD2021-08-21 11:51:53 UTC (rev 1004141)
@@ -4,11 +4,11 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=3.2.3
+pkgver=3.3.0
 pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
-url='https://github.com/containers/libpod'
+url='https://github.com/containers/podman'
 license=(Apache)
 depends=(cni-plugins conmon containers-common
  device-mapper iptables libseccomp
@@ -21,10 +21,17 @@
 sha256sums=('SKIP')
 
 pkgver() {
-  cd libpod
+  cd $pkgname
   git describe --tags | sed 's/^v//;s/-/+/g'
 }
 
+prepare(){
+  cd $pkgname
+  # Fix trimpath in makefile
+  # 
https://github.com/containers/podman/commit/e7b7c90bae1c65f61f524498e0ff152639f1ce04.patch
 
+  git cherry-pick -n e7b7c90bae1c65f61f524498e0ff152639f1ce04  
+}
+
 build() {
   export BUILDTAGS='seccomp systemd'
   export CGO_CPPFLAGS="${CPPFLAGS}"
@@ -33,7 +40,7 @@
   export CGO_LDFLAGS="${LDFLAGS}"
   export GOFLAGS="-buildmode=pie -trimpath"
 
-  cd libpod
+  cd $pkgname
   make EXTRA_LDFLAGS='-s -w -linkmode=external'
 }
 
@@ -44,7 +51,7 @@
   'catatonit: --init flag support'
   'crun: support for unified cgroupsv2')
 
-  cd libpod
+  cd $pkgname
   make install install.completions DESTDIR="$pkgdir" PREFIX=/usr
   # remove man pages provided by containers-common
   rm -rvf "${pkgdir}/usr/share/man/man5"
@@ -56,6 +63,6 @@
   conflicts=(docker)
   provides=(docker)
 
-  cd libpod
+  cd podman
   make -j1 install.docker-full DESTDIR="$pkgdir" PREFIX=/usr
 }



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

2021-08-21 Thread Morten Linderud via arch-commits
Date: Saturday, August 21, 2021 @ 11:35:53
  Author: foxboron
Revision: 1004140

archrelease: copy trunk to community-x86_64

Added:
  skopeo/repos/community-x86_64/PKGBUILD
(from rev 1004139, skopeo/trunk/PKGBUILD)
Deleted:
  skopeo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 11:35:46 UTC (rev 1004139)
+++ PKGBUILD2021-08-21 11:35:53 UTC (rev 1004140)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=skopeo
-pkgver=1.4.0
-pkgrel=1
-pkgdesc='A command line utility for various operations on container images and 
image repositories.'
-arch=(x86_64)
-url='https://github.com/containers/skopeo'
-license=(APACHE)
-depends=(gpgme device-mapper containers-common)
-makedepends=(go go-md2man btrfs-progs git systemd)
-_commit=a44da449d35e4621e9993f406d5a4f98dd89965e   #refs/tags/v1.4.0
-source=(git+$url#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd ${pkgname}
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  make bin/skopeo BUILDTAGS='containers_image_ostree_stub'
-  make docs
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  rm -rf "${pkgdir}/etc/containers/registries.d"
-  rm "${pkgdir}/etc/containers/policy.json"
-}

Copied: skopeo/repos/community-x86_64/PKGBUILD (from rev 1004139, 
skopeo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 11:35:53 UTC (rev 1004140)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=skopeo
+pkgver=1.4.1
+pkgrel=1
+pkgdesc='A command line utility for various operations on container images and 
image repositories.'
+arch=(x86_64)
+url='https://github.com/containers/skopeo'
+license=(APACHE)
+depends=(gpgme device-mapper containers-common)
+makedepends=(go go-md2man btrfs-progs git systemd)
+_commit=130f32f047b7bf9b1fb4f95c4c5b1da6255e4829   #refs/tags/v1.4.1^{}
+options=(!strip)
+source=(git+$url#commit=$_commit)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare(){
+  cd ${pkgname}
+  sed -i 's|.PHONY: bin/skopeo||' Makefile
+  sed -i 's|-gcflags "$(GOGCFLAGS)"||' Makefile
+}
+
+build() {
+  cd ${pkgname}
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  make bin/skopeo GO_DYN_FLAGS="-buildmode=pie -trimpath" 
BUILDTAGS='containers_image_ostree_stub'
+  make docs
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  rm -rf "${pkgdir}/etc/containers/registries.d"
+  rm "${pkgdir}/etc/containers/policy.json"
+}



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

2021-08-21 Thread Morten Linderud via arch-commits
Date: Saturday, August 21, 2021 @ 11:35:46
  Author: foxboron
Revision: 1004139

upgpkg: skopeo 1.4.1-1

Modified:
  skopeo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 11:23:16 UTC (rev 1004138)
+++ PKGBUILD2021-08-21 11:35:46 UTC (rev 1004139)
@@ -2,7 +2,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=skopeo
-pkgver=1.4.0
+pkgver=1.4.1
 pkgrel=1
 pkgdesc='A command line utility for various operations on container images and 
image repositories.'
 arch=(x86_64)
@@ -10,7 +10,8 @@
 license=(APACHE)
 depends=(gpgme device-mapper containers-common)
 makedepends=(go go-md2man btrfs-progs git systemd)
-_commit=a44da449d35e4621e9993f406d5a4f98dd89965e   #refs/tags/v1.4.0
+_commit=130f32f047b7bf9b1fb4f95c4c5b1da6255e4829   #refs/tags/v1.4.1^{}
+options=(!strip)
 source=(git+$url#commit=$_commit)
 sha256sums=('SKIP')
 
@@ -19,6 +20,12 @@
   git describe --tags | sed 's/^v//;s/-/+/g'
 }
 
+prepare(){
+  cd ${pkgname}
+  sed -i 's|.PHONY: bin/skopeo||' Makefile
+  sed -i 's|-gcflags "$(GOGCFLAGS)"||' Makefile
+}
+
 build() {
   cd ${pkgname}
   export CGO_LDFLAGS="${LDFLAGS}"
@@ -25,8 +32,7 @@
   export CGO_CFLAGS="${CFLAGS}"
   export CGO_CPPFLAGS="${CPPFLAGS}"
   export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  make bin/skopeo BUILDTAGS='containers_image_ostree_stub'
+  make bin/skopeo GO_DYN_FLAGS="-buildmode=pie -trimpath" 
BUILDTAGS='containers_image_ostree_stub'
   make docs
 }
 



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 11:23:09
  Author: felixonmars
Revision: 1004137

upgpkg: aria2 1.36.0-1

Modified:
  aria2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 10:42:18 UTC (rev 1004136)
+++ PKGBUILD2021-08-21 11:23:09 UTC (rev 1004137)
@@ -6,8 +6,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=aria2
-pkgver=1.35.0
-pkgrel=2
+pkgver=1.36.0
+pkgrel=1
 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
 arch=('x86_64')
 url='http://aria2.sourceforge.net/'
@@ -15,7 +15,7 @@
 depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
 checkdepends=('cppunit')
 
source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)
-sha512sums=('82b49cecd61064ae33b4a422a2320d533f54afea8fab0f014072a46afdc05972d2e9c603e843960c097410adf87290df65849f4ee05e047403618ae50db151ef')
+sha512sums=('8203dbb75274455a78c50dd4f894e631de6931ac889f26896dceed78ec38c98cdbcf07e164744f308f2bfffeae1016beec1bfdbe8cad7f3280d11376aa0c2542')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in kernel-modules-hook/repos (7 files)

2021-08-21 Thread Christian Rebischke via arch-commits
Date: Saturday, August 21, 2021 @ 10:42:18
  Author: shibumi
Revision: 1004136

archrelease: copy trunk to community-any

Added:
  kernel-modules-hook/repos/community-any/
  kernel-modules-hook/repos/community-any/10-linux-modules-post.hook
(from rev 1004135, kernel-modules-hook/trunk/10-linux-modules-post.hook)
  kernel-modules-hook/repos/community-any/10-linux-modules-pre.hook
(from rev 1004135, kernel-modules-hook/trunk/10-linux-modules-pre.hook)
  kernel-modules-hook/repos/community-any/PKGBUILD
(from rev 1004135, kernel-modules-hook/trunk/PKGBUILD)
  kernel-modules-hook/repos/community-any/UNLICENSE
(from rev 1004135, kernel-modules-hook/trunk/UNLICENSE)
  kernel-modules-hook/repos/community-any/linux-modules-cleanup.conf
(from rev 1004135, kernel-modules-hook/trunk/linux-modules-cleanup.conf)
  kernel-modules-hook/repos/community-any/linux-modules-cleanup.service
(from rev 1004135, kernel-modules-hook/trunk/linux-modules-cleanup.service)

---+
 10-linux-modules-post.hook|   12 
 10-linux-modules-pre.hook |   11 +++
 PKGBUILD  |   28 
 UNLICENSE |   24 
 linux-modules-cleanup.conf|1 +
 linux-modules-cleanup.service |9 +
 6 files changed, 85 insertions(+)

Copied: kernel-modules-hook/repos/community-any/10-linux-modules-post.hook 
(from rev 1004135, kernel-modules-hook/trunk/10-linux-modules-post.hook)
===
--- community-any/10-linux-modules-post.hook(rev 0)
+++ community-any/10-linux-modules-post.hook2021-08-21 10:42:18 UTC (rev 
1004136)
@@ -0,0 +1,12 @@
+[Trigger]
+Operation = Install
+Operation = Upgrade
+Type = Path
+Target = usr/lib/modules/*/vmlinuz
+
+[Action]
+Description = Restoring Linux kernel modules...
+When = PostTransaction
+Depends = coreutils
+Depends = rsync
+Exec = /bin/sh -xc 'KVER="${KVER:-$(uname -r)}"; if test -e 
"/usr/lib/modules/backup/${KVER}"; then rsync -AHXal --ignore-existing 
"/usr/lib/modules/backup/${KVER}" /usr/lib/modules/; fi; rm -rf 
/usr/lib/modules/backup'

Copied: kernel-modules-hook/repos/community-any/10-linux-modules-pre.hook (from 
rev 1004135, kernel-modules-hook/trunk/10-linux-modules-pre.hook)
===
--- community-any/10-linux-modules-pre.hook (rev 0)
+++ community-any/10-linux-modules-pre.hook 2021-08-21 10:42:18 UTC (rev 
1004136)
@@ -0,0 +1,11 @@
+[Trigger]
+Operation = Install
+Operation = Upgrade
+Type = Path
+Target = usr/lib/modules/*/vmlinuz
+
+[Action]
+Description = Saving Linux kernel modules...
+When = PreTransaction
+Depends = rsync
+Exec = /bin/sh -c 'KVER="${KVER:-$(uname -r)}"; if test -e 
"/usr/lib/modules/${KVER}"; then rsync -AHXal --delete-after 
"/usr/lib/modules/${KVER}" /usr/lib/modules/backup/; fi'

Copied: kernel-modules-hook/repos/community-any/PKGBUILD (from rev 1004135, 
kernel-modules-hook/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-08-21 10:42:18 UTC (rev 1004136)
@@ -0,0 +1,28 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Artoria Pendragon 
+pkgname=kernel-modules-hook
+pkgver=0.1.7
+pkgrel=2
+pkgdesc="Keeps your system fully functional after a kernel upgrade"
+arch=('any')
+url="https://github.com/saber-nyan/kernel-modules-hook;
+license=('UNLICENSE')
+depends=('rsync')
+source=("linux-modules-cleanup.conf"
+   "linux-modules-cleanup.service"
+   "10-linux-modules-post.hook"
+   "10-linux-modules-pre.hook"
+   "UNLICENSE")
+sha256sums=('4169b44c297ddb7aad2220c6eba7c7942e3396f92528c59617955ab5560cb4cf'
+'5d947290ef8c94b33c79c531e5615f4c9bea38e7649092d34af3bf0af5b1ca24'
+'900502d030e925fca6188b9448fbaf6562d6e23cd5c50938cdf00522825f76c2'
+'f7ea2947c3fbe1510b3ea5cc5793b8197f0718dcb12daea3da9b27b3cf1c4116'
+'7e12e5df4bae12cb21581ba157ced20e1986a0508dd10d0e8a4ab9a4cf94e85c')
+
+package() {
+   install -Dm644 'linux-modules-cleanup.conf' 
"${pkgdir}/usr/lib/tmpfiles.d/linux-modules-cleanup.conf"
+   install -Dm644 'linux-modules-cleanup.service' 
"${pkgdir}/usr/lib/systemd/system/linux-modules-cleanup.service"
+   install -Dm644 '10-linux-modules-post.hook' 
"${pkgdir}/usr/share/libalpm/hooks/10-linux-modules-post.hook"
+   install -Dm644 '10-linux-modules-pre.hook' 
"${pkgdir}/usr/share/libalpm/hooks/10-linux-modules-pre.hook"
+   install -Dm644 'UNLICENSE' 
"${pkgdir}/usr/share/licenses/${pkgname}/UNLICENSE"
+}

Copied: kernel-modules-hook/repos/community-any/UNLICENSE (from rev 1004135, 
kernel-modules-hook/trunk/UNLICENSE)

[arch-commits] Commit in kernel-modules-hook/trunk (UNLICENSE)

2021-08-21 Thread Christian Rebischke via arch-commits
Date: Saturday, August 21, 2021 @ 10:42:10
  Author: shibumi
Revision: 1004135

upgpkg: kernel-modules-hook 0.1.7-2

Added:
  kernel-modules-hook/trunk/UNLICENSE

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

Added: UNLICENSE
===
--- UNLICENSE   (rev 0)
+++ UNLICENSE   2021-08-21 10:42:10 UTC (rev 1004135)
@@ -0,0 +1,24 @@
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to 



[arch-commits] Commit in (8 files)

2021-08-21 Thread Christian Rebischke via arch-commits
Date: Saturday, August 21, 2021 @ 10:40:51
  Author: shibumi
Revision: 1004134

add kernel-modules-hook

Added:
  kernel-modules-hook/
  kernel-modules-hook/repos/
  kernel-modules-hook/trunk/
  kernel-modules-hook/trunk/10-linux-modules-post.hook
  kernel-modules-hook/trunk/10-linux-modules-pre.hook
  kernel-modules-hook/trunk/PKGBUILD
  kernel-modules-hook/trunk/linux-modules-cleanup.conf
  kernel-modules-hook/trunk/linux-modules-cleanup.service

---+
 10-linux-modules-post.hook|   12 
 10-linux-modules-pre.hook |   11 +++
 PKGBUILD  |   28 
 linux-modules-cleanup.conf|1 +
 linux-modules-cleanup.service |9 +
 5 files changed, 61 insertions(+)

Added: kernel-modules-hook/trunk/10-linux-modules-post.hook
===
--- kernel-modules-hook/trunk/10-linux-modules-post.hook
(rev 0)
+++ kernel-modules-hook/trunk/10-linux-modules-post.hook2021-08-21 
10:40:51 UTC (rev 1004134)
@@ -0,0 +1,12 @@
+[Trigger]
+Operation = Install
+Operation = Upgrade
+Type = Path
+Target = usr/lib/modules/*/vmlinuz
+
+[Action]
+Description = Restoring Linux kernel modules...
+When = PostTransaction
+Depends = coreutils
+Depends = rsync
+Exec = /bin/sh -xc 'KVER="${KVER:-$(uname -r)}"; if test -e 
"/usr/lib/modules/backup/${KVER}"; then rsync -AHXal --ignore-existing 
"/usr/lib/modules/backup/${KVER}" /usr/lib/modules/; fi; rm -rf 
/usr/lib/modules/backup'

Added: kernel-modules-hook/trunk/10-linux-modules-pre.hook
===
--- kernel-modules-hook/trunk/10-linux-modules-pre.hook 
(rev 0)
+++ kernel-modules-hook/trunk/10-linux-modules-pre.hook 2021-08-21 10:40:51 UTC 
(rev 1004134)
@@ -0,0 +1,11 @@
+[Trigger]
+Operation = Install
+Operation = Upgrade
+Type = Path
+Target = usr/lib/modules/*/vmlinuz
+
+[Action]
+Description = Saving Linux kernel modules...
+When = PreTransaction
+Depends = rsync
+Exec = /bin/sh -c 'KVER="${KVER:-$(uname -r)}"; if test -e 
"/usr/lib/modules/${KVER}"; then rsync -AHXal --delete-after 
"/usr/lib/modules/${KVER}" /usr/lib/modules/backup/; fi'

Added: kernel-modules-hook/trunk/PKGBUILD
===
--- kernel-modules-hook/trunk/PKGBUILD  (rev 0)
+++ kernel-modules-hook/trunk/PKGBUILD  2021-08-21 10:40:51 UTC (rev 1004134)
@@ -0,0 +1,28 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Artoria Pendragon 
+pkgname=kernel-modules-hook
+pkgver=0.1.7
+pkgrel=2
+pkgdesc="Keeps your system fully functional after a kernel upgrade"
+arch=('any')
+url="https://github.com/saber-nyan/kernel-modules-hook;
+license=('UNLICENSE')
+depends=('rsync')
+source=("linux-modules-cleanup.conf"
+   "linux-modules-cleanup.service"
+   "10-linux-modules-post.hook"
+   "10-linux-modules-pre.hook"
+   "UNLICENSE")
+sha256sums=('4169b44c297ddb7aad2220c6eba7c7942e3396f92528c59617955ab5560cb4cf'
+'5d947290ef8c94b33c79c531e5615f4c9bea38e7649092d34af3bf0af5b1ca24'
+'900502d030e925fca6188b9448fbaf6562d6e23cd5c50938cdf00522825f76c2'
+'f7ea2947c3fbe1510b3ea5cc5793b8197f0718dcb12daea3da9b27b3cf1c4116'
+'7e12e5df4bae12cb21581ba157ced20e1986a0508dd10d0e8a4ab9a4cf94e85c')
+
+package() {
+   install -Dm644 'linux-modules-cleanup.conf' 
"${pkgdir}/usr/lib/tmpfiles.d/linux-modules-cleanup.conf"
+   install -Dm644 'linux-modules-cleanup.service' 
"${pkgdir}/usr/lib/systemd/system/linux-modules-cleanup.service"
+   install -Dm644 '10-linux-modules-post.hook' 
"${pkgdir}/usr/share/libalpm/hooks/10-linux-modules-post.hook"
+   install -Dm644 '10-linux-modules-pre.hook' 
"${pkgdir}/usr/share/libalpm/hooks/10-linux-modules-pre.hook"
+   install -Dm644 'UNLICENSE' 
"${pkgdir}/usr/share/licenses/${pkgname}/UNLICENSE"
+}

Added: kernel-modules-hook/trunk/linux-modules-cleanup.conf
===
--- kernel-modules-hook/trunk/linux-modules-cleanup.conf
(rev 0)
+++ kernel-modules-hook/trunk/linux-modules-cleanup.conf2021-08-21 
10:40:51 UTC (rev 1004134)
@@ -0,0 +1 @@
+R! /usr/lib/modules/.old/* - - - 4w

Added: kernel-modules-hook/trunk/linux-modules-cleanup.service
===
--- kernel-modules-hook/trunk/linux-modules-cleanup.service 
(rev 0)
+++ kernel-modules-hook/trunk/linux-modules-cleanup.service 2021-08-21 
10:40:51 UTC (rev 1004134)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Clean up modules from old kernels
+
+[Service]
+Type=oneshot
+ExecStart=/bin/bash -exc 'for i in /usr/lib/modules/[0-9]*; do if [[ $${i##*/} 
= \'%v\' ]] || pacman -Qo "$${i}"; then continue; fi; rsync 

[arch-commits] Commit in libreoffice-fresh/repos/extra-x86_64 (10 files)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 09:37:49
  Author: andyrtr
Revision: 422444

archrelease: copy trunk to extra-x86_64

Added:
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD
(from rev 422443, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.csh
(from rev 422443, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.sh
(from rev 422443, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 422443, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/extra-x86_64/soffice-template.desktop.in
(from rev 422443, libreoffice-fresh/trunk/soffice-template.desktop.in)
Deleted:
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.csh
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.sh
  
libreoffice-fresh/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice-fresh/repos/extra-x86_64/soffice-template.desktop.in

--+
 PKGBUILD |  764 -
 libreoffice-fresh.csh|   14 
 libreoffice-fresh.sh |   14 
 make-pyuno-work-with-system-wide-module-install.diff |   36 
 soffice-template.desktop.in  |   14 
 5 files changed, 422 insertions(+), 420 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 09:37:37 UTC (rev 422443)
+++ PKGBUILD2021-08-21 09:37:49 UTC (rev 422444)
@@ -1,381 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer: Bartłomiej Piotrowski 
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_default_client_id=413772536636.apps.googleusercontent.com
-_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
-
-pkgbase=libreoffice-fresh
-pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=7.1.5.2
-pkgver=7.1.5
-pkgrel=2
-arch=('x86_64')
-license=('LGPL3')
-url="https://www.libreoffice.org/;
-makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.7' 'libwpd>=0.9.2' 
'libwps'
-   'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
-   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu' 
-   'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
-   'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'gst-plugins-base-libs'
-   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
-   'gperf' 'gtk3' 'qt5-base' 'plasma-framework' 'cppunit' 'beanshell' 
'clucene'
-   'junit' 'libmythes' 'libwpg'  'java-environment=11' 'postgresql-libs' 
'mariadb-libs' 'libgl'
-   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
-   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
-   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
-   'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
-   'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
-   'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
-   'libffi' 'box2d' 'git'
-)
-
-_mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
-#_mirror="https://dev-builds.libreoffice.org/pre-releases/src;
-_additional_source_url="https://dev-www.libreoffice.org/src;
-_additional_source_url2="https://dev-www.libreoffice.org/extern;
-source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
-   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
-   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # 
keep old bundled version, new system version ftbs
-   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
-   
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   ${_additional_source_url}/language-subtag-registry-2019-04-03.tar.bz2
-   
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
-   
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
-   
${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   ${_additional_source_url}/pdfium-4306.tar.bz2
-   ${_additional_source_url}/dtoa-20180411.tgz
-   ${_additional_source_url}/lxml-4.1.1.tgz
-   ${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
-   

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

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 09:37:37
  Author: andyrtr
Revision: 422443

upgpkg: libreoffice-fresh 7.2.0-1: upstream update 7.2.0 - disable cmis support 
for now due to a recent build error

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 09:35:46 UTC (rev 422442)
+++ PKGBUILD2021-08-21 09:37:37 UTC (rev 422443)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-fresh
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=7.1.5.2
-pkgver=7.1.5
-pkgrel=2
+_LOver=7.2.0.4
+pkgver=7.2.0
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -28,7 +28,8 @@
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
-   'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
+#  'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
+   'libexttextcat' 'gobject-introspection' # 'libfbclient'
'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
'libffi' 'box2d' 'git'
@@ -43,16 +44,16 @@

${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # 
keep old bundled version, new system version ftbs

${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip

${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   ${_additional_source_url}/language-subtag-registry-2019-04-03.tar.bz2
+   ${_additional_source_url}/language-subtag-registry-2021-03-05.tar.bz2

${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip

${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   ${_additional_source_url}/pdfium-4306.tar.bz2
+   ${_additional_source_url}/pdfium-4500.tar.bz2
${_additional_source_url}/dtoa-20180411.tgz
${_additional_source_url}/lxml-4.1.1.tgz
-   ${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
-   ${_additional_source_url}/QR-Code-generator-1.4.0.tar.gz
-   
${_additional_source_url}/skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz
+   ${_additional_source_url}/Firebird-3.0.7.33374-0.tar.bz2
+   ${_additional_source_url}/zxing-cpp-1.1.1.tar.gz
+   
${_additional_source_url}/skia-m90-45c57e116ee0ce214bdf78405a4762722e4507d9.tar.xz

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite

${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
 # for test suite

${_additional_source_url2}/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf
@@ -64,16 +65,16 @@
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   language-subtag-registry-2019-04-03.tar.bz2
+   language-subtag-registry-2021-03-05.tar.bz2
17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   pdfium-4306.tar.bz2
+   pdfium-4500.tar.bz2
dtoa-20180411.tgz
lxml-4.1.1.tgz
-   Firebird-3.0.0.32483-0.tar.bz2
-   QR-Code-generator-1.4.0.tar.gz
-   skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz
+   Firebird-3.0.7.33374-0.tar.bz2
+   zxing-cpp-1.1.1.tar.gz
+   skia-m90-45c57e116ee0ce214bdf78405a4762722e4507d9.tar.xz
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar  # 
for test suite

odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
  # for test suite

f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf
@@ -80,26 +81,26 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('aeaf30367665bdfdcf780d2b28e304352255de778db41d32d12cd77d5b2385ce'
+sha256sums=('28aac16d3b33ed8196be5ff0b5108dec36b73f85a68b857e221850d15b715576'
 'SKIP'
-'ca042962047e11ea5634ebdcb0254083f2095aa83e9fa32fbbd6ab99e1ea30d4'
+

[arch-commits] Commit in linux-atm/repos/extra-x86_64 (8 files)

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 09:35:46
  Author: felixonmars
Revision: 422442

archrelease: copy trunk to extra-x86_64

Added:
  linux-atm/repos/extra-x86_64/PKGBUILD
(from rev 422441, linux-atm/trunk/PKGBUILD)
  linux-atm/repos/extra-x86_64/linux-atm-linux-5.2-SIOCGSTAMP.patch
(from rev 422441, linux-atm/trunk/linux-atm-linux-5.2-SIOCGSTAMP.patch)
  linux-atm/repos/extra-x86_64/linux-atm-man-pages.patch
(from rev 422441, linux-atm/trunk/linux-atm-man-pages.patch)
  linux-atm/repos/extra-x86_64/linux-atm-remove-define-hacks.patch
(from rev 422441, linux-atm/trunk/linux-atm-remove-define-hacks.patch)
  linux-atm/repos/extra-x86_64/linux-atm-string-formatting.patch
(from rev 422441, linux-atm/trunk/linux-atm-string-formatting.patch)
Deleted:
  linux-atm/repos/extra-x86_64/PKGBUILD
  linux-atm/repos/extra-x86_64/man-pages.patch
  linux-atm/repos/extra-x86_64/remove-define-hacks.patch

--+
 PKGBUILD |   82 ++---
 linux-atm-linux-5.2-SIOCGSTAMP.patch |   41 
 linux-atm-man-pages.patch|   45 ++
 linux-atm-remove-define-hacks.patch  |   22 
 linux-atm-string-formatting.patch|   11 
 man-pages.patch  |   45 --
 remove-define-hacks.patch|   22 
 7 files changed, 164 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 09:35:32 UTC (rev 422441)
+++ PKGBUILD2021-08-21 09:35:46 UTC (rev 422442)
@@ -1,37 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: Surain Mallawa Arachchi 
-
-pkgname=linux-atm
-pkgver=2.5.2
-pkgrel=6
-pkgdesc="Drivers and tools to support ATM networking under Linux."
-arch=('x86_64')
-depends=('glibc')
-url="http://linux-atm.sourceforge.net/;
-license=(GPL)
-source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
-man-pages.patch remove-define-hacks.patch)
-options=(!makeflags)
-md5sums=('d49499368c3cf15f73a05d9bce8824a8'
- '181390736336cdb615ae32f1ae5acfa6'
- '74275ad95cef3898ef3ec52c21012e45')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i ../man-pages.patch
-  patch -Np1 -i ../remove-define-hacks.patch
-
-  # install firmware in /usr/lib
-  sed -i "s#/lib/firmware#/usr/lib/firmware#" src/extra/Makefile.in
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: linux-atm/repos/extra-x86_64/PKGBUILD (from rev 422441, 
linux-atm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 09:35:46 UTC (rev 422442)
@@ -0,0 +1,45 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Surain Mallawa Arachchi 
+
+pkgname=linux-atm
+pkgver=2.5.2
+pkgrel=7
+pkgdesc="Drivers and tools to support ATM networking under Linux."
+arch=('x86_64')
+depends=('glibc')
+optdepends=('flex: for atmsigd')
+url="http://linux-atm.sourceforge.net/;
+license=(GPL)
+source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
+linux-atm-man-pages.patch
+linux-atm-remove-define-hacks.patch
+linux-atm-linux-5.2-SIOCGSTAMP.patch
+linux-atm-string-formatting.patch)
+options=(!makeflags)
+md5sums=('d49499368c3cf15f73a05d9bce8824a8'
+ '181390736336cdb615ae32f1ae5acfa6'
+ '74275ad95cef3898ef3ec52c21012e45'
+ 'a5a44b282461e6530ad8db0f032bf3d5'
+ 'b08a6e98ffac0f2870be7f3a60948c5f')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i ../linux-atm-man-pages.patch
+  patch -Np1 -i ../linux-atm-remove-define-hacks.patch
+  patch -Np1 -i ../linux-atm-linux-5.2-SIOCGSTAMP.patch
+  patch -Np1 -i ../linux-atm-string-formatting.patch
+
+  # install firmware in /usr/lib
+  sed -i "s#/lib/firmware#/usr/lib/firmware#" src/extra/Makefile.in
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: linux-atm/repos/extra-x86_64/linux-atm-linux-5.2-SIOCGSTAMP.patch (from 
rev 422441, linux-atm/trunk/linux-atm-linux-5.2-SIOCGSTAMP.patch)
===
--- linux-atm-linux-5.2-SIOCGSTAMP.patch(rev 0)
+++ linux-atm-linux-5.2-SIOCGSTAMP.patch2021-08-21 09:35:46 UTC (rev 
422442)
@@ -0,0 +1,41 @@
+Fix build failure against linux-5.2+:
+  https://www.spinics.net/lists/linux-sh/msg53430.html
+
+--- a/src/maint/atmdump.c
 b/src/maint/atmdump.c
+@@ -17,6 +17,16 @@
+ #include  /* for htonl and ntohl */
+ 

[arch-commits] Commit in linux-atm/trunk (man-pages.patch remove-define-hacks.patch)

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 09:35:32
  Author: felixonmars
Revision: 422441

upgpkg: linux-atm 2.5.2-7

Deleted:
  linux-atm/trunk/man-pages.patch
  linux-atm/trunk/remove-define-hacks.patch

---+
 man-pages.patch   |   45 
 remove-define-hacks.patch |   22 -
 2 files changed, 67 deletions(-)

Deleted: man-pages.patch
===
--- man-pages.patch 2021-08-21 09:34:59 UTC (rev 422440)
+++ man-pages.patch 2021-08-21 09:35:32 UTC (rev 422441)
@@ -1,45 +0,0 @@
-diff -up linux-atm-2.5.1/src/led/zeppelin.8.fixman 
linux-atm-2.5.1/src/led/zeppelin.8
 linux-atm-2.5.1/src/led/zeppelin.8.fixman  2003-05-02 19:35:04.0 
+0200
-+++ linux-atm-2.5.1/src/led/zeppelin.8 2010-10-13 12:58:18.0 +0200
-@@ -99,7 +99,7 @@ Ring and ATM parts of the ELAN, so using
- recommended. Token Ring support has received less testing than its
- Ethernet counterpart.
- .SH FILES
--.IP \fI/var/run/lec[interface number].pid\fP
-+\fI/var/run/lec[interface number].pid\fP
- The file containing the process id of zeppelin.
- .SH BUGS
- John Bonham died 1980 and Led Zeppelin broke.
-diff -up linux-atm-2.5.1/src/mpoad/mpcd.8.fixman 
linux-atm-2.5.1/src/mpoad/mpcd.8
 linux-atm-2.5.1/src/mpoad/mpcd.8.fixman2001-10-10 00:33:07.0 
+0200
-+++ linux-atm-2.5.1/src/mpoad/mpcd.8   2010-10-13 12:59:14.0 +0200
-@@ -28,7 +28,7 @@ mpcd \- ATM MPOA (Multi\-Protocol Over A
- .B ]]
- .SH DESCRIPTION
- MPOA client
--.SM(MPC) is responsible for creating and receiving
-+.SM (MPC) is responsible for creating and receiving
- internetwork layer shortcuts. Using these shortcuts MPCs forward
- unicast internetwork layer packets effectively over ATM without need
- for routing protocols.
-@@ -43,7 +43,7 @@ accepts shortcuts and packets arriving o
- shortcuts is done with the help of
- .SM MPOA
- server
--.SM(MPS).
-+.SM (MPS).
- .PP
- Just as the Linux
- .SM LAN
-diff -up linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman 
linux-atm-2.5.1/src/sigd/atmsigd.conf.4
 linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman 2001-10-10 
00:33:07.0 +0200
-+++ linux-atm-2.5.1/src/sigd/atmsigd.conf.42010-10-13 12:58:49.0 
+0200
-@@ -125,7 +125,7 @@ a comment. The `#' character cannot be e
- .P
- If an option is specified in \fBatmsigd.conf\fP and on the command
- line, the command line has priority.
--.COMPATIBILITY
-+.SH COMPATIBILITY
- Certain options used by past versions of \fBatmsigd\fP but no longer 
documented
- on the man page are still recognized and supported, but they also yield a
- warning message. Future versions of \fBatmsigd\fP will not recognize those

Deleted: remove-define-hacks.patch
===
--- remove-define-hacks.patch   2021-08-21 09:34:59 UTC (rev 422440)
+++ remove-define-hacks.patch   2021-08-21 09:35:32 UTC (rev 422441)
@@ -1,22 +0,0 @@
-diff -up linux-atm-2.5.1/src/arpd/arp.c.ftbfs linux-atm-2.5.1/src/arpd/arp.c
 linux-atm-2.5.1/src/arpd/arp.c.ftbfs   2007-07-11 11:27:15.0 
-0400
-+++ linux-atm-2.5.1/src/arpd/arp.c 2019-05-02 20:15:45.497338836 -0400
-@@ -15,7 +15,6 @@
- #include 
- #include  /* for linux/if_arp.h */
- #include  /* for ntohs, etc. */
--#define _LINUX_NETDEVICE_H /* very crude hack for glibc2 */
- #include 
- #include 
- #include 
-diff -up linux-atm-2.5.1/src/arpd/itf.c.ftbfs linux-atm-2.5.1/src/arpd/itf.c
 linux-atm-2.5.1/src/arpd/itf.c.ftbfs   2007-07-11 11:27:15.0 
-0400
-+++ linux-atm-2.5.1/src/arpd/itf.c 2019-05-02 20:19:08.046499027 -0400
-@@ -12,7 +12,6 @@
- #include 
- #include 
- #include 
--#define _LINUX_NETDEVICE_H /* glibc2 */
- #include 
- #include 
- 



[arch-commits] Commit in linux-atm/trunk (5 files)

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 09:34:59
  Author: felixonmars
Revision: 422440

upgpkg: linux-atm 2.5.2-7

- add a patch for linux 5.2 compatibility
- add a patch for printf string formatting

thanks loqs!

Added:
  linux-atm/trunk/linux-atm-linux-5.2-SIOCGSTAMP.patch
  linux-atm/trunk/linux-atm-man-pages.patch
  linux-atm/trunk/linux-atm-remove-define-hacks.patch
  linux-atm/trunk/linux-atm-string-formatting.patch
Modified:
  linux-atm/trunk/PKGBUILD

--+
 PKGBUILD |   18 +
 linux-atm-linux-5.2-SIOCGSTAMP.patch |   41 ++
 linux-atm-man-pages.patch|   45 +
 linux-atm-remove-define-hacks.patch  |   22 
 linux-atm-string-formatting.patch|   11 
 5 files changed, 132 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 09:30:04 UTC (rev 422439)
+++ PKGBUILD2021-08-21 09:34:59 UTC (rev 422440)
@@ -3,23 +3,31 @@
 
 pkgname=linux-atm
 pkgver=2.5.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Drivers and tools to support ATM networking under Linux."
 arch=('x86_64')
 depends=('glibc')
+optdepends=('flex: for atmsigd')
 url="http://linux-atm.sourceforge.net/;
 license=(GPL)
 
source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
-man-pages.patch remove-define-hacks.patch)
+linux-atm-man-pages.patch
+linux-atm-remove-define-hacks.patch
+linux-atm-linux-5.2-SIOCGSTAMP.patch
+linux-atm-string-formatting.patch)
 options=(!makeflags)
 md5sums=('d49499368c3cf15f73a05d9bce8824a8'
  '181390736336cdb615ae32f1ae5acfa6'
- '74275ad95cef3898ef3ec52c21012e45')
+ '74275ad95cef3898ef3ec52c21012e45'
+ 'a5a44b282461e6530ad8db0f032bf3d5'
+ 'b08a6e98ffac0f2870be7f3a60948c5f')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
-  patch -Np1 -i ../man-pages.patch
-  patch -Np1 -i ../remove-define-hacks.patch
+  patch -Np1 -i ../linux-atm-man-pages.patch
+  patch -Np1 -i ../linux-atm-remove-define-hacks.patch
+  patch -Np1 -i ../linux-atm-linux-5.2-SIOCGSTAMP.patch
+  patch -Np1 -i ../linux-atm-string-formatting.patch
 
   # install firmware in /usr/lib
   sed -i "s#/lib/firmware#/usr/lib/firmware#" src/extra/Makefile.in

Added: linux-atm-linux-5.2-SIOCGSTAMP.patch
===
--- linux-atm-linux-5.2-SIOCGSTAMP.patch(rev 0)
+++ linux-atm-linux-5.2-SIOCGSTAMP.patch2021-08-21 09:34:59 UTC (rev 
422440)
@@ -0,0 +1,41 @@
+Fix build failure against linux-5.2+:
+  https://www.spinics.net/lists/linux-sh/msg53430.html
+
+--- a/src/maint/atmdump.c
 b/src/maint/atmdump.c
+@@ -17,6 +17,16 @@
+ #include  /* for htonl and ntohl */
+ #include 
+ 
++#ifndef SIOCGSTAMP
++/* linux-5.2+ added support for 64-bit time_t into ioctls
++   that support 'struct timeval' and removed 'SIOCGSTAMP'
++   define.
++
++   Include 'SIOCGSTAMP' wrapper via linux/sockios.h
++   if does not exist.
++  */
++#include 
++#endif
+ 
+ static const char *pti[] = { "Data SDU 0","Data SDU 1","Data SDU 0, CE",
+   "Data SDU 1, CE","Segment OAM F5","End-to-end OAM F5","Reserved (RM)",
+--- a/src/maint/saaldump.c
 b/src/maint/saaldump.c
+@@ -24,6 +24,16 @@
+ 
+ #define MAX_ITEM  2048 /* longest string emitted by q.dump */
+ 
++#ifndef SIOCGSTAMP
++/* linux-5.2+ added support for 64-bit time_t into ioctls
++   that support 'struct timeval' and removed 'SIOCGSTAMP'
++   define.
++
++   Include 'SIOCGSTAMP' wrapper via linux/sockios.h
++   if does not exist.
++  */
++#include 
++#endif
+ 
+ static int interval = 0; /* display absolute time by default */
+ static int quiet = 0; /* decode Q.2931 messages by default */

Added: linux-atm-man-pages.patch
===
--- linux-atm-man-pages.patch   (rev 0)
+++ linux-atm-man-pages.patch   2021-08-21 09:34:59 UTC (rev 422440)
@@ -0,0 +1,45 @@
+diff -up linux-atm-2.5.1/src/led/zeppelin.8.fixman 
linux-atm-2.5.1/src/led/zeppelin.8
+--- linux-atm-2.5.1/src/led/zeppelin.8.fixman  2003-05-02 19:35:04.0 
+0200
 linux-atm-2.5.1/src/led/zeppelin.8 2010-10-13 12:58:18.0 +0200
+@@ -99,7 +99,7 @@ Ring and ATM parts of the ELAN, so using
+ recommended. Token Ring support has received less testing than its
+ Ethernet counterpart.
+ .SH FILES
+-.IP \fI/var/run/lec[interface number].pid\fP
++\fI/var/run/lec[interface number].pid\fP
+ The file containing the process id of zeppelin.
+ .SH BUGS
+ John Bonham died 1980 and Led Zeppelin broke.
+diff -up linux-atm-2.5.1/src/mpoad/mpcd.8.fixman 
linux-atm-2.5.1/src/mpoad/mpcd.8
+--- linux-atm-2.5.1/src/mpoad/mpcd.8.fixman2001-10-10 00:33:07.0 
+0200
 linux-atm-2.5.1/src/mpoad/mpcd.8   2010-10-13 12:59:14.0 +0200

[arch-commits] Commit in libreoffice-fresh-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 09:30:04
  Author: andyrtr
Revision: 422439

archrelease: copy trunk to extra-any

Added:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD
(from rev 422438, libreoffice-fresh-i18n/trunk/PKGBUILD)
Deleted:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD | 1142 ++---
 1 file changed, 571 insertions(+), 571 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 09:28:50 UTC (rev 422438)
+++ PKGBUILD2021-08-21 09:30:04 UTC (rev 422439)
@@ -1,571 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=libreoffice-fresh-i18n
-
-pkgver=7.1.5
-pkgrel=1
-_rcver=${pkgver}.2
-#_oodlver=${pkgver}.0.beta1
-_oodlver=${pkgver}
-
-arch=('any')
-url="https://www.documentfoundation.org;
-license=('LGPL')
-
-#https://download.documentfoundation.org/mirrors/all.html
-
-_url="https://download.documentfoundation.org/libreoffice/stable;
-#_url="https://download.documentfoundation.org/libreoffice/testing;
-#_url="https://dev-builds.libreoffice.org/pre-releases;
-
-
-#_url+="/${pkgver}-rc2/rpm/x86_64"
-#_url+="/${pkgver}/rpm/x86_64"
-_url+="/${pkgver}/rpm/x86_64"
-#_url+="/rpm/x86_64"
-
-# https://wiki.documentfoundation.org/Language_Teams
-# https://wiki.documentfoundation.org/Language/Support
-
-_languages=(
-  'af"Afrikaans"   0'
-  'am"Amharic" 1'
-  'ar"Arabic"  1'
-  'as"Assamese (India)"0'
-  'ast   "Asturianu"   1'
-  'be"Belarusian"  0'
-  'bg"Bulgarian"   1'
-  'bn-IN "Bengali (India)" 1'
-  'bn"Bengali" 1'
-  'bo"Tibetan" 1'
-  'br"Breton"  0'
-  'brx   "Bodo"0'
-  'bs"Bosnian" 1'
-  'ca-valencia   "Catalan (Valencia)"  1'
-  'ca"Catalan" 1'
-  'ckb   "Central Kurdish / Soranî‎ / سۆرانی " 0'
-  'cs"Czech"   1'
-  'cy"Welsh"   0'
-  'da"Danish"  1'
-  'de"German"  1'
-  'dgo   "Dogri"   0'
-  'dsb   "Sorbian: Lower Sorbian / Dolnoserbski" 0'
-  'dz"Dzongkha"1'
-  'el"Greek"   1'
-  'en-GB "English (GB)"1'
-  'en-ZA "English (ZA)"1'
-  'eo"Esperanto"   1'
-  'es"Spanish" 1'
-  'et"Estonian"1'
-  'eu"Basque"  1'
-  'fa"Persian" 0'
-  'fi"Finnish" 1'
-  'fr"French"  1'
-  'fur   "Friulian / Friulan"  0'
-  'fy"Frisian / West Frisian / Frysk / Fries" 0'
-  'ga"Irish"   0'
-  'gd"Gaelic (Scottish)"   0'
-  'gl"Galician"1'
-  'gu"Gujarati"1'
-  'gug   "Guarani" 0'
-  'he"Hebrew"  1'
-  'hi"Hindi"   1'
-  'hr"Croatian"1'
-  'hsb   "Sorbian: Upper Sorbian / Hornjoserbšćina" 0'
-  'hu"Hungarian"   1'
-  'id"Indonesian"  1'
-  'is"Icelandic"   1'
-  'it"Italian" 1'
-  'ja"Japanese"1'
-  'ka"Georgian"1'
-  'kab   "Kabyle / Kabylian / Taqbaylit / Taqbaylit / Tazwawt" 0'
-  'kk"Kazakh"  0'
-  'km"Khmer (Cambodia)"1'
-  'kmr-Latn  "Kurdish" 0'
-  'kn"Kannada" 0'
-  'ko"Korean"  1'
-  'kok   "Konkani" 0'
-  'ks"Kashmiri"0'
-  'lb"Luxembourgish"   0'
-  'lo"Lao" 1'
-  'lt"Lithuanian"  1'
-  'lv"Latvian" 1'
-  'mai   "Maithili"0'
-  'mk"Macedonian"  1'
-  'ml"Malayalam"   0'
-  'mn"Mongolian"   0'
-  'mni   "Manipuri"0'
-  'mr"Marathi" 0'
-  'my"Burmese" 0'
-  'nb"Norwegian Bokmal"1'
-  'ne"Nepali"  1'
-  'nl"Dutch"   1'
-  'nn"Norwegian Nynorsk"   1'
-  'nr"Ndebele (South)" 

[arch-commits] Commit in libreoffice-fresh-i18n/trunk (PKGBUILD)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 09:28:50
  Author: andyrtr
Revision: 422438

upgpkg: libreoffice-fresh-i18n 7.2.0-1: upstream update 7.2.0

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  368 ++---
 1 file changed, 184 insertions(+), 184 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 09:28:25 UTC (rev 422437)
+++ PKGBUILD2021-08-21 09:28:50 UTC (rev 422438)
@@ -3,9 +3,9 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=7.1.5
+pkgver=7.2.0
 pkgrel=1
-_rcver=${pkgver}.2
+_rcver=${pkgver}.4
 #_oodlver=${pkgver}.0.beta1
 _oodlver=${pkgver}
 
@@ -149,369 +149,369 @@
   'zu"Zulu"0'
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # "LibreOffice Build 
Team (CODE SIGNING KEY) "
-sha256sums=('28cbab1cc54acc546a7c1a18f8efbc23d4b4ee75daab841867a4ebaaaf737d16'
+sha256sums=('e57b28a7950430a83d65a9ce1e5e668226bcd3762fd8b556c8fb1663d01d5dd3'
 'SKIP'
-'8bd002661f855ab52b0f063613c8c78bdbd9607d5e304124345705dcef030875'
+'850af6d417349684418eb13616b02494e332ee12557af9c42b0fcf4351d71c34'
 'SKIP'
-'1c31b2c9a71dc0351ae4c45d93b41f4ff33f4df71419a5a5701788ff5b16c9fd'
+'fb4980d42058a44cf4cbc7c60a6cb9aa6567e9447654dc8e1237072794e23732'
 'SKIP'
-'404f8595d00e5a45e99371bcf6a62359cfcaeece073cbdc35859104f51018e70'
+'ca73edc54c74fe349f459a5bac39bc9957bfedfa7ca8b64cecef4722362039ca'
 'SKIP'
-'d0845c9ee5d8779f2276e6f0dd1215d51078eaed285b94d5e53fce8b1a29d062'
+'891419582a93b64e46f2c290892fbf701327dbe77200efac749325dc7e365c48'
 'SKIP'
-'0320e7ebd6ef3c2504e89d96e2d7327c5d175a44b8c569a442d7ae2a2612f050'
+'07698acb7a3577f25e0dfea6a4266ac5f42da0729eac2a7bad40a9b943c7bd51'
 'SKIP'
-'d3c082d15f9352b0ed3080b932618a0918e4bf01818660e7f05ff52c473b7cd5'
+'a5e6593ea174be1a67f5b2c0a27d6ab87e22d30c15641165ebba1fc4dc4ecbb5'
 'SKIP'
-'acc1e2a8a90286fc3ad2cba18cd2af575a23e2bce5b1fe32c87d65e5d381667b'
+'12b0a00251c04648a5346cee5d3101cd30d27bebb9f78a49d7acf5a13e601fd7'
 'SKIP'
-'2db97d4fd9bde250e6ef6ccc8bab48c8f8fa5eebeb016fe93ff096644e60b60e'
+'bc70c7f650509290f23ebceb9b7b1c4195a98933587c5f35ba2d675d06329697'
 'SKIP'
-'d31a39e4057a9cc6bc3a4440e133f769fc1ab7da0b883e1fd604c3e0eb2ed227'
+'7b227ab321fbbc4b8aec2715c6df48970801ca753b9be3149380fd5a196665ff'
 'SKIP'
-'a69abce5f59989918d1943f5afbdafd17d80e854d8b993312e8b1c9097a956ed'
+'20edb24b03e9512d0e2bc8efe05f44f7852354fd9a96ec9f35fd5fb0ebd37cac'
 'SKIP'
-'870494e519a10539374a1058218f36e6f70f13dfe18b265aa9c91b590f51fb54'
+'936aefadcee98030b602d76deab4f606ae36c3bad2fcdb7ebad6183ae5447ca5'
 'SKIP'
-'157c585e7fb0c18bbfc687978af928b016e4eb46307161dac15803facf3eb2de'
+'766765468034072bf505277d91b200598b9d5325f6443a4bbba8bdc6a955f2bf'
 'SKIP'
-'a649f52b5963f8222b01f0c28b6f97f3729e9c2cd0d099222b16819126a06171'
+'4c884dfeae20fb7a73abf85386e892ce359439d86cc3efb297eaf147d0e84f28'
 'SKIP'
-'fc13e1472baf76324c149f3a372d11bbc5024bbd1866f4b16210c39b99748df5'
+'18b42cd3913dfe8b4f6d7f3aa4fe5b5df082fe4b878976cffa32e48185e5649f'
 'SKIP'
-'9e80012079b94617da9d0749bb96299006bbe43dab242055c16b482271bcdf94'
+'fd711c34f492e7b6329772eae5a61d2274880b3eda8da199556b9702444df3c8'
 'SKIP'
-'482a8dd5a1df41aa02ce2ea8dc873ca2f4139488bbf2c2cc14011ef079f2ea67'
+'ca2c5c7a82ca0c28d8d88f36d3e6c6e1c72aafa5367fad47938e002ae92dd95c'
 'SKIP'
-'5aa5a06f21d6983989593a928af9f1883e176f3b219f5db4d12ec93acf703f76'
+'c961dd88404e5a230761c02c7301601915d470a46302648fbe8c6621fb254cad'
 'SKIP'
-'170626086802798e9b358c3405468228175b98c02dc56d5833ffae2175dfdf47'
+'3851a12cd975dadab58d45ce37097e81ddd3054a001eb6703bf94817594bdfeb'
 'SKIP'
-'6ef18244028b677ec89cca1f1d5ea29e523984e790f6125b1b415cc0ba495fea'
+'5004691eb9a69ae1a4ff6126c85f9ac9d0dc58cdb67295d6a3aa813123f4f30f'
 'SKIP'
-'ef3ae8d646aa9bf44cb8d9b5ddb51b9f91268b502531fa9d2562d742d983742f'
+'a8938186d22faf1df3c54d569ed4dfa81d9041985be8d421a65e15103e1c1c48'
 'SKIP'
-'60a7fae53c0cd856c5357ad1962f2a940274478d5355dd989cb10766d2c2f1bc'
+'830fbe60f37f36aa9030704b8bab9093fb2f90e7518758ab912c203a3df3252c'
 'SKIP'
-'e973cea071197bafa9d7b0d8184bf49d3b91dd2d7b0b4d653fe99c0ddafda43d'
+

[arch-commits] Commit in freetype2/repos/testing-x86_64 (18 files)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 09:28:25
  Author: andyrtr
Revision: 422437

archrelease: copy trunk to testing-x86_64

Added:
  freetype2/repos/testing-x86_64/0001-Enable-table-validation-modules.patch
(from rev 422436, 
freetype2/trunk/0001-Enable-table-validation-modules.patch)
  freetype2/repos/testing-x86_64/0002-Enable-subpixel-rendering.patch
(from rev 422436, freetype2/trunk/0002-Enable-subpixel-rendering.patch)
  freetype2/repos/testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch
(from rev 422436, 
freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch)
  freetype2/repos/testing-x86_64/0004-Enable-long-PCF-family-names.patch
(from rev 422436, freetype2/trunk/0004-Enable-long-PCF-family-names.patch)
  freetype2/repos/testing-x86_64/0005-ft2-demos-meson-fixes.patch
(from rev 422436, freetype2/trunk/0005-ft2-demos-meson-fixes.patch)
  
freetype2/repos/testing-x86_64/0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch
(from rev 422436, 
freetype2/trunk/0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch)
  
freetype2/repos/testing-x86_64/0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch
(from rev 422436, 
freetype2/trunk/0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch)
  freetype2/repos/testing-x86_64/PKGBUILD
(from rev 422436, freetype2/trunk/PKGBUILD)
  freetype2/repos/testing-x86_64/freetype2.install
(from rev 422436, freetype2/trunk/freetype2.install)
  freetype2/repos/testing-x86_64/freetype2.sh
(from rev 422436, freetype2/trunk/freetype2.sh)
Deleted:
  freetype2/repos/testing-x86_64/0001-Enable-table-validation-modules.patch
  freetype2/repos/testing-x86_64/0002-Enable-subpixel-rendering.patch
  freetype2/repos/testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch
  freetype2/repos/testing-x86_64/0004-Enable-long-PCF-family-names.patch
  freetype2/repos/testing-x86_64/0005-ft2-demos-meson-fixes.patch
  freetype2/repos/testing-x86_64/PKGBUILD
  freetype2/repos/testing-x86_64/freetype2.install
  freetype2/repos/testing-x86_64/freetype2.sh

---+
 0001-Enable-table-validation-modules.patch|   84 +--
 0002-Enable-subpixel-rendering.patch  |   44 -
 0003-Enable-infinality-subpixel-hinting.patch |   48 -
 0004-Enable-long-PCF-family-names.patch   |   44 -
 0005-ft2-demos-meson-fixes.patch  |  300 ++--
 0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch |   35 +
 0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch |   41 +
 PKGBUILD  |  214 
 freetype2.install |   16 
 freetype2.sh  |   24 
 10 files changed, 467 insertions(+), 383 deletions(-)

Deleted: 0001-Enable-table-validation-modules.patch
===
--- 0001-Enable-table-validation-modules.patch  2021-08-21 09:28:08 UTC (rev 
422436)
+++ 0001-Enable-table-validation-modules.patch  2021-08-21 09:28:25 UTC (rev 
422437)
@@ -1,42 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Tue, 23 Jun 2015 08:40:29 +0200
-Subject: [PATCH] Enable table validation modules
-

- modules.cfg | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/modules.cfg b/modules.cfg
-index 30f7fac45a..a9a4703989 100644
 a/modules.cfg
-+++ b/modules.cfg
-@@ -114,26 +114,26 @@ AUX_MODULES += cache
- 
- # TrueType GX/AAT table validation.  Needs `ftgxval.c' below.
- #
--# AUX_MODULES += gxvalid
-+AUX_MODULES += gxvalid
- 
- # Support for streams compressed with gzip (files with suffix .gz).
- #
- # See include/freetype/ftgzip.h for the API.
- AUX_MODULES += gzip
- 
- # Support for streams compressed with LZW (files with suffix .Z).
- #
- # See include/freetype/ftlzw.h for the API.
- AUX_MODULES += lzw
- 
- # Support for streams compressed with bzip2 (files with suffix .bz2).
- #
- # See include/freetype/ftbzip2.h for the API.
- AUX_MODULES += bzip2
- 
- # OpenType table validation.  Needs `ftotval.c' below.
- #
--# AUX_MODULES += otvalid
-+AUX_MODULES += otvalid
- 
- # Auxiliary PostScript driver component to share common code.
- #

Copied: 
freetype2/repos/testing-x86_64/0001-Enable-table-validation-modules.patch (from 
rev 422436, freetype2/trunk/0001-Enable-table-validation-modules.patch)
===
--- 0001-Enable-table-validation-modules.patch  (rev 0)
+++ 0001-Enable-table-validation-modules.patch  2021-08-21 09:28:25 UTC (rev 
422437)
@@ -0,0 +1,42 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 23 Jun 2015 08:40:29 +0200
+Subject: [PATCH] Enable table 

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

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 09:28:08
  Author: andyrtr
Revision: 422436

upgpkg: freetype2 2.11.0-3: fix render bitmap fonts

Added:
  freetype2/trunk/0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch
  freetype2/trunk/0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch
Modified:
  freetype2/trunk/PKGBUILD

---+
 0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch |   35 ++
 0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch |   41 
 PKGBUILD  |   10 ++
 3 files changed, 85 insertions(+), 1 deletion(-)

Added: 0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch
===
--- 0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch   
(rev 0)
+++ 0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch   2021-08-21 
09:28:08 UTC (rev 422436)
@@ -0,0 +1,35 @@
+From d7f649f283763af099256eb2d5e326df601c3e76 Mon Sep 17 00:00:00 2001
+From: Anuj Verma 
+Date: Mon, 16 Aug 2021 07:48:09 +0530
+Subject: [PATCH] [sdf] Return `FT_Err_Ok` while trying to render bitmap.
+
+  * src/sdf/ftsdfrend.c (ft_bsdf_render): Return OK if the slot is
+  a bitmap and the render mode is anything other than `FT_RENDER_MODE_SDF`.
+  This is for compatibility reasons.
+
+  Fixes issue #1076
+---
+ src/sdf/ftsdfrend.c | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/src/sdf/ftsdfrend.c b/src/sdf/ftsdfrend.c
+index 30f2e62a4..5686c0bf5 100644
+--- a/src/sdf/ftsdfrend.c
 b/src/sdf/ftsdfrend.c
+@@ -502,8 +502,11 @@
+ /* check whether render mode is correct */
+ if ( mode != FT_RENDER_MODE_SDF )
+ {
+-  error = FT_THROW( Cannot_Render_Glyph );
+-  goto Exit;
++  FT_TRACE0(( "ft_bsdf_render: trying to render bitmap\n" ));
++
++  /* return OK since the slot is already a bitmap */
++  error = FT_Err_Ok;
++  return error;
+ }
+ 
+ if ( origin )
+-- 
+GitLab
+

Added: 0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch
===
--- 0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch   
(rev 0)
+++ 0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch   2021-08-21 
09:28:08 UTC (rev 422436)
@@ -0,0 +1,41 @@
+From 6e9d8d314ff6ab23177b9162c0b96616460bb84e Mon Sep 17 00:00:00 2001
+From: Alexei Podtelezhnikov 
+Date: Fri, 20 Aug 2021 16:01:32 -0400
+Subject: [PATCH] [base] Restore quiet no-op rendering of bitmap glyphs.
+
+Fixes #1076.
+
+* src/base/ftobjs.c (FT_Render_Glyph_Internal): Discard an error when
+rendering a bitmap glyph.
+---
+ src/base/ftobjs.c | 7 ++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
+index 342ac4a27..7b40c6421 100644
+--- a/src/base/ftobjs.c
 b/src/base/ftobjs.c
+@@ -4703,7 +4703,7 @@
+ else
+   renderer = FT_Lookup_Renderer( library, slot->format,  );
+ 
+-error = FT_ERR( Unimplemented_Feature );
++error = FT_ERR( Cannot_Render_Glyph );
+ while ( renderer )
+ {
+   error = renderer->render( renderer, slot, render_mode, NULL );
+@@ -4719,6 +4719,11 @@
+   /* format.   */
+   renderer = FT_Lookup_Renderer( library, slot->format,  );
+ }
++
++/* it is not an error if we cannot render a bitmat glyph */
++if ( FT_ERR_EQ( error, Cannot_Render_Glyph ) &&
++ slot->format == FT_GLYPH_FORMAT_BITMAP  )
++  error = FT_Err_Ok;
+   }
+ }
+ 
+-- 
+GitLab
+

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 08:53:15 UTC (rev 422435)
+++ PKGBUILD2021-08-21 09:28:08 UTC (rev 422436)
@@ -4,7 +4,7 @@
 pkgbase=freetype2
 pkgname=(freetype2 freetype2-demos freetype2-docs)
 pkgver=2.11.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Font rasterization library"
 url="https://www.freetype.org/;
 arch=(x86_64)
@@ -21,6 +21,8 @@
 0003-Enable-infinality-subpixel-hinting.patch
 0004-Enable-long-PCF-family-names.patch
 0005-ft2-demos-meson-fixes.patch
+0006-Return_FT_Err_Ok_while_trying_to_render_bitmap.patch
+0007-Restore_quiet_no-op_rendering_of_bitmap_glyphs.patch
 freetype2.sh)
 sha256sums=('8bee39bd3968c4804b70614a0a3ad597299ad0e824bc8aad5ce8aaf48067bde7'
 'SKIP'
@@ -33,6 +35,8 @@
 '561d2f2503d180b796f868470612610f6d7fcb34efa0620ecab38fd39002e27a'
 '9c068a984e7b9a27ff9e709839d522b66815ac4e8c7a5bd4ea0224335f7f2ef6'
 '7b1268c229414bc75c50fa826a0f8d391c15568742bca10afd8c12f0c61e5597'
+'2b13b8cc9acc3e56be6b0f8102d648864227bf93637bc956d5052c77c8509782'
+'21a2d243bc6b44d1cdb88ef29af2bd5ceda8d0faaf928bdc2c078a474ddc61f1'
 

[arch-commits] Commit in marked0.8/trunk (PKGBUILD)

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 08:59:38
  Author: felixonmars
Revision: 1004133

fix building with new npm

Modified:
  marked0.8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 08:58:29 UTC (rev 1004132)
+++ PKGBUILD2021-08-21 08:59:38 UTC (rev 1004133)
@@ -17,7 +17,7 @@
 
sha512sums=('106c3311e09c2e78855f9d43853a664e89be75203f306fce0540e39d6b476c49e3007d7cd15cd4780c3ea04e3e66ff82a18056c9195839347437c48ef51d4f57')
 
 package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_pkgname-$pkgver.tgz
+  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$_pkgname-$pkgver.tgz
 
   # Non-deterministic race in npm gives 777 permissions to random directories.
   # See https://github.com/npm/npm/issues/9359 for details.



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 08:58:29
  Author: felixonmars
Revision: 1004132

fix building with new npm

Modified:
  marked-man/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 08:38:30 UTC (rev 1004131)
+++ PKGBUILD2021-08-21 08:58:29 UTC (rev 1004132)
@@ -14,7 +14,7 @@
 
sha512sums=('cf12b91388dbb804402dcf9f21401a9ccda78d51a7addf58bcaaeaa031d48365f034b2628e8dfd133308839f4b79c1c11ec20736d3ea7a9aa7269e1298bfc456')
 
 package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
 
   # Non-deterministic race in npm gives 777 permissions to random directories.
   # See https://github.com/npm/npm/issues/9359 for details.



[arch-commits] Commit in libreoffice-still/repos/extra-x86_64 (11 files)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 08:53:15
  Author: andyrtr
Revision: 422435

archrelease: copy trunk to extra-x86_64

Added:
  libreoffice-still/repos/extra-x86_64/PKGBUILD
(from rev 422434, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/extra-x86_64/libreoffice-still.csh
(from rev 422434, libreoffice-still/trunk/libreoffice-still.csh)
  libreoffice-still/repos/extra-x86_64/libreoffice-still.sh
(from rev 422434, libreoffice-still/trunk/libreoffice-still.sh)
  
libreoffice-still/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 422434, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-still/repos/extra-x86_64/soffice-template.desktop.in
(from rev 422434, libreoffice-still/trunk/soffice-template.desktop.in)
Deleted:
  libreoffice-still/repos/extra-x86_64/PKGBUILD
  libreoffice-still/repos/extra-x86_64/liborcus-0.16.diff
  libreoffice-still/repos/extra-x86_64/libreoffice-still.csh
  libreoffice-still/repos/extra-x86_64/libreoffice-still.sh
  
libreoffice-still/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice-still/repos/extra-x86_64/soffice-template.desktop.in

--+
 PKGBUILD |  767 +-
 liborcus-0.16.diff   | 1255 -
 libreoffice-still.csh|   14 
 libreoffice-still.sh |   14 
 make-pyuno-work-with-system-wide-module-install.diff |   36 
 soffice-template.desktop.in  |   14 
 6 files changed, 420 insertions(+), 1680 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 08:53:02 UTC (rev 422434)
+++ PKGBUILD2021-08-21 08:53:15 UTC (rev 422435)
@@ -1,386 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer: Bartłomiej Piotrowski 
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_default_client_id=413772536636.apps.googleusercontent.com
-_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
-
-pkgbase=libreoffice-still
-pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=7.0.6.2
-pkgver=7.0.6
-pkgrel=4
-arch=('x86_64')
-license=('LGPL3')
-url="https://www.libreoffice.org/;
-makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.7' 'libwpd>=0.9.2' 
'libwps'
-   'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
-   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu' 
-   'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
-   'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'gst-plugins-base-libs'
-   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
-   'gperf' 'gtk3' 'qt5-base' 'plasma-framework' 'cppunit' 'beanshell' 
'clucene'
-   'junit' 'libmythes' 'libwpg'  'java-environment=11' 'postgresql-libs' 
'mariadb-libs' 'libgl'
-   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
-   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
-   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
-   'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
-   'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
-   'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
-   'libffi'
-)
-
-_mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
-#_mirror="https://dev-builds.libreoffice.org/pre-releases/src;
-_additional_source_url="https://dev-www.libreoffice.org/src;
-_additional_source_url2="https://dev-www.libreoffice.org/extern;
-source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
-   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
-   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # 
keep old bundled version, new system version ftbs
-   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
-   
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   ${_additional_source_url}/language-subtag-registry-2019-04-03.tar.bz2
-   
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
-   
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
-   
${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   ${_additional_source_url}/pdfium-4306.tar.bz2
-   ${_additional_source_url}/dtoa-20180411.tgz
-   

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD liborcus-0.16.diff)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 08:53:02
  Author: andyrtr
Revision: 422434

upgpkg: libreoffice-still 7.1.5-1: upstream update 7.1.5

Modified:
  libreoffice-still/trunk/PKGBUILD
Deleted:
  libreoffice-still/trunk/liborcus-0.16.diff

+
 PKGBUILD   |   37 -
 liborcus-0.16.diff | 1255 ---
 2 files changed, 16 insertions(+), 1276 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 08:32:24 UTC (rev 422433)
+++ PKGBUILD2021-08-21 08:53:02 UTC (rev 422434)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=7.0.6.2
-pkgver=7.0.6
-pkgrel=4
+_LOver=7.1.5.2
+pkgver=7.1.5
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -31,7 +31,7 @@
'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
-   'libffi'
+   'libffi' 'box2d' 'git'
 )
 
 _mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
@@ -52,15 +52,14 @@
${_additional_source_url}/lxml-4.1.1.tgz
${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
${_additional_source_url}/QR-Code-generator-1.4.0.tar.gz
-   
${_additional_source_url}/skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz
+   
${_additional_source_url}/skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite

${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
 # for test suite
-   
${_additional_source_url2}/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
+   
${_additional_source_url2}/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
soffice-template.desktop.in
-   libreoffice-still.sh libreoffice-still.csh
-liborcus-0.16.diff)
+   libreoffice-still.sh libreoffice-still.csh)
 noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
@@ -74,18 +73,18 @@
lxml-4.1.1.tgz
Firebird-3.0.0.32483-0.tar.bz2
QR-Code-generator-1.4.0.tar.gz
-   skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz
+   skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar  # 
for test suite

odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
  # for test suite
-   
884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
+   
f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('96a1f7e7c71957bcf0edf96adb9582b1b60d6a1bbe77976f9eaa7cf40c6b612e'
+sha256sums=('aeaf30367665bdfdcf780d2b28e304352255de778db41d32d12cd77d5b2385ce'
 'SKIP'
-'4dd84e601f7f895875a041c3bd6d5544758c8bedca7d321121e8d56c93a4bbf6'
+'ca042962047e11ea5634ebdcb0254083f2095aa83e9fa32fbbd6ab99e1ea30d4'
 'SKIP'
-'f2e13abf988a9fc44bf45a3ffad5d79877d045594a2a530c8df7c2104636c711'
+'b86740debc717bdeca918ba068ead6c7a16e70a232eeac43bbb31e2a02d0c559'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'
@@ -100,16 +99,15 @@
 '940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e'
 '6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860'
 'fcdf9fd69fde07ae4dca2351d84271a9de8093002f733b77c70f52f1630f6e4a'
-'3294877fa2b61b220d98a0f7bfc11325429b13edd2cf455444c703ee3a14d760'
+'f293656a15342a53bb407b932fc907c6894178a162f09728bd383e24d84b1301'
 'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
 '984f2a479df79e27e7b01a5815ac53ae64e07746b882262d8a64566494515504'
-'884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc'
+'f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 

[arch-commits] Commit in libreoffice-still-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 08:32:24
  Author: andyrtr
Revision: 422433

archrelease: copy trunk to extra-any

Added:
  libreoffice-still-i18n/repos/extra-any/PKGBUILD
(from rev 422432, libreoffice-still-i18n/trunk/PKGBUILD)
Deleted:
  libreoffice-still-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD | 1142 ++---
 1 file changed, 571 insertions(+), 571 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 08:31:11 UTC (rev 422432)
+++ PKGBUILD2021-08-21 08:32:24 UTC (rev 422433)
@@ -1,571 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=libreoffice-still-i18n
-
-pkgver=7.0.6
-pkgrel=1
-_rcver=${pkgver}.2
-#_oodlver=${pkgver}.0.beta1
-_oodlver=${pkgver}
-
-arch=('any')
-url="https://www.documentfoundation.org;
-license=('LGPL')
-
-#https://download.documentfoundation.org/mirrors/all.html
-
-_url="https://download.documentfoundation.org/libreoffice/stable;
-#_url="https://download.documentfoundation.org/libreoffice/testing;
-#_url="https://dev-builds.libreoffice.org/pre-releases;
-
-
-#_url+="/${pkgver}-rc2/rpm/x86_64"
-#_url+="/${pkgver}/rpm/x86_64"
-_url+="/${pkgver}/rpm/x86_64"
-#_url+="/rpm/x86_64"
-
-# https://wiki.documentfoundation.org/Language_Teams
-# https://wiki.documentfoundation.org/Language/Support
-
-_languages=(
-  'af"Afrikaans"   0'
-  'am"Amharic" 1'
-  'ar"Arabic"  1'
-  'as"Assamese (India)"0'
-  'ast   "Asturianu"   1'
-  'be"Belarusian"  0'
-  'bg"Bulgarian"   1'
-  'bn"Bengali" 1'
-  'bn-IN "Bengali (India)" 1'
-  'bo"Tibetan" 1'
-  'br"Breton"  0'
-  'brx   "Bodo"0'
-  'bs"Bosnian" 1'
-  'ca"Catalan" 1'
-  'ca-valencia   "Catalan (Valencia)"  1'
-  'ckb   "Central Kurdish / Soranî‎ / سۆرانی " 0'
-  'cs"Czech"   1'
-  'cy"Welsh"   0'
-  'da"Danish"  1'
-  'de"German"  1'
-  'dgo   "Dogri"   0'
-  'dsb   "Sorbian: Lower Sorbian / Dolnoserbski" 0'
-  'dz"Dzongkha"1'
-  'el"Greek"   1'
-  'en-GB "English (GB)"1'
-  'en-ZA "English (ZA)"1'
-  'eo"Esperanto"   1'
-  'es"Spanish" 1'
-  'et"Estonian"1'
-  'eu"Basque"  1'
-  'fa"Persian" 0'
-  'fi"Finnish" 1'
-  'fr"French"  1'
-  'fur   "Friulian / Friulan"  0'
-  'fy"Frisian / West Frisian / Frysk / Fries" 0'
-  'ga"Irish"   0'
-  'gd"Gaelic (Scottish)"   0'
-  'gl"Galician"1'
-  'gu"Gujarati"1'
-  'gug   "Guarani" 0'
-  'he"Hebrew"  1'
-  'hi"Hindi"   1'
-  'hr"Croatian"1'
-  'hsb   "Sorbian: Upper Sorbian / Hornjoserbšćina" 0'
-  'hu"Hungarian"   1'
-  'id"Indonesian"  1'
-  'is"Icelandic"   1'
-  'it"Italian" 1'
-  'ja"Japanese"1'
-  'ka"Georgian"1'
-  'kab   "Kabyle / Kabylian / Taqbaylit / Taqbaylit / Tazwawt" 0'
-  'kk"Kazakh"  0'
-  'km"Khmer (Cambodia)"1'
-  'kmr-Latn  "Kurdish" 0'
-  'kn"Kannada" 0'
-  'ko"Korean"  1'
-  'kok   "Konkani" 0'
-  'ks"Kashmiri"0'
-  'lb"Luxembourgish"   0'
-  'lo"Lao" 1'
-  'lt"Lithuanian"  1'
-  'lv"Latvian" 1'
-  'mai   "Maithili"0'
-  'mk"Macedonian"  1'
-  'ml"Malayalam"   0'
-  'mn"Mongolian"   0'
-  'mni   "Manipuri"0'
-  'mr"Marathi" 0'
-  'my"Burmese" 0'
-  'nb"Norwegian Bokmal"1'
-  'ne"Nepali"  1'
-  'nl"Dutch"   1'
-  'nn"Norwegian Nynorsk"   1'
-  'nr"Ndebele (South)" 

[arch-commits] Commit in libreoffice-still-i18n/trunk (PKGBUILD)

2021-08-21 Thread Andreas Radke via arch-commits
Date: Saturday, August 21, 2021 @ 08:31:11
  Author: andyrtr
Revision: 422432

upgpkg: libreoffice-still-i18n 7.1.5-1: upstream update 7.1.5

Modified:
  libreoffice-still-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  374 ++---
 1 file changed, 187 insertions(+), 187 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 05:36:58 UTC (rev 422431)
+++ PKGBUILD2021-08-21 08:31:11 UTC (rev 422432)
@@ -3,7 +3,7 @@
 
 pkgbase=libreoffice-still-i18n
 
-pkgver=7.0.6
+pkgver=7.1.5
 pkgrel=1
 _rcver=${pkgver}.2
 #_oodlver=${pkgver}.0.beta1
@@ -36,14 +36,14 @@
   'ast   "Asturianu"   1'
   'be"Belarusian"  0'
   'bg"Bulgarian"   1'
+  'bn-IN "Bengali (India)" 1'
   'bn"Bengali" 1'
-  'bn-IN "Bengali (India)" 1'
   'bo"Tibetan" 1'
   'br"Breton"  0'
   'brx   "Bodo"0'
   'bs"Bosnian" 1'
+  'ca-valencia   "Catalan (Valencia)"  1'
   'ca"Catalan" 1'
-  'ca-valencia   "Catalan (Valencia)"  1'
   'ckb   "Central Kurdish / Soranî‎ / سۆرانی " 0'
   'cs"Czech"   1'
   'cy"Welsh"   0'
@@ -109,8 +109,8 @@
   'or"Oriya"   0'
   'pa-IN "Punjabi (India)" 0'
   'pl"Polish"  1'
+  'pt-BR "Portuguese (Brasil)" 1'
   'pt"Portuguese"  1'
-  'pt-BR "Portuguese (Brasil)" 1'
   'ro"Romanian"1'
   'ru"Russian" 1'
   'rw"Kinyarwanda" 0'
@@ -122,8 +122,8 @@
   'sk"Slovak"  1'
   'sl"Slovenian"   1'
   'sq"Albanien"1'
+  'sr-Latn   "Serbian (Latin)" 0'
   'sr"Serbian" 0'
-  'sr-Latn   "Serbian (Latin)" 0'
   'ss"Swati"   0'
   'st"Southern Sotho"  0'
   'sv"Swedish" 1'
@@ -149,369 +149,369 @@
   'zu"Zulu"0'
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # "LibreOffice Build 
Team (CODE SIGNING KEY) "
-sha256sums=('ebb6a36f107945c546fc6872cae3c3a3f63894e96b45551331d0e7b26faf15cd'
+sha256sums=('28cbab1cc54acc546a7c1a18f8efbc23d4b4ee75daab841867a4ebaaaf737d16'
 'SKIP'
-'b015f45edffa81bffd1d343351802a05ff47e8b3084330925de5dd496f281558'
+'8bd002661f855ab52b0f063613c8c78bdbd9607d5e304124345705dcef030875'
 'SKIP'
-'79e9c8a9f4aeda5b2c75b43ee57674032fff6f103a0af1852bf954647c1d1901'
+'1c31b2c9a71dc0351ae4c45d93b41f4ff33f4df71419a5a5701788ff5b16c9fd'
 'SKIP'
-'ba7794e7af6a2e78d2919b5809de9940c7a6162b8f8569814b014fb21e0c1bbc'
+'404f8595d00e5a45e99371bcf6a62359cfcaeece073cbdc35859104f51018e70'
 'SKIP'
-'f59073918ff6b6ff8b4eeb943b4eb2ea85cdcb479285e7328753c929ef02855e'
+'d0845c9ee5d8779f2276e6f0dd1215d51078eaed285b94d5e53fce8b1a29d062'
 'SKIP'
-'b4dc317a2ae6d845f195bac25ce476297a284fe125b1f07d647dcdf4d5e303af'
+'0320e7ebd6ef3c2504e89d96e2d7327c5d175a44b8c569a442d7ae2a2612f050'
 'SKIP'
-'f49d450d844aced2baf811dbaa19953781771769ec155dceb359ca5abd79f85e'
+'d3c082d15f9352b0ed3080b932618a0918e4bf01818660e7f05ff52c473b7cd5'
 'SKIP'
-'d6205f288feb95c38791e6fd1f7c2a945eb0c40b4d6dfa5c3fee671884486b4c'
+'acc1e2a8a90286fc3ad2cba18cd2af575a23e2bce5b1fe32c87d65e5d381667b'
 'SKIP'
-'5481b6702200e4d8ddf15e07e774a3dad5566ef565e2a59bcdbdb973e0507c77'
+'2db97d4fd9bde250e6ef6ccc8bab48c8f8fa5eebeb016fe93ff096644e60b60e'
 'SKIP'
-'f65915840a8e8e1397d8a5f2783d96345ad16a4fc11b4b4ea6137fcdc7968553'
+'d31a39e4057a9cc6bc3a4440e133f769fc1ab7da0b883e1fd604c3e0eb2ed227'
 'SKIP'
-'f7b228f375e42a4657b63978d4d2e62e4d2a7212400b976a2c164f90b093cacc'
+'a69abce5f59989918d1943f5afbdafd17d80e854d8b993312e8b1c9097a956ed'
 'SKIP'
-'5dcb4e583b179cdfb12de8bffa71c9214dab33a6642913f80b850d896149b2ed'
+'870494e519a10539374a1058218f36e6f70f13dfe18b265aa9c91b590f51fb54'
 'SKIP'
-'22bae93ebe451a72ecb7e270fccf7c43dcc4c1e7e3ee5b1a53370ac75e3c5c4d'
+'157c585e7fb0c18bbfc687978af928b016e4eb46307161dac15803facf3eb2de'
 'SKIP'
-'e3d758ecb7a1b515366d16b88d103e5f34083893a204741e8fc2dc3591379312'
+

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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:47:31
  Author: felixonmars
Revision: 1004127

archrelease: copy trunk to community-x86_64

Added:
  cutefish-terminal/repos/community-x86_64/PKGBUILD
(from rev 1004126, cutefish-terminal/trunk/PKGBUILD)
Deleted:
  cutefish-terminal/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 07:47:24 UTC (rev 1004126)
+++ PKGBUILD2021-08-21 07:47:31 UTC (rev 1004127)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=cutefish-terminal
-pkgver=0.4
-pkgrel=1
-pkgdesc="A terminal emulator for Cutefish"
-arch=('x86_64')
-url="https://github.com/cutefishos/terminal;
-license=('GPL')
-groups=('cutefish')
-depends=('fishui' 'libcutefish' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'qt5-tools')
-source=("https://github.com/cutefishos/terminal/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('900d9419a63e91dc7841e7c39aa8acdd67f9bd6215bd0b4751c1ad5b025bf219eae90e041fd7b02fa4e3cb9ccd8093cee1e442db57479161fd890fd7fe28cc22')
-
-build() {
-  cd terminal-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd terminal-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cutefish-terminal/repos/community-x86_64/PKGBUILD (from rev 1004126, 
cutefish-terminal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 07:47:31 UTC (rev 1004127)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=cutefish-terminal
+pkgver=0.4
+pkgrel=2
+pkgdesc="A terminal emulator for Cutefish"
+arch=('x86_64')
+url="https://github.com/cutefishos/terminal;
+license=('GPL')
+groups=('cutefish')
+depends=('fishui' 'qt5-svg')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+source=("https://github.com/cutefishos/terminal/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('900d9419a63e91dc7841e7c39aa8acdd67f9bd6215bd0b4751c1ad5b025bf219eae90e041fd7b02fa4e3cb9ccd8093cee1e442db57479161fd890fd7fe28cc22')
+
+build() {
+  cd terminal-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd terminal-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:47:24
  Author: felixonmars
Revision: 1004126

upgpkg: cutefish-terminal 0.4-2: fix dependency

Modified:
  cutefish-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 07:45:18 UTC (rev 1004125)
+++ PKGBUILD2021-08-21 07:47:24 UTC (rev 1004126)
@@ -2,13 +2,13 @@
 
 pkgname=cutefish-terminal
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A terminal emulator for Cutefish"
 arch=('x86_64')
 url="https://github.com/cutefishos/terminal;
 license=('GPL')
 groups=('cutefish')
-depends=('fishui' 'libcutefish' 'qt5-svg')
+depends=('fishui' 'qt5-svg')
 makedepends=('extra-cmake-modules' 'qt5-tools')
 
source=("https://github.com/cutefishos/terminal/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('900d9419a63e91dc7841e7c39aa8acdd67f9bd6215bd0b4751c1ad5b025bf219eae90e041fd7b02fa4e3cb9ccd8093cee1e442db57479161fd890fd7fe28cc22')



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

2021-08-21 Thread Caleb Maclennan via arch-commits
Date: Saturday, August 21, 2021 @ 07:45:18
  Author: alerque
Revision: 1004125

archrelease: copy trunk to community-testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 07:44:19 UTC (rev 1004124)
+++ PKGBUILD2021-08-21 07:45:18 UTC (rev 1004125)
@@ -1,55 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Contributor: Angel Velasquez 
-# Contributor: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Alexander Fehr 
-
-_pyname=pylint
-pkgname=python-$_pyname
-pkgver=2.10.0
-pkgrel=1
-pkgdesc='Analyzes Python code looking for bugs and signs of poor quality'
-arch=(any)
-url=https://pylint.org
-license=(GPL)
-_pydeps=(appdirs
- astroid
- isort
- mccabe
- toml)
-depends=(python
- "${_pydeps[@]/#/python-}")
-makedepends=(python-setuptools
- python-sphinx)
-checkdepends=(mpdecimal
-  python-pytest)
-optdepends=('graphviz: Enable output formats other than dot or vcg'
-'tk: Pylint GUI')
-_archive="$_pyname-$pkgver"
-source=("https://github.com/PyCQA/pylint/archive/v$pkgver/pylint-$pkgver.tar.gz;)
-sha256sums=('8f34d8c0a8d57544d50b6e13a526dd1d1b7e3ab3d6528adeb3b3c6acd4763a78')
-
-prepare() {
-   cd "$_archive"
-   # Remove overly restrictive dependency pinning that ends up in runtime 
checks
-   sed -i -e '/>=/{s/>.*//;p}' setup.cfg
-}
-
-build() {
-   cd "$_archive"
-   python setup.py build
-   make PYTHONPATH="$PWD/build/lib" -C doc man
-}
-
-check() {
-   cd "$_archive"
-   PYTHONPATH="$PWD/build/lib" pytest \
-   --deselect tests/benchmark/test_baseline_benchmarks.py
-}
-
-package() {
-   cd "$_archive"
-   export PYTHONHASHSEED=0
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm0644 -t "$pkgdir/usr/share/man/man1/" doc/_build/man/*
-}

Copied: python-pylint/repos/community-testing-any/PKGBUILD (from rev 1004124, 
python-pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 07:45:18 UTC (rev 1004125)
@@ -0,0 +1,55 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Angel Velasquez 
+# Contributor: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Alexander Fehr 
+
+_pyname=pylint
+pkgname=python-$_pyname
+pkgver=2.10.1
+pkgrel=1
+pkgdesc='Analyzes Python code looking for bugs and signs of poor quality'
+arch=(any)
+url=https://pylint.org
+license=(GPL)
+_pydeps=(appdirs
+ astroid
+ isort
+ mccabe
+ toml)
+depends=(python
+ "${_pydeps[@]/#/python-}")
+makedepends=(python-setuptools
+ python-sphinx)
+checkdepends=(mpdecimal
+  python-pytest)
+optdepends=('graphviz: Enable output formats other than dot or vcg'
+'tk: Pylint GUI')
+_archive="$_pyname-$pkgver"
+source=("https://github.com/PyCQA/pylint/archive/v$pkgver/pylint-$pkgver.tar.gz;)
+sha256sums=('2355dd9d22467264c31a1699047d24d5a1d87bd8141d63ad1bd1e2d081ca4b2e')
+
+prepare() {
+   cd "$_archive"
+   # Remove overly restrictive dependency pinning that ends up in runtime 
checks
+   sed -i -e '/>=/{s/>.*//;p}' setup.cfg
+}
+
+build() {
+   cd "$_archive"
+   python setup.py build
+   make PYTHONPATH="$PWD/build/lib" -C doc man
+}
+
+check() {
+   cd "$_archive"
+   PYTHONPATH="$PWD/build/lib" pytest \
+   --deselect tests/benchmark/test_baseline_benchmarks.py
+}
+
+package() {
+   cd "$_archive"
+   export PYTHONHASHSEED=0
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm0644 -t "$pkgdir/usr/share/man/man1/" doc/_build/man/*
+}



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

2021-08-21 Thread Caleb Maclennan via arch-commits
Date: Saturday, August 21, 2021 @ 07:44:19
  Author: alerque
Revision: 1004124

upgpkg: python-pylint 2.10.1-1

Modified:
  python-pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 07:35:37 UTC (rev 1004123)
+++ PKGBUILD2021-08-21 07:44:19 UTC (rev 1004124)
@@ -6,7 +6,7 @@
 
 _pyname=pylint
 pkgname=python-$_pyname
-pkgver=2.10.0
+pkgver=2.10.1
 pkgrel=1
 pkgdesc='Analyzes Python code looking for bugs and signs of poor quality'
 arch=(any)
@@ -27,7 +27,7 @@
 'tk: Pylint GUI')
 _archive="$_pyname-$pkgver"
 
source=("https://github.com/PyCQA/pylint/archive/v$pkgver/pylint-$pkgver.tar.gz;)
-sha256sums=('8f34d8c0a8d57544d50b6e13a526dd1d1b7e3ab3d6528adeb3b3c6acd4763a78')
+sha256sums=('2355dd9d22467264c31a1699047d24d5a1d87bd8141d63ad1bd1e2d081ca4b2e')
 
 prepare() {
cd "$_archive"



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:35:37
  Author: felixonmars
Revision: 1004123

archrelease: copy trunk to community-x86_64

Added:
  cutefish-settings/repos/community-x86_64/PKGBUILD
(from rev 1004122, cutefish-settings/trunk/PKGBUILD)
Deleted:
  cutefish-settings/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 07:35:29 UTC (rev 1004122)
+++ PKGBUILD2021-08-21 07:35:37 UTC (rev 1004123)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=cutefish-settings
-pkgver=0.4
-pkgrel=1
-pkgdesc="System Settings application for Cutefish Desktop"
-arch=('x86_64')
-url="https://github.com/cutefishos/settings;
-license=('GPL')
-groups=('cutefish')
-depends=('fishui' 'fontconfig' 'freetype2' 'icu' 'kcoreaddons' 'libcutefish' 
'libxcursor' 'modemmanager-qt' 'networkmanager-qt')
-makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
-source=("https://github.com/cutefishos/settings/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('9864e522fd64d58a53ce1bbe2a7c810709d74fd729f70c029429912c6608f0435c8faad32db4a289bb68ca90af55e8f882407940475e654c93dc77ad90293cef')
-
-build() {
-  cd settings-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd settings-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cutefish-settings/repos/community-x86_64/PKGBUILD (from rev 1004122, 
cutefish-settings/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 07:35:37 UTC (rev 1004123)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=cutefish-settings
+pkgver=0.4
+pkgrel=2
+pkgdesc="System Settings application for Cutefish Desktop"
+arch=('x86_64')
+url="https://github.com/cutefishos/settings;
+license=('GPL')
+groups=('cutefish')
+depends=('fishui' 'fontconfig' 'freetype2' 'icu' 'kcoreaddons' 'libxcursor'
+ 'modemmanager-qt' 'networkmanager-qt'
+ # qml:
+ 'bluez-qt' 'bluedevil' 'libcutefish' 'qt5-quickcontrols')
+makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
+source=("https://github.com/cutefishos/settings/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('9864e522fd64d58a53ce1bbe2a7c810709d74fd729f70c029429912c6608f0435c8faad32db4a289bb68ca90af55e8f882407940475e654c93dc77ad90293cef')
+
+build() {
+  cd settings-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd settings-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:35:29
  Author: felixonmars
Revision: 1004122

upgpkg: cutefish-settings 0.4-2: fix dependency

Modified:
  cutefish-settings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 07:29:00 UTC (rev 1004121)
+++ PKGBUILD2021-08-21 07:35:29 UTC (rev 1004122)
@@ -2,13 +2,16 @@
 
 pkgname=cutefish-settings
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="System Settings application for Cutefish Desktop"
 arch=('x86_64')
 url="https://github.com/cutefishos/settings;
 license=('GPL')
 groups=('cutefish')
-depends=('fishui' 'fontconfig' 'freetype2' 'icu' 'kcoreaddons' 'libcutefish' 
'libxcursor' 'modemmanager-qt' 'networkmanager-qt')
+depends=('fishui' 'fontconfig' 'freetype2' 'icu' 'kcoreaddons' 'libxcursor'
+ 'modemmanager-qt' 'networkmanager-qt'
+ # qml:
+ 'bluez-qt' 'bluedevil' 'libcutefish' 'qt5-quickcontrols')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/settings/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('9864e522fd64d58a53ce1bbe2a7c810709d74fd729f70c029429912c6608f0435c8faad32db4a289bb68ca90af55e8f882407940475e654c93dc77ad90293cef')



[arch-commits] Commit in cutefish-kwin-plugins/repos/community-x86_64 (2 files)

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:29:00
  Author: felixonmars
Revision: 1004121

archrelease: copy trunk to community-x86_64

Added:
  cutefish-kwin-plugins/repos/community-x86_64/PKGBUILD
(from rev 1004120, cutefish-kwin-plugins/trunk/PKGBUILD)
Deleted:
  cutefish-kwin-plugins/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 07:28:52 UTC (rev 1004120)
+++ PKGBUILD2021-08-21 07:29:00 UTC (rev 1004121)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=cutefish-kwin-plugins
-pkgver=0.4
-pkgrel=1
-pkgdesc="CutefishOS KWin Plugins"
-arch=('x86_64')
-url="https://github.com/cutefishos/kwin-plugins;
-license=('GPL')
-groups=('cutefish')
-conflicts=('deepin-kwin')
-depends=('kconfig' 'kdecoration' 'kguiaddons' 'kcoreaddons' 'kconfigwidgets' 
'kwindowsystem'
- 'kwayland' 'kwin')
-makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
-source=("https://github.com/cutefishos/kwin-plugins/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('706caae9607670fcc23eb540fbaa6c6d6443a03dc166cce2dc35a5e5eb5006ef11b52325ecdb6f620bc64eb9b2ae62a7d8f28a4e248c4c7b8f8c733c58c237e7')
-
-build() {
-  cd kwin-plugins-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr .
-  ninja
-}
-
-package() {
-  cd kwin-plugins-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: cutefish-kwin-plugins/repos/community-x86_64/PKGBUILD (from rev 
1004120, cutefish-kwin-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 07:29:00 UTC (rev 1004121)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=cutefish-kwin-plugins
+pkgver=0.4
+pkgrel=2
+pkgdesc="CutefishOS KWin Plugins"
+arch=('x86_64')
+url="https://github.com/cutefishos/kwin-plugins;
+license=('GPL')
+groups=('cutefish')
+conflicts=('deepin-kwin')
+depends=('kconfig' 'kdecoration' 'kguiaddons' 'kcoreaddons' 'kconfigwidgets' 
'kwindowsystem'
+ 'kwayland' 'kwin'
+ # qml:
+ 'fishui' 'kdeclarative' 'plasma-framework')
+makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
+source=("https://github.com/cutefishos/kwin-plugins/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('706caae9607670fcc23eb540fbaa6c6d6443a03dc166cce2dc35a5e5eb5006ef11b52325ecdb6f620bc64eb9b2ae62a7d8f28a4e248c4c7b8f8c733c58c237e7')
+
+build() {
+  cd kwin-plugins-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr .
+  ninja
+}
+
+package() {
+  cd kwin-plugins-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:28:52
  Author: felixonmars
Revision: 1004120

upgpkg: cutefish-kwin-plugins 0.4-2: fix dependency

Modified:
  cutefish-kwin-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 07:22:54 UTC (rev 1004119)
+++ PKGBUILD2021-08-21 07:28:52 UTC (rev 1004120)
@@ -2,7 +2,7 @@
 
 pkgname=cutefish-kwin-plugins
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="CutefishOS KWin Plugins"
 arch=('x86_64')
 url="https://github.com/cutefishos/kwin-plugins;
@@ -10,7 +10,9 @@
 groups=('cutefish')
 conflicts=('deepin-kwin')
 depends=('kconfig' 'kdecoration' 'kguiaddons' 'kcoreaddons' 'kconfigwidgets' 
'kwindowsystem'
- 'kwayland' 'kwin')
+ 'kwayland' 'kwin'
+ # qml:
+ 'fishui' 'kdeclarative' 'plasma-framework')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/kwin-plugins/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('706caae9607670fcc23eb540fbaa6c6d6443a03dc166cce2dc35a5e5eb5006ef11b52325ecdb6f620bc64eb9b2ae62a7d8f28a4e248c4c7b8f8c733c58c237e7')



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:22:54
  Author: felixonmars
Revision: 1004119

archrelease: copy trunk to community-x86_64

Added:
  cutefish-dock/repos/community-x86_64/PKGBUILD
(from rev 1004118, cutefish-dock/trunk/PKGBUILD)
Deleted:
  cutefish-dock/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 07:22:46 UTC (rev 1004118)
+++ PKGBUILD2021-08-21 07:22:54 UTC (rev 1004119)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=cutefish-dock
-pkgver=0.4
-pkgrel=1
-pkgdesc="CutefishOS application dock"
-arch=('x86_64')
-url="https://github.com/cutefishos/dock;
-license=('GPL')
-groups=('cutefish')
-depends=('fishui' 'libcutefish' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
-source=("https://github.com/cutefishos/dock/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('3075014efa67cc42efd8a546a8dd5a2f4b210ab4c0dbf9effadb1650e5403b55dc816a76983e33048e56addfe5de2d93fee52622a306ad3ba09f7bda2701265d')
-
-build() {
-  cd dock-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd dock-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cutefish-dock/repos/community-x86_64/PKGBUILD (from rev 1004118, 
cutefish-dock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 07:22:54 UTC (rev 1004119)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=cutefish-dock
+pkgver=0.4
+pkgrel=2
+pkgdesc="CutefishOS application dock"
+arch=('x86_64')
+url="https://github.com/cutefishos/dock;
+license=('GPL')
+groups=('cutefish')
+depends=('fishui' 'qt5-svg')
+makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
+source=("https://github.com/cutefishos/dock/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('3075014efa67cc42efd8a546a8dd5a2f4b210ab4c0dbf9effadb1650e5403b55dc816a76983e33048e56addfe5de2d93fee52622a306ad3ba09f7bda2701265d')
+
+build() {
+  cd dock-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd dock-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:22:46
  Author: felixonmars
Revision: 1004118

upgpkg: cutefish-dock 0.4-2: fix dependency

Modified:
  cutefish-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 07:04:06 UTC (rev 1004117)
+++ PKGBUILD2021-08-21 07:22:46 UTC (rev 1004118)
@@ -2,13 +2,13 @@
 
 pkgname=cutefish-dock
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="CutefishOS application dock"
 arch=('x86_64')
 url="https://github.com/cutefishos/dock;
 license=('GPL')
 groups=('cutefish')
-depends=('fishui' 'libcutefish' 'qt5-svg')
+depends=('fishui' 'qt5-svg')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/dock/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('3075014efa67cc42efd8a546a8dd5a2f4b210ab4c0dbf9effadb1650e5403b55dc816a76983e33048e56addfe5de2d93fee52622a306ad3ba09f7bda2701265d')



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:04:06
  Author: felixonmars
Revision: 1004117

archrelease: copy trunk to community-x86_64

Added:
  cutefish-core/repos/community-x86_64/PKGBUILD
(from rev 1004116, cutefish-core/trunk/PKGBUILD)
Deleted:
  cutefish-core/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 07:03:58 UTC (rev 1004116)
+++ PKGBUILD2021-08-21 07:04:06 UTC (rev 1004117)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=cutefish-core
-pkgver=0.4
-pkgrel=1
-pkgdesc="System components and backend of CutefishOS"
-arch=('x86_64')
-url="https://github.com/cutefishos/core;
-license=('GPL')
-groups=('cutefish')
-depends=('fishui' 'libpulse' 'libxcursor' 'libxtst' 'polkit-qt5' 
'xf86-input-libinput')
-makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
-source=("https://github.com/cutefishos/core/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('60259469fb1c697ee46c17508ebc508dd40e24d4772a58c52e8cb9a2ccf6debed9dce13296ea3d6f51d612cfc980f46717424216db051d43611a148912bee709')
-
-build() {
-  cd core-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd core-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cutefish-core/repos/community-x86_64/PKGBUILD (from rev 1004116, 
cutefish-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 07:04:06 UTC (rev 1004117)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=cutefish-core
+pkgver=0.4
+pkgrel=2
+pkgdesc="System components and backend of CutefishOS"
+arch=('x86_64')
+url="https://github.com/cutefishos/core;
+license=('GPL')
+groups=('cutefish')
+depends=('fishui' 'libcutefish' 'libpulse' 'libxcursor' 'libxtst' 'polkit-qt5' 
'xf86-input-libinput')
+makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
+source=("https://github.com/cutefishos/core/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('60259469fb1c697ee46c17508ebc508dd40e24d4772a58c52e8cb9a2ccf6debed9dce13296ea3d6f51d612cfc980f46717424216db051d43611a148912bee709')
+
+build() {
+  cd core-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd core-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 07:03:58
  Author: felixonmars
Revision: 1004116

upgpkg: cutefish-core 0.4-2: fix dependency

Modified:
  cutefish-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 06:49:36 UTC (rev 1004115)
+++ PKGBUILD2021-08-21 07:03:58 UTC (rev 1004116)
@@ -2,13 +2,13 @@
 
 pkgname=cutefish-core
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="System components and backend of CutefishOS"
 arch=('x86_64')
 url="https://github.com/cutefishos/core;
 license=('GPL')
 groups=('cutefish')
-depends=('fishui' 'libpulse' 'libxcursor' 'libxtst' 'polkit-qt5' 
'xf86-input-libinput')
+depends=('fishui' 'libcutefish' 'libpulse' 'libxcursor' 'libxtst' 'polkit-qt5' 
'xf86-input-libinput')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/core/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('60259469fb1c697ee46c17508ebc508dd40e24d4772a58c52e8cb9a2ccf6debed9dce13296ea3d6f51d612cfc980f46717424216db051d43611a148912bee709')



[arch-commits] Commit in cutefish-calculator/repos/community-x86_64 (2 files)

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:49:36
  Author: felixonmars
Revision: 1004115

archrelease: copy trunk to community-x86_64

Added:
  cutefish-calculator/repos/community-x86_64/PKGBUILD
(from rev 1004114, cutefish-calculator/trunk/PKGBUILD)
Deleted:
  cutefish-calculator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 06:49:29 UTC (rev 1004114)
+++ PKGBUILD2021-08-21 06:49:36 UTC (rev 1004115)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=cutefish-calculator
-pkgver=0.4
-pkgrel=1
-pkgdesc="CutefishOS Calculator"
-arch=('x86_64')
-url="https://github.com/cutefishos/calculator;
-license=('GPL')
-groups=('cutefish')
-depends=('fishui' 'libcutefish')
-makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
-source=("https://github.com/cutefishos/calculator/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('2c9bf5b7cf749066a87440c101658b33e4cc99f4510f0efd44a91ba0cd25a1c39414d3c8f4a4dbfa1204d4856a195f16e746985463950b93f87790fece74a0ec')
-
-build() {
-  cd calculator-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd calculator-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cutefish-calculator/repos/community-x86_64/PKGBUILD (from rev 1004114, 
cutefish-calculator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 06:49:36 UTC (rev 1004115)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=cutefish-calculator
+pkgver=0.4
+pkgrel=2
+pkgdesc="CutefishOS Calculator"
+arch=('x86_64')
+url="https://github.com/cutefishos/calculator;
+license=('GPL')
+groups=('cutefish')
+depends=('fishui')
+makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
+source=("https://github.com/cutefishos/calculator/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('2c9bf5b7cf749066a87440c101658b33e4cc99f4510f0efd44a91ba0cd25a1c39414d3c8f4a4dbfa1204d4856a195f16e746985463950b93f87790fece74a0ec')
+
+build() {
+  cd calculator-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd calculator-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:49:29
  Author: felixonmars
Revision: 1004114

upgpkg: cutefish-calculator 0.4-2: fix dependency

Modified:
  cutefish-calculator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 06:45:18 UTC (rev 1004113)
+++ PKGBUILD2021-08-21 06:49:29 UTC (rev 1004114)
@@ -2,13 +2,13 @@
 
 pkgname=cutefish-calculator
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="CutefishOS Calculator"
 arch=('x86_64')
 url="https://github.com/cutefishos/calculator;
 license=('GPL')
 groups=('cutefish')
-depends=('fishui' 'libcutefish')
+depends=('fishui')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/calculator/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('2c9bf5b7cf749066a87440c101658b33e4cc99f4510f0efd44a91ba0cd25a1c39414d3c8f4a4dbfa1204d4856a195f16e746985463950b93f87790fece74a0ec')



[arch-commits] Commit in cutefish-filemanager/repos/community-x86_64 (2 files)

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:45:18
  Author: felixonmars
Revision: 1004113

archrelease: copy trunk to community-x86_64

Added:
  cutefish-filemanager/repos/community-x86_64/PKGBUILD
(from rev 1004112, cutefish-filemanager/trunk/PKGBUILD)
Deleted:
  cutefish-filemanager/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 06:45:10 UTC (rev 1004112)
+++ PKGBUILD2021-08-21 06:45:18 UTC (rev 1004113)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=cutefish-filemanager
-pkgver=0.4
-pkgrel=1
-pkgdesc="Cutefish File Manager, simple to use, beautiful, and retain the 
classic PC interactive design"
-arch=('x86_64')
-url="https://github.com/cutefishos/filemanager;
-license=('GPL')
-groups=('cutefish')
-depends=('fishui' 'kio' 'libcutefish' 'solid')
-makedepends=('extra-cmake-modules' 'qt5-tools')
-source=("https://github.com/cutefishos/filemanager/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('82599dd5575c05a2d9b01a46634e811a6b199e4252797829891aa89c369318b23e8250974130685ea90e424cf5a7c1be59fd784935d5742a40c5f2856ac0a8c5')
-
-build() {
-  cd filemanager-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd filemanager-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cutefish-filemanager/repos/community-x86_64/PKGBUILD (from rev 1004112, 
cutefish-filemanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 06:45:18 UTC (rev 1004113)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=cutefish-filemanager
+pkgver=0.4
+pkgrel=2
+pkgdesc="Cutefish File Manager, simple to use, beautiful, and retain the 
classic PC interactive design"
+arch=('x86_64')
+url="https://github.com/cutefishos/filemanager;
+license=('GPL')
+groups=('cutefish')
+depends=('fishui' 'kio' 'solid')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+source=("https://github.com/cutefishos/filemanager/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('82599dd5575c05a2d9b01a46634e811a6b199e4252797829891aa89c369318b23e8250974130685ea90e424cf5a7c1be59fd784935d5742a40c5f2856ac0a8c5')
+
+build() {
+  cd filemanager-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd filemanager-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:45:10
  Author: felixonmars
Revision: 1004112

upgpkg: cutefish-filemanager 0.4-2: fix dependency

Modified:
  cutefish-filemanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 06:38:23 UTC (rev 1004111)
+++ PKGBUILD2021-08-21 06:45:10 UTC (rev 1004112)
@@ -2,13 +2,13 @@
 
 pkgname=cutefish-filemanager
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Cutefish File Manager, simple to use, beautiful, and retain the 
classic PC interactive design"
 arch=('x86_64')
 url="https://github.com/cutefishos/filemanager;
 license=('GPL')
 groups=('cutefish')
-depends=('fishui' 'kio' 'libcutefish' 'solid')
+depends=('fishui' 'kio' 'solid')
 makedepends=('extra-cmake-modules' 'qt5-tools')
 
source=("https://github.com/cutefishos/filemanager/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('82599dd5575c05a2d9b01a46634e811a6b199e4252797829891aa89c369318b23e8250974130685ea90e424cf5a7c1be59fd784935d5742a40c5f2856ac0a8c5')



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:38:17
  Author: felixonmars
Revision: 1004101

archrelease: copy trunk to community-x86_64

Added:
  qliveplayer/repos/community-x86_64/PKGBUILD
(from rev 1004096, qliveplayer/trunk/PKGBUILD)
Deleted:
  qliveplayer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 06:38:17 UTC (rev 1004100)
+++ PKGBUILD2021-08-21 06:38:17 UTC (rev 1004101)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Megumi_fox 
-
-pkgname=qliveplayer
-pkgver=3.22.4
-pkgrel=1
-pkgdesc='Cute and useful Live Stream Player with danmaku support.'
-arch=('x86_64')
-url="https://github.com/IsoaSFlus/QLivePlayer;
-license=('GPL2')
-depends=('ffmpeg' 'mpv' 'python-aiohttp' 'qt5-base' 'qt5-quickcontrols2' 
'qt5-graphicaleffects'
- 'qt5-quickcontrols' 'python' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'ninja')
-optdepends=('python-protobuf: for YouTube LiveChat support'
-'streamlink: for foreign streaming service support')
-source=("https://github.com/IsoaSFlus/QLivePlayer/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('08fc3abb7b923baba09c60c86185431fe3754a1e06978247247e1482100e3b41c2a5185bc5fea1270fd2e7e9d90509880ea4ba4e8bb133cc4745f229c93744d3')
-
-prepare() {
-mkdir -p build
-}
-
-build() {
-cd build
-cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
../QLivePlayer-$pkgver
-ninja
-}
-
-package() {
-cd build
-DESTDIR="$pkgdir" ninja install
-}

Copied: qliveplayer/repos/community-x86_64/PKGBUILD (from rev 1004096, 
qliveplayer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 06:38:17 UTC (rev 1004101)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Megumi_fox 
+
+pkgname=qliveplayer
+pkgver=4.0.0
+_libcommit=03d3c7b0bf010986710182ba4ab9a887b4c3b42d
+pkgrel=1
+pkgdesc='Cute and useful Live Stream Player with danmaku support.'
+arch=('x86_64')
+url="https://github.com/IsoaSFlus/QLivePlayer;
+license=('GPL2')
+depends=('ffmpeg' 'mpv' 'qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 
'qt5-quickcontrols'
+ 'qt5-quickcontrols2' 'qt5-svg')
+makedepends=('extra-cmake-modules' 'ninja' 'rust')
+optdepends=('streamlink: for foreign streaming service support')
+source=("https://github.com/IsoaSFlus/QLivePlayer/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+
"https://github.com/IsoaSFlus/QLivePlayer-Lib/archive/$_libcommit/$pkgname-lib-$_libcommit.tar.gz;)
+sha512sums=('149b22413b04468db6d2adb0f8bce2245be799c5e4f7eeb61005c09104606c9efe2873a1ff69bdba642429c4b19e3add5f0324b9a2efa2164829009b68f7391a'
+
'4330f869d325117f59b11300c50cbf69af31173ffe9c909cb7fb8bc752c23a5a49cb402fd95097540ec091f68382c1d34aa406c3a231774d348cb339a1dc1939')
+
+prepare() {
+mkdir -p build
+rmdir QLivePlayer-$pkgver/src/QLivePlayer-Lib
+ln -s ../../QLivePlayer-Lib-$_libcommit 
QLivePlayer-$pkgver/src/QLivePlayer-Lib
+}
+
+build() {
+cd build
+cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
../QLivePlayer-$pkgver
+ninja
+}
+
+package() {
+cd build
+DESTDIR="$pkgdir" ninja install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:38:10
  Author: felixonmars
Revision: 1004096

upgpkg: qliveplayer 4.0.0-1

Modified:
  qliveplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 06:37:49 UTC (rev 1004095)
+++ PKGBUILD2021-08-21 06:38:10 UTC (rev 1004096)
@@ -2,22 +2,26 @@
 # Contributor: Megumi_fox 
 
 pkgname=qliveplayer
-pkgver=3.22.4
+pkgver=4.0.0
+_libcommit=03d3c7b0bf010986710182ba4ab9a887b4c3b42d
 pkgrel=1
 pkgdesc='Cute and useful Live Stream Player with danmaku support.'
 arch=('x86_64')
 url="https://github.com/IsoaSFlus/QLivePlayer;
 license=('GPL2')
-depends=('ffmpeg' 'mpv' 'python-aiohttp' 'qt5-base' 'qt5-quickcontrols2' 
'qt5-graphicaleffects'
- 'qt5-quickcontrols' 'python' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'ninja')
-optdepends=('python-protobuf: for YouTube LiveChat support'
-'streamlink: for foreign streaming service support')
-source=("https://github.com/IsoaSFlus/QLivePlayer/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('08fc3abb7b923baba09c60c86185431fe3754a1e06978247247e1482100e3b41c2a5185bc5fea1270fd2e7e9d90509880ea4ba4e8bb133cc4745f229c93744d3')
+depends=('ffmpeg' 'mpv' 'qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 
'qt5-quickcontrols'
+ 'qt5-quickcontrols2' 'qt5-svg')
+makedepends=('extra-cmake-modules' 'ninja' 'rust')
+optdepends=('streamlink: for foreign streaming service support')
+source=("https://github.com/IsoaSFlus/QLivePlayer/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+
"https://github.com/IsoaSFlus/QLivePlayer-Lib/archive/$_libcommit/$pkgname-lib-$_libcommit.tar.gz;)
+sha512sums=('149b22413b04468db6d2adb0f8bce2245be799c5e4f7eeb61005c09104606c9efe2873a1ff69bdba642429c4b19e3add5f0324b9a2efa2164829009b68f7391a'
+
'4330f869d325117f59b11300c50cbf69af31173ffe9c909cb7fb8bc752c23a5a49cb402fd95097540ec091f68382c1d34aa406c3a231774d348cb339a1dc1939')
 
 prepare() {
 mkdir -p build
+rmdir QLivePlayer-$pkgver/src/QLivePlayer-Lib
+ln -s ../../QLivePlayer-Lib-$_libcommit 
QLivePlayer-$pkgver/src/QLivePlayer-Lib
 }
 
 build() {



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:37:49
  Author: felixonmars
Revision: 1004095

archrelease: copy trunk to community-x86_64

Added:
  fishui/repos/community-x86_64/PKGBUILD
(from rev 1004094, fishui/trunk/PKGBUILD)
Deleted:
  fishui/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 06:37:41 UTC (rev 1004094)
+++ PKGBUILD2021-08-21 06:37:49 UTC (rev 1004095)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=fishui
-pkgver=0.4
-pkgrel=1
-pkgdesc="GUI library based on QQC2 for Cutefish applications"
-arch=('x86_64')
-url="https://github.com/cutefishos/fishui;
-license=('GPL')
-depends=('kwindowsystem' 'qt5-quickcontrols2')
-makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
-source=("https://github.com/cutefishos/fishui/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('8a68651603bb89097c8f6343f85315173263fd0dfc7f61e59d480e1dfb91f28b278571d267f1233900ee17c5e1c333e0dbf5b519df48ef9ed060b6d068c81a10')
-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fishui/repos/community-x86_64/PKGBUILD (from rev 1004094, 
fishui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 06:37:49 UTC (rev 1004095)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+
+pkgname=fishui
+pkgver=0.4
+pkgrel=2
+pkgdesc="GUI library based on QQC2 for Cutefish applications"
+arch=('x86_64')
+url="https://github.com/cutefishos/fishui;
+license=('GPL')
+depends=('kwindowsystem' 'qt5-declarative' 'qt5-graphicaleffects' 
'qt5-quickcontrols2')
+makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
+source=("https://github.com/cutefishos/fishui/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('8a68651603bb89097c8f6343f85315173263fd0dfc7f61e59d480e1dfb91f28b278571d267f1233900ee17c5e1c333e0dbf5b519df48ef9ed060b6d068c81a10')
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



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

2021-08-21 Thread Felix Yan via arch-commits
Date: Saturday, August 21, 2021 @ 06:37:41
  Author: felixonmars
Revision: 1004094

upgpkg: fishui 0.4-2: fix dependency

Modified:
  fishui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 06:07:28 UTC (rev 1004093)
+++ PKGBUILD2021-08-21 06:37:41 UTC (rev 1004094)
@@ -2,12 +2,12 @@
 
 pkgname=fishui
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="GUI library based on QQC2 for Cutefish applications"
 arch=('x86_64')
 url="https://github.com/cutefishos/fishui;
 license=('GPL')
-depends=('kwindowsystem' 'qt5-quickcontrols2')
+depends=('kwindowsystem' 'qt5-declarative' 'qt5-graphicaleffects' 
'qt5-quickcontrols2')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/fishui/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('8a68651603bb89097c8f6343f85315173263fd0dfc7f61e59d480e1dfb91f28b278571d267f1233900ee17c5e1c333e0dbf5b519df48ef9ed060b6d068c81a10')



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

2021-08-21 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 21, 2021 @ 06:07:28
  Author: polyzen
Revision: 1004093

archrelease: copy trunk to community-any

Added:
  pyright/repos/community-any/PKGBUILD
(from rev 1004092, pyright/trunk/PKGBUILD)
Deleted:
  pyright/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-21 06:07:07 UTC (rev 1004092)
+++ PKGBUILD2021-08-21 06:07:28 UTC (rev 1004093)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kaizhao Zhang 
-
-pkgname=pyright
-pkgver=1.1.162
-pkgrel=1
-pkgdesc='Type checker for the Python language'
-arch=('any')
-url=https://github.com/microsoft/pyright
-license=('MIT')
-depends=('nodejs>=12')
-makedepends=('npm')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('15202159c4dd3cd261b0063c7b98731470c7b5c7c0c68f1e9e65736690d1615554cb68b25db5b4e66808a19495d8338b8dc8864673c9b8eb4c4c1b69b04a1d5f')
-
-prepare() {
-  cd $pkgname-$pkgver
-  npm ci
-}
-
-build() {
-  cd $pkgname-$pkgver/packages/$pkgname
-  npm run build
-}
-
-package() {
-  install -d "$pkgdir"/usr/bin
-  ln -s ../lib/node_modules/$pkgname/index.js "$pkgdir"/usr/bin/$pkgname
-  ln -s ../lib/node_modules/$pkgname/langserver.index.js \
-"$pkgdir"/usr/bin/$pkgname-langserver
-
-  cd $pkgname-$pkgver
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
-
-  cd packages/$pkgname
-  install -d "$pkgdir"/usr/lib/node_modules/$pkgname
-  cp -r dist {,langserver.}index.js "$pkgdir"/usr/lib/node_modules/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pyright/repos/community-any/PKGBUILD (from rev 1004092, 
pyright/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-21 06:07:28 UTC (rev 1004093)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kaizhao Zhang 
+
+pkgname=pyright
+pkgver=1.1.163
+pkgrel=1
+pkgdesc='Type checker for the Python language'
+arch=('any')
+url=https://github.com/microsoft/pyright
+license=('MIT')
+depends=('nodejs>=12')
+makedepends=('npm')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+b2sums=('6933f1a21c787ec5cafee28290f64bc0043b895356944cfe0ba205d8835b9e479a9f428af3edcc238093c67c9fdbd12d6ea56f9792c6a7bdf04222846b259cba')
+
+prepare() {
+  cd $pkgname-$pkgver
+  npm ci
+}
+
+build() {
+  cd $pkgname-$pkgver/packages/$pkgname
+  npm run build
+}
+
+package() {
+  install -d "$pkgdir"/usr/bin
+  ln -s ../lib/node_modules/$pkgname/index.js "$pkgdir"/usr/bin/$pkgname
+  ln -s ../lib/node_modules/$pkgname/langserver.index.js \
+"$pkgdir"/usr/bin/$pkgname-langserver
+
+  cd $pkgname-$pkgver
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
+
+  cd packages/$pkgname
+  install -d "$pkgdir"/usr/lib/node_modules/$pkgname
+  cp -r dist {,langserver.}index.js "$pkgdir"/usr/lib/node_modules/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-21 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 21, 2021 @ 06:07:07
  Author: polyzen
Revision: 1004092

upgpkg: pyright 1.1.163-1

Modified:
  pyright/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-21 05:55:23 UTC (rev 1004091)
+++ PKGBUILD2021-08-21 06:07:07 UTC (rev 1004092)
@@ -2,7 +2,7 @@
 # Contributor: Kaizhao Zhang 
 
 pkgname=pyright
-pkgver=1.1.162
+pkgver=1.1.163
 pkgrel=1
 pkgdesc='Type checker for the Python language'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('nodejs>=12')
 makedepends=('npm')
 source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('15202159c4dd3cd261b0063c7b98731470c7b5c7c0c68f1e9e65736690d1615554cb68b25db5b4e66808a19495d8338b8dc8864673c9b8eb4c4c1b69b04a1d5f')
+b2sums=('6933f1a21c787ec5cafee28290f64bc0043b895356944cfe0ba205d8835b9e479a9f428af3edcc238093c67c9fdbd12d6ea56f9792c6a7bdf04222846b259cba')
 
 prepare() {
   cd $pkgname-$pkgver