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

2021-07-22 Thread Felix Yan via arch-commits
Date: Friday, July 23, 2021 @ 05:55:16
  Author: felixonmars
Revision: 984126

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-citeproc/repos/community-staging-x86_64/
  haskell-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 984125, haskell-citeproc/trunk/PKGBUILD)

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

Copied: haskell-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
984125, haskell-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-23 05:55:16 UTC (rev 984126)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+
+_hkgname=citeproc
+pkgname=haskell-citeproc
+pkgver=0.4.1
+pkgrel=3
+pkgdesc="Generates citations and bibliography from CSL styles."
+url="https://github.com/jgm/citeproc;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-case-insensitive' 'haskell-data-default' 'haskell-file-embed'
+ 'haskell-pandoc-types' 'haskell-safe' 'haskell-scientific' 
'haskell-text-icu'
+ 'haskell-unicode-collation' 'haskell-uniplate' 'haskell-vector' 
'haskell-xml-conduit')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-timeit')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;
+
icu-shifted.patch::https://github.com/jgm/citeproc/commit/50d14d938c883a8835550933df4004050b0b3902.patch)
+sha512sums=('64a62485d322e3032b1d7754c40ae37c9decb0e1cc4446352ecaa80552bf4673447cebc09a2e8756063923231d2f623925b3d5ec07bd64e23ccd18c72703eb15'
+
'd05f2d86e71d166a66cc85e40f0ff34b1e0216abaece76b2200823c22f4d9d1fc72549a9c14e4999a0d8cf8d4fb2cfd184573e5298c13266c5168bc56ba59674')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  patch -p1 -i ../icu-shifted.patch
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -fexecutable -ficu
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-22 Thread Felix Yan via arch-commits
Date: Friday, July 23, 2021 @ 05:55:04
  Author: felixonmars
Revision: 984125

upgpkg: haskell-citeproc 0.4.1-3: enable icu flag

Modified:
  haskell-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-23 05:53:29 UTC (rev 984124)
+++ PKGBUILD2021-07-23 05:55:04 UTC (rev 984125)
@@ -3,7 +3,7 @@
 _hkgname=citeproc
 pkgname=haskell-citeproc
 pkgver=0.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Generates citations and bibliography from CSL styles."
 url="https://github.com/jgm/citeproc;
 license=("BSD")
@@ -10,14 +10,17 @@
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
  'haskell-case-insensitive' 'haskell-data-default' 'haskell-file-embed'
- 'haskell-pandoc-types' 'haskell-safe' 'haskell-scientific' 
'haskell-unicode-collation'
- 'haskell-uniplate' 'haskell-vector' 'haskell-xml-conduit')
+ 'haskell-pandoc-types' 'haskell-safe' 'haskell-scientific' 
'haskell-text-icu'
+ 'haskell-unicode-collation' 'haskell-uniplate' 'haskell-vector' 
'haskell-xml-conduit')
 makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-timeit')
-source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('64a62485d322e3032b1d7754c40ae37c9decb0e1cc4446352ecaa80552bf4673447cebc09a2e8756063923231d2f623925b3d5ec07bd64e23ccd18c72703eb15')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;
+
icu-shifted.patch::https://github.com/jgm/citeproc/commit/50d14d938c883a8835550933df4004050b0b3902.patch)
+sha512sums=('64a62485d322e3032b1d7754c40ae37c9decb0e1cc4446352ecaa80552bf4673447cebc09a2e8756063923231d2f623925b3d5ec07bd64e23ccd18c72703eb15'
+
'd05f2d86e71d166a66cc85e40f0ff34b1e0216abaece76b2200823c22f4d9d1fc72549a9c14e4999a0d8cf8d4fb2cfd184573e5298c13266c5168bc56ba59674')
 
 prepare() {
   cd $_hkgname-$pkgver
+  patch -p1 -i ../icu-shifted.patch
   gen-setup
 }
 
@@ -28,8 +31,7 @@
 --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
 --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
---ghc-option='-pie' -fexecutable
-# -ficu disabled: https://github.com/jgm/citeproc/issues/71
+--ghc-option='-pie' -fexecutable -ficu
 
   runhaskell Setup build $MAKEFLAGS
   runhaskell Setup register --gen-script



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

2021-07-22 Thread Felix Yan via arch-commits
Date: Friday, July 23, 2021 @ 05:53:29
  Author: felixonmars
Revision: 984124

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 984123, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-23 05:53:15 UTC (rev 984123)
+++ PKGBUILD2021-07-23 05:53:29 UTC (rev 984124)
@@ -1,64 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=7.18.1
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'node-gyp' 'nodejs-nopt' 'semver')
-# libgl: TODO
-# libvips: for sharp (doc build) (disabled as current version of gatsby 
imports a broken sharp)
-# libxi: for cwebp (doc build)
-makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
-options=('!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
-sha512sums=('2fdfff42461ca506cc6843efc645cbaf9acf2475cd015c991d62e5ab8e19facb7181e300393dcc86cdb64bfbda54ad13ffdef700601186527767301b7389998b')
-
-prepare() {
-  cd cli-$pkgver
-  mkdir -p node_modules/.bin
-  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
-
-  # Use local marked/marked-man
-  sed -i 's|node bin/npm-cli.js install marked|true |' Makefile
-
-  # Don't build twice
-  sed -i 's/install: all/install:/' Makefile
-
-  mkdir -p man/man1
-}
-
-build() {
-  cd cli-$pkgver
-  NODE_PATH=/usr/lib/node_modules make
-}
-
-package() {
-  cd cli-$pkgver
-  node bin/npm-cli.js install -g -f --prefix="$pkgdir/usr" $(node 
bin/npm-cli.js pack | tail -1)
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-
-  # Experimental dedup
-  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
-  rm -r "$_npmdir"/node_modules/{,.bin/}semver
-  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
-  rm -r "$_npmdir"/node_modules/{,.bin/}nopt
-  sed -i 
's|../../node_modules/node-gyp/bin/node-gyp.js|../../../node-gyp/bin/node-gyp.js|'
 \
-"$_npmdir"/bin/node-gyp-bin/node-gyp
-
-  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
-  node "$srcdir"/cli-$pkgver/bin/npm-cli.js completion > 
"$pkgdir"/usr/share/bash-completion/completions/npm
-
-  mv "$pkgdir"/usr/lib/node_modules/npm/man "$pkgdir"/usr/share/
-
-  install -Dm644 "$srcdir"/cli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 984123, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-23 05:53:29 UTC (rev 984124)
@@ -0,0 +1,64 @@
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=7.19.0
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'node-gyp' 'nodejs-nopt' 'semver')
+# libgl: TODO
+# libvips: for sharp (doc build) (disabled as current version of gatsby 
imports a broken sharp)
+# libxi: for cwebp (doc build)
+makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
+options=('!emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
+sha512sums=('26713f2924204bc5f3d899e55de1de09f3cc36795bc19536ac738241bbe4aab1d3b8d4705fd9ad79d2e56798eccceb94bbecce3a5c1997ff8be01c5b5fa42368')
+
+prepare() {
+  cd cli-$pkgver
+  mkdir -p node_modules/.bin
+  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
+
+  # Use local marked/marked-man
+  sed -i 's|node bin/npm-cli.js install marked|true |' Makefile
+
+  # Don't build twice
+  sed -i 's/install: all/install:/' Makefile
+
+  mkdir -p man/man1
+}
+
+build() {
+  cd cli-$pkgver
+  NODE_PATH=/usr/lib/node_modules make
+}
+
+package() {
+  cd cli-$pkgver
+  node bin/npm-cli.js install -g -f --prefix="$pkgdir/usr" $(node 
bin/npm-cli.js pack | tail -1)
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
+  # Experimental dedup
+  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
+  rm -r "$_npmdir"/node_modules/{,.bin/}semver
+  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
+  rm -r "$_npmdir"/node_modules/{,.bin/}nopt
+  sed -i 
's|../../node_modules/node-gyp/bin/node-gyp.js|../../../node-gyp/bin/node-gyp.js|'
 \
+

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

2021-07-22 Thread Felix Yan via arch-commits
Date: Friday, July 23, 2021 @ 05:53:15
  Author: felixonmars
Revision: 984123

upgpkg: npm 7.19.0-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-23 01:56:40 UTC (rev 984122)
+++ PKGBUILD2021-07-23 05:53:15 UTC (rev 984123)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=7.18.1
+pkgver=7.19.0
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
 options=('!emptydirs')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
-sha512sums=('2fdfff42461ca506cc6843efc645cbaf9acf2475cd015c991d62e5ab8e19facb7181e300393dcc86cdb64bfbda54ad13ffdef700601186527767301b7389998b')
+sha512sums=('26713f2924204bc5f3d899e55de1de09f3cc36795bc19536ac738241bbe4aab1d3b8d4705fd9ad79d2e56798eccceb94bbecce3a5c1997ff8be01c5b5fa42368')
 
 prepare() {
   cd cli-$pkgver



[arch-commits] Commit in composer/repos/extra-any (PKGBUILD PKGBUILD)

2021-07-22 Thread Pierre Schmitz via arch-commits
Date: Friday, July 23, 2021 @ 05:34:57
  Author: pierre
Revision: 420319

archrelease: copy trunk to extra-any

Added:
  composer/repos/extra-any/PKGBUILD
(from rev 420318, composer/trunk/PKGBUILD)
Deleted:
  composer/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-23 05:34:53 UTC (rev 420318)
+++ PKGBUILD2021-07-23 05:34:57 UTC (rev 420319)
@@ -1,51 +0,0 @@
-# Maintainer: Pierre Schmitz 
-
-pkgname=composer
-pkgver=2.1.3
-pkgrel=1
-pkgdesc="Dependency Manager for PHP"
-arch=('any')
-license=('MIT')
-url='https://getcomposer.org/'
-depends=('php' 'unzip')
-makedepends=('git')
-source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};
-   
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
-sha256sums=('SKIP'
-'f8a72e98dec8da736d8dac66761ca0a8fbde913753e9a43f34112367f5174d11')
-
-prepare() {
-   cd "${srcdir}/${pkgname}"
-
-   php "${srcdir}/${pkgname}-${pkgver}.phar" install --no-interaction 
--no-dev --no-progress --prefer-dist
-}
-
-build() {
-   cd "${srcdir}/${pkgname}"
-
-   php -d phar.readonly=Off bin/compile
-}
-
-check() {
-   cd "${srcdir}"
-
-   mkdir integration-test
-   cd integration-test
-
-   php "${srcdir}/${pkgname}/composer.phar" init \
-   --no-interaction \
-   --type=project \
-   --name='archlinux/test' \
-   --description='Composer Test Project' \
-   --license='GPL-3.0-or-later' \
-   --require='symfony/console:*'
-   php "${srcdir}/${pkgname}/composer.phar" update --no-interaction 
--no-progress --prefer-dist
-   php "${srcdir}/${pkgname}/composer.phar" validate --no-interaction
-}
-
-package() {
-   cd "${srcdir}/${pkgname}"
-
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm755 composer.phar "${pkgdir}/usr/bin/composer"
-}

Copied: composer/repos/extra-any/PKGBUILD (from rev 420318, 
composer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-23 05:34:57 UTC (rev 420319)
@@ -0,0 +1,51 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=composer
+pkgver=2.1.4
+pkgrel=1
+pkgdesc="Dependency Manager for PHP"
+arch=('any')
+license=('MIT')
+url='https://getcomposer.org/'
+depends=('php' 'unzip')
+makedepends=('git')
+source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};
+   
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
+sha256sums=('SKIP'
+'3c8f521888ccb51becae522e263dbfd17169fbf3d4716685858b2c7e7684f4ae')
+
+prepare() {
+   cd "${srcdir}/${pkgname}"
+
+   php "${srcdir}/${pkgname}-${pkgver}.phar" install --no-interaction 
--no-dev --no-progress --prefer-dist
+}
+
+build() {
+   cd "${srcdir}/${pkgname}"
+
+   php -d phar.readonly=Off bin/compile
+}
+
+check() {
+   cd "${srcdir}"
+
+   mkdir integration-test
+   cd integration-test
+
+   php "${srcdir}/${pkgname}/composer.phar" init \
+   --no-interaction \
+   --type=project \
+   --name='archlinux/test' \
+   --description='Composer Test Project' \
+   --license='GPL-3.0-or-later' \
+   --require='symfony/console:*'
+   php "${srcdir}/${pkgname}/composer.phar" update --no-interaction 
--no-progress --prefer-dist
+   php "${srcdir}/${pkgname}/composer.phar" validate --no-interaction
+}
+
+package() {
+   cd "${srcdir}/${pkgname}"
+
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   install -Dm755 composer.phar "${pkgdir}/usr/bin/composer"
+}



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

2021-07-22 Thread Pierre Schmitz via arch-commits
Date: Friday, July 23, 2021 @ 05:34:53
  Author: pierre
Revision: 420318

upgpkg: composer 2.1.4-1

Modified:
  composer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-23 05:32:08 UTC (rev 420317)
+++ PKGBUILD2021-07-23 05:34:53 UTC (rev 420318)
@@ -1,7 +1,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=composer
-pkgver=2.1.3
+pkgver=2.1.4
 pkgrel=1
 pkgdesc="Dependency Manager for PHP"
 arch=('any')
@@ -12,7 +12,7 @@
 
source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};

"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
 sha256sums=('SKIP'
-'f8a72e98dec8da736d8dac66761ca0a8fbde913753e9a43f34112367f5174d11')
+'3c8f521888ccb51becae522e263dbfd17169fbf3d4716685858b2c7e7684f4ae')
 
 prepare() {
cd "${srcdir}/${pkgname}"



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 01:56:40
  Author: archange
Revision: 984122

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-23 01:56:35 UTC (rev 984121)
+++ PKGBUILD2021-07-23 01:56:40 UTC (rev 984122)
@@ -1,33 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=entrypoint2
-pkgname=python-${_pkg}
-pkgver=0.2
-pkgrel=3
-pkgdesc="Easy to use command-line interface for python modules"
-arch=(any)
-url="https://github.com/ponty/entrypoint2;
-license=(BSD)
-depends=(python-argparse python-decorator)
-makedepends=(python-setuptools)
-checkdepends=(python-nose python-path.py python-easyprocess)
-#PyPi tarball does not have tests, see 
https://github.com/ponty/entrypoint2/pull/5
-#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a49b160c452914b830135201e6db466c6bb39759ccd0c301cbb7943ab57802fd')
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${_pkg}-${pkgver}/tests
-  PYTHONPATH="../build/lib/" nosetests -vv
-}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: python-entrypoint2/repos/community-any/PKGBUILD (from rev 984121, 
python-entrypoint2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-23 01:56:40 UTC (rev 984122)
@@ -0,0 +1,32 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=entrypoint2
+pkgname=python-${_pkg}
+pkgver=0.2.4
+pkgrel=1
+pkgdesc="Easy to use command-line interface for python modules"
+arch=(any)
+url="https://github.com/ponty/entrypoint2;
+license=(BSD)
+depends=(python)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-easyprocess)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('4770c3afcf3865c606a6e5f7cfcc5c59212f555fcee9b2540270399149c1dde3')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkg}-${pkgver}
+  PYTHONPATH="build/lib/" py.test -v
+}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 01:56:35
  Author: archange
Revision: 984121

upgpkg: python-entrypoint2 0.2.4-1

Modified:
  python-entrypoint2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-23 01:44:34 UTC (rev 984120)
+++ PKGBUILD2021-07-23 01:56:35 UTC (rev 984121)
@@ -2,19 +2,18 @@
 
 _pkg=entrypoint2
 pkgname=python-${_pkg}
-pkgver=0.2
-pkgrel=3
+pkgver=0.2.4
+pkgrel=1
 pkgdesc="Easy to use command-line interface for python modules"
 arch=(any)
 url="https://github.com/ponty/entrypoint2;
 license=(BSD)
-depends=(python-argparse python-decorator)
+depends=(python)
 makedepends=(python-setuptools)
-checkdepends=(python-nose python-path.py python-easyprocess)
-#PyPi tarball does not have tests, see 
https://github.com/ponty/entrypoint2/pull/5
-#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a49b160c452914b830135201e6db466c6bb39759ccd0c301cbb7943ab57802fd')
+checkdepends=(python-pytest python-easyprocess)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('4770c3afcf3865c606a6e5f7cfcc5c59212f555fcee9b2540270399149c1dde3')
 
 build() {
   cd ${_pkg}-${pkgver}
@@ -22,8 +21,8 @@
 }
 
 check() {
-  cd ${_pkg}-${pkgver}/tests
-  PYTHONPATH="../build/lib/" nosetests -vv
+  cd ${_pkg}-${pkgver}
+  PYTHONPATH="build/lib/" py.test -v
 }
 
 package() {



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 01:44:34
  Author: archange
Revision: 984120

archrelease: copy trunk to community-staging-x86_64

Added:
  paraview/repos/community-staging-x86_64/
  paraview/repos/community-staging-x86_64/PKGBUILD
(from rev 984119, paraview/trunk/PKGBUILD)
  paraview/repos/community-staging-x86_64/vtk-comp-missing-includes.patch
(from rev 984119, paraview/trunk/vtk-comp-missing-includes.patch)

-+
 PKGBUILD|   71 ++
 vtk-comp-missing-includes.patch |   60 
 2 files changed, 131 insertions(+)

Copied: paraview/repos/community-staging-x86_64/PKGBUILD (from rev 984119, 
paraview/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-23 01:44:34 UTC (rev 984120)
@@ -0,0 +1,71 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Mathieu Westphal 
+# Contributor: Stéphane Gaudreault 
+# Contributor: 
+
+_pkg=paraview
+_mpi=openmpi
+pkgname=${_pkg}
+#-${_mpi}
+pkgver=5.9.1
+pkgrel=4
+pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
+arch=(x86_64)
+url="https://www.paraview.org;
+license=(BSD custom)
+depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
+ adios2 liblas ospray pdal python-numpy cgns protobuf
+ double-conversion expat freetype2 gdal gl2ps glew hdf5 libjpeg jsoncpp
+ libjsoncpp.so libharu libxml2 lz4 xz python-mpi4py netcdf libogg
+ libpng pugixml libtheora libtiff zlib)
+optdepends=(python-matplotlib python-pandas)
+makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen utf8cpp)
+# pegtl https://gitlab.kitware.com/vtk/vtk/-/issues/18151
+conflicts=(vtk)
+source=(${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz
+vtk-comp-missing-includes.patch)
+sha256sums=('0d486cb6fbf55e428845c9650486f87466efcb3155e40489182a7ea85dfd4c8d'
+'c400753e386601008a2ed0269a58be76f06cc3c084f2dd48e87f6f04e8eca77f')
+
+prepare() {
+  cd ParaView-v${pkgver/R/-R}
+  # We have a patched libharu
+  sed -i "s|2.4.0|2.3.0|" VTK/ThirdParty/libharu/CMakeLists.txt
+  # Missing includes with GCC11
+  patch -p1 -d VTK <../vtk-comp-missing-includes.patch
+  # Fix build with HDF5 1.12.1, 
https://gitlab.kitware.com/vtk/vtk/-/issues/18265
+  sed -i 's/typedef int hid_t;/typedef int64_t hid_t;/' 
VTK/ThirdParty/xdmf3/vtkxdmf3/core/XdmfHDF5Controller.hpp
+}
+
+build() {
+  # LICENSEDIR blocked by https://gitlab.kitware.com/vtk/vtk/-/issues/18266
+  cmake -B build -S ParaView-v${pkgver/R/-R} -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_INSTALL_RPATH=ON \
+-DPARAVIEW_ENABLE_ADIOS2=ON \
+-DPARAVIEW_ENABLE_FFMPEG=ON \
+-DPARAVIEW_ENABLE_FIDES=ON \
+-DPARAVIEW_ENABLE_GDAL=ON \
+-DPARAVIEW_ENABLE_LAS=ON \
+-DPARAVIEW_ENABLE_MOTIONFX=ON \
+-DPARAVIEW_ENABLE_PDAL=ON \
+-DPARAVIEW_ENABLE_RAYTRACING=ON \
+-DPARAVIEW_ENABLE_VISITBRIDGE=ON \
+-DPARAVIEW_ENABLE_XDMF3=ON \
+-DPARAVIEW_USE_MPI=ON \
+-DPARAVIEW_USE_PYTHON=ON \
+-DPARAVIEW_VERSIONED_INSTALL=OFF \
+-DPARAVIEW_BUILD_WITH_EXTERNAL=ON \
+-DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
+-DVTKm_ENABLE_MPI=ON \
+-DVTK_MODULE_USE_EXTERNAL_VTK_pegtl=OFF \
+-Wno-dev
+  ninja -C build ${MAKEFLAGS}
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+  # Fix licenses install
+  mv "${pkgdir}"/usr/share/licenses/{ParaView,paraview}
+}

Copied: paraview/repos/community-staging-x86_64/vtk-comp-missing-includes.patch 
(from rev 984119, paraview/trunk/vtk-comp-missing-includes.patch)
===
--- community-staging-x86_64/vtk-comp-missing-includes.patch
(rev 0)
+++ community-staging-x86_64/vtk-comp-missing-includes.patch2021-07-23 
01:44:34 UTC (rev 984120)
@@ -0,0 +1,60 @@
+From e066c3f4fbbfe7470c6207db0fc3f3952db633cb Mon Sep 17 00:00:00 2001
+From: Mark Olesen 
+Date: Tue, 9 Feb 2021 15:19:10 +0100
+Subject: [PATCH] COMP: missing includes (clang)
+
+---
+ Common/Core/vtkGenericDataArrayLookupHelper.h   | 1 +
+ Common/DataModel/vtkPiecewiseFunction.cxx   | 1 +
+ Filters/HyperTree/vtkHyperTreeGridThreshold.cxx | 1 +
+ Rendering/Core/vtkColorTransferFunction.cxx | 1 +
+ 4 files changed, 4 insertions(+)
+
+diff --git a/Common/Core/vtkGenericDataArrayLookupHelper.h 
b/Common/Core/vtkGenericDataArrayLookupHelper.h
+index ab9d57248f8..202aaa27f4a 100644
+--- a/Common/Core/vtkGenericDataArrayLookupHelper.h
 b/Common/Core/vtkGenericDataArrayLookupHelper.h
+@@ -25,6 +25,7 @@
+ #include "vtkIdList.h"
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ 
+diff --git a/Common/DataModel/vtkPiecewiseFunction.cxx 
b/Common/DataModel/vtkPiecewiseFunction.cxx
+index 

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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 01:44:29
  Author: archange
Revision: 984119

netcdf 4.8.0 + hdf5 1.12.1 rebuilds

Also enable ADIOS2, FIDES and LAS.
Clean some build flags.

Modified:
  paraview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-23 01:00:24 UTC (rev 984118)
+++ PKGBUILD2021-07-23 01:44:29 UTC (rev 984119)
@@ -8,59 +8,64 @@
 pkgname=${_pkg}
 #-${_mpi}
 pkgver=5.9.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
 arch=(x86_64)
 url="https://www.paraview.org;
 license=(BSD custom)
 depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
- ospray python-numpy cgns protobuf
+ adios2 liblas ospray pdal python-numpy cgns protobuf
  double-conversion expat freetype2 gdal gl2ps glew hdf5 libjpeg jsoncpp
  libjsoncpp.so libharu libxml2 lz4 xz python-mpi4py netcdf libogg
- libpng pdal pugixml libtheora libtiff zlib)
+ libpng pugixml libtheora libtiff zlib)
 optdepends=(python-matplotlib python-pandas)
 makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen utf8cpp)
 # pegtl https://gitlab.kitware.com/vtk/vtk/-/issues/18151
 conflicts=(vtk)
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz"
+source=(${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz
 vtk-comp-missing-includes.patch)
 sha256sums=('0d486cb6fbf55e428845c9650486f87466efcb3155e40489182a7ea85dfd4c8d'
 'c400753e386601008a2ed0269a58be76f06cc3c084f2dd48e87f6f04e8eca77f')
 
 prepare() {
-cd ParaView-v${pkgver/R/-R}
-patch -Np1 -d VTK <../vtk-comp-missing-includes.patch
-# We have a patched libharu
-sed -i "s|2.4.0|2.3.0|" VTK/ThirdParty/libharu/CMakeLists.txt
+  cd ParaView-v${pkgver/R/-R}
+  # We have a patched libharu
+  sed -i "s|2.4.0|2.3.0|" VTK/ThirdParty/libharu/CMakeLists.txt
+  # Missing includes with GCC11
+  patch -p1 -d VTK <../vtk-comp-missing-includes.patch
+  # Fix build with HDF5 1.12.1, 
https://gitlab.kitware.com/vtk/vtk/-/issues/18265
+  sed -i 's/typedef int hid_t;/typedef int64_t hid_t;/' 
VTK/ThirdParty/xdmf3/vtkxdmf3/core/XdmfHDF5Controller.hpp
 }
 
 build() {
-cmake -B build -S ParaView-v${pkgver/R/-R} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_GDAL=ON \
--DPARAVIEW_ENABLE_MOTIONFX=ON \
--DPARAVIEW_ENABLE_PDAL=ON \
--DPARAVIEW_ENABLE_RAYTRACING=ON \
--DPARAVIEW_ENABLE_VISITBRIDGE=ON \
--DPARAVIEW_ENABLE_XDMF3=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_PYTHON=ON \
--DPARAVIEW_BUILD_WITH_EXTERNAL=ON \
--DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
--DVTKm_ENABLE_MPI=ON \
--DVTK_MODULE_ENABLE_VTK_IOGDAL=YES \
--DVTK_MODULE_ENABLE_VTK_IOPDAL=YES \
--DVTK_MODULE_USE_EXTERNAL_VTK_pegtl=OFF \
--GNinja
-
-ninja -C build ${MAKEFLAGS}
+  # LICENSEDIR blocked by https://gitlab.kitware.com/vtk/vtk/-/issues/18266
+  cmake -B build -S ParaView-v${pkgver/R/-R} -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_INSTALL_RPATH=ON \
+-DPARAVIEW_ENABLE_ADIOS2=ON \
+-DPARAVIEW_ENABLE_FFMPEG=ON \
+-DPARAVIEW_ENABLE_FIDES=ON \
+-DPARAVIEW_ENABLE_GDAL=ON \
+-DPARAVIEW_ENABLE_LAS=ON \
+-DPARAVIEW_ENABLE_MOTIONFX=ON \
+-DPARAVIEW_ENABLE_PDAL=ON \
+-DPARAVIEW_ENABLE_RAYTRACING=ON \
+-DPARAVIEW_ENABLE_VISITBRIDGE=ON \
+-DPARAVIEW_ENABLE_XDMF3=ON \
+-DPARAVIEW_USE_MPI=ON \
+-DPARAVIEW_USE_PYTHON=ON \
+-DPARAVIEW_VERSIONED_INSTALL=OFF \
+-DPARAVIEW_BUILD_WITH_EXTERNAL=ON \
+-DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
+-DVTKm_ENABLE_MPI=ON \
+-DVTK_MODULE_USE_EXTERNAL_VTK_pegtl=OFF \
+-Wno-dev
+  ninja -C build ${MAKEFLAGS}
 }
 
 package() {
-DESTDIR="${pkgdir}" ninja -C build install
-# Fix licenses install
-mv "${pkgdir}"/usr/share/licenses/{ParaView,paraview}
+  DESTDIR="${pkgdir}" ninja -C build install
+  # Fix licenses install
+  mv "${pkgdir}"/usr/share/licenses/{ParaView,paraview}
 }



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 01:00:24
  Author: archange
Revision: 984118

archrelease: copy trunk to community-staging-x86_64

Added:
  adios2/repos/community-staging-x86_64/
  adios2/repos/community-staging-x86_64/PKGBUILD
(from rev 984117, adios2/trunk/PKGBUILD)

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

Copied: adios2/repos/community-staging-x86_64/PKGBUILD (from rev 984117, 
adios2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-23 01:00:24 UTC (rev 984118)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=adios2
+pkgver=2.7.1
+pkgrel=1
+pkgdesc="The Adaptable Input/Output System version 2"
+arch=(x86_64)
+url="https://adios2.readthedocs.io/en/latest/;
+license=(Apache)
+depends=(blosc bzip2 glibc gcc-libs hdf5 libfabric libpng mgard nlohmann-json
+ openmpi pugixml pybind11 sz yaml-cpp zeromq zfp zlib)
+makedepends=(cmake gcc-fortran gtest python python-mpi4py python-numpy)
+source=(https://github.com/ornladios/ADIOS2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
adios2-gcc11.patch::https://patch-diff.githubusercontent.com/raw/ornladios/ADIOS2/pull/2710.patch)
+sha256sums=('c8e237fd51f49d8a62a0660db12b72ea5067512aa7970f3fcf80b70e3f87ca3e'
+'8d301e8232baf4049b547f22bd73774309662017a62dac36360d2965907062bf')
+
+prepare() {
+  cd ${pkgname^^}-${pkgver}
+  patch -p1 < ../adios2-gcc11.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname^^}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DADIOS2_USE_EXTERNAL_DEPENDENCIES=ON \
+-DADIOS2_BUILD_EXAMPLES=OFF \
+-DMGARD_INCLUDE_DIR=/usr/include/mgard
+  make VERBOSE=1 -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 01:00:15
  Author: archange
Revision: 984117

Initial addition of adios2 to [community], for VTK/ParaView

Added:
  adios2/
  adios2/repos/
  adios2/trunk/
  adios2/trunk/PKGBUILD

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

Added: adios2/trunk/PKGBUILD
===
--- adios2/trunk/PKGBUILD   (rev 0)
+++ adios2/trunk/PKGBUILD   2021-07-23 01:00:15 UTC (rev 984117)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=adios2
+pkgver=2.7.1
+pkgrel=1
+pkgdesc="The Adaptable Input/Output System version 2"
+arch=(x86_64)
+url="https://adios2.readthedocs.io/en/latest/;
+license=(Apache)
+depends=(blosc bzip2 glibc gcc-libs hdf5 libfabric libpng mgard nlohmann-json
+ openmpi pugixml pybind11 sz yaml-cpp zeromq zfp zlib)
+makedepends=(cmake gcc-fortran gtest python python-mpi4py python-numpy)
+source=(https://github.com/ornladios/ADIOS2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
adios2-gcc11.patch::https://patch-diff.githubusercontent.com/raw/ornladios/ADIOS2/pull/2710.patch)
+sha256sums=('c8e237fd51f49d8a62a0660db12b72ea5067512aa7970f3fcf80b70e3f87ca3e'
+'8d301e8232baf4049b547f22bd73774309662017a62dac36360d2965907062bf')
+
+prepare() {
+  cd ${pkgname^^}-${pkgver}
+  patch -p1 < ../adios2-gcc11.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname^^}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DADIOS2_USE_EXTERNAL_DEPENDENCIES=ON \
+-DADIOS2_BUILD_EXAMPLES=OFF \
+-DMGARD_INCLUDE_DIR=/usr/include/mgard
+  make VERBOSE=1 -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in mgard/repos/community-x86_64 (3 files)

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 00:48:58
  Author: archange
Revision: 984116

archrelease: copy trunk to community-x86_64

Added:
  mgard/repos/community-x86_64/PKGBUILD
(from rev 984115, mgard/trunk/PKGBUILD)
  mgard/repos/community-x86_64/mgard-fix-includedir.patch
(from rev 984115, mgard/trunk/mgard-fix-includedir.patch)
Deleted:
  mgard/repos/community-x86_64/PKGBUILD

+
 PKGBUILD   |   67 ---
 mgard-fix-includedir.patch |   13 
 2 files changed, 51 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-23 00:48:53 UTC (rev 984115)
+++ PKGBUILD2021-07-23 00:48:58 UTC (rev 984116)
@@ -1,29 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=mgard
-pkgver=0.1.0
-pkgrel=1
-pkgdesc="MultiGrid Adaptive Reduction of Data"
-arch=(x86_64)
-url="https://github.com/CODARcode/MGARD;
-license=(Apache)
-depends=(glibc zlib zstd)
-makedepends=(cmake)
-source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('254cc77ca678c746c3808d7fb76c289fce17f2cbb84a1892d6cd2ea078be62f0')
-
-build() {
-  cmake -B build -S ${pkgname^^}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr
-  make -C build
-}
-
-check() {
-  cd build
-  # https://github.com/CODARcode/MGARD/issues/105
-  ctest -v || warning "Tests failed"
-}
-
-package() {
-  make -C build DESTDIR="${pkgdir}" install
-}

Copied: mgard/repos/community-x86_64/PKGBUILD (from rev 984115, 
mgard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-23 00:48:58 UTC (rev 984116)
@@ -0,0 +1,38 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=mgard
+pkgver=0.1.0
+pkgrel=2
+pkgdesc="MultiGrid Adaptive Reduction of Data"
+arch=(x86_64)
+url="https://github.com/CODARcode/MGARD;
+license=(Apache)
+depends=(glibc zlib zstd)
+makedepends=(cmake)
+source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+mgard-fix-includedir.patch)
+sha256sums=('254cc77ca678c746c3808d7fb76c289fce17f2cbb84a1892d6cd2ea078be62f0'
+'347a5ef495c1e423a590b53b080a9c4874e425e64fa2e154eca35534eae07d6d')
+
+prepare() {
+  cd ${pkgname^^}-${pkgver}
+  patch -p1 < ../mgard-fix-includedir.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname^^}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make -C build
+}
+
+check() {
+  cd build
+  # https://github.com/CODARcode/MGARD/issues/105
+  ctest -v --output-on-failure || echo "Tests failed"
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+  # Uneeded file
+  rm "${pkgdir}"/usr/include/mgard/MGARDConfig.h.in
+}

Copied: mgard/repos/community-x86_64/mgard-fix-includedir.patch (from rev 
984115, mgard/trunk/mgard-fix-includedir.patch)
===
--- mgard-fix-includedir.patch  (rev 0)
+++ mgard-fix-includedir.patch  2021-07-23 00:48:58 UTC (rev 984116)
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a848101..a04c158 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -204,7 +204,7 @@ install(
+   include/TensorMeshHierarchy.hpp
+ ${MGARD_CUDA_HEADER}
+   "${PROJECT_BINARY_DIR}/include/MGARDConfig.h"
+-  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
++  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/mgard
+ )
+ install(
+   DIRECTORY



[arch-commits] Commit in mgard/trunk (PKGBUILD mgard-fix-includedir.patch)

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Friday, July 23, 2021 @ 00:48:53
  Author: archange
Revision: 984115

Fix include dir for all files

Added:
  mgard/trunk/mgard-fix-includedir.patch
Modified:
  mgard/trunk/PKGBUILD

+
 PKGBUILD   |   17 +
 mgard-fix-includedir.patch |   13 +
 2 files changed, 26 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:52:39 UTC (rev 984114)
+++ PKGBUILD2021-07-23 00:48:53 UTC (rev 984115)
@@ -2,7 +2,7 @@
 
 pkgname=mgard
 pkgver=0.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="MultiGrid Adaptive Reduction of Data"
 arch=(x86_64)
 url="https://github.com/CODARcode/MGARD;
@@ -9,9 +9,16 @@
 license=(Apache)
 depends=(glibc zlib zstd)
 makedepends=(cmake)
-source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('254cc77ca678c746c3808d7fb76c289fce17f2cbb84a1892d6cd2ea078be62f0')
+source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+mgard-fix-includedir.patch)
+sha256sums=('254cc77ca678c746c3808d7fb76c289fce17f2cbb84a1892d6cd2ea078be62f0'
+'347a5ef495c1e423a590b53b080a9c4874e425e64fa2e154eca35534eae07d6d')
 
+prepare() {
+  cd ${pkgname^^}-${pkgver}
+  patch -p1 < ../mgard-fix-includedir.patch
+}
+
 build() {
   cmake -B build -S ${pkgname^^}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr
@@ -21,9 +28,11 @@
 check() {
   cd build
   # https://github.com/CODARcode/MGARD/issues/105
-  ctest -v || echo "Tests failed"
+  ctest -v --output-on-failure || echo "Tests failed"
 }
 
 package() {
   make -C build DESTDIR="${pkgdir}" install
+  # Uneeded file
+  rm "${pkgdir}"/usr/include/mgard/MGARDConfig.h.in
 }

Added: mgard-fix-includedir.patch
===
--- mgard-fix-includedir.patch  (rev 0)
+++ mgard-fix-includedir.patch  2021-07-23 00:48:53 UTC (rev 984115)
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a848101..a04c158 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -204,7 +204,7 @@ install(
+   include/TensorMeshHierarchy.hpp
+ ${MGARD_CUDA_HEADER}
+   "${PROJECT_BINARY_DIR}/include/MGARDConfig.h"
+-  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
++  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/mgard
+ )
+ install(
+   DIRECTORY



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

2021-07-22 Thread Sergej Pupykin via arch-commits
Date: Thursday, July 22, 2021 @ 22:52:39
  Author: spupykin
Revision: 984114

archrelease: copy trunk to community-x86_64

Added:
  squid/repos/community-x86_64/PKGBUILD
(from rev 984113, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid-rotate.service
(from rev 984113, squid/trunk/squid-rotate.service)
  squid/repos/community-x86_64/squid-rotate.timer
(from rev 984113, squid/trunk/squid-rotate.timer)
  squid/repos/community-x86_64/squid.pam
(from rev 984113, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.sysusers
(from rev 984113, squid/trunk/squid.sysusers)
  squid/repos/community-x86_64/squid.tmpfiles
(from rev 984113, squid/trunk/squid.tmpfiles)
Deleted:
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid-rotate.service
  squid/repos/community-x86_64/squid-rotate.timer
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.sysusers
  squid/repos/community-x86_64/squid.tmpfiles

--+
 PKGBUILD |  216 -
 squid-rotate.service |   18 ++--
 squid-rotate.timer   |   20 ++--
 squid.pam|8 -
 squid.sysusers   |2 
 squid.tmpfiles   |6 -
 6 files changed, 135 insertions(+), 135 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:52:25 UTC (rev 984113)
+++ PKGBUILD2021-07-22 22:52:39 UTC (rev 984114)
@@ -1,108 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Mark Coolen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=squid
-pkgver=4.15
-pkgrel=1
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'perl' 'libltdl' 'libcap' 'nettle' 'gnutls' 'libnsl' 
'libxml2')
-makedepends=('krb5')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-   'etc/squid/cachemgr.conf'
-   'etc/squid/errorpage.css'
-   'etc/squid/mime.conf')
-validpgpkeys=('EA31CC5E9488E5168D2DCC5EB268E706FF5CF463'
- 'B06884EDB779C89B044E64E3CD6DBF8EF3B17D3E')
-source=("http://www.squid-cache.org/Versions/v4/$pkgname-$pkgver.tar.xz"{,.asc}
-'squid.pam'
-'squid.tmpfiles'
-'squid.sysusers'
-'squid-rotate.service'
-'squid-rotate.timer')
-sha256sums=('b693a4e5ab2811a8a854f60de0a62afbbf3a952bb1d047952c9ae01321f84a25'
-'SKIP'
-'11fb388f8679fd6461e0de006810ea608a3686fffda16904b0ed71f412be499c'
-'495f54e51f6ec1e4dce87090d76718aea1eb37559c4439d876dd39598163062a'
-'c903eb86e6968b9d3bd0a9ad3335e8ce76a718b6217251e9dd7e66d5cf1ac94a'
-'3a97aa6bf6dcdc427e73bb2f36afdeaaf2bbf7dd2c0bbb7f1a948850198a8b7c'
-'8bc77fa1f653a17a4956feac042be9577ba30a8a43480b443fbd67640ae711ee')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|/var/run/|/run/|g' tools/systemd/squid.service
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---datadir=/usr/share/squid \
---sysconfdir=/etc/squid \
---libexecdir=/usr/lib/squid \
---localstatedir=/var \
---with-logdir=/var/log/squid \
---with-pidfile=/run/squid.pid \
---enable-auth \
---enable-auth-basic \
---enable-auth-ntlm \
---enable-auth-digest \
---enable-auth-negotiate \
---enable-removal-policies="lru,heap" \
---enable-storeio="aufs,ufs,diskd,rock" \
---enable-delay-pools \
---enable-arp-acl \
---with-openssl \
---enable-snmp \
---enable-linux-netfilter \
---enable-ident-lookups \
---enable-useragent-log \
---enable-cache-digests \
---enable-referer-log \
---enable-arp-acl \
---enable-htcp \
---enable-carp \
---enable-epoll \
---with-large-files \
---enable-arp-acl \
---with-default-user=proxy \
---enable-async-io \
---enable-truncate \
---enable-icap-client \
---enable-ssl-crtd \
---disable-arch-native \
---disable-strict-error-checking \
---enable-wccpv2
-  make
-}
-
-package() {
-  cd "$srcdir"
-
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-
-  chmod 07755 "$pkgdir"/usr/lib/squid/basic_pam_auth
-  
-  install -Dm644 "$srcdir/squid.pam" "$pkgdir/usr/lib/pam.d/squid"
-  install -Dm644 "$srcdir/squid.tmpfiles" 
"$pkgdir/usr/lib/tmpfiles.d/squid.conf"
-  install -Dm644 "$srcdir/squid.sysusers" 
"$pkgdir/usr/lib/sysusers.d/squid.conf"
-  install -Dm644 "$pkgname-$pkgver/tools/systemd/squid.service" \
-"$pkgdir/usr/lib/systemd/system/squid.service"
-  install -Dm644 "$srcdir/squid-rotate.service" \
-"$pkgdir/usr/lib/systemd/system/squid-rotate.service"
-  install -Dm644 "$srcdir/squid-rotate.timer" \
-"$pkgdir/usr/lib/systemd/system/squid-rotate.timer"
-#  install -dm755 "$pkgdir/usr/lib/systemd/system/timers.target.wants"
-#  ln -s ../squid-rotate.timer \
-#

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

2021-07-22 Thread Sergej Pupykin via arch-commits
Date: Thursday, July 22, 2021 @ 22:52:25
  Author: spupykin
Revision: 984113

upgpkg: squid 4.16-1

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:50:00 UTC (rev 984112)
+++ PKGBUILD2021-07-22 22:52:25 UTC (rev 984113)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Piche 
 
 pkgname=squid
-pkgver=4.15
+pkgver=4.16
 pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64')
@@ -25,7 +25,7 @@
 'squid.sysusers'
 'squid-rotate.service'
 'squid-rotate.timer')
-sha256sums=('b693a4e5ab2811a8a854f60de0a62afbbf3a952bb1d047952c9ae01321f84a25'
+sha256sums=('7e00e891757c1c02dae546c9898f440c6031b684d8c243d6edab529076e3ba63'
 'SKIP'
 '11fb388f8679fd6461e0de006810ea608a3686fffda16904b0ed71f412be499c'
 '495f54e51f6ec1e4dce87090d76718aea1eb37559c4439d876dd39598163062a'



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Thursday, July 22, 2021 @ 22:50:00
  Author: archange
Revision: 984112

archrelease: copy trunk to community-staging-x86_64

Added:
  vtk/repos/community-staging-x86_64/
  vtk/repos/community-staging-x86_64/.contrib
(from rev 984111, vtk/trunk/.contrib)
  vtk/repos/community-staging-x86_64/PKGBUILD
(from rev 984111, vtk/trunk/PKGBUILD)
  vtk/repos/community-staging-x86_64/vtk-freetype-2.10.3.patch
(from rev 984111, vtk/trunk/vtk-freetype-2.10.3.patch)

---+
 .contrib  |6 +
 PKGBUILD  |  145 
 vtk-freetype-2.10.3.patch |   18 +
 3 files changed, 169 insertions(+)

Copied: vtk/repos/community-staging-x86_64/.contrib (from rev 984111, 
vtk/trunk/.contrib)
===
--- community-staging-x86_64/.contrib   (rev 0)
+++ community-staging-x86_64/.contrib   2021-07-22 22:50:00 UTC (rev 984112)
@@ -0,0 +1,6 @@
+# Contributor: Christofer Bertonha 
+# Contributor: leepesjee 
+# Contributor: Olivier Medoc
+# Contributor: ignotus
+# Contributor: Fabian Moser
+# Contributor: djscholl

Copied: vtk/repos/community-staging-x86_64/PKGBUILD (from rev 984111, 
vtk/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-22 22:50:00 UTC (rev 984112)
@@ -0,0 +1,145 @@
+# Maintainer: Evgeniy Alekseev 
+# Maintainer: Bruno Pagani 
+# Contributor: Ray Rashif 
+# Contributor: Andrzej Giniewicz 
+# Contributor: Thomas Dziedzic 
+
+pkgname=vtk
+pkgver=8.2.0
+pkgrel=21
+pkgdesc="A software system for 3D computer graphics, image processing, and 
visualization"
+arch=(x86_64)
+url="https://www.vtk.org/;
+license=(BSD)
+depends=(gcc-libs double-conversion)
+makedepends=(cmake boost doxygen ffmpeg gdal gnuplot
+ java-environment openmpi python-matplotlib qt5-base
+ qt5-tools qt5-webkit qt5-x11extras tk unixodbc wget
+ double-conversion eigen expat freetype2 glew hdf5
+ libjpeg jsoncpp libxml2 lz4 xz python-mpi4py netcdf
+ libogg pdal libpng libtheora libtiff zlib
+ sqlite)
+optdepends=('gnuplot: plotting tools'
+'graphviz: drawing tools'
+'java-runtime: java bindings'
+'python: python bindings'
+'python-mpi4py: OpenMPI python support'
+'python-matplotlib: for Matplotlib rendering'
+'openmpi: OpenMPI support'
+'qt5-x11extras'
+'qt5-webkit: WebKit support'
+'tk: tcl bindings'
+ffmpeg
+gdal
+glew
+hdf5
+jsoncpp
+lz4
+netcdf
+pdal
+sqlite
+unixodbc)
+source=("${url}/files/release/${pkgver%.*}/VTK-${pkgver}.tar.gz"
+"${url}/files/release/${pkgver%.*}/VTKData-${pkgver}.tar.gz"
+"${url}/files/release/${pkgver%.*}/VTKLargeData-${pkgver}.tar.gz"
+
vtk-python-3.8.patch::"https://gitlab.kitware.com/vtk/vtk/merge_requests/5883.patch;
+
vtk-gcc10.patch::"https://gitlab.kitware.com/vtk/vtk/-/commit/a9079bdc.patch;
+
vtk-qt5.15.patch::"https://gitlab.kitware.com/vtk/vtk/-/commit/797f2869.patch;
+vtk-freetype-2.10.3.patch)
+options=(staticlibs)
+sha512sums=('521bd4dabedbc24b0e80a314a34ecd7554b04af28a7973245e3a9cf99a09b995d1b8ac42305c8e53369f226a0a6da3cdb29105ba2c90b46492736ef717760286'
+
'517d0f6dfdb0c61f59df933f06d3a28c8a48ea684aaff311456213fe493e2a20128886144325fc4edfa376b2d375a2dae6c60ad6e3d5d2f4a7b0ac1d8545c87b'
+
'8a7ea3d5870b1e4ccb31c77b4c270d00208349da1b2938e957210db3ec1449b678c66edc2faee1d4514aca6d725f642abc91e10ab0c151f6743cad1c53485588'
+
'05a367dbb21c95f6e03e30c1c520357f60c54074d341b592de8161280c9b90e9e70c19f6b474921cc2f4d2ec17d08a2e76d7dc94c8cef111c72a241684a57b34'
+
'b62127f078686f24501bc3ba2954bdcec846e7d7d1bdaf5f1b9d47ff86881035b81d6e065472228d46521a6ecafbc113adf3a8b8a97ab01a70fe88f47a971d3d'
+
'ce4c8822ca4a18f0aa94991ea4df27b340e30ca38d8931cb2929c2226e8cb3a34b15c4ebe4fcb2fa5f940ab132ffe925fdef0236429face93a46d633f272c329'
+
'01df3947425b510f9c64e72ab2020b02f28141421ad29be94bf118cd7b56cc22702ae329db05bc336284d3edcf3b71d254de10a2784296c691447ee356c76683')
+
+prepare() {
+  cd VTK-${pkgver}
+
+  # Fix build with python 3.8
+  patch -p1 -i ../vtk-python-3.8.patch
+
+  # Fix build with GCC 10
+  patch -d ThirdParty/exodusII/vtkexodusII -p1 -i "$srcdir"/vtk-gcc10.patch
+  sed -e 's|REGEX MATCH \"\[3-9\]|REGEX MATCH \"[1-9][0-9]|' -i 
CMake/VTKGenerateExportHeader.cmake
+
+  # Fix build with Qt 5.15
+  patch -p1 -i ../vtk-qt5.15.patch
+
+  # Fix build with Java 12
+  sed -i 's/VTK_JAVA_SOURCE_VERSION "1.6"/VTK_JAVA_SOURCE_VERSION "1.7"/
+  s/VTK_JAVA_TARGET_VERSION 

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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Thursday, July 22, 2021 @ 22:49:55
  Author: archange
Revision: 984111

netcdf 4.8.0 + hdf5 1.12.1 rebuild

Modified:
  vtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:47:09 UTC (rev 984110)
+++ PKGBUILD2021-07-22 22:49:55 UTC (rev 984111)
@@ -6,7 +6,7 @@
 
 pkgname=vtk
 pkgver=8.2.0
-pkgrel=20
+pkgrel=21
 pkgdesc="A software system for 3D computer graphics, image processing, and 
visualization"
 arch=(x86_64)
 url="https://www.vtk.org/;
@@ -50,9 +50,9 @@
 
sha512sums=('521bd4dabedbc24b0e80a314a34ecd7554b04af28a7973245e3a9cf99a09b995d1b8ac42305c8e53369f226a0a6da3cdb29105ba2c90b46492736ef717760286'
 
'517d0f6dfdb0c61f59df933f06d3a28c8a48ea684aaff311456213fe493e2a20128886144325fc4edfa376b2d375a2dae6c60ad6e3d5d2f4a7b0ac1d8545c87b'
 
'8a7ea3d5870b1e4ccb31c77b4c270d00208349da1b2938e957210db3ec1449b678c66edc2faee1d4514aca6d725f642abc91e10ab0c151f6743cad1c53485588'
-
'0dcc47e66b758fc0db5c0bd84ebc82a6bd4b788df477d53e159aa3d02ea736333db8b4ef1cbfa222d4d322ff26ed5e725e1aed0083e6193626aa2deb96f0f3f3'
-
'5432ae62773377301a6709de0b789b1d5a459e467e4796b3d275c8a1cec6962fd8ebf404f8f11ed63a8d525c2d5a8dd163080d8fd3e483f3a5e06739133acd8f'
-
'a82df18ed019fe798b740c707e6511ea28b200ddd887054346508ead0aa91a847de15aa5f668c9cb87792424d2ead3600e59f7acc76e003477bc5f630cbbadaa'
+
'05a367dbb21c95f6e03e30c1c520357f60c54074d341b592de8161280c9b90e9e70c19f6b474921cc2f4d2ec17d08a2e76d7dc94c8cef111c72a241684a57b34'
+
'b62127f078686f24501bc3ba2954bdcec846e7d7d1bdaf5f1b9d47ff86881035b81d6e065472228d46521a6ecafbc113adf3a8b8a97ab01a70fe88f47a971d3d'
+
'ce4c8822ca4a18f0aa94991ea4df27b340e30ca38d8931cb2929c2226e8cb3a34b15c4ebe4fcb2fa5f940ab132ffe925fdef0236429face93a46d633f272c329'
 
'01df3947425b510f9c64e72ab2020b02f28141421ad29be94bf118cd7b56cc22702ae329db05bc336284d3edcf3b71d254de10a2784296c691447ee356c76683')
 
 prepare() {
@@ -74,6 +74,9 @@
 
   # Fix build with FreeType 2.10.3
   patch -p1 -i ../vtk-freetype-2.10.3.patch
+
+  # Fix build with HDF5 1.12.1
+  sed -i 's/typedef int hid_t;/typedef int64_t hid_t;/' 
ThirdParty/xdmf3/vtkxdmf3/core/XdmfHDF5Controller.hpp
 }
 
 build() {



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:47:09
  Author: shibumi
Revision: 984110

archrelease: copy trunk to community-x86_64

Added:
  fulcio/repos/community-x86_64/
  fulcio/repos/community-x86_64/PKGBUILD
(from rev 984109, fulcio/trunk/PKGBUILD)

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

Copied: fulcio/repos/community-x86_64/PKGBUILD (from rev 984109, 
fulcio/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-07-22 22:47:09 UTC (rev 984110)
@@ -0,0 +1,36 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: Christian Rebischke 
+
+pkgname=fulcio
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="free Root-CA for code signing certs - issuing certificates based on 
an OIDC email address."
+arch=('x86_64')
+url="https://github.com/sigstore/fulcio;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sigstore/fulcio/archive/refs/tags/${pkgver}.tar.gz;)
+sha512sums=('fef26255c3b18e91d4502f0e9ae0152fadabcc8508c1f9399faee0492d054664d16e3dfed3dc795c442e85f9a5b01d95573727162c5222d077f1d41866d70b7b')
+b2sums=('c41641723c65ea24937ceb4183506ef0db11432e8dc65c17d4b18b823fd835977339de657e403ade84ca46f8e5b557aaa98676ad14fdad1757ce5500ee46c193')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  mkdir build
+  go build -o build/ ./...
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 build/fulcio "${pkgdir}/usr/bin/${pkgname}"
+}



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:47:04
  Author: shibumi
Revision: 984109

upgpkg: fulcio 0.1.0-1

Modified:
  fulcio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:47:00 UTC (rev 984108)
+++ PKGBUILD2021-07-22 22:47:04 UTC (rev 984109)
@@ -10,9 +10,9 @@
 license=('Apache')
 depends=('glibc')
 makedepends=('go' 'git')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sigstore/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('763c2a8ac42518771ad47b6ec3c5ce16b47a7cffc265cd36397c81165fef89fd04fbcdbdff26bb7ed5267b46227e56049971acfa97c61ed7fe7a0d0d0ab5')
-b2sums=('2ad7137186782743269ed4c1e1b03cd7f39e552d3a89d596053d07c952c599a7c23d38de60f68eece8162c67610b07cb19156b3568bd635b73f0fc535e865724')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sigstore/fulcio/archive/refs/tags/${pkgver}.tar.gz;)
+sha512sums=('fef26255c3b18e91d4502f0e9ae0152fadabcc8508c1f9399faee0492d054664d16e3dfed3dc795c442e85f9a5b01d95573727162c5222d077f1d41866d70b7b')
+b2sums=('c41641723c65ea24937ceb4183506ef0db11432e8dc65c17d4b18b823fd835977339de657e403ade84ca46f8e5b557aaa98676ad14fdad1757ce5500ee46c193')
 
 build(){
   cd "${pkgname}-${pkgver}"



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

2021-07-22 Thread Sergej Pupykin via arch-commits
Date: Thursday, July 22, 2021 @ 22:47:00
  Author: spupykin
Revision: 984108

archrelease: copy trunk to community-x86_64

Added:
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 984107, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 984107, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/print-deps.sh
(from rev 984107, ejabberd/trunk/print-deps.sh)
  ejabberd/repos/community-x86_64/sysuser.conf
(from rev 984107, ejabberd/trunk/sysuser.conf)
Deleted:
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/print-deps.sh
  ejabberd/repos/community-x86_64/sysuser.conf

+
 PKGBUILD   |  314 +--
 ejabberd.logrotate |   24 +--
 print-deps.sh  |   58 -
 sysuser.conf   |4 
 4 files changed, 200 insertions(+), 200 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:46:43 UTC (rev 984107)
+++ PKGBUILD2021-07-22 22:47:00 UTC (rev 984108)
@@ -1,157 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Jeff 'codemac' Mickey 
-# Contributor: Alexander Rødseth 
-
-pkgname=ejabberd
-pkgver=21.04
-pkgrel=2
-pkgdesc="Jabber server written in Erlang"
-arch=('x86_64')
-url="https://www.ejabberd.im/;
-license=("GPL")
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc'
-'libyaml' 'sqlite' 'gd')
-makedepends=('git' 'rebar' 'hevea' 'texlive-bin' 'texlive-core' 
'texlive-latexextra')
-optdepends=('gsfonts: for captcha'
-   'imagemagick: for captcha')
-backup=('etc/ejabberd/ejabberd.yml'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-options=(emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
-   
"base64url::git://github.com/dvv/base64url#commit=bf1360685da704c8453aba2268c4698c959d2ba4"
-   
"cache_tab::git://github.com/processone/cache_tab#commit=b05040ba67dc4232f3bfda424519d8583ba26260"
-   
"eimp::git://github.com/processone/eimp#commit=b67754d5a2d56ff44f73e5025124c111ff1230e5"
-   
"ejabberd_po::git://github.com/processone/ejabberd-po#commit=e909d888484fa0f548aa3128dff192a9e72ba3e9"
-   
"elixir::git://github.com/elixir-lang/elixir#commit=867da6f876c48279823a41a33030c95ef37379b2"
-   
"epam::git://github.com/processone/epam#commit=a282ed4f2fb69b9f4a0457a111867a88f366ae4f"
-   
"eredis::git://github.com/wooga/eredis#commit=cbc013f516e464706493c01662e5e9dd82d1db01"
-   
"esip::git://github.com/processone/esip#commit=446dbe5cedeb7dec59ddbfbed4cc96c98cf463be"
-   
"ezlib::git://github.com/processone/ezlib#commit=e9ded4975b0e9fdbf0195f7ebce857031e8958d8"
-   
"fast_tls::git://github.com/processone/fast_tls#commit=9b88fbec57ec8dae55269fba49fcbb54e974404d"
-   
"fast_xml::git://github.com/processone/fast_xml#commit=da1ba636b944b0a09695ce29184da17c71886f15"
-   
"fast_yaml::git://github.com/processone/fast_yaml#commit=084dc925eb5cfc2d3ac475b08145cc164437fdf6"
-   
"goldrush::git://github.com/DeadZen/goldrush.git#commit=8f1b715d36b650ec1e1f5612c00e28af6ab0de82"
-   
"idna::git://github.com/benoitc/erlang-idna#commit=6cff72747821110169ecfac871b0c69e5064afff"
-   
"jiffy::git://github.com/davisp/jiffy#commit=6dadc0cd22b06e2b1972ee8aba5708c478418926"
-   
"jose::git://github.com/potatosalad/erlang-jose#commit=5ad99d03c5381ec68a9576c81ed4e9312fea73e0"
-   
"lager::git://github.com/erlang-lager/lager#commit=4ffdf0dbef53304bc0e958a00776bf0650de8c8b"
-   
"luerl::git://github.com/rvirding/luerl#commit=01fa43a1a5d68becfe07236a9a71505039474108"
-   
"mqtree::git://github.com/processone/mqtree#commit=d568635e6a04d9adfc01df52cb3dd41205b285a0"
-   
"p1_acme::git://github.com/processone/p1_acme#commit=437043eb37d1304ce125f3aa2d121373754b49c9"
-   
"p1_mysql::git://github.com/processone/p1_mysql#commit=5e0ccbc7f598f984f7be058188ed93d8d79eda6b"
-   
"p1_oauth2::git://github.com/processone/p1_oauth2#commit=94f76be16e21b924cbcf907905839887b0bd943e"
-   
"p1_pgsql::git://github.com/processone/p1_pgsql#commit=999ed99fed0a6a3720f2cfa154270201c827d7b8"
-   
"p1_utils::git://github.com/processone/p1_utils#commit=992b591e1c8b8894a7191676c7b10888e47ede92"
-   
"pkix::git://github.com/processone/pkix#commit=801962ef7660650f04be05321ccf10f057291050"
-   
"rebar_elixir_plugin::git://github.com/processone/rebar_elixir_plugin#commit=10614dfef5d10b7071f7181858149259e50159f6"
-   
"sqlite3::git://github.com/processone/erlang-sqlite3#commit=ca499cf5760ad7e0e7adeb99ec6893be1bf8712b"
-   
"stringprep::git://github.com/processone/stringprep#commit=1b8a3c2beb743f9d5fd4fffb58eb0cd8ea713400"
-   
"stun::git://github.com/processone/stun#commit=6177a7d063aa2f2c389080ea2b59510be0a236c7"
-   

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

2021-07-22 Thread Sergej Pupykin via arch-commits
Date: Thursday, July 22, 2021 @ 22:46:43
  Author: spupykin
Revision: 984107

upgpkg: ejabberd 21.07-1

Modified:
  ejabberd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:45:00 UTC (rev 984106)
+++ PKGBUILD2021-07-22 22:46:43 UTC (rev 984107)
@@ -3,8 +3,8 @@
 # Contributor: Alexander Rødseth 
 
 pkgname=ejabberd
-pkgver=21.04
-pkgrel=2
+pkgver=21.07
+pkgrel=1
 pkgdesc="Jabber server written in Erlang"
 arch=('x86_64')
 url="https://www.ejabberd.im/;
@@ -20,40 +20,40 @@
 options=(emptydirs)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;

"base64url::git://github.com/dvv/base64url#commit=bf1360685da704c8453aba2268c4698c959d2ba4"
-   
"cache_tab::git://github.com/processone/cache_tab#commit=b05040ba67dc4232f3bfda424519d8583ba26260"
-   
"eimp::git://github.com/processone/eimp#commit=b67754d5a2d56ff44f73e5025124c111ff1230e5"
-   
"ejabberd_po::git://github.com/processone/ejabberd-po#commit=e909d888484fa0f548aa3128dff192a9e72ba3e9"
+   
"cache_tab::git://github.com/processone/cache_tab#commit=e740b2f0baae4673d6a5f15ebda5b172227614cb"
+   
"eimp::git://github.com/processone/eimp#commit=85364f0f62bc69cfc27d0c281a259e1fc599a284"
+   
"ejabberd_po::git://github.com/processone/ejabberd-po#commit=01fe68faee55bb8ad25ca731a48767957fed7fd6"

"elixir::git://github.com/elixir-lang/elixir#commit=867da6f876c48279823a41a33030c95ef37379b2"
-   
"epam::git://github.com/processone/epam#commit=a282ed4f2fb69b9f4a0457a111867a88f366ae4f"
-   
"eredis::git://github.com/wooga/eredis#commit=cbc013f516e464706493c01662e5e9dd82d1db01"
-   
"esip::git://github.com/processone/esip#commit=446dbe5cedeb7dec59ddbfbed4cc96c98cf463be"
-   
"ezlib::git://github.com/processone/ezlib#commit=e9ded4975b0e9fdbf0195f7ebce857031e8958d8"
-   
"fast_tls::git://github.com/processone/fast_tls#commit=9b88fbec57ec8dae55269fba49fcbb54e974404d"
-   
"fast_xml::git://github.com/processone/fast_xml#commit=da1ba636b944b0a09695ce29184da17c71886f15"
-   
"fast_yaml::git://github.com/processone/fast_yaml#commit=084dc925eb5cfc2d3ac475b08145cc164437fdf6"
+   
"epam::git://github.com/processone/epam#commit=485aedb105c13c3c6763e5e5b86b9845cd4bec4a"
+   
"eredis::git://github.com/wooga/eredis#commit=9ad91f149310a7d002cb966f62b7e2c3330abb04"
+   
"esip::git://github.com/processone/esip#commit=5077cc7e93bf4c86fed277df04d3b1a6b97ecffe"
+   
"ezlib::git://github.com/processone/ezlib#commit=5f073300621729df417f833159929554bd483736"
+   
"fast_tls::git://github.com/processone/fast_tls#commit=181c6e249e6dbe6c9885f1424b20df003301698f"
+   
"fast_xml::git://github.com/processone/fast_xml#commit=e8bcdcad77d6f4e208ad9eedc06380e4da286fd6"
+   
"fast_yaml::git://github.com/processone/fast_yaml#commit=f4e92de652cb0bdd65de852e13cc628a403b11f8"

"goldrush::git://github.com/DeadZen/goldrush.git#commit=8f1b715d36b650ec1e1f5612c00e28af6ab0de82"

"idna::git://github.com/benoitc/erlang-idna#commit=6cff72747821110169ecfac871b0c69e5064afff"

"jiffy::git://github.com/davisp/jiffy#commit=6dadc0cd22b06e2b1972ee8aba5708c478418926"

"jose::git://github.com/potatosalad/erlang-jose#commit=5ad99d03c5381ec68a9576c81ed4e9312fea73e0"
-   
"lager::git://github.com/erlang-lager/lager#commit=4ffdf0dbef53304bc0e958a00776bf0650de8c8b"
+   
"lager::git://github.com/erlang-lager/lager#commit=c5447d2d85a0d446d41a79bffe0a6a66bd50c901"

"luerl::git://github.com/rvirding/luerl#commit=01fa43a1a5d68becfe07236a9a71505039474108"
-   
"mqtree::git://github.com/processone/mqtree#commit=d568635e6a04d9adfc01df52cb3dd41205b285a0"
-   
"p1_acme::git://github.com/processone/p1_acme#commit=437043eb37d1304ce125f3aa2d121373754b49c9"
-   
"p1_mysql::git://github.com/processone/p1_mysql#commit=5e0ccbc7f598f984f7be058188ed93d8d79eda6b"
-   
"p1_oauth2::git://github.com/processone/p1_oauth2#commit=94f76be16e21b924cbcf907905839887b0bd943e"
-   
"p1_pgsql::git://github.com/processone/p1_pgsql#commit=999ed99fed0a6a3720f2cfa154270201c827d7b8"
-   
"p1_utils::git://github.com/processone/p1_utils#commit=992b591e1c8b8894a7191676c7b10888e47ede92"
-   
"pkix::git://github.com/processone/pkix#commit=801962ef7660650f04be05321ccf10f057291050"
+   
"mqtree::git://github.com/processone/mqtree#commit=f9c08ef7f0a66ebfc6706ac0df5c7d144605aa70"
+   
"p1_acme::git://github.com/processone/p1_acme#commit=36a2f3d6ffba962faffa6e443e9b864f97ef5cf2"
+   
"p1_mysql::git://github.com/processone/p1_mysql#commit=16508b6e5b9fd9b2776314160809960f404c0007"
+   
"p1_oauth2::git://github.com/processone/p1_oauth2#commit=d696d6edeab5c666451dbccef8a89ca0b734938a"
+   

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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:45:00
  Author: shibumi
Revision: 984106

add fulcio

Added:
  fulcio/
  fulcio/repos/
  fulcio/trunk/
  fulcio/trunk/PKGBUILD

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

Added: fulcio/trunk/PKGBUILD
===
--- fulcio/trunk/PKGBUILD   (rev 0)
+++ fulcio/trunk/PKGBUILD   2021-07-22 22:45:00 UTC (rev 984106)
@@ -0,0 +1,36 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: Christian Rebischke 
+
+pkgname=fulcio
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="free Root-CA for code signing certs - issuing certificates based on 
an OIDC email address."
+arch=('x86_64')
+url="https://github.com/sigstore/fulcio;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sigstore/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('763c2a8ac42518771ad47b6ec3c5ce16b47a7cffc265cd36397c81165fef89fd04fbcdbdff26bb7ed5267b46227e56049971acfa97c61ed7fe7a0d0d0ab5')
+b2sums=('2ad7137186782743269ed4c1e1b03cd7f39e552d3a89d596053d07c952c599a7c23d38de60f68eece8162c67610b07cb19156b3568bd635b73f0fc535e865724')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  mkdir build
+  go build -o build/ ./...
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 build/fulcio "${pkgdir}/usr/bin/${pkgname}"
+}



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Thursday, July 22, 2021 @ 22:43:31
  Author: archange
Revision: 984105

archrelease: copy trunk to community-x86_64

Added:
  nsd/repos/community-x86_64/PKGBUILD
(from rev 984104, nsd/trunk/PKGBUILD)
  nsd/repos/community-x86_64/nsd.install
(from rev 984104, nsd/trunk/nsd.install)
  nsd/repos/community-x86_64/nsd.service
(from rev 984104, nsd/trunk/nsd.service)
  nsd/repos/community-x86_64/nsd.sysusers
(from rev 984104, nsd/trunk/nsd.sysusers)
  nsd/repos/community-x86_64/nsd.tmpfiles
(from rev 984104, nsd/trunk/nsd.tmpfiles)
Deleted:
  nsd/repos/community-x86_64/PKGBUILD
  nsd/repos/community-x86_64/nsd.install
  nsd/repos/community-x86_64/nsd.service
  nsd/repos/community-x86_64/nsd.sysusers
  nsd/repos/community-x86_64/nsd.tmpfiles

--+
 PKGBUILD |  124 -
 nsd.install  |   10 ++--
 nsd.service  |   84 +++---
 nsd.sysusers |2 
 nsd.tmpfiles |2 
 5 files changed, 111 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:43:24 UTC (rev 984104)
+++ PKGBUILD2021-07-22 22:43:31 UTC (rev 984105)
@@ -1,62 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Gaetan Bisson 
-# Contributor: Kaiting Chen 
-# Contributor: Roberto Alsina 
-
-pkgname=nsd
-pkgver=4.3.6
-pkgrel=1
-pkgdesc="Authoritative only, high performance and simple DNS server"
-arch=(x86_64)
-url="https://www.nlnetlabs.nl/nsd/;
-license=(BSD)
-depends=(openssl libevent fstrm protobuf-c systemd-libs)
-makedepends=(systemd)
-validpgpkeys=(EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D  # W.C.A. Wijngaards 

-  C3E356788FAD0179D872D092BA811E62E7194568)
-source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
-nsd.service
-nsd.sysusers
-nsd.tmpfiles)
-sha256sums=('bee6c0cf5525acc41dade9ec9e29435299211b0de290059878f7e53249e75f18'
-'SKIP'
-'51dcf15195be0f6a4154a29ad882eabe180b2413e6b3cadbb1535885ff0d4dfa'
-'12ce2a05fbb23bb38c31933530a7773f796e250691843b9da76f178f5e7c94f5'
-'07a31cecdc787c7ef44018dfc696115bd7b5d44b6e93f56c6c08ed0887d51579')
-install=nsd.install
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -vfi
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/ \
---sbindir=/usr/bin \
---datarootdir=/usr/share \
---with-pidfile=/run/nsd/nsd.pid \
---with-user="" \
---enable-ratelimit \
---enable-relro-now \
---enable-pie \
---enable-dnstap \
---enable-systemd \
---enable-tcp-fastopen
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rmdir "${pkgdir}"/{tmp,run{/nsd,},var{/db{/nsd,},}}
-
-  rm doc/differences.pdf
-  install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
-  install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
-  ln -s ../../doc/"${pkgname}"/LICENSE 
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
-  install -Dm644 ../nsd.service -t "${pkgdir}"/usr/lib/systemd/system/
-  install -Dm644 ../nsd.sysusers "${pkgdir}"/usr/lib/sysusers.d/nsd.conf
-  install -Dm644 ../nsd.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf
-}

Copied: nsd/repos/community-x86_64/PKGBUILD (from rev 984104, 
nsd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:43:31 UTC (rev 984105)
@@ -0,0 +1,62 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Gaetan Bisson 
+# Contributor: Kaiting Chen 
+# Contributor: Roberto Alsina 
+
+pkgname=nsd
+pkgver=4.3.7
+pkgrel=1
+pkgdesc="Authoritative only, high performance and simple DNS server"
+arch=(x86_64)
+url="https://www.nlnetlabs.nl/nsd/;
+license=(BSD)
+depends=(openssl libevent fstrm protobuf-c systemd-libs)
+makedepends=(systemd)
+validpgpkeys=(EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D  # W.C.A. Wijngaards 

+  C3E356788FAD0179D872D092BA811E62E7194568)
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
+nsd.service
+nsd.sysusers
+nsd.tmpfiles)
+sha256sums=('fd3b9ec53bbd168d567a0bfcdf140c966511fdaf78bd539d091c1a13c13be8ad'
+'SKIP'
+'51dcf15195be0f6a4154a29ad882eabe180b2413e6b3cadbb1535885ff0d4dfa'
+'12ce2a05fbb23bb38c31933530a7773f796e250691843b9da76f178f5e7c94f5'
+'07a31cecdc787c7ef44018dfc696115bd7b5d44b6e93f56c6c08ed0887d51579')
+install=nsd.install
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -vfi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/ \
+--sbindir=/usr/bin \
+--datarootdir=/usr/share \
+--with-pidfile=/run/nsd/nsd.pid \
+--with-user="" \
+--enable-ratelimit \
+--enable-relro-now \
+--enable-pie \
+--enable-dnstap \
+--enable-systemd 

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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Thursday, July 22, 2021 @ 22:43:24
  Author: archange
Revision: 984104

upgpkg: nsd 4.3.7-1

Modified:
  nsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:42:18 UTC (rev 984103)
+++ PKGBUILD2021-07-22 22:43:24 UTC (rev 984104)
@@ -4,7 +4,7 @@
 # Contributor: Roberto Alsina 
 
 pkgname=nsd
-pkgver=4.3.6
+pkgver=4.3.7
 pkgrel=1
 pkgdesc="Authoritative only, high performance and simple DNS server"
 arch=(x86_64)
@@ -18,7 +18,7 @@
 nsd.service
 nsd.sysusers
 nsd.tmpfiles)
-sha256sums=('bee6c0cf5525acc41dade9ec9e29435299211b0de290059878f7e53249e75f18'
+sha256sums=('fd3b9ec53bbd168d567a0bfcdf140c966511fdaf78bd539d091c1a13c13be8ad'
 'SKIP'
 '51dcf15195be0f6a4154a29ad882eabe180b2413e6b3cadbb1535885ff0d4dfa'
 '12ce2a05fbb23bb38c31933530a7773f796e250691843b9da76f178f5e7c94f5'



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:42:18
  Author: shibumi
Revision: 984103

archrelease: copy trunk to community-x86_64

Added:
  yaegi/repos/community-x86_64/PKGBUILD
(from rev 984102, yaegi/trunk/PKGBUILD)
Deleted:
  yaegi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:42:13 UTC (rev 984102)
+++ PKGBUILD2021-07-22 22:42:18 UTC (rev 984103)
@@ -1,36 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: navigaid 
-pkgname=yaegi
-pkgver=0.9.19
-pkgrel=1
-pkgdesc='Yet another Elegant Go Interpreter'
-arch=('x86_64')
-url='https://github.com/containous/yaegi'
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/containous/yaegi/archive/v${pkgver}.tar.gz;)
-sha512sums=('7497ef981d6c5b19db8cce1ddd7251df018745ea90dbbc45479f543b6fcd0e1d02252d066606ad4f6b313aef85224ec480c4cfa30ae80959b734497836ca399b')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-  go build -v ./cmd/yaegi
-}
-
-# disabling tests...
-#check() {
-#  cd "${pkgname}-${pkgver}"
-#  sed -i 's|"-race", ||' ./cmd/yaegi/yaegi_test.go
-#  GOROOT="/usr/lib/go" go test -v ./...
-#}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 yaegi "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: yaegi/repos/community-x86_64/PKGBUILD (from rev 984102, 
yaegi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:42:18 UTC (rev 984103)
@@ -0,0 +1,36 @@
+# Maintainer: Christian Rebischke 
+# Contributor: navigaid 
+pkgname=yaegi
+pkgver=0.9.21
+pkgrel=1
+pkgdesc='Yet another Elegant Go Interpreter'
+arch=('x86_64')
+url='https://github.com/containous/yaegi'
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/containous/yaegi/archive/v${pkgver}.tar.gz;)
+sha512sums=('091e8c2609ee33efd8eced3f9198d612d427e0fe20185d50027637bd1f646e1f3e2c08a34b3c27374d6d52584e330fe00adad069b649b926c9884e922069')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+  go build -v ./cmd/yaegi
+}
+
+# disabling tests...
+#check() {
+#  cd "${pkgname}-${pkgver}"
+#  sed -i 's|"-race", ||' ./cmd/yaegi/yaegi_test.go
+#  GOROOT="/usr/lib/go" go test -v ./...
+#}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 yaegi "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:42:13
  Author: shibumi
Revision: 984102

upgpkg: yaegi 0.9.21-1

Modified:
  yaegi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:40:19 UTC (rev 984101)
+++ PKGBUILD2021-07-22 22:42:13 UTC (rev 984102)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 # Contributor: navigaid 
 pkgname=yaegi
-pkgver=0.9.19
+pkgver=0.9.21
 pkgrel=1
 pkgdesc='Yet another Elegant Go Interpreter'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/containous/yaegi/archive/v${pkgver}.tar.gz;)
-sha512sums=('7497ef981d6c5b19db8cce1ddd7251df018745ea90dbbc45479f543b6fcd0e1d02252d066606ad4f6b313aef85224ec480c4cfa30ae80959b734497836ca399b')
+sha512sums=('091e8c2609ee33efd8eced3f9198d612d427e0fe20185d50027637bd1f646e1f3e2c08a34b3c27374d6d52584e330fe00adad069b649b926c9884e922069')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:40:19
  Author: shibumi
Revision: 984101

archrelease: copy trunk to community-x86_64

Added:
  helmfile/repos/community-x86_64/PKGBUILD
(from rev 984100, helmfile/trunk/PKGBUILD)
Deleted:
  helmfile/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:40:13 UTC (rev 984100)
+++ PKGBUILD2021-07-22 22:40:19 UTC (rev 984101)
@@ -1,42 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=helmfile
-pkgver=0.139.9
-pkgrel=1
-pkgdesc="Manage multiple helm charts with a single helmfile"
-arch=('x86_64')
-url="https://github.com/roboll/helmfile;
-license=('MIT')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/roboll/helmfile/archive/v${pkgver}.tar.gz;)
-sha512sums=('213f4a66da0591053c2798fc236b6da2ac789a5e21700cdcd13ddc699d68e8b93fb9867df4747270b1dedf88ceb61998b9665d710f93148d0632ed910dc5f5e8')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/roboll "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/roboll/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/roboll/${pkgname}"
-}
-
-build() {
-  cd "${PACKAGE_ROOT}"
-  export CGO_ENABLED=1
-  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 build -v -ldflags "-linkmode=external -X 
github.com/roboll/helmfile/pkg/app/version.Version=${pkgver}" .
-  chmod +x ./helmfile
-}
-
-check() {
-  cd "${PACKAGE_ROOT}"
-  go test -v ./...
-}
-
-package() {
-  cd "${PACKAGE_ROOT}"
-  install -Dsm755 ./helmfile "${pkgdir}/usr/bin/helmfile"
-}

Copied: helmfile/repos/community-x86_64/PKGBUILD (from rev 984100, 
helmfile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:40:19 UTC (rev 984101)
@@ -0,0 +1,43 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=helmfile
+pkgver=0.140.0
+pkgrel=1
+pkgdesc="Manage multiple helm charts with a single helmfile"
+arch=('x86_64')
+url="https://github.com/roboll/helmfile;
+license=('MIT')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/roboll/helmfile/archive/v${pkgver}.tar.gz;)
+sha512sums=('4e9135a48e2c6f3e1fa95c5ef6b6277717a084c4ee547a71cb3e0d1912ff0cd6d825e11487e05f108296067e97ac25d03452d24f262ad75388d4e5d0cf7ea040')
+b2sums=('fea8063d99f477ed32e3988dbf01393feee025a241a8898b69f9198e2639ada1fa2b6696df9a41c64f25afec6370e2bc6409de4a2c879b79ce1f5d5f4a931b00')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/roboll "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/roboll/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/roboll/${pkgname}"
+}
+
+build() {
+  cd "${PACKAGE_ROOT}"
+  export CGO_ENABLED=1
+  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 build -v -ldflags "-linkmode=external -X 
github.com/roboll/helmfile/pkg/app/version.Version=${pkgver}" .
+  chmod +x ./helmfile
+}
+
+check() {
+  cd "${PACKAGE_ROOT}"
+  go test -v ./...
+}
+
+package() {
+  cd "${PACKAGE_ROOT}"
+  install -Dsm755 ./helmfile "${pkgdir}/usr/bin/helmfile"
+}



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:40:13
  Author: shibumi
Revision: 984100

upgpkg: helmfile 0.140.0-1

Modified:
  helmfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:39:36 UTC (rev 984099)
+++ PKGBUILD2021-07-22 22:40:13 UTC (rev 984100)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=helmfile
-pkgver=0.139.9
+pkgver=0.140.0
 pkgrel=1
 pkgdesc="Manage multiple helm charts with a single helmfile"
 arch=('x86_64')
@@ -10,7 +10,8 @@
 makedepends=('go')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/roboll/helmfile/archive/v${pkgver}.tar.gz;)
-sha512sums=('213f4a66da0591053c2798fc236b6da2ac789a5e21700cdcd13ddc699d68e8b93fb9867df4747270b1dedf88ceb61998b9665d710f93148d0632ed910dc5f5e8')
+sha512sums=('4e9135a48e2c6f3e1fa95c5ef6b6277717a084c4ee547a71cb3e0d1912ff0cd6d825e11487e05f108296067e97ac25d03452d24f262ad75388d4e5d0cf7ea040')
+b2sums=('fea8063d99f477ed32e3988dbf01393feee025a241a8898b69f9198e2639ada1fa2b6696df9a41c64f25afec6370e2bc6409de4a2c879b79ce1f5d5f4a931b00')
 
 prepare() {
   export GOPATH="${srcdir}"



[arch-commits] Commit in kubectl-cert-manager/repos/community-x86_64 (2 files)

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:39:36
  Author: shibumi
Revision: 984099

archrelease: copy trunk to community-x86_64

Added:
  kubectl-cert-manager/repos/community-x86_64/PKGBUILD
(from rev 984098, kubectl-cert-manager/trunk/PKGBUILD)
Deleted:
  kubectl-cert-manager/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:39:30 UTC (rev 984098)
+++ PKGBUILD2021-07-22 22:39:36 UTC (rev 984099)
@@ -1,44 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: ml <>
-pkgname=kubectl-cert-manager
-pkgver=1.4.0
-pkgrel=1
-pkgdesc='Automatically provision and manage TLS certificates in Kubernetes'
-arch=('x86_64' 'aarch64')
-url='https://github.com/jetstack/cert-manager'
-license=('Apache')
-depends=('kubectl')
-makedepends=('git' 'go')
-groups=('kubectl-plugins')
-source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('b5aa31e0e4907bb31c627a3b6cbecf9fb0bf84846fbf479a123a4ed1ac2dee2426e361e5009a79ed164a93eb9ec0c8b50e8f0611e1f5d8e969a7996939932b06')
-
-build() {
-  local _x _commit
-  _commit=$(bsdcat "$pkgname-$pkgver.tar.gz" | git get-tar-commit-id)
-  _x=(
-AppVersion="v$pkgver"
-AppGitCommit="${_commit:?}"
-AppGitState="clean"
-  )
-
-  cd cert-manager-"$pkgver"
-  export CGO_ENABLED=1
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export GOFLAGS='-buildmode=pie -trimpath -modcacherw -mod=readonly'
-  go build -ldflags="-linkmode=external 
${_x[*]/#/-X=github.com/jetstack/cert-manager/pkg/util.}" ./cmd/ctl
-}
-
-check() {
-  cd cert-manager-"$pkgver"
-  # we don't want e2e and other tests that explicitly want bazel
-  go test -short ./cmd/ctl/...
-}
-
-package() {
-  cd cert-manager-"$pkgver"
-  install -Dm755 ctl "$pkgdir"/usr/bin/kubectl-cert_manager
-}

Copied: kubectl-cert-manager/repos/community-x86_64/PKGBUILD (from rev 984098, 
kubectl-cert-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:39:36 UTC (rev 984099)
@@ -0,0 +1,45 @@
+# Maintainer: Christian Rebischke 
+# Contributor: ml <>
+pkgname=kubectl-cert-manager
+pkgver=1.4.1
+pkgrel=1
+pkgdesc='Automatically provision and manage TLS certificates in Kubernetes'
+arch=('x86_64' 'aarch64')
+url='https://github.com/jetstack/cert-manager'
+license=('Apache')
+depends=('kubectl')
+makedepends=('git' 'go')
+groups=('kubectl-plugins')
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('703778c2c7bbba8f2c335f4221d4e41b50b3f08a6123e258349b811d1820a40d0c82408c90e2262d6a2d142f92b8fcbbee1174be690877c657cec2abf478a0cb')
+b2sums=('fb8d2613922f87222fd0d2e9b038b8f0ca574816d0b406e935ef2b4188b519422d0063d810e8c83551614b4f934cc24e84635bbe3d71a56d2dfab351e83c3a9c')
+
+build() {
+  local _x _commit
+  _commit=$(bsdcat "$pkgname-$pkgver.tar.gz" | git get-tar-commit-id)
+  _x=(
+AppVersion="v$pkgver"
+AppGitCommit="${_commit:?}"
+AppGitState="clean"
+  )
+
+  cd cert-manager-"$pkgver"
+  export CGO_ENABLED=1
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export GOFLAGS='-buildmode=pie -trimpath -modcacherw -mod=readonly'
+  go build -ldflags="-linkmode=external 
${_x[*]/#/-X=github.com/jetstack/cert-manager/pkg/util.}" ./cmd/ctl
+}
+
+check() {
+  cd cert-manager-"$pkgver"
+  # we don't want e2e and other tests that explicitly want bazel
+  go test -short ./cmd/ctl/...
+}
+
+package() {
+  cd cert-manager-"$pkgver"
+  install -Dm755 ctl "$pkgdir"/usr/bin/kubectl-cert_manager
+}



[arch-commits] Commit in kubectl-cert-manager/trunk (PKGBUILD)

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:39:30
  Author: shibumi
Revision: 984098

upgpkg: kubectl-cert-manager 1.4.1-1

Modified:
  kubectl-cert-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:33:45 UTC (rev 984097)
+++ PKGBUILD2021-07-22 22:39:30 UTC (rev 984098)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 # Contributor: ml <>
 pkgname=kubectl-cert-manager
-pkgver=1.4.0
+pkgver=1.4.1
 pkgrel=1
 pkgdesc='Automatically provision and manage TLS certificates in Kubernetes'
 arch=('x86_64' 'aarch64')
@@ -11,7 +11,8 @@
 makedepends=('git' 'go')
 groups=('kubectl-plugins')
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('b5aa31e0e4907bb31c627a3b6cbecf9fb0bf84846fbf479a123a4ed1ac2dee2426e361e5009a79ed164a93eb9ec0c8b50e8f0611e1f5d8e969a7996939932b06')
+sha512sums=('703778c2c7bbba8f2c335f4221d4e41b50b3f08a6123e258349b811d1820a40d0c82408c90e2262d6a2d142f92b8fcbbee1174be690877c657cec2abf478a0cb')
+b2sums=('fb8d2613922f87222fd0d2e9b038b8f0ca574816d0b406e935ef2b4188b519422d0063d810e8c83551614b4f934cc24e84635bbe3d71a56d2dfab351e83c3a9c')
 
 build() {
   local _x _commit



[arch-commits] Commit in networkmanager-strongswan/repos/community-x86_64 (2 files)

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:33:45
  Author: shibumi
Revision: 984097

archrelease: copy trunk to community-x86_64

Added:
  networkmanager-strongswan/repos/community-x86_64/PKGBUILD
(from rev 984096, networkmanager-strongswan/trunk/PKGBUILD)
Deleted:
  networkmanager-strongswan/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:33:39 UTC (rev 984096)
+++ PKGBUILD2021-07-22 22:33:45 UTC (rev 984097)
@@ -1,39 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Jan Hicken 
-
-pkgname=networkmanager-strongswan
-_pkgname=NetworkManager-strongswan
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="Strongswan NetworkManager plugin"
-arch=('x86_64')
-url="https://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager;
-license=('GPL')
-depends=('libnm' 'libsecret' 'strongswan>=5.5.1')
-makedepends=('libnma' 'intltool')
-optdepends=('libnma: GUI support')
-source=("https://download.strongswan.org/NetworkManager/$_pkgname-$pkgver.tar.bz2"{,.sig})
-sha512sums=('c79f011470778ae05f80b71330acfd7df75363fd089624007e9bdd82b75513a23eaaa3ef10141f780df075eb501ee675e4c293710e0a4c5fd9d4f4b0565bae59'
-'SKIP')
-validpgpkeys=('12538F8F689B5F1F15F07BE1765FE26C6B467584') # Tobias Brunner
-
-build() {
-  cd "$_pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static --disable-more-warnings \
---without-libnm-glib --with-charon=/usr/lib/strongswan/charon-nm
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd "$_pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: networkmanager-strongswan/repos/community-x86_64/PKGBUILD (from rev 
984096, networkmanager-strongswan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:33:45 UTC (rev 984097)
@@ -0,0 +1,39 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Jan Hicken 
+
+pkgname=networkmanager-strongswan
+_pkgname=NetworkManager-strongswan
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="Strongswan NetworkManager plugin"
+arch=('x86_64')
+url="https://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager;
+license=('GPL')
+depends=('libnm' 'libsecret' 'strongswan>=5.5.1')
+makedepends=('libnma' 'intltool')
+optdepends=('libnma: GUI support')
+source=("https://download.strongswan.org/NetworkManager/$_pkgname-$pkgver.tar.bz2"{,.sig})
+sha512sums=('c79f011470778ae05f80b71330acfd7df75363fd089624007e9bdd82b75513a23eaaa3ef10141f780df075eb501ee675e4c293710e0a4c5fd9d4f4b0565bae59'
+'SKIP')
+validpgpkeys=('12538F8F689B5F1F15F07BE1765FE26C6B467584') # Tobias Brunner
+
+build() {
+  cd "$_pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --disable-more-warnings \
+--without-libnm-glib --with-charon=/usr/lib/strongswan/charon-nm
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:33:39
  Author: shibumi
Revision: 984096

upgpkg: networkmanager-strongswan 1.5.2-2

Modified:
  networkmanager-strongswan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:30:28 UTC (rev 984095)
+++ PKGBUILD2021-07-22 22:33:39 UTC (rev 984096)
@@ -4,7 +4,7 @@
 pkgname=networkmanager-strongswan
 _pkgname=NetworkManager-strongswan
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Strongswan NetworkManager plugin"
 arch=('x86_64')
 url="https://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager;



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:30:28
  Author: shibumi
Revision: 984095

archrelease: copy trunk to community-any

Added:
  glances/repos/community-any/PKGBUILD
(from rev 984094, glances/trunk/PKGBUILD)
  glances/repos/community-any/glances.service
(from rev 984094, glances/trunk/glances.service)
Deleted:
  glances/repos/community-any/PKGBUILD
  glances/repos/community-any/glances.service

-+
 PKGBUILD|   68 +++---
 glances.service |   16 ++--
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:30:21 UTC (rev 984094)
+++ PKGBUILD2021-07-22 22:30:28 UTC (rev 984095)
@@ -1,34 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Sébastien Luttringer 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Francois Boulogne 
-
-pkgname=glances
-pkgver=3.2.0
-pkgrel=1
-pkgdesc='CLI curses-based monitoring tool'
-arch=('any')
-url='https://github.com/nicolargo/glances'
-license=('LGPL')
-makedepends=('git' 'python-setuptools')
-depends=('python' 'python-psutil' 'python-future')
-optdepends=('hddtemp: HDD temperature monitoring support'
-'python-bottle: web server support'
-'python-docker: for the Docker monitoring support'
-'python-matplotlib: for graphical/chart support'
-'python-netifaces: for the IP plugin'
-'python-zeroconf: for the autodiscover mode'
-'python-pystache: templating engine')
-source=("https://github.com/nicolargo/glances/archive/v${pkgver}.tar.gz;
-'glances.service')
-sha512sums=('fdb8ff473461108d33d0d28df9b05cb49e7d294572352aa7f87018de70f2c02514ad5692f2bcb8da2b4a7517d6d80f25a1bb341339108caeafc82242ab30110a'
-
'49f0d185a37a5c5837e5beb463770c943ede40b2f1b8405e338129e897e97d9fc58373a8586fabc506266e6343cfea3c91b9787ac6832cc97a1ab63d6ad058d4')
-
-package() {
-  cd "glances-${pkgver}"
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-  install -Dm644 "${srcdir}"/glances.service \
-"${pkgdir}"/usr/lib/systemd/system/glances.service
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glances/repos/community-any/PKGBUILD (from rev 984094, 
glances/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:30:28 UTC (rev 984095)
@@ -0,0 +1,34 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Sébastien Luttringer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Francois Boulogne 
+
+pkgname=glances
+pkgver=3.2.1
+pkgrel=1
+pkgdesc='CLI curses-based monitoring tool'
+arch=('any')
+url='https://github.com/nicolargo/glances'
+license=('LGPL')
+makedepends=('git' 'python-setuptools')
+depends=('python' 'python-psutil' 'python-future')
+optdepends=('hddtemp: HDD temperature monitoring support'
+'python-bottle: web server support'
+'python-docker: for the Docker monitoring support'
+'python-matplotlib: for graphical/chart support'
+'python-netifaces: for the IP plugin'
+'python-zeroconf: for the autodiscover mode'
+'python-pystache: templating engine')
+source=("https://github.com/nicolargo/glances/archive/v${pkgver}.tar.gz;
+'glances.service')
+sha512sums=('e2f8a46a9bc3b2e3aa16d0716b34e06991029df9dec4c29ef70c65b5fb7c96dee3c71cc565b551e35a31aa1c7e1a92538b158c2e660d15b22defad8ae04c4eb3'
+
'49f0d185a37a5c5837e5beb463770c943ede40b2f1b8405e338129e897e97d9fc58373a8586fabc506266e6343cfea3c91b9787ac6832cc97a1ab63d6ad058d4')
+
+package() {
+  cd "glances-${pkgver}"
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+  install -Dm644 "${srcdir}"/glances.service \
+"${pkgdir}"/usr/lib/systemd/system/glances.service
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: glances.service
===
--- glances.service 2021-07-22 22:30:21 UTC (rev 984094)
+++ glances.service 2021-07-22 22:30:28 UTC (rev 984095)
@@ -1,8 +0,0 @@
-[Unit]
-Description=Glances Server
-
-[Service]
-ExecStart=/usr/bin/glances -s
-
-[Install]
-WantedBy=multi-user.target

Copied: glances/repos/community-any/glances.service (from rev 984094, 
glances/trunk/glances.service)
===
--- glances.service (rev 0)
+++ glances.service 2021-07-22 22:30:28 UTC (rev 984095)
@@ -0,0 +1,8 @@
+[Unit]
+Description=Glances Server
+
+[Service]
+ExecStart=/usr/bin/glances -s
+
+[Install]
+WantedBy=multi-user.target



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:30:21
  Author: shibumi
Revision: 984094

upgpkg: glances 3.2.1-1

Modified:
  glances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:28:38 UTC (rev 984093)
+++ PKGBUILD2021-07-22 22:30:21 UTC (rev 984094)
@@ -4,7 +4,7 @@
 # Contributor: Francois Boulogne 
 
 pkgname=glances
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc='CLI curses-based monitoring tool'
 arch=('any')
@@ -21,7 +21,7 @@
 'python-pystache: templating engine')
 source=("https://github.com/nicolargo/glances/archive/v${pkgver}.tar.gz;
 'glances.service')
-sha512sums=('fdb8ff473461108d33d0d28df9b05cb49e7d294572352aa7f87018de70f2c02514ad5692f2bcb8da2b4a7517d6d80f25a1bb341339108caeafc82242ab30110a'
+sha512sums=('e2f8a46a9bc3b2e3aa16d0716b34e06991029df9dec4c29ef70c65b5fb7c96dee3c71cc565b551e35a31aa1c7e1a92538b158c2e660d15b22defad8ae04c4eb3'
 
'49f0d185a37a5c5837e5beb463770c943ede40b2f1b8405e338129e897e97d9fc58373a8586fabc506266e6343cfea3c91b9787ac6832cc97a1ab63d6ad058d4')
 
 package() {



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:28:38
  Author: shibumi
Revision: 984093

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 984092, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:28:25 UTC (rev 984092)
+++ PKGBUILD2021-07-22 22:28:38 UTC (rev 984093)
@@ -1,43 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.85.0
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/;
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('python-pygments: syntax-highlight code snippets'
-'python-docutils: reStructuredText support')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('213ff0d1d87cca7ff87731216d0d0a80c2e5abbcca39a4222615a5a43f7f13f5456609ef47ab7d493a30af8ec65fb8dcfb21bcaacb43fc2d550178f5fe448966')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  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 build -tags extended
-
-  ./hugo gen man
-  ./hugo gen autocomplete --type bash --completionfile 
${pkgname}.bash-completion
-  ./hugo gen autocomplete --type zsh --completionfile ${pkgname}.zsh
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-  
-  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
-  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 984092, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:28:38 UTC (rev 984093)
@@ -0,0 +1,44 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Christian Rebischke 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.86.0
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('python-pygments: syntax-highlight code snippets'
+'python-docutils: reStructuredText support')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('b6073ea67890b165e63fca48653f0ead03fe72cbdd557ecb98555ebbb22eb9133e36156d376ee9b2c9b739756efcc97c4f626a3a5c47cf520cfc02159f7949f2')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  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 build -tags extended
+
+  ./hugo gen man
+  ./hugo gen autocomplete --type bash --completionfile 
${pkgname}.bash-completion
+  ./hugo gen autocomplete --type zsh --completionfile ${pkgname}.zsh
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+  
+  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
+  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
+}



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:28:25
  Author: shibumi
Revision: 984092

upgpkg: hugo 0.86.0-1

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:23:19 UTC (rev 984091)
+++ PKGBUILD2021-07-22 22:28:25 UTC (rev 984092)
@@ -1,10 +1,11 @@
 # Maintainer: Jaroslav Lichtblau 
+# Maintainer: Christian Rebischke 
 # Contributor: fordprefect
 # Contributor: Jonathon Fernyhough 
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.85.0
+pkgver=0.86.0
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -15,7 +16,7 @@
 optdepends=('python-pygments: syntax-highlight code snippets'
 'python-docutils: reStructuredText support')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('213ff0d1d87cca7ff87731216d0d0a80c2e5abbcca39a4222615a5a43f7f13f5456609ef47ab7d493a30af8ec65fb8dcfb21bcaacb43fc2d550178f5fe448966')
+sha512sums=('b6073ea67890b165e63fca48653f0ead03fe72cbdd557ecb98555ebbb22eb9133e36156d376ee9b2c9b739756efcc97c4f626a3a5c47cf520cfc02159f7949f2')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:23:19
  Author: shibumi
Revision: 984091

archrelease: copy trunk to community-x86_64

Added:
  strongswan/repos/community-x86_64/PKGBUILD
(from rev 984090, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-x86_64/configure_ac.patch
(from rev 984090, strongswan/trunk/configure_ac.patch)
  strongswan/repos/community-x86_64/strongswan.install
(from rev 984090, strongswan/trunk/strongswan.install)
Deleted:
  strongswan/repos/community-x86_64/PKGBUILD
  strongswan/repos/community-x86_64/configure_ac.patch
  strongswan/repos/community-x86_64/strongswan.install

+
 PKGBUILD   |  252 +--
 configure_ac.patch |   32 +++---
 strongswan.install |   32 +++---
 3 files changed, 158 insertions(+), 158 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:23:11 UTC (rev 984090)
+++ PKGBUILD2021-07-22 22:23:19 UTC (rev 984091)
@@ -1,126 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: dkorzhevin 
-# Contributor: Thermi 
-# Contributor: nikicat 
-# Contributor: danilo 
-# Contributor: Jason Begley 
-# Contributor: Ray Kohler 
-# Contributor: Daniel Riedemann 
-# Contributor: 458italia 
-# Contributor: Thermi 
-
-pkgname=strongswan
-pkgver=5.9.2
-pkgrel=1
-pkgdesc='Open source IPsec implementation'
-url='https://www.strongswan.org'
-license=('GPL2')
-arch=('x86_64')
-makedepends=('curl' 'gmp' 'libnm' 'iproute2' 'openssl' 'sqlite' 'libcap' 
'systemd-libs'
-  'systemd' 'pam' 'python' 'ruby' 'mariadb' 'python-setuptools')
-depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'systemd-libs' 
'pam')
-optdepends=('libnm: for networkmanager support'
-  'mariadb: MySQL support'
-  'ruby: Ruby support'
-  'python: Python support'
-  'resolvconf: Resolveplugin'
-  'openldap: LDAP support')
-# TODO: move to package() and use find
-backup=(
-  etc/ipsec.conf
-  etc/ipsec.secrets
-  etc/swanctl/swanctl.conf
-  etc/strongswan.conf
-  
etc/strongswan.d/{charon-logging.conf,charon.conf,pki.conf,pool.conf,scepclient.conf,starter.conf,swanctl.conf}
-  
etc/strongswan.d/charon/{aesni.conf,attr-sql.conf,attr.conf,bliss.conf,chapoly.conf,cmac.conf,connmark.conf,constraints.conf,curl.conf,des.conf,dhcp.conf,dnskey.conf,eap-aka-3gpp2.conf,eap-aka.conf,eap-gtc.conf,eap-identity.conf,eap-md5.conf,eap-mschapv2.conf,eap-radius.conf,eap-sim-file.conf,eap-sim.conf,eap-simaka-pseudonym.conf,eap-simaka-reauth.conf,eap-tls.conf,ext-auth.conf,farp.conf,fips-prf.conf,forecast.conf,gmp.conf,ha.conf,hmac.conf,kernel-netlink.conf,md5.conf,mgf1.conf,nonce.conf,newhope.conf,ntru.conf,openssl.conf,pem.conf,pgp.conf,pkcs1.conf,pkcs12.conf,pkcs7.conf,pkcs8.conf,pubkey.conf,random.conf,rc2.conf,resolve.conf,revocation.conf,sha1.conf,sha2.conf,sha3.conf,socket-default.conf,sql.conf,sqlite.conf,sshkey.conf,stroke.conf,updown.conf,vici.conf,x509.conf,xauth-eap.conf,xauth-generic.conf,xcbc.conf,unity.conf,curve25519.conf,bypass-lan.conf})
-source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2"{,.sig}
-  'configure_ac.patch')
-validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
-sha512sums=('dca30b9be7847e0af59d1526c2e38d440b6729055cb3f0f0637d50d7381df465c7b59e79662efe63870a7a5a44eef696c02231274d2764f9e3c430ce2fd694f6'
-'SKIP'
-
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
-install=strongswan.install
-
-# We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
-# would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
-# add --enable-libipsec and --enable-kernel-libipsec
-prepare() {
-  cd   ${pkgname}-${pkgver}
-  patch   -p1 -l <"${srcdir}/configure_ac.patch"
-  autoreconf   -fiv
-}
-
-build() {
-  cd   ${pkgname}-${pkgver}
-
-  ./configure   --prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---with-ipsecdir=/usr/lib/strongswan \
---with-nm-ca-dir=/etc/ssl/certs \
---enable-integrity-test \
---enable-sqlite \
---enable-pkcs11 \
---enable-openssl \
---enable-curl \
---enable-sql \
---enable-attr-sql \
---enable-farp \
---enable-dhcp \
---enable-eap-sim \
---enable-eap-sim-file \
---enable-eap-simaka-pseudonym \
---enable-eap-simaka-reauth \
---enable-eap-identity \
---enable-eap-md5 \
---enable-eap-gtc \
---enable-eap-aka \
---enable-eap-aka-3gpp2 \
---enable-eap-mschapv2 \
---enable-eap-radius \
---enable-xauth-eap \
---enable-ha \
---enable-vici \
---enable-swanctl \
---enable-systemd \
---enable-ext-auth \
---enable-mysql \
---enable-ldap \
---enable-cmd \
---enable-forecast \
---enable-connmark \
---enable-aesni \
---enable-eap-ttls \
-

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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:23:11
  Author: shibumi
Revision: 984090

upgpkg: strongswan 5.9.3-1

Modified:
  strongswan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:19:16 UTC (rev 984089)
+++ PKGBUILD2021-07-22 22:23:11 UTC (rev 984090)
@@ -10,7 +10,7 @@
 # Contributor: Thermi 
 
 pkgname=strongswan
-pkgver=5.9.2
+pkgver=5.9.3
 pkgrel=1
 pkgdesc='Open source IPsec implementation'
 url='https://www.strongswan.org'
@@ -36,7 +36,7 @@
 source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2"{,.sig}
   'configure_ac.patch')
 validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
-sha512sums=('dca30b9be7847e0af59d1526c2e38d440b6729055cb3f0f0637d50d7381df465c7b59e79662efe63870a7a5a44eef696c02231274d2764f9e3c430ce2fd694f6'
+sha512sums=('09bd78225415422c8f55c9f0dea2ca70111f42f0deacfaaac30c422109ff64180f6a6a47c6bc54238e8403f0b2f8520122c1eabbeda3f915427fadb838a5df51'
 'SKIP'
 
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
 install=strongswan.install



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:19:16
  Author: shibumi
Revision: 984089

archrelease: copy trunk to community-x86_64

Added:
  skaffold/repos/community-x86_64/PKGBUILD
(from rev 984088, skaffold/trunk/PKGBUILD)
  skaffold/repos/community-x86_64/build_info.patch
(from rev 984088, skaffold/trunk/build_info.patch)
Deleted:
  skaffold/repos/community-x86_64/PKGBUILD
  skaffold/repos/community-x86_64/build_info.patch

--+
 PKGBUILD |  123 ++---
 build_info.patch |   46 +--
 2 files changed, 85 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:19:08 UTC (rev 984088)
+++ PKGBUILD2021-07-22 22:19:16 UTC (rev 984089)
@@ -1,61 +0,0 @@
-# Maintainer Christian Rebischke 
-# Maintainer: Fredy García 
-# Maintainer: Maxim Baz <${pkgname} at maximbaz dot com>
-# Contributor: Stefan Cocora 
-
-pkgname=skaffold
-pkgver=1.28.0
-pkgrel=1
-pkgdesc="A command line tool that facilitates continuous development for 
Kubernetes applications"
-arch=("x86_64")
-url="https://github.com/GoogleContainerTools/${pkgname};
-license=("Apache")
-depends=("docker")
-makedepends=("go")
-optdepends=(
-  "minikube: To use Minikube"
-  "kubectl: For Kubernetes support"
-  "bash-completion: Tab autocompletion"
-)
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz;
-)
-sha256sums=('79176849c82466289534ca66d6ffcbd8991bbeaea15e2754f4106ca9c1c52767')
-_commit="27271dfcaab56c38ecf41f4b7158101d44c454b6"
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  rm -rf "${srcdir}/gopath"
-  mkdir -p "${srcdir}/gopath/bin"
-  mkdir -p "${srcdir}/gopath/src/github.com/GoogleContainerTools"
-  ln -rTsf "${srcdir}/${pkgname}-${pkgver}" 
"${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
-}
-
-build() {
-  cd "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
-  export GOPATH="${srcdir}/gopath"
-  export PATH="${PATH}:${GOPATH}/bin"
-  export VERSION="v${pkgver}"
-  export COMMIT="${_commit}"
-  export TREE_STATE="clean"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -mod=readonly -modcacherw -x -v 
-ldflags=-linkmode=external"
-  make install
-
-  # To avoid issues deleting directories next time
-  go clean --modcache
-
-  # Create completion files
-  "${srcdir}/gopath/bin/${pkgname}" completion bash > 
"${srcdir}/${pkgname}-completion.bash"
-  "${srcdir}/gopath/bin/${pkgname}" completion zsh > 
"${srcdir}/${pkgname}-completion.zsh"
-}
-
-package() {
-  install -Dm755 "${srcdir}/gopath/bin/${pkgname}" 
"${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "${srcdir}/${pkgname}-completion.bash" 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  install -Dm644 "${srcdir}/${pkgname}-completion.zsh" 
"${pkgdir}/usr/share/zsh/site-functions/_skaffold"
-}

Copied: skaffold/repos/community-x86_64/PKGBUILD (from rev 984088, 
skaffold/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:19:16 UTC (rev 984089)
@@ -0,0 +1,62 @@
+# Maintainer Christian Rebischke 
+# Maintainer: Fredy García 
+# Maintainer: Maxim Baz <${pkgname} at maximbaz dot com>
+# Contributor: Stefan Cocora 
+
+pkgname=skaffold
+pkgver=1.28.1
+pkgrel=1
+pkgdesc="A command line tool that facilitates continuous development for 
Kubernetes applications"
+arch=("x86_64")
+url="https://github.com/GoogleContainerTools/${pkgname};
+license=("Apache")
+depends=("docker")
+makedepends=("go")
+optdepends=(
+  "minikube: To use Minikube"
+  "kubectl: For Kubernetes support"
+  "bash-completion: Tab autocompletion"
+)
+source=(
+  
"${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz;
+)
+sha256sums=('4d96d820d48934b3c12415697146ec30318e235f3a35d4fc68024cda30b655ef')
+b2sums=('1575300e5d4f91b2d649b35b94c065a0f96dc4c0c87b6ba1aa33802df868c6b414eccfd44d5eeac71cd9f40a3d23df6143a311a3ebe6c09be1e852a4d8b0')
+_commit="7b855e136dc0f9cc5544ed2808c9d5feb767118c"
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  rm -rf "${srcdir}/gopath"
+  mkdir -p "${srcdir}/gopath/bin"
+  mkdir -p "${srcdir}/gopath/src/github.com/GoogleContainerTools"
+  ln -rTsf "${srcdir}/${pkgname}-${pkgver}" 
"${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
+}
+
+build() {
+  cd "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
+  export GOPATH="${srcdir}/gopath"
+  export PATH="${PATH}:${GOPATH}/bin"
+  export VERSION="v${pkgver}"
+  export COMMIT="${_commit}"
+  export TREE_STATE="clean"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export 

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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:19:08
  Author: shibumi
Revision: 984088

upgpkg: skaffold 1.28.1-1

Modified:
  skaffold/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:16:03 UTC (rev 984087)
+++ PKGBUILD2021-07-22 22:19:08 UTC (rev 984088)
@@ -4,7 +4,7 @@
 # Contributor: Stefan Cocora 
 
 pkgname=skaffold
-pkgver=1.28.0
+pkgver=1.28.1
 pkgrel=1
 pkgdesc="A command line tool that facilitates continuous development for 
Kubernetes applications"
 arch=("x86_64")
@@ -20,8 +20,9 @@
 source=(
   
"${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz;
 )
-sha256sums=('79176849c82466289534ca66d6ffcbd8991bbeaea15e2754f4106ca9c1c52767')
-_commit="27271dfcaab56c38ecf41f4b7158101d44c454b6"
+sha256sums=('4d96d820d48934b3c12415697146ec30318e235f3a35d4fc68024cda30b655ef')
+b2sums=('1575300e5d4f91b2d649b35b94c065a0f96dc4c0c87b6ba1aa33802df868c6b414eccfd44d5eeac71cd9f40a3d23df6143a311a3ebe6c09be1e852a4d8b0')
+_commit="7b855e136dc0f9cc5544ed2808c9d5feb767118c"
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Thursday, July 22, 2021 @ 22:16:03
  Author: archange
Revision: 984087

archrelease: copy trunk to community-staging-x86_64

Added:
  gdal/repos/community-staging-x86_64/
  gdal/repos/community-staging-x86_64/PKGBUILD
(from rev 984086, gdal/trunk/PKGBUILD)
  gdal/repos/community-staging-x86_64/gdal-perl-vendor.patch
(from rev 984086, gdal/trunk/gdal-perl-vendor.patch)
  gdal/repos/community-staging-x86_64/gdal.changelog
(from rev 984086, gdal/trunk/gdal.changelog)

+
 PKGBUILD   |   83 +
 gdal-perl-vendor.patch |   18 ++
 gdal.changelog |  132 +++
 3 files changed, 233 insertions(+)

Copied: gdal/repos/community-staging-x86_64/PKGBUILD (from rev 984086, 
gdal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-22 22:16:03 UTC (rev 984087)
@@ -0,0 +1,83 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgbase=gdal
+pkgname=('gdal' 'python-gdal')
+pkgver=3.3.1
+pkgrel=1
+pkgdesc="A translator library for raster geospatial data formats"
+arch=('x86_64')
+url="https://gdal.org/;
+license=('custom')
+depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg-turbo' 'libpng' 
'libspatialite' 'libtiff' 'netcdf'
+ 'openjpeg2' 'poppler' 'cfitsio' 'sqlite' 'mariadb-libs' 
'postgresql-libs' 'xerces-c' 'json-c')
+makedepends=('perl' 'swig' 'chrpath' 'doxygen' 'python-breathe' 'python-numpy' 
'python-sphinx' 'boost')
+optdepends=('postgresql: postgresql database support'
+'mariadb: mariadb database support'
+'perl: perl binding support')
+options=('!emptydirs')
+changelog=$pkgbase.changelog
+source=(https://download.osgeo.org/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz
+gdal-perl-vendor.patch)
+sha256sums=('48ab00b77d49f08cf66c60ccce55abb6455c3079f545e60c90ee7ce857bccb70'
+'2103b98f2f15954f042d5620658b30d703125927bde2e5eb671c5facb6c2f5ed')
+
+prepare() {
+  cd "${srcdir}"/$pkgbase-$pkgver
+
+# Fix mandir
+  sed -i "s|^mandir=.*|mandir='\${prefix}/share/man'|" configure
+
+# Fix Perl bindings installation path
+  patch -Np0 -i "${srcdir}"/gdal-perl-vendor.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgbase-$pkgver
+
+  ./configure --prefix=/usr --with-netcdf --with-libtiff --with-sqlite3 
--with-geotiff \
+  --with-mysql --with-curl --with-hdf5 --with-perl --with-geos \
+  --with-png --with-poppler --with-spatialite --with-openjpeg
+
+# workaround for bug #13646
+#   sed -i 's/PY_HAVE_SETUPTOOLS=1/PY_HAVE_SETUPTOOLS=/g' ./GDALmake.opt
+#   sed -i 's/EXE_DEP_LIBS/KILL_EXE_DEP_LIBS/' apps/GNUmakefile
+
+  make
+  make man
+
+  cd "${srcdir}"/$pkgbase-$pkgver/swig/python
+  python setup.py build
+}
+
+package_gdal () {
+  cd "${srcdir}"/$pkgbase-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" install-man
+
+# install license
+  install -Dm644 LICENSE.TXT "${pkgdir}"/usr/share/licenses/$pkgbase/LICENSE
+
+# Remove RPATH
+  eval local $(perl -V:vendorarch)
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/OSR/OSR.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/OGR/OGR.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GDAL/GDAL.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GDAL/Const/Const.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GNM/GNM.so
+}
+
+package_python-gdal () {
+  pkgdesc="Python bindings for GDAL"
+  depends=("gdal=$pkgver" 'python-numpy')
+  optdepends=()
+
+  cd "${srcdir}"/$pkgbase-$pkgver/swig/python
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+#   install -Dm755 -t "${pkgdir}"/usr/bin scripts/*.py
+
+  install -dm755 "${pkgdir}"/usr/share/licenses
+  ln -s $pkgbase "${pkgdir}"/usr/share/licenses/$pkgname
+}

Copied: gdal/repos/community-staging-x86_64/gdal-perl-vendor.patch (from rev 
984086, gdal/trunk/gdal-perl-vendor.patch)
===
--- community-staging-x86_64/gdal-perl-vendor.patch 
(rev 0)
+++ community-staging-x86_64/gdal-perl-vendor.patch 2021-07-22 22:16:03 UTC 
(rev 984087)
@@ -0,0 +1,18 @@
+Description: pass INSTALLDIRS=vendor to Makefile.PL to get stuff into the 
right place
+Origin: vendor
+Forwarded: not-needed
+Author: gregor herrmann 
+
+--- swig/perl/Makefile.orig2018-12-14 22:34:20.0 +0100
 swig/perl/Makefile 2018-12-25 17:52:06.053358428 +0100
+@@ -10 +10 @@
+-  perl Makefile.PL INSTALL_BASE=$(INST_PREFIX)
++  perl Makefile.PL INSTALLDIRS=vendor
+ 
+ test: build
+   $(MAKE) -f Makefile_Geo__GDAL test
+--- swig/perl/GNUmakefile.orig 2018-12-14 22:34:20.0 +0100
 swig/perl/GNUmakefile  2018-12-25 

[arch-commits] Commit in gdal/trunk (PKGBUILD gdal.changelog)

2021-07-22 Thread Bruno Pagani via arch-commits
Date: Thursday, July 22, 2021 @ 22:15:58
  Author: archange
Revision: 984086

upgpkg: gdal 3.3.1-1

Includes netCDF 4.8.0 and HDF5 1.12.1 rebuilds

Modified:
  gdal/trunk/PKGBUILD
  gdal/trunk/gdal.changelog

+
 PKGBUILD   |6 +++---
 gdal.changelog |6 ++
 2 files changed, 9 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:13:51 UTC (rev 984085)
+++ PKGBUILD2021-07-22 22:15:58 UTC (rev 984086)
@@ -4,11 +4,11 @@
 
 pkgbase=gdal
 pkgname=('gdal' 'python-gdal')
-pkgver=3.3.0
+pkgver=3.3.1
 pkgrel=1
 pkgdesc="A translator library for raster geospatial data formats"
 arch=('x86_64')
-url="http://www.gdal.org/;
+url="https://gdal.org/;
 license=('custom')
 depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg-turbo' 'libpng' 
'libspatialite' 'libtiff' 'netcdf'
  'openjpeg2' 'poppler' 'cfitsio' 'sqlite' 'mariadb-libs' 
'postgresql-libs' 'xerces-c' 'json-c')
@@ -20,7 +20,7 @@
 changelog=$pkgbase.changelog
 
source=(https://download.osgeo.org/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz
 gdal-perl-vendor.patch)
-sha256sums=('190c8f4b56afc767f43836b2a5cd53cc52ee7fdc25eb78c6079c5a244e28efa7'
+sha256sums=('48ab00b77d49f08cf66c60ccce55abb6455c3079f545e60c90ee7ce857bccb70'
 '2103b98f2f15954f042d5620658b30d703125927bde2e5eb671c5facb6c2f5ed')
 
 prepare() {

Modified: gdal.changelog
===
--- gdal.changelog  2021-07-22 22:13:51 UTC (rev 984085)
+++ gdal.changelog  2021-07-22 22:15:58 UTC (rev 984086)
@@ -1,3 +1,9 @@
+2021-07-22 Bruno Pagani 
+   * gdal 3.3.1-1
+   * update url
+   * netcdf 4.8.0 rebuild
+   * hdf5 1.12.1 rebuild
+
 2021-06-05 Jaroslav Lichtblau 
* gdal 3.3.0-1
 



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:13:51
  Author: shibumi
Revision: 984085

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 984084, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:13:44 UTC (rev 984084)
+++ PKGBUILD2021-07-22 22:13:51 UTC (rev 984085)
@@ -1,57 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=4.1.3
-pkgrel=1
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-optdepends=('helm')
-source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('bc0b6bb7e8a213fd80350211c86eceab0a6068a768e5452ddc2096fb8e7eae2b45e2e4a2df5160cea60f8a51a6de17314e7b4f7b0a63884dddbd551b55e5b02d')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  # install completions
-  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
-  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
-  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
-  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
-  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
-  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
-
-  # install binary
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 984084, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:13:51 UTC (rev 984085)
@@ -0,0 +1,58 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+optdepends=('helm')
+source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('a12aba1cd08aa11ec6edd2c8c91e0c1cc5c08c331c188db88de2f056c03bb4c857dcd266270bb239920a50a286d25977adb73e064e7bbbc5dfd65c12dca44c05')
+b2sums=('069c94cc3f8292fe5cd64acab51924a963c7f2ec2c36e51a2140f817fc51b914b5040173db37376a3e314c80b699dfec9fcc56a2d85ffac7a8dc282a6d1a3b4d')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  # install completions
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
+  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
+  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
+  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
+  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
+  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
+
+  # install binary
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:13:44
  Author: shibumi
Revision: 984084

upgpkg: kustomize 4.2.0-1

Modified:
  kustomize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:10:08 UTC (rev 984083)
+++ PKGBUILD2021-07-22 22:13:44 UTC (rev 984084)
@@ -2,7 +2,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=kustomize
-pkgver=4.1.3
+pkgver=4.2.0
 pkgrel=1
 pkgdesc="Template-free customization of Kubernetes YAML manifests"
 arch=('x86_64')
@@ -12,7 +12,8 @@
 depends=('glibc')
 optdepends=('helm')
 
source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('bc0b6bb7e8a213fd80350211c86eceab0a6068a768e5452ddc2096fb8e7eae2b45e2e4a2df5160cea60f8a51a6de17314e7b4f7b0a63884dddbd551b55e5b02d')
+sha512sums=('a12aba1cd08aa11ec6edd2c8c91e0c1cc5c08c331c188db88de2f056c03bb4c857dcd266270bb239920a50a286d25977adb73e064e7bbbc5dfd65c12dca44c05')
+b2sums=('069c94cc3f8292fe5cd64acab51924a963c7f2ec2c36e51a2140f817fc51b914b5040173db37376a3e314c80b699dfec9fcc56a2d85ffac7a8dc282a6d1a3b4d')
 
 build(){
   cd "kustomize-kustomize-v${pkgver}/kustomize"



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:10:08
  Author: shibumi
Revision: 984083

archrelease: copy trunk to community-x86_64

Added:
  pulumi/repos/community-x86_64/PKGBUILD
(from rev 984082, pulumi/trunk/PKGBUILD)
Deleted:
  pulumi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:10:02 UTC (rev 984082)
+++ PKGBUILD2021-07-22 22:10:08 UTC (rev 984083)
@@ -1,74 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Christoph Gysin 
-
-pkgname=pulumi
-pkgver=3.7.0
-pkgrel=1
-pkgdesc='Modern Infrastructure as Code'
-arch=('x86_64')
-url="https://github.com/$pkgname/$pkgname;
-license=('GPL')
-depends=('glibc')
-makedepends=('go')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('da6a0a782f71ad123a4e6dfe1c930ad387370f3fb8a5c0668be67704f2dad70b')
-
-_plugins=(
-  "nodejs/cmd/pulumi-language-nodejs"
-  "python/cmd/pulumi-language-python"
-  "dotnet/cmd/pulumi-language-dotnet"
-  "go/pulumi-language-go"
-)
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-  # Build the `pulumi` executable
-  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
-  go build \
--ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
--o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
-"./cmd/${pkgname}" \
-
-  # Build the plugins
-  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
-  for plugin in "${_plugins[@]}"; do
-plugin_name=${plugin##*/}
-go build \
-  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
-  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
-  "./${plugin}"
-
-# Add possible executor
-if [ -f "${plugin}-exec" ]; then
-  cp "${plugin}-exec" "${srcdir}/${pkgname}-${pkgver}/bin/"
-fi
-  done
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Install all executables
-  for f in ./bin/*; do
-install -D -m 755 "$f" "${pkgdir}/usr/bin/$(basename $f)"
-  done
-
-  # Generate Bash completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion bash) \
-"${pkgdir}/etc/bash_completion.d/${pkgname}"
-
-  # Generate ZSH completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion zsh) \
-"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pulumi/repos/community-x86_64/PKGBUILD (from rev 984082, 
pulumi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:10:08 UTC (rev 984083)
@@ -0,0 +1,74 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Christoph Gysin 
+
+pkgname=pulumi
+pkgver=3.7.1
+pkgrel=1
+pkgdesc='Modern Infrastructure as Code'
+arch=('x86_64')
+url="https://github.com/$pkgname/$pkgname;
+license=('GPL')
+depends=('glibc')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('797904dafbe4c1031bbcc262713ab7880ded548eed37287f10710a9cb4159651')
+
+_plugins=(
+  "nodejs/cmd/pulumi-language-nodejs"
+  "python/cmd/pulumi-language-python"
+  "dotnet/cmd/pulumi-language-dotnet"
+  "go/pulumi-language-go"
+)
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  # Build the `pulumi` executable
+  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
+  go build \
+-ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+-o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
+"./cmd/${pkgname}" \
+
+  # Build the plugins
+  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
+  for plugin in "${_plugins[@]}"; do
+plugin_name=${plugin##*/}
+go build \
+  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
+  "./${plugin}"
+
+# Add possible executor
+if [ -f "${plugin}-exec" ]; then
+  cp "${plugin}-exec" "${srcdir}/${pkgname}-${pkgver}/bin/"
+fi
+  done
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Install all executables
+  for f in ./bin/*; do
+install -D -m 755 "$f" "${pkgdir}/usr/bin/$(basename $f)"
+  done
+
+  # Generate Bash completion
+  install -D -m 644 \
+

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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:10:02
  Author: shibumi
Revision: 984082

upgpkg: pulumi 3.7.1-1

Modified:
  pulumi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:06:45 UTC (rev 984081)
+++ PKGBUILD2021-07-22 22:10:02 UTC (rev 984082)
@@ -2,7 +2,7 @@
 # Contributor: Christoph Gysin 
 
 pkgname=pulumi
-pkgver=3.7.0
+pkgver=3.7.1
 pkgrel=1
 pkgdesc='Modern Infrastructure as Code'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('da6a0a782f71ad123a4e6dfe1c930ad387370f3fb8a5c0668be67704f2dad70b')
+sha256sums=('797904dafbe4c1031bbcc262713ab7880ded548eed37287f10710a9cb4159651')
 
 _plugins=(
   "nodejs/cmd/pulumi-language-nodejs"



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:06:45
  Author: shibumi
Revision: 984081

archrelease: copy trunk to community-x86_64

Added:
  terragrunt/repos/community-x86_64/PKGBUILD
(from rev 984080, terragrunt/trunk/PKGBUILD)
Deleted:
  terragrunt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:06:38 UTC (rev 984080)
+++ PKGBUILD2021-07-22 22:06:45 UTC (rev 984081)
@@ -1,37 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Benjamin Denhartog 
-# Contributor: Andreas 'Segaja' Schleifer 
-
-pkgname=terragrunt
-pkgver=0.30.7
-pkgrel=1
-pkgdesc='Thin wrapper for Terraform that provides extra tools for working with 
multiple Terraform modules'
-url='https://github.com/gruntwork-io/terragrunt'
-arch=('x86_64')
-makedepends=('git' 'go')
-depends=('glibc' 'terraform')
-license=('MIT')
-source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('f815c6899886208e30b07dd8b30400832f7d9b9517b5b00b967bd6b56e4fee29')
-b2sums=('8d8f1ff0afdcd45f12a3715fdbcb4f5c03ef7d2fdb02c720695f3c976795889e21a3e5b273759b252e38df0c290bae23e9eea23b0f02712afd15847e6fa70a98')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export GO11MODULE=on
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  go build -v \
--ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
main.VERSION=${pkgver}" \
-.
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 ${pkgname} -t "${pkgdir}/usr/bin"
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: terragrunt/repos/community-x86_64/PKGBUILD (from rev 984080, 
terragrunt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 22:06:45 UTC (rev 984081)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Contributor: Benjamin Denhartog 
+# Contributor: Andreas 'Segaja' Schleifer 
+
+pkgname=terragrunt
+pkgver=0.31.1
+pkgrel=1
+pkgdesc='Thin wrapper for Terraform that provides extra tools for working with 
multiple Terraform modules'
+url='https://github.com/gruntwork-io/terragrunt'
+arch=('x86_64')
+makedepends=('git' 'go')
+depends=('glibc' 'terraform')
+license=('MIT')
+source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('127490a12f542089adcc4e8a609eae5042d25b25b1271405132189253fc73685')
+b2sums=('3849a8327afef7adeea2323598772598fda0a6ef55273f3a43b0da11583f60011b2683f6d789ae2e68f7cdbc16f4a6db42ec1301eabd973000ec9b5a689d3971')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export GO11MODULE=on
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  go build -v \
+-ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
main.VERSION=${pkgver}" \
+.
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 ${pkgname} -t "${pkgdir}/usr/bin"
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:06:38
  Author: shibumi
Revision: 984080

upgpkg: terragrunt 0.31.1-1

Modified:
  terragrunt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 22:03:03 UTC (rev 984079)
+++ PKGBUILD2021-07-22 22:06:38 UTC (rev 984080)
@@ -3,7 +3,7 @@
 # Contributor: Andreas 'Segaja' Schleifer 
 
 pkgname=terragrunt
-pkgver=0.30.7
+pkgver=0.31.1
 pkgrel=1
 pkgdesc='Thin wrapper for Terraform that provides extra tools for working with 
multiple Terraform modules'
 url='https://github.com/gruntwork-io/terragrunt'
@@ -12,8 +12,8 @@
 depends=('glibc' 'terraform')
 license=('MIT')
 source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('f815c6899886208e30b07dd8b30400832f7d9b9517b5b00b967bd6b56e4fee29')
-b2sums=('8d8f1ff0afdcd45f12a3715fdbcb4f5c03ef7d2fdb02c720695f3c976795889e21a3e5b273759b252e38df0c290bae23e9eea23b0f02712afd15847e6fa70a98')
+sha256sums=('127490a12f542089adcc4e8a609eae5042d25b25b1271405132189253fc73685')
+b2sums=('3849a8327afef7adeea2323598772598fda0a6ef55273f3a43b0da11583f60011b2683f6d789ae2e68f7cdbc16f4a6db42ec1301eabd973000ec9b5a689d3971')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:03:03
  Author: shibumi
Revision: 984079

archrelease: copy trunk to community-x86_64

Added:
  terraform/repos/community-x86_64/CHANGELOG.md
(from rev 984078, terraform/trunk/CHANGELOG.md)
  terraform/repos/community-x86_64/PKGBUILD
(from rev 984078, terraform/trunk/PKGBUILD)
Deleted:
  terraform/repos/community-x86_64/CHANGELOG.md
  terraform/repos/community-x86_64/PKGBUILD

--+
 CHANGELOG.md |   32 
 PKGBUILD |   75 -
 2 files changed, 54 insertions(+), 53 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2021-07-22 22:02:56 UTC (rev 984078)
+++ CHANGELOG.md2021-07-22 22:03:03 UTC (rev 984079)
@@ -1,16 +0,0 @@
-## 1.0.1 (June 24, 2021)
-
-ENHANCEMENTS:
-
-* json-output: The JSON plan output now indicates which state values are 
sensitive. ([#28889](https://github.com/hashicorp/terraform/issues/28889))
-* cli: The darwin builds can now make use of the host DNS resolver, which will 
fix many network related issues on MacOS.
-
-BUG FIXES:
-
-* backend/remote: Fix faulty Terraform Cloud version check when migrating 
state to the remote backend with multiple local workspaces 
([#28864](https://github.com/hashicorp/terraform/issues/28864))
-* cli: Fix crash with deposed instances in json plan output 
([#28922](https://github.com/hashicorp/terraform/issues/28922))
-* core: Fix crash when provider modifies and unknown block during plan 
([#28941](https://github.com/hashicorp/terraform/issues/28941))
-* core: Diagnostic context was missing for some errors when validating blocks 
([#28979](https://github.com/hashicorp/terraform/issues/28979))
-* core: Fix crash when calling `setproduct` with unknown values 
([#28984](https://github.com/hashicorp/terraform/issues/28984))
-* json-output: Fix an issue where the JSON configuration representation was 
missing fully-unwrapped references. 
([#8884](https://github.com/hashicorp/terraform/issues/8884))
-* json-output: Fix JSON plan resource drift to remove unchanged resources. 
([#28975](https://github.com/hashicorp/terraform/issues/28975))

Copied: terraform/repos/community-x86_64/CHANGELOG.md (from rev 984078, 
terraform/trunk/CHANGELOG.md)
===
--- CHANGELOG.md(rev 0)
+++ CHANGELOG.md2021-07-22 22:03:03 UTC (rev 984079)
@@ -0,0 +1,16 @@
+## 1.0.1 (June 24, 2021)
+
+ENHANCEMENTS:
+
+* json-output: The JSON plan output now indicates which state values are 
sensitive. ([#28889](https://github.com/hashicorp/terraform/issues/28889))
+* cli: The darwin builds can now make use of the host DNS resolver, which will 
fix many network related issues on MacOS.
+
+BUG FIXES:
+
+* backend/remote: Fix faulty Terraform Cloud version check when migrating 
state to the remote backend with multiple local workspaces 
([#28864](https://github.com/hashicorp/terraform/issues/28864))
+* cli: Fix crash with deposed instances in json plan output 
([#28922](https://github.com/hashicorp/terraform/issues/28922))
+* core: Fix crash when provider modifies and unknown block during plan 
([#28941](https://github.com/hashicorp/terraform/issues/28941))
+* core: Diagnostic context was missing for some errors when validating blocks 
([#28979](https://github.com/hashicorp/terraform/issues/28979))
+* core: Fix crash when calling `setproduct` with unknown values 
([#28984](https://github.com/hashicorp/terraform/issues/28984))
+* json-output: Fix an issue where the JSON configuration representation was 
missing fully-unwrapped references. 
([#8884](https://github.com/hashicorp/terraform/issues/8884))
+* json-output: Fix JSON plan resource drift to remove unchanged resources. 
([#28975](https://github.com/hashicorp/terraform/issues/28975))

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 22:02:56 UTC (rev 984078)
+++ PKGBUILD2021-07-22 22:03:03 UTC (rev 984079)
@@ -1,37 +0,0 @@
-# Maintainer: Jerome Leclanche 
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=terraform
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
-url="https://www.terraform.io/;
-arch=("x86_64")
-license=("MPL")
-makedepends=("go")
-depends=('glibc')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha512sums=('d5d2db05d07e8f7266d58c9a99da86d0f67ee187a86ec467b5f4f107d75d78356e385a17221120f0c9d375389b77240de8026945fecba0bece6215c6fc544f04')
-changelog="CHANGELOG.md"
-
-build() {
-   cd "$pkgname-$pkgver"
-   export CGO_CPPFLAGS="${CPPFLAGS}"
-   export CGO_CFLAGS="${CFLAGS}"
-   export CGO_CXXFLAGS="${CXXFLAGS}"
-   export CGO_LDFLAGS="${LDFLAGS}"
-   export GOFLAGS="-buildmode=pie 

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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 22:02:56
  Author: shibumi
Revision: 984078

upgpkg: terraform 1.0.3-1

Modified:
  terraform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:43:36 UTC (rev 984077)
+++ PKGBUILD2021-07-22 22:02:56 UTC (rev 984078)
@@ -3,7 +3,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=terraform
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
 url="https://www.terraform.io/;
@@ -12,7 +12,8 @@
 makedepends=("go")
 depends=('glibc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha512sums=('d5d2db05d07e8f7266d58c9a99da86d0f67ee187a86ec467b5f4f107d75d78356e385a17221120f0c9d375389b77240de8026945fecba0bece6215c6fc544f04')
+sha512sums=('037d1a42a79b1e441245f28c5548245ddf5f5000510563508fb1e2503563dc4b27d1451ad25afd3cdb18bc004e83cc692101fd90f51c3e4e836905fd7e0cadcb')
+b2sums=('748e7e9438f6f3a80f87dd03cb7319cf5c84383261951f964fbcb5349bef8a508c38581cb9b18ae0e6279829ffc9f36c377a5cd05d45ed11f257beee437b8de0')
 changelog="CHANGELOG.md"
 
 build() {



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 21:43:36
  Author: shibumi
Revision: 984077

archrelease: copy trunk to community-x86_64

Added:
  cosign/repos/community-x86_64/PKGBUILD
(from rev 984076, cosign/trunk/PKGBUILD)
Deleted:
  cosign/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 21:43:29 UTC (rev 984076)
+++ PKGBUILD2021-07-22 21:43:36 UTC (rev 984077)
@@ -1,35 +0,0 @@
-# Maintainer: Santiago Torres-Arias 
-
-pkgname=cosign
-pkgver=0.3.1
-pkgrel=2
-pkgdesc="Container Signing with support for ephemeral keys and Sigstore 
signing"
-arch=('x86_64')
-url="https://github.com/sigstore/cosign;
-license=('Apache')
-depends=('pcsclite')
-makedepends=('go' 'git')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sigstore/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('61bd6b0a0eaf646e0e3fe47589b30e4e38a57532abb905e884d65d93557a8e22')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  mkdir build
-  go build -o build/ ./...
-}
-
-test() {
-  cd "${pkgname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 build/cosign "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm755 build/copasetic "${pkgdir}/usr/bin/copasetic"
-}

Copied: cosign/repos/community-x86_64/PKGBUILD (from rev 984076, 
cosign/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 21:43:36 UTC (rev 984077)
@@ -0,0 +1,37 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: Christian Rebischke 
+
+pkgname=cosign
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="Container Signing with support for ephemeral keys and Sigstore 
signing"
+arch=('x86_64')
+url="https://github.com/sigstore/cosign;
+license=('Apache')
+depends=('pcsclite')
+makedepends=('go' 'git')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sigstore/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('763c2a8ac42518771ad47b6ec3c5ce16b47a7cffc265cd36397c81165fef89fd04fbcdbdff26bb7ed5267b46227e56049971acfa97c61ed7fe7a0d0d0ab5')
+b2sums=('2ad7137186782743269ed4c1e1b03cd7f39e552d3a89d596053d07c952c599a7c23d38de60f68eece8162c67610b07cb19156b3568bd635b73f0fc535e865724')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  mkdir build
+  go build -o build/ ./...
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 build/cosign "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm755 build/copasetic "${pkgdir}/usr/bin/copasetic"
+}



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

2021-07-22 Thread Christian Rebischke via arch-commits
Date: Thursday, July 22, 2021 @ 21:43:29
  Author: shibumi
Revision: 984076

upgpkg: cosign 0.6.0-1 new version + fix tests + add b2sums

Modified:
  cosign/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:33:01 UTC (rev 984075)
+++ PKGBUILD2021-07-22 21:43:29 UTC (rev 984076)
@@ -1,8 +1,9 @@
 # Maintainer: Santiago Torres-Arias 
+# Maintainer: Christian Rebischke 
 
 pkgname=cosign
-pkgver=0.3.1
-pkgrel=2
+pkgver=0.6.0
+pkgrel=1
 pkgdesc="Container Signing with support for ephemeral keys and Sigstore 
signing"
 arch=('x86_64')
 url="https://github.com/sigstore/cosign;
@@ -10,7 +11,8 @@
 depends=('pcsclite')
 makedepends=('go' 'git')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sigstore/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('61bd6b0a0eaf646e0e3fe47589b30e4e38a57532abb905e884d65d93557a8e22')
+sha512sums=('763c2a8ac42518771ad47b6ec3c5ce16b47a7cffc265cd36397c81165fef89fd04fbcdbdff26bb7ed5267b46227e56049971acfa97c61ed7fe7a0d0d0ab5')
+b2sums=('2ad7137186782743269ed4c1e1b03cd7f39e552d3a89d596053d07c952c599a7c23d38de60f68eece8162c67610b07cb19156b3568bd635b73f0fc535e865724')
 
 build(){
   cd "${pkgname}-${pkgver}"
@@ -23,7 +25,7 @@
   go build -o build/ ./...
 }
 
-test() {
+check() {
   cd "${pkgname}-${pkgver}"
   make test
 }



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:33:04
  Author: heftig
Revision: 420315

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 420312, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 420313, linux/trunk/config)

--+
 PKGBUILD |  202 +
 config   |10559 +
 2 files changed, 10761 insertions(+)

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


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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:33:01
  Author: heftig
Revision: 420313

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 420312, nvidia/trunk/PKGBUILD)

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 420312, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-07-22 21:33:01 UTC (rev 420313)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=470.57.02
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:33:03
  Author: heftig
Revision: 420314

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 420312, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 420312, linux-zen/trunk/config)

--+
 PKGBUILD |  202 +
 config   |10616 +
 2 files changed, 10818 insertions(+)

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


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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:33:00
  Author: heftig
Revision: 984074

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 984073, netfilter-fullconenat/trunk/PKGBUILD)

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

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
984073, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:33:00 UTC (rev 984074)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=132
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+_commit=0cf3b48fd7d2fa81d0297d1fff12bbd0580fc435  # master
+source=("${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+prepare() {
+  cd ${pkgname}
+  echo "obj-m = xt_FULLCONENAT.o" > Kbuild
+}
+
+build() {
+  cd ${pkgname}
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  local extradir=/usr/lib/modules/$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:33:01
  Author: heftig
Revision: 984075

archrelease: copy trunk to community-testing-x86_64

Added:
  broadcom-wl/repos/community-testing-x86_64/
  broadcom-wl/repos/community-testing-x86_64/PKGBUILD
(from rev 984073, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 984073, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:33:01 UTC (rev 984075)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=312
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+build() {
+_kernver=$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:32:57
  Author: heftig
Revision: 984072

archrelease: copy trunk to community-testing-x86_64

Added:
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 984066, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 984066, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 984066, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   56 
 dkms.conf |9 +
 3 files changed, 66 insertions(+)

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
984066, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2021-07-22 21:32:57 UTC (rev 
984072)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 984066, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:32:57 UTC (rev 984072)
@@ -0,0 +1,56 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20210418
+pkgrel=26
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.xz;
+60-vhba.rules dkms.conf)
+sha256sums=('18bd82ae27721ad1612b3c31accd81898ae326370964385ca52a2a66b67a3f85'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:32:58
  Author: heftig
Revision: 984073

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
(from rev 984066, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 984066, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 984066, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 0002-kernel-5.7.patch  |   11 +
 PKGBUILD   |   50 +++
 3 files changed, 97 insertions(+)

Copied: bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 984066, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- community-testing-x86_64/0001-proc_ops-struct.patch 
(rev 0)
+++ community-testing-x86_64/0001-proc_ops-struct.patch 2021-07-22 21:32:58 UTC 
(rev 984073)
@@ -0,0 +1,36 @@
+diff --unified --recursive --text bbswitch-0.8.orig/bbswitch.c 
bbswitch-0.8.new/bbswitch.c
+--- bbswitch-0.8.orig/bbswitch.c   2013-12-04 21:22:06.0 -0200
 bbswitch-0.8.new/bbswitch.c2020-04-01 12:02:35.518754892 -0300
+@@ -35,6 +35,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #define BBSWITCH_VERSION "0.8"
+ 
+@@ -375,13 +376,23 @@
+ return 0;
+ }
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
++static struct proc_ops bbswitch_fops = {
++.proc_open   = bbswitch_proc_open,
++.proc_read   = seq_read,
++.proc_write  = bbswitch_proc_write,
++.proc_lseek = seq_lseek,
++.proc_release= single_release
++};
++#else
+ static struct file_operations bbswitch_fops = {
+ .open   = bbswitch_proc_open,
+ .read   = seq_read,
+ .write  = bbswitch_proc_write,
+ .llseek = seq_lseek,
+ .release= single_release
+-};
++ };
++#endif
+ 
+ static struct notifier_block nb = {
+ .notifier_call = _pm_handler

Copied: bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch (from rev 
984066, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-testing-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-testing-x86_64/0002-kernel-5.7.patch  2021-07-22 21:32:58 UTC 
(rev 984073)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 984066, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:32:58 UTC (rev 984073)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=433
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;
+0001-proc_ops-struct.patch 0002-kernel-5.7.patch)
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1'
+
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -Np1 < ../0001-proc_ops-struct.patch
+  patch -Np1 < ../0002-kernel-5.7.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make KDIR=/usr/src/linux
+}
+
+package_bbswitch() {
+  depends=('linux')
+
+  cd ${pkgbase}-${pkgver}
+  _extradir="/usr/lib/modules/$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:32:57
  Author: heftig
Revision: 984071

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 984066, acpi_call/trunk/PKGBUILD)

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 984066, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:32:57 UTC (rev 984071)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.2.1
+pkgrel=74
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+  _kernver=$(

[arch-commits] Commit in virtualbox-host-modules-arch/repos (2 files)

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:32:56
  Author: heftig
Revision: 984070

archrelease: copy trunk to community-testing-x86_64

Added:
  virtualbox-host-modules-arch/repos/community-testing-x86_64/
  virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 984066, virtualbox-host-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 984066, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:32:56 UTC (rev 984070)
@@ -0,0 +1,40 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.24
+pkgrel=3
+pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+arch=('x86_64')
+url='https://virtualbox.org/'
+license=('GPL')
+makedepends=('linux-headers' "virtualbox-host-dkms=$pkgver")
+replaces=('virtualbox-modules' 'virtualbox-host-modules')
+conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+   'virtualbox-host-dkms')
+provides=('VIRTUALBOX-HOST-MODULES')
+
+build() {
+  _kernver="$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:32:55
  Author: heftig
Revision: 984068

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 984066, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 984066, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:32:55 UTC (rev 984068)
@@ -0,0 +1,48 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=320
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:32:55
  Author: heftig
Revision: 984069

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 984066, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 984066, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:32:55 UTC (rev 984069)
@@ -0,0 +1,46 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.049.02
+pkgrel=5
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+
https://github.com/mtorromeo/r8168/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.asc)
+sha256sums=('2b12d932e976f8f74b8d9545744c04beb4676dd7bc1d032dde51347ed1d8be24'
+'SKIP')
+validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF') # Massimiliano 
Torromeo 
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   ENABLE_USE_FIRMWARE_FILE=y \
+   CONFIG_R8168_NAPI=y \
+   CONFIG_R8168_VLAN=y \
+   CONFIG_ASPM=y \
+   ENABLE_S5WOL=y \
+   ENABLE_EEE=y \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:32:54
  Author: heftig
Revision: 984067

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-anything-arch/repos/community-testing-x86_64/
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 984066, deepin-anything-arch/trunk/PKGBUILD)

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

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
984066, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-22 21:32:54 UTC (rev 984067)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.9
+pkgrel=12
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("https://github.com/linuxdeepin/deepin-anything/archive/$pkgver/deepin-anything-$pkgver.tar.gz;)
+sha512sums=('d7038f900c7f6cf2af156ced0fab6bcd46bff347011acc34b5d355ae8f09efe3f323724b728fbfe9c8b961e238ceb7c81aaf45f2e446b5d9ce908e8c0a658c5b')
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:29:55
  Author: heftig
Revision: 420312

archrelease: copy trunk to extra-x86_64

Added:
  evince/repos/extra-x86_64/PKGBUILD
(from rev 420310, evince/trunk/PKGBUILD)
Deleted:
  evince/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 21:29:54 UTC (rev 420311)
+++ PKGBUILD2021-07-22 21:29:55 UTC (rev 420312)
@@ -1,43 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=evince
-pkgver=40.3
-pkgrel=1
-pkgdesc="Document viewer (PDF, PostScript, XPS, djvu, dvi, tiff, cbr, cbz, 
cb7, cbt)"
-url="https://wiki.gnome.org/Apps/Evince;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 libgxps libspectre gsfonts poppler-glib djvulibre t1lib dconf 
libsecret libsynctex
- gsettings-desktop-schemas gnome-desktop libarchive 
gst-plugins-base-libs gspell libhandy
- gvfs)
-makedepends=(libnautilus-extension texlive-bin gobject-introspection 
docbook-xsl python gtk-doc git
- meson appstream-glib yelp-tools)
-optdepends=('texlive-bin: DVI support')
-provides=(libev{document,view}3.so)
-groups=(gnome)
-_commit=2d59ee3367e5f964d4a4e7d2f89025e4f88b85ba  # tags/40.3^0
-source=("git+https://gitlab.gnome.org/GNOME/evince.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-  
-build() {
-  arch-meson $pkgname build -D ps=enabled
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: evince/repos/extra-x86_64/PKGBUILD (from rev 420310, 
evince/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 21:29:55 UTC (rev 420312)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=evince
+pkgver=40.4
+pkgrel=1
+pkgdesc="Document viewer (PDF, PostScript, XPS, djvu, dvi, tiff, cbr, cbz, 
cb7, cbt)"
+url="https://wiki.gnome.org/Apps/Evince;
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 libgxps libspectre gsfonts poppler-glib djvulibre t1lib dconf 
libsecret libsynctex
+ gsettings-desktop-schemas gnome-desktop libarchive 
gst-plugins-base-libs gspell libhandy
+ gvfs)
+makedepends=(libnautilus-extension texlive-bin gobject-introspection 
docbook-xsl python gtk-doc git
+ meson appstream-glib yelp-tools)
+optdepends=('texlive-bin: DVI support')
+provides=(libev{document,view}3.so)
+groups=(gnome)
+_commit=d5639b30081f8ded08aa6be64ca0d1954f8daa52  # tags/40.4^0
+source=("git+https://gitlab.gnome.org/GNOME/evince.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+  
+build() {
+  arch-meson $pkgname build -D ps=enabled
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:25:58
  Author: heftig
Revision: 420309

40.4-1

Modified:
  evince/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:53 UTC (rev 420308)
+++ PKGBUILD2021-07-22 21:25:58 UTC (rev 420309)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=evince
-pkgver=40.3
+pkgver=40.4
 pkgrel=1
 pkgdesc="Document viewer (PDF, PostScript, XPS, djvu, dvi, tiff, cbr, cbz, 
cb7, cbt)"
 url="https://wiki.gnome.org/Apps/Evince;
@@ -16,7 +16,7 @@
 optdepends=('texlive-bin: DVI support')
 provides=(libev{document,view}3.so)
 groups=(gnome)
-_commit=2d59ee3367e5f964d4a4e7d2f89025e4f88b85ba  # tags/40.3^0
+_commit=d5639b30081f8ded08aa6be64ca0d1954f8daa52  # tags/40.4^0
 source=("git+https://gitlab.gnome.org/GNOME/evince.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:29:54
  Author: heftig
Revision: 420311

archrelease: copy trunk to extra-x86_64

Added:
  gnome-desktop/repos/extra-x86_64/PKGBUILD
(from rev 420310, gnome-desktop/trunk/PKGBUILD)
Deleted:
  gnome-desktop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 21:26:01 UTC (rev 420310)
+++ PKGBUILD2021-07-22 21:29:54 UTC (rev 420311)
@@ -1,47 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-desktop
-pkgver=40.2
-pkgrel=1
-epoch=1
-pkgdesc="Library with common API for various GNOME modules"
-url="https://gitlab.gnome.org/GNOME/gnome-desktop;
-arch=(x86_64)
-license=(GPL LGPL)
-depends=(gsettings-desktop-schemas gtk3 xkeyboard-config iso-codes libseccomp
- bubblewrap systemd libxkbcommon)
-makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
-checkdepends=(xorg-server-xvfb)
-provides=(libgnome-desktop-3.so)
-_commit=e708fc1a15dd96e362988b494acbc8e24fdf2ddd  # tags/40.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build \
--D gnome_distributor="Arch Linux" \
--D gtk_doc=true \
--D debug_tools=false \
--D date_in_gnome_version=false
-  meson compile -C build
-}
-
-check() {
-  dbus-run-session xvfb-run \
--s '-screen 0 1920x1080x24 -nolisten local' \
-meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gnome-desktop/repos/extra-x86_64/PKGBUILD (from rev 420310, 
gnome-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 21:29:54 UTC (rev 420311)
@@ -0,0 +1,47 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-desktop
+pkgver=40.3
+pkgrel=1
+epoch=1
+pkgdesc="Library with common API for various GNOME modules"
+url="https://gitlab.gnome.org/GNOME/gnome-desktop;
+arch=(x86_64)
+license=(GPL LGPL)
+depends=(gsettings-desktop-schemas gtk3 xkeyboard-config iso-codes libseccomp
+ bubblewrap systemd libxkbcommon)
+makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
+checkdepends=(xorg-server-xvfb)
+provides=(libgnome-desktop-3.so)
+_commit=4c4a631ea37efd2d0f5a28ddb927e128a7d5422b  # tags/40.3^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D gnome_distributor="Arch Linux" \
+-D gtk_doc=true \
+-D debug_tools=false \
+-D date_in_gnome_version=false
+  meson compile -C build
+}
+
+check() {
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:26:01
  Author: heftig
Revision: 420310

40.3-1

Modified:
  gnome-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:25:58 UTC (rev 420309)
+++ PKGBUILD2021-07-22 21:26:01 UTC (rev 420310)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-desktop
-pkgver=40.2
+pkgver=40.3
 pkgrel=1
 epoch=1
 pkgdesc="Library with common API for various GNOME modules"
@@ -14,7 +14,7 @@
 makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
 checkdepends=(xorg-server-xvfb)
 provides=(libgnome-desktop-3.so)
-_commit=e708fc1a15dd96e362988b494acbc8e24fdf2ddd  # tags/40.2^0
+_commit=4c4a631ea37efd2d0f5a28ddb927e128a7d5422b  # tags/40.3^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:54
  Author: heftig
Revision: 984066

5.0.9-12: linux 5.13.4.arch2-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:51 UTC (rev 984065)
+++ PKGBUILD2021-07-22 21:24:54 UTC (rev 984066)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.9
-pkgrel=11
+pkgrel=12
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:53
  Author: heftig
Revision: 420308

470.57.02-4: linux 5.13.4.arch2-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:18:45 UTC (rev 420307)
+++ PKGBUILD2021-07-22 21:24:53 UTC (rev 420308)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=470.57.02
-pkgrel=3
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:51
  Author: heftig
Revision: 984065

1.2.1-74: linux 5.13.4.arch2-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:49 UTC (rev 984064)
+++ PKGBUILD2021-07-22 21:24:51 UTC (rev 984065)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.2.1
-pkgrel=73
+pkgrel=74
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:49
  Author: heftig
Revision: 984064

20210418-26: linux 5.13.4.arch2-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:48 UTC (rev 984063)
+++ PKGBUILD2021-07-22 21:24:49 UTC (rev 984064)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20210418
-pkgrel=25
+pkgrel=26
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:48
  Author: heftig
Revision: 984063

8.049.02-5: linux 5.13.4.arch2-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:47 UTC (rev 984062)
+++ PKGBUILD2021-07-22 21:24:48 UTC (rev 984063)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.049.02
-pkgrel=4
+pkgrel=5
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:47
  Author: heftig
Revision: 984062

0.8-433: linux 5.13.4.arch2-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:46 UTC (rev 984061)
+++ PKGBUILD2021-07-22 21:24:47 UTC (rev 984062)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=432
+pkgrel=433
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:46
  Author: heftig
Revision: 984061

6.30.223.271-312: linux 5.13.4.arch2-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:44 UTC (rev 984060)
+++ PKGBUILD2021-07-22 21:24:46 UTC (rev 984061)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=311
+pkgrel=312
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'



[arch-commits] Commit in virtualbox-host-modules-arch/trunk (PKGBUILD)

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:43
  Author: heftig
Revision: 984059

6.1.24-3: linux 5.13.4.arch2-1

Modified:
  virtualbox-host-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:41 UTC (rev 984058)
+++ PKGBUILD2021-07-22 21:24:43 UTC (rev 984059)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.24
-pkgrel=2
+pkgrel=3
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:44
  Author: heftig
Revision: 984060

0.43-320: linux 5.13.4.arch2-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:24:43 UTC (rev 984059)
+++ PKGBUILD2021-07-22 21:24:44 UTC (rev 984060)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=319
+pkgrel=320
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:24:41
  Author: heftig
Revision: 984058

r73.0cf3b48-132: linux 5.13.4.arch2-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 21:11:26 UTC (rev 984057)
+++ PKGBUILD2021-07-22 21:24:41 UTC (rev 984058)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=131
+pkgrel=132
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 21:18:45
  Author: heftig
Revision: 420307

5.13.4.arch2-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 20:30:01 UTC (rev 420306)
+++ PKGBUILD2021-07-22 21:18:45 UTC (rev 420307)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.13.4.arch1
+pkgver=5.13.4.arch2
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}



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

2021-07-22 Thread Daniel Bermond via arch-commits
Date: Thursday, July 22, 2021 @ 21:11:26
  Author: dbermond
Revision: 984057

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 21:10:59 UTC (rev 984056)
+++ PKGBUILD2021-07-22 21:11:26 UTC (rev 984057)
@@ -1,36 +0,0 @@
-# Maintainer : Daniel Bermond 
-# Maintainer : Santiago Torres-Arias 
-# Contributor: Simon Boulay 
-
-pkgname=python-breathe
-pkgver=4.30.0
-pkgrel=1
-pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output"
-arch=('any')
-url="https://breathe.readthedocs.org/en/latest/;
-license=('BSD')
-depends=('python' 'python-sphinx' 'python-docutils' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://github.com/michaeljones/breathe/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
-
"${pkgname}-${pkgver}.tar.gz.sig"::"https://github.com/michaeljones/breathe/releases/download/v${pkgver}/breathe-${pkgver}.tar.gz.sig;)
-sha512sums=('fa09ee687a8e67fa480865a0d33affd9aa0ab48b0cb5b685731ec393045d8c9e1ae0622a1315f805449d712e99e6982ed229bb79314c69f69da0c705d075f7f9'
-'SKIP')
-validpgpkeys=('8AED58021FEACDD5F27BA0E6A72F627716EA9D96') # Melvin Vermeeren 

-
-check() {
-  cd "breathe-${pkgver}"
-  PYTHONPATH="$PWD" make test
-}
-
-build() {
-  cd "breathe-${pkgver}"
-  python setup.py build
-}
-
-package_python-breathe() {
-  cd "breathe-${pkgver}"
-  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --skip-build 
--optimize=1
-
-  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-breathe/repos/community-any/PKGBUILD (from rev 984056, 
python-breathe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 21:11:26 UTC (rev 984057)
@@ -0,0 +1,39 @@
+# Maintainer : Daniel Bermond 
+# Maintainer : Santiago Torres-Arias 
+# Contributor: Simon Boulay 
+
+pkgname=python-breathe
+pkgver=4.30.0
+pkgrel=2
+pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output"
+arch=('any')
+url="https://breathe.readthedocs.org/en/latest/;
+license=('BSD')
+depends=('python' 'python-sphinx' 'python-docutils' 'python-six')
+makedepends=('git' 'python-setuptools')
+checkdepends=('python-pytest')
+source=("git+https://github.com/michaeljones/breathe.git#tag=v${pkgver}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=('8AED58021FEACDD5F27BA0E6A72F627716EA9D96') # Melvin Vermeeren 

+
+prepare() {
+  # needed for building gdal documentation (and possibly others)
+  git -C breathe fetch origin pull/711/head:handle-parsing-errors
+  git -C breathe merge --no-commit handle-parsing-errors
+}
+
+build() {
+  cd breathe
+  python setup.py build
+}
+
+check() {
+  cd breathe
+  PYTHONPATH="$PWD" make test
+}
+
+package_python-breathe() {
+  cd breathe
+  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --skip-build 
--optimize=1
+  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-07-22 Thread Daniel Bermond via arch-commits
Date: Thursday, July 22, 2021 @ 21:10:59
  Author: dbermond
Revision: 984056

upgpkg: python-breathe 4.30.0-2: add fix for gdal

Modified:
  python-breathe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 20:26:47 UTC (rev 984055)
+++ PKGBUILD2021-07-22 21:10:59 UTC (rev 984056)
@@ -4,33 +4,36 @@
 
 pkgname=python-breathe
 pkgver=4.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output"
 arch=('any')
 url="https://breathe.readthedocs.org/en/latest/;
 license=('BSD')
 depends=('python' 'python-sphinx' 'python-docutils' 'python-six')
-makedepends=('python-setuptools')
+makedepends=('git' 'python-setuptools')
 checkdepends=('python-pytest')
-source=("https://github.com/michaeljones/breathe/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
-
"${pkgname}-${pkgver}.tar.gz.sig"::"https://github.com/michaeljones/breathe/releases/download/v${pkgver}/breathe-${pkgver}.tar.gz.sig;)
-sha512sums=('fa09ee687a8e67fa480865a0d33affd9aa0ab48b0cb5b685731ec393045d8c9e1ae0622a1315f805449d712e99e6982ed229bb79314c69f69da0c705d075f7f9'
-'SKIP')
+source=("git+https://github.com/michaeljones/breathe.git#tag=v${pkgver}?signed;)
+sha512sums=('SKIP')
 validpgpkeys=('8AED58021FEACDD5F27BA0E6A72F627716EA9D96') # Melvin Vermeeren 

 
-check() {
-  cd "breathe-${pkgver}"
-  PYTHONPATH="$PWD" make test
+prepare() {
+  # needed for building gdal documentation (and possibly others)
+  git -C breathe fetch origin pull/711/head:handle-parsing-errors
+  git -C breathe merge --no-commit handle-parsing-errors
 }
 
 build() {
-  cd "breathe-${pkgver}"
+  cd breathe
   python setup.py build
 }
 
+check() {
+  cd breathe
+  PYTHONPATH="$PWD" make test
+}
+
 package_python-breathe() {
-  cd "breathe-${pkgver}"
+  cd breathe
   PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --skip-build 
--optimize=1
-
   install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 20:30:01
  Author: heftig
Revision: 420306

5.13.4.zen2-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 20:28:57 UTC (rev 420305)
+++ PKGBUILD2021-07-22 20:30:01 UTC (rev 420306)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.13.4.zen1
+pkgver=5.13.4.zen2
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 20:28:57
  Author: heftig
Revision: 420305

archrelease: copy trunk to extra-x86_64

Added:
  libadwaita/repos/extra-x86_64/PKGBUILD
(from rev 420304, libadwaita/trunk/PKGBUILD)
Deleted:
  libadwaita/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 20:27:00 UTC (rev 420304)
+++ PKGBUILD2021-07-22 20:28:57 UTC (rev 420305)
@@ -1,58 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=libadwaita
-pkgname=(libadwaita libadwaita-docs)
-pkgver=1.0.0alpha.1
-pkgrel=1
-pkgdesc="Building blocks for modern GNOME applications"
-url="https://gitlab.gnome.org/GNOME/libadwaita;
-arch=(x86_64)
-license=(LGPL)
-depends=(gtk4)
-makedepends=(git meson gi-docgen sassc gobject-introspection vala)
-_commit=faa9f26a2b8a89923c0b83d42e84078f672c19ec  # tags/1.0.0-alpha.1^0
-source=("git+https://gitlab.gnome.org/GNOME/libadwaita.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed -r 's/-([a-z])/\1/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build -D gtk_doc=true
-  meson compile -C build
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_libadwaita() {
-  depends+=(libgtk-4.so)
-  provides+=(libadwaita-1.so)
-
-  meson install -C build --destdir "$pkgdir"
-
-  cd "$pkgdir"
-
-  _pick docs usr/share/doc
-}
-
-package_libadwaita-docs() {
-  pkgdesc+=" (documentation)"
-  depends=()
-  mv docs/* "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: libadwaita/repos/extra-x86_64/PKGBUILD (from rev 420304, 
libadwaita/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 20:28:57 UTC (rev 420305)
@@ -0,0 +1,58 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=libadwaita
+pkgname=(libadwaita libadwaita-docs)
+pkgver=1.0.0alpha.2
+pkgrel=1
+pkgdesc="Building blocks for modern GNOME applications"
+url="https://gitlab.gnome.org/GNOME/libadwaita;
+arch=(x86_64)
+license=(LGPL)
+depends=(gtk4)
+makedepends=(git meson gi-docgen sassc gobject-introspection vala)
+_commit=f5932ab4250c8e709958c6e75a1a4941a5f0f386  # tags/1.0.0-alpha.2^0
+source=("git+https://gitlab.gnome.org/GNOME/libadwaita.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed -r 's/-([a-z])/\1/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D gtk_doc=true
+  meson compile -C build
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_libadwaita() {
+  depends+=(libgtk-4.so)
+  provides+=(libadwaita-1.so)
+
+  meson install -C build --destdir "$pkgdir"
+
+  cd "$pkgdir"
+
+  _pick docs usr/share/doc
+}
+
+package_libadwaita-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+  mv docs/* "$pkgdir"
+}
+
+# vim:set sw=2 et:



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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 20:27:00
  Author: heftig
Revision: 420304

1.0.0alpha.2-1

Modified:
  libadwaita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 20:26:58 UTC (rev 420303)
+++ PKGBUILD2021-07-22 20:27:00 UTC (rev 420304)
@@ -2,7 +2,7 @@
 
 pkgbase=libadwaita
 pkgname=(libadwaita libadwaita-docs)
-pkgver=1.0.0alpha.1
+pkgver=1.0.0alpha.2
 pkgrel=1
 pkgdesc="Building blocks for modern GNOME applications"
 url="https://gitlab.gnome.org/GNOME/libadwaita;
@@ -10,7 +10,7 @@
 license=(LGPL)
 depends=(gtk4)
 makedepends=(git meson gi-docgen sassc gobject-introspection vala)
-_commit=faa9f26a2b8a89923c0b83d42e84078f672c19ec  # tags/1.0.0-alpha.1^0
+_commit=f5932ab4250c8e709958c6e75a1a4941a5f0f386  # tags/1.0.0-alpha.2^0
 source=("git+https://gitlab.gnome.org/GNOME/libadwaita.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-07-22 Thread Andreas Radke via arch-commits
Date: Thursday, July 22, 2021 @ 20:26:58
  Author: andyrtr
Revision: 420303

archrelease: copy trunk to extra-any

Added:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD
(from rev 420302, 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-07-22 20:25:47 UTC (rev 420302)
+++ PKGBUILD2021-07-22 20:26:58 UTC (rev 420303)
@@ -1,571 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=libreoffice-fresh-i18n
-
-pkgver=7.1.4
-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)" 0'

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

2021-07-22 Thread Antonio Rojas via arch-commits
Date: Thursday, July 22, 2021 @ 20:26:47
  Author: arojas
Revision: 984055

archrelease: copy trunk to community-any

Added:
  jupyter-server/repos/community-any/PKGBUILD
(from rev 984054, jupyter-server/trunk/PKGBUILD)
Deleted:
  jupyter-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 20:26:36 UTC (rev 984054)
+++ PKGBUILD2021-07-22 20:26:47 UTC (rev 984055)
@@ -1,27 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=jupyter-server
-pkgver=1.9.0
-pkgrel=2
-pkgdesc='Provides the backend for Jupyter web applications like Jupyter 
notebook, JupyterLab, and Voila'
-arch=(any)
-url='https://jupyter.org/'
-license=(custom)
-depends=(python-jupyter_client jupyter-nbformat jupyter-nbconvert 
python-terminado python-prometheus_client python-traitlets python-tornado
- python-jinja python-send2trash python-anyio python-jupyter_packaging 
python-websocket-client python-requests-unixsocket)
-makedepends=(python-setuptools)
-optdepends=('jupyter-server-mathjax: to use local MathJax')
-source=(https://pypi.io/packages/source/j/${pkgname/-/_}/${pkgname/-/_}-$pkgver.tar.gz)
-sha256sums=('7d19006380f6217458a9db309b54e3dab87ced6c06329c61823907bef2a6f51b')
-
-build() {
-  cd ${pkgname/-/_}-$pkgver
-  python setup.py build 
-}
-
-package() {
-  cd ${pkgname/-/_}-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 COPYING.md -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: jupyter-server/repos/community-any/PKGBUILD (from rev 984054, 
jupyter-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 20:26:47 UTC (rev 984055)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=jupyter-server
+pkgver=1.10.0
+pkgrel=1
+pkgdesc='Provides the backend for Jupyter web applications like Jupyter 
notebook, JupyterLab, and Voila'
+arch=(any)
+url='https://jupyter.org/'
+license=(custom)
+depends=(python-jupyter_client jupyter-nbformat jupyter-nbconvert 
python-terminado python-prometheus_client python-traitlets python-tornado
+ python-jinja python-send2trash python-anyio python-jupyter_packaging 
python-websocket-client python-requests-unixsocket)
+makedepends=(python-setuptools)
+optdepends=('jupyter-server-mathjax: to use local MathJax')
+source=(https://pypi.io/packages/source/j/${pkgname/-/_}/${pkgname/-/_}-$pkgver.tar.gz)
+sha256sums=('5c954876b1e82458cf8d48e6ad0dd4db70190df28902eb4b5257e9813a4c3832')
+
+build() {
+  cd ${pkgname/-/_}-$pkgver
+  python setup.py build 
+}
+
+package() {
+  cd ${pkgname/-/_}-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 COPYING.md -t "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2021-07-22 Thread Antonio Rojas via arch-commits
Date: Thursday, July 22, 2021 @ 20:26:36
  Author: arojas
Revision: 984054

Update to 1.10.0

Modified:
  jupyter-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 20:11:14 UTC (rev 984053)
+++ PKGBUILD2021-07-22 20:26:36 UTC (rev 984054)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=jupyter-server
-pkgver=1.9.0
-pkgrel=2
+pkgver=1.10.0
+pkgrel=1
 pkgdesc='Provides the backend for Jupyter web applications like Jupyter 
notebook, JupyterLab, and Voila'
 arch=(any)
 url='https://jupyter.org/'
@@ -12,7 +12,7 @@
 makedepends=(python-setuptools)
 optdepends=('jupyter-server-mathjax: to use local MathJax')
 
source=(https://pypi.io/packages/source/j/${pkgname/-/_}/${pkgname/-/_}-$pkgver.tar.gz)
-sha256sums=('7d19006380f6217458a9db309b54e3dab87ced6c06329c61823907bef2a6f51b')
+sha256sums=('5c954876b1e82458cf8d48e6ad0dd4db70190df28902eb4b5257e9813a4c3832')
 
 build() {
   cd ${pkgname/-/_}-$pkgver



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

2021-07-22 Thread Andreas Radke via arch-commits
Date: Thursday, July 22, 2021 @ 20:25:47
  Author: andyrtr
Revision: 420302

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

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  366 ++---
 1 file changed, 183 insertions(+), 183 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 20:25:12 UTC (rev 420301)
+++ PKGBUILD2021-07-22 20:25:47 UTC (rev 420302)
@@ -3,7 +3,7 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=7.1.4
+pkgver=7.1.5
 pkgrel=1
 _rcver=${pkgver}.2
 #_oodlver=${pkgver}.0.beta1
@@ -149,369 +149,369 @@
   'zu"Zulu"0'
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # "LibreOffice Build 
Team (CODE SIGNING KEY) "
-sha256sums=('182508cca2d57372a0313513c2a7c47388c6fce96bae23c474c9fb641931be5e'
+sha256sums=('28cbab1cc54acc546a7c1a18f8efbc23d4b4ee75daab841867a4ebaaaf737d16'
 'SKIP'
-'267eacc9d3a8cc611ba0e22293eaf5e4d86b4679ba3fba682c22ec1c0bef2701'
+'8bd002661f855ab52b0f063613c8c78bdbd9607d5e304124345705dcef030875'
 'SKIP'
-'951ced06541e79b0e121b3c087fbe445bb8a85f099fbe0ab49c90159bed1cde6'
+'1c31b2c9a71dc0351ae4c45d93b41f4ff33f4df71419a5a5701788ff5b16c9fd'
 'SKIP'
-'b47119f64f640efa0ad0f0b746115a69d8d37121b70e9d9ae0c06f7ea372eb8a'
+'404f8595d00e5a45e99371bcf6a62359cfcaeece073cbdc35859104f51018e70'
 'SKIP'
-'8eec0da4e8db91ff61da38b71f3d5bd59ce5cba9a73c015f13bc4c2ff6783938'
+'d0845c9ee5d8779f2276e6f0dd1215d51078eaed285b94d5e53fce8b1a29d062'
 'SKIP'
-'fa06c23a8a4493f1ce82e1b793a1f80c8ca6602a879dc4483884fd192971'
+'0320e7ebd6ef3c2504e89d96e2d7327c5d175a44b8c569a442d7ae2a2612f050'
 'SKIP'
-'3180fc872839042ed77d1dd07d06ef6abdd4a93b228ec0b402278b1f5227dfe2'
+'d3c082d15f9352b0ed3080b932618a0918e4bf01818660e7f05ff52c473b7cd5'
 'SKIP'
-'bad15ec16d9c4bd9f23302d167be2fb16416dd568c5a76707c103d0f560d83da'
+'acc1e2a8a90286fc3ad2cba18cd2af575a23e2bce5b1fe32c87d65e5d381667b'
 'SKIP'
-'52755f08463410d94d6dc642bc5fdbc13b4bd8ef128bd06cdfcc6e0a887acfb5'
+'2db97d4fd9bde250e6ef6ccc8bab48c8f8fa5eebeb016fe93ff096644e60b60e'
 'SKIP'
-'7a2cc0ed51291b9db55f6a3b46463270567ce84c46f862183bdf24ffe12563cc'
+'d31a39e4057a9cc6bc3a4440e133f769fc1ab7da0b883e1fd604c3e0eb2ed227'
 'SKIP'
-'8b8a29ab307b28f1239b9144ae5455d007c69ca723622c6f7af00119b4528a86'
+'a69abce5f59989918d1943f5afbdafd17d80e854d8b993312e8b1c9097a956ed'
 'SKIP'
-'28a9b7b0b3b757d1a13889920ee460509f2f52dbb145363a7e67bfaf34c9b4ac'
+'870494e519a10539374a1058218f36e6f70f13dfe18b265aa9c91b590f51fb54'
 'SKIP'
-'6c1a71134069f3340c64832a627d35d498fc265abbf6655c842d5cd0cb5aa1b8'
+'157c585e7fb0c18bbfc687978af928b016e4eb46307161dac15803facf3eb2de'
 'SKIP'
-'45551037c41494063a1f2aebf7aa580cc7f554bde294a405a433fc2a8df83ddc'
+'a649f52b5963f8222b01f0c28b6f97f3729e9c2cd0d099222b16819126a06171'
 'SKIP'
-'38eaa6614d064ea0592859cb3d1dd6a2a14a463ddf0faf8bfd8f47dbd6f63d72'
+'fc13e1472baf76324c149f3a372d11bbc5024bbd1866f4b16210c39b99748df5'
 'SKIP'
-'2c91195451b4ba28989955c2df43d58922dc11d39d23053f9c01d68e364a6ad8'
+'9e80012079b94617da9d0749bb96299006bbe43dab242055c16b482271bcdf94'
 'SKIP'
-'dd1d4cbb6c3548c87c755f6745e96b7b2ad193578c868e3534adfe0e7f6938fb'
+'482a8dd5a1df41aa02ce2ea8dc873ca2f4139488bbf2c2cc14011ef079f2ea67'
 'SKIP'
-'43359e477a101f46e95341a9e8288a9d37384f9908381cb05ac59b17ddde97e5'
+'5aa5a06f21d6983989593a928af9f1883e176f3b219f5db4d12ec93acf703f76'
 'SKIP'
-'ac156222156c8a987c6dfdae4f3a4f1a8a46fb56dc1cbe52400fd6a50b786dfb'
+'170626086802798e9b358c3405468228175b98c02dc56d5833ffae2175dfdf47'
 'SKIP'
-'cdc3790db37393aad6aaf0d8f44e5c887552b95a154e7a96bc026d6eb9e0f50d'
+'6ef18244028b677ec89cca1f1d5ea29e523984e790f6125b1b415cc0ba495fea'
 'SKIP'
-'6745a80c2964dfacb6e4f1a3c6bbfcda57fcfe9e8300833ed0a7f313c0feb402'
+'ef3ae8d646aa9bf44cb8d9b5ddb51b9f91268b502531fa9d2562d742d983742f'
 'SKIP'
-'121a5d4ead1282c4c959e3f9804e84f6e5bfa03e891499450c08cdfbe5dd121b'
+'60a7fae53c0cd856c5357ad1962f2a940274478d5355dd989cb10766d2c2f1bc'
 'SKIP'
-'718c7f789d230c2fea3b8b8aa53304e0788474606e3c903fc6eb7da160e9119b'
+'e973cea071197bafa9d7b0d8184bf49d3b91dd2d7b0b4d653fe99c0ddafda43d'
 'SKIP'
- 

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 20:25:12
  Author: heftig
Revision: 420301

archrelease: copy trunk to extra-x86_64

Added:
  modemmanager/repos/extra-x86_64/PKGBUILD
(from rev 420300, modemmanager/trunk/PKGBUILD)
Deleted:
  modemmanager/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  170 ++---
 1 file changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 20:24:44 UTC (rev 420300)
+++ PKGBUILD2021-07-22 20:25:12 UTC (rev 420301)
@@ -1,85 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=modemmanager
-pkgname=(modemmanager libmm-glib)
-pkgver=1.16.6
-pkgrel=1
-pkgdesc="Mobile broadband modem management service"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/ModemManager/;
-license=(GPL2 LGPL2.1)
-depends=(systemd libgudev polkit ppp libqmi libmbim
- mobile-broadband-provider-info)
-makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
-checkdepends=(python-gobject python-dbus)
-_commit=a7b37461441f66ca1f54c1e83473dbd6e4191852  # tags/1.16.6
-source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ModemManager
-  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
-}
-
-prepare() {
-  cd ModemManager
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ModemManager
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---with-dbus-sys-dir=/usr/share/dbus-1/system.d \
---with-udev-base-dir=/usr/lib/udev \
---with-polkit=permissive \
---with-systemd-journal \
---with-systemd-suspend-resume \
---enable-compile-warnings=yes \
---enable-gtk-doc \
---disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd ModemManager
-  make -k check
-}
-
-package_modemmanager() {
-  depends+=(libmm-glib.so libg{lib,object,io,module}-2.0.so libsystemd.so 
libgudev-1.0.so
-libqmi-glib.so libmbim-glib.so)
-  optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
-  options=(!emptydirs)
-
-  cd ModemManager
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" -C libmm-glib uninstall
-  make DESTDIR="$pkgdir" -C vapi uninstall
-
-  # Some stuff to move is left over
-  mv "$pkgdir/usr/include" ..
-  mv "$pkgdir/usr/lib/pkgconfig" ..
-}
-
-package_libmm-glib() {
-  pkgdesc="ModemManager library"
-  depends=(libg{lib,object,io}-2.0.so)
-  provides=(libmm-glib.so)
-
-  install -d "$pkgdir/usr/lib"
-  mv include "$pkgdir/usr"
-  mv pkgconfig "$pkgdir/usr/lib"
-
-  cd ModemManager
-  make DESTDIR="$pkgdir" -C libmm-glib install
-  make DESTDIR="$pkgdir" -C vapi install
-}

Copied: modemmanager/repos/extra-x86_64/PKGBUILD (from rev 420300, 
modemmanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 20:25:12 UTC (rev 420301)
@@ -0,0 +1,85 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgbase=modemmanager
+pkgname=(modemmanager libmm-glib)
+pkgver=1.16.8
+pkgrel=1
+pkgdesc="Mobile broadband modem management service"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/ModemManager/;
+license=(GPL2 LGPL2.1)
+depends=(systemd libgudev polkit ppp libqmi libmbim
+ mobile-broadband-provider-info)
+makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
+checkdepends=(python-gobject python-dbus)
+_commit=cc616ed45ea8ec80492e2ae7b107589f59a3f9c1  # tags/1.16.8
+source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ModemManager
+  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
+}
+
+prepare() {
+  cd ModemManager
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd ModemManager
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--with-dbus-sys-dir=/usr/share/dbus-1/system.d \
+--with-udev-base-dir=/usr/lib/udev \
+--with-polkit=permissive \
+--with-systemd-journal \
+--with-systemd-suspend-resume \
+--enable-compile-warnings=yes \
+--enable-gtk-doc \
+--disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd ModemManager
+  make -k check
+}
+
+package_modemmanager() {
+  depends+=(libmm-glib.so libg{lib,object,io,module}-2.0.so libsystemd.so 
libgudev-1.0.so
+libqmi-glib.so libmbim-glib.so)
+  optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
+  options=(!emptydirs)
+
+  

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 20:24:44
  Author: heftig
Revision: 420300

1.16.8-1

Modified:
  modemmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 20:24:19 UTC (rev 420299)
+++ PKGBUILD2021-07-22 20:24:44 UTC (rev 420300)
@@ -3,7 +3,7 @@
 
 pkgbase=modemmanager
 pkgname=(modemmanager libmm-glib)
-pkgver=1.16.6
+pkgver=1.16.8
 pkgrel=1
 pkgdesc="Mobile broadband modem management service"
 arch=(x86_64)
@@ -13,7 +13,7 @@
  mobile-broadband-provider-info)
 makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
 checkdepends=(python-gobject python-dbus)
-_commit=a7b37461441f66ca1f54c1e83473dbd6e4191852  # tags/1.16.6
+_commit=cc616ed45ea8ec80492e2ae7b107589f59a3f9c1  # tags/1.16.8
 
source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-07-22 Thread Antonio Rojas via arch-commits
Date: Thursday, July 22, 2021 @ 20:24:19
  Author: arojas
Revision: 420299

archrelease: copy trunk to extra-x86_64

Added:
  clazy/repos/extra-x86_64/PKGBUILD
(from rev 420298, clazy/trunk/PKGBUILD)
Deleted:
  clazy/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 20:24:06 UTC (rev 420298)
+++ PKGBUILD2021-07-22 20:24:19 UTC (rev 420299)
@@ -1,32 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: André Klitzing 
-
-pkgname=clazy
-pkgver=1.9
-pkgrel=3
-pkgdesc='Qt oriented code checker based on clang framework'
-url='https://www.kdab.com/'
-license=(GPL2)
-depends=(clang)
-makedepends=(cmake llvm)
-arch=(x86_64)
-source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}
-https://github.com/KDE/clazy/commit/2592a6e3.patch)
-sha256sums=('4c6c2e473e6aa011cc5fab120ebcffec3fc11a9cc677e21ad8c3ea676eb076f8'
-'SKIP'
-'63f9c5766f8995f147d7c2e1a8cf2059d1119a378a58525006eef73294fd2c38')
-validpgpkeys=(949014B23D24354DFD548E5457416A0ADCEF0EFE) # Sergio Martins 

-
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < 2592a6e3.patch # Fix build with clang 12
-}
-
-build() {
-  cmake -B build $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: clazy/repos/extra-x86_64/PKGBUILD (from rev 420298, 
clazy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 20:24:19 UTC (rev 420299)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: André Klitzing 
+
+pkgname=clazy
+pkgver=1.10
+pkgrel=1
+pkgdesc='Qt oriented code checker based on clang framework'
+url='https://www.kdab.com/'
+license=(GPL2)
+depends=(clang)
+makedepends=(cmake llvm)
+arch=(x86_64)
+source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('4ce6d55ffcddacdb005d847e0c329ade88a01e8e4f7590ffd2a9da367c1ba39d'
+'SKIP')
+validpgpkeys=(949014B23D24354DFD548E5457416A0ADCEF0EFE) # Sergio Martins 

+
+build() {
+  cmake -B build $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-07-22 Thread Antonio Rojas via arch-commits
Date: Thursday, July 22, 2021 @ 20:24:06
  Author: arojas
Revision: 420298

Update to 1.10

Modified:
  clazy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 19:50:13 UTC (rev 420297)
+++ PKGBUILD2021-07-22 20:24:06 UTC (rev 420298)
@@ -2,8 +2,8 @@
 # Contributor: André Klitzing 
 
 pkgname=clazy
-pkgver=1.9
-pkgrel=3
+pkgver=1.10
+pkgrel=1
 pkgdesc='Qt oriented code checker based on clang framework'
 url='https://www.kdab.com/'
 license=(GPL2)
@@ -10,17 +10,11 @@
 depends=(clang)
 makedepends=(cmake llvm)
 arch=(x86_64)
-source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}
-https://github.com/KDE/clazy/commit/2592a6e3.patch)
-sha256sums=('4c6c2e473e6aa011cc5fab120ebcffec3fc11a9cc677e21ad8c3ea676eb076f8'
-'SKIP'
-'63f9c5766f8995f147d7c2e1a8cf2059d1119a378a58525006eef73294fd2c38')
+source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('4ce6d55ffcddacdb005d847e0c329ade88a01e8e4f7590ffd2a9da367c1ba39d'
+'SKIP')
 validpgpkeys=(949014B23D24354DFD548E5457416A0ADCEF0EFE) # Sergio Martins 

 
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < 2592a6e3.patch # Fix build with clang 12
-}
-
 build() {
   cmake -B build $pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr



[arch-commits] Commit in lib32-pipewire/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 20:11:14
  Author: heftig
Revision: 984053

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-pipewire/repos/multilib-x86_64/PKGBUILD
(from rev 984052, lib32-pipewire/trunk/PKGBUILD)
Deleted:
  lib32-pipewire/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  198 ++---
 1 file changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 20:11:02 UTC (rev 984052)
+++ PKGBUILD2021-07-22 20:11:14 UTC (rev 984053)
@@ -1,99 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=lib32-pipewire
-pkgname=(lib32-pipewire lib32-pipewire-jack)
-pkgver=0.3.31
-pkgrel=2
-epoch=1
-pkgdesc="Low-latency audio/video router and processor - 32-bit client library"
-url="https://pipewire.org;
-license=(MIT)
-arch=(x86_64)
-makedepends=(git meson lib32-alsa-lib lib32-systemd lib32-dbus)
-_commit=c43dabcc96e2e072cdf08e5f094bb677d9017c6b  # tags/0.3.31
-source=("git+https://gitlab.freedesktop.org/pipewire/pipewire.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pipewire
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd pipewire
-}
-
-build() {
-  local meson_options=(
---libdir /usr/lib32
--D examples=disabled
--D man=disabled
--D tests=disabled
--D gstreamer=disabled
--D gstreamer-device-provider=disabled
--D systemd-user-service=disabled
--D bluez5=disabled
--D jack=disabled
--D v4l2=disabled
--D libcamera=disabled
--D pw-cat=disabled
--D udevrulesdir=/usr/lib/udev/rules.d
--D sdl2=disabled
--D sndfile=disabled
--D libpulse=disabled
--D roc=disabled
--D avahi=disabled
--D echo-cancel-webrtc=disabled
--D libusb=disabled
--D session-managers="[]"
-  )
-
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
-
-  arch-meson pipewire build "${meson_options[@]}"
-  meson compile -C build
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-_ver=${pkgver:0:3}
-
-package_lib32-pipewire() {
-  depends=(pipewire lib32-systemd libdbus-1.so libasound.so)
-  optdepends=('lib32-pipewire-jack: JACK support')
-  provides=(libpipewire-$_ver.so)
-
-  meson install -C build --destdir "$pkgdir"
-
-  ( cd "$pkgdir"
-
-_pick jack usr/lib32/pipewire-$_ver/jack
-
-rm -r usr/{bin,include,lib,share}
-  )
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 pipewire/COPYING
-}
-
-package_lib32-pipewire-jack() {
-  pkgdesc+=" - JACK support"
-  license+=(GPL2)  # libjackserver
-  depends=(pipewire-jack lib32-pipewire libpipewire-$_ver.so)
-
-  mv jack/* "$pkgdir"
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 pipewire/COPYING
-}
-
-# vim:set sw=2 et:

Copied: lib32-pipewire/repos/multilib-x86_64/PKGBUILD (from rev 984052, 
lib32-pipewire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-22 20:11:14 UTC (rev 984053)
@@ -0,0 +1,99 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=lib32-pipewire
+pkgname=(lib32-pipewire lib32-pipewire-jack)
+pkgver=0.3.32
+pkgrel=1
+epoch=1
+pkgdesc="Low-latency audio/video router and processor - 32-bit client library"
+url="https://pipewire.org;
+license=(MIT)
+arch=(x86_64)
+makedepends=(git meson lib32-alsa-lib lib32-systemd lib32-dbus)
+_commit=41ce3092756ab27106881f4246e54bf32ea5adbe  # tags/0.3.32
+source=("git+https://gitlab.freedesktop.org/pipewire/pipewire.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pipewire
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd pipewire
+}
+
+build() {
+  local meson_options=(
+--libdir /usr/lib32
+-D examples=disabled
+-D man=disabled
+-D tests=disabled
+-D gstreamer=disabled
+-D gstreamer-device-provider=disabled
+-D systemd-user-service=disabled
+-D bluez5=disabled
+-D jack=disabled
+-D v4l2=disabled
+-D libcamera=disabled
+-D pw-cat=disabled
+-D udevrulesdir=/usr/lib/udev/rules.d
+-D sdl2=disabled
+-D sndfile=disabled
+-D libpulse=disabled
+-D roc=disabled
+-D avahi=disabled
+-D echo-cancel-webrtc=disabled
+-D libusb=disabled
+-D session-managers="[]"
+  )
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson pipewire build "${meson_options[@]}"
+  meson compile -C build
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  

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

2021-07-22 Thread Jan Steffens via arch-commits
Date: Thursday, July 22, 2021 @ 20:11:02
  Author: heftig
Revision: 984052

0.3.32-1

Modified:
  lib32-pipewire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 19:56:09 UTC (rev 984051)
+++ PKGBUILD2021-07-22 20:11:02 UTC (rev 984052)
@@ -3,8 +3,8 @@
 
 pkgbase=lib32-pipewire
 pkgname=(lib32-pipewire lib32-pipewire-jack)
-pkgver=0.3.31
-pkgrel=2
+pkgver=0.3.32
+pkgrel=1
 epoch=1
 pkgdesc="Low-latency audio/video router and processor - 32-bit client library"
 url="https://pipewire.org;
@@ -11,7 +11,7 @@
 license=(MIT)
 arch=(x86_64)
 makedepends=(git meson lib32-alsa-lib lib32-systemd lib32-dbus)
-_commit=c43dabcc96e2e072cdf08e5f094bb677d9017c6b  # tags/0.3.31
+_commit=41ce3092756ab27106881f4246e54bf32ea5adbe  # tags/0.3.32
 
source=("git+https://gitlab.freedesktop.org/pipewire/pipewire.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-07-22 Thread Andreas Radke via arch-commits
Date: Thursday, July 22, 2021 @ 19:50:13
  Author: andyrtr
Revision: 420297

archrelease: copy trunk to extra-x86_64

Added:
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD
(from rev 420296, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.csh
(from rev 420296, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.sh
(from rev 420296, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 420296, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/extra-x86_64/soffice-template.desktop.in
(from rev 420296, 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 |  762 -
 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, 420 insertions(+), 420 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-22 19:49:55 UTC (rev 420296)
+++ PKGBUILD2021-07-22 19:50:13 UTC (rev 420297)
@@ -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.4.2
-pkgver=7.1.4
-pkgrel=1
-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-07-22 Thread Andreas Radke via arch-commits
Date: Thursday, July 22, 2021 @ 19:49:55
  Author: andyrtr
Revision: 420296

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

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 18:27:00 UTC (rev 420295)
+++ PKGBUILD2021-07-22 19:49:55 UTC (rev 420296)
@@ -10,8 +10,8 @@
 
 pkgbase=libreoffice-fresh
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=7.1.4.2
-pkgver=7.1.4
+_LOver=7.1.5.2
+pkgver=7.1.5
 pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
@@ -80,11 +80,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('758466369f30c933595b62d0fc50b3f9b9827b436c4e119ac147654f2d9c5acb'
+sha256sums=('aeaf30367665bdfdcf780d2b28e304352255de778db41d32d12cd77d5b2385ce'
 'SKIP'
-'185173047be42e7f696eac2610d0dd7d433663addf070546d8fbf58943853e24'
+'ca042962047e11ea5634ebdcb0254083f2095aa83e9fa32fbbd6ab99e1ea30d4'
 'SKIP'
-'47629f1b8e89dfa793b401c2f0c255b57d067bee7e71432d3c3cb0582efc5433'
+'b86740debc717bdeca918ba068ead6c7a16e70a232eeac43bbb31e2a02d0c559'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'



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

2021-07-22 Thread Felix Yan via arch-commits
Date: Thursday, July 22, 2021 @ 19:10:53
  Author: felixonmars
Revision: 984031

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 984030, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 984030, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-22 19:10:53 UTC (rev 984031)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=8.20210714
+pkgrel=6
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-criterion' 'haskell-crypto-api' 'haskell-cryptonite' 
'haskell-data-default'
+ 'haskell-dav' 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist'
+ 'haskell-edit-distance' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-filepath-bytestring'
+ 'haskell-git-lfs' 'haskell-hinotify' 'haskell-http-client' 
'haskell-http-client-restricted'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-ifelse'
+ 'haskell-magic' 'haskell-memory' 'haskell-microlens' 
'haskell-monad-control'
+ 'haskell-monad-logger' 'haskell-mountpoints' 'haskell-network' 
'haskell-network-info'
+ 'haskell-network-multicast' 'haskell-network-uri' 'haskell-old-locale'
+ 'haskell-optparse-applicative' 'haskell-path-pieces' 
'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-quickcheck' 'haskell-random' 
'haskell-regex-tdfa'
+ 'haskell-resourcet' 'haskell-safesemaphore' 'haskell-sandi' 
'haskell-securemem'
+ 'haskell-shakespeare' 'haskell-socks' 'haskell-split' 
'haskell-stm-chans' 'haskell-tagsoup'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun'
+ 'haskell-torrent' 'haskell-unix-compat' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-uuid' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 'haskell-warp-tls' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static')
+makedepends=('chrpath' 'ghc' 'uusi')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd git-annex
+  # persistent-template was merged into persistent
+  uusi -d persistent-template git-annex.cabal
+  sed -i 's/MIN_VERSION_persistent_template/MIN_VERSION_persistent/' 
Database/ContentIdentifier.hs Database/Export.hs Database/Fsck.hs 
Database/Keys/SQL.hs
+}
+
+build() {
+  cd git-annex
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup BUILDEROPTIONS=$MAKEFLAGS
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}



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

2021-07-22 Thread Felix Yan via arch-commits
Date: Thursday, July 22, 2021 @ 19:10:40
  Author: felixonmars
Revision: 984030

upgpkg: git-annex 8.20210714-6: rebuild with persistent 2.13.1.1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-22 19:06:48 UTC (rev 984029)
+++ PKGBUILD2021-07-22 19:10:40 UTC (rev 984030)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=8.20210714
-pkgrel=5
+pkgrel=6
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")



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

2021-07-22 Thread Felix Yan via arch-commits
Date: Thursday, July 22, 2021 @ 19:06:48
  Author: felixonmars
Revision: 984029

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 984028, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 984028, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-22 19:06:48 UTC (rev 984029)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.22
+pkgrel=13
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-extra' 'haskell-hjsmin' 'haskell-hspec' 
'haskell-http-conduit'
+ 'haskell-http-client' 'haskell-http-types' 'haskell-megaparsec' 
'haskell-network'
+ 'haskell-shakespeare' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-wai' 'haskell-wai-cors' 
'haskell-wai-extra'
+ 'haskell-wai-handler-launch' 'haskell-warp' 'haskell-yesod' 
'haskell-yesod-core'
+ 'haskell-yesod-form' 'haskell-yesod-static' 'haskell-yesod-test')
+makedepends=('ghc' 'uusi')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('428a2033d2bb9188daf26dd279ef4ec18299036f4bc6e6a9ac7efc4ac9b92af2bbd6eec5afebe4f465a5ef66d062fcfe912f092bcb261f378676f0979cf0e71b')
+
+prepare() {
+cd $pkgname-$pkgver
+uusi -u megaparsec $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+install -Dm644 hledger-web.1 -t "$pkgdir"/usr/share/man/man1/
+}



  1   2   3   4   5   >