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

2021-05-09 Thread Christian Hesse via arch-commits
Date: Monday, May 10, 2021 @ 05:59:22
  Author: eworm
Revision: 414896

upgpkg: systemd 248.2-2: revert the resolved change

Modified:
  systemd/trunk/PKGBUILD
  systemd/trunk/systemd.install

-+
 PKGBUILD|2 +-
 systemd.install |6 +-
 2 files changed, 2 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-10 05:57:03 UTC (rev 414895)
+++ PKGBUILD2021-05-10 05:59:22 UTC (rev 414896)
@@ -7,7 +7,7 @@
 _tag='bc3ad898fc7b74e818c80fdb7b14a3b9c6d91475' # git rev-parse v${_tag_name}
 _tag_name=248.2
 pkgver="${_tag_name/-/}"
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'

Modified: systemd.install
===
--- systemd.install 2021-05-10 05:57:03 UTC (rev 414895)
+++ systemd.install 2021-05-10 05:59:22 UTC (rev 414896)
@@ -34,12 +34,8 @@
   # enable some services by default, but don't track them
   systemctl enable \
 getty@tty1.service \
-remote-fs.target \
-systemd-resolved.service
+remote-fs.target
 
-  # ... same for resolv.conf symlink for systemd-resolved
-  ln -sf /run/systemd/resolve/stub-resolv.conf etc/resolv.conf
-
   echo ":: Append 'init=/usr/lib/systemd/systemd' to your kernel command line 
in your"
   echo "   bootloader to replace sysvinit with systemd, or install 
systemd-sysvcompat"
 


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

2021-05-09 Thread Christian Hesse via arch-commits
Date: Monday, May 10, 2021 @ 05:57:03
  Author: eworm
Revision: 414895

archrelease: copy trunk to testing-x86_64

Added:
  putty/repos/testing-x86_64/
  putty/repos/testing-x86_64/PKGBUILD
(from rev 414894, putty/trunk/PKGBUILD)
  putty/repos/testing-x86_64/putty.desktop
(from rev 414894, putty/trunk/putty.desktop)
  putty/repos/testing-x86_64/putty.png
(from rev 414894, putty/trunk/putty.png)
  putty/repos/testing-x86_64/putty.xpm
(from rev 414894, putty/trunk/putty.xpm)

---+
 PKGBUILD  |   40 
 putty.desktop |   10 ++
 2 files changed, 50 insertions(+)

Copied: putty/repos/testing-x86_64/PKGBUILD (from rev 414894, 
putty/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-10 05:57:03 UTC (rev 414895)
@@ -0,0 +1,40 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=putty
+pkgver=0.75
+pkgrel=1
+pkgdesc='A terminal integrated SSH/Telnet client'
+arch=('x86_64')
+url='https://www.chiark.greenend.org.uk/~sgtatham/putty/'
+license=('MIT')
+depends=('gtk3')
+validpgpkeys=('E27394ACA3F9D9049522E0546289A25F4AE8DA82') # PuTTY Releases 

+source=("https://the.earth.li/~sgtatham/putty/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+
"putty-${pkgver}.tar.gz.sig::https://the.earth.li/~sgtatham/putty/${pkgver}/putty-${pkgver}.tar.gz.gpg;
+'putty.desktop'
+'putty.png'
+'putty.xpm')
+sha256sums=('d3173b037eddbe9349abe978101277b4ba9f9959e25dedd44f87e7b85cc8f9f5'
+'SKIP'
+'4a8af81fe8ac702ad298606076088f237b83beed82cc089a32f314888b67cf2c'
+'621abf249dc6c6326faf259565546df84635b3afbe31893145a5056d8b114396'
+'d65139883171ed0119d9778ff4a89e6a8151a5ae97fcf8dc7cafb59df424377f')
+
+build() {
+  cd ${pkgname}-${pkgver}/unix
+
+  ./configure \
+--prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/unix
+
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 ../LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -D -m0644 "${srcdir}"/putty.desktop 
"${pkgdir}"/usr/share/applications/putty.desktop
+  install -D -m0644 "${srcdir}"/putty.png 
"${pkgdir}"/usr/share/pixmaps/putty.png
+  install -D -m0644 "${srcdir}"/putty.xpm 
"${pkgdir}"/usr/share/pixmaps/putty.xpm
+}

Copied: putty/repos/testing-x86_64/putty.desktop (from rev 414894, 
putty/trunk/putty.desktop)
===
--- testing-x86_64/putty.desktop(rev 0)
+++ testing-x86_64/putty.desktop2021-05-10 05:57:03 UTC (rev 414895)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=PuTTY
+GenericName=SSH/Telnet/Serial Client
+Exec=putty %u
+Terminal=false
+Icon=putty
+Type=Application
+Categories=Application;Network;Remote
+Comment=A highly configurable ssh/telnet/serial console program

Copied: putty/repos/testing-x86_64/putty.png (from rev 414894, 
putty/trunk/putty.png)
===
(Binary files differ)

Copied: putty/repos/testing-x86_64/putty.xpm (from rev 414894, 
putty/trunk/putty.xpm)
===
(Binary files differ)


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

2021-05-09 Thread Christian Hesse via arch-commits
Date: Monday, May 10, 2021 @ 05:57:00
  Author: eworm
Revision: 414894

upgpkg: putty 0.75-1: new upstream release

Modified:
  putty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-10 05:54:22 UTC (rev 414893)
+++ PKGBUILD2021-05-10 05:57:00 UTC (rev 414894)
@@ -1,7 +1,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=putty
-pkgver=0.74
+pkgver=0.75
 pkgrel=1
 pkgdesc='A terminal integrated SSH/Telnet client'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 'putty.desktop'
 'putty.png'
 'putty.xpm')
-sha256sums=('ddd5d388e51dd9e6e294005b30037f6ae802239a44c9dc9808c779e6d11b847d'
+sha256sums=('d3173b037eddbe9349abe978101277b4ba9f9959e25dedd44f87e7b85cc8f9f5'
 'SKIP'
 '4a8af81fe8ac702ad298606076088f237b83beed82cc089a32f314888b67cf2c'
 '621abf249dc6c6326faf259565546df84635b3afbe31893145a5056d8b114396'


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

2021-05-09 Thread Christian Hesse via arch-commits
Date: Monday, May 10, 2021 @ 05:54:22
  Author: eworm
Revision: 414893

archrelease: copy trunk to testing-x86_64

Added:
  feh/repos/testing-x86_64/
  feh/repos/testing-x86_64/PKGBUILD
(from rev 414892, feh/trunk/PKGBUILD)

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

Copied: feh/repos/testing-x86_64/PKGBUILD (from rev 414892, feh/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-10 05:54:22 UTC (rev 414893)
@@ -0,0 +1,31 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Andrea Scarpino 
+# Contributor: dorphell 
+# Contributor: Tom Newsom 
+
+pkgname=feh
+pkgver=3.7
+pkgrel=1
+pkgdesc='Fast and light imlib2-based image viewer'
+url='https://feh.finalrewind.org/'
+license=('custom:MIT')
+arch=('x86_64')
+depends=('imlib2' 'curl' 'libxinerama' 'libexif')
+optdepends=('imagemagick: support more file formats'
+'jpegexiforient: set exif rotation tag')
+makedepends=('libxt')
+validpgpkeys=('781BB7071C6BF648EAEB08A1100D5BFB5166E005')
+source=("${url}${pkgname}-${pkgver}.tar.bz2"{,.asc})
+sha256sums=('07cdb1076c3b064cf081f722346600aeefeb568cbca58575777969a6bb41'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make PREFIX=/usr help=1 exif=1 stat64=1 inotify=1
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make PREFIX=/usr DESTDIR="${pkgdir}" install
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2021-05-09 Thread Christian Hesse via arch-commits
Date: Monday, May 10, 2021 @ 05:54:20
  Author: eworm
Revision: 414892

upgpkg: feh 3.7-1: new upstream release

Modified:
  feh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-10 05:36:16 UTC (rev 414891)
+++ PKGBUILD2021-05-10 05:54:20 UTC (rev 414892)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=feh
-pkgver=3.6.3
+pkgver=3.7
 pkgrel=1
 pkgdesc='Fast and light imlib2-based image viewer'
 url='https://feh.finalrewind.org/'
@@ -16,7 +16,7 @@
 makedepends=('libxt')
 validpgpkeys=('781BB7071C6BF648EAEB08A1100D5BFB5166E005')
 source=("${url}${pkgname}-${pkgver}.tar.bz2"{,.asc})
-sha256sums=('437420f37f11614e008d066e2a3bdefcfc78144c8212998b2bacdd5d21ea23b4'
+sha256sums=('07cdb1076c3b064cf081f722346600aeefeb568cbca58575777969a6bb41'
 'SKIP')
 
 build() {


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

2021-05-09 Thread Jan Steffens via arch-commits
Date: Monday, May 10, 2021 @ 01:27:08
  Author: heftig
Revision: 414890

40.0+80+ga08355931-1

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-10 01:23:26 UTC (rev 414889)
+++ PKGBUILD2021-05-10 01:27:08 UTC (rev 414890)
@@ -3,7 +3,7 @@
 # Contributor: Flamelab https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
 sha256sums=('SKIP'


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

2021-05-09 Thread Jan Steffens via arch-commits
Date: Monday, May 10, 2021 @ 01:23:26
  Author: heftig
Revision: 414889

40.0+103+ga49dc7839-1

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 20:58:13 UTC (rev 414888)
+++ PKGBUILD2021-05-10 01:23:26 UTC (rev 414889)
@@ -3,7 +3,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=mutter
-pkgver=40.0+79+g63d969537
+pkgver=40.0+103+ga49dc7839
 pkgrel=1
 pkgdesc="A window manager for GNOME"
 url="https://gitlab.gnome.org/GNOME/mutter;
@@ -18,7 +18,7 @@
 provides=(libmutter-8.so)
 groups=(gnome)
 install=mutter.install
-_commit=63d969537f1dba623c1827cf0070ee6b4dfefee2  # master
+_commit=a49dc78396bda45da43ac111ffdceeca2892800d  # master
 source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 23:26:18
  Author: felixonmars
Revision: 929497

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-persistent-mysql/repos/community-staging-x86_64/
  haskell-persistent-mysql/repos/community-staging-x86_64/PKGBUILD
(from rev 929496, haskell-persistent-mysql/trunk/PKGBUILD)

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

Copied: haskell-persistent-mysql/repos/community-staging-x86_64/PKGBUILD (from 
rev 929496, haskell-persistent-mysql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 23:26:18 UTC (rev 929497)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+
+_hkgname=persistent-mysql
+pkgname=haskell-persistent-mysql
+pkgver=2.12.1.0
+pkgrel=5
+pkgdesc="Backend for the persistent library using MySQL database server."
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-builder' 'haskell-conduit' 
'haskell-monad-logger'
+ 'haskell-mysql' 'haskell-mysql-simple' 'haskell-persistent' 
'haskell-resource-pool'
+ 'haskell-resourcet' 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-fast-logger' 
'haskell-hspec'
+ 'haskell-persistent-qq' 'haskell-persistent-test' 
'haskell-quickcheck-instances')
+#checkdepends=('percona-server' 'percona-server-clients')
+checkdepends=('mariadb')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('8b994faa7b4f8aecb2e731fd048ebe3af382003c94e3d93ffedab5a2b5f3b1a3f65a02822986b7353b2daf7718e1f45f48ef8fef6f3a2ee99443e6199452b02a')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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
+  mkdir -p /tmp/mysql_test
+  # TODO: Try to make percona work?
+  #mysqld --no-defaults --initialize-insecure --datadir=/tmp/mysql_test 
+  #mysqld --no-defaults --datadir=/tmp/mysql_test 
--secure-file-priv=/tmp/mysql_test --socket=/tmp/socket.mysql 
--bind-address=127.0.0.1 --skip-grant-tables &
+  
+  mysql_install_db --datadir=/tmp/mysql_test
+  mysqld --datadir=/tmp/mysql_test --socket=/tmp/socket.mysql 
--skip-grant-tables &
+  MYSQL_PID=$!
+  sleep 5
+  mysql -h 127.0.0.1 -u root -e "create database IF NOT EXISTS test;"
+  mysql -h 127.0.0.1 -u root -e "create database IF NOT EXISTS persistent;"
+
+  # Compatibility issue with mariadb: 
https://github.com/yesodweb/persistent/issues/1158
+  TRAVIS=true runhaskell Setup test --show-details=direct || echo "Tests 
failed"
+
+  kill $MYSQL_PID
+}
+
+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-persistent-mysql/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 23:26:04
  Author: felixonmars
Revision: 929496

upgpkg: haskell-persistent-mysql 2.12.1.0-5: rebuild with mysql-simple 0.4.6

Modified:
  haskell-persistent-mysql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 23:24:32 UTC (rev 929495)
+++ PKGBUILD2021-05-09 23:26:04 UTC (rev 929496)
@@ -3,7 +3,7 @@
 _hkgname=persistent-mysql
 pkgname=haskell-persistent-mysql
 pkgver=2.12.1.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Backend for the persistent library using MySQL database server."
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 23:24:32
  Author: felixonmars
Revision: 929495

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-mysql-simple/repos/community-staging-x86_64/
  haskell-mysql-simple/repos/community-staging-x86_64/PKGBUILD
(from rev 929494, haskell-mysql-simple/trunk/PKGBUILD)

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

Copied: haskell-mysql-simple/repos/community-staging-x86_64/PKGBUILD (from rev 
929494, haskell-mysql-simple/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 23:24:32 UTC (rev 929495)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+
+_hkgname=mysql-simple
+pkgname=haskell-mysql-simple
+pkgver=0.4.6
+pkgrel=1
+pkgdesc="A mid-level MySQL client library"
+url="https://github.com/paul-rouse/mysql-simple;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base16-bytestring' 
'haskell-blaze-builder'
+ 'haskell-blaze-textual' 'haskell-mysql' 'haskell-old-locale' 
'haskell-pcre-light')
+makedepends=('ghc' 'haskell-hspec')
+checkdepends=('mariadb')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('b25117804fe3ec0461044e573e3eda6e3e739fdedaf87aa57bd3718900c15a068c49ef050bc57e6d5acd17a6665c2ed554598eb1309f3fd37d7f2c333782259d')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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
+  mkdir -p /tmp/mysql_test
+  mysql_install_db --datadir=/tmp/mysql_test
+  mysqld --datadir=/tmp/mysql_test --socket=/tmp/socket.mysql 
--skip-grant-tables &
+  MYSQL_PID=$!
+  sleep 5
+  mysql -h 127.0.0.1 -u root -e "create database IF NOT EXISTS test;"
+
+  runhaskell Setup test --show-details=direct
+
+  kill $MYSQL_PID
+}
+
+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-mysql-simple/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 23:24:18
  Author: felixonmars
Revision: 929494

upgpkg: haskell-mysql-simple 0.4.6-1: rebuild with mysql-simple 0.4.6

Modified:
  haskell-mysql-simple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 20:53:10 UTC (rev 929493)
+++ PKGBUILD2021-05-09 23:24:18 UTC (rev 929494)
@@ -2,8 +2,8 @@
 
 _hkgname=mysql-simple
 pkgname=haskell-mysql-simple
-pkgver=0.4.5
-pkgrel=60
+pkgver=0.4.6
+pkgrel=1
 pkgdesc="A mid-level MySQL client library"
 url="https://github.com/paul-rouse/mysql-simple;
 license=("BSD")
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-hspec')
 checkdepends=('mariadb')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha256sums=('b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1')
+sha512sums=('b25117804fe3ec0461044e573e3eda6e3e739fdedaf87aa57bd3718900c15a068c49ef050bc57e6d5acd17a6665c2ed554598eb1309f3fd37d7f2c333782259d')
 
 build() {
   cd $_hkgname-$pkgver


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

2021-05-09 Thread Antonio Rojas via arch-commits
Date: Sunday, May 9, 2021 @ 20:25:09
  Author: arojas
Revision: 414883

archrelease: copy trunk to extra-x86_64

Added:
  texmacs/repos/extra-x86_64/PKGBUILD
(from rev 414882, texmacs/trunk/PKGBUILD)
Deleted:
  texmacs/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 20:24:58 UTC (rev 414882)
+++ PKGBUILD2021-05-09 20:25:09 UTC (rev 414883)
@@ -1,43 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa  # Contributor: 
Christopher Reimer 
-
-pkgname=texmacs
-pkgver=1.99.19
-pkgrel=1
-pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG 
editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, 
Pari, Qcl, R and Yacas) in one."
-arch=('x86_64')
-url="http://www.texmacs.org/;
-license=('GPL')
-depends=('perl' 'guile1.8' 'texlive-core' 'python' 'libxext' 'freetype2' 
'qt5-base')
-# do not remove texlive-core dependency, as it is needed!
-optdepends=('transfig: convert images using fig2ps'
-'gawk: conversion of some files'
-   'ghostscript: rendering ps files'
-'imagemagick: convert images'
-'aspell: spell checking')
-makedepends=('ghostscript' 'cmake')
-source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz)
-options=('!emptydirs')
-sha256sums=('a8167b45c8fcc86a87cb5d8b36c7f17647a9cde45ad653367d113ff2c1c2fcc7')
-
-build() {
-  cd TeXmacs-${pkgver}-src
-  
-  mkdir -p build
-  cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DGUILECONFIG_EXECUTABLE=/usr/bin/guile-config1.8
-  make
-}
-
-package() {
-  cd TeXmacs-${pkgver}-src/build
-  make DESTDIR=${pkgdir} install
-
- # fix fig2ps script
- sed -i 's|${prefix}|/usr|' "${pkgdir}/usr/bin/fig2ps"
- # fix launch script
- sed -e 's|\@CONFIG_LIB_PATH\@|LD_LIBRARY_PATH|g' -i "$pkgdir"/usr/bin/texmacs
-}

Copied: texmacs/repos/extra-x86_64/PKGBUILD (from rev 414882, 
texmacs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 20:25:09 UTC (rev 414883)
@@ -0,0 +1,43 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa  # Contributor: 
Christopher Reimer 
+
+pkgname=texmacs
+pkgver=1.99.20
+pkgrel=1
+pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG 
editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, 
Pari, Qcl, R and Yacas) in one."
+arch=('x86_64')
+url="http://www.texmacs.org/;
+license=('GPL')
+depends=('perl' 'guile1.8' 'texlive-core' 'python' 'libxext' 'freetype2' 
'qt5-base')
+# do not remove texlive-core dependency, as it is needed!
+optdepends=('transfig: convert images using fig2ps'
+'gawk: conversion of some files'
+   'ghostscript: rendering ps files'
+'imagemagick: convert images'
+'aspell: spell checking')
+makedepends=('ghostscript' 'cmake')
+source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz)
+options=('!emptydirs')
+sha256sums=('2afa08167bde8095af3182d1a793c1013b4447cb0545010902f7fea7b119de72')
+
+build() {
+  cd TeXmacs-${pkgver}-src
+  
+  mkdir -p build
+  cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DGUILECONFIG_EXECUTABLE=/usr/bin/guile-config1.8
+  make
+}
+
+package() {
+  cd TeXmacs-${pkgver}-src/build
+  make DESTDIR="${pkgdir}" install
+
+ # fix fig2ps script
+ sed -i 's|${prefix}|/usr|' "${pkgdir}/usr/bin/fig2ps"
+ # fix launch script
+ sed -e 's|\@CONFIG_LIB_PATH\@|LD_LIBRARY_PATH|g' -i "$pkgdir"/usr/bin/texmacs
+}


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

2021-05-09 Thread Antonio Rojas via arch-commits
Date: Sunday, May 9, 2021 @ 20:24:58
  Author: arojas
Revision: 414882

Update to 1.99.20

Modified:
  texmacs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 18:53:10 UTC (rev 414881)
+++ PKGBUILD2021-05-09 20:24:58 UTC (rev 414882)
@@ -2,7 +2,7 @@
 # Contributor: Damir Perisa  # Contributor: 
Christopher Reimer 
 
 pkgname=texmacs
-pkgver=1.99.19
+pkgver=1.99.20
 pkgrel=1
 pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG 
editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, 
Pari, Qcl, R and Yacas) in one."
 arch=('x86_64')
@@ -18,7 +18,7 @@
 makedepends=('ghostscript' 'cmake')
 
source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz)
 options=('!emptydirs')
-sha256sums=('a8167b45c8fcc86a87cb5d8b36c7f17647a9cde45ad653367d113ff2c1c2fcc7')
+sha256sums=('2afa08167bde8095af3182d1a793c1013b4447cb0545010902f7fea7b119de72')
 
 build() {
   cd TeXmacs-${pkgver}-src


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

2021-05-09 Thread Lukas Fleischer via arch-commits
Date: Sunday, May 9, 2021 @ 18:54:53
  Author: lfleischer
Revision: 929484

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   64 -
 mpop.install |   16 +++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 18:54:46 UTC (rev 929483)
+++ PKGBUILD2021-05-09 18:54:53 UTC (rev 929484)
@@ -1,32 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Israel Herraiz 
-# Contributor: Roberto Alsina 
-
-pkgname=mpop
-pkgver=1.4.8
-pkgrel=1
-pkgdesc="A small, fast POP3 client suitable as a fetchmail replacement"
-arch=('x86_64')
-url="https://marlam.de/mpop/;
-license=('GPL3')
-depends=('gnutls' 'libidn')
-install=mpop.install
-source=("https://marlam.de/mpop/releases/mpop-${pkgver}.tar.xz"{,.sig})
-md5sums=('cfff9981921fa9d0a6c46b5750b7b97a'
- 'SKIP')
-validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') # Martin Lambers
-
-build() {
-  cd "$srcdir/mpop-$pkgver"
-
-  ./configure --prefix=/usr --with-ssl=gnutls
-  make
-}
-
-package() {
-  cd "$srcdir/mpop-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 scripts/vim/mpop.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/mpop.vim"
-  install -Dm644 doc/mpoprc.example   
"$pkgdir/usr/share/doc/mpop/mpoprc.example"
-}

Copied: mpop/repos/community-x86_64/PKGBUILD (from rev 929483, 
mpop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 18:54:53 UTC (rev 929484)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Israel Herraiz 
+# Contributor: Roberto Alsina 
+
+pkgname=mpop
+pkgver=1.4.13
+pkgrel=1
+pkgdesc="A small, fast POP3 client suitable as a fetchmail replacement"
+arch=('x86_64')
+url="https://marlam.de/mpop/;
+license=('GPL3')
+depends=('gnutls' 'libidn')
+install=mpop.install
+source=("https://marlam.de/mpop/releases/mpop-${pkgver}.tar.xz"{,.sig})
+md5sums=('e2a3ce561ccef7791c8ae8d16a7fc2c0'
+ 'SKIP')
+validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') # Martin Lambers
+
+build() {
+  cd "$srcdir/mpop-$pkgver"
+
+  ./configure --prefix=/usr --with-ssl=gnutls
+  make
+}
+
+package() {
+  cd "$srcdir/mpop-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 scripts/vim/mpop.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/mpop.vim"
+  install -Dm644 doc/mpoprc.example   
"$pkgdir/usr/share/doc/mpop/mpoprc.example"
+}

Deleted: mpop.install
===
--- mpop.install2021-05-09 18:54:46 UTC (rev 929483)
+++ mpop.install2021-05-09 18:54:53 UTC (rev 929484)
@@ -1,8 +0,0 @@
-post_install() {
-  echo "==> Sample config: /usr/share/doc/mpop/mpoprc.example"
-  echo "==> Copy it to your home folder as ~/.mpoprc."
-}
-
-post_upgrade() {
-  post_install $1
-}

Copied: mpop/repos/community-x86_64/mpop.install (from rev 929483, 
mpop/trunk/mpop.install)
===
--- mpop.install(rev 0)
+++ mpop.install2021-05-09 18:54:53 UTC (rev 929484)
@@ -0,0 +1,8 @@
+post_install() {
+  echo "==> Sample config: /usr/share/doc/mpop/mpoprc.example"
+  echo "==> Copy it to your home folder as ~/.mpoprc."
+}
+
+post_upgrade() {
+  post_install $1
+}


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

2021-05-09 Thread Lukas Fleischer via arch-commits
Date: Sunday, May 9, 2021 @ 18:54:46
  Author: lfleischer
Revision: 929483

upgpkg: mpop 1.4.13-1: upstream update

Modified:
  mpop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 18:15:19 UTC (rev 929482)
+++ PKGBUILD2021-05-09 18:54:46 UTC (rev 929483)
@@ -3,7 +3,7 @@
 # Contributor: Roberto Alsina 
 
 pkgname=mpop
-pkgver=1.4.8
+pkgver=1.4.13
 pkgrel=1
 pkgdesc="A small, fast POP3 client suitable as a fetchmail replacement"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('gnutls' 'libidn')
 install=mpop.install
 source=("https://marlam.de/mpop/releases/mpop-${pkgver}.tar.xz"{,.sig})
-md5sums=('cfff9981921fa9d0a6c46b5750b7b97a'
+md5sums=('e2a3ce561ccef7791c8ae8d16a7fc2c0'
  'SKIP')
 validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') # Martin Lambers
 


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

2021-05-09 Thread Lukas Fleischer via arch-commits
Date: Sunday, May 9, 2021 @ 18:53:10
  Author: lfleischer
Revision: 414881

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 414880, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 414880, gnupg/trunk/install)

--+
 PKGBUILD |   70 +
 install  |   31 +++
 2 files changed, 101 insertions(+)

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 414880, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-09 18:53:10 UTC (rev 414881)
@@ -0,0 +1,70 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Lukas Fleischer 
+# Contributor: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.3.1
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan' 'pinentry'
+ 'bzip2' 'libbz2.so' 'readline' 'libreadline.so' 'gnutls' 'sqlite'
+ 'zlib' 'glibc')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=(
+   'D8692123C4065DEA5E0F3AB5249B39D24F25E3B6' # Werner Koch (dist sig)
+   '031EC2536E580D8EA286A9F22071B08A33BD3F06' # NIIBE Yutaka (GnuPG 
Release Key) 
+   '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28' # Andre Heinecke (Release 
Signing Key)
+   '6DAA6E64A76D2840571B4902528897B826403ADA' # Werner Koch (dist signing 
2020)
+)
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('c498db346a9b9a4b399e514c8f56dfc0a888ce8f327f10376ff984452cd154ec'
+'SKIP')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # improve reproducibility
+   rm doc/gnupg.info*
+
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   install -Dm 644 doc/examples/systemd-user/*.* -t 
"${pkgdir}/usr/lib/systemd/user"
+}
+
+# vim: ts=2 sw=2 noet:

Copied: gnupg/repos/testing-x86_64/install (from rev 414880, 
gnupg/trunk/install)
===
--- testing-x86_64/install  (rev 0)
+++ testing-x86_64/install  2021-05-09 18:53:10 UTC (rev 414881)
@@ -0,0 +1,31 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+pre_remove() {
+   _global_units disable
+}


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

2021-05-09 Thread Lukas Fleischer via arch-commits
Date: Sunday, May 9, 2021 @ 18:53:04
  Author: lfleischer
Revision: 414880

upgpkg: gnupg 2.3.1-1: remove unused patches

Modified:
  gnupg/trunk/PKGBUILD
Deleted:
  gnupg/trunk/avoid-beta-warning.patch
  gnupg/trunk/drop-import-clean.patch

--+
 PKGBUILD |8 +-
 avoid-beta-warning.patch |   56 -
 drop-import-clean.patch  |   54 ---
 3 files changed, 2 insertions(+), 116 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 18:49:27 UTC (rev 414879)
+++ PKGBUILD2021-05-09 18:53:04 UTC (rev 414880)
@@ -26,13 +26,9 @@
'5B80C5754298F0CB55D8ED6ABCEF7E294B092E28' # Andre Heinecke (Release 
Signing Key)
'6DAA6E64A76D2840571B4902528897B826403ADA' # Werner Koch (dist signing 
2020)
 )
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
-'drop-import-clean.patch'
-'avoid-beta-warning.patch')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
 sha256sums=('c498db346a9b9a4b399e514c8f56dfc0a888ce8f327f10376ff984452cd154ec'
-'SKIP'
-'02d375f0045f56f7dd82bacdb5ce559afd52ded8b75f6b2673c39ec666e81abc'
-'22fdf9490fad477f225e731c417867d9e7571ac654944e8be63a1fbaccd5c62d')
+'SKIP')
 
 install=install
 

Deleted: avoid-beta-warning.patch
===
--- avoid-beta-warning.patch2021-05-09 18:49:27 UTC (rev 414879)
+++ avoid-beta-warning.patch2021-05-09 18:53:04 UTC (rev 414880)
@@ -1,56 +0,0 @@
-From 114ab3037de3b0f9b35cf023b64c8a9b76070065 Mon Sep 17 00:00:00 2001
-From: Debian GnuPG Maintainers 
-Date: Tue, 14 Apr 2015 10:02:31 -0400
-Subject: [PATCH 6/7] avoid beta warning
-
-avoid self-describing as a beta
-
-Using autoreconf against the source as distributed in tarball form
-invariably results in a package that thinks it's a "beta" package,
-which produces the "THIS IS A DEVELOPMENT VERSION" warning string.
-
-since we use dh_autoreconf, i need this patch to avoid producing
-builds that announce themselves as DEVELOPMENT VERSIONs.
-
-See discussion at:
-
- http://lists.gnupg.org/pipermail/gnupg-devel/2014-November/029065.html

- autogen.sh | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/autogen.sh b/autogen.sh
-index b23855061..9b86d3ff9 100755
 a/autogen.sh
-+++ b/autogen.sh
-@@ -229,24 +229,24 @@ if [ "$myhost" = "find-version" ]; then
- esac
- 
- beta=no
--if [ -e .git ]; then
-+if false; then
-   ingit=yes
-   tmp=$(git describe --match "${matchstr1}" --long 2>/dev/null)
-   tmp=$(echo "$tmp" | sed s/^"$package"//)
-   if [ -n "$tmp" ]; then
-   tmp=$(echo "$tmp" | sed s/^"$package"//  \
- | awk -F- '$3!=0 && $3 !~ /^beta/ {print"-beta"$3}')
-   else
-   tmp=$(git describe --match "${matchstr2}" --long 2>/dev/null \
- | awk -F- '$4!=0{print"-beta"$4}')
-   fi
-   [ -n "$tmp" ] && beta=yes
-   rev=$(git rev-parse --short HEAD | tr -d '\n\r')
-   rvd=$((0x$(echo ${rev} | dd bs=1 count=4 2>/dev/null)))
- else
-   ingit=no
--  beta=yes
--  tmp="-unknown"
-+  beta=no
-+  tmp=""
-   rev="000"
-   rvd="0"
- fi
--- 
-2.27.0
-

Deleted: drop-import-clean.patch
===
--- drop-import-clean.patch 2021-05-09 18:49:27 UTC (rev 414879)
+++ drop-import-clean.patch 2021-05-09 18:53:04 UTC (rev 414880)
@@ -1,54 +0,0 @@
-From 1690a464b28fa24ce82189a9bf5d7ce9b44804b8 Mon Sep 17 00:00:00 2001
-From: Daniel Kahn Gillmor 
-Date: Mon, 15 Jul 2019 16:24:35 -0400
-Subject: [PATCH 3/7] gpg: drop import-clean from default keyserver import
- options
-
-* g10/gpg.c (main): drop IMPORT_CLEAN from the
-default opt.keyserver_options.import_options
-* doc/gpg.texi: reflect this change in the documentation
-
-Given that SELF_SIGS_ONLY is already set, it's not clear what
-additional benefit IMPORT_CLEAN provides.  Furthermore, IMPORT_CLEAN
-means that receiving an OpenPGP certificate from a keyserver will
-potentially delete data that is otherwise held in the local keyring,
-which is surprising to users who expect retrieval from the keyservers
-to be purely additive.
-
-GnuPG-Bug-Id: 4628
-Signed-off-by: Daniel Kahn Gillmor 

- doc/gpg.texi | 2 +-
- g10/gpg.c| 3 +--
- 2 files changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/doc/gpg.texi b/doc/gpg.texi
-index 4870441d4..551459a74 100644
 a/doc/gpg.texi
-+++ b/doc/gpg.texi
-@@ -1963,7 +1963,7 @@ are available for all keyserver types, some common 
options are:
- 
- @end table
- 
--The default list of options is: "self-sigs-only, import-clean,
-+The default list of options is: "self-sigs-only,
- repair-keys, 

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

2021-05-09 Thread Lukas Fleischer via arch-commits
Date: Sunday, May 9, 2021 @ 18:49:27
  Author: lfleischer
Revision: 414879

upgpkg: gnupg 2.3.1-1: upsteam update

Modified:
  gnupg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 18:42:14 UTC (rev 414878)
+++ PKGBUILD2021-05-09 18:49:27 UTC (rev 414879)
@@ -6,7 +6,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=gnupg
-pkgver=2.2.27
+pkgver=2.3.1
 pkgrel=1
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='https://www.gnupg.org/'
@@ -29,7 +29,7 @@
 
source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
 'drop-import-clean.patch'
 'avoid-beta-warning.patch')
-sha256sums=('34e60009014ea16402069136e0a5f63d9b65f90096244975db5cea74b3d02399'
+sha256sums=('c498db346a9b9a4b399e514c8f56dfc0a888ce8f327f10376ff984452cd154ec'
 'SKIP'
 '02d375f0045f56f7dd82bacdb5ce559afd52ded8b75f6b2673c39ec666e81abc'
 '22fdf9490fad477f225e731c417867d9e7571ac654944e8be63a1fbaccd5c62d')
@@ -38,8 +38,6 @@
 
 prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../avoid-beta-warning.patch
-   patch -p1 -i ../drop-import-clean.patch
 
# improve reproducibility
rm doc/gnupg.info*


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

2021-05-09 Thread Lukas Fleischer via arch-commits
Date: Sunday, May 9, 2021 @ 18:42:14
  Author: lfleischer
Revision: 414878

archrelease: copy trunk to extra-x86_64

Added:
  w3m/repos/extra-x86_64/PKGBUILD
(from rev 414877, w3m/trunk/PKGBUILD)
Deleted:
  w3m/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 18:42:08 UTC (rev 414877)
+++ PKGBUILD2021-05-09 18:42:14 UTC (rev 414878)
@@ -1,41 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: dorphell 
-
-pkgname=w3m
-_gitcommit=aa078ed98ab58e961761c077472c1219dcbc738e
-pkgver=0.5.3.git20200507
-pkgrel=2
-pkgdesc='Text-based Web browser as well as pager'
-url='https://salsa.debian.org/debian/w3m'
-license=('custom')
-arch=('x86_64')
-makedepends=('git' 'imlib2')
-optdepends=('imlib2: for graphics support')
-depends=('openssl' 'gc' 'ncurses' 'gpm')
-source=("git+https://salsa.debian.org/debian/w3m.git#commit=${_gitcommit};)
-sha256sums=('SKIP')
-
-# There's also the maintainer's github repo, usually in sync with Debian's:
-# https://github.com/tats/w3m
-
-build() {
-   cd "${srcdir}/${pkgname}"
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib \
-   --enable-image=x11,fb \
-   --with-imagelib=imlib2 \
-   --with-termlib=ncurses \
-   --disable-w3mmailer \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}"
-   make DESTDIR="${pkgdir}" install
-
-   install -d "${pkgdir}"/usr/share/{doc,licenses}/w3m
-   install -m644 doc/* "${pkgdir}/usr/share/doc/w3m"
-   ln -s ../../doc/w3m/README "${pkgdir}/usr/share/licenses/w3m"
-}

Copied: w3m/repos/extra-x86_64/PKGBUILD (from rev 414877, w3m/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 18:42:14 UTC (rev 414878)
@@ -0,0 +1,42 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: dorphell 
+
+pkgname=w3m
+_gitcommit=6376b90cdf93c367f39d1f74e3689367a4ca141b
+_pkgver=0.5.3.git20210102-6
+pkgver=${_pkgver/-/_}
+pkgrel=1
+pkgdesc='Text-based Web browser as well as pager'
+url='https://salsa.debian.org/debian/w3m'
+license=('custom')
+arch=('x86_64')
+makedepends=('git' 'imlib2')
+optdepends=('imlib2: for graphics support')
+depends=('openssl' 'gc' 'ncurses' 'gpm')
+source=("git+https://salsa.debian.org/debian/w3m.git#commit=${_gitcommit};)
+sha256sums=('SKIP')
+
+# There's also the maintainer's github repo, usually in sync with Debian's:
+# https://github.com/tats/w3m
+
+build() {
+   cd "${srcdir}/${pkgname}"
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --enable-image=x11,fb \
+   --with-imagelib=imlib2 \
+   --with-termlib=ncurses \
+   --disable-w3mmailer \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}"
+   make DESTDIR="${pkgdir}" install
+
+   install -d "${pkgdir}"/usr/share/{doc,licenses}/w3m
+   install -m644 doc/* "${pkgdir}/usr/share/doc/w3m"
+   ln -s ../../doc/w3m/README "${pkgdir}/usr/share/licenses/w3m"
+}


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

2021-05-09 Thread Lukas Fleischer via arch-commits
Date: Sunday, May 9, 2021 @ 18:42:08
  Author: lfleischer
Revision: 414877

upgpkg: w3m 0.5.3.git20210102_6-1: upstream update

Modified:
  w3m/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:39:34 UTC (rev 414876)
+++ PKGBUILD2021-05-09 18:42:08 UTC (rev 414877)
@@ -2,9 +2,10 @@
 # Contributor: dorphell 
 
 pkgname=w3m
-_gitcommit=aa078ed98ab58e961761c077472c1219dcbc738e
-pkgver=0.5.3.git20200507
-pkgrel=2
+_gitcommit=6376b90cdf93c367f39d1f74e3689367a4ca141b
+_pkgver=0.5.3.git20210102-6
+pkgver=${_pkgver/-/_}
+pkgrel=1
 pkgdesc='Text-based Web browser as well as pager'
 url='https://salsa.debian.org/debian/w3m'
 license=('custom')


[arch-commits] Commit in kodi/repos/community-x86_64 (14 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 18:05:10
  Author: idevolder
Revision: 929373

oh great even got into the community-x86_64 folder

Deleted:
  kodi/repos/community-x86_64/kodi-common-19.0-6-x86_64.pkg.tar.zst
  kodi/repos/community-x86_64/kodi-common-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/repos/community-x86_64/kodi-dev-19.0-6-x86_64.pkg.tar.zst
  kodi/repos/community-x86_64/kodi-dev-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/repos/community-x86_64/kodi-eventclients-19.0-6-x86_64.pkg.tar.zst
  kodi/repos/community-x86_64/kodi-eventclients-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/repos/community-x86_64/kodi-gbm-19.0-6-x86_64.pkg.tar.zst
  kodi/repos/community-x86_64/kodi-gbm-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/repos/community-x86_64/kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst
  
kodi/repos/community-x86_64/kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/repos/community-x86_64/kodi-wayland-19.0-6-x86_64.pkg.tar.zst
  kodi/repos/community-x86_64/kodi-wayland-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/repos/community-x86_64/kodi-x11-19.0-6-x86_64.pkg.tar.zst
  kodi/repos/community-x86_64/kodi-x11-19.0-6-x86_64.pkg.tar.zst.sig

+
 0 files changed

Deleted: kodi-common-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-common-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-dev-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-dev-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-eventclients-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-eventclients-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-gbm-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-gbm-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-wayland-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-wayland-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-x11-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-x11-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)


[arch-commits] Commit in kodi/trunk (14 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 18:01:43
  Author: idevolder
Revision: 929372

{U+01F926}oops I did it again

Deleted:
  kodi/trunk/kodi-common-19.0-6-x86_64.pkg.tar.zst
  kodi/trunk/kodi-common-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/trunk/kodi-dev-19.0-6-x86_64.pkg.tar.zst
  kodi/trunk/kodi-dev-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/trunk/kodi-eventclients-19.0-6-x86_64.pkg.tar.zst
  kodi/trunk/kodi-eventclients-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/trunk/kodi-gbm-19.0-6-x86_64.pkg.tar.zst
  kodi/trunk/kodi-gbm-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/trunk/kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst
  kodi/trunk/kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/trunk/kodi-wayland-19.0-6-x86_64.pkg.tar.zst
  kodi/trunk/kodi-wayland-19.0-6-x86_64.pkg.tar.zst.sig
  kodi/trunk/kodi-x11-19.0-6-x86_64.pkg.tar.zst
  kodi/trunk/kodi-x11-19.0-6-x86_64.pkg.tar.zst.sig

+
 0 files changed

Deleted: kodi-common-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-common-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-dev-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-dev-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-eventclients-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-eventclients-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-gbm-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-gbm-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-tools-texturepacker-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-wayland-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-wayland-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)

Deleted: kodi-x11-19.0-6-x86_64.pkg.tar.zst
===
(Binary files differ)

Deleted: kodi-x11-19.0-6-x86_64.pkg.tar.zst.sig
===
(Binary files differ)


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

2021-05-09 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, May 9, 2021 @ 17:42:05
  Author: jlichtblau
Revision: 929371

archrelease: copy trunk to community-x86_64

Added:
  qmmp/repos/community-x86_64/PKGBUILD
(from rev 929370, qmmp/trunk/PKGBUILD)
  qmmp/repos/community-x86_64/qmmp.changelog
(from rev 929370, qmmp/trunk/qmmp.changelog)
Deleted:
  qmmp/repos/community-x86_64/PKGBUILD
  qmmp/repos/community-x86_64/qmmp.changelog

+
 PKGBUILD   |   96 
 qmmp.changelog |  593 +++
 2 files changed, 346 insertions(+), 343 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 17:41:41 UTC (rev 929370)
+++ PKGBUILD2021-05-09 17:42:05 UTC (rev 929371)
@@ -1,48 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=qmmp
-pkgver=1.4.5
-pkgrel=1
-pkgdesc="Qt5 based audio-player"
-arch=('x86_64')
-url="http://qmmp.ylsoftware.com/;
-license=('GPL')
-depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad' 
'libvorbis'
- 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 'qt5-x11extras' 
'qt5-multimedia')
-makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pulseaudio' 'ffmpeg' 
'libcdio-paranoia'
- 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack' 'mpg123'
- 'projectm' 'mesa' 'faad2' 'libgme' 'libsidplayfp' 
'opusfile>=0.12' 'wildmidi' 'qt5-tools')
-optdepends=('flac: native FLAC support'
-'jack: JACK sound output'
-'libmpcdec: Musepack support'
-'pulseaudio: PulseAudio output'
-'libcdio-paranoia: Compact Disc input and control support'
-'libcddb: CDDB server support'
-'libmms: MMS stream protocol support'
-'libmodplug: MOD playing library'
-'libsndfile: sampled sound support'
-'projectm: visual efects'
-'faad2: ADTS AAC support'
-'libgme: support for chiptunes from various platforms'
-'libsidplayfp: C64 music support'
-'opusfile: Opus support'
-'wildmidi: MIDI support'
-'ffmpeg' 'libsamplerate' 'wavpack' 'mpg123')
-changelog=$pkgname.changelog
-source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
-sha512sums=('a7b0028ca999655bcc6ddcc608dc050f830789d196fcec8d809a98aea98d7b364667a2e4caf45e59b02d248293ad8809057466e32d44c8714e52ce47fddbf0b6')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DUSE_HAL:BOOL=FALSE
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: qmmp/repos/community-x86_64/PKGBUILD (from rev 929370, 
qmmp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 17:42:05 UTC (rev 929371)
@@ -0,0 +1,48 @@
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=qmmp
+pkgver=1.4.6
+pkgrel=1
+pkgdesc="Qt5 based audio-player"
+arch=('x86_64')
+url="http://qmmp.ylsoftware.com/;
+license=('GPL')
+depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad' 
'libvorbis'
+ 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 'qt5-x11extras' 
'qt5-multimedia')
+makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pulseaudio' 'ffmpeg' 
'libcdio-paranoia'
+ 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack' 'mpg123'
+ 'projectm' 'mesa' 'faad2' 'libgme' 'libsidplayfp' 
'opusfile>=0.12' 'wildmidi' 'qt5-tools')
+optdepends=('flac: native FLAC support'
+'jack: JACK sound output'
+'libmpcdec: Musepack support'
+'pulseaudio: PulseAudio output'
+'libcdio-paranoia: Compact Disc input and control support'
+'libcddb: CDDB server support'
+'libmms: MMS stream protocol support'
+'libmodplug: MOD playing library'
+'libsndfile: sampled sound support'
+'projectm: visual efects'
+'faad2: ADTS AAC support'
+'libgme: support for chiptunes from various platforms'
+'libsidplayfp: C64 music support'
+'opusfile: Opus support'
+'wildmidi: MIDI support'
+'ffmpeg' 'libsamplerate' 'wavpack' 'mpg123')
+changelog=$pkgname.changelog
+source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
+sha512sums=('dca9d06763be6ded45db14a5e8967e9bd8eebc14e5ec7b077171417e942d61a904ecd1944b8d80deecfb642248663739c3e1784449a10466475deb6e575ea7dc')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DUSE_HAL:BOOL=FALSE
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: qmmp.changelog

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

2021-05-09 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, May 9, 2021 @ 17:41:41
  Author: jlichtblau
Revision: 929370

upgpkg: qmmp 1.4.6-1 - new upstream release

Modified:
  qmmp/trunk/PKGBUILD
  qmmp/trunk/qmmp.changelog

+
 PKGBUILD   |4 ++--
 qmmp.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:58:57 UTC (rev 929369)
+++ PKGBUILD2021-05-09 17:41:41 UTC (rev 929370)
@@ -1,7 +1,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=qmmp
-pkgver=1.4.5
+pkgver=1.4.6
 pkgrel=1
 pkgdesc="Qt5 based audio-player"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 'ffmpeg' 'libsamplerate' 'wavpack' 'mpg123')
 changelog=$pkgname.changelog
 source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
-sha512sums=('a7b0028ca999655bcc6ddcc608dc050f830789d196fcec8d809a98aea98d7b364667a2e4caf45e59b02d248293ad8809057466e32d44c8714e52ce47fddbf0b6')
+sha512sums=('dca9d06763be6ded45db14a5e8967e9bd8eebc14e5ec7b077171417e942d61a904ecd1944b8d80deecfb642248663739c3e1784449a10466475deb6e575ea7dc')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: qmmp.changelog
===
--- qmmp.changelog  2021-05-09 16:58:57 UTC (rev 929369)
+++ qmmp.changelog  2021-05-09 17:41:41 UTC (rev 929370)
@@ -1,3 +1,6 @@
+2021-05-09 Jaroslav Lichtblau 
+   * qmmp 1.4.6-1
+
 2021-05-02 Jaroslav Lichtblau 
* qmmp 1.4.5-1
 


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:58:57
  Author: felixonmars
Revision: 929369

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 929368, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 929368, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 16:58:57 UTC (rev 929369)
@@ -0,0 +1,71 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=7.0.1
+pkgrel=313
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-gitrev' 'haskell-hasql' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-protolude' 'haskell-regex-tdfa' 
'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-middleware-static'
+ 'haskell-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'uusi' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('0e6270ff4762b444b4d3791ceea4bb468bc316c9d2103f9d355e2e6108bb4bb51b302499b68a5cfc4ff14f503bdd95985481f7fb6eb6dbb158f1f5350857cf1b')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/5432/9824/' test/fixtures/dumpfixture.sh
+uusi $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI --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
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createdb postgrest_test
+
+# TODO: user authentication issue?
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test || echo 
"Tests failed"
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${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 postgrest/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:58:42
  Author: felixonmars
Revision: 929368

upgpkg: postgrest 7.0.1-313: rebuild with memory 0.16.0

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:55:27 UTC (rev 929367)
+++ PKGBUILD2021-05-09 16:58:42 UTC (rev 929368)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=7.0.1
-pkgrel=312
+pkgrel=313
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:55:27
  Author: felixonmars
Revision: 929367

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-jose/repos/community-staging-x86_64/PKGBUILD (from rev 929366, 
haskell-jose/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 16:55:27 UTC (rev 929367)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.8.4
+pkgrel=120
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time'
+ 'haskell-safe' 'haskell-aeson' 'haskell-unordered-containers' 
'haskell-network-uri'
+ 'haskell-quickcheck' 'haskell-quickcheck-instances' 'haskell-x509' 
'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4141e8f48b97b0d801fab576c3098b95dc1cc9b7c98815cff6bd62324aa2c6d5a4648734d14a00ef08aa36c523befdc6cb7dfdadb9d92d0dce2b434ef8165882')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+}
+
+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/LICENSE
+}


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:55:12
  Author: felixonmars
Revision: 929366

upgpkg: haskell-jose 0.8.4-120: rebuild with memory 0.16.0

Modified:
  haskell-jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:53:57 UTC (rev 929365)
+++ PKGBUILD2021-05-09 16:55:12 UTC (rev 929366)
@@ -4,7 +4,7 @@
 _hkgname=jose
 pkgname=haskell-jose
 pkgver=0.8.4
-pkgrel=119
+pkgrel=120
 pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
 url="https://github.com/frasertweedale/hs-jose;
 license=("Apache")


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:53:57
  Author: felixonmars
Revision: 929365

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
929364, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 16:53:57 UTC (rev 929365)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.14.0.0
+pkgrel=43
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-random' 
'haskell-regex-tdfa'
+ 'haskell-resourcet' 'haskell-scientific' 'haskell-tagsoup' 
'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-wai' 
'haskell-wai-app-static'
+ 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5f3f7a952b085cf1a59a646c15e42f29c89d4ed0a5a96f55156d19b86340c2361da6c19ff7a70bde98122423e237dc7082bfcc84bc5e96ab9421fdaef84a8cce')
+
+prepare() {
+cd $_hkgname-$pkgver
+uusi -u cryptonite -u memory -u optparse-applicative -u pandoc -u tasty 
$_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 \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 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-hakyll/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:53:43
  Author: felixonmars
Revision: 929364

upgpkg: haskell-hakyll 4.14.0.0-43: rebuild with memory 0.16.0

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:47:32 UTC (rev 929363)
+++ PKGBUILD2021-05-09 16:53:43 UTC (rev 929364)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.14.0.0
-pkgrel=42
+pkgrel=43
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")
@@ -23,7 +23,7 @@
 
 prepare() {
 cd $_hkgname-$pkgver
-uusi -u cryptonite -u optparse-applicative -u pandoc -u tasty 
$_hkgname.cabal
+uusi -u cryptonite -u memory -u optparse-applicative -u pandoc -u tasty 
$_hkgname.cabal
 }
 
 build() {


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:47:32
  Author: felixonmars
Revision: 929363

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 929362, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 929362, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 16:47:32 UTC (rev 929363)
@@ -0,0 +1,64 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.36
+pkgrel=170
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
+ 'haskell-text' 'haskell-async' 'haskell-aeson'
+ 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
+ 'haskell-extensible-exceptions' 'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
+makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('15abb262187448cd71f93e67f04ab40989f541dd02f968924521f99727cd75cb92d650d495fc40ad4bed97fa552185daca7801aa2d5079aa47a39dce9b4ea4f7')
+
+build() {
+  cd xmobar-${pkgver}
+
+  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
+  with_datezone with_mpris with_dbus with_xpm with_threaded
+  with_rtsopts with_weather)
+
+  runhaskell setup configure -O \
+--enable-shared \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--prefix=/usr \
+--dynlibdir=/usr/lib \
+--libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' \
+--flags="${_flags[*]}" \
+--enable-tests
+  runhaskell setup build
+  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 xmobar-${pkgver}
+  runhaskell setup test
+}
+
+package() {
+  cd xmobar-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/xmobar.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/xmobar.sh"
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:47:16
  Author: felixonmars
Revision: 929362

upgpkg: xmobar 0.36-170: rebuild with memory 0.16.0

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:44:21 UTC (rev 929361)
+++ PKGBUILD2021-05-09 16:47:16 UTC (rev 929362)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.36
-pkgrel=169
+pkgrel=170
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:44:21
  Author: felixonmars
Revision: 929361

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 929360, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 929360, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 16:44:21 UTC (rev 929361)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.18.1
+pkgrel=103
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('00abbcf557824c604abbd5e9d27a5ca3d4a89e943888b6eef70dea46b8f786dfc851cb1c8f1531c808f4b71b34d3899258f3b009b0a38a385fc5c393a914da17')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--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
+}
+
+package() {
+cd "${srcdir}/${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 hoogle/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:44:06
  Author: felixonmars
Revision: 929360

upgpkg: hoogle 5.0.18.1-103: rebuild with memory 0.16.0

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:42:21 UTC (rev 929359)
+++ PKGBUILD2021-05-09 16:44:06 UTC (rev 929360)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.18.1
-pkgrel=102
+pkgrel=103
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:42:21
  Author: felixonmars
Revision: 929359

archrelease: copy trunk to community-staging-x86_64

Added:
  darcs/repos/community-staging-x86_64/
  darcs/repos/community-staging-x86_64/PKGBUILD
(from rev 929358, darcs/trunk/PKGBUILD)

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

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 929358, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 16:42:21 UTC (rev 929359)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.16.3
+pkgrel=133
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL")
+arch=('x86_64')
+depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-conduit' 'haskell-constraints' 'haskell-cryptonite' 
'haskell-data-ordlist'
+ 'haskell-fgl' 'haskell-hashable' 'haskell-html' 
'haskell-http-conduit' 'haskell-http-types'
+ 'haskell-knob' 'haskell-memory' 'haskell-mmap' 'haskell-network' 
'haskell-network-uri'
+ 'haskell-old-time' 'haskell-regex-applicative' 
'haskell-regex-compat-tdfa'
+ 'haskell-tar' 'haskell-temporary' 'haskell-unix-compat' 
'haskell-utf8-string'
+ 'haskell-vector' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'uusi' 'haskell-cmdargs' 'haskell-findbin' 'haskell-hunit' 
'haskell-leancheck'
+ 'haskell-quickcheck' 'haskell-test-framework' 
'haskell-test-framework-hunit'
+ 'haskell-test-framework-leancheck' 
'haskell-test-framework-quickcheck2'
+ # Added for their bundled shelly
+ 'haskell-exceptions' 'haskell-monad-control' 
'haskell-system-filepath'
+ 'haskell-system-fileio' 'haskell-transformers-base')
+checkdepends=('bc' 'time')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('267787c5b3111a20158858b42a8b9c2698b80dc40f7d340175e26d74b955643cefffc2f4de9811fa26464eac2e79913150fb3cd73871275725d10a690b9d73c3')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -e 's/^ghc /ghc -dynamic /' \
+-e 's/ ghc / ghc -dynamic /' \
+-i tests/*.sh tests/lib
+uusi $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}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+LD_LIBRARY_PATH="$srcdir"/$pkgname-$pkgver/dist/build 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
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:42:06
  Author: felixonmars
Revision: 929358

upgpkg: darcs 2.16.3-133: rebuild with memory 0.16.0

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:39:03 UTC (rev 929357)
+++ PKGBUILD2021-05-09 16:42:06 UTC (rev 929358)
@@ -3,7 +3,7 @@
 
 pkgname=darcs
 pkgver=2.16.3
-pkgrel=132
+pkgrel=133
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL")


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

2021-05-09 Thread Andreas Radke via arch-commits
Date: Sunday, May 9, 2021 @ 16:39:34
  Author: andyrtr
Revision: 414876

archrelease: copy trunk to extra-x86_64

Added:
  qpdf/repos/extra-x86_64/PKGBUILD
(from rev 414875, qpdf/trunk/PKGBUILD)
Deleted:
  qpdf/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 16:39:22 UTC (rev 414875)
+++ PKGBUILD2021-05-09 16:39:34 UTC (rev 414876)
@@ -1,49 +0,0 @@
-# Maintainer: AndyRTR 
-# Contributor: Miguel Revilla 
-# Contributor: David Sotelo 
-# Contributor: Nuno Araujo 
-
-pkgname=qpdf
-pkgver=10.3.1
-pkgrel=1
-pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
-arch=('x86_64')
-url="https://github.com/qpdf/qpdf;
-license=('custom:Artistic-2.0' 'Apache')
-depends=('libjpeg-turbo' 'zlib' 'gnutls')
-#optdepends=('perl:required for fix-qdf')
-#checkdepends=('perl')
-# 
https://github.com/qpdf/qpdf/releases/download/release-qpdf-10.3.1/qpdf-10.3.1.sha256
-source=(#https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
-
https://github.com/qpdf/qpdf/releases/download/release-${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('d3e6b862098c6357d04390fd30d08c94aa2cf7a3bb2dcabd3846df5eb57367d6'
-'SKIP')
-validpgpkeys=('C2C96B10011FE009E6D1DF828A75D10998012C7E') # "Jay Berkenbilt 
"
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---disable-static \
---enable-crypto-gnutls \
---disable-crypto-openssl \
---disable-implicit-crypto \
---enable-show-failed-test-output
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check # passes all
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}/" install
-
-  install -Dm644 completions/bash/qpdf 
"${pkgdir}/usr/share/bash-completion/completions/qpdf"
-  install -Dm644 completions/zsh/_qpdf 
"${pkgdir}/usr/share/zsh/site-functions/_qpdf"
-
-  mkdir -m755 -p "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -m644 {Artistic-2.0,LICENSE.txt} 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: qpdf/repos/extra-x86_64/PKGBUILD (from rev 414875, qpdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 16:39:34 UTC (rev 414876)
@@ -0,0 +1,49 @@
+# Maintainer: AndyRTR 
+# Contributor: Miguel Revilla 
+# Contributor: David Sotelo 
+# Contributor: Nuno Araujo 
+
+pkgname=qpdf
+pkgver=10.3.2
+pkgrel=1
+pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
+arch=('x86_64')
+url="https://github.com/qpdf/qpdf;
+license=('custom:Artistic-2.0' 'Apache')
+depends=('libjpeg-turbo' 'zlib' 'gnutls')
+#optdepends=('perl:required for fix-qdf')
+#checkdepends=('perl')
+# 
https://github.com/qpdf/qpdf/releases/download/release-qpdf-10.3.2/qpdf-10.3.2.sha256
+source=(#https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+
https://github.com/qpdf/qpdf/releases/download/release-${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha256sums=('062808c40ef8741ec8160ae00168638a712cfa1d4bf673e8e595ab5eba1da947'
+'SKIP')
+validpgpkeys=('C2C96B10011FE009E6D1DF828A75D10998012C7E') # "Jay Berkenbilt 
"
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--disable-static \
+--enable-crypto-gnutls \
+--disable-crypto-openssl \
+--disable-implicit-crypto \
+--enable-show-failed-test-output
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check # passes all
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+
+  install -Dm644 completions/bash/qpdf 
"${pkgdir}/usr/share/bash-completion/completions/qpdf"
+  install -Dm644 completions/zsh/_qpdf 
"${pkgdir}/usr/share/zsh/site-functions/_qpdf"
+
+  mkdir -m755 -p "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 {Artistic-2.0,LICENSE.txt} 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2021-05-09 Thread Andreas Radke via arch-commits
Date: Sunday, May 9, 2021 @ 16:39:22
  Author: andyrtr
Revision: 414875

upgpkg: qpdf 10.3.2-1: upstream update 10.3.2

Modified:
  qpdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:11:37 UTC (rev 414874)
+++ PKGBUILD2021-05-09 16:39:22 UTC (rev 414875)
@@ -4,7 +4,7 @@
 # Contributor: Nuno Araujo 
 
 pkgname=qpdf
-pkgver=10.3.1
+pkgver=10.3.2
 pkgrel=1
 pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
 arch=('x86_64')
@@ -13,10 +13,10 @@
 depends=('libjpeg-turbo' 'zlib' 'gnutls')
 #optdepends=('perl:required for fix-qdf')
 #checkdepends=('perl')
-# 
https://github.com/qpdf/qpdf/releases/download/release-qpdf-10.3.1/qpdf-10.3.1.sha256
+# 
https://github.com/qpdf/qpdf/releases/download/release-qpdf-10.3.2/qpdf-10.3.2.sha256
 
source=(#https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
 
https://github.com/qpdf/qpdf/releases/download/release-${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('d3e6b862098c6357d04390fd30d08c94aa2cf7a3bb2dcabd3846df5eb57367d6'
+sha256sums=('062808c40ef8741ec8160ae00168638a712cfa1d4bf673e8e595ab5eba1da947'
 'SKIP')
 validpgpkeys=('C2C96B10011FE009E6D1DF828A75D10998012C7E') # "Jay Berkenbilt 
"
 


[arch-commits] Commit in i3status-rust/repos/community-testing-x86_64 (2 files)

2021-05-09 Thread Frederik Schwan via arch-commits
Date: Sunday, May 9, 2021 @ 16:39:03
  Author: freswa
Revision: 929357

archrelease: copy trunk to community-testing-x86_64

Added:
  i3status-rust/repos/community-testing-x86_64/PKGBUILD
(from rev 929356, i3status-rust/trunk/PKGBUILD)
Deleted:
  i3status-rust/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 16:39:00 UTC (rev 929356)
+++ PKGBUILD2021-05-09 16:39:03 UTC (rev 929357)
@@ -1,52 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Daniel M. Capella 
-# Contributor: Josip Ponjavic 
-
-pkgname=i3status-rust
-pkgver=0.20.0
-pkgrel=1
-pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
-arch=('x86_64')
-url='https://github.com/greshake/i3status-rust'
-license=('GPL3')
-depends=('libpulse')
-makedepends=('rust')
-optdepends=('alsa-utils: for the volume block'
-'bluez: for the bluetooth block'
-'curl: for the weather block'
-'fakeroot: for the pacman block to show pending updates'
-'ibus: for the ibus block'
-'iw: display wifi signal strength in net block'
-'kdeconnect: for the kdeconnect block'
-'lm_sensors: for the temperature block'
-'networkmanager: for the networkmanager block'
-'powerline-fonts: for all themes using the Powerline arrow char'
-'pulseaudio: for the volume block'
-'speedtest-cli: for the speedtest block'
-'ttf-font-awesome: for the awesome icons'
-'upower: for the battery block')
-source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('f822f145b155845c2b14e638bc12206cd118b6740b1faae4a951c057cf8b34b6da5c02271a614a5f8e54482999a1378587ed7f8784b31e3d4b669d4013d2d1af')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
-  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
-
-  for icon in files/icons/*.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/icons "${icon}"
-  done
-
-  for theme in files/themes/*.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/themes "${theme}"
-  done
-
-  for example in example/*.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
-  done
-}

Copied: i3status-rust/repos/community-testing-x86_64/PKGBUILD (from rev 929356, 
i3status-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 16:39:03 UTC (rev 929357)
@@ -0,0 +1,52 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Daniel M. Capella 
+# Contributor: Josip Ponjavic 
+
+pkgname=i3status-rust
+pkgver=0.20.0
+pkgrel=2
+pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
+arch=('x86_64')
+url='https://github.com/greshake/i3status-rust'
+license=('GPL3')
+depends=('libpulse')
+makedepends=('rust')
+optdepends=('alsa-utils: for the volume block'
+'bluez: for the bluetooth block'
+'curl: for the weather block'
+'fakeroot: for the pacman block to show pending updates'
+'ibus: for the ibus block'
+'iw: display wifi signal strength in net block'
+'kdeconnect: for the kdeconnect block'
+'lm_sensors: for the temperature block'
+'networkmanager: for the networkmanager block'
+'powerline-fonts: for all themes using the Powerline arrow char'
+'pulseaudio: for the volume block'
+'speedtest-cli: for the speedtest block'
+'ttf-font-awesome: for the awesome icons'
+'upower: for the battery block')
+source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('f822f145b155845c2b14e638bc12206cd118b6740b1faae4a951c057cf8b34b6da5c02271a614a5f8e54482999a1378587ed7f8784b31e3d4b669d4013d2d1af')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked --features 'pulseaudio maildir'
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
+  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
+
+  for icon in files/icons/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/icons "${icon}"
+  done
+
+  for theme in files/themes/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/themes "${theme}"
+  done
+
+  for example in example/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
+  done
+}


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

2021-05-09 Thread Frederik Schwan via arch-commits
Date: Sunday, May 9, 2021 @ 16:39:00
  Author: freswa
Revision: 929356

enable maildir support

Modified:
  i3status-rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 16:06:24 UTC (rev 929355)
+++ PKGBUILD2021-05-09 16:39:00 UTC (rev 929356)
@@ -4,7 +4,7 @@
 
 pkgname=i3status-rust
 pkgver=0.20.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
 arch=('x86_64')
 url='https://github.com/greshake/i3status-rust'
@@ -30,7 +30,7 @@
 
 build() {
   cd ${pkgname}-${pkgver}
-  cargo build --release --locked
+  cargo build --release --locked --features 'pulseaudio maildir'
 }
 
 package() {


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

2021-05-09 Thread Anatol Pomozov via arch-commits
Date: Sunday, May 9, 2021 @ 16:11:37
  Author: anatolik
Revision: 414874

archrelease: copy trunk to testing-x86_64

Added:
  booster/repos/testing-x86_64/
  booster/repos/testing-x86_64/PKGBUILD
(from rev 414873, booster/trunk/PKGBUILD)

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

Copied: booster/repos/testing-x86_64/PKGBUILD (from rev 414873, 
booster/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-09 16:11:37 UTC (rev 414874)
@@ -0,0 +1,60 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=booster
+pkgver=0.5
+pkgrel=1
+pkgdesc='Fast and secure initramfs generator'
+arch=(x86_64)
+url='https://github.com/anatol/booster'
+license=(MIT)
+depends=(bash)
+makedepends=(go ruby-ronn-ng)
+#checkdepends=(qemu-headless linux tang)
+optdepends=('busybox: to enable emergency shell at the boot time')
+backup=(etc/booster.yaml)
+provides=(initramfs)
+source=(booster-$pkgver.zip::https://github.com/anatol/booster/archive/$pkgver.zip)
+sha512sums=('63c85ff3cce7072283ef906e3ff4f81a9702b5787addaf9de888cd13aaa2b6e5c040f2014689ffa6523cf29a587ed0c312584743573c0e0e59d3dff2f8b6db13')
+
+build() {
+  cd booster-$pkgver
+
+  cd generator
+  CGO_CPPFLAGS="${CPPFLAGS}" CGO_CFLAGS="${CFLAGS}" CGO_CXXFLAGS="${CXXFLAGS}" 
CGO_LDFLAGS="${LDFLAGS}" \
+go build -trimpath \
+  -buildmode=pie \
+  -mod=readonly \
+  -modcacherw \
+  -ldflags "-linkmode external -extldflags \"${LDFLAGS}\""
+
+  cd ../init
+  CGO_ENABLED=0 go build -trimpath -mod=readonly -modcacherw
+
+  cd ..
+  ronn docs/manpage.md
+}
+
+check() {
+  cd booster-$pkgver
+
+  # (cd init; go test)
+  # (cd generator; go test)
+
+  # arch chroot does not allow access to KVM
+  # TEST_DISABLE_KVM=1 go test -v # disable integration tests for now as it 
require a lot of time and space to build 10G images
+}
+
+package() {
+  cd booster-$pkgver
+  mkdir "$pkgdir/etc/"
+  touch "$pkgdir/etc/booster.yaml"
+  install -Dp -m755 generator/booster "$pkgdir/usr/bin/booster"
+  install -Dp -m644 docs/manpage.1 "$pkgdir/usr/share/man/man1/booster.1"
+  install -Dp -m755 init/init "$pkgdir/usr/lib/booster/init"
+  install -Dp -m755 packaging/arch/regenerate_images 
"$pkgdir/usr/lib/booster/regenerate_images"
+
+  install -Dp -m644 packaging/arch/90-booster-install.hook 
"$pkgdir/usr/share/libalpm/hooks/90-booster-install.hook"
+  install -Dp -m755 packaging/arch/booster-install 
"$pkgdir/usr/share/libalpm/scripts/booster-install"
+  install -Dp -m644 packaging/arch/60-booster-remove.hook 
"$pkgdir/usr/share/libalpm/hooks/60-booster-remove.hook"
+  install -Dp -m755 packaging/arch/booster-remove 
"$pkgdir/usr/share/libalpm/scripts/booster-remove"
+}


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

2021-05-09 Thread Anatol Pomozov via arch-commits
Date: Sunday, May 9, 2021 @ 16:11:20
  Author: anatolik
Revision: 414873

upgpkg: booster 0.5-1

Add support for LVM and MdRaird root devices

Modified:
  booster/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:04:38 UTC (rev 414872)
+++ PKGBUILD2021-05-09 16:11:20 UTC (rev 414873)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=booster
-pkgver=0.4
+pkgver=0.5
 pkgrel=1
 pkgdesc='Fast and secure initramfs generator'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 backup=(etc/booster.yaml)
 provides=(initramfs)
 
source=(booster-$pkgver.zip::https://github.com/anatol/booster/archive/$pkgver.zip)
-sha512sums=('4835dfa9da8e2f8d61b443f9642c975e71a86cf7d6750d51dff5c233ee941f314409b2d56a3bae3e13327ea715c6da60bf5dcde2e784c6dfe101e768b1304780')
+sha512sums=('63c85ff3cce7072283ef906e3ff4f81a9702b5787addaf9de888cd13aaa2b6e5c040f2014689ffa6523cf29a587ed0c312584743573c0e0e59d3dff2f8b6db13')
 
 build() {
   cd booster-$pkgver
@@ -52,6 +52,9 @@
   install -Dp -m644 docs/manpage.1 "$pkgdir/usr/share/man/man1/booster.1"
   install -Dp -m755 init/init "$pkgdir/usr/lib/booster/init"
   install -Dp -m755 packaging/arch/regenerate_images 
"$pkgdir/usr/lib/booster/regenerate_images"
-  install -Dp -m644 packaging/arch/90-booster.hook 
"$pkgdir/usr/share/libalpm/hooks/90-booster.hook"
+
+  install -Dp -m644 packaging/arch/90-booster-install.hook 
"$pkgdir/usr/share/libalpm/hooks/90-booster-install.hook"
   install -Dp -m755 packaging/arch/booster-install 
"$pkgdir/usr/share/libalpm/scripts/booster-install"
+  install -Dp -m644 packaging/arch/60-booster-remove.hook 
"$pkgdir/usr/share/libalpm/hooks/60-booster-remove.hook"
+  install -Dp -m755 packaging/arch/booster-remove 
"$pkgdir/usr/share/libalpm/scripts/booster-remove"
 }


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:06:24
  Author: felixonmars
Revision: 929355

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 929354, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/optparse-applicative-0.16.patch
(from rev 929354, stack/trunk/optparse-applicative-0.16.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 929354, stack/trunk/stack.install)

-+
 PKGBUILD|   81 ++
 optparse-applicative-0.16.patch |   25 +++
 stack.install   |4 +
 3 files changed, 110 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 929354, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 16:06:24 UTC (rev 929355)
@@ -0,0 +1,81 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.5.1
+pkgrel=201
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'uusi' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+optparse-applicative-0.16.patch)
+sha512sums=('SKIP'
+
'3ed61162edd869d5634e7e8485d784b9a192c97626da817635e6c756ca651454b5b806085aea6d7f8fd54041ae06e1613d9547958a85b777d2dfc35b02c0fbea')
+
+prepare() {
+  cd $pkgname
+  uusi -d semigroups -d persistent-template $pkgname.cabal
+  sed -i '1i{-# LANGUAGE DataKinds #-}' src/Stack/Storage/User.hs 
src/Stack/Storage/Project.hs
+  patch -p1 -i ../optparse-applicative-0.16.patch
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --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
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test --show-details=direct
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  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
+  

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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 16:06:01
  Author: felixonmars
Revision: 929354

upgpkg: stack 2.5.1-201: rebuild with memory 0.16.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:59:41 UTC (rev 929353)
+++ PKGBUILD2021-05-09 16:06:01 UTC (rev 929354)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.5.1
-pkgrel=200
+pkgrel=201
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:59:41
  Author: felixonmars
Revision: 929353

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pantry/repos/community-staging-x86_64/PKGBUILD (from rev 
929352, haskell-pantry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:59:41 UTC (rev 929353)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=pantry
+pkgname=haskell-pantry
+pkgver=0.5.1.5
+pkgrel=22
+pkgdesc="Content addressable Haskell package management"
+url="https://github.com/commercialhaskell/pantry;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-digest' 'haskell-filelock' 
'haskell-generic-deriving'
+ 'haskell-hackage-security' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mono-traversable' 'haskell-network-uri' 'haskell-path' 
'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 'haskell-primitive' 
'haskell-resourcet'
+ 'haskell-rio' 'haskell-rio-orphans' 'haskell-rio-prettyprint' 
'haskell-tar-conduit'
+ 'haskell-text-metrics' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 
'haskell-quickcheck'
+ 'haskell-raw-strings-qq')
+checkdepends=('git' 'mercurial')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('1be5d91e08f43bf7ea7013cac2650235b822d4d34a46a13ca8586e074baaeb41528c80dfaaeec82f0e5a884ab828b578b4065a1288ca6895fc18853fa7e8b7c9')
+
+prepare() {
+cd $_hkgname-$pkgver
+gen-setup
+uusi -d persistent-template $_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 --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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-pantry/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:59:19
  Author: felixonmars
Revision: 929352

upgpkg: haskell-pantry 0.5.1.5-22: rebuild with memory 0.16.0

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:55:20 UTC (rev 929351)
+++ PKGBUILD2021-05-09 15:59:19 UTC (rev 929352)
@@ -3,7 +3,7 @@
 _hkgname=pantry
 pkgname=haskell-pantry
 pkgver=0.5.1.5
-pkgrel=21
+pkgrel=22
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry;
 license=('BSD')


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:55:20
  Author: felixonmars
Revision: 929351

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-casa-client/repos/community-staging-x86_64/
  haskell-casa-client/repos/community-staging-x86_64/PKGBUILD
(from rev 929350, haskell-casa-client/trunk/PKGBUILD)

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

Copied: haskell-casa-client/repos/community-staging-x86_64/PKGBUILD (from rev 
929350, haskell-casa-client/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:55:20 UTC (rev 929351)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=casa-client
+pkgname=haskell-casa-client
+pkgver=0.0.1
+pkgrel=268
+pkgdesc="Content Addressable Storage Archive client"
+url="https://github.com/fpco/casa;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-casa-types' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-memory'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-th-lift' 
'haskell-unliftio-core'
+ 'haskell-unordered-containers')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2df03a0b1c2e01f2d24728e96fe446a25b630f5495c4e9995bcbde1ee9da530df1c6b40dde954cfaf6de2af6036fa6cfda7d9957b22106316557cc57d64114fa')
+
+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 --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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-casa-client/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:55:03
  Author: felixonmars
Revision: 929350

upgpkg: haskell-casa-client 0.0.1-268: rebuild with memory 0.16.0

Modified:
  haskell-casa-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:54:47 UTC (rev 929349)
+++ PKGBUILD2021-05-09 15:55:03 UTC (rev 929350)
@@ -3,7 +3,7 @@
 _hkgname=casa-client
 pkgname=haskell-casa-client
 pkgver=0.0.1
-pkgrel=267
+pkgrel=268
 pkgdesc="Content Addressable Storage Archive client"
 url="https://github.com/fpco/casa;
 license=('MIT')


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

2021-05-09 Thread Frederik Schwan via arch-commits
Date: Sunday, May 9, 2021 @ 15:54:45
  Author: freswa
Revision: 929348

upgpkg: i3status-rust 0.20.0-1

Modified:
  i3status-rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:54:07 UTC (rev 929347)
+++ PKGBUILD2021-05-09 15:54:45 UTC (rev 929348)
@@ -3,7 +3,7 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=i3status-rust
-pkgver=0.14.7
+pkgver=0.20.0
 pkgrel=1
 pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
 arch=('x86_64')
@@ -26,7 +26,7 @@
 'ttf-font-awesome: for the awesome icons'
 'upower: for the battery block')
 
source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('ebe8ab9c9d9e67e00beb97a21076711feffa8e7b764e19c13c2e94ecc12270282304c699f5b0cab4118ec4fcdfc0592100c308c90051c734d62912f8eea7326c')
+b2sums=('f822f145b155845c2b14e638bc12206cd118b6740b1faae4a951c057cf8b34b6da5c02271a614a5f8e54482999a1378587ed7f8784b31e3d4b669d4013d2d1af')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -38,7 +38,15 @@
   install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
   install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
 
-  for example in example_config.toml example_icon.toml example_theme.toml; do
+  for icon in files/icons/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/icons "${icon}"
+  done
+
+  for theme in files/themes/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/themes "${theme}"
+  done
+
+  for example in example/*.toml; do
 install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
   done
 }


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

2021-05-09 Thread Frederik Schwan via arch-commits
Date: Sunday, May 9, 2021 @ 15:54:47
  Author: freswa
Revision: 929349

archrelease: copy trunk to community-testing-x86_64

Added:
  i3status-rust/repos/community-testing-x86_64/
  i3status-rust/repos/community-testing-x86_64/PKGBUILD
(from rev 929348, i3status-rust/trunk/PKGBUILD)

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

Copied: i3status-rust/repos/community-testing-x86_64/PKGBUILD (from rev 929348, 
i3status-rust/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-09 15:54:47 UTC (rev 929349)
@@ -0,0 +1,52 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Daniel M. Capella 
+# Contributor: Josip Ponjavic 
+
+pkgname=i3status-rust
+pkgver=0.20.0
+pkgrel=1
+pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
+arch=('x86_64')
+url='https://github.com/greshake/i3status-rust'
+license=('GPL3')
+depends=('libpulse')
+makedepends=('rust')
+optdepends=('alsa-utils: for the volume block'
+'bluez: for the bluetooth block'
+'curl: for the weather block'
+'fakeroot: for the pacman block to show pending updates'
+'ibus: for the ibus block'
+'iw: display wifi signal strength in net block'
+'kdeconnect: for the kdeconnect block'
+'lm_sensors: for the temperature block'
+'networkmanager: for the networkmanager block'
+'powerline-fonts: for all themes using the Powerline arrow char'
+'pulseaudio: for the volume block'
+'speedtest-cli: for the speedtest block'
+'ttf-font-awesome: for the awesome icons'
+'upower: for the battery block')
+source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('f822f145b155845c2b14e638bc12206cd118b6740b1faae4a951c057cf8b34b6da5c02271a614a5f8e54482999a1378587ed7f8784b31e3d4b669d4013d2d1af')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
+  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
+
+  for icon in files/icons/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/icons "${icon}"
+  done
+
+  for theme in files/themes/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/themes "${theme}"
+  done
+
+  for example in example/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
+  done
+}


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:54:07
  Author: felixonmars
Revision: 929347

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: taskell/repos/community-staging-x86_64/PKGBUILD (from rev 929346, 
taskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:54:07 UTC (rev 929347)
@@ -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=('89eb3c87e8f74c9719e87fb2303fd66bd0133ba0414f109282b29511b8b5e7efc51f8a263be769892012ac46857a4945e73bb544f4e75c55ef0d72ed05845878')
+
+build() {
+  cd $pkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--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)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:53:52
  Author: felixonmars
Revision: 929346

upgpkg: taskell 1.11.0-11: rebuild with memory 0.16.0

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:52:21 UTC (rev 929345)
+++ PKGBUILD2021-05-09 15:53:52 UTC (rev 929346)
@@ -2,7 +2,7 @@
 
 pkgname=taskell
 pkgver=1.11.0
-pkgrel=10
+pkgrel=11
 pkgdesc='A command-line kanban board/task manager'
 license=(BSD)
 arch=(x86_64)


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:52:21
  Author: felixonmars
Revision: 929345

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 929344, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
929344, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:52:21 UTC (rev 929345)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.10.3
+pkgrel=8
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('82b490db8424d6e340c4c19b9760e07c78a7906540dada160afd8f3de43f6767f04968753b0c218f0c53c8ddf4ff0ed33f458a770100edd8ab6c7582016662a2')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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
+}
+
+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-yesod-auth/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:52:06
  Author: felixonmars
Revision: 929344

upgpkg: haskell-yesod-auth 1.6.10.3-8: rebuild with memory 0.16.0

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:50:13 UTC (rev 929343)
+++ PKGBUILD2021-05-09 15:52:06 UTC (rev 929344)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.10.3
-pkgrel=7
+pkgrel=8
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:50:13
  Author: felixonmars
Revision: 929343

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
929342, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:50:13 UTC (rev 929343)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.5
+pkgrel=331
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-html-conduit' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-network-uri' 'haskell-resourcet'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('12962fcf71c732a7e709e7069d46691917b9ee9f2af6aab5556b76a4556b6ffc39e52082a4fcdbe501c2cbc7cc496b1164b6a9f2c3883597fcdd0a8298d4ac1a')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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
+}
+
+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-authenticate/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:49:56
  Author: felixonmars
Revision: 929342

upgpkg: haskell-authenticate 1.3.5-331: rebuild with memory 0.16.0

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:49:02 UTC (rev 929341)
+++ PKGBUILD2021-05-09 15:49:56 UTC (rev 929342)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.5
-pkgrel=330
+pkgrel=331
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate;
 license=("MIT")


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:49:02
  Author: felixonmars
Revision: 929341

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:48:47
  Author: felixonmars
Revision: 929340

upgpkg: git-annex 8.20210428-8: rebuild with memory 0.16.0

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:45:12 UTC (rev 929339)
+++ PKGBUILD2021-05-09 15:48:47 UTC (rev 929340)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=8.20210428
-pkgrel=7
+pkgrel=8
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:45:12
  Author: idevolder
Revision: 929339

archrelease: copy trunk to community-x86_64

Added:
  projectm/repos/community-x86_64/PKGBUILD
(from rev 929338, projectm/trunk/PKGBUILD)
Deleted:
  projectm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:45:02 UTC (rev 929338)
+++ PKGBUILD2021-05-09 15:45:12 UTC (rev 929339)
@@ -1,56 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Alexander F Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Alexander Baldeck 
-# Contributor: Denis A. Altoe Falqueto 
-
-pkgbase=projectm
-pkgname=('projectm' 'projectm-sdl' 'projectm-pulseaudio')
-pkgver=3.1.12
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/projectM-visualizer/projectm'
-license=('LGPL')
-makedepends=('mesa-libgl' 'glm' 'qt5-base' 'ftgl' 'glew' 'sdl2' 'libpulse')
-source=("https://github.com/projectM-visualizer/$pkgbase/releases/download/v$pkgver/projectM-$pkgver.tar.gz;)
-sha256sums=('b6b99dde5c8f0822ae362606a0429628ee478f4ec943a156723841b742954707')
-
-build() {
-cd "projectM-$pkgver"
-./configure --prefix=/usr --enable-gles --enable-sdl --enable-threading 
--enable-qt
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # Fix overlinking
-make
-}
-
-package_projectm() {
-pkgdesc='Music visualizer which uses 3D accelerated iterative image based 
rendering'
-depends=('libgl' 'glm' 'ftgl' 'glew')
-
-
-cd "$srcdir/projectM-$pkgver"
-make DESTDIR="$pkgdir" install-data-am
-cd "$srcdir/projectM-$pkgver/src"
-make DESTDIR="$pkgdir" install-am
-cd "$srcdir/projectM-$pkgver/src/libprojectM"
-make DESTDIR="$pkgdir" install
-cd "$srcdir/projectM-$pkgver/src/NativePresets"
-make DESTDIR="$pkgdir" install
-
-find "$pkgdir" -iname "\.*" -delete
-}
-
-package_projectm-sdl() {
-pkgdesc='Music visualizer which uses 3D accelerated iterative image based 
rendering (sdl)'
-depends=('projectm' 'sdl2')
-
-cd "$srcdir/projectM-$pkgver/src/projectM-sdl"
-make DESTDIR="$pkgdir" install
-}
-
-package_projectm-pulseaudio() {
-pkgdesc='Music visualizer which uses 3D accelerated iterative image based 
rendering (pulseaudio)'
-depends=('projectm' 'qt5-base' 'libpulse')
-
-cd "$srcdir/projectM-$pkgver/src/projectM-pulseaudio"
-make DESTDIR="$pkgdir" install
-}

Copied: projectm/repos/community-x86_64/PKGBUILD (from rev 929338, 
projectm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:45:12 UTC (rev 929339)
@@ -0,0 +1,57 @@
+# Maintainer: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Giancarlo Razzolini 
+# Contributor: Alexander F Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Alexander Baldeck 
+# Contributor: Denis A. Altoe Falqueto 
+
+pkgbase=projectm
+pkgname=('projectm' 'projectm-sdl' 'projectm-pulseaudio')
+pkgver=3.1.12
+pkgrel=2
+arch=('x86_64')
+url='https://github.com/projectM-visualizer/projectm'
+license=('LGPL')
+makedepends=('mesa-libgl' 'glm' 'qt5-base' 'ftgl' 'glew' 'sdl2' 'libpulse')
+source=("https://github.com/projectM-visualizer/$pkgbase/releases/download/v$pkgver/projectM-$pkgver.tar.gz;)
+sha256sums=('b6b99dde5c8f0822ae362606a0429628ee478f4ec943a156723841b742954707')
+
+build() {
+cd "projectM-$pkgver"
+./configure --prefix=/usr --enable-gles --enable-sdl --enable-threading 
--enable-qt
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # Fix overlinking
+make
+}
+
+package_projectm() {
+pkgdesc='Music visualizer which uses 3D accelerated iterative image based 
rendering'
+depends=('libgl' 'glm' 'ftgl' 'glew')
+
+
+cd "$srcdir/projectM-$pkgver"
+make DESTDIR="$pkgdir" install-data-am
+cd "$srcdir/projectM-$pkgver/src"
+make DESTDIR="$pkgdir" install-am
+cd "$srcdir/projectM-$pkgver/src/libprojectM"
+make DESTDIR="$pkgdir" install
+cd "$srcdir/projectM-$pkgver/src/NativePresets"
+make DESTDIR="$pkgdir" install
+
+find "$pkgdir" -iname "\.*" -delete
+}
+
+package_projectm-sdl() {
+pkgdesc='Music visualizer which uses 3D accelerated iterative image based 
rendering (sdl)'
+depends=('projectm' 'sdl2')
+
+cd "$srcdir/projectM-$pkgver/src/projectM-sdl"
+make DESTDIR="$pkgdir" install
+}
+
+package_projectm-pulseaudio() {
+pkgdesc='Music visualizer which uses 3D accelerated iterative image based 
rendering (pulseaudio)'
+depends=('projectm' 'qt5-base' 'libpulse')
+
+cd "$srcdir/projectM-$pkgver/src/projectM-pulseaudio"
+make DESTDIR="$pkgdir" install
+}


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

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:45:02
  Author: idevolder
Revision: 929338

upgpkg: projectm 3.1.12-2

Modified:
  projectm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:44:04 UTC (rev 929337)
+++ PKGBUILD2021-05-09 15:45:02 UTC (rev 929338)
@@ -1,4 +1,5 @@
-# Maintainer: Giancarlo Razzolini 
+# Maintainer: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Giancarlo Razzolini 
 # Contributor: Alexander F Rødseth 
 # Contributor: Lukas Fleischer 
 # Contributor: Alexander Baldeck 
@@ -7,7 +8,7 @@
 pkgbase=projectm
 pkgname=('projectm' 'projectm-sdl' 'projectm-pulseaudio')
 pkgver=3.1.12
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://github.com/projectM-visualizer/projectm'
 license=('LGPL')


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:44:04
  Author: felixonmars
Revision: 929337

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 929336, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:44:04 UTC (rev 929337)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.22
+pkgrel=263
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-http-conduit'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-lifted-base' 
'haskell-memory'
+ 'haskell-monad-control' 'haskell-network' 'haskell-network-bsd' 
'haskell-old-locale'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-scientific' 
'haskell-tagged'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-vector' 
'haskell-xml-conduit')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-errors' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e7ff376c47a7ca7a65c8f10f19e591d4a4b4d2cfa333b4727f88f0b170d7acb0aff402617f2d617c522fe5d16ce92b249a23f1fb0a8bfe5bbefaef2931b786bd')
+
+prepare() {
+cd $_hkgname-$pkgver
+uusi -u attoparsec -u base16-bytestring -u base64-bytestring -u 
http-client $_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 --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+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 || echo "Requires AWS credentials to test"
+}
+
+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-aws/trunk (PKGBUILD)

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:43:49
  Author: felixonmars
Revision: 929336

upgpkg: haskell-aws 0.22-263: rebuild with memory 0.16.0

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:42:24 UTC (rev 929335)
+++ PKGBUILD2021-05-09 15:43:49 UTC (rev 929336)
@@ -4,7 +4,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.22
-pkgrel=262
+pkgrel=263
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("BSD")


[arch-commits] Commit in kodi-addon-game-libretro-yabause/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:42:24
  Author: idevolder
Revision: 929335

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-yabause/repos/community-x86_64/PKGBUILD
(from rev 929334, kodi-addon-game-libretro-yabause/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-yabause/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:42:20 UTC (rev 929334)
+++ PKGBUILD2021-05-09 15:42:24 UTC (rev 929335)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-yabause
-pkgver=0.9.15.14
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.yabause'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-yabause')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.yabause/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('de3f164f84419ad6859e76087327e56b36e1e57bf06491ead9c7adac64783a2bbba5bb555fc5fa567ec0eb503d48cc6ebb00b74a29bc960c0d70c3f3f0f8fca5')
-
-build() {
-cd "game.libretro.yabause-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-yabause')
-cd "game.libretro.yabause-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-yabause/repos/community-x86_64/PKGBUILD (from 
rev 929334, kodi-addon-game-libretro-yabause/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:42:24 UTC (rev 929335)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-yabause
+pkgver=0.9.15.14
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.yabause'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-yabause')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.yabause/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('de3f164f84419ad6859e76087327e56b36e1e57bf06491ead9c7adac64783a2bbba5bb555fc5fa567ec0eb503d48cc6ebb00b74a29bc960c0d70c3f3f0f8fca5')
+
+build() {
+cd "game.libretro.yabause-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-yabause')
+cd "game.libretro.yabause-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-yabause/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:42:20
  Author: idevolder
Revision: 929334

upgpkg: kodi-addon-game-libretro-yabause 0.9.15.14-2

Modified:
  kodi-addon-game-libretro-yabause/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:42:09 UTC (rev 929333)
+++ PKGBUILD2021-05-09 15:42:20 UTC (rev 929334)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-yabause
 pkgver=0.9.15.14
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.yabause'


[arch-commits] Commit in kodi-addon-game-libretro-snes9x/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:42:09
  Author: idevolder
Revision: 929333

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-snes9x/repos/community-x86_64/PKGBUILD
(from rev 929332, kodi-addon-game-libretro-snes9x/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-snes9x/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:42:05 UTC (rev 929332)
+++ PKGBUILD2021-05-09 15:42:09 UTC (rev 929333)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-snes9x
-pkgver=1.60.0.17
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.snes9x'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-snes9x')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.snes9x/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('afee625f729d790c3ba0ad8baa8f7b46e0573a6d7ac9ac14311b181d4eb020457ff51a391618c48e9ae7354493858f13729bf8219e6527acdc7f3ac1da57303c')
-
-build() {
-cd "game.libretro.snes9x-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-snes9x')
-cd "game.libretro.snes9x-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-snes9x/repos/community-x86_64/PKGBUILD (from 
rev 929332, kodi-addon-game-libretro-snes9x/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:42:09 UTC (rev 929333)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-snes9x
+pkgver=1.60.0.17
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.snes9x'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-snes9x')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.snes9x/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('afee625f729d790c3ba0ad8baa8f7b46e0573a6d7ac9ac14311b181d4eb020457ff51a391618c48e9ae7354493858f13729bf8219e6527acdc7f3ac1da57303c')
+
+build() {
+cd "game.libretro.snes9x-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-snes9x')
+cd "game.libretro.snes9x-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-snes9x/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:42:05
  Author: idevolder
Revision: 929332

upgpkg: kodi-addon-game-libretro-snes9x 1.60.0.17-2

Modified:
  kodi-addon-game-libretro-snes9x/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:41:46 UTC (rev 929331)
+++ PKGBUILD2021-05-09 15:42:05 UTC (rev 929332)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-snes9x
 pkgver=1.60.0.17
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.snes9x'


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:46
  Author: felixonmars
Revision: 929331

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-download/repos/community-staging-x86_64/
  haskell-http-download/repos/community-staging-x86_64/PKGBUILD
(from rev 929329, haskell-http-download/trunk/PKGBUILD)

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

Copied: haskell-http-download/repos/community-staging-x86_64/PKGBUILD (from rev 
929329, haskell-http-download/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:41:46 UTC (rev 929331)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-download
+pkgname=haskell-http-download
+pkgver=0.2.0.0
+pkgrel=275
+pkgdesc="Verified downloads with retries"
+url="https://github.com/commercialhaskell/http-download;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base64-bytestring' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit'
+ 'haskell-http-client' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-path' 'haskell-path-io' 'haskell-retry' 'haskell-rio' 
'haskell-rio-prettyprint')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-discover')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b31caa48c1ea2a01f1301ca63b2e0c135cd0d3d392b92518c7d70d89fd83da7fd95cffa3cb374900a45fb2da8d17f748de0de72fb4beb8ad11e203676f9864ae')
+
+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 --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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 kodi-addon-game-libretro-scummvm/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:45
  Author: idevolder
Revision: 929330

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-scummvm/repos/community-x86_64/PKGBUILD
(from rev 929329, kodi-addon-game-libretro-scummvm/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-scummvm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:41:40 UTC (rev 929329)
+++ PKGBUILD2021-05-09 15:41:45 UTC (rev 929330)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-scummvm
-pkgver=2.1.1.12
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.scummvm'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-scummvm')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.scummvm/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('8aa6d632378ae2699933f13c1c4d9a3bcf4c2f2d10978d69461b43dc27f4823d0dac2802cd78c7d7949403f21713de6e6ee16ee60fa925a979ce2845a7352b55')
-
-build() {
-cd "game.libretro.scummvm-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-scummvm')
-cd "game.libretro.scummvm-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-scummvm/repos/community-x86_64/PKGBUILD (from 
rev 929329, kodi-addon-game-libretro-scummvm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:41:45 UTC (rev 929330)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-scummvm
+pkgver=2.1.1.12
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.scummvm'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-scummvm')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.scummvm/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('8aa6d632378ae2699933f13c1c4d9a3bcf4c2f2d10978d69461b43dc27f4823d0dac2802cd78c7d7949403f21713de6e6ee16ee60fa925a979ce2845a7352b55')
+
+build() {
+cd "game.libretro.scummvm-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-scummvm')
+cd "game.libretro.scummvm-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-scummvm/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:40
  Author: idevolder
Revision: 929329

upgpkg: kodi-addon-game-libretro-scummvm 2.1.1.12-2

Modified:
  kodi-addon-game-libretro-scummvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:41:31 UTC (rev 929328)
+++ PKGBUILD2021-05-09 15:41:40 UTC (rev 929329)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-scummvm
 pkgver=2.1.1.12
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.scummvm'


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:31
  Author: felixonmars
Revision: 929328

upgpkg: haskell-http-download 0.2.0.0-275: rebuild with memory 0.16.0

Modified:
  haskell-http-download/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:41:30 UTC (rev 929327)
+++ PKGBUILD2021-05-09 15:41:31 UTC (rev 929328)
@@ -3,7 +3,7 @@
 _hkgname=http-download
 pkgname=haskell-http-download
 pkgver=0.2.0.0
-pkgrel=274
+pkgrel=275
 pkgdesc="Verified downloads with retries"
 url="https://github.com/commercialhaskell/http-download;
 license=('MIT')


[arch-commits] Commit in kodi-addon-game-libretro-parallel-n64/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:30
  Author: idevolder
Revision: 929327

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-parallel-n64/repos/community-x86_64/PKGBUILD
(from rev 929326, kodi-addon-game-libretro-parallel-n64/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-parallel-n64/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:41:25 UTC (rev 929326)
+++ PKGBUILD2021-05-09 15:41:30 UTC (rev 929327)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-parallel-n64
-pkgver=2.0.0.13
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.parallel_n64'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 
'libretro-parallel-n64')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.parallel_n64/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('5dbd939979c567b9756301e39c151655f296ef52513febde69ae9a0a74c0534ae0cf80938195da506606ab1eabfcec802c99c9747aefc2eaceddd3641577ae87')
-
-build() {
-cd "game.libretro.parallel_n64-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-parallel-n64')
-cd "game.libretro.parallel_n64-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-parallel-n64/repos/community-x86_64/PKGBUILD 
(from rev 929326, kodi-addon-game-libretro-parallel-n64/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:41:30 UTC (rev 929327)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-parallel-n64
+pkgver=2.0.0.13
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.parallel_n64'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 
'libretro-parallel-n64')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.parallel_n64/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('5dbd939979c567b9756301e39c151655f296ef52513febde69ae9a0a74c0534ae0cf80938195da506606ab1eabfcec802c99c9747aefc2eaceddd3641577ae87')
+
+build() {
+cd "game.libretro.parallel_n64-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-parallel-n64')
+cd "game.libretro.parallel_n64-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-parallel-n64/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:25
  Author: idevolder
Revision: 929326

upgpkg: kodi-addon-game-libretro-parallel-n64 2.0.0.13-2

Modified:
  kodi-addon-game-libretro-parallel-n64/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:41:15 UTC (rev 929325)
+++ PKGBUILD2021-05-09 15:41:25 UTC (rev 929326)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-parallel-n64
 pkgver=2.0.0.13
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.parallel_n64'


[arch-commits] Commit in kodi-addon-game-libretro-nestopia/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:15
  Author: idevolder
Revision: 929325

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-nestopia/repos/community-x86_64/PKGBUILD
(from rev 929324, kodi-addon-game-libretro-nestopia/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-nestopia/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:41:10 UTC (rev 929324)
+++ PKGBUILD2021-05-09 15:41:15 UTC (rev 929325)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-nestopia
-pkgver=1.51.0.14
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.nestopia'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-nestopia')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.nestopia/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('13e8695597427c9549242eaaadacf5ae4f1f86a7170e1df2763863ce8d7886adae5604c6dc3d6d3507a5ecabae8dfa37d2b8554da80043f5578dd74c5679135a')
-
-build() {
-cd "game.libretro.nestopia-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-nestopia')
-cd "game.libretro.nestopia-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-nestopia/repos/community-x86_64/PKGBUILD (from 
rev 929324, kodi-addon-game-libretro-nestopia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:41:15 UTC (rev 929325)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-nestopia
+pkgver=1.51.0.14
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.nestopia'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-nestopia')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.nestopia/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('13e8695597427c9549242eaaadacf5ae4f1f86a7170e1df2763863ce8d7886adae5604c6dc3d6d3507a5ecabae8dfa37d2b8554da80043f5578dd74c5679135a')
+
+build() {
+cd "game.libretro.nestopia-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-nestopia')
+cd "game.libretro.nestopia-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-nestopia/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:41:10
  Author: idevolder
Revision: 929324

upgpkg: kodi-addon-game-libretro-nestopia 1.51.0.14-2

Modified:
  kodi-addon-game-libretro-nestopia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:58 UTC (rev 929323)
+++ PKGBUILD2021-05-09 15:41:10 UTC (rev 929324)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-nestopia
 pkgver=1.51.0.14
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.nestopia'


[arch-commits] Commit in kodi-addon-game-libretro-mupen64plus-nx/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:58
  Author: idevolder
Revision: 929323

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-mupen64plus-nx/repos/community-x86_64/PKGBUILD
(from rev 929322, kodi-addon-game-libretro-mupen64plus-nx/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-mupen64plus-nx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:54 UTC (rev 929322)
+++ PKGBUILD2021-05-09 15:40:58 UTC (rev 929323)
@@ -1,35 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-mupen64plus-nx
-epoch=1
-pkgver=2.1.0.11
-_codename=Matrix
-pkgrel=1
-pkgdesc="Nintendo 64 mupen64plus-next for kodi"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.mupen64plus'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 
'libretro-mupen64plus-next')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.mupen64plus/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('2c1d2a846a0a0dd61b94d3f528b006fd106ce2cfe1be0d0a56ff8ff32ff623a6834035ef61abf0f0d519d16f8fce61d4ad7361878e23f40ba97659bf77764165')
-
-build() {
-cd "game.libretro.mupen64plus-nx-$pkgver-$_codename"
-sed -e 's/mupen64plus_libretro/mupen64plus_next_libretro/g' \
--i CMakeLists.txt
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-mupen64plus-next')
-cd "game.libretro.mupen64plus-nx-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-mupen64plus-nx/repos/community-x86_64/PKGBUILD 
(from rev 929322, kodi-addon-game-libretro-mupen64plus-nx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:40:58 UTC (rev 929323)
@@ -0,0 +1,35 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-mupen64plus-nx
+epoch=1
+pkgver=2.1.0.11
+_codename=Matrix
+pkgrel=2
+pkgdesc="Nintendo 64 mupen64plus-next for kodi"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.mupen64plus'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 
'libretro-mupen64plus-next')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.mupen64plus/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('2c1d2a846a0a0dd61b94d3f528b006fd106ce2cfe1be0d0a56ff8ff32ff623a6834035ef61abf0f0d519d16f8fce61d4ad7361878e23f40ba97659bf77764165')
+
+build() {
+cd "game.libretro.mupen64plus-nx-$pkgver-$_codename"
+sed -e 's/mupen64plus_libretro/mupen64plus_next_libretro/g' \
+-i CMakeLists.txt
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-mupen64plus-next')
+cd "game.libretro.mupen64plus-nx-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-mupen64plus-nx/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:54
  Author: idevolder
Revision: 929322

upgpkg: kodi-addon-game-libretro-mupen64plus-nx 1:2.1.0.11-2

Modified:
  kodi-addon-game-libretro-mupen64plus-nx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:40 UTC (rev 929321)
+++ PKGBUILD2021-05-09 15:40:54 UTC (rev 929322)
@@ -4,7 +4,7 @@
 epoch=1
 pkgver=2.1.0.11
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Nintendo 64 mupen64plus-next for kodi"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.mupen64plus'


[arch-commits] Commit in kodi-addon-game-libretro-mgba/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:40
  Author: idevolder
Revision: 929321

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-mgba/repos/community-x86_64/PKGBUILD
(from rev 929320, kodi-addon-game-libretro-mgba/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-mgba/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:35 UTC (rev 929320)
+++ PKGBUILD2021-05-09 15:40:40 UTC (rev 929321)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-mgba
-pkgver=0.8.4.19
-_codename=Matrix
-pkgrel=2
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.mgba'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-mgba')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.mgba/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('380e7737af4eea765e843424345ccd2efce2e93bc21a207e2f865037323819f2a9935984c10b5ee21d04599ae9b7e97fc54a1574c528a5b4b2998fd79578edca')
-
-build() {
-cd "game.libretro.mgba-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-mgba')
-cd "game.libretro.mgba-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-mgba/repos/community-x86_64/PKGBUILD (from rev 
929320, kodi-addon-game-libretro-mgba/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:40:40 UTC (rev 929321)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-mgba
+pkgver=0.8.4.19
+_codename=Matrix
+pkgrel=3
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.mgba'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-mgba')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.mgba/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('380e7737af4eea765e843424345ccd2efce2e93bc21a207e2f865037323819f2a9935984c10b5ee21d04599ae9b7e97fc54a1574c528a5b4b2998fd79578edca')
+
+build() {
+cd "game.libretro.mgba-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-mgba')
+cd "game.libretro.mgba-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-mgba/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:35
  Author: idevolder
Revision: 929320

upgpkg: kodi-addon-game-libretro-mgba 0.8.4.19-3

Modified:
  kodi-addon-game-libretro-mgba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:24 UTC (rev 929319)
+++ PKGBUILD2021-05-09 15:40:35 UTC (rev 929320)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-mgba
 pkgver=0.8.4.19
 _codename=Matrix
-pkgrel=2
+pkgrel=3
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.mgba'


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:23
  Author: felixonmars
Revision: 929318

archrelease: copy trunk to community-staging-x86_64

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

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

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


[arch-commits] Commit in kodi-addon-game-libretro-melonds/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:24
  Author: idevolder
Revision: 929319

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-melonds/repos/community-x86_64/PKGBUILD
(from rev 929317, kodi-addon-game-libretro-melonds/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-melonds/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:23 UTC (rev 929318)
+++ PKGBUILD2021-05-09 15:40:24 UTC (rev 929319)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-melonds
-pkgver=0.9.1.15
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.melonds'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-melonds')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.melonds/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('438d15514224a454c5ec4cbf91a88a3a0ae33a0d4af431b199ad6eab31d16fd0a5db2ca68c1d0fa43c701842c960fd3417b4566f8ed6b1129b0b14b4746e923f')
-
-build() {
-cd "game.libretro.melonds-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-melonds')
-cd "game.libretro.melonds-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-melonds/repos/community-x86_64/PKGBUILD (from 
rev 929317, kodi-addon-game-libretro-melonds/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:40:24 UTC (rev 929319)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-melonds
+pkgver=0.9.1.15
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.melonds'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-melonds')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.melonds/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('438d15514224a454c5ec4cbf91a88a3a0ae33a0d4af431b199ad6eab31d16fd0a5db2ca68c1d0fa43c701842c960fd3417b4566f8ed6b1129b0b14b4746e923f')
+
+build() {
+cd "game.libretro.melonds-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-melonds')
+cd "game.libretro.melonds-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-melonds/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:19
  Author: idevolder
Revision: 929317

upgpkg: kodi-addon-game-libretro-melonds 0.9.1.15-2

Modified:
  kodi-addon-game-libretro-melonds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:08 UTC (rev 929316)
+++ PKGBUILD2021-05-09 15:40:19 UTC (rev 929317)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-melonds
 pkgver=0.9.1.15
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.melonds'


[arch-commits] Commit in kodi-addon-game-libretro-gambatte/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:08
  Author: idevolder
Revision: 929316

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-gambatte/repos/community-x86_64/PKGBUILD
(from rev 929314, kodi-addon-game-libretro-gambatte/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-gambatte/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:07 UTC (rev 929315)
+++ PKGBUILD2021-05-09 15:40:08 UTC (rev 929316)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-gambatte
-pkgver=0.5.0.17
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.gambatte'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-gambatte')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.gambatte/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('a3bda0ca7b15665e34047bd204b7d33e355d7cfc37f45d3822db6e368102c7945db2e1c270bfd2e8c9c08bb12d2ce316213aa5df4f37cac17554e1e1c8d38724')
-
-build() {
-cd "game.libretro.gambatte-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-gambatte')
-cd "game.libretro.gambatte-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-gambatte/repos/community-x86_64/PKGBUILD (from 
rev 929314, kodi-addon-game-libretro-gambatte/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:40:08 UTC (rev 929316)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-gambatte
+pkgver=0.5.0.17
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.gambatte'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-gambatte')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.gambatte/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('a3bda0ca7b15665e34047bd204b7d33e355d7cfc37f45d3822db6e368102c7945db2e1c270bfd2e8c9c08bb12d2ce316213aa5df4f37cac17554e1e1c8d38724')
+
+build() {
+cd "game.libretro.gambatte-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-gambatte')
+cd "game.libretro.gambatte-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:07
  Author: felixonmars
Revision: 929315

upgpkg: hledger-web 1.21-38: rebuild with memory 0.16.0

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:40:02 UTC (rev 929314)
+++ PKGBUILD2021-05-09 15:40:07 UTC (rev 929315)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.21
-pkgrel=37
+pkgrel=38
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")


[arch-commits] Commit in kodi-addon-game-libretro-gambatte/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:40:02
  Author: idevolder
Revision: 929314

upgpkg: kodi-addon-game-libretro-gambatte 0.5.0.17-2

Modified:
  kodi-addon-game-libretro-gambatte/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:51 UTC (rev 929313)
+++ PKGBUILD2021-05-09 15:40:02 UTC (rev 929314)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-gambatte
 pkgver=0.5.0.17
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.gambatte'


[arch-commits] Commit in kodi-addon-game-libretro-flycast/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:51
  Author: idevolder
Revision: 929313

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-flycast/repos/community-x86_64/PKGBUILD
(from rev 929312, kodi-addon-game-libretro-flycast/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-flycast/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:47 UTC (rev 929312)
+++ PKGBUILD2021-05-09 15:39:51 UTC (rev 929313)
@@ -1,33 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-flycast
-pkgver=0.1.0.30
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.reicast'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-flycast')
-replaces=('kodi-addon-game-libretro-reicast')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.reicast/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('bc72c2a0d8238ff37490ec339c8c1f3c2a68a6d324bcc22d1049d65101c468cf94133cb3fb4f44056d7f032cf9b5716810f2068d0b402e13f082feb567789df6')
-
-build() {
-cd "game.libretro.flycast-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-flycast')
-cd "game.libretro.flycast-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-flycast/repos/community-x86_64/PKGBUILD (from 
rev 929312, kodi-addon-game-libretro-flycast/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:39:51 UTC (rev 929313)
@@ -0,0 +1,33 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-flycast
+pkgver=0.1.0.30
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.reicast'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-flycast')
+replaces=('kodi-addon-game-libretro-reicast')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.reicast/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('bc72c2a0d8238ff37490ec339c8c1f3c2a68a6d324bcc22d1049d65101c468cf94133cb3fb4f44056d7f032cf9b5716810f2068d0b402e13f082feb567789df6')
+
+build() {
+cd "game.libretro.flycast-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-flycast')
+cd "game.libretro.flycast-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-flycast/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:47
  Author: idevolder
Revision: 929312

upgpkg: kodi-addon-game-libretro-flycast 0.1.0.30-2

Modified:
  kodi-addon-game-libretro-flycast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:37 UTC (rev 929311)
+++ PKGBUILD2021-05-09 15:39:47 UTC (rev 929312)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-flycast
 pkgver=0.1.0.30
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.reicast'


[arch-commits] Commit in kodi-addon-game-libretro-desmume/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:37
  Author: idevolder
Revision: 929311

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-desmume/repos/community-x86_64/PKGBUILD
(from rev 929310, kodi-addon-game-libretro-desmume/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-desmume/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:33 UTC (rev 929310)
+++ PKGBUILD2021-05-09 15:39:37 UTC (rev 929311)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-desmume
-pkgver=0.0.1.10
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.desmume'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-desmume')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.desmume/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('7fd980a1843ea1c8028cc33e251c3142c099a9162cad21b44b91f12e7b20d376dcc73fb0295470590e5683580b6410112765fc074006e33bdf33ac2465ca2dd1')
-
-build() {
-cd "game.libretro.desmume-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-desmume')
-cd "game.libretro.desmume-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-desmume/repos/community-x86_64/PKGBUILD (from 
rev 929310, kodi-addon-game-libretro-desmume/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:39:37 UTC (rev 929311)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-desmume
+pkgver=0.0.1.10
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.desmume'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 'libretro-desmume')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.desmume/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('7fd980a1843ea1c8028cc33e251c3142c099a9162cad21b44b91f12e7b20d376dcc73fb0295470590e5683580b6410112765fc074006e33bdf33ac2465ca2dd1')
+
+build() {
+cd "game.libretro.desmume-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-desmume')
+cd "game.libretro.desmume-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro-desmume/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:33
  Author: idevolder
Revision: 929310

upgpkg: kodi-addon-game-libretro-desmume 0.0.1.10-2

Modified:
  kodi-addon-game-libretro-desmume/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:21 UTC (rev 929309)
+++ PKGBUILD2021-05-09 15:39:33 UTC (rev 929310)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-desmume
 pkgver=0.0.1.10
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.desmume'


[arch-commits] Commit in kodi-addon-game-libretro-beetle-psx/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:17
  Author: idevolder
Revision: 929308

upgpkg: kodi-addon-game-libretro-beetle-psx 0.9.44.23-2

Modified:
  kodi-addon-game-libretro-beetle-psx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:08 UTC (rev 929307)
+++ PKGBUILD2021-05-09 15:39:17 UTC (rev 929308)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro-beetle-psx
 pkgver=0.9.44.23
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.beetle-psx'


[arch-commits] Commit in kodi-addon-game-libretro-beetle-psx/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:21
  Author: idevolder
Revision: 929309

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-beetle-psx/repos/community-x86_64/PKGBUILD
(from rev 929308, kodi-addon-game-libretro-beetle-psx/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-beetle-psx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:17 UTC (rev 929308)
+++ PKGBUILD2021-05-09 15:39:21 UTC (rev 929309)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-beetle-psx
-pkgver=0.9.44.23
-_codename=Matrix
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.beetle-psx'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 
'libretro-beetle-psx')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.beetle-psx/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('53cbefafe39ca0a4ca9d777c64422b1074d15802d099cbd13c6abb834725c90f9c2e0122725e9e20c2520085c5712aa559c4b09a7725ad29eab2c0e05a8e995d')
-
-build() {
-cd "game.libretro.beetle-psx-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-addon-game-libretro' 'libretro-beetle-psx')
-cd "game.libretro.beetle-psx-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-beetle-psx/repos/community-x86_64/PKGBUILD 
(from rev 929308, kodi-addon-game-libretro-beetle-psx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:39:21 UTC (rev 929309)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-beetle-psx
+pkgver=0.9.44.23
+_codename=Matrix
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.beetle-psx'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'kodi-dev' 'kodi-addon-game-libretro' 
'libretro-beetle-psx')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.beetle-psx/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('53cbefafe39ca0a4ca9d777c64422b1074d15802d099cbd13c6abb834725c90f9c2e0122725e9e20c2520085c5712aa559c4b09a7725ad29eab2c0e05a8e995d')
+
+build() {
+cd "game.libretro.beetle-psx-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-addon-game-libretro' 'libretro-beetle-psx')
+cd "game.libretro.beetle-psx-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:08
  Author: idevolder
Revision: 929307

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro/repos/community-x86_64/PKGBUILD
(from rev 929306, kodi-addon-game-libretro/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:39:03 UTC (rev 929306)
+++ PKGBUILD2021-05-09 15:39:08 UTC (rev 929307)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro
-pkgver=2.2.0
-_codename=Matrix
-pkgrel=2
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-makedepends=('cmake' 'libretro-core-info' 'kodi-platform' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('f1a5671b468ebf0ea3a86b757ae2481115bfb38082043757aa94d6f193b6eea560b37ccafafe63e686b729d80aa89ac58640899900894d0a72472badadbf27ac')
-
-build() {
-cd "game.libretro-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi-common' 'kodi-platform' 'libretro-core-info')
-cd "game.libretro-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro/repos/community-x86_64/PKGBUILD (from rev 
929306, kodi-addon-game-libretro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:39:08 UTC (rev 929307)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro
+pkgver=2.2.0
+_codename=Matrix
+pkgrel=3
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+makedepends=('cmake' 'libretro-core-info' 'kodi-platform' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('f1a5671b468ebf0ea3a86b757ae2481115bfb38082043757aa94d6f193b6eea560b37ccafafe63e686b729d80aa89ac58640899900894d0a72472badadbf27ac')
+
+build() {
+cd "game.libretro-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi-common' 'kodi-platform' 'libretro-core-info')
+cd "game.libretro-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-game-libretro/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:39:03
  Author: idevolder
Revision: 929306

upgpkg: kodi-addon-game-libretro 2.2.0-3

Modified:
  kodi-addon-game-libretro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:54 UTC (rev 929305)
+++ PKGBUILD2021-05-09 15:39:03 UTC (rev 929306)
@@ -3,7 +3,7 @@
 pkgname=kodi-addon-game-libretro
 pkgver=2.2.0
 _codename=Matrix
-pkgrel=2
+pkgrel=3
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro'


[arch-commits] Commit in kodi-addon-visualization-waveform/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:54
  Author: idevolder
Revision: 929305

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-visualization-waveform/repos/community-x86_64/PKGBUILD
(from rev 929304, kodi-addon-visualization-waveform/trunk/PKGBUILD)
Deleted:
  kodi-addon-visualization-waveform/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:49 UTC (rev 929304)
+++ PKGBUILD2021-05-09 15:38:54 UTC (rev 929305)
@@ -1,33 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-visualization-waveform
-epoch=1
-pkgver=4.4.0
-_codename=Matrix
-pkgrel=1
-pkgdesc="Waveform visualizer for Kodi"
-arch=('x86_64')
-url='https://github.com/xbmc/visualization.waveform'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-visualization')
-makedepends=('cmake' 'glu' 'glm' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.waveform/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('8452b5c9cb57c40fa79c58278ea6fa32e4a6845f0cb1555009aedcb3ce5759330918aa2c10c4fdc7c9fef97e6afff61d6145344ce5fccecbc576f64ac036d0a3')
-
-build() {
-cd "visualization.waveform-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi' 'glu' 'glm')
-cd "visualization.waveform-$pkgver-$_codename"
-make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-visualization-waveform/repos/community-x86_64/PKGBUILD (from 
rev 929304, kodi-addon-visualization-waveform/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:38:54 UTC (rev 929305)
@@ -0,0 +1,33 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-visualization-waveform
+epoch=1
+pkgver=4.4.0
+_codename=Matrix
+pkgrel=2
+pkgdesc="Waveform visualizer for Kodi"
+arch=('x86_64')
+url='https://github.com/xbmc/visualization.waveform'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-visualization')
+makedepends=('cmake' 'glu' 'glm' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.waveform/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('8452b5c9cb57c40fa79c58278ea6fa32e4a6845f0cb1555009aedcb3ce5759330918aa2c10c4fdc7c9fef97e6afff61d6145344ce5fccecbc576f64ac036d0a3')
+
+build() {
+cd "visualization.waveform-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi' 'glu' 'glm')
+cd "visualization.waveform-$pkgver-$_codename"
+make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-visualization-waveform/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:49
  Author: idevolder
Revision: 929304

upgpkg: kodi-addon-visualization-waveform 1:4.4.0-2

Modified:
  kodi-addon-visualization-waveform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:40 UTC (rev 929303)
+++ PKGBUILD2021-05-09 15:38:49 UTC (rev 929304)
@@ -4,7 +4,7 @@
 epoch=1
 pkgver=4.4.0
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Waveform visualizer for Kodi"
 arch=('x86_64')
 url='https://github.com/xbmc/visualization.waveform'


[arch-commits] Commit in kodi-addon-visualization-spectrum/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:40
  Author: idevolder
Revision: 929303

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-visualization-spectrum/repos/community-x86_64/PKGBUILD
(from rev 929302, kodi-addon-visualization-spectrum/trunk/PKGBUILD)
Deleted:
  kodi-addon-visualization-spectrum/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:36 UTC (rev 929302)
+++ PKGBUILD2021-05-09 15:38:40 UTC (rev 929303)
@@ -1,33 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-visualization-spectrum
-epoch=1
-pkgver=3.4.0
-_codename=Matrix
-pkgrel=1
-pkgdesc="Spectrum visualizer for Kodi"
-arch=('x86_64')
-url='https://github.com/xbmc/visualization.spectrum'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-visualization')
-makedepends=('cmake' 'glm' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.spectrum/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('c653c867dc1fa4d0c4de9cb3e5dcf90daf73ffdeb2b4f50bdcb651799fd1adec549a11889e4a7fa3b9bca46ad36c68e5cea925b0cf5d006b975215c682b9b584')
-
-build() {
-cd "visualization.spectrum-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi' 'glm')
-cd "visualization.spectrum-$pkgver-$_codename"
-make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-visualization-spectrum/repos/community-x86_64/PKGBUILD (from 
rev 929302, kodi-addon-visualization-spectrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:38:40 UTC (rev 929303)
@@ -0,0 +1,33 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-visualization-spectrum
+epoch=1
+pkgver=3.4.0
+_codename=Matrix
+pkgrel=2
+pkgdesc="Spectrum visualizer for Kodi"
+arch=('x86_64')
+url='https://github.com/xbmc/visualization.spectrum'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-visualization')
+makedepends=('cmake' 'glm' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.spectrum/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('c653c867dc1fa4d0c4de9cb3e5dcf90daf73ffdeb2b4f50bdcb651799fd1adec549a11889e4a7fa3b9bca46ad36c68e5cea925b0cf5d006b975215c682b9b584')
+
+build() {
+cd "visualization.spectrum-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi' 'glm')
+cd "visualization.spectrum-$pkgver-$_codename"
+make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-visualization-spectrum/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:36
  Author: idevolder
Revision: 929302

upgpkg: kodi-addon-visualization-spectrum 1:3.4.0-2

Modified:
  kodi-addon-visualization-spectrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:24 UTC (rev 929301)
+++ PKGBUILD2021-05-09 15:38:36 UTC (rev 929302)
@@ -4,7 +4,7 @@
 epoch=1
 pkgver=3.4.0
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Spectrum visualizer for Kodi"
 arch=('x86_64')
 url='https://github.com/xbmc/visualization.spectrum'


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:24
  Author: felixonmars
Revision: 929301

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-conduit/repos/community-staging-x86_64/
  haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 929299, haskell-http-conduit/trunk/PKGBUILD)

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
929299, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-05-09 15:38:24 UTC (rev 929301)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.8
+pkgrel=27
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="https://www.yesodweb.com/book/http-conduit;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-resourcet'
+ 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('44c337f1a0a0ec74a5d6e4e28a3aa5a32609c3a4da9424e99aedc2a8db67fc4684ef10cf82d6bda0761c7ffba4f0222e683946ab6dd8de1ab8225a40cc14cf66')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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 || echo "Tests failed"
+}
+
+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 kodi-addon-visualization-shadertoy/repos/community-x86_64 (2 files)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:21
  Author: idevolder
Revision: 929300

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-visualization-shadertoy/repos/community-x86_64/PKGBUILD
(from rev 929299, kodi-addon-visualization-shadertoy/trunk/PKGBUILD)
Deleted:
  kodi-addon-visualization-shadertoy/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:16 UTC (rev 929299)
+++ PKGBUILD2021-05-09 15:38:21 UTC (rev 929300)
@@ -1,33 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-visualization-shadertoy
-epoch=1
-pkgver=2.3.0
-_codename=Matrix
-pkgrel=1
-pkgdesc="Shadertoy visualizer for Kodi"
-arch=('x86_64')
-url='https://github.com/xbmc/visualization.shadertoy'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-visualization')
-makedepends=('cmake' 'p8-platform' 'glm' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.shadertoy/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('7693e67b3aaad0b6bc78c80b1bdfd92348de139acbb1292b56e9430dfd939b242f56e5c732625bece0088ef9e2a5627fe2f9a19aadbf076c54647c9e6929874a')
-
-build() {
-cd "visualization.shadertoy-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-depends=('kodi' 'p8-platform' 'glm')
-cd "visualization.shadertoy-$pkgver-$_codename"
-make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-visualization-shadertoy/repos/community-x86_64/PKGBUILD 
(from rev 929299, kodi-addon-visualization-shadertoy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-09 15:38:21 UTC (rev 929300)
@@ -0,0 +1,33 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-visualization-shadertoy
+epoch=1
+pkgver=2.3.0
+_codename=Matrix
+pkgrel=2
+pkgdesc="Shadertoy visualizer for Kodi"
+arch=('x86_64')
+url='https://github.com/xbmc/visualization.shadertoy'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-visualization')
+makedepends=('cmake' 'p8-platform' 'glm' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.shadertoy/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('7693e67b3aaad0b6bc78c80b1bdfd92348de139acbb1292b56e9430dfd939b242f56e5c732625bece0088ef9e2a5627fe2f9a19aadbf076c54647c9e6929874a')
+
+build() {
+cd "visualization.shadertoy-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+depends=('kodi' 'p8-platform' 'glm')
+cd "visualization.shadertoy-$pkgver-$_codename"
+make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-visualization-shadertoy/trunk (PKGBUILD)

2021-05-09 Thread Ike Devolder via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:16
  Author: idevolder
Revision: 929299

upgpkg: kodi-addon-visualization-shadertoy 1:2.3.0-2

Modified:
  kodi-addon-visualization-shadertoy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:08 UTC (rev 929298)
+++ PKGBUILD2021-05-09 15:38:16 UTC (rev 929299)
@@ -4,7 +4,7 @@
 epoch=1
 pkgver=2.3.0
 _codename=Matrix
-pkgrel=1
+pkgrel=2
 pkgdesc="Shadertoy visualizer for Kodi"
 arch=('x86_64')
 url='https://github.com/xbmc/visualization.shadertoy'


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

2021-05-09 Thread Felix Yan via arch-commits
Date: Sunday, May 9, 2021 @ 15:38:08
  Author: felixonmars
Revision: 929298

upgpkg: haskell-http-conduit 2.3.8-27: rebuild with memory 0.16.0

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-09 15:38:05 UTC (rev 929297)
+++ PKGBUILD2021-05-09 15:38:08 UTC (rev 929298)
@@ -4,7 +4,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.8
-pkgrel=26
+pkgrel=27
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="https://www.yesodweb.com/book/http-conduit;
 license=("BSD")


  1   2   3   4   5   >