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

2022-05-21 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, May 22, 2022 @ 04:15:24
  Author: yan12125
Revision: 1209968

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 04:15:08 UTC (rev 1209967)
+++ PKGBUILD2022-05-22 04:15:24 UTC (rev 1209968)
@@ -1,47 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: Abdó Roig-Maranges 
-
-_pkgname=jwcrypto
-pkgname=python-$_pkgname
-pkgver=1.3.0
-# curl https://api.github.com/repos/latchset/jwcrypto/git/ref/tags/v$pkgver | 
jq -r .object.sha
-_tag=36084b56c3ef533add4a88cda338c6df5f05
-pkgrel=1
-pkgdesc='Python implementation of JWK, JWS, JWE specifications'
-arch=(any)
-url='https://github.com/latchset/jwcrypto'
-license=(LGPL3)
-depends=(python python-cryptography python-deprecated)
-makedepends=(git python-setuptools)
-checkdepends=(python-pytest)
-source=("git+$url?signed#tag=$_tag")
-sha256sums=('SKIP')
-# PyPI sdists for older versions are signed by tiran's key. Since version 1.0,
-# PyPI sdists are not signed, and tiran didn't declare transition of the
-# signing key for some reason. I temporarily trust simo5's signed git tags as
-# the @redhat.com UID in their key has been verified on keys.openpgp.org.
-# See https://github.com/latchset/jwcrypto/issues/230 for more details.
-validpgpkeys=(
-  'BB97AF8BC4E7A5C0D96223D3C788C4C1D4550D45'  # https://github.com/tiran
-  '7C7BD146943B206BB645B64594EAD67E004B65AB'  # Simo Sorce 
-)
-
-pkgver() {
-  cd $_pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $_pkgname
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname
-  pytest
-}
-
-package() {
-  cd $_pkgname
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-jwcrypto/repos/community-any/PKGBUILD (from rev 1209967, 
python-jwcrypto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 04:15:24 UTC (rev 1209968)
@@ -0,0 +1,48 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Abdó Roig-Maranges 
+
+_pkgname=jwcrypto
+pkgname=python-$_pkgname
+# https://github.com/latchset/jwcrypto/releases
+pkgver=1.3.1
+# curl https://api.github.com/repos/latchset/jwcrypto/git/ref/tags/v$pkgver | 
jq -r .object.sha
+_tag=b5bc7088cf89899c0f3bd56b84ed61238bf8ff83
+pkgrel=1
+pkgdesc='Python implementation of JWK, JWS, JWE specifications'
+arch=(any)
+url='https://github.com/latchset/jwcrypto'
+license=(LGPL3)
+depends=(python python-cryptography python-deprecated)
+makedepends=(git python-setuptools)
+checkdepends=(python-pytest)
+source=("git+$url?signed#tag=$_tag")
+sha256sums=('SKIP')
+# PyPI sdists for older versions are signed by tiran's key. Since version 1.0,
+# PyPI sdists are not signed, and tiran didn't declare transition of the
+# signing key for some reason. I temporarily trust simo5's signed git tags as
+# the @redhat.com UID in their key has been verified on keys.openpgp.org.
+# See https://github.com/latchset/jwcrypto/issues/230 for more details.
+validpgpkeys=(
+  'BB97AF8BC4E7A5C0D96223D3C788C4C1D4550D45'  # https://github.com/tiran
+  '7C7BD146943B206BB645B64594EAD67E004B65AB'  # Simo Sorce 
+)
+
+pkgver() {
+  cd $_pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $_pkgname
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname
+  pytest
+}
+
+package() {
+  cd $_pkgname
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2022-05-21 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, May 22, 2022 @ 04:15:08
  Author: yan12125
Revision: 1209967

upgpkg: python-jwcrypto 1.3.1-1; add link to release notes

Modified:
  python-jwcrypto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 04:07:29 UTC (rev 1209966)
+++ PKGBUILD2022-05-22 04:15:08 UTC (rev 1209967)
@@ -3,9 +3,10 @@
 
 _pkgname=jwcrypto
 pkgname=python-$_pkgname
-pkgver=1.3.0
+# https://github.com/latchset/jwcrypto/releases
+pkgver=1.3.1
 # curl https://api.github.com/repos/latchset/jwcrypto/git/ref/tags/v$pkgver | 
jq -r .object.sha
-_tag=36084b56c3ef533add4a88cda338c6df5f05
+_tag=b5bc7088cf89899c0f3bd56b84ed61238bf8ff83
 pkgrel=1
 pkgdesc='Python implementation of JWK, JWS, JWE specifications'
 arch=(any)



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

2022-05-21 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, May 22, 2022 @ 04:07:29
  Author: yan12125
Revision: 1209966

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 04:07:14 UTC (rev 1209965)
+++ PKGBUILD2022-05-22 04:07:29 UTC (rev 1209966)
@@ -1,71 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: quomoow 
-
-pkgname=python-pg8000
-# https://github.com/tlocke/pg8000#release-notes
-pkgver=1.28.3
-pkgrel=1
-pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
-arch=(any)
-url='https://github.com/tlocke/pg8000'
-license=(BSD)
-makedepends=(python-setuptools python-build python-installer 
python-versioningit python-wheel)
-checkdepends=(python-pytest python-pytest-mock python-pytest-benchmark
-  python-pytz postgresql)
-depends=(python python-scramp)
-source=("https://files.pythonhosted.org/packages/source/p/pg8000/pg8000-$pkgver.tar.gz"{,.asc})
-sha256sums=('d61037b3f21f7fc7d5cfe4eea683789259e7ccb9eef5f7229cbc62f31ea6ba32'
-'SKIP')
-validpgpkeys=(
-  'D5681B7EC7292511C4CC1450892B00AB699851E8'  # Tony Locke 
, proven by https://keybase.io/tlocke
-)
-
-build() {
-  cd pg8000-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd pg8000-$pkgver
-
-  export PGDATA="$srcdir/postgres-testdata"
-  export PGHOST=127.0.0.1
-  export PGPORT=$((49152+$RANDOM%1))
-
-  # See https://github.com/tlocke/pg8000#tests about database initialization 
steps for testing
-  initdb --username=postgres --auth=trust
-  openssl req -subj "/CN=self-signed" -nodes -x509 -newkey rsa:4096 -days 1 
-keyout "$PGDATA/self-signed.key" -out "$PGDATA/self-signed.crt"
-  cat <> "$PGDATA/postgresql.conf"
-ssl = on
-ssl_cert_file = 'self-signed.crt'
-ssl_key_file = 'self-signed.key'
-password_encryption = 'scram-sha-256'
-EOF
-
-  pg_ctl start -o "-k '' -h $PGHOST -p $PGPORT" -l "$srcdir/postgresql.log"
-  # Change the password for postgres after password_encryption is specified, 
so that the role has a valid SCRAM secret
-  psql -U postgres -c "
-CREATE EXTENSION hstore;
-ALTER ROLE postgres PASSWORD 'pw';
-  "
-
-  # should overwrite pg_hba.conf, or unexpected matches may happen against 
existing entries
-  cat < "$PGDATA/pg_hba.conf"
-hostpg8000_md5  all 127.0.0.1/32md5
-hostpg8000_gss  all 127.0.0.1/32gss
-hostpg8000_password all 127.0.0.1/32password
-hostpg8000_scram_sha_256 all127.0.0.1/32scram-sha-256
-hostall all 127.0.0.1/32trust
-EOF
-  pg_ctl reload
-  # Upstream tests require LANG=en_GB.UTF-8 or LANG=C.UTF-8 :/
-  # 
https://github.com/tlocke/pg8000/blob/1.19.2/test/native/test_typeconversion.py#L455-L458
-  PYTHONPATH="$PWD" LANG=C.UTF-8 pytest test
-  pg_ctl stop
-}
-
-package() {
-  cd pg8000-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pg8000/repos/community-any/PKGBUILD (from rev 1209965, 
python-pg8000/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 04:07:29 UTC (rev 1209966)
@@ -0,0 +1,74 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: quomoow 
+
+pkgname=python-pg8000
+# https://github.com/tlocke/pg8000#release-notes
+pkgver=1.29.0
+pkgrel=1
+pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
+arch=(any)
+url='https://github.com/tlocke/pg8000'
+license=(BSD)
+makedepends=(python-setuptools python-build python-installer 
python-versioningit python-wheel)
+checkdepends=(python-pytest python-pytest-mock python-pytest-benchmark
+  python-pytz postgresql)
+depends=(python python-scramp)
+source=("https://files.pythonhosted.org/packages/source/p/pg8000/pg8000-$pkgver.tar.gz"{,.asc})
+sha256sums=('5b73f5516190a7a7537a32d3c3abb69daae41bda273b930296e3a5bbdd1cd47d'
+'SKIP')
+validpgpkeys=(
+  'D5681B7EC7292511C4CC1450892B00AB699851E8'  # Tony Locke 
, proven by https://keybase.io/tlocke
+)
+
+build() {
+  cd pg8000-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd pg8000-$pkgver
+
+  export PGDATA="$srcdir/postgres-testdata"
+  export PGHOST=127.0.0.1
+  export PGPORT=$((49152+$RANDOM%1))
+
+  # See https://github.com/tlocke/pg8000#tests about database initialization 
steps for testing
+  initdb --username=postgres --auth=trust
+  openssl req -subj "/CN=self-signed" -nodes -x509 -newkey rsa:4096 -days 1 
-keyout "$PGDATA/self-signed.key" -out 

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

2022-05-21 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, May 22, 2022 @ 04:07:14
  Author: yan12125
Revision: 1209965

upgpkg: python-pg8000 1.29.0-1

Modified:
  python-pg8000/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 04:03:22 UTC (rev 1209964)
+++ PKGBUILD2022-05-22 04:07:14 UTC (rev 1209965)
@@ -3,7 +3,7 @@
 
 pkgname=python-pg8000
 # https://github.com/tlocke/pg8000#release-notes
-pkgver=1.28.3
+pkgver=1.29.0
 pkgrel=1
 pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
 arch=(any)
@@ -14,7 +14,7 @@
   python-pytz postgresql)
 depends=(python python-scramp)
 
source=("https://files.pythonhosted.org/packages/source/p/pg8000/pg8000-$pkgver.tar.gz"{,.asc})
-sha256sums=('d61037b3f21f7fc7d5cfe4eea683789259e7ccb9eef5f7229cbc62f31ea6ba32'
+sha256sums=('5b73f5516190a7a7537a32d3c3abb69daae41bda273b930296e3a5bbdd1cd47d'
 'SKIP')
 validpgpkeys=(
   'D5681B7EC7292511C4CC1450892B00AB699851E8'  # Tony Locke 
, proven by https://keybase.io/tlocke
@@ -60,7 +60,10 @@
   pg_ctl reload
   # Upstream tests require LANG=en_GB.UTF-8 or LANG=C.UTF-8 :/
   # 
https://github.com/tlocke/pg8000/blob/1.19.2/test/native/test_typeconversion.py#L455-L458
-  PYTHONPATH="$PWD" LANG=C.UTF-8 pytest test
+  # test_readme: skipped as many tests need a postgresql instance listening on 
the default port
+  # localhost:5432, which may cause conflicts until devtools supports a 
separate network namespace [1]
+  # [1] https://gitlab.archlinux.org/archlinux/devtools/-/issues/72
+  PYTHONPATH="$PWD" LANG=C.UTF-8 pytest test -k 'not test_readme'
   pg_ctl stop
 }
 



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 04:02:31
  Author: felixonmars
Revision: 1209952

archrelease: copy trunk to community-staging-x86_64

Added:
  taskell/repos/community-staging-x86_64/
  taskell/repos/community-staging-x86_64/PKGBUILD
(from rev 1209951, taskell/trunk/PKGBUILD)

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

Copied: taskell/repos/community-staging-x86_64/PKGBUILD (from rev 1209951, 
taskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 04:02:31 UTC (rev 1209952)
@@ -0,0 +1,44 @@
+# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
+depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
+makedepends=(ghc haskell-classy-prelude haskell-raw-strings-qq haskell-tasty 
haskell-tasty-discover haskell-tasty-expected-failure haskell-tasty-hunit)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('34d75d01c8e88fbbb932dbe6394e570b454156f1ad02173616616c493f65bfc5c4d28ed4089312410f8cb1760a523052fe132bfcd44b8bbf42e912fe9da2cc10')
+
+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 \
+--datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  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
+  runghc Setup.hs copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Doc only contains the license
+  rm -rf "$pkgdir/usr/share/doc"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 04:02:15
  Author: felixonmars
Revision: 1209951

upgpkg: taskell 1.11.4-154: rebuild with tasty-hspec 1.2.0.1

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:31:27 UTC (rev 1209950)
+++ PKGBUILD2022-05-22 04:02:15 UTC (rev 1209951)
@@ -2,7 +2,7 @@
 
 pkgname=taskell
 pkgver=1.11.4
-pkgrel=153
+pkgrel=154
 pkgdesc='A command-line kanban board/task manager'
 license=(BSD)
 arch=(x86_64)



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

2022-05-21 Thread Levente Polyak via arch-commits
Date: Sunday, May 22, 2022 @ 02:31:27
  Author: anthraxx
Revision: 1209950

archrelease: copy trunk to community-x86_64

Added:
  nim/repos/community-x86_64/PKGBUILD
(from rev 1209949, nim/trunk/PKGBUILD)
Deleted:
  nim/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 02:31:21 UTC (rev 1209949)
+++ PKGBUILD2022-05-22 02:31:27 UTC (rev 1209950)
@@ -1,108 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander F Rødseth 
-# Contributor: Dominik Picheta 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jesus Alvarez 
-
-pkgname=nim
-_pkgname=Nim
-pkgver=1.4.8
-_csourcesver=0.20.0
-pkgrel=1
-pkgdesc='Imperative, multi-paradigm, compiled programming language'
-url='https://nim-lang.org/'
-arch=('x86_64')
-license=('MIT')
-depends=('bash')
-makedepends=('git')
-optdepends=('nimble: Nim package manager')
-options=('!emptydirs')
-backup=(
-  etc/nim/nim.cfg
-  etc/nim/nimdoc.cfg
-  etc/nim/nimdoc.tex.cfg
-  etc/nim/rename.rules.cfg
-)
-source=(https://github.com/nim-lang/Nim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/nim-lang/csources/archive/v${_csourcesver}/csources-${_csourcesver}.tar.gz)
-sha256sums=('8a687beb30670dc4eadcfefd1198d4238af283dc716438ac2342a7d65e07d9e9'
-'5e6fd15d90df1a8cb7614c4ffc70aa8c4198cd854d7742016202b96dd0228d3c')
-b2sums=('7059d73cb7e2333911ed0ae1e55398255cfc32fd8732af80657343da9ba977fbdd6753737c7509aac4e7f9160cb9e3e4415f45770ee1cac15aeb780315346010'
-
'a1c026aa4ecd676d938d00f13f749b7c21094f87de98055ef0002bc96cafb81a780b7d82adfa3927bb32b0eb52c8047ac2b2c98d0ab3b9af0dd8c8ebeffad50b')
-
-prepare() {
-  cd ${_pkgname}-${pkgver}
-  mv ../csources-${_csourcesver} csources
-  rm bin/empty.txt
-  for nimcfg in {compiler,config}/nim.cfg; do
-echo "gcc.options.always %= \"\${gcc.options.always} ${CFLAGS:-} 
${CPPFLAGS}\"" >> "${nimcfg}"
-echo "gcc.options.linker %= \"\${gcc.options.linker} ${LDFLAGS:-}\"" >> 
"${nimcfg}"
-  done
-}
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
-
-  echo "Building nim"
-  (cd csources
-sh build.sh
-  )
-  echo "Building koch"
-  nim c -d:release koch
-  ./koch boot -d:release -d:nativeStacktrace -d:useGnuReadline
-
-  echo "Building libs"
-  (cd lib
-nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
-  )
-
-  echo "Building tools"
-  ./koch tools
-  (cd tools
-nim c -d:release nimgrep.nim
-  )
-  echo "Building nimsuggest"
-  nim c -d:release nimsuggest/nimsuggest.nim
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
-
-  ./koch install "${pkgdir}"
-
-  install -d "${pkgdir}/usr/lib"
-  cp -a lib "${pkgdir}/usr/lib/nim"
-  cp -a compiler "${pkgdir}/usr/lib/nim"
-  install -Dm 644 compiler.nimble "${pkgdir}/usr/lib/nim/compiler"
-  install -m 755 lib/libnimrtl.so "${pkgdir}/usr/lib/libnimrtl.so"
-
-  # Fix FS#48118, related to the doc2 command
-  ln -s /usr/share/nim/doc "${pkgdir}/usr/lib/nim/doc"
-
-  install -Dm 644 config/* -t "${pkgdir}/etc/nim"
-  install -Dm 755 bin/* -t "${pkgdir}/usr/bin"
-
-  # Fix FS#50252, unusual placement of header files
-  install -d "${pkgdir}/usr/include"
-  cp -a "${pkgdir}/usr/lib/nim/"*.h "${pkgdir}/usr/include"
-
-  install -d "${pkgdir}/usr/share/nim/doc"
-  cp -a examples doc/* "${pkgdir}/usr/share/nim/doc"
-
-  install -Dm 644 copying.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # completions
-  for comp in tools/*.bash-completion; do
-install -Dm 644 "${comp}" 
"${pkgdir}/usr/share/bash-completion/completions/$(basename 
"${comp/.bash-completion}")"
-  done
-  for comp in tools/*.zsh-completion; do
-install -Dm 644 "${comp}" 
"${pkgdir}/usr/share/zsh/site-functions/_$(basename "${comp/.zsh-completion}")"
-  done
-
-  rm -r "${pkgdir}/nim"
-  rm "${pkgdir}/usr/bin/nimble"
-}
-
-# vim: ts=2 sw=2 et:

Copied: nim/repos/community-x86_64/PKGBUILD (from rev 1209949, 
nim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 02:31:27 UTC (rev 1209950)
@@ -0,0 +1,109 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
+# Contributor: Dominik Picheta 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Jesus Alvarez 
+
+pkgname=nim
+_pkgname=Nim
+pkgver=1.6.6
+_csourcesver=561b417c65791cd8356b5f73620914ceff845d10
+pkgrel=1
+pkgdesc='Imperative, multi-paradigm, compiled programming language'
+url='https://nim-lang.org/'
+arch=('x86_64')
+license=('MIT')
+depends=('bash')
+makedepends=('git')
+provides=('nimble')
+conflicts=('nimble')
+replaces=('nimble')
+options=('!emptydirs')
+backup=(
+  etc/nim/nim.cfg
+  etc/nim/nimdoc.cfg
+  

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

2022-05-21 Thread Levente Polyak via arch-commits
Date: Sunday, May 22, 2022 @ 02:31:21
  Author: anthraxx
Revision: 1209949

upgpkg: nim 1.6.6-1

Modified:
  nim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:10:21 UTC (rev 1209948)
+++ PKGBUILD2022-05-22 02:31:21 UTC (rev 1209949)
@@ -6,8 +6,8 @@
 
 pkgname=nim
 _pkgname=Nim
-pkgver=1.4.8
-_csourcesver=0.20.0
+pkgver=1.6.6
+_csourcesver=561b417c65791cd8356b5f73620914ceff845d10
 pkgrel=1
 pkgdesc='Imperative, multi-paradigm, compiled programming language'
 url='https://nim-lang.org/'
@@ -15,7 +15,9 @@
 license=('MIT')
 depends=('bash')
 makedepends=('git')
-optdepends=('nimble: Nim package manager')
+provides=('nimble')
+conflicts=('nimble')
+replaces=('nimble')
 options=('!emptydirs')
 backup=(
   etc/nim/nim.cfg
@@ -24,15 +26,15 @@
   etc/nim/rename.rules.cfg
 )
 
source=(https://github.com/nim-lang/Nim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/nim-lang/csources/archive/v${_csourcesver}/csources-${_csourcesver}.tar.gz)
-sha256sums=('8a687beb30670dc4eadcfefd1198d4238af283dc716438ac2342a7d65e07d9e9'
-'5e6fd15d90df1a8cb7614c4ffc70aa8c4198cd854d7742016202b96dd0228d3c')
-b2sums=('7059d73cb7e2333911ed0ae1e55398255cfc32fd8732af80657343da9ba977fbdd6753737c7509aac4e7f9160cb9e3e4415f45770ee1cac15aeb780315346010'
-
'a1c026aa4ecd676d938d00f13f749b7c21094f87de98055ef0002bc96cafb81a780b7d82adfa3927bb32b0eb52c8047ac2b2c98d0ab3b9af0dd8c8ebeffad50b')
+
"git+https://github.com/nim-lang/csources_v1.git#commit=${_csourcesver};)
+sha256sums=('59836a85c1291b59af699a121b0b765703d6a0e44ed9f3ede363ff2b3e09d527'
+'SKIP')
+b2sums=('5e7a986ee17e731815fb58a52747e56900e7d2cdc37c6aafa31378f27b4431b3bab8851c1aa67fd3ddeb235584db3ef8261fa276ce7221a591da780fe6487acd'
+'SKIP')
 
 prepare() {
   cd ${_pkgname}-${pkgver}
-  mv ../csources-${_csourcesver} csources
+  cp -r ../csources_v1/* .
   rm bin/empty.txt
   for nimcfg in {compiler,config}/nim.cfg; do
 echo "gcc.options.always %= \"\${gcc.options.always} ${CFLAGS:-} 
${CPPFLAGS}\"" >> "${nimcfg}"
@@ -45,9 +47,8 @@
   export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
 
   echo "Building nim"
-  (cd csources
-sh build.sh
-  )
+  sh build.sh
+
   echo "Building koch"
   nim c -d:release koch
   ./koch boot -d:release -d:nativeStacktrace -d:useGnuReadline
@@ -62,6 +63,7 @@
   (cd tools
 nim c -d:release nimgrep.nim
   )
+
   echo "Building nimsuggest"
   nim c -d:release nimsuggest/nimsuggest.nim
 }
@@ -78,9 +80,6 @@
   install -Dm 644 compiler.nimble "${pkgdir}/usr/lib/nim/compiler"
   install -m 755 lib/libnimrtl.so "${pkgdir}/usr/lib/libnimrtl.so"
 
-  # Fix FS#48118, related to the doc2 command
-  ln -s /usr/share/nim/doc "${pkgdir}/usr/lib/nim/doc"
-
   install -Dm 644 config/* -t "${pkgdir}/etc/nim"
   install -Dm 755 bin/* -t "${pkgdir}/usr/bin"
 
@@ -88,8 +87,10 @@
   install -d "${pkgdir}/usr/include"
   cp -a "${pkgdir}/usr/lib/nim/"*.h "${pkgdir}/usr/include"
 
+  # Fix FS#48118, related to the doc2 command
+  ln -s /usr/share/nim/doc "${pkgdir}/usr/lib/nim/doc"
   install -d "${pkgdir}/usr/share/nim/doc"
-  cp -a examples doc/* "${pkgdir}/usr/share/nim/doc"
+  cp -a doc/* "${pkgdir}/usr/share/nim/doc"
 
   install -Dm 644 copying.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
 
@@ -102,7 +103,7 @@
   done
 
   rm -r "${pkgdir}/nim"
-  rm "${pkgdir}/usr/bin/nimble"
+  rm "${pkgdir}"/usr/bin/nim-gdb.bat
 }
 
 # vim: ts=2 sw=2 et:



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:10:21
  Author: felixonmars
Revision: 1209948

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 02:10:08 UTC (rev 1209947)
+++ PKGBUILD2022-05-22 02:10:21 UTC (rev 1209948)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=npm-check-updates
-pkgdesc='Find newer versions of dependencies than what your package.json or 
bower.json allows'
-pkgver=13.0.0
-pkgrel=1
-arch=('any')
-url='https://github.com/tjunnone/npm-check-updates'
-license=('Apache')
-depends=('nodejs-nopt' 'npm' 'semver')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('c72d7dad3dc0975b994963186f690916bc8cdf7b735e369e2d685dcc775a770e1a55fc33f8642b9ee7a1a4ad91c206289759fe2f2c6b0f33c7af09a62675a24e')
-
-package() {
-  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
-
-  # Experimental dedup
-  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/{,.bin/}nopt
-  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/{,.bin/}semver
-
-  # 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"
-}

Copied: npm-check-updates/repos/community-any/PKGBUILD (from rev 1209947, 
npm-check-updates/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 02:10:21 UTC (rev 1209948)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=npm-check-updates
+pkgdesc='Find newer versions of dependencies than what your package.json or 
bower.json allows'
+pkgver=13.0.1
+pkgrel=1
+arch=('any')
+url='https://github.com/tjunnone/npm-check-updates'
+license=('Apache')
+depends=('nodejs-nopt' 'npm' 'semver')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('0d4d3fa435ab73891381cf55e4cb4ced13e852b3017c3cd2c5c081b7e8498d2cb1438ed42eb8d6855c293695261c20147c761dcf060a196fd9eb9fef2b058d6a')
+
+package() {
+  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
+
+  # Experimental dedup
+  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/{,.bin/}nopt
+  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/{,.bin/}semver
+
+  # 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"
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:10:08
  Author: felixonmars
Revision: 1209947

upgpkg: npm-check-updates 13.0.1-1

Modified:
  npm-check-updates/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:06:43 UTC (rev 1209946)
+++ PKGBUILD2022-05-22 02:10:08 UTC (rev 1209947)
@@ -2,7 +2,7 @@
 
 pkgname=npm-check-updates
 pkgdesc='Find newer versions of dependencies than what your package.json or 
bower.json allows'
-pkgver=13.0.0
+pkgver=13.0.1
 pkgrel=1
 arch=('any')
 url='https://github.com/tjunnone/npm-check-updates'
@@ -10,7 +10,7 @@
 depends=('nodejs-nopt' 'npm' 'semver')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('c72d7dad3dc0975b994963186f690916bc8cdf7b735e369e2d685dcc775a770e1a55fc33f8642b9ee7a1a4ad91c206289759fe2f2c6b0f33c7af09a62675a24e')
+sha512sums=('0d4d3fa435ab73891381cf55e4cb4ced13e852b3017c3cd2c5c081b7e8498d2cb1438ed42eb8d6855c293695261c20147c761dcf060a196fd9eb9fef2b058d6a')
 
 package() {
   npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:06:43
  Author: felixonmars
Revision: 1209946

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-language-server/repos/community-staging-x86_64/
  haskell-language-server/repos/community-staging-x86_64/PKGBUILD
(from rev 1209945, haskell-language-server/trunk/PKGBUILD)

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

Copied: haskell-language-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 1209945, haskell-language-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 02:06:43 UTC (rev 1209946)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.3.0.0
+pkgrel=186
+pkgdesc="LSP server for GHC"
+url="https://github.com/haskell/haskell-language-server#readme;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-async'
+ 'haskell-base16-bytestring' 'haskell-cryptohash-sha1' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghc-paths' 'haskell-gitrev'
+ 'haskell-hashable' 'haskell-hie-bios' 'haskell-hiedb'
+ 'haskell-hls-call-hierarchy-plugin' 'haskell-hls-eval-plugin'
+ 'haskell-hls-explicit-imports-plugin' 'haskell-hls-floskell-plugin'
+ 'haskell-hls-fourmolu-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-graph'
+ 'haskell-hls-haddock-comments-plugin' 'haskell-hls-hlint-plugin'
+ 'haskell-hls-module-name-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-plugin-api'
+ 'haskell-hls-pragmas-plugin'
+ 'haskell-hls-retrie-plugin' 'haskell-hls-stylish-haskell-plugin'
+ 'haskell-hslogger' 'haskell-lens' 'haskell-lsp' 
'haskell-optparse-applicative'
+ 'haskell-optparse-simple' 'haskell-regex-tdfa' 
'haskell-safe-exceptions'
+ 'haskell-sqlite-simple' 'haskell-temporary' 
'haskell-unordered-containers')
+# Disabled due to not compatible with GHC 9:
+# 'haskell-hls-brittany-plugin' 'haskell-hls-class-plugin' 
'haskell-hls-splice-plugin' 'haskell-hls-tactics-plugin' 
'haskell-hls-refine-imports-plugin'
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 
'haskell-hspec-expectations' 'haskell-lsp-test'
+ 'haskell-lsp-types')
+checkdepends=('cabal-install')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('2938c4eaf8e2fef72ddf0e116e021b109ab69c4cdd48dc678cb93cd08e03e7f2abf3aaf1dea17a51dd8cb70f69db7ceba9823291d847ffe8bd0c990028fd6da4')
+
+prepare() {
+  cd $pkgname-$pkgver
+  find test/testdata -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
+  uusi -u ghc-api-compat $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 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -f-brittany -f-class -f-refineImports -f-tactic 
-f-splice
+
+  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
+  
PATH="$PWD/dist/build/haskell-language-server:$PWD/dist/build/haskell-language-server-wrapper:$PATH"
 LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup test || echo "Tests failed"
+}
+
+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"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:06:32
  Author: felixonmars
Revision: 1209945

upgpkg: haskell-language-server 1.3.0.0-186: rebuild with tasty-hspec 1.2.0.1

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:03:11 UTC (rev 1209944)
+++ PKGBUILD2022-05-22 02:06:32 UTC (rev 1209945)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.3.0.0
-pkgrel=185
+pkgrel=186
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:02:50
  Author: felixonmars
Revision: 1209942

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-yaml/repos/community-staging-x86_64/
  dhall-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 1209941, dhall-yaml/trunk/PKGBUILD)

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

Copied: dhall-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 1209941, 
dhall-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 02:02:50 UTC (rev 1209942)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-yaml
+pkgver=1.2.10
+pkgrel=31
+pkgdesc="Convert between Dhall and YAML"
+url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-yaml;
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hsyaml' 'haskell-hsyaml-aeson' 'haskell-aeson' 
'haskell-ansi-terminal'
+ 'dhall' 'dhall-json' 'haskell-optparse-applicative' 
'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 'haskell-vector')
+makedepends=('ghc' 'uusi' 'haskell-tasty' 'haskell-tasty-expected-failure' 
'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('d475e2ba0c7f5b03dfba7b6faf563b270ef558cb5a2dde9c7e29707a2a44028ad33fb02284ae140b96b9f2ac6722a6d17ef6e5a1ac8610328dfa8e22b8505733')
+
+prepare() {
+  cd $pkgname-$pkgver
+  gen-setup
+}
+
+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 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  
+  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
+}



[arch-commits] Commit in dhall-lsp-server/repos (2 files)

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:03:11
  Author: felixonmars
Revision: 1209944

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-lsp-server/repos/community-staging-x86_64/
  dhall-lsp-server/repos/community-staging-x86_64/PKGBUILD
(from rev 1209943, dhall-lsp-server/trunk/PKGBUILD)

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

Copied: dhall-lsp-server/repos/community-staging-x86_64/PKGBUILD (from rev 
1209943, dhall-lsp-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 02:03:11 UTC (rev 1209944)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-lsp-server
+pkgver=1.0.18
+pkgrel=37
+pkgdesc="Language Server Protocol (LSP) server for Dhall"
+url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme;
+license=("custom:MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-data-default' 'dhall'
+ 'dhall-json' 'haskell-lsp0' 'haskell-hslogger' 'haskell-lens' 
'haskell-lens-family-core'
+ 'haskell-megaparsec' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-prettyprinter' 'haskell-rope-utf16-splay' 
'haskell-unordered-containers'
+ 'haskell-uri-encode')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-doctest' 'haskell-hspec' 
'haskell-lsp0-types'
+ 'haskell-lsp0-test' 'haskell-tasty' 'haskell-tasty-hspec')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('c0f5ac4c7d2a5c0f228968df354c0a55cff7f8d021a8fbffe9ff97657c5ad2528ad1969468fed43fdc10c369668ca795a9997494b8a5df4e942d11bdc22d2fa9')
+
+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 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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
+  LD_LIBRARY_PATH="$PWD/dist/build" 
PATH="$PWD/dist/build/dhall-lsp-server:$PATH" 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"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:02:39
  Author: felixonmars
Revision: 1209941

upgpkg: dhall-yaml 1.2.10-31: rebuild with tasty-hspec 1.2.0.1

Modified:
  dhall-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:02:24 UTC (rev 1209940)
+++ PKGBUILD2022-05-22 02:02:39 UTC (rev 1209941)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-yaml
 pkgver=1.2.10
-pkgrel=30
+pkgrel=31
 pkgdesc="Convert between Dhall and YAML"
 url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-yaml;
 license=("GPL3")



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:02:58
  Author: felixonmars
Revision: 1209943

upgpkg: dhall-lsp-server 1.0.18-37: rebuild with tasty-hspec 1.2.0.1

Modified:
  dhall-lsp-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:02:50 UTC (rev 1209942)
+++ PKGBUILD2022-05-22 02:02:58 UTC (rev 1209943)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-lsp-server
 pkgver=1.0.18
-pkgrel=36
+pkgrel=37
 pkgdesc="Language Server Protocol (LSP) server for Dhall"
 
url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme;
 license=("custom:MIT")



[arch-commits] Commit in haskell-hls-floskell-plugin/trunk (PKGBUILD)

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:02:12
  Author: felixonmars
Revision: 1209939

upgpkg: haskell-hls-floskell-plugin 1.0.0.1-160: rebuild with tasty-hspec 
1.2.0.1

Modified:
  haskell-hls-floskell-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:02:05 UTC (rev 1209938)
+++ PKGBUILD2022-05-22 02:02:12 UTC (rev 1209939)
@@ -3,7 +3,7 @@
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
 pkgver=1.0.0.1
-pkgrel=159
+pkgrel=160
 pkgdesc="Integration with the Floskell code formatter"
 url="https://hackage.haskell.org/package/hls-floskell-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-floskell-plugin/repos (2 files)

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:02:24
  Author: felixonmars
Revision: 1209940

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-floskell-plugin/repos/community-staging-x86_64/
  haskell-hls-floskell-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1209939, haskell-hls-floskell-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-floskell-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1209939, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 02:02:24 UTC (rev 1209940)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.1
+pkgrel=160
+pkgdesc="Integration with the Floskell code formatter"
+url="https://hackage.haskell.org/package/hls-floskell-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-floskell' 'haskell-ghcide' 
'haskell-hls-plugin-api' 'haskell-lsp-types')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0f420355b67447426e77f149a5cf735f613b2c863b08f625e0a0d91a33bcf565684d702f67743ef9d50eaa235551c30c76743fedd78ead9fbed429e838acf113')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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 dhall-json/repos (2 files)

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:02:05
  Author: felixonmars
Revision: 1209938

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-json/repos/community-staging-x86_64/
  dhall-json/repos/community-staging-x86_64/PKGBUILD
(from rev 1209937, dhall-json/trunk/PKGBUILD)

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

Copied: dhall-json/repos/community-staging-x86_64/PKGBUILD (from rev 1209937, 
dhall-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 02:02:05 UTC (rev 1209938)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-json
+pkgver=1.7.10
+pkgrel=30
+pkgdesc='Convert between Dhall and JSON or YAML'
+url='https://dhall-lang.org'
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-aeson-yaml' 'dhall'
+ 'haskell-lens-family-core' 'haskell-optparse-applicative' 
'haskell-prettyprinter'
+ 'haskell-scientific' 'haskell-unordered-containers' 
'haskell-prettyprinter-ansi-terminal')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-silver')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4e1e524c28604743f2f767dee72b31a328bf01cd6ee5d297dc1fa97b99cd0200a9a3e791a084ad3b9b4e402754b2060d9f461c104f82bfb6ae50944b6c20781b')
+
+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 
--ghc-option=-fllvm
+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
+# https://github.com/dhall-lang/dhall-haskell/issues/2151
+runhaskell Setup test || echo "Tests failed"
+}
+
+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}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:01:53
  Author: felixonmars
Revision: 1209937

upgpkg: dhall-json 1.7.10-30: rebuild with tasty-hspec 1.2.0.1

Modified:
  dhall-json/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 02:01:31 UTC (rev 1209936)
+++ PKGBUILD2022-05-22 02:01:53 UTC (rev 1209937)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-json
 pkgver=1.7.10
-pkgrel=29
+pkgrel=30
 pkgdesc='Convert between Dhall and JSON or YAML'
 url='https://dhall-lang.org'
 license=('BSD')



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:01:31
  Author: felixonmars
Revision: 1209936

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-floskell/repos/community-staging-x86_64/PKGBUILD (from rev 
1209935, haskell-floskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 02:01:31 UTC (rev 1209936)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=floskell
+pkgname=haskell-floskell
+pkgver=0.10.5
+pkgrel=207
+pkgdesc="A flexible Haskell source code pretty printer"
+url="https://github.com/ennocramer/floskell;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-data-default' 'haskell-src-exts' 'haskell-monad-dijkstra'
+ 'haskell-optparse-applicative' 'haskell-unordered-containers' 
'haskell-utf8-string')
+makedepends=('ghc' 'uusi' 'haskell-hspec')
+source=("https://github.com/ennocramer/floskell/archive/floskell-$pkgver.tar.gz;)
+sha256sums=('91aa7caa269d1df60c7b21226721e0bd0e8595308b0d3f56dfd5e775b2d1f9ab')
+
+prepare() {
+  cd $_hkgname-floskell-$pkgver
+  uusi -u attoparsec -u base -u ghc-prim -u hspec $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-floskell-$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 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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-floskell-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-floskell-$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.md -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 02:01:19
  Author: felixonmars
Revision: 1209935

upgpkg: haskell-floskell 0.10.5-207: rebuild with tasty-hspec 1.2.0.1

Modified:
  haskell-floskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 01:59:45 UTC (rev 1209934)
+++ PKGBUILD2022-05-22 02:01:19 UTC (rev 1209935)
@@ -3,7 +3,7 @@
 _hkgname=floskell
 pkgname=haskell-floskell
 pkgver=0.10.5
-pkgrel=206
+pkgrel=207
 pkgdesc="A flexible Haskell source code pretty printer"
 url="https://github.com/ennocramer/floskell;
 license=("BSD")



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:59:45
  Author: felixonmars
Revision: 1209934

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-aeson-yaml/repos/community-staging-x86_64/
  haskell-aeson-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 1209933, haskell-aeson-yaml/trunk/PKGBUILD)

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

Copied: haskell-aeson-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 
1209933, haskell-aeson-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 01:59:45 UTC (rev 1209934)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-yaml
+pkgname=haskell-aeson-yaml
+pkgver=1.1.0.1
+pkgrel=44
+pkgdesc="Output any Aeson value as YAML (pure Haskell library)"
+url="https://github.com/clovyr/aeson-yaml;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-unordered-containers' 
'haskell-vector')
+makedepends=('ghc' 'haskell-string-qq' 'haskell-tasty' 'haskell-tasty-discover'
+ 'haskell-tasty-hunit' 'haskell-yaml')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('37384920ca84d71db2fab8bb92521486b8360a931d769ddc9635645f78164bd3b300f6cff59ffe66f87702cfa4faa81085dea84896b7072bf38dbd9405083c2a')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$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 
--ghc-option=-fllvm
+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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:59:33
  Author: felixonmars
Revision: 1209933

upgpkg: haskell-aeson-yaml 1.1.0.1-44: rebuild with tasty-hspec 1.2.0.1

Modified:
  haskell-aeson-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 01:59:25 UTC (rev 1209932)
+++ PKGBUILD2022-05-22 01:59:33 UTC (rev 1209933)
@@ -3,7 +3,7 @@
 _hkgname=aeson-yaml
 pkgname=haskell-aeson-yaml
 pkgver=1.1.0.1
-pkgrel=43
+pkgrel=44
 pkgdesc="Output any Aeson value as YAML (pure Haskell library)"
 url="https://github.com/clovyr/aeson-yaml;
 license=('BSD')



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:59:25
  Author: felixonmars
Revision: 1209932

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-with-utf8/repos/community-staging-x86_64/
  haskell-with-utf8/repos/community-staging-x86_64/PKGBUILD
(from rev 1209931, haskell-with-utf8/trunk/PKGBUILD)

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

Copied: haskell-with-utf8/repos/community-staging-x86_64/PKGBUILD (from rev 
1209931, haskell-with-utf8/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 01:59:25 UTC (rev 1209932)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=with-utf8
+pkgname=haskell-with-utf8
+pkgver=1.0.2.3
+pkgrel=49
+pkgdesc="Get your IO right on the first try"
+url="https://github.com/serokell/haskell-with-utf8#readme;
+license=("MPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-safe-exceptions' 'haskell-th-env')
+makedepends=('ghc' 'uusi' 'haskell-hunit' 'haskell-hedgehog' 'haskell-tasty' 
'haskell-tasty-discover'
+ 'haskell-tasty-hedgehog' 'haskell-tasty-hunit' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('2a8661a804d5bdbe7ef437c4dc31e3781a9566e69c4465a4937e8ea47cc06a9d83614487424a4951b9cae4213743cc9c4570d9723d4216a71f480b582a4bc157')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u base $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$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 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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"
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSES/MPL-2.0.txt
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:59:13
  Author: felixonmars
Revision: 1209931

upgpkg: haskell-with-utf8 1.0.2.3-49: rebuild with tasty-hspec 1.2.0.1

Modified:
  haskell-with-utf8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 01:58:43 UTC (rev 1209930)
+++ PKGBUILD2022-05-22 01:59:13 UTC (rev 1209931)
@@ -3,7 +3,7 @@
 _hkgname=with-utf8
 pkgname=haskell-with-utf8
 pkgver=1.0.2.3
-pkgrel=48
+pkgrel=49
 pkgdesc="Get your IO right on the first try"
 url="https://github.com/serokell/haskell-with-utf8#readme;
 license=("MPL2")



[arch-commits] Commit in haskell-tasty-discover/repos (3 files)

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:58:43
  Author: felixonmars
Revision: 1209930

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-discover/repos/community-staging-x86_64/
  haskell-tasty-discover/repos/community-staging-x86_64/PKGBUILD
(from rev 1209929, haskell-tasty-discover/trunk/PKGBUILD)
  haskell-tasty-discover/repos/community-staging-x86_64/tasty-hspec-1.1.7.patch
(from rev 1209929, haskell-tasty-discover/trunk/tasty-hspec-1.1.7.patch)

-+
 PKGBUILD|   58 ++
 tasty-hspec-1.1.7.patch |   69 ++
 2 files changed, 127 insertions(+)

Copied: haskell-tasty-discover/repos/community-staging-x86_64/PKGBUILD (from 
rev 1209929, haskell-tasty-discover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 01:58:43 UTC (rev 1209930)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-discover
+pkgname=haskell-tasty-discover
+pkgver=4.2.2
+pkgrel=156
+pkgdesc="Test discovery for the tasty framework"
+url="https://github.com/haskell-works/tasty-discover;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-glob')
+makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-tasty' 
'haskell-tasty-hedgehog'
+ 'haskell-tasty-hspec' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-smallcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+tasty-hspec-1.1.7.patch)
+sha512sums=('42a0d9c79e3c80780fbf65b9069586d908eaea8cdad62b35120369cfc1fa14f7155b8aba27356d6f454c6fb292bcd3f637ce59827795bdf5cce4e9ab5f9e7792'
+
'396fec6196fabe5e12894a60e621b47eacb59d7effe7a1b4b9145be8acae4c0afc93a46d8495eea1dd8752195948c049e34d3260fedb9d10a425646a55b07acb')
+
+prepare() {
+patch -d $_hkgname-$pkgver -p1 < tasty-hspec-1.1.7.patch
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+# Hack to allow ghc execute tasty-discover when building tests
+export PATH="$PWD/dist/build/$_hkgname:$PATH"
+export LD_LIBRARY_PATH="$PWD/dist/build"
+
+# Test could be built before executable, so build an executable first
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla
+runhaskell Setup build $MAKEFLAGS
+
+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 
--ghc-option=-fllvm
+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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-tasty-discover/repos/community-staging-x86_64/tasty-hspec-1.1.7.patch 
(from rev 1209929, haskell-tasty-discover/trunk/tasty-hspec-1.1.7.patch)
===
--- community-staging-x86_64/tasty-hspec-1.1.7.patch
(rev 0)
+++ community-staging-x86_64/tasty-hspec-1.1.7.patch2022-05-22 01:58:43 UTC 
(rev 1209930)
@@ -0,0 +1,69 @@
+commit a7323eb6d64a7b094fb7312cf089f9b6ac6ed7f4
+Author: Felix Yan 
+Date:   Sat May 15 07:16:31 2021 +0800
+
+Fix compatibility with tasty-hspec 1.1.7
+
+tasty-hspec no longer re-exports Test.Hspec since 1.1.7. Let's import
+it ourselves.
+
+diff --git a/tasty-discover.cabal b/tasty-discover.cabal
+index 9e4be46..d8cd477 100644
+--- a/tasty-discover.cabal
 b/tasty-discover.cabal
+@@ -39,6 +39,7 @@ common directory  { build-depends: directory 
 >=
+ common filepath   { build-depends: filepath   
>= 1.3  && < 2.0  }
+ common Glob   { build-depends: Glob   
>= 0.8  && < 1.0  }
+ common hedgehog   { build-depends: hedgehog   
  }
++common hspec  { build-depends: hspec  
  }
+ common tasty  { build-depends: 

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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:58:28
  Author: felixonmars
Revision: 1209929

upgpkg: haskell-tasty-discover 4.2.2-156: rebuild with tasty-hspec 1.2.0.1

Modified:
  haskell-tasty-discover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 01:58:18 UTC (rev 1209928)
+++ PKGBUILD2022-05-22 01:58:28 UTC (rev 1209929)
@@ -3,7 +3,7 @@
 _hkgname=tasty-discover
 pkgname=haskell-tasty-discover
 pkgver=4.2.2
-pkgrel=155
+pkgrel=156
 pkgdesc="Test discovery for the tasty framework"
 url="https://github.com/haskell-works/tasty-discover;
 license=('MIT')



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:58:18
  Author: felixonmars
Revision: 1209928

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-monad-dijkstra/repos/community-staging-x86_64/
  haskell-monad-dijkstra/repos/community-staging-x86_64/PKGBUILD
(from rev 1209927, haskell-monad-dijkstra/trunk/PKGBUILD)

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

Copied: haskell-monad-dijkstra/repos/community-staging-x86_64/PKGBUILD (from 
rev 1209927, haskell-monad-dijkstra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 01:58:18 UTC (rev 1209928)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=monad-dijkstra
+pkgname=haskell-monad-dijkstra
+pkgver=0.1.1.3
+pkgrel=225
+pkgdesc="A monad transformer for weighted graph searches"
+url="https://github.com/ennocramer/monad-dijkstra;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-free' 'haskell-psqueues')
+makedepends=('ghc' 'uusi' 'hlint' 'haskell-tasty' 'haskell-tasty-hspec')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('6c6270f94d27203b6974563398e4b7e81ae53e6110cffaecf8ff6297c11ceb8f')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  uusi -r tasty-hspec:tasty-hspec,hspec $_hkgname.cabal
+  sed -i '/Test.Tasty.Hspec/a import Test.Hspec' test/Main.hs
+}
+
+build() {
+  cd $_hkgname-$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 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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-monad-dijkstra/trunk (PKGBUILD)

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:58:05
  Author: felixonmars
Revision: 1209927

upgpkg: haskell-monad-dijkstra 0.1.1.3-225: rebuild with tasty-hspec 1.2.0.1

Modified:
  haskell-monad-dijkstra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 01:57:28 UTC (rev 1209926)
+++ PKGBUILD2022-05-22 01:58:05 UTC (rev 1209927)
@@ -3,7 +3,7 @@
 _hkgname=monad-dijkstra
 pkgname=haskell-monad-dijkstra
 pkgver=0.1.1.3
-pkgrel=224
+pkgrel=225
 pkgdesc="A monad transformer for weighted graph searches"
 url="https://github.com/ennocramer/monad-dijkstra;
 license=("BSD")



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:57:28
  Author: felixonmars
Revision: 1209926

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-hspec/repos/community-staging-x86_64/
  haskell-tasty-hspec/repos/community-staging-x86_64/PKGBUILD
(from rev 1209925, haskell-tasty-hspec/trunk/PKGBUILD)

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

Copied: haskell-tasty-hspec/repos/community-staging-x86_64/PKGBUILD (from rev 
1209925, haskell-tasty-hspec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-22 01:57:28 UTC (rev 1209926)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-hspec
+pkgname=haskell-tasty-hspec
+pkgver=1.2.0.1
+pkgrel=1
+pkgdesc="Hspec support for the Tasty test framework"
+url="https://github.com/mitchellwrosen/tasty-hspec;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hspec' 'haskell-hspec-core' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-smallcheck' 'haskell-tasty-quickcheck')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('dbb2b60e4c8a34bdc5d98d4b62bab5045d31bb717ca70f3bf53c92b0e36d5c18ab60a48c7133b315d4c3c7d282064f3ae0f9c70114a08845c8f132c608e77b8e')
+
+build() {
+cd $_hkgname-$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 
--ghc-option=-fllvm
+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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-05-21 Thread Felix Yan via arch-commits
Date: Sunday, May 22, 2022 @ 01:57:14
  Author: felixonmars
Revision: 1209925

upgpkg: haskell-tasty-hspec 1.2.0.1-1: rebuild with tasty-hspec 1.2.0.1

Modified:
  haskell-tasty-hspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 01:42:11 UTC (rev 1209924)
+++ PKGBUILD2022-05-22 01:57:14 UTC (rev 1209925)
@@ -2,8 +2,8 @@
 
 _hkgname=tasty-hspec
 pkgname=haskell-tasty-hspec
-pkgver=1.2
-pkgrel=56
+pkgver=1.2.0.1
+pkgrel=1
 pkgdesc="Hspec support for the Tasty test framework"
 url="https://github.com/mitchellwrosen/tasty-hspec;
 license=('BSD')
@@ -10,15 +10,10 @@
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-hspec' 'haskell-hspec-core' 'haskell-quickcheck' 
'haskell-tasty'
  'haskell-tasty-smallcheck' 'haskell-tasty-quickcheck')
-makedepends=('ghc' 'uusi')
+makedepends=('ghc')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('32cd6dab1f4f6dfacb582d586f133348b0abe26e3a01edefb2ae3ea23aef79cd4bf1f65751b5e47333f8d1d098a15ac6e03a65d1543e8ef662b0636e34df5133')
+sha512sums=('dbb2b60e4c8a34bdc5d98d4b62bab5045d31bb717ca70f3bf53c92b0e36d5c18ab60a48c7133b315d4c3c7d282064f3ae0f9c70114a08845c8f132c608e77b8e')
 
-prepare() {
-cd $_hkgname-$pkgver
-uusi -u hspec -u hspec-core $_hkgname.cabal
-}
-
 build() {
 cd $_hkgname-$pkgver
 



[arch-commits] Commit in (nimble)

2022-05-21 Thread Levente Polyak via arch-commits
Date: Sunday, May 22, 2022 @ 01:42:11
  Author: anthraxx
Revision: 1209924

rmpkg: nimble: provided by nim

Deleted:
  nimble/



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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:56:45
  Author: shibumi
Revision: 1209922

archrelease: copy trunk to community-x86_64

Added:
  popeye/repos/community-x86_64/PKGBUILD
(from rev 1209921, popeye/trunk/PKGBUILD)
Deleted:
  popeye/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 00:56:16 UTC (rev 1209921)
+++ PKGBUILD2022-05-22 00:56:45 UTC (rev 1209922)
@@ -1,34 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=popeye
-pkgver=0.9.8
-pkgrel=2
-pkgdesc="Kubernetes cluster resource sanitizer"
-arch=('x86_64')
-url="https://github.com/derailed/popeye;
-license=('Apache')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derailed/popeye/archive/v${pkgver}.tar.gz;)
-sha512sums=('000a2b0a72d3f3073642fb4f93cfe03ae611149219544ae0ad72342f91dcb4412916c245489814f117f70a5a275a1f36a7f4fd649420f2294eeac5d7b215bbb7')
-
-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 .
-  chmod +x ./popeye
-}
-
-check(){
-  cd "${pkgname}-${pkgver}"
-  go test ./...
-}
-
-package(){
-  cd "${pkgname}-${pkgver}"
-  install -Dsm755 ./popeye "${pkgdir}/usr/bin/popeye"
-}

Copied: popeye/repos/community-x86_64/PKGBUILD (from rev 1209921, 
popeye/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 00:56:45 UTC (rev 1209922)
@@ -0,0 +1,34 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=popeye
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="Kubernetes cluster resource sanitizer"
+arch=('x86_64')
+url="https://github.com/derailed/popeye;
+license=('Apache')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derailed/popeye/archive/v${pkgver}.tar.gz;)
+sha512sums=('bfe9aca79645a82efd4912741d3d46ce6e54b96c8fce0029ed45f15352652308ca2327a8a9aae9cd72f93bf1d41010806fb5c560b4b5c39447e7eb219753882b')
+
+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 .
+  chmod +x ./popeye
+}
+
+check(){
+  cd "${pkgname}-${pkgver}"
+  go test ./...
+}
+
+package(){
+  cd "${pkgname}-${pkgver}"
+  install -Dsm755 ./popeye "${pkgdir}/usr/bin/popeye"
+}



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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:56:16
  Author: shibumi
Revision: 1209921

upgpkg: popeye 0.10.0-1

Modified:
  popeye/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 00:50:05 UTC (rev 1209920)
+++ PKGBUILD2022-05-22 00:56:16 UTC (rev 1209921)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=popeye
-pkgver=0.9.8
-pkgrel=2
+pkgver=0.10.0
+pkgrel=1
 pkgdesc="Kubernetes cluster resource sanitizer"
 arch=('x86_64')
 url="https://github.com/derailed/popeye;
@@ -10,7 +10,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derailed/popeye/archive/v${pkgver}.tar.gz;)
-sha512sums=('000a2b0a72d3f3073642fb4f93cfe03ae611149219544ae0ad72342f91dcb4412916c245489814f117f70a5a275a1f36a7f4fd649420f2294eeac5d7b215bbb7')
+sha512sums=('bfe9aca79645a82efd4912741d3d46ce6e54b96c8fce0029ed45f15352652308ca2327a8a9aae9cd72f93bf1d41010806fb5c560b4b5c39447e7eb219753882b')
 
 build(){
   cd "${pkgname}-${pkgver}"



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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:50:05
  Author: shibumi
Revision: 1209920

archrelease: copy trunk to community-x86_64

Added:
  operator-sdk/repos/community-x86_64/PKGBUILD
(from rev 1209919, operator-sdk/trunk/PKGBUILD)
Deleted:
  operator-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 00:49:07 UTC (rev 1209919)
+++ PKGBUILD2022-05-22 00:50:05 UTC (rev 1209920)
@@ -1,50 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=operator-sdk
-pkgver=1.20.1
-pkgrel=1
-pkgdesc="SDK for building Kubernetes applications"
-arch=('x86_64')
-url="https://github.com/operator-framework/operator-sdk;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
-sha512sums=('b67b55340bc118dcea9d8283fca7de10acfdd8c620529dbe05ca567e02bdf715fb3d077aa77710b2bb9af6bf8dba03733ac8689a287ab148ba596b9b634098bd')
-b2sums=('1b92004bffec7e4a9d641eeb111b44ea5ac68d3c6c2074ca1a657b08e50d7e5c4158346cfcc60ea18b183310704ac613a928d27d4535e6868540574bd99a48a1')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${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 -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
-}
-
-#check() {
-#  cd "${PACKAGE_ROOT}"
-#  go test -v ./...
-#}
-
-package() {
-  cd "${PACKAGE_ROOT}"
-  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
-  ./operator-sdk completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/operator-sdk"
-  ./operator-sdk completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_operator-sdk"
-  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
-  ./ansible-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/ansible-operator"
-  ./ansible-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_ansible-operator"
-  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
-  ./helm-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm-operator"
-  ./helm-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm-operator"
-}

Copied: operator-sdk/repos/community-x86_64/PKGBUILD (from rev 1209919, 
operator-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 00:50:05 UTC (rev 1209920)
@@ -0,0 +1,50 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=operator-sdk
+pkgver=1.20.1
+pkgrel=1
+pkgdesc="SDK for building Kubernetes applications"
+arch=('x86_64')
+url="https://github.com/operator-framework/operator-sdk;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
+sha512sums=('b67b55340bc118dcea9d8283fca7de10acfdd8c620529dbe05ca567e02bdf715fb3d077aa77710b2bb9af6bf8dba03733ac8689a287ab148ba596b9b634098bd')
+b2sums=('1b92004bffec7e4a9d641eeb111b44ea5ac68d3c6c2074ca1a657b08e50d7e5c4158346cfcc60ea18b183310704ac613a928d27d4535e6868540574bd99a48a1')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${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 -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
+}
+
+#check() {
+#  cd "${PACKAGE_ROOT}"
+#  go test -v ./...
+#}
+
+package() {
+  cd "${PACKAGE_ROOT}"
+  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
+  ./operator-sdk completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/operator-sdk"
+  ./operator-sdk completion zsh | install -Dm644 /dev/stdin 

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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:49:07
  Author: shibumi
Revision: 1209919

archrelease: copy trunk to community-x86_64

Added:
  operator-sdk/repos/community-x86_64/PKGBUILD
(from rev 1209918, operator-sdk/trunk/PKGBUILD)
Deleted:
  operator-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 00:48:58 UTC (rev 1209918)
+++ PKGBUILD2022-05-22 00:49:07 UTC (rev 1209919)
@@ -1,50 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=operator-sdk
-pkgver=1.20.0
-pkgrel=1
-pkgdesc="SDK for building Kubernetes applications"
-arch=('x86_64')
-url="https://github.com/operator-framework/operator-sdk;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
-sha512sums=('0bc78fdade0a3758d45b5673170a890f3a5f97e652023ef01bab86f650fab790c68fee6dc81500d8506bc9bf42f1dce3bba41dda550293a4a2e462ab1ec2a16a')
-b2sums=('3f2ad2499673dedfab898283b347f8c57680cbc095ffa1bcc954e208ff26a3553e83373f3713ed9792ee595e5243171fda4bc8075f57cbf5c81f034dde7b95ff')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${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 -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
-}
-
-#check() {
-#  cd "${PACKAGE_ROOT}"
-#  go test -v ./...
-#}
-
-package() {
-  cd "${PACKAGE_ROOT}"
-  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
-  ./operator-sdk completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/operator-sdk"
-  ./operator-sdk completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_operator-sdk"
-  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
-  ./ansible-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/ansible-operator"
-  ./ansible-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_ansible-operator"
-  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
-  ./helm-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm-operator"
-  ./helm-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm-operator"
-}

Copied: operator-sdk/repos/community-x86_64/PKGBUILD (from rev 1209918, 
operator-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 00:49:07 UTC (rev 1209919)
@@ -0,0 +1,50 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=operator-sdk
+pkgver=1.20.1
+pkgrel=1
+pkgdesc="SDK for building Kubernetes applications"
+arch=('x86_64')
+url="https://github.com/operator-framework/operator-sdk;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
+sha512sums=('b67b55340bc118dcea9d8283fca7de10acfdd8c620529dbe05ca567e02bdf715fb3d077aa77710b2bb9af6bf8dba03733ac8689a287ab148ba596b9b634098bd')
+b2sums=('1b92004bffec7e4a9d641eeb111b44ea5ac68d3c6c2074ca1a657b08e50d7e5c4158346cfcc60ea18b183310704ac613a928d27d4535e6868540574bd99a48a1')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${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 -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
+}
+
+#check() {
+#  cd "${PACKAGE_ROOT}"
+#  go test -v ./...
+#}
+
+package() {
+  cd "${PACKAGE_ROOT}"
+  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
+  ./operator-sdk completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/operator-sdk"
+  ./operator-sdk completion zsh | install -Dm644 /dev/stdin 

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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:48:58
  Author: shibumi
Revision: 1209918

upgpkg: operator-sdk 1.20.1-1

Modified:
  operator-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 00:44:35 UTC (rev 1209917)
+++ PKGBUILD2022-05-22 00:48:58 UTC (rev 1209918)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=operator-sdk
-pkgver=1.20.0
+pkgver=1.20.1
 pkgrel=1
 pkgdesc="SDK for building Kubernetes applications"
 arch=('x86_64')
@@ -10,8 +10,8 @@
 makedepends=('go')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
-sha512sums=('0bc78fdade0a3758d45b5673170a890f3a5f97e652023ef01bab86f650fab790c68fee6dc81500d8506bc9bf42f1dce3bba41dda550293a4a2e462ab1ec2a16a')
-b2sums=('3f2ad2499673dedfab898283b347f8c57680cbc095ffa1bcc954e208ff26a3553e83373f3713ed9792ee595e5243171fda4bc8075f57cbf5c81f034dde7b95ff')
+sha512sums=('b67b55340bc118dcea9d8283fca7de10acfdd8c620529dbe05ca567e02bdf715fb3d077aa77710b2bb9af6bf8dba03733ac8689a287ab148ba596b9b634098bd')
+b2sums=('1b92004bffec7e4a9d641eeb111b44ea5ac68d3c6c2074ca1a657b08e50d7e5c4158346cfcc60ea18b183310704ac613a928d27d4535e6868540574bd99a48a1')
 
 prepare() {
   export GOPATH="${srcdir}"



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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:44:35
  Author: shibumi
Revision: 1209917

archrelease: copy trunk to community-x86_64

Added:
  shfmt/repos/community-x86_64/PKGBUILD
(from rev 1209916, shfmt/trunk/PKGBUILD)
Deleted:
  shfmt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 00:44:26 UTC (rev 1209916)
+++ PKGBUILD2022-05-22 00:44:35 UTC (rev 1209917)
@@ -1,41 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Daniel Martí 
-
-pkgname=shfmt
-pkgver=3.4.3
-pkgrel=1
-pkgdesc="Format shell programs"
-url="https://github.com/mvdan/sh;
-license=('BSD')
-arch=('x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'scdoc')
-options=('!lto')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mvdan/sh/archive/v${pkgver}.tar.gz;)
-sha512sums=('1f7c3fae0ca7e1ecb501eb181f2a0f23314aac8663517c9ab0724ba2b6d2b2c92a44a250fa9d754f915785b09ddfd6e4e474a5ec91d5d438c1e104b1bfc36309')
-
-build() {
-cd "${srcdir}/sh-${pkgver}/cmd/shfmt/"
-
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-go build -ldflags "-linkmode=external -extldflags=$LDFLAGS -X 
main.version=${pkgver}"
-
-scdoc < "${pkgname}.1.scd" | gzip > "${pkgname}.1.gz"
-}
-
-check() {
-cd "${srcdir}/sh-${pkgver}/"
-go test ./...
-}
-
-package() {
-cd "${srcdir}/sh-${pkgver}/"
-install -Dm755 -t "${pkgdir}/usr/bin/" "cmd/${pkgname}/${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/share/man/man1/" 
"cmd/${pkgname}/${pkgname}.1.gz"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: shfmt/repos/community-x86_64/PKGBUILD (from rev 1209916, 
shfmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 00:44:35 UTC (rev 1209917)
@@ -0,0 +1,41 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Daniel Martí 
+
+pkgname=shfmt
+pkgver=3.5.0
+pkgrel=1
+pkgdesc="Format shell programs"
+url="https://github.com/mvdan/sh;
+license=('BSD')
+arch=('x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'scdoc')
+options=('!lto')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mvdan/sh/archive/v${pkgver}.tar.gz;)
+sha512sums=('9071a015369088dbba8eb7221305893095ebeaa72124e1ca964b7b1e6f34dedc9d11f2daa2f679d24637b04925cbf58427a24cc4885d8e918cb81844e71d3c6b')
+
+build() {
+cd "${srcdir}/sh-${pkgver}/cmd/shfmt/"
+
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+go build -ldflags "-linkmode=external -extldflags=$LDFLAGS -X 
main.version=${pkgver}"
+
+scdoc < "${pkgname}.1.scd" | gzip > "${pkgname}.1.gz"
+}
+
+check() {
+cd "${srcdir}/sh-${pkgver}/"
+go test ./...
+}
+
+package() {
+cd "${srcdir}/sh-${pkgver}/"
+install -Dm755 -t "${pkgdir}/usr/bin/" "cmd/${pkgname}/${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/share/man/man1/" 
"cmd/${pkgname}/${pkgname}.1.gz"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}



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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:44:26
  Author: shibumi
Revision: 1209916

upgpkg: shfmt 3.5.0-1

Modified:
  shfmt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 00:43:52 UTC (rev 1209915)
+++ PKGBUILD2022-05-22 00:44:26 UTC (rev 1209916)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Martí 
 
 pkgname=shfmt
-pkgver=3.4.3
+pkgver=3.5.0
 pkgrel=1
 pkgdesc="Format shell programs"
 url="https://github.com/mvdan/sh;
@@ -13,7 +13,7 @@
 makedepends=('git' 'go' 'scdoc')
 options=('!lto')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mvdan/sh/archive/v${pkgver}.tar.gz;)
-sha512sums=('1f7c3fae0ca7e1ecb501eb181f2a0f23314aac8663517c9ab0724ba2b6d2b2c92a44a250fa9d754f915785b09ddfd6e4e474a5ec91d5d438c1e104b1bfc36309')
+sha512sums=('9071a015369088dbba8eb7221305893095ebeaa72124e1ca964b7b1e6f34dedc9d11f2daa2f679d24637b04925cbf58427a24cc4885d8e918cb81844e71d3c6b')
 
 build() {
 cd "${srcdir}/sh-${pkgver}/cmd/shfmt/"



[arch-commits] Commit in gnome-appfolders-manager/repos/community-any (2 files)

2022-05-21 Thread Fabio Castelli via arch-commits
Date: Sunday, May 22, 2022 @ 00:43:52
  Author: muflone
Revision: 1209915

archrelease: copy trunk to community-any

Added:
  gnome-appfolders-manager/repos/community-any/PKGBUILD
(from rev 1209914, gnome-appfolders-manager/trunk/PKGBUILD)
Deleted:
  gnome-appfolders-manager/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 00:43:31 UTC (rev 1209914)
+++ PKGBUILD2022-05-22 00:43:52 UTC (rev 1209915)
@@ -1,22 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-
-pkgname=gnome-appfolders-manager
-pkgver=0.4.4
-pkgrel=1
-pkgdesc="Manage GNOME Shell applications folders."
-url="https://www.muflone.com/gnome-appfolders-manager;
-arch=('any')
-license=('GPL3')
-depends=('gtk3' 'python-xdg' 'python-gobject' 'python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/muflone/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('e441d4799bf4fd8bf82c5c73bf09cc055e360c9765c6e2445d563e9eb0449c19')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --optimize=1 --root "${pkgdir}"
-}

Copied: gnome-appfolders-manager/repos/community-any/PKGBUILD (from rev 
1209914, gnome-appfolders-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 00:43:52 UTC (rev 1209915)
@@ -0,0 +1,22 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+
+pkgname=gnome-appfolders-manager
+pkgver=0.4.5
+pkgrel=1
+pkgdesc="Manage GNOME Shell applications folders."
+url="https://www.muflone.com/gnome-appfolders-manager;
+arch=('any')
+license=('GPL3')
+depends=('gtk3' 'python-xdg' 'python-gobject' 'python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/muflone/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('f9d1efbf3849d401bccc6b538c4ed62480dde6954f0ced31d444d60423601e78')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --optimize=1 --root "${pkgdir}"
+}



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

2022-05-21 Thread Fabio Castelli via arch-commits
Date: Sunday, May 22, 2022 @ 00:43:31
  Author: muflone
Revision: 1209914

upgpkg: gnome-appfolders-manager 0.4.5-1

Modified:
  gnome-appfolders-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 00:42:09 UTC (rev 1209913)
+++ PKGBUILD2022-05-22 00:43:31 UTC (rev 1209914)
@@ -1,7 +1,7 @@
 # Maintainer: Muflone http://www.muflone.com/contacts/english/
 
 pkgname=gnome-appfolders-manager
-pkgver=0.4.4
+pkgver=0.4.5
 pkgrel=1
 pkgdesc="Manage GNOME Shell applications folders."
 url="https://www.muflone.com/gnome-appfolders-manager;
@@ -9,7 +9,7 @@
 license=('GPL3')
 depends=('gtk3' 'python-xdg' 'python-gobject' 'python-setuptools')
 
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/muflone/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('e441d4799bf4fd8bf82c5c73bf09cc055e360c9765c6e2445d563e9eb0449c19')
+sha256sums=('f9d1efbf3849d401bccc6b538c4ed62480dde6954f0ced31d444d60423601e78')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:42:09
  Author: shibumi
Revision: 1209913

archrelease: copy trunk to community-x86_64

Added:
  kubeone/repos/community-x86_64/PKGBUILD
(from rev 1209912, kubeone/trunk/PKGBUILD)
Deleted:
  kubeone/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-22 00:41:59 UTC (rev 1209912)
+++ PKGBUILD2022-05-22 00:42:09 UTC (rev 1209913)
@@ -1,67 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Loodse 
-
-pkgname=kubeone
-_pkgver=1.4.0
-pkgver="${_pkgver/-/}"
-# We check out the repo via git for retrieving necessary information
-# for `kubeone version`.
-_kubeone_commit="24a432834629b860257e4f3975ec223bc85a0c2f"
-pkgrel=1
-pkgdesc="A lifecycle management tool for Highly-Available Kubernetes clusters"
-url="https://www.kubeone.io;
-arch=("x86_64")
-license=("Apache")
-makedepends=("go" "git")
-optdepends=("terraform: sourcing data about infrastructure and control plane 
nodes")
-source=("${pkgname}-${_pkgver}::git+https://github.com/kubermatic/kubeone#commit=${_kubeone_commit};)
-sha512sums=('SKIP')
-options=('!lto')
-
-prepare() {
-  cd "${pkgname}-${_pkgver}"
-  sed -E 's/(CGO_ENABLED)=0/\1=1/g' -i Makefile
-  sed '/^export GOFLAGS/ s/$/ -modcacherw -buildmode=pie/' -i Makefile
-  sed '/^GOLDFLAGS?=/ s/=/= -linkmode=external /' -i Makefile
-
-}
-
-build() {
-  cd "${pkgname}-${_pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  make build
-}
-
-check() {
-  cd "${pkgname}-${_pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${_pkgver}"
-  install -Dm755 "dist/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-
-  # move documentation
-  mkdir -p "${pkgdir}/usr/share/doc"
-  cp -avr docs "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -avr examples "${pkgdir}/usr/share/doc/${pkgname}/examples"
-
-  # build man page
-  mkdir -p "${pkgdir}/usr/share/man/man1"
-  ./dist/"${pkgname}" document man -o "${pkgdir}/usr/share/man/man1"
-
-  # build bash completions
-  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
-  ./dist/"${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-
-  # build zsh completions
-  mkdir -p "${pkgdir}/usr/share/zsh/site-functions"
-  ./dist/"${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-}

Copied: kubeone/repos/community-x86_64/PKGBUILD (from rev 1209912, 
kubeone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-22 00:42:09 UTC (rev 1209913)
@@ -0,0 +1,67 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Loodse 
+
+pkgname=kubeone
+_pkgver=1.4.3
+pkgver="${_pkgver/-/}"
+# We check out the repo via git for retrieving necessary information
+# for `kubeone version`.
+_kubeone_commit="717787f2287964e5793d80ec8ca2c2169936b0ac"
+pkgrel=1
+pkgdesc="A lifecycle management tool for Highly-Available Kubernetes clusters"
+url="https://www.kubeone.io;
+arch=("x86_64")
+license=("Apache")
+makedepends=("go" "git")
+optdepends=("terraform: sourcing data about infrastructure and control plane 
nodes")
+source=("${pkgname}-${_pkgver}::git+https://github.com/kubermatic/kubeone#commit=${_kubeone_commit};)
+sha512sums=('SKIP')
+options=('!lto')
+
+prepare() {
+  cd "${pkgname}-${_pkgver}"
+  sed -E 's/(CGO_ENABLED)=0/\1=1/g' -i Makefile
+  sed '/^export GOFLAGS/ s/$/ -modcacherw -buildmode=pie/' -i Makefile
+  sed '/^GOLDFLAGS?=/ s/=/= -linkmode=external /' -i Makefile
+
+}
+
+build() {
+  cd "${pkgname}-${_pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  make build
+}
+
+check() {
+  cd "${pkgname}-${_pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${_pkgver}"
+  install -Dm755 "dist/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  # move documentation
+  mkdir -p "${pkgdir}/usr/share/doc"
+  cp -avr docs "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -avr examples "${pkgdir}/usr/share/doc/${pkgname}/examples"
+
+  # build man page
+  mkdir -p "${pkgdir}/usr/share/man/man1"
+  ./dist/"${pkgname}" document man -o "${pkgdir}/usr/share/man/man1"
+
+  # build bash completions
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
+  ./dist/"${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+
+  # build zsh 

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

2022-05-21 Thread Christian Rebischke via arch-commits
Date: Sunday, May 22, 2022 @ 00:41:59
  Author: shibumi
Revision: 1209912

upgpkg: kubeone 1.4.3-1

Modified:
  kubeone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-22 00:26:20 UTC (rev 1209911)
+++ PKGBUILD2022-05-22 00:41:59 UTC (rev 1209912)
@@ -2,11 +2,11 @@
 # Contributor: Loodse 
 
 pkgname=kubeone
-_pkgver=1.4.0
+_pkgver=1.4.3
 pkgver="${_pkgver/-/}"
 # We check out the repo via git for retrieving necessary information
 # for `kubeone version`.
-_kubeone_commit="24a432834629b860257e4f3975ec223bc85a0c2f"
+_kubeone_commit="717787f2287964e5793d80ec8ca2c2169936b0ac"
 pkgrel=1
 pkgdesc="A lifecycle management tool for Highly-Available Kubernetes clusters"
 url="https://www.kubeone.io;



[arch-commits] Commit in ruby-minitest-power_assert/repos (2 files)

2022-05-21 Thread Levente Polyak via arch-commits
Date: Sunday, May 22, 2022 @ 00:26:20
  Author: anthraxx
Revision: 1209911

archrelease: copy trunk to community-any

Added:
  ruby-minitest-power_assert/repos/community-any/
  ruby-minitest-power_assert/repos/community-any/PKGBUILD
(from rev 1209910, ruby-minitest-power_assert/trunk/PKGBUILD)

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

Copied: ruby-minitest-power_assert/repos/community-any/PKGBUILD (from rev 
1209910, ruby-minitest-power_assert/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-22 00:26:20 UTC (rev 1209911)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+
+_gemname=minitest-power_assert
+pkgname=ruby-${_gemname}
+pkgver=0.3.1
+pkgrel=1
+pkgdesc='Power Assert for Minitest'
+url='https://github.com/hsbt/minitest-power_assert'
+arch=('any')
+license=('custom:BSDL')
+depends=('ruby' 'ruby-minitest' 'ruby-power_assert')
+makedepends=('ruby-rdoc' 'ruby-rake' 'ruby-bundler')
+options=('!emptydirs')
+source=(${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz)
+sha512sums=('96b3d8c1899960a6d035b1de5fde5aba1235b89b7d11e416938269144532eb37afda0fa5896825b3bd74685cebb39fe43b39b9e4714212a7fdb28c396b88')
+b2sums=('7c2e687f572fb5d25203cdd1448052c6f380ba5f112c87fbb768416039f743869a23518c6d31d530eabfb1599e1c82f70b022a9f6c88bc16cf4ac8e1ea093176')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed 's|git ls-files -z|find -type f -print0\|sed "s,./,,g"|' -i 
${_gemname}.gemspec
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+check() {
+  cd ${_gemname}-${pkgver}
+  rake test
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm -r "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2022-05-21 Thread Levente Polyak via arch-commits
Date: Sunday, May 22, 2022 @ 00:26:02
  Author: anthraxx
Revision: 1209910

addpkg: ruby-minitest-power_assert 0.3.1-1

Added:
  ruby-minitest-power_assert/
  ruby-minitest-power_assert/repos/
  ruby-minitest-power_assert/trunk/
  ruby-minitest-power_assert/trunk/PKGBUILD

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

Added: ruby-minitest-power_assert/trunk/PKGBUILD
===
--- ruby-minitest-power_assert/trunk/PKGBUILD   (rev 0)
+++ ruby-minitest-power_assert/trunk/PKGBUILD   2022-05-22 00:26:02 UTC (rev 
1209910)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+
+_gemname=minitest-power_assert
+pkgname=ruby-${_gemname}
+pkgver=0.3.1
+pkgrel=1
+pkgdesc='Power Assert for Minitest'
+url='https://github.com/hsbt/minitest-power_assert'
+arch=('any')
+license=('custom:BSDL')
+depends=('ruby' 'ruby-minitest' 'ruby-power_assert')
+makedepends=('ruby-rdoc' 'ruby-rake' 'ruby-bundler')
+options=('!emptydirs')
+source=(${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz)
+sha512sums=('96b3d8c1899960a6d035b1de5fde5aba1235b89b7d11e416938269144532eb37afda0fa5896825b3bd74685cebb39fe43b39b9e4714212a7fdb28c396b88')
+b2sums=('7c2e687f572fb5d25203cdd1448052c6f380ba5f112c87fbb768416039f743869a23518c6d31d530eabfb1599e1c82f70b022a9f6c88bc16cf4ac8e1ea093176')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed 's|git ls-files -z|find -type f -print0\|sed "s,./,,g"|' -i 
${_gemname}.gemspec
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+check() {
+  cd ${_gemname}-${pkgver}
+  rake test
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm -r "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-21 Thread Levente Polyak via arch-commits
Date: Saturday, May 21, 2022 @ 23:54:25
  Author: anthraxx
Revision: 1209908

upgpkg: tor 0.4.7.7-2: reactivate pgp signature verification

Tor 0.4.6.10 switched to exclusively sign the checksum files instead of
the actual source tarballs. Lets ensure the signatures are always
checked my downloading the signed sums file alongside the signature and
source tarball. Makepkg checks the signature on the sumsfile, afterwards
we use the prepare() function of makepkg to verify the sums file against
the actual source tarball.

Valid signing fingerprints have been updated According to:
https://support.torproject.org/little-t-tor/verify-little-t-tor/

Note that for Alexander F{U+00E6}r{U+00F8}y key, we list the actual fingerprint 
of the
root certificate instead of the signing subkey ed25519/BE6A0531C18A9179

Modified:
  tor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 23:34:04 UTC (rev 1209907)
+++ PKGBUILD2022-05-21 23:54:25 UTC (rev 1209908)
@@ -7,7 +7,7 @@
 
 pkgname=tor
 pkgver=0.4.7.7
-pkgrel=1
+pkgrel=2
 pkgdesc='Anonymizing overlay network.'
 arch=('x86_64')
 url='https://www.torproject.org/download/tor/'
@@ -17,18 +17,27 @@
 optdepends=('torsocks: for torify')
 makedepends=('ca-certificates' 'systemd')
 backup=('etc/tor/torrc')
-source=("https://dist.torproject.org/${pkgname}-${pkgver}.tar.gz;
+source=("https://dist.torproject.org/${pkgname}-${pkgver}.tar.gz"{,.sha256sum{,.asc}}
 'torrc.patch'
 'tor.sysusers'
 'tor.tmpfiles'
 'tor.service')
 
b2sums=('18acfbe017b2ad456184f6031881149717f6fecad0d3e6daf90241a5a8ef296c32a36ace266d38b703f34b66d71e282c803f03f2059502c6ff6f4fdfb6641a97'
+
'09e715beaf05926c4cdc13a43c8cd31ec2f477876a8a13915416d7ac955622c10c77177a1a0d7a7c4eb5a6c1256170379692c42dd2161889c51018f43f4a3398'
+'SKIP'
 
'3359e138d823a77df2a42ce3fe8c6ecb4004e9ec191863db7857aceea7c136c78f09518b1a199dfd3215f5d61f1c060f4a0e2141c5bdb6b847af60fb6e9a81a7'
 
'9053da53926f2120ac57b6c1442238f5bbd89bf9270347c4e00b721b39939bebc6adfcf814a9d7289dfd14d085d91c193529305336db93190da5b7f586a031df'
 
'5d55d9a7e42b6ce78b8ab985bab37afe8f0bacddb5abd895c4a490adb8f98b9422f90b40066fef05ecf37b7b21e80aadc615c4b7f6e12b05581304113a1b1f1d'
 
'327c1a35c3d4c44f93edb47959c8c41ab6af4cbfcbb8f4e9f54f2f69d17d148bf85e2d2c8aefe2d3165e123056dd68a248af78d1ba713b94a4e6d27a9cf412f1')
+validpgpkeys=(
+  '2133BC600AB133E1D826D173FE43009C4607B1FB' # Nick Mathewson
+  'B74417EDDF22AC9F9E90F49142E86A2A11F48D36' # David Goulet
+  '1C1BC007A9F607AA8152C040BEA7B180B1491921' # Alexander Færøy
+)
 
 prepare() {
+  # verify the signed sums match the expected source tarball
+  sha256sum -c ${pkgname}-${pkgver}.tar.gz.sha256sum
   cd ${pkgname}-${pkgver}
   # uncomment essential config sections in the torrc file
   patch -Np1 < "${srcdir}/torrc.patch"



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

2022-05-21 Thread Daniel M. Capella via arch-commits
Date: Saturday, May 21, 2022 @ 23:34:04
  Author: polyzen
Revision: 1209907

archrelease: copy trunk to community-any

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

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

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

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



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

2022-05-21 Thread Daniel M. Capella via arch-commits
Date: Saturday, May 21, 2022 @ 23:33:35
  Author: polyzen
Revision: 1209906

upgpkg: pyright 1.1.248-1

Modified:
  pyright/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 23:30:54 UTC (rev 1209905)
+++ PKGBUILD2022-05-21 23:33:35 UTC (rev 1209906)
@@ -2,7 +2,7 @@
 # Contributor: Kaizhao Zhang 
 
 pkgname=pyright
-pkgver=1.1.247
+pkgver=1.1.248
 pkgrel=1
 pkgdesc='Type checker for the Python language'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('nodejs>=12')
 makedepends=('npm')
 source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('af40d7421ffa162b969aebabc064c1ecb2c73c30a394ed471399eec747107a00ac222c05f845bb61d415a5e88f2ee25cc05299028d0b93d5302007c95a36db08')
+b2sums=('f5e0d2dc8764893daefe8bb62e678923a69e351a7541077d98dc20b121b345ad847ebfe84bc5324db44968be897a686473a682557a32ea3ab7733b3ddaa65aa2')
 
 prepare() {
   cd $pkgname-$pkgver



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

2022-05-21 Thread Fabio Castelli via arch-commits
Date: Saturday, May 21, 2022 @ 23:22:57
  Author: muflone
Revision: 1209904

archrelease: copy trunk to community-any

Added:
  gwakeonlan/repos/community-any/PKGBUILD
(from rev 1209903, gwakeonlan/trunk/PKGBUILD)
Deleted:
  gwakeonlan/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 23:22:06 UTC (rev 1209903)
+++ PKGBUILD2022-05-21 23:22:57 UTC (rev 1209904)
@@ -1,24 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: jose 
-
-pkgname=gwakeonlan
-pkgver=0.8.2
-pkgrel=2
-pkgdesc="GTK+ utility to awake machines using the Wake on LAN."
-url="https://www.muflone.com/gwakeonlan;
-arch=('any')
-license=('GPL3')
-depends=('gtk3' 'python-xdg' 'python-gobject')
-makedepends=('python-setuptools' 'gettext')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/muflone/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('0ec2978cc1fd62451b9514153ae11ab641ae132dbdf75aa8e05bcf3208927573')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --optimize=1 --root "${pkgdir}"
-}

Copied: gwakeonlan/repos/community-any/PKGBUILD (from rev 1209903, 
gwakeonlan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 23:22:57 UTC (rev 1209904)
@@ -0,0 +1,24 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: jose 
+
+pkgname=gwakeonlan
+pkgver=0.8.3
+pkgrel=1
+pkgdesc="GTK+ utility to awake machines using the Wake on LAN."
+url="https://www.muflone.com/gwakeonlan;
+arch=('any')
+license=('GPL3')
+depends=('gtk3' 'python-xdg' 'python-gobject')
+makedepends=('python-setuptools' 'gettext')
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/muflone/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('06e6992605eb2356ab07d1f76cfe4b39df7cd2d4ce6eaa0ad752310e79b2bd7b')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --optimize=1 --root "${pkgdir}"
+}



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

2022-05-21 Thread Fabio Castelli via arch-commits
Date: Saturday, May 21, 2022 @ 23:22:06
  Author: muflone
Revision: 1209903

upgpkg: gwakeonlan 0.8.3-1

Modified:
  gwakeonlan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 23:01:57 UTC (rev 1209902)
+++ PKGBUILD2022-05-21 23:22:06 UTC (rev 1209903)
@@ -2,8 +2,8 @@
 # Contributor: jose 
 
 pkgname=gwakeonlan
-pkgver=0.8.2
-pkgrel=2
+pkgver=0.8.3
+pkgrel=1
 pkgdesc="GTK+ utility to awake machines using the Wake on LAN."
 url="https://www.muflone.com/gwakeonlan;
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('gtk3' 'python-xdg' 'python-gobject')
 makedepends=('python-setuptools' 'gettext')
 
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/muflone/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('0ec2978cc1fd62451b9514153ae11ab641ae132dbdf75aa8e05bcf3208927573')
+sha256sums=('06e6992605eb2356ab07d1f76cfe4b39df7cd2d4ce6eaa0ad752310e79b2bd7b')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2022-05-21 Thread Levente Polyak via arch-commits
Date: Saturday, May 21, 2022 @ 23:01:57
  Author: anthraxx
Revision: 1209902

archrelease: copy trunk to community-any

Added:
  ruby-rouge/repos/community-any/PKGBUILD
(from rev 1209901, ruby-rouge/trunk/PKGBUILD)
Deleted:
  ruby-rouge/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 23:01:52 UTC (rev 1209901)
+++ PKGBUILD2022-05-21 23:01:57 UTC (rev 1209902)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_gemname=rouge
-pkgname=ruby-rouge
-pkgver=3.26.0
-pkgrel=2
-pkgdesc='Pure-ruby code highlighter that is compatible with pygments'
-url='http://rouge.jneen.net/'
-arch=('any')
-license=('MIT')
-depends=('ruby' 'ruby-rdoc')
-options=('!emptydirs')
-source=(https://github.com/jneen/rouge/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('bd6006b11924b3705dc142922878dc87af25ceed8a153ad9691ad2595144ae1f3f909574799002601928e985a6650fe4c8d93e05a1e8e26bdb10e9b2f9a28765')
-b2sums=('9739c229788d615f4875caf5d38c91ca30b4fe5703c577b2e7aa5d54bd625f33e998ee887d375d357e72c9f05ac9a284b88ce7902c6fae422e8196098a993259')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
-}
-
-build() {
-  cd ${_gemname}-${pkgver}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rouge/repos/community-any/PKGBUILD (from rev 1209901, 
ruby-rouge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 23:01:57 UTC (rev 1209902)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+_gemname=rouge
+pkgname=ruby-rouge
+pkgver=3.28.0
+pkgrel=1
+pkgdesc='Pure-ruby code highlighter that is compatible with pygments'
+url='http://rouge.jneen.net/'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-rdoc')
+options=('!emptydirs')
+source=(https://github.com/jneen/rouge/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('a6cb87ef7ec1eae94f127ef615b77830581d1e3a2f690e852effafd146e4456e6c931f843e9df068a750b69af8a6d8d958277d94e16550e016a58412caeba7d7')
+b2sums=('38b360bc282887913e24e8ebd5463d792d03f55e70553f93b12ee94c7e1ed9d6d2ac3d084c21d21a59480a1669b552bc10b42ec2d0e63b167f142b241ce884db')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-21 Thread Levente Polyak via arch-commits
Date: Saturday, May 21, 2022 @ 23:01:52
  Author: anthraxx
Revision: 1209901

upgpkg: ruby-rouge 3.28.0-1

Modified:
  ruby-rouge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 22:30:03 UTC (rev 1209900)
+++ PKGBUILD2022-05-21 23:01:52 UTC (rev 1209901)
@@ -2,8 +2,8 @@
 
 _gemname=rouge
 pkgname=ruby-rouge
-pkgver=3.26.0
-pkgrel=2
+pkgver=3.28.0
+pkgrel=1
 pkgdesc='Pure-ruby code highlighter that is compatible with pygments'
 url='http://rouge.jneen.net/'
 arch=('any')
@@ -11,8 +11,8 @@
 depends=('ruby' 'ruby-rdoc')
 options=('!emptydirs')
 
source=(https://github.com/jneen/rouge/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('bd6006b11924b3705dc142922878dc87af25ceed8a153ad9691ad2595144ae1f3f909574799002601928e985a6650fe4c8d93e05a1e8e26bdb10e9b2f9a28765')
-b2sums=('9739c229788d615f4875caf5d38c91ca30b4fe5703c577b2e7aa5d54bd625f33e998ee887d375d357e72c9f05ac9a284b88ce7902c6fae422e8196098a993259')
+sha512sums=('a6cb87ef7ec1eae94f127ef615b77830581d1e3a2f690e852effafd146e4456e6c931f843e9df068a750b69af8a6d8d958277d94e16550e016a58412caeba7d7')
+b2sums=('38b360bc282887913e24e8ebd5463d792d03f55e70553f93b12ee94c7e1ed9d6d2ac3d084c21d21a59480a1669b552bc10b42ec2d0e63b167f142b241ce884db')
 
 prepare() {
   cd ${_gemname}-${pkgver}



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

2022-05-21 Thread Jan Steffens via arch-commits
Date: Saturday, May 21, 2022 @ 22:30:03
  Author: heftig
Revision: 1209900

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |  204 -
 1 file changed, 109 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 22:29:45 UTC (rev 1209899)
+++ PKGBUILD2022-05-21 22:30:03 UTC (rev 1209900)
@@ -1,95 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Jan Alexander Steffens 
-# Contributor: Daniel Micay 
-# Contributor: Mladen Pejakovic 
-
-pkgbase=lib32-libxkbcommon
-pkgname=(
-  lib32-libxkbcommon
-  lib32-libxkbcommon-x11
-)
-pkgver=1.4.0
-pkgrel=1
-pkgdesc='Keymap handling library for toolkits and window systems (32-bit)'
-url=https://xkbcommon.org/
-arch=(x86_64)
-license=(custom)
-makedepends=(
-  git
-  lib32-libxcb
-  lib32-libxml2
-  lib32-wayland
-  meson
-  wayland-protocols
-  xorg-util-macros
-)
-checkdepends=(
-  xorg-server-xvfb
-  libgl
-)
-_tag=6e8f0d331715a3672f5c663b704b9ea5caabe113
-source=(git+https://github.com/xkbcommon/libxkbcommon#tag=${_tag})
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libxkbcommon
-
-  git describe --tags | sed 's/^xkbcommon-//'
-}
-
-build() {
-  export CC='gcc -m32'
-  export PKG_CONFIG='i686-pc-linux-gnu-pkg-config'
-
-  arch-meson libxkbcommon build \
---libdir=/usr/lib32 \
--D enable-docs=false \
--D enable-tools=false
-  meson compile -C build
-}
-
-check() {
-  xvfb-run -s '-nolisten local' meson test -C build --print-errorlogs
-}
-
-package_lib32-libxkbcommon() {
-  depends=(
-lib32-libxml2
-libxkbcommon
-  )
-  provides=(
-libxkbcommon.so
-libxkbregistry.so
-  )
-
-  meson install -C build --destdir "${pkgdir}"
-  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libxkbcommon "${pkgdir}"/usr/share/licenses/lib32-libxkbcommon
-
-  mkdir -p x11/usr/lib32/pkgconfig
-  mv "${pkgdir}"/usr/lib32/*x11* x11/usr/lib32
-  mv "${pkgdir}"/usr/lib32/pkgconfig/*x11* x11/usr/lib32/pkgconfig
-}
-
-package_lib32-libxkbcommon-x11() {
-  pkgdesc='Keyboard handling library using XKB data for X11 XCB clients 
(32-bit)'
-  depends=(
-lib32-libxkbcommon
-libxkbcommon.so
-lib32-libxcb
-libxkbcommon-x11
-  )
-  provides=(
-libxkbcommon-x11.so
-  )
-
-  mv x11/* "${pkgdir}"/
-  find "${pkgdir}" -type d -exec chmod 755 {} +
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libxkbcommon-x11 "${pkgdir}"/usr/share/licenses/lib32-libxkbcommon-x11
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-libxkbcommon/repos/multilib-x86_64/PKGBUILD (from rev 1209899, 
lib32-libxkbcommon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 22:30:03 UTC (rev 1209900)
@@ -0,0 +1,109 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Jan Alexander Steffens 
+# Contributor: Daniel Micay 
+# Contributor: Mladen Pejakovic 
+
+pkgbase=lib32-libxkbcommon
+pkgname=(
+  lib32-libxkbcommon
+  lib32-libxkbcommon-x11
+)
+pkgver=1.4.1
+pkgrel=1
+pkgdesc='Keymap handling library for toolkits and window systems (32-bit)'
+url='https://xkbcommon.org/'
+arch=(x86_64)
+license=(custom)
+makedepends=(
+  git
+  lib32-libxcb
+  lib32-libxml2
+  lib32-wayland
+  meson
+  wayland-protocols
+  xkeyboard-config
+  xorgproto
+)
+checkdepends=(
+  libgl
+  xorg-server-xvfb
+)
+options=(
+  debug
+)
+_commit=57af9cb71f19f37394399b549f7cb7b0d9fe3988  # tags/xkbcommon-1.4.1^0
+source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libxkbcommon
+  git describe --tags | sed 's/^xkbcommon-//;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd libxkbcommon
+}
+
+build() {
+  export CC='gcc -m32'
+  export PKG_CONFIG='i686-pc-linux-gnu-pkg-config'
+
+  arch-meson libxkbcommon build \
+--libdir=/usr/lib32 \
+-D enable-docs=false \
+-D enable-tools=false
+  meson compile -C build
+}
+
+check() {
+  xvfb-run -s '-nolisten local' meson test -C build --print-errorlogs
+}
+
+_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_lib32-libxkbcommon() {
+  depends=(
+lib32-libxml2
+xkeyboard-config
+libxkbcommon
+  )
+  provides=(
+libxkbcommon.so
+libxkbregistry.so
+  )
+
+  meson install -C build --destdir "$pkgdir"
+  rm -r "$pkgdir/usr/include"
+
+  _pick x11 "$pkgdir"/usr/lib32/*x11*
+  _pick x11 "$pkgdir"/usr/lib32/pkgconfig/*x11*
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 libxkbcommon/LICENSE
+}
+

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

2022-05-21 Thread Jan Steffens via arch-commits
Date: Saturday, May 21, 2022 @ 22:30:04
  Author: heftig
Revision: 446413

archrelease: copy trunk to extra-x86_64

Added:
  libxkbcommon/repos/extra-x86_64/PKGBUILD
(from rev 446412, libxkbcommon/trunk/PKGBUILD)
Deleted:
  libxkbcommon/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 22:28:12 UTC (rev 446412)
+++ PKGBUILD2022-05-21 22:30:04 UTC (rev 446413)
@@ -1,80 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Daniel Micay 
-# Contributor: Mladen Pejakovic 
-
-pkgbase=libxkbcommon
-pkgname=(libxkbcommon libxkbcommon-doc libxkbcommon-x11)
-pkgver=1.4.0
-pkgrel=1
-pkgdesc="Keymap handling library for toolkits and window systems"
-url="https://xkbcommon.org/;
-arch=(x86_64)
-license=(custom)
-makedepends=(xkeyboard-config libxml2 libxcb wayland wayland-protocols doxygen
- git meson xorgproto)
-checkdepends=(xorg-server-xvfb libgl)
-_commit=ea6580cc3913d93655ecf92a5913de652315efc3  # tags/xkbcommon-1.4.0^0
-source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^xkbcommon-//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-build() {
-  arch-meson $pkgbase build
-  meson compile -C build
-}
-
-check() {
-  xvfb-run -s '-nolisten local' meson test -C build --print-errorlogs
-}
-
-_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_libxkbcommon() {
-  depends=(xkeyboard-config libxml2)
-  optdepends=('libxkbcommon-x11: xkbcli interactive-x11'
-  'wayland: xkbcli interactive-wayland')
-  provides=(libxkbcommon.so libxkbregistry.so)
-
-  meson install -C build --destdir "$pkgdir"
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
-
-  _pick libxkbcommon-doc "$pkgdir"/usr/share/doc
-
-  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/pkgconfig/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/xkbcommon/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/include/xkbcommon/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/share/man/man1/*x11*
-}
-
-package_libxkbcommon-doc() {
-  pkgdesc="API documentation for libxkbcommon"
-
-  mv libxkbcommon-doc/* "$pkgdir"
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
-}
-
-package_libxkbcommon-x11() {
-  pkgdesc="Keyboard handling library using XKB data for X11 XCB clients"
-  depends=(libxkbcommon libxkbcommon.so libxcb)
-  provides=(libxkbcommon-x11.so)
-
-  mv libxkbcommon-x11/* "$pkgdir"
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
-}

Copied: libxkbcommon/repos/extra-x86_64/PKGBUILD (from rev 446412, 
libxkbcommon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 22:30:04 UTC (rev 446413)
@@ -0,0 +1,118 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Micay 
+# Contributor: Mladen Pejakovic 
+
+pkgbase=libxkbcommon
+pkgname=(
+  libxkbcommon
+  libxkbcommon-x11
+  libxkbcommon-doc
+)
+pkgver=1.4.1
+pkgrel=1
+pkgdesc='Keymap handling library for toolkits and window systems'
+url='https://xkbcommon.org/'
+arch=(x86_64)
+license=(custom)
+makedepends=(
+  doxygen
+  git
+  libxcb 
+  libxml2
+  meson
+  wayland
+  wayland-protocols
+  xkeyboard-config
+  xorgproto
+)
+checkdepends=(
+  libgl
+  xorg-server-xvfb
+)
+options=(
+  debug
+)
+_commit=57af9cb71f19f37394399b549f7cb7b0d9fe3988  # tags/xkbcommon-1.4.1^0
+source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libxkbcommon
+  git describe --tags | sed 's/^xkbcommon-//;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd libxkbcommon
+}
+
+build() {
+  arch-meson libxkbcommon build
+  meson compile -C build
+}
+
+check() {
+  xvfb-run -s '-nolisten local' meson test -C build --print-errorlogs
+}
+
+_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_libxkbcommon() {
+  depends=(
+libxml2
+xkeyboard-config
+  )
+  optdepends=(
+'libxkbcommon-x11: xkbcli interactive-x11'
+'wayland: xkbcli interactive-wayland'
+  )
+  provides=(
+libxkbcommon.so
+libxkbregistry.so
+  )
+
+  meson install -C build --destdir "$pkgdir"
+
+  _pick x11 "$pkgdir"/usr/lib/*x11*
+  _pick x11 "$pkgdir"/usr/lib/pkgconfig/*x11*
+  _pick x11 "$pkgdir"/usr/lib/xkbcommon/*x11*
+  _pick x11 

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

2022-05-21 Thread Jan Steffens via arch-commits
Date: Saturday, May 21, 2022 @ 22:29:45
  Author: heftig
Revision: 1209899

1.4.1-1

Modified:
  lib32-libxkbcommon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 22:11:02 UTC (rev 1209898)
+++ PKGBUILD2022-05-21 22:29:45 UTC (rev 1209899)
@@ -8,10 +8,10 @@
   lib32-libxkbcommon
   lib32-libxkbcommon-x11
 )
-pkgver=1.4.0
+pkgver=1.4.1
 pkgrel=1
 pkgdesc='Keymap handling library for toolkits and window systems (32-bit)'
-url=https://xkbcommon.org/
+url='https://xkbcommon.org/'
 arch=(x86_64)
 license=(custom)
 makedepends=(
@@ -21,20 +21,27 @@
   lib32-wayland
   meson
   wayland-protocols
-  xorg-util-macros
+  xkeyboard-config
+  xorgproto
 )
 checkdepends=(
+  libgl
   xorg-server-xvfb
-  libgl
 )
-_tag=6e8f0d331715a3672f5c663b704b9ea5caabe113
-source=(git+https://github.com/xkbcommon/libxkbcommon#tag=${_tag})
+options=(
+  debug
+)
+_commit=57af9cb71f19f37394399b549f7cb7b0d9fe3988  # tags/xkbcommon-1.4.1^0
+source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
   cd libxkbcommon
+  git describe --tags | sed 's/^xkbcommon-//;s/[^-]*-g/r&/;s/-/+/g'
+}
 
-  git describe --tags | sed 's/^xkbcommon-//'
+prepare() {
+  cd libxkbcommon
 }
 
 build() {
@@ -52,9 +59,20 @@
   xvfb-run -s '-nolisten local' meson test -C build --print-errorlogs
 }
 
+_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_lib32-libxkbcommon() {
   depends=(
 lib32-libxml2
+xkeyboard-config
 libxkbcommon
   )
   provides=(
@@ -62,23 +80,21 @@
 libxkbregistry.so
   )
 
-  meson install -C build --destdir "${pkgdir}"
-  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
+  meson install -C build --destdir "$pkgdir"
+  rm -r "$pkgdir/usr/include"
 
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libxkbcommon "${pkgdir}"/usr/share/licenses/lib32-libxkbcommon
+  _pick x11 "$pkgdir"/usr/lib32/*x11*
+  _pick x11 "$pkgdir"/usr/lib32/pkgconfig/*x11*
 
-  mkdir -p x11/usr/lib32/pkgconfig
-  mv "${pkgdir}"/usr/lib32/*x11* x11/usr/lib32
-  mv "${pkgdir}"/usr/lib32/pkgconfig/*x11* x11/usr/lib32/pkgconfig
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 libxkbcommon/LICENSE
 }
 
 package_lib32-libxkbcommon-x11() {
   pkgdesc='Keyboard handling library using XKB data for X11 XCB clients 
(32-bit)'
   depends=(
+lib32-libxcb
 lib32-libxkbcommon
 libxkbcommon.so
-lib32-libxcb
 libxkbcommon-x11
   )
   provides=(
@@ -85,11 +101,9 @@
 libxkbcommon-x11.so
   )
 
-  mv x11/* "${pkgdir}"/
-  find "${pkgdir}" -type d -exec chmod 755 {} +
+  mv x11/* "$pkgdir"/
 
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libxkbcommon-x11 "${pkgdir}"/usr/share/licenses/lib32-libxkbcommon-x11
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 libxkbcommon/LICENSE
 }
 
-# vim: ts=2 sw=2 et:
+# vim:set sw=2 sts=-1 et:



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

2022-05-21 Thread Jan Steffens via arch-commits
Date: Saturday, May 21, 2022 @ 22:28:12
  Author: heftig
Revision: 446412

1.4.1-1

Modified:
  libxkbcommon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 21:50:28 UTC (rev 446411)
+++ PKGBUILD2022-05-21 22:28:12 UTC (rev 446412)
@@ -3,31 +3,50 @@
 # Contributor: Mladen Pejakovic 
 
 pkgbase=libxkbcommon
-pkgname=(libxkbcommon libxkbcommon-doc libxkbcommon-x11)
-pkgver=1.4.0
+pkgname=(
+  libxkbcommon
+  libxkbcommon-x11
+  libxkbcommon-doc
+)
+pkgver=1.4.1
 pkgrel=1
-pkgdesc="Keymap handling library for toolkits and window systems"
-url="https://xkbcommon.org/;
+pkgdesc='Keymap handling library for toolkits and window systems'
+url='https://xkbcommon.org/'
 arch=(x86_64)
 license=(custom)
-makedepends=(xkeyboard-config libxml2 libxcb wayland wayland-protocols doxygen
- git meson xorgproto)
-checkdepends=(xorg-server-xvfb libgl)
-_commit=ea6580cc3913d93655ecf92a5913de652315efc3  # tags/xkbcommon-1.4.0^0
+makedepends=(
+  doxygen
+  git
+  libxcb 
+  libxml2
+  meson
+  wayland
+  wayland-protocols
+  xkeyboard-config
+  xorgproto
+)
+checkdepends=(
+  libgl
+  xorg-server-xvfb
+)
+options=(
+  debug
+)
+_commit=57af9cb71f19f37394399b549f7cb7b0d9fe3988  # tags/xkbcommon-1.4.1^0
 source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^xkbcommon-//;s/-/+/g'
+  cd libxkbcommon
+  git describe --tags | sed 's/^xkbcommon-//;s/[^-]*-g/r&/;s/-/+/g'
 }
 
 prepare() {
-  cd $pkgbase
+  cd libxkbcommon
 }
 
 build() {
-  arch-meson $pkgbase build
+  arch-meson libxkbcommon build
   meson compile -C build
 }
 
@@ -46,35 +65,54 @@
 }
 
 package_libxkbcommon() {
-  depends=(xkeyboard-config libxml2)
-  optdepends=('libxkbcommon-x11: xkbcli interactive-x11'
-  'wayland: xkbcli interactive-wayland')
-  provides=(libxkbcommon.so libxkbregistry.so)
+  depends=(
+libxml2
+xkeyboard-config
+  )
+  optdepends=(
+'libxkbcommon-x11: xkbcli interactive-x11'
+'wayland: xkbcli interactive-wayland'
+  )
+  provides=(
+libxkbcommon.so
+libxkbregistry.so
+  )
 
   meson install -C build --destdir "$pkgdir"
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
 
-  _pick libxkbcommon-doc "$pkgdir"/usr/share/doc
+  _pick x11 "$pkgdir"/usr/lib/*x11*
+  _pick x11 "$pkgdir"/usr/lib/pkgconfig/*x11*
+  _pick x11 "$pkgdir"/usr/lib/xkbcommon/*x11*
+  _pick x11 "$pkgdir"/usr/include/xkbcommon/*x11*
+  _pick x11 "$pkgdir"/usr/share/man/man1/*x11*
 
-  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/pkgconfig/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/xkbcommon/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/include/xkbcommon/*x11*
-  _pick libxkbcommon-x11 "$pkgdir"/usr/share/man/man1/*x11*
+  _pick doc "$pkgdir"/usr/share/doc
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 libxkbcommon/LICENSE
 }
 
-package_libxkbcommon-doc() {
-  pkgdesc="API documentation for libxkbcommon"
+package_libxkbcommon-x11() {
+  pkgdesc='Keyboard handling library using XKB data for X11 XCB clients'
+  depends=(
+libxcb
+libxkbcommon
+libxkbcommon.so
+  )
+  provides=(
+libxkbcommon-x11.so
+  )
 
-  mv libxkbcommon-doc/* "$pkgdir"
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
+  mv x11/* "$pkgdir"/
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 libxkbcommon/LICENSE
 }
 
-package_libxkbcommon-x11() {
-  pkgdesc="Keyboard handling library using XKB data for X11 XCB clients"
-  depends=(libxkbcommon libxkbcommon.so libxcb)
-  provides=(libxkbcommon-x11.so)
+package_libxkbcommon-doc() {
+  pkgdesc='API documentation for libxkbcommon'
 
-  mv libxkbcommon-x11/* "$pkgdir"
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
+  mv doc/* "$pkgdir"/
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 libxkbcommon/LICENSE
 }
+
+# vim:set sw=2 sts=-1 et:



[arch-commits] Commit in ruby-rack-protection/repos/community-any (PKGBUILD PKGBUILD)

2022-05-21 Thread Levente Polyak via arch-commits
Date: Saturday, May 21, 2022 @ 22:11:02
  Author: anthraxx
Revision: 1209898

archrelease: copy trunk to community-any

Added:
  ruby-rack-protection/repos/community-any/PKGBUILD
(from rev 1209897, ruby-rack-protection/trunk/PKGBUILD)
Deleted:
  ruby-rack-protection/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 22:10:57 UTC (rev 1209897)
+++ PKGBUILD2022-05-21 22:11:02 UTC (rev 1209898)
@@ -1,47 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_gemname=rack-protection
-pkgname=ruby-${_gemname}
-pkgver=2.1.0
-pkgrel=2
-pkgdesc='Protect against typical web attacks, works with all Rack apps, 
including Rails'
-url='http://sinatrarb.com/protection/'
-arch=('any')
-license=('MIT')
-depends=('ruby' 'ruby-rack')
-makedepends=('ruby-rdoc' 'ruby-rake' 'ruby-bundler' 'ruby-minitest')
-checkdepends=('ruby-rspec')
-options=('!emptydirs')
-source=(https://github.com/sinatra/sinatra/archive/v${pkgver}/sinatra-${pkgver}.tar.gz)
-sha512sums=('7127593bd44a5648407631f05d5db04100db30ae862c37e22dc264025fe271336c25df3c47839e41ba200da98be6c7b985852cd53d494a8bbda90fe701a89fe0')
-b2sums=('05eea600695abf6ee9b2ef0eb2a215c106ac45a343a60017f2cdf8aba8733c1ba5c55235a9c35a4665659797754f78e28d6b8fb1e24391e99a2336ee150bacff')
-
-prepare() {
-  cd sinatra-${pkgver}/${_gemname}
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec Rakefile
-}
-
-build() {
-  cd sinatra-${pkgver}/${_gemname}
-  rake build
-}
-
-check() {
-  cd sinatra-${pkgver}/${_gemname}
-  # TODO: requires rack-test
-  # rake test
-}
-
-package() {
-  cd sinatra-${pkgver}/${_gemname}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
--n "${pkgdir}/usr/bin" pkg/${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 License -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  cd "${pkgdir}/${_gemdir}"
-  rm -r "${pkgdir}/${_gemdir}/cache"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rack-protection/repos/community-any/PKGBUILD (from rev 1209897, 
ruby-rack-protection/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 22:11:02 UTC (rev 1209898)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+
+_gemname=rack-protection
+pkgname=ruby-${_gemname}
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Protect against typical web attacks, works with all Rack apps, 
including Rails'
+url='http://sinatrarb.com/protection/'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-rack')
+makedepends=('ruby-rdoc' 'ruby-rake' 'ruby-bundler' 'ruby-minitest')
+checkdepends=('ruby-rspec' 'ruby-rack-test')
+options=('!emptydirs')
+source=(https://github.com/sinatra/sinatra/archive/v${pkgver}/sinatra-${pkgver}.tar.gz)
+sha512sums=('be9432a8efa93578accc836cd0fecca128e56989d8596f1b3d33d2d956e90acd80244b98473fff2adae13ed4a1e933c41e73c80755a6f3418a65cdf33c011145')
+b2sums=('e407b9241cab27e326c0a2d4d83593e292de902b6ed19a12f17b0cd114230b0d10f1ffaa8f8b8237d17b547c7e012c57456af357019b228f3d7a88847220cf33')
+
+prepare() {
+  cd sinatra-${pkgver}/${_gemname}
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec Rakefile
+}
+
+build() {
+  cd sinatra-${pkgver}/${_gemname}
+  rake build
+}
+
+check() {
+  cd sinatra-${pkgver}/${_gemname}
+  rake test
+}
+
+package() {
+  cd sinatra-${pkgver}/${_gemname}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
\
+-n "${pkgdir}/usr/bin" pkg/${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 License -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  cd "${pkgdir}/${_gemdir}"
+  rm -r "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in ruby-rack-protection/trunk (PKGBUILD)

2022-05-21 Thread Levente Polyak via arch-commits
Date: Saturday, May 21, 2022 @ 22:10:57
  Author: anthraxx
Revision: 1209897

upgpkg: ruby-rack-protection 2.2.0-1

Modified:
  ruby-rack-protection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:33:31 UTC (rev 1209896)
+++ PKGBUILD2022-05-21 22:10:57 UTC (rev 1209897)
@@ -2,8 +2,8 @@
 
 _gemname=rack-protection
 pkgname=ruby-${_gemname}
-pkgver=2.1.0
-pkgrel=2
+pkgver=2.2.0
+pkgrel=1
 pkgdesc='Protect against typical web attacks, works with all Rack apps, 
including Rails'
 url='http://sinatrarb.com/protection/'
 arch=('any')
@@ -10,11 +10,11 @@
 license=('MIT')
 depends=('ruby' 'ruby-rack')
 makedepends=('ruby-rdoc' 'ruby-rake' 'ruby-bundler' 'ruby-minitest')
-checkdepends=('ruby-rspec')
+checkdepends=('ruby-rspec' 'ruby-rack-test')
 options=('!emptydirs')
 
source=(https://github.com/sinatra/sinatra/archive/v${pkgver}/sinatra-${pkgver}.tar.gz)
-sha512sums=('7127593bd44a5648407631f05d5db04100db30ae862c37e22dc264025fe271336c25df3c47839e41ba200da98be6c7b985852cd53d494a8bbda90fe701a89fe0')
-b2sums=('05eea600695abf6ee9b2ef0eb2a215c106ac45a343a60017f2cdf8aba8733c1ba5c55235a9c35a4665659797754f78e28d6b8fb1e24391e99a2336ee150bacff')
+sha512sums=('be9432a8efa93578accc836cd0fecca128e56989d8596f1b3d33d2d956e90acd80244b98473fff2adae13ed4a1e933c41e73c80755a6f3418a65cdf33c011145')
+b2sums=('e407b9241cab27e326c0a2d4d83593e292de902b6ed19a12f17b0cd114230b0d10f1ffaa8f8b8237d17b547c7e012c57456af357019b228f3d7a88847220cf33')
 
 prepare() {
   cd sinatra-${pkgver}/${_gemname}
@@ -28,8 +28,7 @@
 
 check() {
   cd sinatra-${pkgver}/${_gemname}
-  # TODO: requires rack-test
-  # rake test
+  rake test
 }
 
 package() {



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 21:12:50
  Author: andyrtr
Revision: 446410

archrelease: copy trunk to extra-x86_64

Added:
  hunspell/repos/extra-x86_64/PKGBUILD
(from rev 446409, hunspell/trunk/PKGBUILD)
Deleted:
  hunspell/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 21:12:44 UTC (rev 446409)
+++ PKGBUILD2022-05-21 21:12:50 UTC (rev 446410)
@@ -1,41 +0,0 @@
-# Maintainer: Andreas Radke 
-# Contributor: Hussam Al-Tayeb 
-
-pkgname=hunspell
-pkgver=1.7.0
-pkgrel=3
-pkgdesc="Spell checker and morphological analyzer library and program"
-arch=('x86_64')
-url="https://hunspell.github.io/;
-license=('GPL' 'LGPL' 'MPL')
-depends=('gcc-libs' 'readline')
-optdepends=('perl: for ispellaff2myspell')
-source=($pkgname-$pkgver.tar.gz::https://github.com/hunspell/hunspell/archive/v${pkgver}.tar.gz)
-sha256sums=('bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a')
-
-prepare() {
-  cd hunspell-$pkgver
-  autoreconf -vfi
-}
-
-build() {
-  cd hunspell-$pkgver
-  ./configure --prefix=/usr --disable-static \
-   --with-ui --with-readline # --with-experimental breaks build in this 
release
-  make
-}
-
-check() {
-  cd hunspell-$pkgver
-  make check
-}
-
-package() {
-  cd hunspell-$pkgver
-  make DESTDIR="$pkgdir" install
-  
-  # add generic hunspell.so for development and projects not using pkgconfig 
flags - FS#30592
-  pushd "$pkgdir"/usr/lib
-  ln -s libhunspell-?.?.so libhunspell.so
-  popd
-}

Copied: hunspell/repos/extra-x86_64/PKGBUILD (from rev 446409, 
hunspell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 21:12:50 UTC (rev 446410)
@@ -0,0 +1,51 @@
+# Maintainer: Andreas Radke 
+# Contributor: Hussam Al-Tayeb 
+
+pkgname=hunspell
+pkgver=1.7.0
+pkgrel=4
+pkgdesc="Spell checker and morphological analyzer library and program"
+arch=('x86_64')
+url="https://hunspell.github.io/;
+license=('GPL' 'LGPL' 'MPL')
+depends=('gcc-libs' 'readline')
+optdepends=('perl: for ispellaff2myspell')
+source=($pkgname-$pkgver.tar.gz::https://github.com/hunspell/hunspell/archive/v${pkgver}.tar.gz
+   
hunspell_buildfix.diff::https://github.com/hunspell/hunspell/commit/2f9e34d13312dbf705f7e1316ca364be13640e6c.patch
+   
hunspell_buildfix2.diff::https://patch-diff.githubusercontent.com/raw/hunspell/hunspell/pull/762.patch)
+sha256sums=('bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd hunspell-$pkgver
+
+  # build fix
+  patch -Np1 -i ../hunspell_buildfix.diff
+  patch -Np1 -i ../hunspell_buildfix2.diff
+
+  autoreconf -vfi
+}
+
+build() {
+  cd hunspell-$pkgver
+  ./configure --prefix=/usr --disable-static \
+   --with-ui --with-readline # --with-experimental breaks build in this 
release
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd hunspell-$pkgver
+  make check
+}
+
+package() {
+  cd hunspell-$pkgver
+  make DESTDIR="$pkgdir" install
+  
+  # add generic hunspell.so for development and projects not using pkgconfig 
flags - FS#30592
+  pushd "$pkgdir"/usr/lib
+  ln -s libhunspell-?.?.so libhunspell.so
+  popd
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 21:12:44
  Author: andyrtr
Revision: 446409

upgpkg: hunspell 1.7.0-4: rebuild old package; fix FTBS

Modified:
  hunspell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:57:54 UTC (rev 446408)
+++ PKGBUILD2022-05-21 21:12:44 UTC (rev 446409)
@@ -3,7 +3,7 @@
 
 pkgname=hunspell
 pkgver=1.7.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Spell checker and morphological analyzer library and program"
 arch=('x86_64')
 url="https://hunspell.github.io/;
@@ -10,11 +10,20 @@
 license=('GPL' 'LGPL' 'MPL')
 depends=('gcc-libs' 'readline')
 optdepends=('perl: for ispellaff2myspell')
-source=($pkgname-$pkgver.tar.gz::https://github.com/hunspell/hunspell/archive/v${pkgver}.tar.gz)
-sha256sums=('bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a')
+source=($pkgname-$pkgver.tar.gz::https://github.com/hunspell/hunspell/archive/v${pkgver}.tar.gz
+   
hunspell_buildfix.diff::https://github.com/hunspell/hunspell/commit/2f9e34d13312dbf705f7e1316ca364be13640e6c.patch
+   
hunspell_buildfix2.diff::https://patch-diff.githubusercontent.com/raw/hunspell/hunspell/pull/762.patch)
+sha256sums=('bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a'
+'SKIP'
+'SKIP')
 
 prepare() {
   cd hunspell-$pkgver
+
+  # build fix
+  patch -Np1 -i ../hunspell_buildfix.diff
+  patch -Np1 -i ../hunspell_buildfix2.diff
+
   autoreconf -vfi
 }
 
@@ -22,6 +31,7 @@
   cd hunspell-$pkgver
   ./configure --prefix=/usr --disable-static \
--with-ui --with-readline # --with-experimental breaks build in this 
release
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:57:54
  Author: andyrtr
Revision: 446408

Removed extra-x86_64 for texi2html

Deleted:
  texi2html/repos/extra-x86_64/



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:57:51
  Author: andyrtr
Revision: 446407

archrelease: copy trunk to extra-any

Added:
  texi2html/repos/extra-any/PKGBUILD
(from rev 446406, texi2html/trunk/PKGBUILD)
Deleted:
  texi2html/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:57:44 UTC (rev 446406)
+++ PKGBUILD2022-05-21 20:57:51 UTC (rev 446407)
@@ -1,26 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-
-pkgname=texi2html
-pkgver=5.0
-pkgrel=6
-pkgdesc="Converts texinfo documents to HTML"
-arch=('any')
-url="https://www.nongnu.org/texi2html/;
-license=('GPL')
-depends=('perl')
-source=(https://download.savannah.gnu.org/releases/texi2html/$pkgname-$pkgver.tar.bz2{,.sig})
-sha256sums=('e8a98b0ee20c495a6ab894398a065ef580272dbd5a15b1b19e8bd1bc89d9f9fa'
-'SKIP')
-validpgpkeys=('9804BBF566E198FCA15D5C215EC2A77F36ECC523') # "Patrice Dumas 
(Pertusus) "
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir"  install
-}

Copied: texi2html/repos/extra-any/PKGBUILD (from rev 446406, 
texi2html/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:57:51 UTC (rev 446407)
@@ -0,0 +1,26 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+
+pkgname=texi2html
+pkgver=5.0
+pkgrel=7
+pkgdesc="Converts texinfo documents to HTML"
+arch=('any')
+url="https://www.nongnu.org/texi2html/;
+license=('GPL')
+depends=('perl')
+source=(https://download.savannah.gnu.org/releases/texi2html/$pkgname-$pkgver.tar.bz2{,.sig})
+sha256sums=('e8a98b0ee20c495a6ab894398a065ef580272dbd5a15b1b19e8bd1bc89d9f9fa'
+'SKIP')
+validpgpkeys=('9804BBF566E198FCA15D5C215EC2A77F36ECC523') # "Patrice Dumas 
(Pertusus) "
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir"  install
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:57:44
  Author: andyrtr
Revision: 446406

upgpkg: texi2html 5.0-7: rebuild old package

Modified:
  texi2html/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:55:30 UTC (rev 446405)
+++ PKGBUILD2022-05-21 20:57:44 UTC (rev 446406)
@@ -3,7 +3,7 @@
 
 pkgname=texi2html
 pkgver=5.0
-pkgrel=6
+pkgrel=7
 pkgdesc="Converts texinfo documents to HTML"
 arch=('any')
 url="https://www.nongnu.org/texi2html/;



[arch-commits] Commit in compface/repos/extra-x86_64 (6 files)

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:55:30
  Author: andyrtr
Revision: 446405

archrelease: copy trunk to extra-x86_64

Added:
  compface/repos/extra-x86_64/LICENSE
(from rev 446404, compface/trunk/LICENSE)
  compface/repos/extra-x86_64/PKGBUILD
(from rev 446404, compface/trunk/PKGBUILD)
  compface/repos/extra-x86_64/compface-1.5.2-build.patch
(from rev 446404, compface/trunk/compface-1.5.2-build.patch)
Deleted:
  compface/repos/extra-x86_64/LICENSE
  compface/repos/extra-x86_64/PKGBUILD
  compface/repos/extra-x86_64/compface-1.5.2-build.patch

+
 LICENSE|  188 +--
 PKGBUILD   |   76 -
 compface-1.5.2-build.patch |  164 ++---
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2022-05-21 20:55:22 UTC (rev 446404)
+++ LICENSE 2022-05-21 20:55:30 UTC (rev 446405)
@@ -1,94 +0,0 @@
-Extracted from Debian GNU/Linux's package:
-
-[...]
-
-Compface - 48x48x1 image compression and decompression
-Copyright (c) James Ashton 1990.
-Written 89/11/11
-
-Feel free to distribute this source at will so long as the above
-message and this message are included in full.
-
-This copyright message dosn't specify whether modified version is allowed,
-but the following mail from the author does allow them:
-
-> From: James Ashton 
-> Subject: Re: Bug#72019: compface not DFSG
-> Date: Wed, 20 Sep 2000 09:48:34 +1100 (EST)
-> 
-> >On Tue, Sep 19, 2000 at 08:58:43AM -0400, Raul Miller wrote:
-> >> Package: compface
-> >> Version: 1989.11.11-17.1
-> >> Severity: important
-> >>
-> >> compface's copyright doesn't grant permission to
-> >> distribute modified versions
-> >
-> >The compface copyright says:
-> >
-> >Feel free to distribute this source at will so long as the above
-> >message and this message are included in full.
-> >
-> >
-> >Which could be interpretated as it is allowed to distribute modified
-> >versions of it. James Ashton is the original author, would you care to
-> >clairify the matter, mr Ashton?
-> 
-> I don't mind modified versions being distributed.  Please included the
-> original copyright notices as specified and also prominently note, if
-> it is a modified version, the nature and author(s) of the
-> modifications.
-> --
-> James Ashton  VK1XJASystem Administrator
-> http://wwwsyseng.anu.edu.au/~jaa   Department of Systems 
Engineering
-> Voice +61 2 6279 8675  Research School of Information Sciences and 
Engineering
-> FAX   +61 2 6279 8688 Australian National University
-> Email james.ash...@anu.edu.auCanberra ACT 0200 Australia
-> 
-
-Another peoblem with the copyright of this source code is that the
-copyright message in the source files and in the readme file is conflicting.
-The following mail from the author should clear that up:
-
-> From: James Ashton 
-> Subject: Re: libcompface license (again)
-> Date: Thu, 22 Feb 2001 09:32:23 +1100 (EST)
-> 
-> >Hi,
-> >I'm maintaining the debian pkg of your compface lib, and I've talket to you
-> >before about it's license. And now ouer legal people have found another
-> >problem. The sourcefiles contains a diffrent copyright notice than the
-> >redmefile. They say:
-> >
-
-/*
- *  Compface - 48x48x1 image compression and decompression
- *
- *  Copyright (c) James Ashton - Sydney University - June 1990.
- *
- *  Written 11th November 1989.
- *
- *  Permission is given to distribute these sources, as long as the
- *  copyright messages are not removed, and no monies are exchanged. 
- *
- *  No responsibility is taken for any errors on inaccuracies inherent
- *  either to the comments or the code of this program, but if reported
- *  to me, then an attempt will be made to fix them.
- */
-
-> >
-> >The problem is the last part "no monies are exchanged". As you probably=20
-> >know we do allow third party companies to produce debian CDs and sell them.
-> >So this statement would inmply that we can't have your libcompface in
-> debian
-> >at all.
-> 
-> I'm happy to remove the phrase no monies are exchanged' from the
-> source and allow distribution as per the README file.  Do you need more
-> from me than just this email?
-> --
-> James AshtonVK1XJASystem 
Administrator
-> http://wwwsyseng.anu.edu.au/~jaa Department of Systems 
Engineering
-> Voice +61 2 6125 8675  Research School of Information Sciences and 
Engineering
-> FAX   +61 2 6125 8660   Australian National 
University
-> Email james.ash...@anu.edu.au  Canberra ACT 0200 
Australia

Copied: compface/repos/extra-x86_64/LICENSE (from rev 446404, 
compface/trunk/LICENSE)
===
--- LICENSE  

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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:55:22
  Author: andyrtr
Revision: 446404

upgpkg: compface 1.5.2-10: rebuild old package

Modified:
  compface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:54:23 UTC (rev 446403)
+++ PKGBUILD2022-05-21 20:55:22 UTC (rev 446404)
@@ -4,7 +4,7 @@
 
 pkgname=compface
 pkgver=1.5.2
-pkgrel=9
+pkgrel=10
 pkgdesc="Utils & libs to convert from/to X-Face format."
 arch=('x86_64')
 url="http://ftp.xemacs.org/pub/xemacs/aux/;



[arch-commits] Commit in libfreehand/repos/extra-x86_64 (4 files)

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:54:23
  Author: andyrtr
Revision: 446403

archrelease: copy trunk to extra-x86_64

Added:
  libfreehand/repos/extra-x86_64/PKGBUILD
(from rev 446402, libfreehand/trunk/PKGBUILD)
  libfreehand/repos/extra-x86_64/libfreehand-0.1.2-icu-fix.patch
(from rev 446402, libfreehand/trunk/libfreehand-0.1.2-icu-fix.patch)
Deleted:
  libfreehand/repos/extra-x86_64/PKGBUILD
  libfreehand/repos/extra-x86_64/libfreehand-0.1.2-icu-fix.patch

-+
 PKGBUILD|   72 +++---
 libfreehand-0.1.2-icu-fix.patch |   58 +++---
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:54:16 UTC (rev 446402)
+++ PKGBUILD2022-05-21 20:54:23 UTC (rev 446403)
@@ -1,36 +0,0 @@
-# Maintainer: AndyRTR 
-
-pkgname=libfreehand
-pkgver=0.1.2
-pkgrel=3
-pkgdesc="a library for import of Aldus/Macromedia/Adobe FreeHand documents"
-arch=('x86_64')
-url="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand;
-license=('MPL2')
-depends=('librevenge' 'lcms2')
-makedepends=('boost' 'cppunit' 'gperf' 'doxygen')
-source=("https://dev-www.libreoffice.org/src/libfreehand/$pkgname-$pkgver.tar.xz;
-'libfreehand-0.1.2-icu-fix.patch')
-sha256sums=('0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac'
-'11b5b5fcbb4f427486e83ee042cd3f2b030bcf8238f5d1925942416067d0254b')
-
-prepare() {
-   cd "$pkgname-$pkgver"
-   patch -p1 -i $srcdir/libfreehand-0.1.2-icu-fix.patch
-}
-
-build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr --disable-werror
-   make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir/" install
-}

Copied: libfreehand/repos/extra-x86_64/PKGBUILD (from rev 446402, 
libfreehand/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:54:23 UTC (rev 446403)
@@ -0,0 +1,36 @@
+# Maintainer: AndyRTR 
+
+pkgname=libfreehand
+pkgver=0.1.2
+pkgrel=4
+pkgdesc="a library for import of Aldus/Macromedia/Adobe FreeHand documents"
+arch=('x86_64')
+url="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand;
+license=('MPL2')
+depends=('librevenge' 'lcms2')
+makedepends=('boost' 'cppunit' 'gperf' 'doxygen')
+source=("https://dev-www.libreoffice.org/src/libfreehand/$pkgname-$pkgver.tar.xz;
+'libfreehand-0.1.2-icu-fix.patch')
+sha256sums=('0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac'
+'11b5b5fcbb4f427486e83ee042cd3f2b030bcf8238f5d1925942416067d0254b')
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -p1 -i $srcdir/libfreehand-0.1.2-icu-fix.patch
+}
+
+build() {
+   cd "$pkgname-$pkgver"
+   ./configure --prefix=/usr --disable-werror
+   make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+}

Deleted: libfreehand-0.1.2-icu-fix.patch
===
--- libfreehand-0.1.2-icu-fix.patch 2022-05-21 20:54:16 UTC (rev 446402)
+++ libfreehand-0.1.2-icu-fix.patch 2022-05-21 20:54:23 UTC (rev 446403)
@@ -1,29 +0,0 @@
-From af3197f795625f5188602073205a34369698b6df Mon Sep 17 00:00:00 2001
-From: Heiko Becker 
-Date: Fri, 4 Oct 2019 01:46:12 +0200
-Subject: [PATCH] Add missing semicolon to fix build with icu 65.1
-
-Change-Id: I7a0b0d600e9f7770245a7485813a944bfac4f088
-Reviewed-on: https://gerrit.libreoffice.org/80224
-Reviewed-by: Miklos Vajna 
-Tested-by: Miklos Vajna 

- src/lib/libfreehand_utils.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp
-index 439c457..32f23e0 100644
 a/src/lib/libfreehand_utils.cpp
-+++ b/src/lib/libfreehand_utils.cpp
-@@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString 
, std::vector
+Date: Fri, 4 Oct 2019 01:46:12 +0200
+Subject: [PATCH] Add missing semicolon to fix build with icu 65.1
+
+Change-Id: I7a0b0d600e9f7770245a7485813a944bfac4f088
+Reviewed-on: https://gerrit.libreoffice.org/80224
+Reviewed-by: Miklos Vajna 
+Tested-by: Miklos Vajna 
+---
+ src/lib/libfreehand_utils.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp
+index 439c457..32f23e0 100644
+--- a/src/lib/libfreehand_utils.cpp
 b/src/lib/libfreehand_utils.cpp
+@@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString 
, std::vector

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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:54:16
  Author: andyrtr
Revision: 446402

upgpkg: libfreehand 0.1.2-4: rebuild old package

Modified:
  libfreehand/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:53:28 UTC (rev 446401)
+++ PKGBUILD2022-05-21 20:54:16 UTC (rev 446402)
@@ -2,7 +2,7 @@
 
 pkgname=libfreehand
 pkgver=0.1.2
-pkgrel=3
+pkgrel=4
 pkgdesc="a library for import of Aldus/Macromedia/Adobe FreeHand documents"
 arch=('x86_64')
 url="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand;



[arch-commits] Commit in opengl-man-pages/repos/extra-any (4 files)

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:53:28
  Author: andyrtr
Revision: 446401

archrelease: copy trunk to extra-any

Added:
  opengl-man-pages/repos/extra-any/LICENSE
(from rev 446400, opengl-man-pages/trunk/LICENSE)
  opengl-man-pages/repos/extra-any/PKGBUILD
(from rev 446400, opengl-man-pages/trunk/PKGBUILD)
Deleted:
  opengl-man-pages/repos/extra-any/LICENSE
  opengl-man-pages/repos/extra-any/PKGBUILD

--+
 LICENSE  |  232 ++---
 PKGBUILD |   68 -
 2 files changed, 150 insertions(+), 150 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2022-05-21 20:53:21 UTC (rev 446400)
+++ LICENSE 2022-05-21 20:53:28 UTC (rev 446401)
@@ -1,116 +0,0 @@
-SGI Free Software B License:
-
-SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
-Copyright (C) [dates of first publication] Silicon Graphics, Inc. All Rights 
Reserved.
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this
-software and associated documentation files (the "Software"), to deal in the 
Software
-without restriction, including without limitation the rights to use, copy, 
modify, merge,
-publish, distribute, sublicense, and/or sell copies of the Software, and to 
permit persons to
-whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice including the dates of first publication and either 
this
-permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall 
be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
-ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
-IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-IN THE SOFTWARE.
-
-Except as contained in this notice, the name of Silicon Graphics, Inc. shall 
not be used in
-advertising or otherwise to promote the sale, use or other dealings in this 
Software
-without prior written authorization from Silicon Graphics, Inc.
-
-
-Open Publication License, v 1.0:
-
-Open Publication License
-v1.0, 8 June 1999
-
-
-I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS
-
-The Open Publication works may be reproduced and distributed in whole or in 
part, in any medium physical or electronic, provided that the terms of this 
license are adhered to, and that this license or an incorporation of it by 
reference (with any options elected by the author(s) and/or publisher) is 
displayed in the reproduction.
-
-Proper form for an incorporation by reference is as follows:
-
-Copyright (c)  by . This material may be 
distributed only subject to the terms and conditions set forth in the Open 
Publication License, vX.Y or later (the latest version is presently available 
at http://www.opencontent.org/openpub/).
-
-The reference must be immediately followed with any options elected by the 
author(s) and/or publisher of the document (see section VI).
-
-Commercial redistribution of Open Publication-licensed material is permitted.
-
-Any publication in standard (paper) book form shall require the citation of 
the original publisher and author. The publisher and author's names shall 
appear on all outer surfaces of the book. On all outer surfaces of the book the 
original publisher's name shall be as large as the title of the work and cited 
as possessive with respect to the title.
-
-
-II. COPYRIGHT
-
-The copyright to each Open Publication is owned by its author(s) or designee.
-
-
-III. SCOPE OF LICENSE
-
-The following license terms apply to all Open Publication works, unless 
otherwise explicitly stated in the document.
-
-Mere aggregation of Open Publication works or a portion of an Open Publication 
work with other works or programs on the same media shall not cause this 
license to apply to those other works. The aggregate work shall contain a 
notice specifying the inclusion of the Open Publication material and 
appropriate copyright notice.
-
-SEVERABILITY. If any part of this license is found to be unenforceable in any 
jurisdiction, the remaining portions of the license remain in force.
-
-NO WARRANTY. Open Publication works are licensed and provided "as is" without 
warranty of any kind, express or implied, including, but not limited to, the 
implied warranties of merchantability and fitness for a particular purpose or a 
warranty of non-infringement.
-
-
-IV. REQUIREMENTS ON MODIFIED WORKS
-
-All modified versions of documents covered by this license, including 
translations, anthologies, compilations and partial documents, must meet the 
following requirements:
-

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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:53:21
  Author: andyrtr
Revision: 446400

upgpkg: opengl-man-pages 20190725-3: rebuild old package

Modified:
  opengl-man-pages/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:51:26 UTC (rev 446399)
+++ PKGBUILD2022-05-21 20:53:21 UTC (rev 446400)
@@ -3,7 +3,7 @@
 pkgname=opengl-man-pages
 pkgver=20190725
 _commit=8acb9c72a30d36a6f7e89b9b2de0635c50773cdb
-pkgrel=2
+pkgrel=3
 pkgdesc="OpenGL Man Pages - OpenGL 4.x"
 arch=('any')
 url="https://github.com/KhronosGroup/OpenGL-Refpages;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:51:26
  Author: andyrtr
Revision: 446399

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xman/repos/extra-x86_64/PKGBUILD
(from rev 446398, xorg-xman/trunk/PKGBUILD)
Deleted:
  xorg-xman/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:51:19 UTC (rev 446398)
+++ PKGBUILD2022-05-21 20:51:26 UTC (rev 446399)
@@ -1,29 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xman
-pkgver=1.1.5
-pkgrel=2
-pkgdesc="Unix manual page viewer"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxaw' 'libxt')
-makedepends=('xorg-util-macros' 'xorgproto' 'libxmu')
-source=(https://xorg.freedesktop.org/archive/individual/app/xman-${pkgver}.tar.bz2{,.sig})
-sha512sums=('f6b2be424a79f298bf1a81edce4172572195c9efc9454e5b7b7046f344ed08154c77ccaa763ccdf3f1a30b64aa4802783bf813ee637437ccb1fba434fc5d4400'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd xman-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xman-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-xman/repos/extra-x86_64/PKGBUILD (from rev 446398, 
xorg-xman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:51:26 UTC (rev 446399)
@@ -0,0 +1,29 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xman
+pkgver=1.1.5
+pkgrel=3
+pkgdesc="Unix manual page viewer"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxaw' 'libxt')
+makedepends=('xorg-util-macros' 'xorgproto' 'libxmu')
+source=(https://xorg.freedesktop.org/archive/individual/app/xman-${pkgver}.tar.bz2{,.sig})
+sha512sums=('f6b2be424a79f298bf1a81edce4172572195c9efc9454e5b7b7046f344ed08154c77ccaa763ccdf3f1a30b64aa4802783bf813ee637437ccb1fba434fc5d4400'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd xman-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xman-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:51:19
  Author: andyrtr
Revision: 446398

upgpkg: xorg-xman 1.1.5-3: rebuild old package

Modified:
  xorg-xman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:50:45 UTC (rev 446397)
+++ PKGBUILD2022-05-21 20:51:19 UTC (rev 446398)
@@ -3,7 +3,7 @@
 
 pkgname=xorg-xman
 pkgver=1.1.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Unix manual page viewer"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:50:45
  Author: andyrtr
Revision: 446397

archrelease: copy trunk to extra-x86_64

Added:
  xorg-sessreg/repos/extra-x86_64/PKGBUILD
(from rev 446396, xorg-sessreg/trunk/PKGBUILD)
Deleted:
  xorg-sessreg/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:50:40 UTC (rev 446396)
+++ PKGBUILD2022-05-21 20:50:45 UTC (rev 446397)
@@ -1,30 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-sessreg
-pkgver=1.1.2
-pkgrel=2
-pkgdesc="Register X sessions in system utmp/utmpx databases"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-util-macros' 'xorgproto')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/sessreg-${pkgver}.tar.bz2{,.sig})
-sha512sums=('7e3c2bdcadb7133aace463b58d8c6108d315ec95d2a42509073eeddc7f02644092a4b3168bd3b426c041736a016291092e0bf8368acd620dbeff96d53d12f98c'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-validpgpkeys+=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner 
"
-
-build() {
-  cd "${srcdir}/sessreg-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/sessreg-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-sessreg/repos/extra-x86_64/PKGBUILD (from rev 446396, 
xorg-sessreg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:50:45 UTC (rev 446397)
@@ -0,0 +1,30 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-sessreg
+pkgver=1.1.2
+pkgrel=3
+pkgdesc="Register X sessions in system utmp/utmpx databases"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-util-macros' 'xorgproto')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/sessreg-${pkgver}.tar.bz2{,.sig})
+sha512sums=('7e3c2bdcadb7133aace463b58d8c6108d315ec95d2a42509073eeddc7f02644092a4b3168bd3b426c041736a016291092e0bf8368acd620dbeff96d53d12f98c'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+validpgpkeys+=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner 
"
+
+build() {
+  cd "${srcdir}/sessreg-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/sessreg-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:50:40
  Author: andyrtr
Revision: 446396

upgpkg: xorg-sessreg 1.1.2-3: rebuild old package

Modified:
  xorg-sessreg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:50:04 UTC (rev 446395)
+++ PKGBUILD2022-05-21 20:50:40 UTC (rev 446396)
@@ -2,7 +2,7 @@
 
 pkgname=xorg-sessreg
 pkgver=1.1.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Register X sessions in system utmp/utmpx databases"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:50:04
  Author: andyrtr
Revision: 446395

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xmodmap/repos/extra-x86_64/PKGBUILD
(from rev 446394, xorg-xmodmap/trunk/PKGBUILD)
Deleted:
  xorg-xmodmap/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:49:59 UTC (rev 446394)
+++ PKGBUILD2022-05-21 20:50:04 UTC (rev 446395)
@@ -1,28 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xmodmap
-pkgver=1.0.10
-pkgrel=2
-pkgdesc="Utility for modifying keymaps and button mappings"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xmodmap-${pkgver}.tar.bz2{,.sig})
-sha512sums=('324c7dcef843186088f16b3bc47485eb3c9b4331e56ce43b692deb4bb3d4f4f27512480e91a379cceac8383df920dc5e37cd825246b50b6343291cec48134c04'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

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

Copied: xorg-xmodmap/repos/extra-x86_64/PKGBUILD (from rev 446394, 
xorg-xmodmap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:50:04 UTC (rev 446395)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xmodmap
+pkgver=1.0.10
+pkgrel=3
+pkgdesc="Utility for modifying keymaps and button mappings"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xmodmap-${pkgver}.tar.bz2{,.sig})
+sha512sums=('324c7dcef843186088f16b3bc47485eb3c9b4331e56ce43b692deb4bb3d4f4f27512480e91a379cceac8383df920dc5e37cd825246b50b6343291cec48134c04'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

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



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:49:59
  Author: andyrtr
Revision: 446394

upgpkg: xorg-xmodmap 1.0.10-3: rebuild old package

Modified:
  xorg-xmodmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:49:15 UTC (rev 446393)
+++ PKGBUILD2022-05-21 20:49:59 UTC (rev 446394)
@@ -2,7 +2,7 @@
 
 pkgname=xorg-xmodmap
 pkgver=1.0.10
-pkgrel=2
+pkgrel=3
 pkgdesc="Utility for modifying keymaps and button mappings"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;



[arch-commits] Commit in xorg-font-util/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:49:15
  Author: andyrtr
Revision: 446393

archrelease: copy trunk to extra-x86_64

Added:
  xorg-font-util/repos/extra-x86_64/PKGBUILD
(from rev 446392, xorg-font-util/trunk/PKGBUILD)
Deleted:
  xorg-font-util/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:49:09 UTC (rev 446392)
+++ PKGBUILD2022-05-21 20:49:15 UTC (rev 446393)
@@ -1,38 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Jan de Groot 
-
-pkgname=xorg-font-util
-pkgver=1.3.2
-pkgrel=2
-pkgdesc='X.Org font utilities'
-url='https://xorg.freedesktop.org/'
-arch=('x86_64')
-license=('custom')
-makedepends=('xorg-util-macros')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
-source=("${url}/releases/individual/font/font-util-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('7cac529b12ae71185b89c72c1569b9826f52eeaecc1c76010338e7c42c4078ae339f18220b580bbd68fb5dc09df6ecf169a47c32e6104d8ee53bd443fa21d167'
-'SKIP')
-
-replaces=('font-util')
-provides=('font-util')
-conflicts=('font-util')
-groups=('xorg-fonts' 'xorg')
-
-build() {
-   cd "${srcdir}/font-util-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --with-mapdir=/usr/share/fonts/util \
-   --with-fontrootdir=/usr/share/fonts \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/font-util-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: xorg-font-util/repos/extra-x86_64/PKGBUILD (from rev 446392, 
xorg-font-util/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:49:15 UTC (rev 446393)
@@ -0,0 +1,39 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Jan de Groot 
+
+pkgname=xorg-font-util
+pkgver=1.3.2
+pkgrel=3
+pkgdesc='X.Org font utilities'
+url='https://xorg.freedesktop.org/'
+arch=('x86_64')
+license=('custom')
+makedepends=('xorg-util-macros')
+depends=('glibc')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
+source=("${url}/releases/individual/font/font-util-${pkgver}.tar.bz2"{,.sig})
+sha512sums=('7cac529b12ae71185b89c72c1569b9826f52eeaecc1c76010338e7c42c4078ae339f18220b580bbd68fb5dc09df6ecf169a47c32e6104d8ee53bd443fa21d167'
+'SKIP')
+
+replaces=('font-util')
+provides=('font-util')
+conflicts=('font-util')
+groups=('xorg-fonts' 'xorg')
+
+build() {
+   cd "${srcdir}/font-util-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --with-mapdir=/usr/share/fonts/util \
+   --with-fontrootdir=/usr/share/fonts \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/font-util-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



[arch-commits] Commit in xorg-font-util/trunk (PKGBUILD)

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:49:09
  Author: andyrtr
Revision: 446392

upgpkg: xorg-font-util 1.3.2-3: rebuild old package

Modified:
  xorg-font-util/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:46:32 UTC (rev 446391)
+++ PKGBUILD2022-05-21 20:49:09 UTC (rev 446392)
@@ -3,12 +3,13 @@
 
 pkgname=xorg-font-util
 pkgver=1.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc='X.Org font utilities'
 url='https://xorg.freedesktop.org/'
 arch=('x86_64')
 license=('custom')
 makedepends=('xorg-util-macros')
+depends=('glibc')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
 source=("${url}/releases/individual/font/font-util-${pkgver}.tar.bz2"{,.sig})
 
sha512sums=('7cac529b12ae71185b89c72c1569b9826f52eeaecc1c76010338e7c42c4078ae339f18220b580bbd68fb5dc09df6ecf169a47c32e6104d8ee53bd443fa21d167'



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:46:32
  Author: andyrtr
Revision: 446391

archrelease: copy trunk to extra-x86_64

Added:
  libxcomposite/repos/extra-x86_64/PKGBUILD
(from rev 446390, libxcomposite/trunk/PKGBUILD)
Deleted:
  libxcomposite/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:46:25 UTC (rev 446390)
+++ PKGBUILD2022-05-21 20:46:32 UTC (rev 446391)
@@ -1,29 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=libxcomposite
-pkgver=0.4.5
-pkgrel=3
-pkgdesc="X11 Composite extension library"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxfixes')
-makedepends=('xorg-util-macros' 'xorgproto')
-source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('502fd51fd9097bb3ca72174ac5b25b9d3b1ff240d32c4765199df03d89337d94b4ddea49e90b177b370862430089d966ce9c38988337156352cfeae911c2d3d5'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
-
-build() {
-  cd libXcomposite-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd libXcomposite-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxcomposite/repos/extra-x86_64/PKGBUILD (from rev 446390, 
libxcomposite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:46:32 UTC (rev 446391)
@@ -0,0 +1,29 @@
+# Maintainer: Jan de Groot 
+
+pkgname=libxcomposite
+pkgver=0.4.5
+pkgrel=4
+pkgdesc="X11 Composite extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxfixes')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2"{,.sig})
+sha512sums=('502fd51fd9097bb3ca72174ac5b25b9d3b1ff240d32c4765199df03d89337d94b4ddea49e90b177b370862430089d966ce9c38988337156352cfeae911c2d3d5'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd libXcomposite-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXcomposite-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:46:25
  Author: andyrtr
Revision: 446390

upgpkg: libxcomposite 0.4.5-4: rebuild old package

Modified:
  libxcomposite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:45:18 UTC (rev 446389)
+++ PKGBUILD2022-05-21 20:46:25 UTC (rev 446390)
@@ -2,7 +2,7 @@
 
 pkgname=libxcomposite
 pkgver=0.4.5
-pkgrel=3
+pkgrel=4
 pkgdesc="X11 Composite extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:45:18
  Author: andyrtr
Revision: 446389

archrelease: copy trunk to extra-x86_64

Added:
  libice/repos/extra-x86_64/PKGBUILD
(from rev 446388, libice/trunk/PKGBUILD)
Deleted:
  libice/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:45:11 UTC (rev 446388)
+++ PKGBUILD2022-05-21 20:45:18 UTC (rev 446389)
@@ -1,30 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=libice
-pkgver=1.0.10
-pkgrel=3
-pkgdesc="X11 Inter-Client Exchange library"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xtrans>=1.2.5' 'xorg-util-macros' 'xorgproto')
-source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2{,.sig})
-license=('custom')
-sha512sums=('2f1ef2c32c833c71894a08fa7e7ed53f301f6c7bd22485d71c12884d8e8b36b99f362ec886349dcc84d08edc81c8b2cea035320831d64974edeba021b433c468'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
-
-build() {
-  cd libICE-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd libICE-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libice/repos/extra-x86_64/PKGBUILD (from rev 446388, 
libice/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:45:18 UTC (rev 446389)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libice
+pkgver=1.0.10
+pkgrel=4
+pkgdesc="X11 Inter-Client Exchange library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xtrans>=1.2.5' 'xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2{,.sig})
+license=('custom')
+sha512sums=('2f1ef2c32c833c71894a08fa7e7ed53f301f6c7bd22485d71c12884d8e8b36b99f362ec886349dcc84d08edc81c8b2cea035320831d64974edeba021b433c468'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd libICE-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libICE-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:45:11
  Author: andyrtr
Revision: 446388

archrelease: copy trunk to extra-x86_64

Added:
  xorg-x11perf/repos/extra-x86_64/PKGBUILD
(from rev 446386, xorg-x11perf/trunk/PKGBUILD)
Deleted:
  xorg-x11perf/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:45:11 UTC (rev 446387)
+++ PKGBUILD2022-05-21 20:45:11 UTC (rev 446388)
@@ -1,29 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-x11perf
-pkgver=1.6.1
-pkgrel=2
-pkgdesc="Simple X server performance benchmarker"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11' 'libxmu' 'libxrender' 'libxft' 'libxext')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/x11perf-${pkgver}.tar.bz2{,.sig})
-sha512sums=('b386151bfe3d7c04ab9953ae1882f3c5b627d6d1afb9a8cfe87c58236a3fc11bbadb2226b9aa61df84b4fce625a1c9e3d146a124ac17e8d7d605b35d9c0b'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd x11perf-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd x11perf-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-x11perf/repos/extra-x86_64/PKGBUILD (from rev 446386, 
xorg-x11perf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:45:11 UTC (rev 446388)
@@ -0,0 +1,29 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-x11perf
+pkgver=1.6.1
+pkgrel=3
+pkgdesc="Simple X server performance benchmarker"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11' 'libxmu' 'libxrender' 'libxft' 'libxext')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/x11perf-${pkgver}.tar.bz2{,.sig})
+sha512sums=('b386151bfe3d7c04ab9953ae1882f3c5b627d6d1afb9a8cfe87c58236a3fc11bbadb2226b9aa61df84b4fce625a1c9e3d146a124ac17e8d7d605b35d9c0b'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd x11perf-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd x11perf-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:45:11
  Author: andyrtr
Revision: 446387

upgpkg: libice 1.0.10-4: rebuild old package

Modified:
  libice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:45:05 UTC (rev 446386)
+++ PKGBUILD2022-05-21 20:45:11 UTC (rev 446387)
@@ -4,7 +4,7 @@
 
 pkgname=libice
 pkgver=1.0.10
-pkgrel=3
+pkgrel=4
 pkgdesc="X11 Inter-Client Exchange library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:45:05
  Author: andyrtr
Revision: 446386

upgpkg: xorg-x11perf 1.6.1-3: rebuild old package

Modified:
  xorg-x11perf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:43:42 UTC (rev 446385)
+++ PKGBUILD2022-05-21 20:45:05 UTC (rev 446386)
@@ -2,7 +2,7 @@
 
 pkgname=xorg-x11perf
 pkgver=1.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple X server performance benchmarker"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:43:42
  Author: andyrtr
Revision: 446385

archrelease: copy trunk to extra-x86_64

Added:
  libxext/repos/extra-x86_64/PKGBUILD
(from rev 446384, libxext/trunk/PKGBUILD)
Deleted:
  libxext/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:43:36 UTC (rev 446384)
+++ PKGBUILD2022-05-21 20:43:42 UTC (rev 446385)
@@ -1,31 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=libxext
-pkgver=1.3.4
-pkgrel=3
-pkgdesc="X11 miscellaneous extensions library"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11')
-makedepends=('xorg-util-macros' 'xorgproto')
-source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2{,.sig})
-sha512sums=('09146397d95f80c04701be1cc0a9c580ab5a085842ac31d17dfb6d4c2e42b4253b89cba695e5e520be359883a76ffd02f42484c9e2ba2c33a5a40c29df4a'
-'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer 
(Who-T) "
-validpgpkeys+=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd libXext-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd libXext-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxext/repos/extra-x86_64/PKGBUILD (from rev 446384, 
libxext/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:43:42 UTC (rev 446385)
@@ -0,0 +1,31 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libxext
+pkgver=1.3.4
+pkgrel=4
+pkgdesc="X11 miscellaneous extensions library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2{,.sig})
+sha512sums=('09146397d95f80c04701be1cc0a9c580ab5a085842ac31d17dfb6d4c2e42b4253b89cba695e5e520be359883a76ffd02f42484c9e2ba2c33a5a40c29df4a'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer 
(Who-T) "
+validpgpkeys+=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd libXext-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXext-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:43:36
  Author: andyrtr
Revision: 446384

upgpkg: libxext 1.3.4-4: rebuild old package

Modified:
  libxext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:42:56 UTC (rev 446383)
+++ PKGBUILD2022-05-21 20:43:36 UTC (rev 446384)
@@ -3,7 +3,7 @@
 
 pkgname=libxext
 pkgver=1.3.4
-pkgrel=3
+pkgrel=4
 pkgdesc="X11 miscellaneous extensions library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:42:56
  Author: andyrtr
Revision: 446383

archrelease: copy trunk to extra-x86_64

Added:
  xcompmgr/repos/extra-x86_64/PKGBUILD
(from rev 446382, xcompmgr/trunk/PKGBUILD)
Deleted:
  xcompmgr/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:42:50 UTC (rev 446382)
+++ PKGBUILD2022-05-21 20:42:56 UTC (rev 446383)
@@ -1,28 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: Leslie P. Polzer 
-
-pkgname=xcompmgr
-pkgver=1.1.8
-pkgrel=2
-pkgdesc="Composite Window-effects manager for X.org"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxcomposite' 'libxdamage' 'libxrender' 'libxext')
-source=(https://xorg.freedesktop.org/releases/individual/app/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha512sums=('ccf29426ffb0797a53653d1ce152de5eee0cec284811fed4b8e634ea0d948180531e4619d96f47e4f9594432c57322624fe0fdaee2c9200efac427fc0904953d'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xcompmgr/repos/extra-x86_64/PKGBUILD (from rev 446382, 
xcompmgr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:42:56 UTC (rev 446383)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+# Contributor: Leslie P. Polzer 
+
+pkgname=xcompmgr
+pkgver=1.1.8
+pkgrel=3
+pkgdesc="Composite Window-effects manager for X.org"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxcomposite' 'libxdamage' 'libxrender' 'libxext')
+source=(https://xorg.freedesktop.org/releases/individual/app/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha512sums=('ccf29426ffb0797a53653d1ce152de5eee0cec284811fed4b8e634ea0d948180531e4619d96f47e4f9594432c57322624fe0fdaee2c9200efac427fc0904953d'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

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



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:42:50
  Author: andyrtr
Revision: 446382

upgpkg: xcompmgr 1.1.8-3: rebuild old package

Modified:
  xcompmgr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:42:07 UTC (rev 446381)
+++ PKGBUILD2022-05-21 20:42:50 UTC (rev 446382)
@@ -3,7 +3,7 @@
 
 pkgname=xcompmgr
 pkgver=1.1.8
-pkgrel=2
+pkgrel=3
 pkgdesc="Composite Window-effects manager for X.org"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:42:07
  Author: andyrtr
Revision: 446381

archrelease: copy trunk to extra-any

Added:
  xcursor-themes/repos/extra-any/PKGBUILD
(from rev 446380, xcursor-themes/trunk/PKGBUILD)
Deleted:
  xcursor-themes/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:42:00 UTC (rev 446380)
+++ PKGBUILD2022-05-21 20:42:07 UTC (rev 446381)
@@ -1,27 +0,0 @@
-#Maintainer: Jan de Groot 
-
-pkgname=xcursor-themes
-pkgver=1.0.6
-pkgrel=2
-pkgdesc="X.org Cursor themes"
-arch=(any)
-url="https://xorg.freedesktop.org/;
-license=('MIT')
-makedepends=('pkgconfig' 'xorg-xcursorgen' 'xorg-util-macros')
-source=(${url}/releases/individual/data/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha512sums=('2ad3586a5571a5ddc0001187362b54b839644916164834213af98e58698044aec4392dd6e1e42f1794fda85c8fedf259b09214a9636bd0e71a1629c710f198d3'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xcursor-themes/repos/extra-any/PKGBUILD (from rev 446380, 
xcursor-themes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:42:07 UTC (rev 446381)
@@ -0,0 +1,27 @@
+#Maintainer: Jan de Groot 
+
+pkgname=xcursor-themes
+pkgver=1.0.6
+pkgrel=3
+pkgdesc="X.org Cursor themes"
+arch=(any)
+url="https://xorg.freedesktop.org/;
+license=('MIT')
+makedepends=('pkgconfig' 'xorg-xcursorgen' 'xorg-util-macros')
+source=(${url}/releases/individual/data/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha512sums=('2ad3586a5571a5ddc0001187362b54b839644916164834213af98e58698044aec4392dd6e1e42f1794fda85c8fedf259b09214a9636bd0e71a1629c710f198d3'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:42:00
  Author: andyrtr
Revision: 446380

upgpkg: xcursor-themes 1.0.6-3: rebuild old package

Modified:
  xcursor-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:41:18 UTC (rev 446379)
+++ PKGBUILD2022-05-21 20:42:00 UTC (rev 446380)
@@ -2,7 +2,7 @@
 
 pkgname=xcursor-themes
 pkgver=1.0.6
-pkgrel=2
+pkgrel=3
 pkgdesc="X.org Cursor themes"
 arch=(any)
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:41:18
  Author: andyrtr
Revision: 446379

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xmag/repos/extra-x86_64/PKGBUILD
(from rev 446378, xorg-xmag/trunk/PKGBUILD)
Deleted:
  xorg-xmag/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:41:12 UTC (rev 446378)
+++ PKGBUILD2022-05-21 20:41:18 UTC (rev 446379)
@@ -1,27 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xmag
-pkgver=1.0.6
-pkgrel=3
-pkgdesc="Magnify parts of the screen"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxaw' 'libxmu' 'libxt' 'libx11')
-makedepends=('xorg-util-macros')
-source=(https://xorg.freedesktop.org/archive/individual/app/xmag-${pkgver}.tar.bz2{,.sig})
-sha512sums=('98f3c8e0c58f31cd4f1736ba9c5cd68dba3b2e2de6191988de8ae3e91b1d310803461840189ad56be45ee57c9ca05a2c63544a49b02ce6f79f2ebc14c59613de'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

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

Copied: xorg-xmag/repos/extra-x86_64/PKGBUILD (from rev 446378, 
xorg-xmag/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:41:18 UTC (rev 446379)
@@ -0,0 +1,27 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xmag
+pkgver=1.0.6
+pkgrel=4
+pkgdesc="Magnify parts of the screen"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxaw' 'libxmu' 'libxt' 'libx11')
+makedepends=('xorg-util-macros')
+source=(https://xorg.freedesktop.org/archive/individual/app/xmag-${pkgver}.tar.bz2{,.sig})
+sha512sums=('98f3c8e0c58f31cd4f1736ba9c5cd68dba3b2e2de6191988de8ae3e91b1d310803461840189ad56be45ee57c9ca05a2c63544a49b02ce6f79f2ebc14c59613de'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

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



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:41:12
  Author: andyrtr
Revision: 446378

upgpkg: xorg-xmag 1.0.6-4: rebuild old package

Modified:
  xorg-xmag/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:40:51 UTC (rev 446377)
+++ PKGBUILD2022-05-21 20:41:12 UTC (rev 446378)
@@ -2,7 +2,7 @@
 
 pkgname=xorg-xmag
 pkgver=1.0.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Magnify parts of the screen"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:40:51
  Author: andyrtr
Revision: 446377

archrelease: copy trunk to extra-x86_64

Added:
  libxv/repos/extra-x86_64/PKGBUILD
(from rev 446376, libxv/trunk/PKGBUILD)
Deleted:
  libxv/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:40:45 UTC (rev 446376)
+++ PKGBUILD2022-05-21 20:40:51 UTC (rev 446377)
@@ -1,30 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=libxv
-pkgver=1.0.11
-pkgrel=4
-pkgdesc="X11 Video extension library"
-arch=('x86_64')
-license=('custom')
-url="https://xorg.freedesktop.org/;
-depends=('libxext')
-makedepends=('xorgproto')
-source=(${url}/releases/individual/lib/libXv-${pkgver}.tar.bz2{,.sig})
-sha256sums=('d26c13eac99ac4504c532e8e76a1c8e4bd526471eb8a0a4ff2a88db60cb0b088'
-'SKIP')
-validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

-
-build() {
-  cd "${srcdir}/libXv-${pkgver}"
-  ./configure --prefix=/usr --disable-static 
-  make
-}
-
-package() {
-  cd "${srcdir}/libXv-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxv/repos/extra-x86_64/PKGBUILD (from rev 446376, 
libxv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:40:51 UTC (rev 446377)
@@ -0,0 +1,30 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libxv
+pkgver=1.0.11
+pkgrel=5
+pkgdesc="X11 Video extension library"
+arch=('x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('libxext')
+makedepends=('xorgproto')
+source=(${url}/releases/individual/lib/libXv-${pkgver}.tar.bz2{,.sig})
+sha256sums=('d26c13eac99ac4504c532e8e76a1c8e4bd526471eb8a0a4ff2a88db60cb0b088'
+'SKIP')
+validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+
+build() {
+  cd "${srcdir}/libXv-${pkgver}"
+  ./configure --prefix=/usr --disable-static 
+  make
+}
+
+package() {
+  cd "${srcdir}/libXv-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:40:45
  Author: andyrtr
Revision: 446376

upgpkg: libxv 1.0.11-5: rebuild old package

Modified:
  libxv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:40:14 UTC (rev 446375)
+++ PKGBUILD2022-05-21 20:40:45 UTC (rev 446376)
@@ -3,7 +3,7 @@
 
 pkgname=libxv
 pkgver=1.0.11
-pkgrel=4
+pkgrel=5
 pkgdesc="X11 Video extension library"
 arch=('x86_64')
 license=('custom')



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:40:14
  Author: andyrtr
Revision: 446375

archrelease: copy trunk to extra-x86_64

Added:
  libxtst/repos/extra-x86_64/PKGBUILD
(from rev 446374, libxtst/trunk/PKGBUILD)
Deleted:
  libxtst/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:40:07 UTC (rev 446374)
+++ PKGBUILD2022-05-21 20:40:14 UTC (rev 446375)
@@ -1,30 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgname=libxtst
-pkgver=1.2.3
-pkgrel=4
-pkgdesc="X11 Testing -- Resource extension library"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxext' 'libxi' 'libxfixes')
-makedepends=('xorg-util-macros' 'xorgproto')
-source=(${url}/releases/individual/lib/libXtst-${pkgver}.tar.bz2{,.sig})
-sha256sums=('4655498a1b8e844e3d6f21f3b2c4e2b571effb5fd83199d428a6ba7ea4bf5204'
-'SKIP')
-validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

-
-build() {
-  cd "${srcdir}/libXtst-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXtst-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxtst/repos/extra-x86_64/PKGBUILD (from rev 446374, 
libxtst/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:40:14 UTC (rev 446375)
@@ -0,0 +1,31 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=libxtst
+pkgver=1.2.3
+pkgrel=5
+pkgdesc="X11 Testing -- Resource extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxext' 'libxi' 'libxfixes')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXtst-${pkgver}.tar.bz2{,.sig})
+sha256sums=('4655498a1b8e844e3d6f21f3b2c4e2b571effb5fd83199d428a6ba7ea4bf5204'
+'SKIP')
+validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+
+build() {
+  cd "${srcdir}/libXtst-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "${srcdir}/libXtst-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:40:07
  Author: andyrtr
Revision: 446374

upgpkg: libxtst 1.2.3-5: rebuild old package

Modified:
  libxtst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:39:31 UTC (rev 446373)
+++ PKGBUILD2022-05-21 20:40:07 UTC (rev 446374)
@@ -3,7 +3,7 @@
 
 pkgname=libxtst
 pkgver=1.2.3
-pkgrel=4
+pkgrel=5
 pkgdesc="X11 Testing -- Resource extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
@@ -18,6 +18,7 @@
 build() {
   cd "${srcdir}/libXtst-${pkgver}"
   ./configure --prefix=/usr --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:39:31
  Author: andyrtr
Revision: 446373

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xhost/repos/extra-x86_64/PKGBUILD
(from rev 446372, xorg-xhost/trunk/PKGBUILD)
Deleted:
  xorg-xhost/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:39:25 UTC (rev 446372)
+++ PKGBUILD2022-05-21 20:39:31 UTC (rev 446373)
@@ -1,28 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xhost
-pkgver=1.0.8
-pkgrel=2
-pkgdesc="Server access control program for X"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11' 'libxmu')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xhost-${pkgver}.tar.bz2{,.sig})
-sha512sums=('55581f9bc45a70a73b13fe718ca83c4cb0a6116d26addc0f07659ebeb5bf7d2379e84cab5a1702ae77a298a66f42ae03f41ddc7d5acd61c6f18448e58ad7cb6b'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

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

Copied: xorg-xhost/repos/extra-x86_64/PKGBUILD (from rev 446372, 
xorg-xhost/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:39:31 UTC (rev 446373)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xhost
+pkgver=1.0.8
+pkgrel=3
+pkgdesc="Server access control program for X"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11' 'libxmu')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xhost-${pkgver}.tar.bz2{,.sig})
+sha512sums=('55581f9bc45a70a73b13fe718ca83c4cb0a6116d26addc0f07659ebeb5bf7d2379e84cab5a1702ae77a298a66f42ae03f41ddc7d5acd61c6f18448e58ad7cb6b'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

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



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:39:25
  Author: andyrtr
Revision: 446372

upgpkg: xorg-xhost 1.0.8-3: rebuild old package

Modified:
  xorg-xhost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:38:18 UTC (rev 446371)
+++ PKGBUILD2022-05-21 20:39:25 UTC (rev 446372)
@@ -2,7 +2,7 @@
 
 pkgname=xorg-xhost
 pkgver=1.0.8
-pkgrel=2
+pkgrel=3
 pkgdesc="Server access control program for X"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:38:18
  Author: andyrtr
Revision: 446371

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xcmsdb/repos/extra-x86_64/PKGBUILD
(from rev 446370, xorg-xcmsdb/trunk/PKGBUILD)
Deleted:
  xorg-xcmsdb/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-21 20:38:12 UTC (rev 446370)
+++ PKGBUILD2022-05-21 20:38:18 UTC (rev 446371)
@@ -1,29 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xcmsdb
-pkgver=1.0.5
-pkgrel=3
-pkgdesc="Device Color Characterization utility for X Color Management System"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xcmsdb-${pkgver}.tar.bz2{,.sig})
-sha512sums=('e47bfce87d7531e7809c300e01120c3e8d6001130d9a6c9f6de5bc19651d8712d273a6f54452223bd8c4bff4612b5ecae8db45eddb022da945ed6e14c9c84ae4'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd xcmsdb-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xcmsdb-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-xcmsdb/repos/extra-x86_64/PKGBUILD (from rev 446370, 
xorg-xcmsdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-21 20:38:18 UTC (rev 446371)
@@ -0,0 +1,29 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xcmsdb
+pkgver=1.0.5
+pkgrel=4
+pkgdesc="Device Color Characterization utility for X Color Management System"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xcmsdb-${pkgver}.tar.bz2{,.sig})
+sha512sums=('e47bfce87d7531e7809c300e01120c3e8d6001130d9a6c9f6de5bc19651d8712d273a6f54452223bd8c4bff4612b5ecae8db45eddb022da945ed6e14c9c84ae4'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd xcmsdb-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xcmsdb-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-21 Thread Andreas Radke via arch-commits
Date: Saturday, May 21, 2022 @ 20:38:12
  Author: andyrtr
Revision: 446370

upgpkg: xorg-xcmsdb 1.0.5-4: rebuild old package

Modified:
  xorg-xcmsdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-21 20:37:36 UTC (rev 446369)
+++ PKGBUILD2022-05-21 20:38:12 UTC (rev 446370)
@@ -2,7 +2,7 @@
 
 pkgname=xorg-xcmsdb
 pkgver=1.0.5
-pkgrel=3
+pkgrel=4
 pkgdesc="Device Color Characterization utility for X Color Management System"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;



  1   2   3   4   5   6   >