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

2017-12-10 Thread Christian Hesse via arch-commits
Date: Monday, December 11, 2017 @ 07:55:29
  Author: eworm
Revision: 312165

upgpkg: cryptsetup 2.0.0-1

new upstream release

This is a major upgrade with soname bump and new dependency json-c.

Modified:
  cryptsetup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:52:59 UTC (rev 312164)
+++ PKGBUILD2017-12-11 07:55:29 UTC (rev 312165)
@@ -3,23 +3,22 @@
 # Contributor: Thomas Bächler 
 
 pkgname=cryptsetup
-pkgver=1.7.5
-pkgrel=2
+pkgver=2.0.0
+pkgrel=1
 pkgdesc="Userspace setup tool for transparent encryption of block devices 
using dm-crypt"
 arch=(x86_64)
 license=('GPL')
 url="https://gitlab.com/cryptsetup/cryptsetup/;
 groups=('base')
-depends=('device-mapper' 'libgcrypt' 'popt' 'libutil-linux')
+depends=('device-mapper' 'libgcrypt' 'popt' 'libutil-linux' 'json-c')
 makedepends=('util-linux')
 options=('!emptydirs')
-source=(https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/${pkgname}-${pkgver}.tar.xz
-
https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/${pkgname}-${pkgver}.tar.sign
+source=(https://www.kernel.org/pub/linux/utils/cryptsetup/v2.0/${pkgname}-${pkgver}.tar.{xz,sign}
 encrypt_hook
 encrypt_install
 sd-encrypt)
 validpgpkeys=('2A2918243FDE46648D0686F9D9B0577BD93E98FC') # Milan Broz 

-sha256sums=('2b30cd1d0dd606a53ac77b406e1d37798d4b0762fa89de6ea546201906a251bd'
+sha256sums=('adc623b9e3e3ab5c14145b8baf21b741e513ee5bf90d2b4d85a745c2f05da199'
 'SKIP'
 '416aa179ce3c6a7a5eee0861f1f0a4fafac91b69e84a2aae82b6e5a6140e31e2'
 'cfe465bdad3d958bb2332a05e04f2e1e884422a5714dfd1a0a3b9b74bf7dc6ae'


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

2017-12-10 Thread Christian Hesse via arch-commits
Date: Monday, December 11, 2017 @ 07:55:34
  Author: eworm
Revision: 312166

archrelease: copy trunk to staging-x86_64

Added:
  cryptsetup/repos/staging-x86_64/
  cryptsetup/repos/staging-x86_64/PKGBUILD
(from rev 312165, cryptsetup/trunk/PKGBUILD)
  cryptsetup/repos/staging-x86_64/encrypt_hook
(from rev 312165, cryptsetup/trunk/encrypt_hook)
  cryptsetup/repos/staging-x86_64/encrypt_install
(from rev 312165, cryptsetup/trunk/encrypt_install)
  cryptsetup/repos/staging-x86_64/sd-encrypt
(from rev 312165, cryptsetup/trunk/sd-encrypt)

-+
 PKGBUILD|   40 +++
 encrypt_hook|  144 ++
 encrypt_install |   44 
 sd-encrypt  |   42 +++
 4 files changed, 270 insertions(+)

Copied: cryptsetup/repos/staging-x86_64/PKGBUILD (from rev 312165, 
cryptsetup/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-11 07:55:34 UTC (rev 312166)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Thomas Bächler 
+
+pkgname=cryptsetup
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Userspace setup tool for transparent encryption of block devices 
using dm-crypt"
+arch=(x86_64)
+license=('GPL')
+url="https://gitlab.com/cryptsetup/cryptsetup/;
+groups=('base')
+depends=('device-mapper' 'libgcrypt' 'popt' 'libutil-linux' 'json-c')
+makedepends=('util-linux')
+options=('!emptydirs')
+source=(https://www.kernel.org/pub/linux/utils/cryptsetup/v2.0/${pkgname}-${pkgver}.tar.{xz,sign}
+encrypt_hook
+encrypt_install
+sd-encrypt)
+validpgpkeys=('2A2918243FDE46648D0686F9D9B0577BD93E98FC') # Milan Broz 

+sha256sums=('adc623b9e3e3ab5c14145b8baf21b741e513ee5bf90d2b4d85a745c2f05da199'
+'SKIP'
+'416aa179ce3c6a7a5eee0861f1f0a4fafac91b69e84a2aae82b6e5a6140e31e2'
+'cfe465bdad3d958bb2332a05e04f2e1e884422a5714dfd1a0a3b9b74bf7dc6ae'
+'d442304e6a78b3513ebc53be3fe2f1276a7df470c8da701b3ece971d59979bdd')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver}
+  ./configure --prefix=/usr --sbindir=/usr/bin --disable-static 
--enable-cryptsetup-reencrypt
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # install hook
+  install -D -m644 "${srcdir}"/encrypt_hook 
"${pkgdir}"/usr/lib/initcpio/hooks/encrypt
+  install -D -m644 "${srcdir}"/encrypt_install 
"${pkgdir}"/usr/lib/initcpio/install/encrypt
+  install -D -m644 "${srcdir}"/sd-encrypt 
"${pkgdir}"/usr/lib/initcpio/install/sd-encrypt
+}

Copied: cryptsetup/repos/staging-x86_64/encrypt_hook (from rev 312165, 
cryptsetup/trunk/encrypt_hook)
===
--- staging-x86_64/encrypt_hook (rev 0)
+++ staging-x86_64/encrypt_hook 2017-12-11 07:55:34 UTC (rev 312166)
@@ -0,0 +1,144 @@
+#!/usr/bin/ash
+
+run_hook() {
+modprobe -a -q dm-crypt >/dev/null 2>&1
+[ "${quiet}" = "y" ] && CSQUIET=">/dev/null"
+
+# Get keyfile if specified
+ckeyfile="/crypto_keyfile.bin"
+if [ -n "$cryptkey" ]; then
+IFS=: read ckdev ckarg1 ckarg2 &1
+umount /ckey
+;;
+*)
+# Read raw data from the block device
+# ckarg1 is numeric: ckarg1=offset, ckarg2=length
+dd if="$resolved" of="$ckeyfile" bs=1 skip="$ckarg1" 
count="$ckarg2" >/dev/null 2>&1
+;;
+esac
+fi
+[ ! -f ${ckeyfile} ] && echo "Keyfile could not be opened. Reverting 
to passphrase."
+fi
+
+if [ -n "${cryptdevice}" ]; then
+DEPRECATED_CRYPT=0
+IFS=: read cryptdev cryptname cryptoptions <&2
+;;
+esac
+done
+
+if resolved=$(resolve_device "${cryptdev}" ${rootdelay}); then
+if cryptsetup isLuks ${resolved} >/dev/null 2>&1; then
+[ ${DEPRECATED_CRYPT} -eq 1 ] && warn_deprecated
+dopassphrase=1
+# If keyfile exists, try to use that
+if [ -f ${ckeyfile} ]; then
+if eval cryptsetup --key-file ${ckeyfile} open --type luks 
${resolved} ${cryptname} ${cryptargs} ${CSQUIET}; then
+dopassphrase=0
+else
+echo "Invalid keyfile. Reverting to passphrase."
+fi
+fi
+# Ask for a passphrase
+if [ ${dopassphrase} -gt 0 ]; then
+echo ""
+echo "A password is required to access the ${cryptname} 
volume:"
+
+#loop until we get a real password
+while ! eval cryptsetup open --type luks ${resolved} 
${cryptname} ${cryptargs} ${CSQUIET}; do
+   

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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:50:19
  Author: felixonmars
Revision: 273685

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 273684, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:50:19 UTC (rev 273685)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.14
+pkgrel=9
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-connection' 'haskell-extra' 
'haskell-src-exts'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-network-uri' 
'haskell-old-locale'
+ 'haskell-process-extras' 'haskell-resourcet' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-text' '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=('f6a9743277d8937d279bbb924999e91679c2fbbaa643f0f60d5329f9bbc12020aa3a6c31b664105687667277b9786427ce9bc0d2b25dcf0bc9c9a1fec821de33')
+
+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 \
+-fnetwork-uri
+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
+}
+
+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)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:49:59
  Author: felixonmars
Revision: 273684

upgpkg: hoogle 5.0.14-9

rebuild with simple-sendfile,0.2.26

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:49:49 UTC (rev 273683)
+++ PKGBUILD2017-12-11 07:49:59 UTC (rev 273684)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.14
-pkgrel=8
+pkgrel=9
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")


[arch-commits] Commit in libpam-google-authenticator/repos (2 files)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:49:47
  Author: felixonmars
Revision: 273682

archrelease: copy trunk to community-x86_64

Added:
  libpam-google-authenticator/repos/community-x86_64/
  libpam-google-authenticator/repos/community-x86_64/PKGBUILD
(from rev 273681, libpam-google-authenticator/trunk/PKGBUILD)

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

Copied: libpam-google-authenticator/repos/community-x86_64/PKGBUILD (from rev 
273681, libpam-google-authenticator/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-12-11 07:49:47 UTC (rev 273682)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: robertfoster
+
+pkgname=libpam-google-authenticator
+pkgver=1.05
+pkgrel=1
+pkgdesc='PAM module for google authenticator app'
+arch=('x86_64')
+url="https://github.com/google/google-authenticator-libpam;
+license=('Apache')
+depends=('pam')
+optdepends=('qrencode: scannable QR codes for google auth phone app')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/google/google-authenticator-libpam/archive/$pkgver.tar.gz;)
+sha512sums=('d97b26c6181dbce0612628484db37b1bf61e984fb2fb3d4974d04038e564404aa17415368dba524f0d17d96ec8d57ae4129b27f0c672d849d16ef03941d87996')
+
+build() {
+  cd google-authenticator-libpam-$pkgver
+  ./bootstrap.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd google-authenticator-libpam-$pkgver
+  make DESTDIR="$pkgdir" install
+  libtool --finish "$pkgdir"/usr/lib/security
+}


[arch-commits] Commit in (modular_decomposition)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Monday, December 11, 2017 @ 07:49:49
  Author: arojas
Revision: 273683

No longer needed

Deleted:
  modular_decomposition/


[arch-commits] Commit in (4 files)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:49:04
  Author: felixonmars
Revision: 273680

addpkg: libpam-google-authenticator 1.05-1

Added:
  libpam-google-authenticator/
  libpam-google-authenticator/repos/
  libpam-google-authenticator/trunk/
  libpam-google-authenticator/trunk/PKGBUILD

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

Added: libpam-google-authenticator/trunk/PKGBUILD
===
--- libpam-google-authenticator/trunk/PKGBUILD  (rev 0)
+++ libpam-google-authenticator/trunk/PKGBUILD  2017-12-11 07:49:04 UTC (rev 
273680)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: robertfoster
+
+pkgname=libpam-google-authenticator
+pkgver=1.05
+pkgrel=1
+pkgdesc='PAM module for google authenticator app'
+arch=('x86_64')
+url="https://github.com/google/google-authenticator-libpam;
+license=('Apache')
+depends=('pam')
+optdepends=('qrencode: scannable QR codes for google auth phone app')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/google/google-authenticator-libpam/archive/$pkgver.tar.gz;)
+sha512sums=('d97b26c6181dbce0612628484db37b1bf61e984fb2fb3d4974d04038e564404aa17415368dba524f0d17d96ec8d57ae4129b27f0c672d849d16ef03941d87996')
+
+build() {
+  cd google-authenticator-libpam-$pkgver
+  ./bootstrap.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd google-authenticator-libpam-$pkgver
+  make DESTDIR="$pkgdir" install
+  libtool --finish "$pkgdir"/usr/lib/security
+}


Property changes on: libpam-google-authenticator/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:48:33
  Author: felixonmars
Revision: 273679

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-warp-tls/repos/community-staging-x86_64/
  haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 273678, haskell-warp-tls/trunk/PKGBUILD)

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

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
273678, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:48:33 UTC (rev 273679)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.4
+pkgrel=29
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" 
"haskell-tls-session-manager" "haskell-wai"
+ "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3cf7b549f39bc314a9a648f9e0b43e5d47a6b08fd56189af4f1d8dbcd9092dc411bc5a3cc429c0fb79738f3e84ec096ad0a8ac83bd8d14ecf90d505f17391642')
+
+build() {
+cd "${srcdir}/${_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
+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}/${_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-warp-tls/trunk (PKGBUILD)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:48:13
  Author: felixonmars
Revision: 273678

upgpkg: haskell-warp-tls 3.2.4-29

rebuild with simple-sendfile,0.2.26

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:47:32 UTC (rev 273677)
+++ PKGBUILD2017-12-11 07:48:13 UTC (rev 273678)
@@ -5,7 +5,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.4
-pkgrel=28
+pkgrel=29
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="https://github.com/yesodweb/wai;
 license=("MIT")


[arch-commits] Commit in haskell-wai-handler-launch/repos (2 files)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:47:32
  Author: felixonmars
Revision: 273677

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-handler-launch/repos/community-staging-x86_64/
  haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD
(from rev 273676, haskell-wai-handler-launch/trunk/PKGBUILD)

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

Copied: haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD 
(from rev 273676, haskell-wai-handler-launch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:47:32 UTC (rev 273677)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-handler-launch
+pkgname=haskell-wai-handler-launch
+pkgver=3.0.2.3
+pkgrel=5
+pkgdesc="Launch a web app in the default browser."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-wai" "haskell-warp" 
"haskell-http-types"
+ "haskell-streaming-commons" "haskell-async")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a962352c95fbb93aa6827ff0e65fd3df7719e5c1157578130edb3c8af0a1091ced838afe05f771efe6cc0f6f1fb08227cfa1547bf97f171ef8907a18ad90441c')
+
+build() {
+cd "${srcdir}/${_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
+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}/${_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 hledger-api/repos (2 files)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:46:33
  Author: felixonmars
Revision: 273675

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 273674, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:46:33 UTC (rev 273675)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.4
+pkgrel=24
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-decimal'
+ 'haskell-docopt' 'haskell-either' 'haskell-microlens' 
'haskell-microlens-platform'
+ 'haskell-safe' 'haskell-servant-server' 'haskell-servant-swagger' 
'haskell-swagger2'
+ 'haskell-text' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('e71231c8d4602affdfcdd229fe488331c4f827c9274d17e0e711eea853e4dbc51bb47652081ae7d822e836b8932970fc01169649f1652716c00036be45a8e547')
+
+prepare() {
+sed -i 's/, swagger2 >= 2.0 && < 2.2/, swagger2 >= 2.0/' 
$pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:46:12
  Author: felixonmars
Revision: 273674

upgpkg: hledger-api 1.4-24

rebuild with simple-sendfile,0.2.26

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:45:43 UTC (rev 273673)
+++ PKGBUILD2017-12-11 07:46:12 UTC (rev 273674)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-api
 pkgver=1.4
-pkgrel=23
+pkgrel=24
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


[arch-commits] Commit in haskell-wai-handler-launch/trunk (PKGBUILD)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:47:09
  Author: felixonmars
Revision: 273676

upgpkg: haskell-wai-handler-launch 3.0.2.3-5

rebuild with simple-sendfile,0.2.26

Modified:
  haskell-wai-handler-launch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:46:33 UTC (rev 273675)
+++ PKGBUILD2017-12-11 07:47:09 UTC (rev 273676)
@@ -5,7 +5,7 @@
 _hkgname=wai-handler-launch
 pkgname=haskell-wai-handler-launch
 pkgver=3.0.2.3
-pkgrel=4
+pkgrel=5
 pkgdesc="Launch a web app in the default browser."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Monday, December 11, 2017 @ 07:45:31
  Author: arojas
Revision: 273671

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 273670, giac/trunk/PKGBUILD)
Deleted:
  giac/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-11 07:45:09 UTC (rev 273670)
+++ PKGBUILD2017-12-11 07:45:31 UTC (rev 273671)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.4.9-37
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc="A free computer algebra system"
-arch=(x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('9709b0c52f9f1444802fec9b19da9930c52a1abb1d9887f944c9fbf3ffa0cf5a')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 273670, 
giac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-11 07:45:31 UTC (rev 273671)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgbase=giac
+pkgname=(xcas libgiac)
+_pkgver=1.4.9-39
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="A free computer algebra system"
+arch=(x86_64)
+url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
+license=(GPL3)
+makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea)
+source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
+sha256sums=('30a3fb668370955223158390a4f82987bc05d7c7a7d2fb21bd68c2ce1a57489a')
+
+build() {
+  cd $pkgbase-${pkgver%.*}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_xcas() {
+  depends=(libgiac fltk)
+  conflicts=(giac)
+  provides=(giac)
+  replaces=(giac)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{lib,include}
+}
+
+package_libgiac() {
+  pkgdesc="Giac shared library"
+  depends=(mpfi gsl pari ntl lapack libpng)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,share}
+}


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:44:57
  Author: felixonmars
Revision: 273669

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 273668, haskell-servant-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:44:57 UTC (rev 273669)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-server
+pkgname=haskell-servant-server
+pkgver=0.12
+pkgrel=10
+pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
+url="http://haskell-servant.readthedocs.org/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-base-compat" "haskell-aeson" "haskell-attoparsec"
+ "haskell-base64-bytestring" "haskell-exceptions" 
"haskell-http-api-data"
+ "haskell-http-types" "haskell-network-uri" "haskell-monad-control" 
"haskell-mtl"
+ "haskell-network" "haskell-safe" "haskell-servant" "haskell-split"
+ "haskell-string-conversions" "haskell-system-filepath" 
"haskell-resourcet" "haskell-tagged"
+ "haskell-text" "haskell-transformers-base" 
"haskell-transformers-compat" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-word8")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('322fa0ebec88870d5d6e254ef27031b26d2c96dbcd6ec29e99dd2449abf95174471b1719034fb22077e4ba3f6a5bf7b2b50c535ba87e9f371f446399145f02cc')
+
+build() {
+cd "${srcdir}/${_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
+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}/${_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 giac/trunk (PKGBUILD)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Monday, December 11, 2017 @ 07:45:09
  Author: arojas
Revision: 273670

Update to 1.4.9.39

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:44:57 UTC (rev 273669)
+++ PKGBUILD2017-12-11 07:45:09 UTC (rev 273670)
@@ -3,7 +3,7 @@
 
 pkgbase=giac
 pkgname=(xcas libgiac)
-_pkgver=1.4.9-37
+_pkgver=1.4.9-39
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc="A free computer algebra system"
@@ -12,7 +12,7 @@
 license=(GPL3)
 makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea)
 
source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('9709b0c52f9f1444802fec9b19da9930c52a1abb1d9887f944c9fbf3ffa0cf5a')
+sha256sums=('30a3fb668370955223158390a4f82987bc05d7c7a7d2fb21bd68c2ce1a57489a')
 
 build() {
   cd $pkgbase-${pkgver%.*}


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:44:37
  Author: felixonmars
Revision: 273668

upgpkg: haskell-servant-server 0.12-10

rebuild with simple-sendfile,0.2.26

Modified:
  haskell-servant-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:43:36 UTC (rev 273667)
+++ PKGBUILD2017-12-11 07:44:37 UTC (rev 273668)
@@ -5,7 +5,7 @@
 _hkgname=servant-server
 pkgname=haskell-servant-server
 pkgver=0.12
-pkgrel=9
+pkgrel=10
 pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
 url="http://haskell-servant.readthedocs.org/;
 license=("custom:BSD3")


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:43:16
  Author: felixonmars
Revision: 273666

upgpkg: haskell-hakyll 4.9.8.0-100

rebuild with simple-sendfile,0.2.26

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:41:25 UTC (rev 273665)
+++ PKGBUILD2017-12-11 07:43:16 UTC (rev 273666)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.8.0
-pkgrel=99
+pkgrel=100
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:43:36
  Author: felixonmars
Revision: 273667

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 273666, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
273666, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:43:36 UTC (rev 273667)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=100
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "pandoc" "pandoc-citeproc" 
"haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+
https://github.com/rlpowell/hakyll/commit/5c26faf2d867d9c644f8110f2c9bd6bd8c32986a.patch)
+sha512sums=('933645964113bbdf898366aedd11c6f26035e633b66fb01206258264a3b8857e08ea919f3284b6dfef28c32e6dc2bdd21ee85ed5e1c4c184423dfdc4a487'
+
'06c71fe3e99315c969b694020457af585124179bcc5b62afafafaf179132d88ac23d375ba948984565deab936f378cd6351e19b798125c010bde873c704d15ef')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../5c26faf2d867d9c644f8110f2c9bd6bd8c32986a.patch
+sed -e 's/pandoc-citeproc  >= 0.10.5 && < 0.11,/pandoc-citeproc  
>= 0.10.5,/' \
+-e 's/process  >= 1.0&& < 1.6,/process  >= 
1.0,/' \
+-e 's/time >= 1.4&& < 1.8,/time >= 
1.4,/' \
+-i $_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${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 \
+-fcheckexternal -fwatchserver -fpreviewserver
+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
+}
+
+package() {
+cd "${srcdir}/${_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-wai-app-static/repos (2 files)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:41:25
  Author: felixonmars
Revision: 273665

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 273664, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 273664, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:41:25 UTC (rev 273665)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.1
+pkgrel=111
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-blaze-html" 
"haskell-blaze-markup" 
+ "haskell-cryptonite" "haskell-file-embed" "haskell-http-date" 
"haskell-http-types"
+ "haskell-memory" "haskell-mime-types" "haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-text" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-warp"
+ "haskell-zlib")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b318acf31e2e809411f119744a016ba0a78f52554ac7321a3a1410a218886668')
+
+build() {
+cd "${srcdir}/${_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 \
+-f-print
+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
+}
+
+package() {
+cd "${srcdir}/${_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-wai-app-static/trunk (PKGBUILD)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:41:03
  Author: felixonmars
Revision: 273664

upgpkg: haskell-wai-app-static 3.1.6.1-111

rebuild with simple-sendfile,0.2.26

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:40:14 UTC (rev 273663)
+++ PKGBUILD2017-12-11 07:41:03 UTC (rev 273664)
@@ -5,7 +5,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.1
-pkgrel=110
+pkgrel=111
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:40:14
  Author: felixonmars
Revision: 273663

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 273662, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:40:14 UTC (rev 273663)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.4.3.0
+pkgrel=15
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hasql' 'haskell-hasql-pool' 'haskell-protolude' 
'haskell-text'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 'haskell-either'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http' 
'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose0.5'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-ranged-sets' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra' 
'haskell-wai-middleware-static'
+ 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema' 
'haskell-hjsonpointer')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('e07d7e3aa0a830c5e8be8c2ed31236e0b12b97b4a5eaa1a3034bffc395cf7722150700b66e278faba24995435c85cb0eb846c40479ce8224ffe82c25d658')
+
+prepare() {
+sed -i 's/==/>=/' $pkgname-$pkgver/$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
+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 $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# 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)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:39:54
  Author: felixonmars
Revision: 273662

upgpkg: postgrest 0.4.3.0-15

rebuild with simple-sendfile,0.2.26

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:37:23 UTC (rev 273661)
+++ PKGBUILD2017-12-11 07:39:54 UTC (rev 273662)
@@ -4,7 +4,7 @@
 
 pkgname=postgrest
 pkgver=0.4.3.0
-pkgrel=14
+pkgrel=15
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:37:23
  Author: felixonmars
Revision: 273661

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp/repos/community-staging-x86_64/PKGBUILD (from rev 273660, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:37:23 UTC (rev 273661)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.13
+pkgrel=11
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-async" "haskell-auto-update" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-hashable" "haskell-http-date" 
"haskell-http-types"
+ "haskell-http2" "haskell-iproute" "haskell-network" 
"haskell-simple-sendfile" "haskell-stm"
+ "haskell-streaming-commons" "haskell-text" "haskell-unix-compat" 
"haskell-vault"
+ "haskell-wai" "haskell-word8")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('598b1a3d2521a483001602c059685f28e5c1ed6729e35243c82b98e879cc4d448dd5b42542bef3b3df9d1181c829e3fc582fa1454f9c4daada44961bc5c6546e')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_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 \
+-f-warp-debug -fallow-sendfilefd -f-network-bytestring
+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
+}
+
+package() {
+cd "${srcdir}/${_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-warp/trunk (PKGBUILD)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:36:59
  Author: felixonmars
Revision: 273660

upgpkg: haskell-warp 3.2.13-11

rebuild with simple-sendfile,0.2.26

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:36:11 UTC (rev 273659)
+++ PKGBUILD2017-12-11 07:36:59 UTC (rev 273660)
@@ -5,7 +5,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.2.13
-pkgrel=10
+pkgrel=11
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:36:11
  Author: felixonmars
Revision: 273659

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-simple-sendfile/repos/community-staging-x86_64/PKGBUILD (from 
rev 273658, haskell-simple-sendfile/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:36:11 UTC (rev 273659)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=simple-sendfile
+pkgname=haskell-simple-sendfile
+pkgver=0.2.26
+pkgrel=1
+pkgdesc="Cross platform library for the sendfile system call"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network')
+makedepends=('ghc' 'haskell-hunit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-resourcet'
+ 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('53692cb8eb79c0e1993af1e14c13659679a8613bc5631f6e172f2fe10ab2764f80edc5ef58fe5e8b9e836a4c7eaff49336c3c927ef742a64e3fb4b9b014e811f')
+
+build() {
+cd "${srcdir}/${_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 \
+-fallow-bsd
+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 $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_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-simple-sendfile/trunk (PKGBUILD)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:35:50
  Author: felixonmars
Revision: 273658

upgpkg: haskell-simple-sendfile 0.2.26-1

rebuild with simple-sendfile,0.2.26

Modified:
  haskell-simple-sendfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:32:02 UTC (rev 273657)
+++ PKGBUILD2017-12-11 07:35:50 UTC (rev 273658)
@@ -4,22 +4,23 @@
 
 _hkgname=simple-sendfile
 pkgname=haskell-simple-sendfile
-pkgver=0.2.25
-pkgrel=7
+pkgver=0.2.26
+pkgrel=1
 pkgdesc="Cross platform library for the sendfile system call"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")
 arch=('x86_64')
-depends=('ghc-libs' "haskell-network")
-makedepends=('ghc')
+depends=('ghc-libs' 'haskell-network')
+makedepends=('ghc' 'haskell-hunit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-resourcet'
+ 'haskell-hspec')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('4e31bd6843e74988b5f132e77557e4db0da833cd7f0e8ee6dfa460a495afa1de18325deddb0ca71b959b704f090292ca4eb4c2bf06cd96fd27fc78a4d3f79eeb')
+sha512sums=('53692cb8eb79c0e1993af1e14c13659679a8613bc5631f6e172f2fe10ab2764f80edc5ef58fe5e8b9e836a4c7eaff49336c3c927ef742a64e3fb4b9b014e811f')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
-
+
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
 -fallow-bsd
 runhaskell Setup build
@@ -29,9 +30,14 @@
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
 package() {
 cd "${srcdir}/${_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}"


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:30:47
  Author: felixonmars
Revision: 273655

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 273654, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:30:47 UTC (rev 273655)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.4
+pkgrel=23
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-decimal'
+ 'haskell-docopt' 'haskell-either' 'haskell-microlens' 
'haskell-microlens-platform'
+ 'haskell-safe' 'haskell-servant-server' 'haskell-servant-swagger' 
'haskell-swagger2'
+ 'haskell-text' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('e71231c8d4602affdfcdd229fe488331c4f827c9274d17e0e711eea853e4dbc51bb47652081ae7d822e836b8932970fc01169649f1652716c00036be45a8e547')
+
+prepare() {
+sed -i 's/, swagger2 >= 2.0 && < 2.2/, swagger2 >= 2.0/' 
$pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:30:27
  Author: felixonmars
Revision: 273654

upgpkg: hledger-api 1.4-23

rebuild with servant-swagger,1.1.4 (+tests)

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:29:08 UTC (rev 273653)
+++ PKGBUILD2017-12-11 07:30:27 UTC (rev 273654)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-api
 pkgver=1.4
-pkgrel=22
+pkgrel=23
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:29:08
  Author: felixonmars
Revision: 273653

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-servant-swagger/repos/community-staging-x86_64/
  haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD
(from rev 273652, haskell-servant-swagger/trunk/PKGBUILD)

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

Copied: haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD (from 
rev 273652, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-11 07:29:08 UTC (rev 273653)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.4
+pkgrel=7
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-http-media' 
'haskell-insert-ordered-containers'
+ 'haskell-lens' 'haskell-servant' 'haskell-swagger2' 'haskell-text'
+ 'haskell-unordered-containers' 'haskell-hspec' 'haskell-quickcheck')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-cabal-doctest' 
'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('990e8c03d6ed6da0ac15d80cd4bce5a46f816fce4e6cfb8eb11db664d09662075ae1ef3508a682fc695a76e3952d080c4e406a0cdb12b995e044935e408cd516')
+
+prepare() {
+sed -i '/test-suite doctests/a \  x-doctest-options: -dynamic' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_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
+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
+}
+
+package() {
+cd "${srcdir}/${_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-servant-swagger/trunk (PKGBUILD)

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:28:46
  Author: felixonmars
Revision: 273652

upgpkg: haskell-servant-swagger 1.1.4-7

rebuild with servant-swagger,1.1.4 (+tests)

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:25:59 UTC (rev 273651)
+++ PKGBUILD2017-12-11 07:28:46 UTC (rev 273652)
@@ -5,23 +5,27 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.4
-pkgrel=6
+pkgrel=7
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger;
 license=("custom:BSD3")
 arch=('x86_64')
-depends=('ghc-libs' "haskell-aeson" "haskell-http-media" 
"haskell-insert-ordered-containers"
- "haskell-lens" "haskell-servant" "haskell-swagger2" "haskell-text"
- "haskell-unordered-containers" "haskell-hspec" "haskell-quickcheck")
-makedepends=('ghc')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-http-media' 
'haskell-insert-ordered-containers'
+ 'haskell-lens' 'haskell-servant' 'haskell-swagger2' 'haskell-text'
+ 'haskell-unordered-containers' 'haskell-hspec' 'haskell-quickcheck')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-cabal-doctest' 
'haskell-doctest')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 
sha512sums=('990e8c03d6ed6da0ac15d80cd4bce5a46f816fce4e6cfb8eb11db664d09662075ae1ef3508a682fc695a76e3952d080c4e406a0cdb12b995e044935e408cd516')
 
+prepare() {
+sed -i '/test-suite doctests/a \  x-doctest-options: -dynamic' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
 runhaskell Setup build
 runhaskell Setup register --gen-script
@@ -30,6 +34,11 @@
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
 package() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 


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

2017-12-10 Thread Christian Hesse via arch-commits
Date: Monday, December 11, 2017 @ 07:25:45
  Author: eworm
Revision: 273650

upgpkg: wireguard 0.0.20171211-1

new upstream release

Modified:
  wireguard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 07:04:31 UTC (rev 273649)
+++ PKGBUILD2017-12-11 07:25:45 UTC (rev 273650)
@@ -4,7 +4,7 @@
 
 pkgbase=wireguard
 pkgname=(wireguard-dkms wireguard-tools)
-pkgver=0.0.20171127
+pkgver=0.0.20171211
 pkgrel=1
 pkgdesc='next generation secure network tunnel'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 license=('GPL')
 makedepends=('git' 'libmnl')
 
source=("${pkgbase}-${pkgver}.tar.xz::https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${pkgver}.tar.xz;)
-sha256sums=('5e0a93e70e5758ddebaaa94d3df74cb664f592895efbd43dc6171ee5b25b')
+sha256sums=('57d799d35e92c905e548d00adeb7ed1ead4d6560f084c99e5aae0a87b4eb09e4')
 
 prepare() {
cd WireGuard-${pkgver}/


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

2017-12-10 Thread Christian Hesse via arch-commits
Date: Monday, December 11, 2017 @ 07:25:59
  Author: eworm
Revision: 273651

archrelease: copy trunk to community-x86_64

Added:
  wireguard/repos/community-x86_64/PKGBUILD
(from rev 273650, wireguard/trunk/PKGBUILD)
Deleted:
  wireguard/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-11 07:25:45 UTC (rev 273650)
+++ PKGBUILD2017-12-11 07:25:59 UTC (rev 273651)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Jason A. Donenfeld 
-
-pkgbase=wireguard
-pkgname=(wireguard-dkms wireguard-tools)
-pkgver=0.0.20171127
-pkgrel=1
-pkgdesc='next generation secure network tunnel'
-arch=('x86_64')
-url='http://www.wireguard.com/'
-license=('GPL')
-makedepends=('git' 'libmnl')
-source=("${pkgbase}-${pkgver}.tar.xz::https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${pkgver}.tar.xz;)
-sha256sums=('5e0a93e70e5758ddebaaa94d3df74cb664f592895efbd43dc6171ee5b25b')
-
-prepare() {
-   cd WireGuard-${pkgver}/
-
-   find contrib/examples/ -name '.gitignore' -delete
-}
-
-build() {
-   cd WireGuard-${pkgver}/
-
-   make -C src/tools/
-}
-
-package_wireguard-dkms() {
-   depends=('dkms')
-   provides=('WIREGUARD-MODULE')
-
-   cd WireGuard-${pkgver}/
-
-   make -C src/ \
-   DESTDIR="${pkgdir}/" \
-   DKMSDIR="/usr/src/wireguard-${pkgver}/" \
-   dkms-install
-}
-
-package_wireguard-tools() {
-   depends=('libmnl' 'WIREGUARD-MODULE')
-   optdepends=('openresolv: for DNS functionality')
-
-   cd WireGuard-${pkgver}/
-
-   make -C src/tools/ \
-   DESTDIR="${pkgdir}/" \
-   WITH_BASHCOMPLETION=yes \
-WITH_WGQUICK=yes \
-WITH_SYSTEMDUNITS=yes \
-install
-
-   install -d -m0755 "${pkgdir}"/usr/share/${pkgbase}/
-   cp -r contrib/examples/ "${pkgdir}"/usr/share/${pkgbase}/
-}
-

Copied: wireguard/repos/community-x86_64/PKGBUILD (from rev 273650, 
wireguard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-11 07:25:59 UTC (rev 273651)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgbase=wireguard
+pkgname=(wireguard-dkms wireguard-tools)
+pkgver=0.0.20171211
+pkgrel=1
+pkgdesc='next generation secure network tunnel'
+arch=('x86_64')
+url='http://www.wireguard.com/'
+license=('GPL')
+makedepends=('git' 'libmnl')
+source=("${pkgbase}-${pkgver}.tar.xz::https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${pkgver}.tar.xz;)
+sha256sums=('57d799d35e92c905e548d00adeb7ed1ead4d6560f084c99e5aae0a87b4eb09e4')
+
+prepare() {
+   cd WireGuard-${pkgver}/
+
+   find contrib/examples/ -name '.gitignore' -delete
+}
+
+build() {
+   cd WireGuard-${pkgver}/
+
+   make -C src/tools/
+}
+
+package_wireguard-dkms() {
+   depends=('dkms')
+   provides=('WIREGUARD-MODULE')
+
+   cd WireGuard-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   DKMSDIR="/usr/src/wireguard-${pkgver}/" \
+   dkms-install
+}
+
+package_wireguard-tools() {
+   depends=('libmnl' 'WIREGUARD-MODULE')
+   optdepends=('openresolv: for DNS functionality')
+
+   cd WireGuard-${pkgver}/
+
+   make -C src/tools/ \
+   DESTDIR="${pkgdir}/" \
+   WITH_BASHCOMPLETION=yes \
+WITH_WGQUICK=yes \
+WITH_SYSTEMDUNITS=yes \
+install
+
+   install -d -m0755 "${pkgdir}"/usr/share/${pkgbase}/
+   cp -r contrib/examples/ "${pkgdir}"/usr/share/${pkgbase}/
+}
+


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:04:08
  Author: felixonmars
Revision: 273648

upgpkg: deepin-movie 1:3.0.2-1

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 04:14:10 UTC (rev 273647)
+++ PKGBUILD2017-12-11 07:04:08 UTC (rev 273648)
@@ -3,8 +3,8 @@
 
 pkgname=deepin-movie
 epoch=1
-pkgver=3.0.1
-pkgrel=2
+pkgver=3.0.2
+pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-movie-reborn;
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('abb83aef4e4414dd92f2decba38ece13965b9c86400b886a4d3e327b54b9a883eb1f4c4c091ff1a0e4918b03ed4aa8abf18261b7370f0b0fddc8d6ab9e88120c')
+sha512sums=('4054d6c0c2b27a51f32e13663305f4611b55d4a3b4dc996b9da94f74426b018e202cb5c1a940f2a753ada05d759411253518589b2392f2fd334127a85bb0d623')
 
 build(){
   cd deepin-movie-reborn-$pkgver


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Monday, December 11, 2017 @ 07:04:31
  Author: felixonmars
Revision: 273649

archrelease: copy trunk to community-x86_64

Added:
  deepin-movie/repos/community-x86_64/PKGBUILD
(from rev 273648, deepin-movie/trunk/PKGBUILD)
Deleted:
  deepin-movie/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-11 07:04:08 UTC (rev 273648)
+++ PKGBUILD2017-12-11 07:04:31 UTC (rev 273649)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=3.0.1
-pkgrel=2
-pkgdesc='Movie player based on QtAV'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn;
-license=('GPL3')
-depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('abb83aef4e4414dd92f2decba38ece13965b9c86400b886a4d3e327b54b9a883eb1f4c4c091ff1a0e4918b03ed4aa8abf18261b7370f0b0fddc8d6ab9e88120c')
-
-build(){
-  cd deepin-movie-reborn-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
-  make
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-movie/repos/community-x86_64/PKGBUILD (from rev 273648, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-11 07:04:31 UTC (rev 273649)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=3.0.2
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn;
+license=('GPL3')
+depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
+sha512sums=('4054d6c0c2b27a51f32e13663305f4611b55d4a3b4dc996b9da94f74426b018e202cb5c1a940f2a753ada05d759411253518589b2392f2fd334127a85bb0d623')
+
+build(){
+  cd deepin-movie-reborn-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
+  make
+}
+
+package() {
+  cd deepin-movie-reborn-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-10 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, December 11, 2017 @ 04:14:01
  Author: svenstaro
Revision: 273646

upgpkg: fd-rs 6.1.0-1

Modified:
  fd-rs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 01:02:00 UTC (rev 273645)
+++ PKGBUILD2017-12-11 04:14:01 UTC (rev 273646)
@@ -2,7 +2,7 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=fd-rs
-pkgver=6.0.0
+pkgver=6.1.0
 pkgrel=1
 pkgdesc='Simple, fast and user-friendly alternative to find'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('MIT' 'APACHE')
 makedepends=('rust')
 source=("fd-rs-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('b3096e2e3eb757120ab62165baf6f656f963c6826fe3c4f15afd64beef7b3b33f20cb6e31e03d4cec73220afafd93b410f26a1e8ee5eea027000319da55a9e82')
+sha512sums=('05ac18a6476192799a5bc55c031cba8bdb6f1c41ec3640b2c4071bf8301f68e886dfe8364a03273a78e7f67847cfed3a45ae8d5189e807431df5cb2c91426b0e')
 
 build() {
   cd fd-$pkgver
@@ -25,7 +25,7 @@
 package() {
   cd fd-$pkgver
   install -Dm755 target/release/fd "$pkgdir"/usr/bin/fd
-  install -Dm644 target/release/build/fd-find-*/out/fd.bash-completion 
"$pkgdir"/usr/share/bash-completion/completions/fd.bash-completion
+  install -Dm644 target/release/build/fd-find-*/out/fd.bash 
"$pkgdir"/usr/share/bash-completion/completions/fd
   install -Dm644 target/release/build/fd-find-*/out/fd.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/fd.fish
   install -Dm644 target/release/build/fd-find-*/out/_fd 
"$pkgdir"/usr/share/zsh/site-functions/_fd
   install -Dm644 doc/fd.1 "$pkgdir"/usr/share/man/man1/fd.1


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

2017-12-10 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, December 11, 2017 @ 04:14:10
  Author: svenstaro
Revision: 273647

archrelease: copy trunk to community-x86_64

Added:
  fd-rs/repos/community-x86_64/PKGBUILD
(from rev 273646, fd-rs/trunk/PKGBUILD)
Deleted:
  fd-rs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-11 04:14:01 UTC (rev 273646)
+++ PKGBUILD2017-12-11 04:14:10 UTC (rev 273647)
@@ -1,36 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daniel M. Capella 
-
-pkgname=fd-rs
-pkgver=6.0.0
-pkgrel=1
-pkgdesc='Simple, fast and user-friendly alternative to find'
-arch=('x86_64')
-url=https://github.com/sharkdp/fd
-license=('MIT' 'APACHE')
-makedepends=('rust')
-source=("fd-rs-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('b3096e2e3eb757120ab62165baf6f656f963c6826fe3c4f15afd64beef7b3b33f20cb6e31e03d4cec73220afafd93b410f26a1e8ee5eea027000319da55a9e82')
-
-build() {
-  cd fd-$pkgver
-  cargo build --release
-}
-
-check() {
-  cd fd-$pkgver
-  cargo test --release
-}
-
-package() {
-  cd fd-$pkgver
-  install -Dm755 target/release/fd "$pkgdir"/usr/bin/fd
-  install -Dm644 target/release/build/fd-find-*/out/fd.bash-completion 
"$pkgdir"/usr/share/bash-completion/completions/fd.bash-completion
-  install -Dm644 target/release/build/fd-find-*/out/fd.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/fd.fish
-  install -Dm644 target/release/build/fd-find-*/out/_fd 
"$pkgdir"/usr/share/zsh/site-functions/_fd
-  install -Dm644 doc/fd.1 "$pkgdir"/usr/share/man/man1/fd.1
-  install -Dm644 LICENSE-APACHE 
"$pkgdir"/usr/share/licenses/fd-rs/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT "$pkgdir"/usr/share/licenses/fd-rs/LICENSE-MIT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fd-rs/repos/community-x86_64/PKGBUILD (from rev 273646, 
fd-rs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-11 04:14:10 UTC (rev 273647)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Daniel M. Capella 
+
+pkgname=fd-rs
+pkgver=6.1.0
+pkgrel=1
+pkgdesc='Simple, fast and user-friendly alternative to find'
+arch=('x86_64')
+url=https://github.com/sharkdp/fd
+license=('MIT' 'APACHE')
+makedepends=('rust')
+source=("fd-rs-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('05ac18a6476192799a5bc55c031cba8bdb6f1c41ec3640b2c4071bf8301f68e886dfe8364a03273a78e7f67847cfed3a45ae8d5189e807431df5cb2c91426b0e')
+
+build() {
+  cd fd-$pkgver
+  cargo build --release
+}
+
+check() {
+  cd fd-$pkgver
+  cargo test --release
+}
+
+package() {
+  cd fd-$pkgver
+  install -Dm755 target/release/fd "$pkgdir"/usr/bin/fd
+  install -Dm644 target/release/build/fd-find-*/out/fd.bash 
"$pkgdir"/usr/share/bash-completion/completions/fd
+  install -Dm644 target/release/build/fd-find-*/out/fd.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/fd.fish
+  install -Dm644 target/release/build/fd-find-*/out/_fd 
"$pkgdir"/usr/share/zsh/site-functions/_fd
+  install -Dm644 doc/fd.1 "$pkgdir"/usr/share/man/man1/fd.1
+  install -Dm644 LICENSE-APACHE 
"$pkgdir"/usr/share/licenses/fd-rs/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT "$pkgdir"/usr/share/licenses/fd-rs/LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in shadow/trunk (PKGBUILD useradd.defaults)

2017-12-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, December 11, 2017 @ 03:31:57
  Author: seblu
Revision: 312162

upgpkg: shadow 4.5-3

- fix shadow.service md5sum
- fix FS#56316

Modified:
  shadow/trunk/PKGBUILD
  shadow/trunk/useradd.defaults

--+
 PKGBUILD |6 +++---
 useradd.defaults |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 01:18:05 UTC (rev 312161)
+++ PKGBUILD2017-12-11 03:31:57 UTC (rev 312162)
@@ -4,7 +4,7 @@
 
 pkgname=shadow
 pkgver=4.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Password and account management tool suite with support for shadow 
files and PAM"
 arch=('x86_64')
 url='https://github.com/shadow-maint/shadow'
@@ -41,8 +41,8 @@
   '12427b1ca92a9b85ca8202239f0d9f50198b818f'
   '611be25d91c3f8f307c7fe2485d5f781e5dee75f'
   'a154a94b47a3d0c6c287253b98c0d10b861226d0'
-  '7372dfd8a3030bee4ec39c79bad4f9b9c6f8687a'
-  '9ae93de5987dd0ae428f0cc1a5a5a5cd53583f19'
+  'b5540736f5acbc23b568973eb5645604762db3dd'
+  'c173208c5cf34528602f9931468a67b7f68abad3'
   '6010fffeed1fc6673ad9875492e1193b1a847b53'
   '21e12966a6befb25ec123b403cd9b5c492fe5b16')
 

Modified: useradd.defaults
===
--- useradd.defaults2017-12-11 01:18:05 UTC (rev 312161)
+++ useradd.defaults2017-12-11 03:31:57 UTC (rev 312162)
@@ -1,6 +1,6 @@
 # useradd defaults file for ArchLinux
 # original changes by TomK
-GROUP=100
+GROUP=users
 HOME=/home
 INACTIVE=-1
 EXPIRE=


[arch-commits] Commit in shadow/repos (15 files)

2017-12-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, December 11, 2017 @ 03:32:15
  Author: seblu
Revision: 312163

archrelease: copy trunk to testing-x86_64

Added:
  shadow/repos/testing-x86_64/
  shadow/repos/testing-x86_64/LICENSE
(from rev 312162, shadow/trunk/LICENSE)
  shadow/repos/testing-x86_64/PKGBUILD
(from rev 312162, shadow/trunk/PKGBUILD)
  shadow/repos/testing-x86_64/chgpasswd
(from rev 312162, shadow/trunk/chgpasswd)
  shadow/repos/testing-x86_64/chpasswd
(from rev 312162, shadow/trunk/chpasswd)
  shadow/repos/testing-x86_64/defaults.pam
(from rev 312162, shadow/trunk/defaults.pam)
  shadow/repos/testing-x86_64/login.defs
(from rev 312162, shadow/trunk/login.defs)
  shadow/repos/testing-x86_64/newusers
(from rev 312162, shadow/trunk/newusers)
  shadow/repos/testing-x86_64/passwd
(from rev 312162, shadow/trunk/passwd)
  shadow/repos/testing-x86_64/shadow-strncpy-usage.patch
(from rev 312162, shadow/trunk/shadow-strncpy-usage.patch)
  shadow/repos/testing-x86_64/shadow.install
(from rev 312162, shadow/trunk/shadow.install)
  shadow/repos/testing-x86_64/shadow.service
(from rev 312162, shadow/trunk/shadow.service)
  shadow/repos/testing-x86_64/shadow.timer
(from rev 312162, shadow/trunk/shadow.timer)
  shadow/repos/testing-x86_64/useradd.defaults
(from rev 312162, shadow/trunk/useradd.defaults)
  shadow/repos/testing-x86_64/xstrdup.patch
(from rev 312162, shadow/trunk/xstrdup.patch)

+
 LICENSE|   31 ++
 PKGBUILD   |  150 +++
 chgpasswd  |4 
 chpasswd   |6 +
 defaults.pam   |6 +
 login.defs |  208 +++
 newusers   |6 +
 passwd |4 
 shadow-strncpy-usage.patch |   25 +
 shadow.install |9 +
 shadow.service |   11 ++
 shadow.timer   |7 +
 useradd.defaults   |9 +
 xstrdup.patch  |9 +
 14 files changed, 485 insertions(+)

Copied: shadow/repos/testing-x86_64/LICENSE (from rev 312162, 
shadow/trunk/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2017-12-11 03:32:15 UTC (rev 312163)
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 1990 - 1994, Julianne Frances Haugh
+ * Copyright (c) 1996 - 2000, Marek Michałkiewicz
+ * Copyright (c) 2001 - 2006, Tomasz Kłoczko
+ * Copyright (c) 2007 - 2009, Nicolas François
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *notice, this list of conditions and the following disclaimer in the
+ *documentation and/or other materials provided with the distribution.
+ * 3. The name of the copyright holders or contributors may not be used to
+ *endorse or promote products derived from this software without
+ *specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
+ * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */

Copied: shadow/repos/testing-x86_64/PKGBUILD (from rev 312162, 
shadow/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-11 03:32:15 UTC (rev 312163)
@@ -0,0 +1,150 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Aaron Griffin 
+
+pkgname=shadow
+pkgver=4.5
+pkgrel=3
+pkgdesc="Password and account management tool suite with support for shadow 
files and PAM"
+arch=('x86_64')
+url='https://github.com/shadow-maint/shadow'
+license=('BSD')
+groups=('base')
+depends=('bash' 'pam' 'acl')
+makedepends=('git' 'libxslt' 'docbook-xsl' 'gnome-doc-utils')
+backup=(etc/login.defs
+etc/pam.d/{chage,passwd,shadow,useradd,usermod,userdel}
+  

[arch-commits] Commit in geoip-database/repos/extra-any (4 files)

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:18:05
  Author: foutrelis
Revision: 312161

archrelease: copy trunk to extra-any

Added:
  geoip-database/repos/extra-any/PKGBUILD
(from rev 312160, geoip-database/trunk/PKGBUILD)
  geoip-database/repos/extra-any/check-last-modified.sh
(from rev 312160, geoip-database/trunk/check-last-modified.sh)
Deleted:
  geoip-database/repos/extra-any/PKGBUILD
  geoip-database/repos/extra-any/check-last-modified.sh

+
 PKGBUILD   |  194 +++
 check-last-modified.sh |   52 ++--
 2 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-11 01:17:57 UTC (rev 312160)
+++ PKGBUILD2017-12-11 01:18:05 UTC (rev 312161)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-
-pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20171107
-pkgrel=1
-arch=('any')
-url="https://dev.maxmind.com/geoip/legacy/geolite/;
-license=('custom:OPEN DATA LICENSE')
-checkdepends=('geoip')
-source=(GeoIP-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
-
GeoIPv6-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz
-
GeoLiteCity-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
-
GeoLiteCityv6-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz
-
GeoIPASNum-$pkgver.dat.gz::https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz
-
GeoIPASNumv6-$pkgver.dat.gz::https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz
-
GeoIP-LICENSE.txt::https://geolite.maxmind.com/download/geoip/database/LICENSE.txt)
-noextract=(GeoIP-$pkgver.dat.gz
-   GeoIPv6-$pkgver.dat.gz
-   GeoLiteCity-$pkgver.dat.gz
-   GeoLiteCityv6-$pkgver.dat.gz
-   GeoIPASNum-$pkgver.dat.gz
-   GeoIPASNumv6-$pkgver.dat.gz)
-sha256sums=('84a9e2689bcc5b2ac8f709ced4de43d285a4e8147c71337fb58a7e1e02adefd9'
-'a0c489422a955e49305c671c9b881686ee006d8674e0549f23f1975c5f4f0071'
-'7a4927538d933afe724c636e7b1a900c7f55ea8f42748703bfb2f5b2b5542b32'
-'6c3a98325d993e8adb9c24b711cec4bc72581dba72e039d6733912a3df5fbcd1'
-'c8f5e78af3e0eb0f59e1009f4d5d7aabe815e1722af777eeb57606f1c329731f'
-'d4b565d271b0ac772a8f5f754ae01ae8ba567fc9a681f3bb82ec39f90cd340d9'
-'83a4cb82ef8953c0107886b49bc39fcf77590a222d30e778d48f5d92f5b5e383')
-
-prepare() {
-  cd "$srcdir"
-
-  for _database_name in GeoIP GeoLiteCity GeoIPASNum; do
-gunzip -c $_database_name-$pkgver.dat.gz 
>${_database_name/GeoLite/GeoIP}.dat
-gunzip -c ${_database_name}v6-$pkgver.dat.gz 
>${_database_name/GeoLite/GeoIP}v6.dat
-  done
-}
-
-check() {
-  cd "$srcdir"
-
-  if [[ $(geoiplookup -f GeoIP.dat 8.8.8.8) != *'US, United States' ]]; then
-error 'Unable to resolve IPv4 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPv6.dat 2001:4860:4860::) != *'US, United 
States' ]]; then
-error 'Unable to resolve IPv6 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPCity.dat 8.8.8.8) != *'US, N/A, N/A'* ]]; then
-error 'Unable to resolve IPv4 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPCityv6.dat 2001:4860:4860::) != *'US, N/A, 
N/A'* ]]; then
-error 'Unable to resolve IPv6 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPASNum.dat 8.8.8.8) != *'AS15169 Google Inc.' ]]; 
then
-error 'Unable to resolve IPv4 address to ASN.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPASNumv6.dat 2001:4860:4860::) != *'AS15169 
Google Inc.' ]]; then
-error 'Unable to resolve IPv6 address to ASN.'
-return 1
-  fi
-}
-
-package_geoip-database() {
-  pkgdesc="GeoLite country geolocation database compiled by MaxMind"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIP{,v6}.dat
-
-  install -Dm644 GeoIP-LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_geoip-database-extra() {
-  pkgdesc="GeoLite city/ASN geolocation databases compiled by MaxMind"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIPCity{,v6}.dat 
GeoIPASNum{,v6}.dat
-
-  install -Dm644 GeoIP-LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip-database/repos/extra-any/PKGBUILD (from rev 312160, 
geoip-database/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-11 01:18:05 UTC (rev 312161)
@@ -0,0 +1,97 @@
+# $Id$
+# 

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

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:17:57
  Author: foutrelis
Revision: 312160

upgpkg: geoip-database 20171205-1

New upstream release.

Modified:
  geoip-database/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 01:13:43 UTC (rev 312159)
+++ PKGBUILD2017-12-11 01:17:57 UTC (rev 312160)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20171107
+pkgver=20171205
 pkgrel=1
 arch=('any')
 url="https://dev.maxmind.com/geoip/legacy/geolite/;
@@ -21,12 +21,12 @@
GeoLiteCityv6-$pkgver.dat.gz
GeoIPASNum-$pkgver.dat.gz
GeoIPASNumv6-$pkgver.dat.gz)
-sha256sums=('84a9e2689bcc5b2ac8f709ced4de43d285a4e8147c71337fb58a7e1e02adefd9'
-'a0c489422a955e49305c671c9b881686ee006d8674e0549f23f1975c5f4f0071'
-'7a4927538d933afe724c636e7b1a900c7f55ea8f42748703bfb2f5b2b5542b32'
-'6c3a98325d993e8adb9c24b711cec4bc72581dba72e039d6733912a3df5fbcd1'
-'c8f5e78af3e0eb0f59e1009f4d5d7aabe815e1722af777eeb57606f1c329731f'
-'d4b565d271b0ac772a8f5f754ae01ae8ba567fc9a681f3bb82ec39f90cd340d9'
+sha256sums=('eb1c7c8275a98df4e94966ce0af6260b0b9c20995a09a43941cd49ed880d6424'
+'103bcb3b7b7b33db879d57631f31a195b14c793fd3e7a26d877a7e77918f8c8b'
+'4a47770de542db6799c039f6637c1d96ebb41f3966b23f1f61d548b7f8729693'
+'3ee04557373e4729983b81ef70fed0333ee66bcaba635983794fb43ce44b754e'
+'68a139099f68f02c66fdb809b1939c372f79da347c8b9da65e4b6bff4e355000'
+'81f7d1013a2d8dcd9000174a2be1cff3f716f8119ccf01baff205c393db6e577'
 '83a4cb82ef8953c0107886b49bc39fcf77590a222d30e778d48f5d92f5b5e383')
 
 prepare() {
@@ -61,12 +61,12 @@
 return 1
   fi
 
-  if [[ $(geoiplookup -f GeoIPASNum.dat 8.8.8.8) != *'AS15169 Google Inc.' ]]; 
then
+  if [[ $(geoiplookup -f GeoIPASNum.dat 8.8.8.8) != *'AS15169 Google LLC' ]]; 
then
 error 'Unable to resolve IPv4 address to ASN.'
 return 1
   fi
 
-  if [[ $(geoiplookup6 -f GeoIPASNumv6.dat 2001:4860:4860::) != *'AS15169 
Google Inc.' ]]; then
+  if [[ $(geoiplookup6 -f GeoIPASNumv6.dat 2001:4860:4860::) != *'AS15169 
Google LLC' ]]; then
 error 'Unable to resolve IPv6 address to ASN.'
 return 1
   fi


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

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:13:33
  Author: foutrelis
Revision: 312158

upgpkg: dialog 1:1.3_20171209-1

New upstream release.

Modified:
  dialog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 00:33:58 UTC (rev 312157)
+++ PKGBUILD2017-12-11 01:13:33 UTC (rev 312158)
@@ -5,17 +5,17 @@
 # Contributor: Andreas Radke 
 
 pkgname=dialog
-pkgver=1.3_20170509
+pkgver=1.3_20171209
 pkgrel=1
 epoch=1
 pkgdesc="A tool to display dialog boxes from shell scripts"
 arch=('x86_64')
-url="http://invisible-island.net/dialog/;
+url="https://invisible-island.net/dialog/;
 license=('LGPL2.1')
 depends=('sh' 'ncurses')
 provides=('libdialog.so')
-source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
-sha256sums=('2ff1ba74c632b9d13a0d0d2c942295dd4e8909694eeeded7908a467d0bcd4756')
+source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz)
+sha256sums=('20139442119e2eff5c35236e8e5e313c901539008d9cccf8c8ab3851b41267e6')
 
 build() {
   cd "$srcdir/$pkgname-${pkgver/_/-}"


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

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:13:43
  Author: foutrelis
Revision: 312159

archrelease: copy trunk to testing-x86_64

Added:
  dialog/repos/testing-x86_64/
  dialog/repos/testing-x86_64/PKGBUILD
(from rev 312158, dialog/trunk/PKGBUILD)

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

Copied: dialog/repos/testing-x86_64/PKGBUILD (from rev 312158, 
dialog/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-11 01:13:43 UTC (rev 312159)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=dialog
+pkgver=1.3_20171209
+pkgrel=1
+epoch=1
+pkgdesc="A tool to display dialog boxes from shell scripts"
+arch=('x86_64')
+url="https://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('sh' 'ncurses')
+provides=('libdialog.so')
+source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz)
+sha256sums=('20139442119e2eff5c35236e8e5e313c901539008d9cccf8c8ab3851b41267e6')
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  ./configure \
+--prefix=/usr \
+--enable-nls \
+--with-libtool \
+--with-ncursesw
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  make DESTDIR="$pkgdir" install-full
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:02:00
  Author: foutrelis
Revision: 273645

archrelease: copy trunk to community-x86_64

Added:
  axel/repos/community-x86_64/PKGBUILD
(from rev 273644, axel/trunk/PKGBUILD)
Deleted:
  axel/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-11 01:01:49 UTC (rev 273644)
+++ PKGBUILD2017-12-11 01:02:00 UTC (rev 273645)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Roman G 
-
-pkgname=axel
-pkgver=2.16
-pkgrel=1
-pkgdesc="Light command line download accelerator"
-arch=('x86_64')
-url="https://github.com/eribertomota/axel;
-license=('GPL')
-depends=('glibc' 'openssl')
-source=(https://github.com/axel-download-accelerator/axel/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('bd65f8d8add34ab61ce1fb9e1c7b1c3449b1cfd981ce48aeee218e755ba0d6fb')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: axel/repos/community-x86_64/PKGBUILD (from rev 273644, 
axel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-11 01:02:00 UTC (rev 273645)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Roman G 
+
+pkgname=axel
+pkgver=2.16.1
+pkgrel=1
+pkgdesc="Light command line download accelerator"
+arch=('x86_64')
+url="https://github.com/eribertomota/axel;
+license=('GPL')
+depends=('glibc' 'openssl')
+source=(https://github.com/axel-download-accelerator/axel/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('d34094eb63eaebc989f96eabdda091dcfb28e840bb8d274a5f216775941f59e4')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:01:49
  Author: foutrelis
Revision: 273644

upgpkg: axel 2.16.1-1

New upstream release.

Modified:
  axel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-11 01:00:54 UTC (rev 273643)
+++ PKGBUILD2017-12-11 01:01:49 UTC (rev 273644)
@@ -3,7 +3,7 @@
 # Contributor: Roman G 
 
 pkgname=axel
-pkgver=2.16
+pkgver=2.16.1
 pkgrel=1
 pkgdesc="Light command line download accelerator"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=('glibc' 'openssl')
 
source=(https://github.com/axel-download-accelerator/axel/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('bd65f8d8add34ab61ce1fb9e1c7b1c3449b1cfd981ce48aeee218e755ba0d6fb')
+sha256sums=('d34094eb63eaebc989f96eabdda091dcfb28e840bb8d274a5f216775941f59e4')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:00:54
  Author: foutrelis
Revision: 273643

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-11 01:00:41 UTC (rev 273642)
+++ PKGBUILD2017-12-11 01:00:54 UTC (rev 273643)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 

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

2017-12-10 Thread Evangelos Foutras via arch-commits
Date: Monday, December 11, 2017 @ 01:00:41
  Author: foutrelis
Revision: 273642

upgpkg: python-stevedore 1.28.0-1

New upstream release.

Modified:
  python-stevedore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 22:25:31 UTC (rev 273641)
+++ PKGBUILD2017-12-11 01:00:41 UTC (rev 273642)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras 

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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Monday, December 11, 2017 @ 00:33:58
  Author: bisson
Revision: 312157

db-move: moved pinentry from [testing] to [core] (x86_64)

Added:
  pinentry/repos/core-x86_64/PKGBUILD
(from rev 312156, pinentry/repos/testing-x86_64/PKGBUILD)
Deleted:
  pinentry/repos/core-x86_64/PKGBUILD
  pinentry/repos/testing-x86_64/

--+
 /PKGBUILD|   41 +
 core-x86_64/PKGBUILD |   40 
 2 files changed, 41 insertions(+), 40 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2017-12-11 00:33:54 UTC (rev 312156)
+++ core-x86_64/PKGBUILD2017-12-11 00:33:58 UTC (rev 312157)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Maintainer: Gaetan Bisson 
-
-pkgname=pinentry
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol'
-url='http://gnupg.org/related_software/pinentry/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('ncurses' 'libcap' 'libassuan' 'libsecret')
-makedepends=('gtk2' 'qt5-base' 'gcr')
-optdepends=('gtk2: gtk2 backend'
-'qt5-base: qt backend'
-'gcr: gnome3 backend')
-source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha1sums=('85d9ac81ebad3fb082514c505c90c39a0456f1f6' 'SKIP')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --enable-pinentry-tty \
-   --enable-pinentry-curses \
-   --enable-fallback-curses \
-   --enable-pinentry-emacs \
-   --enable-pinentry-gtk2 \
-   --enable-pinentry-gnome3 \
-   --enable-pinentry-qt \
-   --enable-libsecret \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: pinentry/repos/core-x86_64/PKGBUILD (from rev 312156, 
pinentry/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2017-12-11 00:33:58 UTC (rev 312157)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
+
+pkgname=pinentry
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol'
+url='http://gnupg.org/related_software/pinentry/'
+arch=('x86_64')
+license=('GPL')
+depends=('ncurses' 'libcap' 'libassuan' 'libsecret')
+makedepends=('gtk2' 'qt5-base' 'gcr')
+optdepends=('gtk2: gtk2 backend'
+'qt5-base: qt backend'
+'gcr: gnome3 backend')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('68076686fa724a290ea49cdf0d1c0c1500907d1b759a3bcbfbec0293e8f56570'
+'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --enable-pinentry-tty \
+   --enable-pinentry-curses \
+   --enable-fallback-curses \
+   --enable-pinentry-emacs \
+   --enable-pinentry-gtk2 \
+   --enable-pinentry-gnome3 \
+   --enable-pinentry-qt \
+   --enable-libsecret \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Monday, December 11, 2017 @ 00:33:54
  Author: bisson
Revision: 312156

db-move: moved libassuan from [testing] to [core] (x86_64)

Added:
  libassuan/repos/core-x86_64/PKGBUILD
(from rev 312155, libassuan/repos/testing-x86_64/PKGBUILD)
Deleted:
  libassuan/repos/core-x86_64/PKGBUILD
  libassuan/repos/testing-x86_64/

--+
 /PKGBUILD|   32 
 core-x86_64/PKGBUILD |   32 
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2017-12-10 22:21:06 UTC (rev 312155)
+++ core-x86_64/PKGBUILD2017-12-11 00:33:54 UTC (rev 312156)
@@ -1,32 +0,0 @@
-# $Id$
-# Contributor: Tobias Powalowski 
-# Maintainer: Gaetan Bisson 
-
-pkgname=libassuan
-pkgver=2.4.3
-pkgrel=1
-pkgdesc='IPC library used by some GnuPG related software'
-url='http://www.gnupg.org/related_software/libassuan/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libgpg-error')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha1sums=('27391cf4a820b5350ea789c30661830c9a271518'
-  'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: libassuan/repos/core-x86_64/PKGBUILD (from rev 312155, 
libassuan/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2017-12-11 00:33:54 UTC (rev 312156)
@@ -0,0 +1,32 @@
+# $Id$
+# Contributor: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
+
+pkgname=libassuan
+pkgver=2.5.1
+pkgrel=1
+pkgdesc='IPC library used by some GnuPG related software'
+url='http://www.gnupg.org/related_software/libassuan/'
+arch=('x86_64')
+license=('GPL')
+depends=('libgpg-error')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 10, 2017 @ 22:25:11
  Author: bisson
Revision: 273640

rebuild for protobuf-3.5.0.1-1

Modified:
  collectd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 22:08:58 UTC (rev 273639)
+++ PKGBUILD2017-12-10 22:25:11 UTC (rev 273640)
@@ -4,7 +4,7 @@
 
 pkgname=collectd
 pkgver=5.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='https://collectd.org/'
 arch=('x86_64')


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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 10, 2017 @ 22:25:31
  Author: bisson
Revision: 273641

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 273640, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 273640, collectd/trunk/service)

--+
 PKGBUILD |   78 +
 service  |   13 ++
 2 files changed, 91 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 273640, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-10 22:25:31 UTC (rev 273641)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=2
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='https://collectd.org/'
+arch=('x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+'libmariadbclient: mysql plugin'
+'iproute2: netlink plugin'
+'net-snmp: snmp plugin'
+'libnotify: notify_desktop plugin'
+'openipmi: ipmi plugin'
+'liboping: ping plugin'
+'libpcap: dns plugin'
+'perl: perl plugin'
+'postgresql-libs: postgresql plugin'
+'python2: python plugin'
+'rrdtool: rrdtool and rrdcached plugins'
+'lm_sensors: lm_sensors and sensors plugins'
+'libvirt: libvirt plugin'
+'libxml2: ascent and libvirt plugins'
+'yajl: curl_json plugin'
+'libatasmart: smart plugin'
+'lvm2: lvm plugin'
+'protobuf-c: write_riemann plugin'
+'mosquitto: MQTT plugin'
+'libmicrohttpd: prometheus plugin')
+
+makedepends=('curl' 'libdbi' 'libesmtp' 'libgcrypt' 'libmemcached'
+ 'libmariadbclient' 'iproute2' 'net-snmp' 'libnotify' 'openipmi'
+ 'liboping' 'libpcap' 'postgresql-libs' 'python2' 'rrdtool'
+ 'lm_sensors' 'libvirt' 'libxml2' 'yajl' 'libatasmart' 'lvm2'
+ 'protobuf-c' 'mosquitto' 'libmicrohttpd')
+
+depends=('libltdl' 'iptables')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --with-python=/usr/bin/python2 \
+   --with-perl-bindings='INSTALLDIRS=vendor'
+   make all
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rmdir "${pkgdir}/var/run" # FS#30201
+   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
+   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
+}

Copied: collectd/repos/community-staging-x86_64/service (from rev 273640, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2017-12-10 22:25:31 UTC (rev 273641)
@@ -0,0 +1,13 @@
+[Unit]
+Description=System statistics collection daemon
+After=local-fs.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/collectdmon.pid
+ExecStart=/usr/bin/collectdmon
+ExecReload=/bin/kill -HUP $MAINPID
+Restart=always
+
+[Install]
+WantedBy=multi-user.target


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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 10, 2017 @ 22:21:06
  Author: bisson
Revision: 312155

archrelease: copy trunk to extra-x86_64

Added:
  graphicsmagick/repos/extra-x86_64/PKGBUILD
(from rev 312154, graphicsmagick/trunk/PKGBUILD)
Deleted:
  graphicsmagick/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 22:19:28 UTC (rev 312154)
+++ PKGBUILD2017-12-10 22:21:06 UTC (rev 312155)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Maintainer: Gaetan Bisson 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Anton Leontiev 
-
-pkgname=graphicsmagick
-pkgver=1.3.26
-pkgrel=4
-pkgdesc='Image processing system'
-url='http://www.graphicsmagick.org/'
-arch=('i686' 'x86_64')
-license=('MIT')
-optdepends=('jasper: jp2 module'
-'libpng: png module'
-'libwmf: wmf module'
-'libxml2: msl, svg, url modules'
-'libtiff: ps2, ps3, tiff modules'
-'ghostscript: pdf, ps modules')
-makedepends=('perl' 'jasper' 'libpng' 'libwmf' 'libxml2' 'libtiff')
-depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz')
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
-sha256sums=('fba015f3d5e5d5f17e57db663f1aa9d338e7b62f1d415b85d13ee366927e5f88')
-
-options=('!emptydirs' 'libtool')
-
-build() {
-   cd "${srcdir}/GraphicsMagick-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --enable-shared \
-   --with-modules \
-   --with-perl \
-   --with-gs-font-dir=/usr/share/fonts/Type1 \
-   --with-quantum-depth=16 \
-   --with-threads
-   make
-}
-
-package() {
-   cd "${srcdir}/GraphicsMagick-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-
-   # Install MIT license
-   install -Dm644 "Copyright.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/Copyright.txt"
-
-   # Install perl bindings
-   # The patching was introduced in order to build perl module without 
installing package itself and
-   # not to introduce unnecessary path into LD_RUN_PATH
-   cd PerlMagick
-   sed -i -e "s:'LDDLFLAGS'  => \"\(.*\)\":'LDDLFLAGS'  => 
\"-L${pkgdir}/usr/lib \1\":" Makefile.PL
-   perl Makefile.PL INSTALLDIRS=vendor PREFIX=/usr DESTDIR="${pkgdir}"
-   sed -i -e "s/LDLOADLIBS =/LDLOADLIBS = -lGraphicsMagick/" Makefile
-   make
-   make install
-
-   # Remove perllocal.pod and .packlist
-   rm -r "${pkgdir}"/usr/lib/perl5/*/core_perl
-   rm 
"${pkgdir}"/usr/lib/perl5/*/vendor_perl/auto/Graphics/Magick/.packlist
-}

Copied: graphicsmagick/repos/extra-x86_64/PKGBUILD (from rev 312154, 
graphicsmagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 22:21:06 UTC (rev 312155)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Maintainer: Gaetan Bisson 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Anton Leontiev 
+
+pkgname=graphicsmagick
+pkgver=1.3.27
+pkgrel=1
+pkgdesc='Image processing system'
+url='http://www.graphicsmagick.org/'
+arch=('x86_64')
+license=('MIT')
+optdepends=('jasper: jp2 module'
+'libpng: png module'
+'libwmf: wmf module'
+'libxml2: msl, svg, url modules'
+'libtiff: ps2, ps3, tiff modules'
+'ghostscript: pdf, ps modules')
+makedepends=('perl' 'jasper' 'libpng' 'libwmf' 'libxml2' 'libtiff')
+depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
+sha256sums=('d03278d2790efc1dc72309f85a539810d2a81deb47932f7e6720d09ac72d0367')
+
+options=('!emptydirs' 'libtool')
+
+build() {
+   cd "${srcdir}/GraphicsMagick-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --enable-shared \
+   --with-modules \
+   --with-perl \
+   --with-gs-font-dir=/usr/share/fonts/Type1 \
+   --with-quantum-depth=16 \
+   --with-threads
+   make
+}
+
+package() {
+   cd "${srcdir}/GraphicsMagick-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   # Install MIT license
+   install -Dm644 "Copyright.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/Copyright.txt"
+
+   # Install perl bindings
+   # The patching was introduced in order to build perl module without 
installing package itself and
+   # not to introduce unnecessary path into LD_RUN_PATH
+   cd 

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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 10, 2017 @ 22:19:28
  Author: bisson
Revision: 312154

upstream update

Modified:
  graphicsmagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 22:14:36 UTC (rev 312153)
+++ PKGBUILD2017-12-10 22:19:28 UTC (rev 312154)
@@ -5,8 +5,8 @@
 # Contributor: Anton Leontiev 
 
 pkgname=graphicsmagick
-pkgver=1.3.26
-pkgrel=4
+pkgver=1.3.27
+pkgrel=1
 pkgdesc='Image processing system'
 url='http://www.graphicsmagick.org/'
 arch=('x86_64')
@@ -20,7 +20,7 @@
 makedepends=('perl' 'jasper' 'libpng' 'libwmf' 'libxml2' 'libtiff')
 depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz')
 
source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
-sha256sums=('fba015f3d5e5d5f17e57db663f1aa9d338e7b62f1d415b85d13ee366927e5f88')
+sha256sums=('d03278d2790efc1dc72309f85a539810d2a81deb47932f7e6720d09ac72d0367')
 
 options=('!emptydirs' 'libtool')
 


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 22:14:36
  Author: arojas
Revision: 312153

archrelease: copy trunk to extra-x86_64

Added:
  nasm/repos/extra-x86_64/PKGBUILD
(from rev 312152, nasm/trunk/PKGBUILD)
Deleted:
  nasm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 22:13:55 UTC (rev 312152)
+++ PKGBUILD2017-12-10 22:14:36 UTC (rev 312153)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=nasm
-pkgver=2.13.01
-pkgrel=1
-pkgdesc="An 80x86 assembler designed for portability and modularity"
-arch=('i686' 'x86_64')
-url="http://www.nasm.us;
-license=('BSD')
-depends=('glibc')
-makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts' 'ttf-liberation' 'ghostscript')
-source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('b2ff7fbb085cfc7ba29f48cd79cb1e88bbcc128b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make -C doc
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make INSTALLROOT="${pkgdir}" install install_rdf
-  install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/nasm/LICENSE
-}

Copied: nasm/repos/extra-x86_64/PKGBUILD (from rev 312152, nasm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 22:14:36 UTC (rev 312153)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nasm
+pkgver=2.13.02
+pkgrel=1
+pkgdesc="An 80x86 assembler designed for portability and modularity"
+arch=('x86_64')
+url="http://www.nasm.us;
+license=('BSD')
+depends=('glibc')
+makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts' 'ttf-liberation' 'ghostscript')
+source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('9f2e5f95d7966fe609c7c20771d64254ee77204e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+  make -C doc
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make INSTALLROOT="${pkgdir}" install install_rdf
+  install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/nasm/LICENSE
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 22:13:55
  Author: arojas
Revision: 312152

Update to 2.13.02

Modified:
  nasm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 22:11:43 UTC (rev 312151)
+++ PKGBUILD2017-12-10 22:13:55 UTC (rev 312152)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=nasm
-pkgver=2.13.01
+pkgver=2.13.02
 pkgrel=1
 pkgdesc="An 80x86 assembler designed for portability and modularity"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts' 'ttf-liberation' 'ghostscript')
 
source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('b2ff7fbb085cfc7ba29f48cd79cb1e88bbcc128b')
+sha1sums=('9f2e5f95d7966fe609c7c20771d64254ee77204e')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in nginx/trunk (service)

2017-12-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Sunday, December 10, 2017 @ 22:11:43
  Author: bpiotrowski
Revision: 312151

Use SIGTERM for KillSignal

Modified:
  nginx/trunk/service

-+
 service |1 -
 1 file changed, 1 deletion(-)

Modified: service
===
--- service 2017-12-10 21:54:59 UTC (rev 312150)
+++ service 2017-12-10 22:11:43 UTC (rev 312151)
@@ -10,7 +10,6 @@
 
 ExecStart=/usr/bin/nginx -g 'pid /run/nginx.pid; error_log stderr;'
 ExecReload=/usr/bin/nginx -s reload
-KillSignal=SIGQUIT
 KillMode=mixed
 
 [Install]


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 22:08:58
  Author: arojas
Revision: 273639

archrelease: copy trunk to community-x86_64

Added:
  audacity/repos/community-x86_64/PKGBUILD
(from rev 273638, audacity/trunk/PKGBUILD)
Deleted:
  audacity/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 22:07:50 UTC (rev 273638)
+++ PKGBUILD2017-12-10 22:08:58 UTC (rev 273639)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=audacity
-pkgver=2.2.0
-pkgrel=1
-pkgdesc="A program that lets you manipulate digital audio waveforms"
-arch=('i686' 'x86_64')
-url="http://audacityteam.org;
-license=('GPL')
-depends=('libmad' 'libid3tag' 'wxgtk3' 'lame' 'soundtouch'
- 'ffmpeg' 'vamp-plugin-sdk' 'portsmf' 'twolame' 'lv2' 'suil' 'lilv') # 
sbsms - needs unreleased version
-makedepends=('cmake' 'python2')
-source=(https://github.com/audacity/audacity/archive/Audacity-${pkgver}.zip)
-sha256sums=('175b2224bcafad2c4436cc5776c9c6b9af3bb78a8d0f11baa6d851192f5218ad')
-
-build() {
-  cd audacity-Audacity-${pkgver}
-  WX_CONFIG=wx-config-gtk3 ./configure --prefix=/usr --with-libsamplerate
-  make
-}
-
-package() {
-  cd audacity-Audacity-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: audacity/repos/community-x86_64/PKGBUILD (from rev 273638, 
audacity/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 22:08:58 UTC (rev 273639)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=audacity
+pkgver=2.2.1
+pkgrel=1
+pkgdesc="A program that lets you manipulate digital audio waveforms"
+arch=('x86_64')
+url="http://audacityteam.org;
+license=('GPL')
+depends=('libmad' 'libid3tag' 'wxgtk3' 'lame' 'soundtouch'
+ 'ffmpeg' 'vamp-plugin-sdk' 'portsmf' 'twolame' 'lv2' 'suil' 'lilv') # 
sbsms - needs unreleased version
+makedepends=('cmake' 'python2')
+source=(https://github.com/audacity/audacity/archive/Audacity-${pkgver}.zip)
+sha256sums=('48dfff3d9319aa1a1a9e0e791846ca697b40079d05d652c900613415eede4db7')
+
+build() {
+  cd audacity-Audacity-${pkgver}
+  WX_CONFIG=wx-config-gtk3 ./configure --prefix=/usr --with-libsamplerate
+  make
+}
+
+package() {
+  cd audacity-Audacity-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 22:07:50
  Author: arojas
Revision: 273638

Update to 2.2.1

Modified:
  audacity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 21:58:13 UTC (rev 273637)
+++ PKGBUILD2017-12-10 22:07:50 UTC (rev 273638)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=audacity
-pkgver=2.2.0
+pkgver=2.2.1
 pkgrel=1
 pkgdesc="A program that lets you manipulate digital audio waveforms"
 arch=('x86_64')
@@ -12,7 +12,7 @@
  'ffmpeg' 'vamp-plugin-sdk' 'portsmf' 'twolame' 'lv2' 'suil' 'lilv') # 
sbsms - needs unreleased version
 makedepends=('cmake' 'python2')
 source=(https://github.com/audacity/audacity/archive/Audacity-${pkgver}.zip)
-sha256sums=('175b2224bcafad2c4436cc5776c9c6b9af3bb78a8d0f11baa6d851192f5218ad')
+sha256sums=('48dfff3d9319aa1a1a9e0e791846ca697b40079d05d652c900613415eede4db7')
 
 build() {
   cd audacity-Audacity-${pkgver}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 21:58:13
  Author: arojas
Revision: 273637

archrelease: copy trunk to community-x86_64

Added:
  augeas/repos/community-x86_64/PKGBUILD
(from rev 273636, augeas/trunk/PKGBUILD)
Deleted:
  augeas/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 21:57:34 UTC (rev 273636)
+++ PKGBUILD2017-12-10 21:58:13 UTC (rev 273637)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Thomas S Hatch 
-# Contributor: Jon Nordby 
-
-pkgname=augeas
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
-arch=('i686' 'x86_64')
-url="http://augeas.net;
-license=('LGPL')
-depends=('libxml2' 'gcc-libs')
-validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
-source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
-sha256sums=('65cf75b5a573fee2a5c6c6e3c95cad05f0101e70d3f9db10d53f6cc5b11bc9f9'
-'SKIP')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|Requires:.*|Requires: libxml-2.0|' augeas.pc.in
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: augeas/repos/community-x86_64/PKGBUILD (from rev 273636, 
augeas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 21:58:13 UTC (rev 273637)
@@ -0,0 +1,27 @@
+# $Id$
+# Contributor: Thomas S Hatch 
+# Contributor: Jon Nordby 
+
+pkgname=augeas
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
+arch=('x86_64')
+url="http://augeas.net;
+license=('LGPL')
+depends=('libxml2' 'gcc-libs')
+validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
+source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
+sha256sums=('2b463d398cabc9b42747aa61d3e83ed6a93ce03d9074cf8e7a7bd3107a668343'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 21:57:34
  Author: arojas
Revision: 273636

Update to 1.9.0

Modified:
  augeas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 21:51:07 UTC (rev 273635)
+++ PKGBUILD2017-12-10 21:57:34 UTC (rev 273636)
@@ -3,7 +3,7 @@
 # Contributor: Jon Nordby 
 
 pkgname=augeas
-pkgver=1.8.1
+pkgver=1.9.0
 pkgrel=1
 pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
 arch=('x86_64')
@@ -12,17 +12,16 @@
 depends=('libxml2' 'gcc-libs')
 validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
 source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
-sha256sums=('65cf75b5a573fee2a5c6c6e3c95cad05f0101e70d3f9db10d53f6cc5b11bc9f9'
+sha256sums=('2b463d398cabc9b42747aa61d3e83ed6a93ce03d9074cf8e7a7bd3107a668343'
 'SKIP')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|Requires:.*|Requires: libxml-2.0|' augeas.pc.in
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in protobuf-c/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 10, 2017 @ 21:54:59
  Author: bisson
Revision: 312150

archrelease: copy trunk to staging-x86_64

Added:
  protobuf-c/repos/staging-x86_64/
  protobuf-c/repos/staging-x86_64/PKGBUILD
(from rev 312149, protobuf-c/trunk/PKGBUILD)

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

Copied: protobuf-c/repos/staging-x86_64/PKGBUILD (from rev 312149, 
protobuf-c/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-10 21:54:59 UTC (rev 312150)
@@ -0,0 +1,31 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Aurélien Wailly 
+
+pkgname=protobuf-c
+pkgver=1.3.0
+pkgrel=2
+pkgdesc='Protocol Buffers implementation in C'
+arch=('x86_64')
+url='https://github.com/protobuf-c/protobuf-c'
+license=('BSD')
+depends=('protobuf')
+provides=('libprotobuf-c.so')
+source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('5dc9ad7a9b889cf7c8ff6bf72215f1874a90260f60ad4f88acf21bb15d2752a1')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 10, 2017 @ 21:54:20
  Author: bisson
Revision: 312149

rebuild for protobuf-3.5.0.1-1

Modified:
  protobuf-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 19:40:29 UTC (rev 312148)
+++ PKGBUILD2017-12-10 21:54:20 UTC (rev 312149)
@@ -4,7 +4,7 @@
 
 pkgname=protobuf-c
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Protocol Buffers implementation in C'
 arch=('x86_64')
 url='https://github.com/protobuf-c/protobuf-c'


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 21:51:07
  Author: arojas
Revision: 273635

archrelease: copy trunk to community-x86_64

Added:
  xvkbd/repos/community-x86_64/PKGBUILD
(from rev 273634, xvkbd/trunk/PKGBUILD)
Deleted:
  xvkbd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 21:50:40 UTC (rev 273634)
+++ PKGBUILD2017-12-10 21:51:07 UTC (rev 273635)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Benjamin Andresen 
-# Contributor: Mikko Seppдlд 
-
-pkgname=xvkbd
-pkgver=3.7
-pkgrel=1
-pkgdesc="virtual (graphical) keyboard program for X Window System"
-arch=('i686' 'x86_64')
-url="http://homepage3.nifty.com/tsato/xvkbd/;
-license=('GPL')
-depends=('libxmu' 'xaw3d' 'glibc' 'libxt' 'libxtst' 'libxp' 'libxpm')
-makedepends=('imake')
-source=(http://homepage3.nifty.com/tsato/xvkbd/xvkbd-$pkgver.tar.gz)
-md5sums=('2f0b5c91b701ea548883607d7b0ad8ec')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  xmkmf
-  sed -i 's|#include 
+# Contributor: Benjamin Andresen 
+# Contributor: Mikko Seppдlд 
+
+pkgname=xvkbd
+pkgver=3.8
+pkgrel=1
+pkgdesc="virtual (graphical) keyboard program for X Window System"
+arch=('x86_64')
+url="http://t-sato.in.coocan.jp/xvkbd/;
+license=('GPL')
+depends=('libxmu' 'xaw3d' 'glibc' 'libxt' 'libxtst' 'libxp' 'libxpm')
+makedepends=('imake')
+source=(http://t-sato.in.coocan.jp/xvkbd/xvkbd-$pkgver.tar.gz)
+sha256sums=('2ca43d4f2eebd66aef7c89a17e019146f14ccfe85c731a818202a85fd6e2259b')
+
+build() {
+  cd $pkgname-$pkgver
+  xmkmf
+  sed -i 's|#include 

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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 21:50:40
  Author: arojas
Revision: 273634

Update to 3.8

Modified:
  xvkbd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 21:48:38 UTC (rev 273633)
+++ PKGBUILD2017-12-10 21:50:40 UTC (rev 273634)
@@ -4,7 +4,7 @@
 # Contributor: Mikko Seppдlд 
 
 pkgname=xvkbd
-pkgver=3.7
+pkgver=3.8
 pkgrel=1
 pkgdesc="virtual (graphical) keyboard program for X Window System"
 arch=('x86_64')
@@ -13,10 +13,10 @@
 depends=('libxmu' 'xaw3d' 'glibc' 'libxt' 'libxtst' 'libxp' 'libxpm')
 makedepends=('imake')
 source=(http://t-sato.in.coocan.jp/xvkbd/xvkbd-$pkgver.tar.gz)
-sha256sums=('10b6551387ef011abde847fb64df96578988e8158615801aefa4f90b5a6bca64')
+sha256sums=('2ca43d4f2eebd66aef7c89a17e019146f14ccfe85c731a818202a85fd6e2259b')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   xmkmf
   sed -i 's|#include 

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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 21:48:38
  Author: arojas
Revision: 273633

archrelease: copy trunk to community-x86_64

Added:
  openmotif/repos/community-x86_64/PKGBUILD
(from rev 273632, openmotif/trunk/PKGBUILD)
Deleted:
  openmotif/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 21:48:05 UTC (rev 273632)
+++ PKGBUILD2017-12-10 21:48:38 UTC (rev 273633)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Enrico Morelli 
-
-pkgname=openmotif
-pkgver=2.3.7
-pkgrel=1
-pkgdesc="Open Motif"
-arch=('i686' 'x86_64')
-url="http://www.motifzone.org/;
-license=('LGPL')
-depends=(libxext libxp libxft libxt libxmu libpng libjpeg)
-makedepends=(xbitmaps xproto printproto xextproto automake)
-conflicts=(lesstif)
-source=("http://downloads.sourceforge.net/project/motif/Motif%20$pkgver%20Source%20Code/motif-$pkgver.tar.gz;)
-sha256sums=('8f7aadbb0f42df2093d4690735a2b9a02ea2bf69dfb15ae0a39cae28f1580d14')
-
-build() {
-  cd "$srcdir"/motif-$pkgver
-  export LDFLAGS="-lX11"
-  [ -x configure ] || ./autogen.sh --prefix=/usr
-  [ -f Makefile ] || ./configure --prefix=/usr
-  make -j1
-}
-
-package() {
-  cd "$srcdir"/motif-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: openmotif/repos/community-x86_64/PKGBUILD (from rev 273632, 
openmotif/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 21:48:38 UTC (rev 273633)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Enrico Morelli 
+
+pkgname=openmotif
+pkgver=2.3.8
+pkgrel=1
+pkgdesc="Open Motif"
+arch=('x86_64')
+url="https://motif.ics.com/;
+license=('LGPL')
+depends=(libxext libxp libxft libxt libxmu libpng libjpeg)
+makedepends=(xbitmaps xproto printproto xextproto automake)
+conflicts=(lesstif)
+source=("https://downloads.sourceforge.net/project/motif/Motif%20$pkgver%20Source%20Code/motif-$pkgver.tar.gz;)
+sha256sums=('859b723666eeac7df018209d66045c9853b50b4218cecadb794e2359619ebce7')
+
+build() {
+  cd motif-$pkgver
+  export LDFLAGS="-lX11"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd motif-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 21:48:05
  Author: arojas
Revision: 273632

Update to 2.3.8

Modified:
  openmotif/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 21:28:48 UTC (rev 273631)
+++ PKGBUILD2017-12-10 21:48:05 UTC (rev 273632)
@@ -3,27 +3,26 @@
 # Contributor: Enrico Morelli 
 
 pkgname=openmotif
-pkgver=2.3.7
+pkgver=2.3.8
 pkgrel=1
 pkgdesc="Open Motif"
 arch=('x86_64')
-url="http://www.motifzone.org/;
+url="https://motif.ics.com/;
 license=('LGPL')
 depends=(libxext libxp libxft libxt libxmu libpng libjpeg)
 makedepends=(xbitmaps xproto printproto xextproto automake)
 conflicts=(lesstif)
-source=("http://downloads.sourceforge.net/project/motif/Motif%20$pkgver%20Source%20Code/motif-$pkgver.tar.gz;)
-sha256sums=('8f7aadbb0f42df2093d4690735a2b9a02ea2bf69dfb15ae0a39cae28f1580d14')
+source=("https://downloads.sourceforge.net/project/motif/Motif%20$pkgver%20Source%20Code/motif-$pkgver.tar.gz;)
+sha256sums=('859b723666eeac7df018209d66045c9853b50b4218cecadb794e2359619ebce7')
 
 build() {
-  cd "$srcdir"/motif-$pkgver
+  cd motif-$pkgver
   export LDFLAGS="-lX11"
-  [ -x configure ] || ./autogen.sh --prefix=/usr
-  [ -f Makefile ] || ./configure --prefix=/usr
-  make -j1
+  ./configure --prefix=/usr
+  make
 }
 
 package() {
-  cd "$srcdir"/motif-$pkgver
+  cd motif-$pkgver
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in (qemu-launcher)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 21:28:48
  Author: arojas
Revision: 273631

Dropped to AUR

Deleted:
  qemu-launcher/


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 20:26:12
  Author: arojas
Revision: 273629

archrelease: copy trunk to community-any

Added:
  jmol/repos/community-any/PKGBUILD
(from rev 273628, jmol/trunk/PKGBUILD)
Deleted:
  jmol/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 20:25:48 UTC (rev 273628)
+++ PKGBUILD2017-12-10 20:26:12 UTC (rev 273629)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: James Spencer 
-
-pkgname=jmol
-pkgver=14.25.2
-pkgrel=1
-pkgdesc="a Java 3D viewer for chemical structures"
-arch=(any)
-url="https://jmol.sourceforge.net;
-license=(LGPL)
-depends=(java-runtime)
-makedepends=(unzip)
-source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('36ba458ecb5b6068ea25c9482d673c78723ceb413a38571f2da3ac6af3cd1e3b')
-
-package() {
-  cd $pkgname-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share/$pkgname
-  mkdir -p "$pkgdir"/usr/bin
-
-  unzip jsmol.zip -d "$pkgdir"/usr/share/
-  rm jsmol.zip
-
-  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
-  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-}

Copied: jmol/repos/community-any/PKGBUILD (from rev 273628, jmol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 20:26:12 UTC (rev 273629)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: James Spencer 
+
+pkgname=jmol
+pkgver=14.26.1
+pkgrel=1
+pkgdesc="a Java 3D viewer for chemical structures"
+arch=(any)
+url="https://jmol.sourceforge.net;
+license=(LGPL)
+depends=(java-runtime)
+makedepends=(unzip)
+source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
+sha256sums=('731afcc1a845a93b466868c8b3af694b38469e9fb7a7c7a768c493e909e78822')
+
+package() {
+  cd $pkgname-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share/$pkgname
+  mkdir -p "$pkgdir"/usr/bin
+
+  unzip jsmol.zip -d "$pkgdir"/usr/share/
+  rm jsmol.zip
+
+  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
+  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 20:25:48
  Author: arojas
Revision: 273628

Update to 14.26.1

Modified:
  jmol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 20:21:04 UTC (rev 273627)
+++ PKGBUILD2017-12-10 20:25:48 UTC (rev 273628)
@@ -3,7 +3,7 @@
 # Contributor: James Spencer 
 
 pkgname=jmol
-pkgver=14.25.2
+pkgver=14.26.1
 pkgrel=1
 pkgdesc="a Java 3D viewer for chemical structures"
 arch=(any)
@@ -12,7 +12,7 @@
 depends=(java-runtime)
 makedepends=(unzip)
 
source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('36ba458ecb5b6068ea25c9482d673c78723ceb413a38571f2da3ac6af3cd1e3b')
+sha256sums=('731afcc1a845a93b466868c8b3af694b38469e9fb7a7c7a768c493e909e78822')
 
 package() {
   cd $pkgname-$pkgver


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 20:21:04
  Author: arojas
Revision: 273627

archrelease: copy trunk to community-x86_64

Added:
  linbox/repos/community-x86_64/PKGBUILD
(from rev 273626, linbox/trunk/PKGBUILD)
Deleted:
  linbox/repos/community-x86_64/PKGBUILD
  linbox/repos/community-x86_64/linbox-config.patch

-+
 PKGBUILD|   69 ++
 linbox-config.patch |   12 
 2 files changed, 31 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 20:20:42 UTC (rev 273626)
+++ PKGBUILD2017-12-10 20:21:04 UTC (rev 273627)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas < nqn7...@gmail.com >
-
-pkgname=linbox
-pkgver=1.5.1
-pkgrel=1
-pkgdesc="A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields"
-arch=(x86_64)
-url="http://linalg.org/;
-license=(LGPL)
-depends=(m4rie flint fplll iml fflas-ffpack tinyxml2) 
-source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;
 linbox-config.patch)
-sha256sums=('b2a4dbfe1e599f0ca5a5d3c63403ba7914463a0040cdd2a55e7b29aaab7d7589'
-'2f60b1b598d04168622ad1cccf0e8745b73efc5b7686398cb6f0f89cc2032ceb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Rp1 -i ../linbox-config.patch # Install missing config.h header
-  autoreconf -vi
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-sage --with-fplll=/usr \
---disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 
--disable-avx --disable-avx2 --disable-fma
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-# make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: linbox/repos/community-x86_64/PKGBUILD (from rev 273626, 
linbox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 20:21:04 UTC (rev 273627)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas < nqn7...@gmail.com >
+
+pkgname=linbox
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields"
+arch=(x86_64)
+url="http://linalg.org/;
+license=(LGPL)
+depends=(m4rie flint fplll iml fflas-ffpack tinyxml2) 
+source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7b69ab617b15ca6684b29d08531ed8899cd4d07ec75799e5d624c4c0a60dc6b2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-sage --with-fplll=/usr \
+--disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 
--disable-avx --disable-avx2 --disable-fma
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: linbox-config.patch
===
--- linbox-config.patch 2017-12-10 20:20:42 UTC (rev 273626)
+++ linbox-config.patch 2017-12-10 20:21:04 UTC (rev 273627)
@@ -1,12 +0,0 @@
-diff --git a/linbox/Makefile.am b/linbox/Makefile.am
-index 68ee4e98d..bf2773952 100644
 a/linbox/Makefile.am
-+++ b/linbox/Makefile.am
-@@ -30,7 +30,6 @@ SUBDIRS=util element field randiter vector matrix blackbox 
algorithms solutions
- 
- BASIC_HDRS =  \
- linbox-config.h \
--config.h \
- config-blas.h \
- integer.h \
- linbox-tags.h


[arch-commits] Commit in linbox/trunk (PKGBUILD linbox-config.patch)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 20:20:42
  Author: arojas
Revision: 273626

Update to 1.5.2

Modified:
  linbox/trunk/PKGBUILD
Deleted:
  linbox/trunk/linbox-config.patch

-+
 PKGBUILD|   13 +++--
 linbox-config.patch |   12 
 2 files changed, 3 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 20:16:46 UTC (rev 273625)
+++ PKGBUILD2017-12-10 20:20:42 UTC (rev 273626)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas < nqn7...@gmail.com >
 
 pkgname=linbox
-pkgver=1.5.1
+pkgver=1.5.2
 pkgrel=1
 pkgdesc="A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields"
 arch=(x86_64)
@@ -9,16 +9,9 @@
 url="http://linalg.org/;
 license=(LGPL)
 depends=(m4rie flint fplll iml fflas-ffpack tinyxml2) 
-source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;
 linbox-config.patch)
-sha256sums=('b2a4dbfe1e599f0ca5a5d3c63403ba7914463a0040cdd2a55e7b29aaab7d7589'
-'2f60b1b598d04168622ad1cccf0e8745b73efc5b7686398cb6f0f89cc2032ceb')
+source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7b69ab617b15ca6684b29d08531ed8899cd4d07ec75799e5d624c4c0a60dc6b2')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Rp1 -i ../linbox-config.patch # Install missing config.h header
-  autoreconf -vi
-}
-
 build() {
   cd $pkgname-$pkgver
 

Deleted: linbox-config.patch
===
--- linbox-config.patch 2017-12-10 20:16:46 UTC (rev 273625)
+++ linbox-config.patch 2017-12-10 20:20:42 UTC (rev 273626)
@@ -1,12 +0,0 @@
-diff --git a/linbox/Makefile.am b/linbox/Makefile.am
-index 68ee4e98d..bf2773952 100644
 a/linbox/Makefile.am
-+++ b/linbox/Makefile.am
-@@ -30,7 +30,6 @@ SUBDIRS=util element field randiter vector matrix blackbox 
algorithms solutions
- 
- BASIC_HDRS =  \
- linbox-config.h \
--config.h \
- config-blas.h \
- integer.h \
- linbox-tags.h


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 20:16:46
  Author: arojas
Revision: 273625

archrelease: copy trunk to community-x86_64

Added:
  normaliz/repos/community-x86_64/PKGBUILD
(from rev 273624, normaliz/trunk/PKGBUILD)
Deleted:
  normaliz/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 20:15:34 UTC (rev 273624)
+++ PKGBUILD2017-12-10 20:16:46 UTC (rev 273625)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Tarn Burton 
-
-pkgname=normaliz
-pkgver=3.4.1
-pkgrel=1
-pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
-arch=(i686 x86_64)
-url="https://www.normaliz.uni-osnabrueck.de/;
-license=(GPL)
-depends=(gmp)
-makedepends=(boost)
-source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
-sha256sums=('20d1c0061ed589eb61591e04ef3449f5a54c4f4c9c191e7c53ce05468c96e415')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: normaliz/repos/community-x86_64/PKGBUILD (from rev 273624, 
normaliz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 20:16:46 UTC (rev 273625)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tarn Burton 
+
+pkgname=normaliz
+pkgver=3.5.0
+pkgrel=1
+pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
+arch=(x86_64)
+url="https://www.normaliz.uni-osnabrueck.de/;
+license=(GPL)
+depends=(gmp)
+makedepends=(boost)
+source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
+sha256sums=('d3cee70c940b8ea73ba6c97688c5afb0928a7d488116af78dcf07d85d40af37a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 20:15:34
  Author: arojas
Revision: 273624

Update to 3.5.0

Modified:
  normaliz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 19:57:39 UTC (rev 273623)
+++ PKGBUILD2017-12-10 20:15:34 UTC (rev 273624)
@@ -2,7 +2,7 @@
 # Contributor: Tarn Burton 
 
 pkgname=normaliz
-pkgver=3.4.1
+pkgver=3.5.0
 pkgrel=1
 pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(gmp)
 makedepends=(boost)
 
source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
-sha256sums=('20d1c0061ed589eb61591e04ef3449f5a54c4f4c9c191e7c53ce05468c96e415')
+sha256sums=('d3cee70c940b8ea73ba6c97688c5afb0928a7d488116af78dcf07d85d40af37a')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in sagemath-doc/repos (17 files)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 19:57:39
  Author: arojas
Revision: 273623

archrelease: copy trunk to community-testing-any

Added:
  sagemath-doc/repos/community-testing-any/
  sagemath-doc/repos/community-testing-any/PKGBUILD
(from rev 273622, sagemath-doc/trunk/PKGBUILD)
  sagemath-doc/repos/community-testing-any/docbuild_main.patch
(from rev 273622, sagemath-doc/trunk/docbuild_main.patch)
  sagemath-doc/repos/community-testing-any/fes02.patch
(from rev 273622, sagemath-doc/trunk/fes02.patch)
  sagemath-doc/repos/community-testing-any/jupyter-path.patch
(from rev 273622, sagemath-doc/trunk/jupyter-path.patch)
  sagemath-doc/repos/community-testing-any/latte-count.patch
(from rev 273622, sagemath-doc/trunk/latte-count.patch)
  sagemath-doc/repos/community-testing-any/package.patch
(from rev 273622, sagemath-doc/trunk/package.patch)
  sagemath-doc/repos/community-testing-any/r-no-readline.patch
(from rev 273622, sagemath-doc/trunk/r-no-readline.patch)
  sagemath-doc/repos/community-testing-any/sagemath-detect-igraph.patch
(from rev 273622, sagemath-doc/trunk/sagemath-detect-igraph.patch)
  sagemath-doc/repos/community-testing-any/sagemath-ecl-no-sigfpe.patch
(from rev 273622, sagemath-doc/trunk/sagemath-ecl-no-sigfpe.patch)
  sagemath-doc/repos/community-testing-any/sagemath-env.patch
(from rev 273622, sagemath-doc/trunk/sagemath-env.patch)
  sagemath-doc/repos/community-testing-any/sagemath-linbox-1.5.patch
(from rev 273622, sagemath-doc/trunk/sagemath-linbox-1.5.patch)
  sagemath-doc/repos/community-testing-any/sagemath-networkx2.patch
(from rev 273622, sagemath-doc/trunk/sagemath-networkx2.patch)
  sagemath-doc/repos/community-testing-any/sagemath-pynac-0.7.14.patch
(from rev 273622, sagemath-doc/trunk/sagemath-pynac-0.7.14.patch)
  sagemath-doc/repos/community-testing-any/sagemath-python3-notebook.patch
(from rev 273622, sagemath-doc/trunk/sagemath-python3-notebook.patch)
  sagemath-doc/repos/community-testing-any/sagemath-threejs.patch
(from rev 273622, sagemath-doc/trunk/sagemath-threejs.patch)
  sagemath-doc/repos/community-testing-any/test-optional.patch
(from rev 273622, sagemath-doc/trunk/test-optional.patch)

-+
 PKGBUILD|  122 +
 docbuild_main.patch |6 
 fes02.patch |   57 +++
 jupyter-path.patch  |   22 +++
 latte-count.patch   |   71 +
 package.patch   |   38 +
 r-no-readline.patch |   11 +
 sagemath-detect-igraph.patch|   21 ++
 sagemath-ecl-no-sigfpe.patch|   12 +
 sagemath-env.patch  |  105 ++
 sagemath-linbox-1.5.patch   |  272 ++
 sagemath-networkx2.patch|   26 +++
 sagemath-pynac-0.7.14.patch |  167 +++
 sagemath-python3-notebook.patch |   27 +++
 sagemath-threejs.patch  |   11 +
 test-optional.patch |   25 +++
 16 files changed, 993 insertions(+)

Copied: sagemath-doc/repos/community-testing-any/PKGBUILD (from rev 273622, 
sagemath-doc/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-12-10 19:57:39 UTC (rev 273623)
@@ -0,0 +1,122 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgbase=sagemath-doc
+pkgname=(sagemath-doc sagemath-src)
+pkgver=8.1
+pkgrel=1
+arch=(any)
+url="http://www.sagemath.org;
+license=(GPL)
+makedepends=(sagemath sage-notebook python2-pyzmq python2-pillow 
python2-docutils tachyon
+ python2-jupyter_client python2-pkgconfig cython2 thebe 
python2-sphinx python2-ipywidgets)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz;
+sagemath-env.patch package.patch latte-count.patch jupyter-path.patch 
sagemath-python3-notebook.patch test-optional.patch
+r-no-readline.patch fes02.patch sagemath-threejs.patch 
sagemath-detect-igraph.patch
+sagemath-networkx2.patch sagemath-linbox-1.5.patch 
sagemath-pynac-0.7.14.patch docbuild_main.patch)
+sha256sums=('a42b55c2c8ac244535dc9b87171b7d4dd7e1d498099518ab253354fbe2eaaa7b'
+'6dc9b101310f80381c61c0312a3e5c648771bfe0de2e94ac46fafe7282a3e0ee'
+'c41ae665499c6cd775d40bbe178f8786830b0931ee26bf11ee02f7d83bcc8107'
+'0b680e674c11c47afa86162d8b49645620b8912722e08133d23357c29ca9310a'
+'2cad308f8adbb6c54e6603fa22b2f0eb60f6f09248d5d015000c3932ac14f646'
+'962ce805c87147212b21fc2ab0ac9af9bd0033942c7a6905b9906645b48e8a4f'
+'ef94908d4ab28d13af622e6e58ec191aa78817d17e4466c7bb6f64ee72a813b9'
+'afd0952b9bb8f52fd428eae36cf719a58ff85a894baae88cbb2124e043768cc7'
+'7fcb52e96935dccb0f958d37c2f4e3918392480b9af53e08562f6cba6c68cb94'
+

[arch-commits] Commit in sagemath-doc/trunk (16 files)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 19:56:46
  Author: arojas
Revision: 273622

Update to 8.1

Added:
  sagemath-doc/trunk/jupyter-path.patch
  sagemath-doc/trunk/sagemath-detect-igraph.patch
  sagemath-doc/trunk/sagemath-env.patch
  sagemath-doc/trunk/sagemath-linbox-1.5.patch
  sagemath-doc/trunk/sagemath-networkx2.patch
  sagemath-doc/trunk/sagemath-pynac-0.7.14.patch
  sagemath-doc/trunk/sagemath-python3-notebook.patch
  sagemath-doc/trunk/sagemath-threejs.patch
  sagemath-doc/trunk/test-optional.patch
Modified:
  sagemath-doc/trunk/PKGBUILD
  sagemath-doc/trunk/docbuild_main.patch
  sagemath-doc/trunk/fes02.patch
  sagemath-doc/trunk/latte-count.patch
  sagemath-doc/trunk/package.patch
  sagemath-doc/trunk/r-no-readline.patch
Deleted:
  sagemath-doc/trunk/sagemath-sphinx-1.6.patch

-+
 PKGBUILD|   57 +--
 docbuild_main.patch |4 
 fes02.patch |4 
 jupyter-path.patch  |   22 +++
 latte-count.patch   |   14 -
 package.patch   |2 
 r-no-readline.patch |2 
 sagemath-detect-igraph.patch|   21 ++
 sagemath-env.patch  |  105 ++
 sagemath-linbox-1.5.patch   |  272 ++
 sagemath-networkx2.patch|   26 +++
 sagemath-pynac-0.7.14.patch |  167 +++
 sagemath-python3-notebook.patch |   27 +++
 sagemath-sphinx-1.6.patch   |   69 -
 sagemath-threejs.patch  |   11 +
 test-optional.patch |   25 +++
 16 files changed, 728 insertions(+), 100 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 19:28:45 UTC (rev 273621)
+++ PKGBUILD2017-12-10 19:56:46 UTC (rev 273622)
@@ -3,7 +3,7 @@
 
 pkgbase=sagemath-doc
 pkgname=(sagemath-doc sagemath-src)
-pkgver=8.0
+pkgver=8.1
 pkgrel=1
 arch=(any)
 url="http://www.sagemath.org;
@@ -10,17 +10,25 @@
 license=(GPL)
 makedepends=(sagemath sage-notebook python2-pyzmq python2-pillow 
python2-docutils tachyon
  python2-jupyter_client python2-pkgconfig cython2 thebe 
python2-sphinx python2-ipywidgets)
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz;
-   package.patch fes02.patch docbuild_main.patch r-no-readline.patch 
latte-count.patch sagemath-ecl-no-sigfpe.patch
-sagemath-sphinx-1.6.patch)
-sha256sums=('91df3e303add71616e24b38c04789f66d57ada7b1017e5369e850c42d5e8753d'
-'4a2297e4d9d28f0b3a1f58e1b463e332affcb109eafde44837b1657e309c8212'
-'a39da083c038ada797ffc5bedc9ba47455a3f77057d42f86484ae877ef9172ea'
-'187b75d3ce202126012ff20b6316277b0a003ffdd7f15b820d3b88459d2753c8'
-'ef9f401fa84fe1772af9efee6816643534f2896da4c23b809937b19771bdfbbf'
-'c6836783251d94c00f0229c1e671de86c58c6c6fb0f6959725317817abc64ca8'
-'c31809f887bf9acc45c5bd9dd30bb93e73601d3efbf3016594c3c1d241731c8a'
-'5358b4604dfab126a02bba6c9e436a5c41c66d5bc241ae3299e76ac1e9ae593d')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz;
+sagemath-env.patch package.patch latte-count.patch jupyter-path.patch 
sagemath-python3-notebook.patch test-optional.patch
+r-no-readline.patch fes02.patch sagemath-threejs.patch 
sagemath-detect-igraph.patch
+sagemath-networkx2.patch sagemath-linbox-1.5.patch 
sagemath-pynac-0.7.14.patch docbuild_main.patch)
+sha256sums=('a42b55c2c8ac244535dc9b87171b7d4dd7e1d498099518ab253354fbe2eaaa7b'
+'6dc9b101310f80381c61c0312a3e5c648771bfe0de2e94ac46fafe7282a3e0ee'
+'c41ae665499c6cd775d40bbe178f8786830b0931ee26bf11ee02f7d83bcc8107'
+'0b680e674c11c47afa86162d8b49645620b8912722e08133d23357c29ca9310a'
+'2cad308f8adbb6c54e6603fa22b2f0eb60f6f09248d5d015000c3932ac14f646'
+'962ce805c87147212b21fc2ab0ac9af9bd0033942c7a6905b9906645b48e8a4f'
+'ef94908d4ab28d13af622e6e58ec191aa78817d17e4466c7bb6f64ee72a813b9'
+'afd0952b9bb8f52fd428eae36cf719a58ff85a894baae88cbb2124e043768cc7'
+'7fcb52e96935dccb0f958d37c2f4e3918392480b9af53e08562f6cba6c68cb94'
+'514135b920a43f999571a15e97b41e14f5bed59f65b19643864dc23555a7b830'
+'28d7789b8d777922ab8871ca43b6afab751428cae875c0343d3962e6a2030b88'
+'37c5c1e694a2aca06c0f1c7d99622ff81fd2bc6a51e8745762294889fa4673f6'
+'a52d03e04c9d64bb957a1f8dcdae3280ebb9450a7fd76aaf5ae5de5c6f74774f'
+'538f7b279d72f4b67edb445d386d267f3f7022c1079031ca7ea06f6ce392c906'
+'ea5e17bb7a7cb36a22e5e3872fcc2585852bc971c4b139b0b2cd69a36c1b009b')
 
 prepare() {
   cd sage-$pkgver
@@ -28,21 +36,35 @@
 # Arch-specific patches
 # assume all optional packages are installed
   patch -p0 -i ../package.patch
+# set env variables
+  patch -p0 -i ../sagemath-env.patch
+# don't list optional 

[arch-commits] Commit in meson/repos/extra-any (5 files)

2017-12-10 Thread Jan Steffens via arch-commits
Date: Sunday, December 10, 2017 @ 19:40:29
  Author: heftig
Revision: 312148

archrelease: copy trunk to extra-any

Added:
  meson/repos/extra-any/PKGBUILD
(from rev 312147, meson/trunk/PKGBUILD)
  meson/repos/extra-any/arch-meson
(from rev 312147, meson/trunk/arch-meson)
Deleted:
  meson/repos/extra-any/PKGBUILD
  meson/repos/extra-any/arch-meson
  meson/repos/extra-any/fix-tests.diff

+
 PKGBUILD   |  117 +++
 arch-meson |   44 ++--
 fix-tests.diff |   33 ---
 3 files changed, 81 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 19:39:54 UTC (rev 312147)
+++ PKGBUILD2017-12-10 19:40:29 UTC (rev 312148)
@@ -1,58 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-
-pkgname=meson
-pkgver=0.43.0
-pkgrel=1
-pkgdesc='High productivity build system'
-url='http://mesonbuild.com/'
-arch=('any')
-license=('Apache')
-depends=('python' 'ninja')
-makedepends=('python-setuptools')
-checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'gnustep-base'
-  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
-  'itstool' 'gtk3' 'java-environment=8' 'gtk-doc' 'llvm' 'clang' 
'sdl2'
-  'doxygen' 'vulkan-validation-layers' 'openmpi' 'openssh' 
'mercurial' 'gtk-sharp-2')
-checkdepends_x86_64=('ldc' 'valgrind')
-source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc}
-fix-tests.diff
-arch-meson)
-sha512sums=('e149758fa6ad4b2d3643bcda176577633f2e50e58f38074c1a17f1712d554bac0fbabf26fe7eef15954dc51630b1f923b15cfe9040a025cf61b5666098197d16'
-'SKIP'
-
'7ea1f02adf79e4fde5d002956852d9b976b36386be8d78a3845292e8195a36d462db20a9c708e332e0d3b261a7abf9d05f5d034aab96ede58229639f3620ec91'
-
'82557891b9424b1597f1200bfacfae2f357e94bf81d53fc3fe9b2b641098566513dce6eeaa8882e9892c7cdec796650e5298ed25af61f35f9d02d9b4b9ca39c8')
-validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -Np1 -i ../fix-tests.diff
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  unset CLASSPATH  # GNUstep breaks java tests
-  LDFLAGS="${LDFLAGS/,--as-needed/}" # --as-needed breaks openmpi linking
-  # export MESON_PRINT_TEST_OUTPUT=1 # set this for debug output
-  # graphviz: Installing breaks doxygen tests
-  LC_CTYPE=en_US.UTF-8 DC=ldc ./run_tests.py
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
-  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
-  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
-
-  # Arch packaging helper
-  install -D ../arch-meson -t "${pkgdir}/usr/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: meson/repos/extra-any/PKGBUILD (from rev 312147, meson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 19:40:29 UTC (rev 312148)
@@ -0,0 +1,59 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.44.0
+pkgrel=1
+pkgdesc='High productivity build system'
+url='http://mesonbuild.com/'
+arch=('any')
+license=('Apache')
+depends=('python' 'ninja')
+makedepends=('python-setuptools')
+checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'gnustep-base'
+  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
+  'itstool' 'gtk3' 'java-environment=8' 'gtk-doc' 'llvm' 'clang' 
'sdl2'
+  'doxygen' 'vulkan-validation-layers' 'openmpi' 'openssh' 
'mercurial' 'gtk-sharp-2'
+  'qt5-tools' 'libwmf')
+checkdepends_x86_64=('ldc' 'valgrind')
+source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc}
+arch-meson)
+sha512sums=('9aefa52d92d7750528e9a9236f19131c8e58bfc21212595c311f4e2787ad40bb53d6085f52283cad13923ddf12da1a59067d48424c72ace47fc127978d1af2ff'
+'SKIP'
+
'82557891b9424b1597f1200bfacfae2f357e94bf81d53fc3fe9b2b641098566513dce6eeaa8882e9892c7cdec796650e5298ed25af61f35f9d02d9b4b9ca39c8')
+validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') 

[arch-commits] Commit in meson/trunk (PKGBUILD fix-tests.diff)

2017-12-10 Thread Jan Steffens via arch-commits
Date: Sunday, December 10, 2017 @ 19:39:54
  Author: heftig
Revision: 312147

0.44.0-1

Modified:
  meson/trunk/PKGBUILD
Deleted:
  meson/trunk/fix-tests.diff

+
 PKGBUILD   |   19 ++-
 fix-tests.diff |   33 -
 2 files changed, 10 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 18:50:13 UTC (rev 312146)
+++ PKGBUILD2017-12-10 19:39:54 UTC (rev 312147)
@@ -3,7 +3,7 @@
 # Contributor: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.43.0
+pkgver=0.44.0
 pkgrel=1
 pkgdesc='High productivity build system'
 url='http://mesonbuild.com/'
@@ -14,20 +14,18 @@
 checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'gnustep-base'
   'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
   'itstool' 'gtk3' 'java-environment=8' 'gtk-doc' 'llvm' 'clang' 
'sdl2'
-  'doxygen' 'vulkan-validation-layers' 'openmpi' 'openssh' 
'mercurial' 'gtk-sharp-2')
+  'doxygen' 'vulkan-validation-layers' 'openmpi' 'openssh' 
'mercurial' 'gtk-sharp-2'
+  'qt5-tools' 'libwmf')
 checkdepends_x86_64=('ldc' 'valgrind')
 
source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc}
-fix-tests.diff
 arch-meson)
-sha512sums=('e149758fa6ad4b2d3643bcda176577633f2e50e58f38074c1a17f1712d554bac0fbabf26fe7eef15954dc51630b1f923b15cfe9040a025cf61b5666098197d16'
+sha512sums=('9aefa52d92d7750528e9a9236f19131c8e58bfc21212595c311f4e2787ad40bb53d6085f52283cad13923ddf12da1a59067d48424c72ace47fc127978d1af2ff'
 'SKIP'
-
'7ea1f02adf79e4fde5d002956852d9b976b36386be8d78a3845292e8195a36d462db20a9c708e332e0d3b261a7abf9d05f5d034aab96ede58229639f3620ec91'
 
'82557891b9424b1597f1200bfacfae2f357e94bf81d53fc3fe9b2b641098566513dce6eeaa8882e9892c7cdec796650e5298ed25af61f35f9d02d9b4b9ca39c8')
 validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

 
 prepare() {
   cd ${pkgname}-${pkgver}
-  patch -Np1 -i ../fix-tests.diff
 }
 
 build() {
@@ -47,10 +45,13 @@
 package() {
   cd ${pkgname}-${pkgver}
   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
-  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
-  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
 
+  for _f in data/syntax-highlighting/vim/*/*; do
+install -Dt "${pkgdir}/usr/share/vim/vimfiles/$(basename "$(dirname 
"$_f")")" -m644 "$_f"
+  done
+  install -Dt "${pkgdir}/usr/share/emacs/site-lisp" -m644 
data/syntax-highlighting/emacs/*
+  install -Dt "${pkgdir}/usr/share/zsh/site-functions" -m644 
data/shell-completions/zsh/*
+
   # Arch packaging helper
   install -D ../arch-meson -t "${pkgdir}/usr/bin"
 }

Deleted: fix-tests.diff
===
--- fix-tests.diff  2017-12-10 18:50:13 UTC (rev 312146)
+++ fix-tests.diff  2017-12-10 19:39:54 UTC (rev 312147)
@@ -1,33 +0,0 @@
-diff --git i/test cases/frameworks/15 llvm/meson.build w/test 
cases/frameworks/15 llvm/meson.build
-index 468094ad4f3a5256..a8cf8f22f4fafb24 100644
 i/test cases/frameworks/15 llvm/meson.build
-+++ w/test cases/frameworks/15 llvm/meson.build
-@@ -17,5 +17,5 @@ executable('sum', 'sum.c',  dependencies : [
-   llvm_dep,
-   dependency('zlib'),
-   meson.get_compiler('c').find_library('dl', required : false),
--  dependency('tinfo'),
-+  dependency('ncursesw'),
-   ])
-diff --git i/test cases/frameworks/4 qt/meson.build w/test cases/frameworks/4 
qt/meson.build
-index c6f108bbcf037e6c..ad9d40478d660546 100644
 i/test cases/frameworks/4 qt/meson.build   
-+++ w/test cases/frameworks/4 qt/meson.build   
-@@ -71,14 +71,16 @@ foreach qt : ['qt4', 'qt5']
- 
- test(qt + 'maninclude', qtmaninclude)
- 
-+if qt == 'qt5'
- # building Qt plugins implies to give include path to moc
- plugin_includes = include_directories('pluginInterface', 'plugin')
- pluginpreprocess = qtmodule.preprocess(
-   moc_headers : 'plugin/plugin.h',
-   include_directories : plugin_includes
- )
--plugin = library('plugin', 'plugin/plugin.cpp', pluginpreprocess,
-+plugin = library(qt + 'plugin', 'plugin/plugin.cpp', pluginpreprocess,
-   include_directories : plugin_includes,
-   dependencies : qtcore)
-+endif
-   endif
- endforeach


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Sunday, December 10, 2017 @ 19:28:45
  Author: felixonmars
Revision: 273621

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 273620, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 273620, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   58 ++--
 uglify-js.install |   16 +++---
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 19:28:21 UTC (rev 273620)
+++ PKGBUILD2017-12-10 19:28:45 UTC (rev 273621)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('06165324f98e28f4947239f1da795f68e40a1cbca38d3e07172cc5585d41504af1f649c9369756f78aa5e68f2a57178d2fef080168c48e73ef0121f6c999e432')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 273620, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 19:28:45 UTC (rev 273621)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=3.2.2
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('fbed4d3bfcd92047567fa70320671e48940f5f7d52a88a5b5401f0146e7edb8d0cb59a8f1bf3483e88a78fcce55d0b407cc06a12dd49cafd8588b3f79fd81585')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2017-12-10 19:28:21 UTC (rev 273620)
+++ uglify-js.install   2017-12-10 19:28:45 UTC (rev 273621)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 273620, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2017-12-10 19:28:45 UTC (rev 273621)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


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

2017-12-10 Thread Felix Yan via arch-commits
Date: Sunday, December 10, 2017 @ 19:28:21
  Author: felixonmars
Revision: 273620

upgpkg: uglify-js 3.2.2-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 19:13:16 UTC (rev 273619)
+++ PKGBUILD2017-12-10 19:28:21 UTC (rev 273620)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.2.1
+pkgver=3.2.2
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('06165324f98e28f4947239f1da795f68e40a1cbca38d3e07172cc5585d41504af1f649c9369756f78aa5e68f2a57178d2fef080168c48e73ef0121f6c999e432')
+sha512sums=('fbed4d3bfcd92047567fa70320671e48940f5f7d52a88a5b5401f0146e7edb8d0cb59a8f1bf3483e88a78fcce55d0b407cc06a12dd49cafd8588b3f79fd81585')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in sagemath/repos (16 files)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 19:13:16
  Author: arojas
Revision: 273619

archrelease: copy trunk to community-testing-x86_64

Added:
  sagemath/repos/community-testing-x86_64/
  sagemath/repos/community-testing-x86_64/PKGBUILD
(from rev 273618, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-testing-x86_64/fes02.patch
(from rev 273618, sagemath/trunk/fes02.patch)
  sagemath/repos/community-testing-x86_64/jupyter-path.patch
(from rev 273618, sagemath/trunk/jupyter-path.patch)
  sagemath/repos/community-testing-x86_64/latte-count.patch
(from rev 273618, sagemath/trunk/latte-count.patch)
  sagemath/repos/community-testing-x86_64/package.patch
(from rev 273618, sagemath/trunk/package.patch)
  sagemath/repos/community-testing-x86_64/r-no-readline.patch
(from rev 273618, sagemath/trunk/r-no-readline.patch)
  sagemath/repos/community-testing-x86_64/sagemath-detect-igraph.patch
(from rev 273618, sagemath/trunk/sagemath-detect-igraph.patch)
  sagemath/repos/community-testing-x86_64/sagemath-ecl-no-sigfpe.patch
(from rev 273618, sagemath/trunk/sagemath-ecl-no-sigfpe.patch)
  sagemath/repos/community-testing-x86_64/sagemath-env.patch
(from rev 273618, sagemath/trunk/sagemath-env.patch)
  sagemath/repos/community-testing-x86_64/sagemath-linbox-1.5.patch
(from rev 273618, sagemath/trunk/sagemath-linbox-1.5.patch)
  sagemath/repos/community-testing-x86_64/sagemath-networkx2.patch
(from rev 273618, sagemath/trunk/sagemath-networkx2.patch)
  sagemath/repos/community-testing-x86_64/sagemath-pynac-0.7.14.patch
(from rev 273618, sagemath/trunk/sagemath-pynac-0.7.14.patch)
  sagemath/repos/community-testing-x86_64/sagemath-python3-notebook.patch
(from rev 273618, sagemath/trunk/sagemath-python3-notebook.patch)
  sagemath/repos/community-testing-x86_64/sagemath-threejs.patch
(from rev 273618, sagemath/trunk/sagemath-threejs.patch)
  sagemath/repos/community-testing-x86_64/test-optional.patch
(from rev 273618, sagemath/trunk/test-optional.patch)

-+
 PKGBUILD|  164 ++
 fes02.patch |   57 +++
 jupyter-path.patch  |   22 +++
 latte-count.patch   |   71 +
 package.patch   |   38 +
 r-no-readline.patch |   11 +
 sagemath-detect-igraph.patch|   21 ++
 sagemath-ecl-no-sigfpe.patch|   12 +
 sagemath-env.patch  |  105 ++
 sagemath-linbox-1.5.patch   |  272 ++
 sagemath-networkx2.patch|   26 +++
 sagemath-pynac-0.7.14.patch |  167 +++
 sagemath-python3-notebook.patch |   27 +++
 sagemath-threejs.patch  |   11 +
 test-optional.patch |   25 +++
 15 files changed, 1029 insertions(+)

Copied: sagemath/repos/community-testing-x86_64/PKGBUILD (from rev 273618, 
sagemath/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-10 19:13:16 UTC (rev 273619)
@@ -0,0 +1,164 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Evgeniy Alekseev 
+# Contributor: Daniel Wallace 
+# Contributor: Thomas Dziedzic 
+# Contributor: Osman Ugus 
+# Contributor: Stefan Husmann 
+# Special thanks to Nareto for moving the compile from the .install to the 
PKGBUILD
+
+pkgbase=sagemath
+pkgname=(sagemath sagemath-jupyter)
+pkgver=8.1
+pkgrel=1
+pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
+arch=(x86_64)
+url="http://www.sagemath.org;
+license=(GPL)
+depends=(ipython2 ppl palp brial cliquer maxima-ecl gfan sympow nauty 
python2-rpy2 python2-fpylll python2-psutil python2-cypari2
+  python2-matplotlib python2-scipy python2-sympy python2-networkx 
python2-pillow python2-future libgap flintqs lcalc lrcalc arb
+  eclib gmp-ecm zn_poly gd python2-cvxopt pynac linbox rubiks pari-galdata 
pari-seadata-small planarity rankwidth
+  sage-data-combinatorial_designs sage-data-elliptic_curves sage-data-graphs 
sage-data-polytopes_db sage-data-conway_polynomials)
+optdepends=('cython2: to compile cython code' 'python2-pkgconfig: to compile 
cython code'
+  'jmol: 3D plots' 'sage-notebook: Flask notebook interface (deprecated)'
+  'sagemath-doc: Documentation and inline help' 'python2-igraph: igraph 
backend for graph theory'
+  'coin-or-cbc: COIN backend for numerical computations' 'coin-or-csdp: for 
computing Lovász theta-function of graphs'
+  'buckygen: for generating fullerene graphs' 'plantri: for generating some 
classes of graphs' 'benzene: for generating fusenes and benzenoids'
+  'ffmpeg: to export animations to video' 'imagemagick: to show animations'
+  'coxeter3: Coxeter groups implementation' 'cryptominisat5: SAT solver' 
'gap-data: for computing Galois groups'
+  'lrs: Algorithms for linear 

[arch-commits] Commit in sagemath/trunk (16 files)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 19:12:15
  Author: arojas
Revision: 273618

Update to 8.1

Added:
  sagemath/trunk/sagemath-env.patch
(from rev 273617, sagemath/trunk/env.patch)
Modified:
  sagemath/trunk/PKGBUILD
  sagemath/trunk/fes02.patch
  sagemath/trunk/jupyter-path.patch
  sagemath/trunk/latte-count.patch
  sagemath/trunk/package.patch
  sagemath/trunk/r-no-readline.patch
  sagemath/trunk/sagemath-detect-igraph.patch
  sagemath/trunk/sagemath-networkx2.patch
  sagemath/trunk/sagemath-python3-notebook.patch
  sagemath/trunk/test-optional.patch
Deleted:
  sagemath/trunk/env.patch
  sagemath/trunk/sagemath-brial-1.2.patch
  sagemath/trunk/sagemath-cython-0.26.patch
  sagemath/trunk/sagemath-pynac-0.7.11.patch
  sagemath/trunk/sagemath-pynac-0.7.12.patch

-+
 PKGBUILD|   59 ++---
 env.patch   |   93 -
 fes02.patch |4 
 jupyter-path.patch  |6 
 latte-count.patch   |   14 -
 package.patch   |2 
 r-no-readline.patch |2 
 sagemath-brial-1.2.patch|   14 -
 sagemath-cython-0.26.patch  |   26 --
 sagemath-detect-igraph.patch|2 
 sagemath-env.patch  |  105 ++
 sagemath-networkx2.patch|2 
 sagemath-pynac-0.7.11.patch |   21 --
 sagemath-pynac-0.7.12.patch |  390 --
 sagemath-python3-notebook.patch |4 
 test-optional.patch |2 
 16 files changed, 145 insertions(+), 601 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-10 17:10:58 UTC (rev 273617)
+++ PKGBUILD2017-12-10 19:12:15 UTC (rev 273618)
@@ -8,8 +8,8 @@
 
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
-pkgver=8.0
-pkgrel=12
+pkgver=8.1
+pkgrel=1
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(x86_64)
 url="http://www.sagemath.org;
@@ -23,7 +23,7 @@
   'sagemath-doc: Documentation and inline help' 'python2-igraph: igraph 
backend for graph theory'
   'coin-or-cbc: COIN backend for numerical computations' 'coin-or-csdp: for 
computing Lovász theta-function of graphs'
   'buckygen: for generating fullerene graphs' 'plantri: for generating some 
classes of graphs' 'benzene: for generating fusenes and benzenoids'
-  'modular_decomposition: modular decomposition of graphs' 'ffmpeg: to export 
animations to video' 'imagemagick: to show animations'
+  'ffmpeg: to export animations to video' 'imagemagick: to show animations'
   'coxeter3: Coxeter groups implementation' 'cryptominisat5: SAT solver' 
'gap-data: for computing Galois groups'
   'lrs: Algorithms for linear reverse search used in game theory and for 
computing volume of polytopes'
   'libhomfly: for computing the homfly polynomial of links' 'libbraiding: for 
computing in braid groups'
@@ -33,29 +33,24 @@
   'sirocco: for computing the fundamental group of the complement of a plane 
curve'
   'three.js: alternative 3D plots engine' 'tachyon: alternative 3D plots 
engine')
 makedepends=(cython2 boost ratpoints symmetrica python2-jinja coin-or-cbc 
libhomfly libbraiding sirocco
-  mcqd coxeter3 modular_decomposition bliss-graphs tdlib python2-pkgconfig 
meataxe libfes)
+  mcqd coxeter3 bliss-graphs tdlib python2-pkgconfig meataxe libfes)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz;
-env.patch package.patch latte-count.patch jupyter-path.patch 
sagemath-python3-notebook.patch test-optional.patch
-r-no-readline.patch fes02.patch sagemath-ecl-no-sigfpe.patch 
sagemath-cython-0.26.patch sagemath-threejs.patch
-sagemath-pynac-0.7.11.patch sagemath-pynac-0.7.12.patch 
sagemath-detect-igraph.patch sagemath-networkx2.patch
-sagemath-brial-1.2.patch sagemath-linbox-1.5.patch 
sagemath-pynac-0.7.14.patch)
-sha256sums=('91df3e303add71616e24b38c04789f66d57ada7b1017e5369e850c42d5e8753d'
-'e0b5b8673300857fde823209a7e90faecf9e754ab812cc5e54297eddc0c79571'
-'4a2297e4d9d28f0b3a1f58e1b463e332affcb109eafde44837b1657e309c8212'
-'c6836783251d94c00f0229c1e671de86c58c6c6fb0f6959725317817abc64ca8'
-'775051aa9076ebf631c8a291af38b6ec4a13c904740dc9da831641d592d8bcd8'
-'27aa73d427d92aeb2c181a233aa3a574a4158cd7dee33832808f69edaec55ea2'
-'81d08c6a760f171f3381455b66a6c84789c9f0eefddbe6ca5794075514ad8c3a'
-'ef9f401fa84fe1772af9efee6816643534f2896da4c23b809937b19771bdfbbf'
-'a39da083c038ada797ffc5bedc9ba47455a3f77057d42f86484ae877ef9172ea'
+sagemath-env.patch package.patch latte-count.patch jupyter-path.patch 
sagemath-python3-notebook.patch test-optional.patch
+r-no-readline.patch fes02.patch sagemath-ecl-no-sigfpe.patch 
sagemath-threejs.patch
+sagemath-detect-igraph.patch sagemath-networkx2.patch 

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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:50:13
  Author: arojas
Revision: 312146

archrelease: copy trunk to testing-x86_64

Added:
  kross/repos/testing-x86_64/
  kross/repos/testing-x86_64/PKGBUILD
(from rev 312145, kross/trunk/PKGBUILD)

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

Copied: kross/repos/testing-x86_64/PKGBUILD (from rev 312145, 
kross/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:50:13 UTC (rev 312146)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kross
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Multi-language application scripting'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'python')
+groups=('kf5-aids')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('913f7a6276522b6211ef2bc1c18dccffb4d426b69d796eb2f1ebc138167f4e77'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:50:00
  Author: arojas
Revision: 312145

archrelease: copy trunk to testing-x86_64

Added:
  kmediaplayer/repos/testing-x86_64/
  kmediaplayer/repos/testing-x86_64/PKGBUILD
(from rev 312144, kmediaplayer/trunk/PKGBUILD)

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

Copied: kmediaplayer/repos/testing-x86_64/PKGBUILD (from rev 312144, 
kmediaplayer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:50:00 UTC (rev 312145)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kmediaplayer
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Plugin interface for media player features'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5-aids')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('e40bb582e3641606ac7384d26b0e8433ad53551755c586a3e104a52b5004820c'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:49:41
  Author: arojas
Revision: 312144

archrelease: copy trunk to testing-x86_64

Added:
  kjsembed/repos/testing-x86_64/
  kjsembed/repos/testing-x86_64/PKGBUILD
(from rev 312143, kjsembed/trunk/PKGBUILD)

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

Copied: kjsembed/repos/testing-x86_64/PKGBUILD (from rev 312143, 
kjsembed/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:49:41 UTC (rev 312144)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kjsembed
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Embedded JS'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-svg' 'ki18n' 'kjs')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python')
+groups=('kf5-aids')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('a71f358ff922d56b5fe7cbd19a0e9183106d1961883ca54f1db2e5d47281abef'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:49:18
  Author: arojas
Revision: 312143

archrelease: copy trunk to testing-x86_64

Added:
  khtml/repos/testing-x86_64/
  khtml/repos/testing-x86_64/PKGBUILD
(from rev 312142, khtml/trunk/PKGBUILD)

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

Copied: khtml/repos/testing-x86_64/PKGBUILD (from rev 312142, 
khtml/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:49:18 UTC (rev 312143)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=khtml
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='KHTML APIs'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('giflib' 'kparts' 'kjs')
+makedepends=('extra-cmake-modules' 'python' 'gperf')
+groups=('kf5-aids')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('c3e7cf947d01bbd17fbdf233312676495f36a9b85aa3499c9a68fd78da307a3d'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:48:58
  Author: arojas
Revision: 312142

archrelease: copy trunk to testing-x86_64

Added:
  kdelibs4support/repos/testing-x86_64/
  kdelibs4support/repos/testing-x86_64/PKGBUILD
(from rev 312141, kdelibs4support/trunk/PKGBUILD)

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

Copied: kdelibs4support/repos/testing-x86_64/PKGBUILD (from rev 312141, 
kdelibs4support/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:48:58 UTC (rev 312142)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdelibs4support
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Porting aid from KDELibs4'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kunitconversion' 'kitemmodels' 'kemoticons' 'kded' 'kparts')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'networkmanager' 
'perl-uri' 'python' 'kdesignerplugin')
+groups=('kf5-aids')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('242f748a199e5eb3c63a2f02618de9e68c83b6385473d6dd9ada3304111f77d6'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# cert bundle seems to be hardcoded
+# link it to the one from ca-certificates
+  rm -f "$pkgdir"/usr/share/kf5/kssl/ca-bundle.crt
+  ln -sf /etc/ssl/certs/ca-certificates.crt 
"${pkgdir}"/usr/share/kf5/kssl/ca-bundle.crt
+}


[arch-commits] Commit in qqc2-desktop-style/repos/testing-x86_64 (3 files)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:48:36
  Author: arojas
Revision: 312141

archrelease: copy trunk to testing-x86_64

Added:
  qqc2-desktop-style/repos/testing-x86_64/PKGBUILD
(from rev 312140, qqc2-desktop-style/trunk/PKGBUILD)
Deleted:
  qqc2-desktop-style/repos/testing-x86_64/PKGBUILD
  qqc2-desktop-style/repos/testing-x86_64/qqc2-versioning.patch

---+
 PKGBUILD  |   75 ++---
 qqc2-versioning.patch |  622 
 2 files changed, 35 insertions(+), 662 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-10 18:48:08 UTC (rev 312140)
+++ PKGBUILD2017-12-10 18:48:36 UTC (rev 312141)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=qqc2-desktop-style
-pkgver=5.40.0
-pkgrel=3
-pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
-arch=(x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-groups=(kf5)
-depends=(kirigami2 kiconthemes)
-makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
-qqc2-versioning.patch)
-sha256sums=('89ec1b98a3b9491f37cd3c13ff6ec047d773efb0fb697c14b9a8388fb0b6ed4a'
-'SKIP'
-'3ab65d9155cfa5c3be9b173f53bc032bd5d0b634c86aa3e366c800c7012eed10')
-validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure 

-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../qqc2-versioning.patch # Determine QQC2 version at build time 
https://bugs.kde.org/show_bug.cgi?id=386289
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: qqc2-desktop-style/repos/testing-x86_64/PKGBUILD (from rev 312140, 
qqc2-desktop-style/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-10 18:48:36 UTC (rev 312141)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=qqc2-desktop-style
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+groups=(kf5)
+depends=(kirigami2 kiconthemes)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('1cd4e92d68c557752e607870af2a67c3d45adcd1625e8421fbdf214f9593cc98'
+'SKIP')
+validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: qqc2-versioning.patch
===
--- qqc2-versioning.patch   2017-12-10 18:48:08 UTC (rev 312140)
+++ qqc2-versioning.patch   2017-12-10 18:48:36 UTC (rev 312141)
@@ -1,622 +0,0 @@
-From d0e3daafdbdd858a5ee6e6b0b2de6a7a39ff27f1 Mon Sep 17 00:00:00 2001
-From: Marco Martin 
-Date: Wed, 29 Nov 2017 11:03:41 +0100
-Subject: determine QQC2 version at build time
-
-Summary:
-the qqc2 theme style needs to import the same qqc2 version
-than the latest one available in the installed Qt, otherwise
-users of QQC2 will only be able to use features available in
-Qt 5.7, even if they have a more recent Qt installed.
-this will also be needed to conditionally support the icon
-property introduced  in Qt 5.10
-
-BUG:386289
-
-Test Plan:
-kirigami gallery works with the style installed in this way
-it will need a better way to figure out what the available
-qqc2 version is
-
-Reviewers: #plasma, rizzitello, davidedmundson, apol
-
-Reviewed By: #plasma, rizzitello, davidedmundson, apol
-
-Subscribers: apol, rizzitello, plasma-devel
-
-Tags: #plasma
-
-Differential Revision: https://phabricator.kde.org/D9021

- CMakeLists.txt  | 21 -
- org.kde.desktop/Button.qml  |  2 +-
- org.kde.desktop/CheckBox.qml|  4 ++--
- org.kde.desktop/CheckDelegate.qml   |  2 +-
- org.kde.desktop/ComboBox.qml| 34 +++---
- org.kde.desktop/Container.qml   |  2 +-
- org.kde.desktop/Control.qml |  2 +-
- org.kde.desktop/Dial.qml|  4 ++--
- org.kde.desktop/Dialog.qml  |  2 +-
- org.kde.desktop/DialogButtonBox.qml |  2 +-
- org.kde.desktop/Drawer.qml  |  4 ++--
- org.kde.desktop/Frame.qml   |  4 ++--

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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:48:08
  Author: arojas
Revision: 312140

archrelease: copy trunk to testing-x86_64

Added:
  prison/repos/testing-x86_64/
  prison/repos/testing-x86_64/PKGBUILD
(from rev 312139, prison/trunk/PKGBUILD)

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

Copied: prison/repos/testing-x86_64/PKGBUILD (from rev 312139, 
prison/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:48:08 UTC (rev 312140)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=prison
+pkgver=5.41.0
+pkgrel=1
+pkgdesc="A barcode API to produce QRCode barcodes and DataMatrix barcodes"
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(GPL)
+depends=(qt5-base libdmtx qrencode)
+makedepends=(extra-cmake-modules doxygen qt5-tools)
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('b1ef221964d479255ac1ded2a96b73f90723b8e69f3b3c9a86dd1f02860a7960'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in oxygen-icons/repos (testing-any testing-any/PKGBUILD)

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:44:04
  Author: arojas
Revision: 312139

archrelease: copy trunk to testing-any

Added:
  oxygen-icons/repos/testing-any/
  oxygen-icons/repos/testing-any/PKGBUILD
(from rev 312138, oxygen-icons/trunk/PKGBUILD)

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

Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 312138, 
oxygen-icons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-12-10 18:44:04 UTC (rev 312139)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=oxygen-icons
+pkgname=('oxygen-icons'
+ 'oxygen-icons-svg')
+pkgver=5.41.0
+epoch=1
+pkgrel=1
+pkgdesc="The Oxygen Icon Theme"
+arch=('any')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+makedepends=('extra-cmake-modules' 'qt5-base')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}5-${pkgver}.tar.xz"{,.sig})
+sha256sums=('61c8fcda873a1fa98d270f6c25a85677b1beaf233cb08b741d675fc2bf93ecfe'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}5-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_oxygen-icons() {
+  groups=('kf5')
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_oxygen-icons-svg() {
+  pkgdesc="The Oxygen Icon Theme (Scalable Vector Graphics)"
+
+  cd ${pkgbase}5-${pkgver}
+  find scalable -type f ! -name '*.sh' -exec \
+install -D -m644 "{}" "${pkgdir}/usr/share/icons/oxygen/{}" \;
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:43:46
  Author: arojas
Revision: 312138

archrelease: copy trunk to testing-x86_64

Added:
  networkmanager-qt/repos/testing-x86_64/
  networkmanager-qt/repos/testing-x86_64/PKGBUILD
(from rev 312137, networkmanager-qt/trunk/PKGBUILD)

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

Copied: networkmanager-qt/repos/testing-x86_64/PKGBUILD (from rev 312137, 
networkmanager-qt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:43:46 UTC (rev 312138)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=networkmanager-qt
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Qt wrapper for NetworkManager API'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('networkmanager' 'qt5-base')
+makedepends=('extra-cmake-modules' 'doxygen' 'qt5-tools')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('9bc26e42d27f829af1b1779cd10a4bb5639aebeeab80086a35b7ccaab85bb96d'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:43:21
  Author: arojas
Revision: 312136

archrelease: copy trunk to testing-x86_64

Added:
  kxmlrpcclient/repos/testing-x86_64/
  kxmlrpcclient/repos/testing-x86_64/PKGBUILD
(from rev 312135, kxmlrpcclient/trunk/PKGBUILD)

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

Copied: kxmlrpcclient/repos/testing-x86_64/PKGBUILD (from rev 312135, 
kxmlrpcclient/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:43:21 UTC (rev 312136)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=kxmlrpcclient
+pkgver=5.41.0
+pkgrel=1
+pkgdesc="XML-RPC client library for KDE"
+arch=('x86_64')
+url="https://projects.kde.org/projects/kde/pim/kxmlrpcclient;
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python' 'doxygen' 'qt5-tools')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('27e66dc96c787069583dc44a80f29c27a3ac0e3482a8694664df28146637f678'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:43:33
  Author: arojas
Revision: 312137

archrelease: copy trunk to testing-x86_64

Added:
  modemmanager-qt/repos/testing-x86_64/
  modemmanager-qt/repos/testing-x86_64/PKGBUILD
(from rev 312136, modemmanager-qt/trunk/PKGBUILD)

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

Copied: modemmanager-qt/repos/testing-x86_64/PKGBUILD (from rev 312136, 
modemmanager-qt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:43:33 UTC (rev 312137)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Mainrainer: Antonio Rojas 
+
+pkgname=modemmanager-qt
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Qt wrapper for ModemManager DBus API'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(modemmanager qt5-base)
+makedepends=(extra-cmake-modules doxygen qt5-tools)
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('4072b4914c4b900c518d3e76b78d70901f44b60f48a527751b19eff729ade9ae'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:43:06
  Author: arojas
Revision: 312135

archrelease: copy trunk to testing-x86_64

Added:
  ktexteditor/repos/testing-x86_64/
  ktexteditor/repos/testing-x86_64/PKGBUILD
(from rev 312134, ktexteditor/trunk/PKGBUILD)

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

Copied: ktexteditor/repos/testing-x86_64/PKGBUILD (from rev 312134, 
ktexteditor/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:43:06 UTC (rev 312135)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktexteditor
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Advanced embeddable text editor'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts' 'syntax-highlighting' 'libgit2' 'editorconfig-core-c')
+makedepends=('extra-cmake-modules' 'python' 'doxygen' 'qt5-tools')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('ff703f0aee9efb1f59bedd80aa6e3e5898aa6a7df1c7cc768ddb2e0759a3bbc5'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:42:53
  Author: arojas
Revision: 312134

archrelease: copy trunk to testing-x86_64

Added:
  krunner/repos/testing-x86_64/
  krunner/repos/testing-x86_64/PKGBUILD
(from rev 312133, krunner/trunk/PKGBUILD)

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

Copied: krunner/repos/testing-x86_64/PKGBUILD (from rev 312133, 
krunner/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:42:53 UTC (rev 312134)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=krunner
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Framework for providing different actions given a string query'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+groups=('kf5')
+depends=('plasma-framework' 'threadweaver')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'doxygen' 'qt5-tools')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('037537791cea4b90056e7ac113d424fab080d120a16d757e0aeada0db48cdd6f'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:42:40
  Author: arojas
Revision: 312133

archrelease: copy trunk to testing-x86_64

Added:
  kpeople/repos/testing-x86_64/
  kpeople/repos/testing-x86_64/PKGBUILD
(from rev 312132, kpeople/trunk/PKGBUILD)

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

Copied: kpeople/repos/testing-x86_64/PKGBUILD (from rev 312132, 
kpeople/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:42:40 UTC (rev 312133)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=kpeople
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='A library that provides access to all contacts and the people who 
hold them'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kservice kwidgetsaddons kitemviews qt5-declarative)
+makedepends=(extra-cmake-modules python mesa doxygen qt5-tools)
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('85ff1ff8b5070f9c015e1928ec7a3dd7bc4c21635ce0f66fcc73db6a4c5ee2cc'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:42:26
  Author: arojas
Revision: 312132

archrelease: copy trunk to testing-x86_64

Added:
  knotifyconfig/repos/testing-x86_64/
  knotifyconfig/repos/testing-x86_64/PKGBUILD
(from rev 312131, knotifyconfig/trunk/PKGBUILD)

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

Copied: knotifyconfig/repos/testing-x86_64/PKGBUILD (from rev 312131, 
knotifyconfig/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:42:26 UTC (rev 312132)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=knotifyconfig
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Configuration system for KNotify'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python' 'doxygen' 'qt5-tools')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('7a9bb8d350b2cb4664d3f85664d3034eaa695d2ed072cd2627e3c26b0e942d43'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:42:13
  Author: arojas
Revision: 312131

archrelease: copy trunk to testing-x86_64

Added:
  kitemmodels/repos/testing-x86_64/
  kitemmodels/repos/testing-x86_64/PKGBUILD
(from rev 312130, kitemmodels/trunk/PKGBUILD)

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

Copied: kitemmodels/repos/testing-x86_64/PKGBUILD (from rev 312130, 
kitemmodels/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:42:13 UTC (rev 312131)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kitemmodels
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Models for Qt Model/View system'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'python2-pyqt5' 'python-pyqt5' 'clang' 
'doxygen' 'qt5-tools')
+optdepends=('python-pykf5: to use the Python 3 bindings' 'python2-pykf5: to 
use the Python 2 bindings')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('b39487f5e1f004ce42f021bc9108b717f99a08875c662dc15dd0ba88247b768e'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:42:00
  Author: arojas
Revision: 312130

archrelease: copy trunk to testing-x86_64

Added:
  kimageformats/repos/testing-x86_64/
  kimageformats/repos/testing-x86_64/PKGBUILD
(from rev 312129, kimageformats/trunk/PKGBUILD)

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

Copied: kimageformats/repos/testing-x86_64/PKGBUILD (from rev 312129, 
kimageformats/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:42:00 UTC (rev 312130)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kimageformats
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Image format plugins for Qt5'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base' 'openexr')
+makedepends=('extra-cmake-modules' 'karchive' 'mesa')
+optdepends=('karchive: plugin for Krita and OpenRaster images')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('1ae1658886293934ec95f9a39dac438c3a4be71514d7f6de1529d8a18911ae85'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:41:45
  Author: arojas
Revision: 312129

archrelease: copy trunk to testing-x86_64

Added:
  kemoticons/repos/testing-x86_64/
  kemoticons/repos/testing-x86_64/PKGBUILD
(from rev 312128, kemoticons/trunk/PKGBUILD)

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

Copied: kemoticons/repos/testing-x86_64/PKGBUILD (from rev 312128, 
kemoticons/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:41:45 UTC (rev 312129)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kemoticons
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Support for emoticons and emoticons themes'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('karchive' 'kservice')
+makedepends=('extra-cmake-modules' 'python' 'mesa' 'doxygen' 'qt5-tools')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('6ff858dece0d5befb06cc2b35c224d3bcc767617ba2211827c59c086a66146d2'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-10 Thread Antonio Rojas via arch-commits
Date: Sunday, December 10, 2017 @ 18:41:18
  Author: arojas
Revision: 312127

archrelease: copy trunk to testing-x86_64

Added:
  kdesu/repos/testing-x86_64/
  kdesu/repos/testing-x86_64/PKGBUILD
(from rev 312126, kdesu/trunk/PKGBUILD)

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

Copied: kdesu/repos/testing-x86_64/PKGBUILD (from rev 312126, 
kdesu/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-10 18:41:18 UTC (rev 312127)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesu
+pkgver=5.41.0
+pkgrel=1
+pkgdesc='Integration with su for elevated privileges'
+arch=('x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kservice' 'kpty')
+makedepends=('extra-cmake-modules' 'python' 'doxygen' 'qt5-tools')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('2b078a429d094ebc20699f8f661a87f1bae5f0a41d9d93c1acf37f50fc3ad588'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# See FS#44277
+  chown :nobody "${pkgdir}"/usr/lib/kf5/kdesud
+  chmod g+s "${pkgdir}"/usr/lib/kf5/kdesud
+}


  1   2   3   >