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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:15:13
  Author: felixonmars
Revision: 389537

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 389536, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 389536, stack/trunk/stack.install)

---+
 PKGBUILD  |   76 
 stack.install |4 ++
 2 files changed, 80 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 389536, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 15:15:13 UTC (rev 389537)
@@ -0,0 +1,76 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.7.1
+pkgrel=158
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-gitrev' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;)
+sha512sums=('786c116b4717f6e0f5ac0b5397db4834486610f511eafefe2356574545f97093fe3203824b7a3cabb2e0562e5c0443af3d93defe83751a9982727d88cafe78a7')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '54d;55d;56d;57d;58d' src/test/Stack/StoreSpec.hs
+  hpack
+  sed -i '/semigroups/d' $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-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  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
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+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"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 389536, 

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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:15:00
  Author: felixonmars
Revision: 389536

upgpkg: stack 1.7.1-158

rebuild with foldl 1.4.5

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:07:37 UTC (rev 389535)
+++ PKGBUILD2018-10-04 15:15:00 UTC (rev 389536)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.7.1
-pkgrel=157
+pkgrel=158
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:16:26
  Author: felixonmars
Revision: 389538

upgpkg: stylish-haskell 0.9.2.0-77

rebuild with foldl 1.4.5

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:15:13 UTC (rev 389537)
+++ PKGBUILD2018-10-04 15:16:26 UTC (rev 389538)
@@ -3,7 +3,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.9.2.0
-pkgrel=76
+pkgrel=77
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell;
 license=("custom:BSD3")


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

2018-10-04 Thread Florian Pritz via arch-commits
Date: Thursday, October 4, 2018 @ 18:08:51
  Author: bluewind
Revision: 389570

archrelease: copy trunk to community-x86_64

Added:
  filezilla/repos/community-x86_64/PKGBUILD
(from rev 389569, filezilla/trunk/PKGBUILD)
Deleted:
  filezilla/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 18:08:48 UTC (rev 389569)
+++ PKGBUILD2018-10-04 18:08:51 UTC (rev 389570)
@@ -1,35 +0,0 @@
-# Contributor: Alexander Fehr 
-# Maintainer: Daniel J Griffiths 
-
-pkgname=filezilla
-pkgver=3.37.1
-pkgrel=1
-pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
-arch=('x86_64')
-url="http://filezilla-project.org/;
-license=('GPL')
-depends=('dbus' 'xdg-utils' 'wxgtk3' 'libidn' 'hicolor-icon-theme' 'sqlite' 
'gnutls' 'libfilezilla')
-source=("https://download.filezilla-project.org/client/FileZilla_${pkgver}_src.tar.bz2;)
-md5sums=('e55df365cc17ba5d703b667d2e540440')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure \
---prefix=/usr \
---disable-manualupdatecheck \
---disable-autoupdatecheck \
---with-pugixml=builtin \
---with-wx-config=/usr/bin/wx-config-gtk3
-
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: filezilla/repos/community-x86_64/PKGBUILD (from rev 389569, 
filezilla/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 18:08:51 UTC (rev 389570)
@@ -0,0 +1,35 @@
+# Contributor: Alexander Fehr 
+# Maintainer: Daniel J Griffiths 
+
+pkgname=filezilla
+pkgver=3.37.4
+pkgrel=1
+pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
+arch=('x86_64')
+url="http://filezilla-project.org/;
+license=('GPL')
+depends=('dbus' 'xdg-utils' 'wxgtk3' 'libidn' 'hicolor-icon-theme' 'sqlite' 
'gnutls' 'libfilezilla')
+source=("https://download.filezilla-project.org/client/FileZilla_${pkgver}_src.tar.bz2;)
+md5sums=('0c8d36d6f8d3445c28583339eaea2618')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure \
+--prefix=/usr \
+--disable-manualupdatecheck \
+--disable-autoupdatecheck \
+--with-pugixml=builtin \
+--with-wx-config=/usr/bin/wx-config-gtk3
+
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}


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

2018-10-04 Thread Florian Pritz via arch-commits
Date: Thursday, October 4, 2018 @ 18:08:48
  Author: bluewind
Revision: 389569

upgpkg: filezilla 3.37.4-1

upstream update

Modified:
  filezilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 18:05:26 UTC (rev 389568)
+++ PKGBUILD2018-10-04 18:08:48 UTC (rev 389569)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel J Griffiths 
 
 pkgname=filezilla
-pkgver=3.37.1
+pkgver=3.37.4
 pkgrel=1
 pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('dbus' 'xdg-utils' 'wxgtk3' 'libidn' 'hicolor-icon-theme' 'sqlite' 
'gnutls' 'libfilezilla')
 
source=("https://download.filezilla-project.org/client/FileZilla_${pkgver}_src.tar.bz2;)
-md5sums=('e55df365cc17ba5d703b667d2e540440')
+md5sums=('0c8d36d6f8d3445c28583339eaea2618')
 
 prepare() {
   cd "${pkgname}-${pkgver}"


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:07:37
  Author: felixonmars
Revision: 389535

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 389534, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 389534, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 15:07:37 UTC (rev 389535)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.5.0
+pkgrel=120
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('87861cddb353262630e4370e12e508224b3c14e128082909b4b35f0526dfe648a744d68cc27f77f2f8bb098af37a2af7bdc805d88018bba5e48b6c1ff1749f10')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:18:48
  Author: felixonmars
Revision: 389540

upgpkg: tamarin-prover 1.4.0-119

rebuild with foldl 1.4.5

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:16:38 UTC (rev 389539)
+++ PKGBUILD2018-10-04 15:18:48 UTC (rev 389540)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.0
-pkgrel=118
+pkgrel=119
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:19:09
  Author: felixonmars
Revision: 389541

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 389540, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
389540, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 15:19:09 UTC (rev 389541)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.0
+pkgrel=119
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('7c1afe6a53b596c2ce01e9ad7a7f464af1f4efbc5f8edc13d5ec8bc32ce4e91ddde91dff6ab8e01cf3cf30a37a3a18953d937debc36c9df664f718d968e2ae74')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 15:42:12
  Author: svenstaro
Revision: 389547

archrelease: copy trunk to community-any

Added:
  cimg/repos/community-any/PKGBUILD
(from rev 389546, cimg/trunk/PKGBUILD)
Deleted:
  cimg/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 15:42:00 UTC (rev 389546)
+++ PKGBUILD2018-10-04 15:42:12 UTC (rev 389547)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Diego Galizzi 
-# Contributor: zoulnix 
-
-pkgname=cimg
-pkgver=2.2.1
-pkgrel=1
-pkgdesc="Open-source C++ toolkit for image processing"
-arch=('any')
-url="http://cimg.eu/;
-license=('custom')
-depends=('fftw' 'graphicsmagick')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver//./}.tar.gz;)
-sha256sums=('364730f00457dc8e95b90dc2d786d68ad15f28f5e1eedd04762ed9c3e736348f')
-
-package() {
-  cd "${srcdir}"/CImg-v.${pkgver//./}
-  install -d "${pkgdir}"/usr/include/CImg/plugins 
${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 CImg.h "${pkgdir}"/usr/include/
-  install -m644 plugins/*.h "${pkgdir}"/usr/include/CImg/plugins/
-  install -m644 Licence_CeCILL*_V*-en.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: cimg/repos/community-any/PKGBUILD (from rev 389546, cimg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 15:42:12 UTC (rev 389547)
@@ -0,0 +1,22 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Diego Galizzi 
+# Contributor: zoulnix 
+
+pkgname=cimg
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Open-source C++ toolkit for image processing"
+arch=('any')
+url="http://cimg.eu/;
+license=('custom')
+depends=('fftw' 'graphicsmagick')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver}.tar.gz;)
+sha256sums=('2411f1c1ba3f888cd1c3cf781286d80d1cb2752cfefe81a0896dd58f99792e8f')
+
+package() {
+  cd "${srcdir}"/CImg-v.${pkgver}
+  install -d "${pkgdir}"/usr/include/CImg/plugins 
${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 CImg.h "${pkgdir}"/usr/include/
+  install -m644 plugins/*.h "${pkgdir}"/usr/include/CImg/plugins/
+  install -m644 Licence_CeCILL*_V*-en.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config.x86_64)

2018-10-04 Thread Levente Polyak via arch-commits
Date: Thursday, October 4, 2018 @ 16:03:37
  Author: anthraxx
Revision: 335760

upgpkg: linux-hardened 4.18.12.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config.x86_64

---+
 PKGBUILD  |8 
 config.x86_64 |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 05:21:01 UTC (rev 335759)
+++ PKGBUILD2018-10-04 16:03:37 UTC (rev 335760)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=4.18.11
+_pkgver=4.18.12
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
@@ -23,11 +23,11 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('36d319f5a6caf5dd6ab2a4802b800799b56ef5963d742f2d147fabadf4822c8c'
+sha256sums=('846a5ad9cbe576f66aeeb188c9bd45d14eee0783aebfc4ea853dac09a7159fc5'
 'SKIP'
-'c3f98d46b8f672cb97fd642f1cd933c699b4e979b62d29fbe7fddb43215d3fbd'
+'a7f935245cd5dc556de1f09bddd616a57e6b1b6688c6a4b7dee06f8710483139'
 'SKIP'
-'3bc9380fdd0dbc504d14406fdbed5350b4f30f90022aeea7ab396c51a538e445'
+'de220a1511f3cd991553b437db2bd2a2c09d99c1143402c98c8cfc3f1c17d9a9'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config.x86_64
===
--- config.x86_64   2018-10-04 05:21:01 UTC (rev 335759)
+++ config.x86_64   2018-10-04 16:03:37 UTC (rev 335760)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.18.11 Kernel Configuration
+# Linux/x86 4.18.12 Kernel Configuration
 #
 
 #


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (12 files)

2018-10-04 Thread Levente Polyak via arch-commits
Date: Thursday, October 4, 2018 @ 16:03:48
  Author: anthraxx
Revision: 335761

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 335760, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 335760, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 335760, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 335760, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 335760, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 335760, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  500 -
 config.x86_64 |19322 
 linux.install |   22 
 linux.preset  |   28 
 6 files changed, 9959 insertions(+), 9959 deletions(-)

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


[arch-commits] Commit in riot/repos/community-any (6 files)

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 16:43:01
  Author: archange
Revision: 389556

archrelease: copy trunk to community-any

Added:
  riot/repos/community-any/PKGBUILD
(from rev 389555, riot/trunk/PKGBUILD)
  riot/repos/community-any/riot-desktop.sh
(from rev 389555, riot/trunk/riot-desktop.sh)
  riot/repos/community-any/riot.desktop
(from rev 389555, riot/trunk/riot.desktop)
Deleted:
  riot/repos/community-any/PKGBUILD
  riot/repos/community-any/riot-desktop.sh
  riot/repos/community-any/riot.desktop

-+
 PKGBUILD|  154 +++---
 riot-desktop.sh |6 +-
 riot.desktop|   18 +++---
 3 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 16:42:44 UTC (rev 389555)
+++ PKGBUILD2018-10-04 16:43:01 UTC (rev 389556)
@@ -1,77 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-# Contributor: Luca Weiss 
-
-pkgbase=riot
-pkgname=('riot-desktop' 'riot-web')
-pkgver=0.16.4
-pkgrel=1
-pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
-arch=('any')
-url="https://riot.im;
-_url="https://github.com/vector-im/riot-web;
-license=('Apache')
-makedepends=('npm' 'git')
-source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
-
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
-"${pkgbase}.desktop"
-"${pkgbase}-desktop.sh")
-sha256sums=('cf5d3132f9e4cc7539f239ed67a7b3949b9b0aa89dc3272f6ef4b8318ca74aac'
-'SKIP'
-'043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
-'94807ecb4210b09672d39f39b5be6f4e8fbd58e9d674c3b7ca795a6dd9c14ff7')
-validpgpkeys=('6FEB6F83D48B93547E7DFEDEE019645248E8F4A1') # riot.im (Package 
Signing key) 
-
-prepare() {
-  cd ${pkgbase}-web-${pkgver}
-  sed -i 's@https://riot.im/download/desktop/update/@null@g' 
electron_app/riot.im/config.json
-}
-
-build() {
-  cd ${pkgbase}-web-${pkgver}
-  npm install --cache ../npm-cache
-  npm run build --cache ../npm-cache
-}
-
-package_riot-web() {
-  pkgdesc="A glossy Matrix collaboration client for the web."
-  provides=('vector-web')  # @vith
-  replaces=('vector-web')  # @vith
-  cd ${pkgbase}-web-${pkgver}
-
-  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/${pkgbase}
-
-  cp -r webapp/* "${pkgdir}"/usr/share/webapps/${pkgbase}/
-  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/${pkgbase}/
-  ln -s /etc/webapps/${pkgbase}/config.json 
"${pkgdir}"/usr/share/webapps/${pkgbase}/
-  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/${pkgbase}/version
-}
-
-package_riot-desktop() {
-  pkgdesc="A glossy Matrix collaboration client for the desktop."
-  depends=('riot-web' 'electron')
-  backup=("etc/${pkgbase}/config.json")
-  cd ${pkgbase}-web-${pkgver}
-
-  cd electron_app
-  npm install --cache "${srcdir}"/npm-cache
-  cd ..
-
-  install -d 
"${pkgdir}"{/usr/lib/${pkgbase}/electron_app,/etc/webapps/${pkgbase}}
-
-  ln -s /usr/share/webapps/${pkgbase} "${pkgdir}"/usr/lib/${pkgbase}/webapp
-  ln -s /etc/${pkgbase}/config.json 
"${pkgdir}"/etc/webapps/${pkgbase}/config.json
-
-  install -Dm644 package.json -t "${pkgdir}"/usr/lib/${pkgbase}
-  cp -r electron_app/src "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  cp -r electron_app/node_modules "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  install -Dm644 electron_app/img/riot.png -t 
"${pkgdir}"/usr/lib/${pkgbase}/electron_app/img
-  install -Dm644 electron_app/riot.im/config.json -t "${pkgdir}"/etc/${pkgbase}
-
-  install -Dm644 "${srcdir}"/${pkgbase}.desktop 
"${pkgdir}"/usr/share/applications/${pkgbase}.desktop
-  install -Dm755 "${srcdir}"/${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 res/themes/riot/img/logos/${pkgbase}-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/${pkgbase}.svg
-  for i in 16 24 48 64 96 128 256 512; do
-install -Dm644 electron_app/build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}x${i}/apps/${pkgbase}.png
-  done
-}

Copied: riot/repos/community-any/PKGBUILD (from rev 389555, riot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 16:43:01 UTC (rev 389556)
@@ -0,0 +1,77 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: Luca Weiss 
+
+pkgbase=riot
+pkgname=('riot-desktop' 'riot-web')
+pkgver=0.16.5
+pkgrel=1
+pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
+arch=('any')
+url="https://riot.im;
+_url="https://github.com/vector-im/riot-web;
+license=('Apache')
+makedepends=('npm' 'git')
+source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
+
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
+"${pkgbase}.desktop"
+  

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

2018-10-04 Thread Christian Hesse via arch-commits
Date: Thursday, October 4, 2018 @ 16:43:19
  Author: eworm
Revision: 389558

archrelease: copy trunk to community-x86_64

Added:
  mupdf/repos/community-x86_64/PKGBUILD
(from rev 389557, mupdf/trunk/PKGBUILD)
  mupdf/repos/community-x86_64/mupdf.desktop
(from rev 389557, mupdf/trunk/mupdf.desktop)
  mupdf/repos/community-x86_64/mupdf.xpm
(from rev 389557, mupdf/trunk/mupdf.xpm)
Deleted:
  mupdf/repos/community-x86_64/PKGBUILD
  mupdf/repos/community-x86_64/mupdf.desktop
  mupdf/repos/community-x86_64/mupdf.xpm

---+
 PKGBUILD  |  239 +++-
 mupdf.desktop |   30 +++
 2 files changed, 134 insertions(+), 135 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 16:43:07 UTC (rev 389557)
+++ PKGBUILD2018-10-04 16:43:19 UTC (rev 389558)
@@ -1,120 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Brad Fanella 
-# Contributor: Stefan Husmann 
-# Contributor: Pierre-Paul Paquin 
-# Contributor: xduugu
-
-pkgbase=mupdf
-pkgname=(libmupdf mupdf mupdf-gl mupdf-tools)
-pkgver=1.13.0
-pkgrel=1
-pkgdesc='Lightweight PDF and XPS viewer'
-arch=('x86_64')
-url='http://mupdf.com'
-license=('AGPL3')
-makedepends=('curl' 'desktop-file-utils' 'freetype2' 'freeglut' 'glu' 
'harfbuzz'
- 'jbig2dec' 'libjpeg' 'mesa-libgl' 'openjpeg2' 'libxext')
-# we need static libs for zathura-pdf-mupdf
-options=('staticlibs')
-source=("https://mupdf.com/downloads/mupdf-${pkgver/_/}-source.tar.xz;
-'mupdf.desktop'
-'mupdf.xpm')
-sha256sums=('746698e0d5cd113bdcb8f65d096772029edea8cf20704f0d15c96cb5449a4904'
-'ccff66979249bd4ab4ba8918660f194eb90eb0ae231b16e36a6cecdcf471883f'
-'a435f44425f5432c074dee745d8fbaeb879038ec1f1ec64f037c74662f09aca8')
-
-prepare() {
-  cd $pkgbase-${pkgver/_/}-source
-
-  # remove bundled packages, we want our system libraries
-  rm -rf 
thirdparty/{curl,freeglut,freetype,harfbuzz,jbig2dec,lcms2,libjpeg,openjpeg,zlib}
-
-  # fix includes for jbig2dec
-  sed '/^JBIG2DEC_CFLAGS :=/s|$| -I./include/mupdf|' -i Makethird
-
-  # this does not build with openssl 1.1.0, so disable checks
-  sed -i 's/pkg-config --exists \(libcrypto\|openssl\)/false/' Makerules
-}
-
-build() {
-  CFLAGS+=' -fPIC'
-  CXXFLAGS+=' -fPIC'
-  export CFLAGS CXXFLAGS
-
-  cd $pkgbase-${pkgver/_/}-source
-  make build=release libs apps extra
-}
-
-package_libmupdf() {
-  pkgdesc='Library for Lightweight PDF and XPS viewer'
-
-  cd $pkgbase-${pkgver/_/}-source
-
-  make build=release prefix="$pkgdir"/usr install
-
-  rm -rf "$pkgdir"/usr/{bin,share/man}
-  mv "$pkgdir"/usr/share/doc/mupdf "$pkgdir"/usr/share/doc/libmupdf
-
-  find "$pkgdir"/usr/include "$pkgdir"/usr/share "$pkgdir"/usr/lib \
--type f -exec chmod 0644 {} +
-}
-
-package_mupdf() {
-  pkgdesc='Lightweight PDF and XPS viewer'
-  depends=('curl' 'desktop-file-utils' 'freetype2' 'harfbuzz' 'jbig2dec'
-   'libjpeg' 'openjpeg2' 'openssl' 'libxext')
-
-  cd $pkgbase-${pkgver/_/}-source
-
-  install -D -m0755 build/release/mupdf-x11-curl "$pkgdir"/usr/bin/mupdf
-
-  install -D -m0644 docs/man/mupdf.1 "$pkgdir"/usr/share/man/man1/mupdf.1
-
-  install -d "$pkgdir"/usr/share/doc/mupdf
-  install -m0644  README COPYING CHANGES "$pkgdir"/usr/share/doc/mupdf
-
-  install -D -m0644 ../mupdf.desktop 
"$pkgdir"/usr/share/applications/mupdf.desktop
-  install -D -m0644 ../mupdf.xpm "$pkgdir"/usr/share/pixmaps/mupdf.xpm
-}
-
-package_mupdf-gl() {
-  pkgdesc='Lightweight PDF and XPS viewer with OpenGL backend'
-  conflicts=('mupdf')
-  provides=("mupdf=${pkgver}")
-  depends=('desktop-file-utils' 'freetype2' 'freeglut' 'glu' 'harfbuzz' 
'jbig2dec'
-   'libjpeg' 'openjpeg2')
-
-  cd $pkgbase-${pkgver/_/}-source
-
-  install -D -m0755 build/release/mupdf-gl "$pkgdir"/usr/bin/mupdf
-
-  install -D -m0644 docs/man/mupdf.1 "$pkgdir"/usr/share/man/man1/mupdf.1
-
-  install -d "$pkgdir"/usr/share/doc/mupdf
-  install -m0644 README COPYING CHANGES "$pkgdir"/usr/share/doc/mupdf
-
-  install -D -m0644 ../mupdf.desktop 
"$pkgdir"/usr/share/applications/mupdf.desktop
-  install -D -m0644 ../mupdf.xpm "$pkgdir"/usr/share/pixmaps/mupdf.xpm
-}
-
-package_mupdf-tools() {
-  pkgdesc='Tools for Lightweight PDF and XPS viewer'
-  depends=('mupdf')
-  depends=('freetype2' 'jbig2dec' 'libjpeg'
- 'openjpeg2' 'harfbuzz')
-
-  cd $pkgbase-${pkgver/_/}-source
-
-  install -D -m0755 build/release/mutool "$pkgdir"/usr/bin/mutool
-  install -D -m0755 build/release/mujstest "$pkgdir"/usr/bin/mujstest
-  install -D -m0755 build/release/muraster "$pkgdir"/usr/bin/muraster
-  install -D -m0755 build/release/mjsgen "$pkgdir"/usr/bin/mjsgen
-
-  install -D -m0644 docs/man/mutool.1 "$pkgdir"/usr/share/man/man1/mutool.1
-
-  install -d "$pkgdir"/usr/share/doc/mupdf-tools
-  install -m0644 README COPYING CHANGES "$pkgdir"/usr/share/doc/mupdf-tools
-}
-


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

2018-10-04 Thread Christian Hesse via arch-commits
Date: Thursday, October 4, 2018 @ 16:43:07
  Author: eworm
Revision: 389557

upgpkg: mupdf 1.14.0-1

new upstream release

Modified:
  mupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 16:43:01 UTC (rev 389556)
+++ PKGBUILD2018-10-04 16:43:07 UTC (rev 389557)
@@ -7,7 +7,7 @@
 
 pkgbase=mupdf
 pkgname=(libmupdf mupdf mupdf-gl mupdf-tools)
-pkgver=1.13.0
+pkgver=1.14.0
 pkgrel=1
 pkgdesc='Lightweight PDF and XPS viewer'
 arch=('x86_64')
@@ -17,10 +17,10 @@
  'jbig2dec' 'libjpeg' 'mesa-libgl' 'openjpeg2' 'libxext')
 # we need static libs for zathura-pdf-mupdf
 options=('staticlibs')
-source=("https://mupdf.com/downloads/mupdf-${pkgver/_/}-source.tar.xz;
+source=("https://mupdf.com/downloads/archive/mupdf-${pkgver/_/}-source.tar.xz;
 'mupdf.desktop'
 'mupdf.xpm')
-sha256sums=('746698e0d5cd113bdcb8f65d096772029edea8cf20704f0d15c96cb5449a4904'
+sha256sums=('603e69a96b04cdf9b19a3e41bd7b20c63b39abdcfba81a7460fcdcc205f856df'
 'ccff66979249bd4ab4ba8918660f194eb90eb0ae231b16e36a6cecdcf471883f'
 'a435f44425f5432c074dee745d8fbaeb879038ec1f1ec64f037c74662f09aca8')
 
@@ -27,14 +27,11 @@
 prepare() {
   cd $pkgbase-${pkgver/_/}-source
 
+  # fix linking curl
+  sed -i '/SYS_CURL_LIBS/s|$| -lpthread|' Makethird
+
   # remove bundled packages, we want our system libraries
-  rm -rf 
thirdparty/{curl,freeglut,freetype,harfbuzz,jbig2dec,lcms2,libjpeg,openjpeg,zlib}
-
-  # fix includes for jbig2dec
-  sed '/^JBIG2DEC_CFLAGS :=/s|$| -I./include/mupdf|' -i Makethird
-
-  # this does not build with openssl 1.1.0, so disable checks
-  sed -i 's/pkg-config --exists \(libcrypto\|openssl\)/false/' Makerules
+  rm -rf 
thirdparty/{curl,freeglut,freetype,harfbuzz,jbig2dec,libjpeg,openjpeg,zlib}
 }
 
 build() {
@@ -41,6 +38,9 @@
   CFLAGS+=' -fPIC'
   CXXFLAGS+=' -fPIC'
   export CFLAGS CXXFLAGS
+  
+  USE_SYSTEM_LIBS='yes'
+  export USE_SYSTEM_LIBS
 
   cd $pkgbase-${pkgver/_/}-source
   make build=release libs apps extra
@@ -83,7 +83,7 @@
   conflicts=('mupdf')
   provides=("mupdf=${pkgver}")
   depends=('desktop-file-utils' 'freetype2' 'freeglut' 'glu' 'harfbuzz' 
'jbig2dec'
-   'libjpeg' 'openjpeg2')
+   'libjpeg' 'openjpeg2' 'openssl')
 
   cd $pkgbase-${pkgver/_/}-source
 
@@ -102,7 +102,7 @@
   pkgdesc='Tools for Lightweight PDF and XPS viewer'
   depends=('mupdf')
   depends=('freetype2' 'jbig2dec' 'libjpeg'
- 'openjpeg2' 'harfbuzz')
+ 'openjpeg2' 'harfbuzz' 'openssl')
 
   cd $pkgbase-${pkgver/_/}-source
 


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

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 16:42:44
  Author: archange
Revision: 389555

upgpkg: riot 0.16.5-1

Modified:
  riot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 16:39:31 UTC (rev 389554)
+++ PKGBUILD2018-10-04 16:42:44 UTC (rev 389555)
@@ -3,7 +3,7 @@
 
 pkgbase=riot
 pkgname=('riot-desktop' 'riot-web')
-pkgver=0.16.4
+pkgver=0.16.5
 pkgrel=1
 pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
 arch=('any')
@@ -15,7 +15,7 @@
 
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
 "${pkgbase}.desktop"
 "${pkgbase}-desktop.sh")
-sha256sums=('cf5d3132f9e4cc7539f239ed67a7b3949b9b0aa89dc3272f6ef4b8318ca74aac'
+sha256sums=('12802bd663c6f98c6a08f8021cf567f609503a94a2ba9710edcad3106fe5d444'
 'SKIP'
 '043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
 '94807ecb4210b09672d39f39b5be6f4e8fbd58e9d674c3b7ca795a6dd9c14ff7')


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:07:25
  Author: felixonmars
Revision: 389534

upgpkg: shellcheck 0.5.0-120

rebuild with foldl 1.4.5

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:07:23 UTC (rev 389533)
+++ PKGBUILD2018-10-04 15:07:25 UTC (rev 389534)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.5.0
-pkgrel=119
+pkgrel=120
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2018-10-04 Thread Antonio Rojas via arch-commits
Date: Thursday, October 4, 2018 @ 15:07:23
  Author: arojas
Revision: 389533

archrelease: copy trunk to community-x86_64

Added:
  gmic/repos/community-x86_64/PKGBUILD
(from rev 389532, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 15:06:11 UTC (rev 389532)
+++ PKGBUILD2018-10-04 15:07:23 UTC (rev 389533)
@@ -1,75 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
-pkgver=2.3.6
-pkgrel=1
-arch=(x86_64)
-url="http://gmic.eu/;
-license=(custom:CeCILL)
-makedepends=(gimp qt5-base fftw openexr opencv git)
-source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz)
-sha256sums=('86fe671879725863acecc207bdb86c4428635cd1a20d6043618864cf4c366113')
-
-prepare() {
-  sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
-  sed -e 's|-Ofast|-O2 -fno-fast-math|g' -i gmic-$pkgver/gmic-qt/gmic_qt.pro
-# fix overlinking
-  sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' -i gmic-$pkgver/src/Makefile 
-}
-
-build() {
-  cd gmic-$pkgver
-  make -C src cli lib libc WGET=/bin/true
-
-  cd gmic-qt
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=none
-  make
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=gimp
-  make
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=krita
-  make  
-
-  cd ../zart
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on
-  make
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=(opencv fftw curl)
-  optdepends=('qt5-base: for the Qt UI')
-
-  cd gmic-$pkgver/src
-  make DESTDIR="$pkgdir" install
-  install -Dm644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  rm -r "$pkgdir"/usr/{bin/zart,lib/gimp,bin/gmic_krita_qt}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=(gmic qt5-base)
-
-  install -Dm755 gmic-$pkgver/zart/zart -t "$pkgdir"/usr/bin
-  install -Dm644 gmic-$pkgver/zart/Licence_CeCILL_V2-en.html -t 
"$pkgdir"/usr/share/licenses/$pkgname
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=(gimp gmic qt5-base)
-
-  install -Dm755 gmic-$pkgver/gmic-qt/gmic_gimp_qt 
"$pkgdir"/usr/lib/gimp/2.0/plug-ins/gmic_gimp
-  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_krita-plugin-gmic() {
-  pkgdesc="Krita plugin for the G'MIC image processing framework"
-  depends=(krita gmic)
-
-  install -Dm755 gmic-$pkgver/gmic-qt/gmic_krita_qt -t "$pkgdir"/usr/bin/
-  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: gmic/repos/community-x86_64/PKGBUILD (from rev 389532, 
gmic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 15:07:23 UTC (rev 389533)
@@ -0,0 +1,74 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
+pkgver=2.4.0
+pkgrel=1
+arch=(x86_64)
+url="http://gmic.eu/;
+license=(custom:CeCILL)
+makedepends=(gimp qt5-base fftw openexr opencv git)
+source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz)
+sha256sums=('ffc649c960f2dc52cea77039802a8c2b71f997ba300270e08fc2117e238614c3')
+
+prepare() {
+  sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
+# fix overlinking
+  sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' -i gmic-$pkgver/src/Makefile 
+}
+
+build() {
+  cd gmic-$pkgver
+  make -C src cli lib libc WGET=/bin/true
+
+  cd gmic-qt
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=none
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=gimp
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=krita
+  make  
+
+  cd ../zart
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on
+  make
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=(opencv fftw curl)
+  optdepends=('qt5-base: for the Qt UI')
+
+  cd gmic-$pkgver/src
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -r "$pkgdir"/usr/{bin/zart,lib/gimp,bin/gmic_krita_qt}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=(gmic qt5-base)
+

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

2018-10-04 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 4, 2018 @ 16:39:31
  Author: anatolik
Revision: 389554

archrelease: copy trunk to community-x86_64

Added:
  fio/repos/community-x86_64/PKGBUILD
(from rev 389553, fio/trunk/PKGBUILD)
Deleted:
  fio/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 16:38:46 UTC (rev 389553)
+++ PKGBUILD2018-10-04 16:39:31 UTC (rev 389554)
@@ -1,47 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Mariusz Libera 
-# Contributor: John Williams 
-
-pkgname=fio
-pkgver=3.10
-pkgrel=1
-pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
-arch=(x86_64)
-url='https://github.com/axboe/fio'
-license=(GPL2)
-# TODO: enable rdma, need to move the libraries from AUR
-depends=(bash libaio python2 numactl glusterfs ceph)
-makedepends=(gtk2)
-optdepends=(
-  'gtk2: for gfio - fio GUI frontend' 
-  'gnuplot: generating plots using fio_generate_plots'
-)
-source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
-sha256sums=('13526533cbfaff1241c8f5d1a35c950cbb0c18b2822b1938c678ce287158da02')
-
-prepare() {
-  cd fio-fio-$pkgver
-
-  sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -i 
tools/plot/fio2gnuplot
-}
-
-build() {
-  cd fio-fio-$pkgver
-  ./configure --disable-native --enable-gfio --extra-cflags="$CFLAGS"
-  make
-}
-
-package() {
-  cd fio-fio-$pkgver
-  make DESTDIR="$pkgdir" prefix=/usr mandir=/usr/share/man install
-
-  # documentation
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
-  install -m644 HOWTO README REPORTING-BUGS SERVER-TODO 
"$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-  install -Dm644 MORAL-LICENSE 
"$pkgdir/usr/share/licenses/$pkgname/MORAL-LICENSE"
-
-  # examples
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname/examples"
-  install -m644 examples/* "$pkgdir/usr/share/doc/$pkgname/examples"
-}

Copied: fio/repos/community-x86_64/PKGBUILD (from rev 389553, 
fio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 16:39:31 UTC (rev 389554)
@@ -0,0 +1,47 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Mariusz Libera 
+# Contributor: John Williams 
+
+pkgname=fio
+pkgver=3.11
+pkgrel=1
+pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
+arch=(x86_64)
+url='https://github.com/axboe/fio'
+license=(GPL2)
+# TODO: enable rdma, need to move the libraries from AUR
+depends=(bash libaio python2 numactl glusterfs)
+makedepends=(gtk2)
+optdepends=(
+  'gtk2: for gfio - fio GUI frontend' 
+  'gnuplot: generating plots using fio_generate_plots'
+)
+source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
+sha256sums=('f8271adb66ad36e5aa282093b337fadf3380fff63ffa6a653dec701fdf99ff0c')
+
+prepare() {
+  cd fio-fio-$pkgver
+
+  sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -i 
tools/plot/fio2gnuplot
+}
+
+build() {
+  cd fio-fio-$pkgver
+  ./configure --disable-native --enable-gfio --extra-cflags="$CFLAGS"
+  make
+}
+
+package() {
+  cd fio-fio-$pkgver
+  make DESTDIR="$pkgdir" prefix=/usr mandir=/usr/share/man install
+
+  # documentation
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
+  install -m644 HOWTO README REPORTING-BUGS SERVER-TODO 
"$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 MORAL-LICENSE 
"$pkgdir/usr/share/licenses/$pkgname/MORAL-LICENSE"
+
+  # examples
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/examples"
+  install -m644 examples/* "$pkgdir/usr/share/doc/$pkgname/examples"
+}


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

2018-10-04 Thread Antonio Rojas via arch-commits
Date: Thursday, October 4, 2018 @ 15:06:11
  Author: arojas
Revision: 389532

Update to 2.4.0

Modified:
  gmic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:04:13 UTC (rev 389531)
+++ PKGBUILD2018-10-04 15:06:11 UTC (rev 389532)
@@ -6,7 +6,7 @@
 
 pkgbase=gmic
 pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
-pkgver=2.3.6
+pkgver=2.4.0
 pkgrel=1
 arch=(x86_64)
 url="http://gmic.eu/;
@@ -13,11 +13,10 @@
 license=(custom:CeCILL)
 makedepends=(gimp qt5-base fftw openexr opencv git)
 source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz)
-sha256sums=('86fe671879725863acecc207bdb86c4428635cd1a20d6043618864cf4c366113')
+sha256sums=('ffc649c960f2dc52cea77039802a8c2b71f997ba300270e08fc2117e238614c3')
 
 prepare() {
   sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
-  sed -e 's|-Ofast|-O2 -fno-fast-math|g' -i gmic-$pkgver/gmic-qt/gmic_qt.pro
 # fix overlinking
   sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' -i gmic-$pkgver/src/Makefile 
 }


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

2018-10-04 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 4, 2018 @ 16:36:36
  Author: anatolik
Revision: 389551

upgpkg: tup 0.7.8-2

FS#60237: add pcre dependency

Modified:
  tup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 16:34:10 UTC (rev 389550)
+++ PKGBUILD2018-10-04 16:36:36 UTC (rev 389551)
@@ -4,12 +4,12 @@
 
 pkgname=tup
 pkgver=0.7.8
-pkgrel=1
+pkgrel=2
 pkgdesc='A fast, file-based build system'
 arch=(x86_64)
 url='http://gittup.org/tup/index.html'
 license=(GPL2)
-depends=(fuse2)
+depends=(fuse2 pcre)
 install=tup.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/gittup/tup/archive/v0.7.8.tar.gz)
 sha256sums=('37baed2d12ef6ce66ce186dc5aa9bcf23098c35d3aee2dc25cb3177eee224b60')


[arch-commits] Commit in (4 files)

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 16:45:47
  Author: archange
Revision: 389559

Initial addition of intel-gmmlib to [community]

Also first upstream release ever. :)

Added:
  intel-gmmlib/
  intel-gmmlib/repos/
  intel-gmmlib/trunk/
  intel-gmmlib/trunk/PKGBUILD

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

Added: intel-gmmlib/trunk/PKGBUILD
===
--- intel-gmmlib/trunk/PKGBUILD (rev 0)
+++ intel-gmmlib/trunk/PKGBUILD 2018-10-04 16:45:47 UTC (rev 389559)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Daniel Bermond < yahoo-com: danielbermond >
+
+pkgname=intel-gmmlib
+pkgver=18.3.0
+pkgrel=1
+pkgdesc="Intel Graphics Memory Management Library"
+arch=('x86_64')
+url="https://github.com/intel/gmmlib/;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cmake')
+provides=('gmmlib')
+conflicts=('gmmlib')
+replaces=('gmmlib')
+options=('!emptydirs')
+source=("https://github.com/intel/gmmlib/archive/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('e3114d7ddd429f1b9aa43a1b1d0086d881fbf4d90e4a90ab8577c369d2e3a5e1')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../gmmlib-${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE='None' \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DRUN_TEST_SUITE=ON \
+-Wno-dev
+make
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+install -Dm644 ../gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:30:58
  Author: felixonmars
Revision: 389544

upgpkg: python-zope-copy 4.2-1

Modified:
  python-zope-copy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:20:36 UTC (rev 389543)
+++ PKGBUILD2018-10-04 15:30:58 UTC (rev 389544)
@@ -2,8 +2,8 @@
 
 pkgbase=python-zope-copy
 pkgname=('python-zope-copy' 'python2-zope-copy')
-pkgver=4.1.0
-pkgrel=2
+pkgver=4.2
+pkgrel=1
 pkgdesc="Pluggable object copying mechanism"
 arch=('any')
 url="https://github.com/zopefoundation/zope.copy;
@@ -13,7 +13,7 @@
 checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-zope-testing'
   'python2-zope-testing' 'python-zope-location' 
'python2-zope-location')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.copy/archive/$pkgver.tar.gz;)
-sha512sums=('5fb91b71262709e6f94376b295d8f79cdf7909c5b34145889daee4c3405dcfe1660362612d8651903c44aff2a120871184922296cb4a40a0c4bca5562421')
+sha512sums=('99c1062bdad919c0aa8f1daf1f7a2af1e42227a2a22e4a983eb848edf6be144fec97b9f7dd43d592121c8e72c3525b316e7367e226a33e97272061b666fb466b')
 
 prepare() {
   cp -a zope.copy-$pkgver{,-py2}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:31:13
  Author: felixonmars
Revision: 389545

archrelease: copy trunk to community-any

Added:
  python-zope-copy/repos/community-any/PKGBUILD
(from rev 389544, python-zope-copy/trunk/PKGBUILD)
Deleted:
  python-zope-copy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 15:30:58 UTC (rev 389544)
+++ PKGBUILD2018-10-04 15:31:13 UTC (rev 389545)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-zope-copy
-pkgname=('python-zope-copy' 'python2-zope-copy')
-pkgver=4.1.0
-pkgrel=2
-pkgdesc="Pluggable object copying mechanism"
-arch=('any')
-url="https://github.com/zopefoundation/zope.copy;
-license=('ZPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface')
-checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-zope-testing'
-  'python2-zope-testing' 'python-zope-location' 
'python2-zope-location')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.copy/archive/$pkgver.tar.gz;)
-sha512sums=('5fb91b71262709e6f94376b295d8f79cdf7909c5b34145889daee4c3405dcfe1660362612d8651903c44aff2a120871184922296cb4a40a0c4bca5562421')
-
-prepare() {
-  cp -a zope.copy-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/zope.copy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/zope.copy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/zope.copy-$pkgver
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m zope.testrunner 
--test-path=src || warning "Tests failed"
-
-  cd "$srcdir"/zope.copy-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m zope.testrunner 
--test-path=src
-}
-
-package_python-zope-copy() {
-  depends=('python-setuptools' 'python-zope-interface')
-
-  cd "$srcdir"/zope.copy-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-zope-copy() {
-  depends=('python2-setuptools' 'python2-zope-interface')
-
-  cd "$srcdir"/zope.copy-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zope-copy/repos/community-any/PKGBUILD (from rev 389544, 
python-zope-copy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 15:31:13 UTC (rev 389545)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-zope-copy
+pkgname=('python-zope-copy' 'python2-zope-copy')
+pkgver=4.2
+pkgrel=1
+pkgdesc="Pluggable object copying mechanism"
+arch=('any')
+url="https://github.com/zopefoundation/zope.copy;
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface')
+checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-zope-testing'
+  'python2-zope-testing' 'python-zope-location' 
'python2-zope-location')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.copy/archive/$pkgver.tar.gz;)
+sha512sums=('99c1062bdad919c0aa8f1daf1f7a2af1e42227a2a22e4a983eb848edf6be144fec97b9f7dd43d592121c8e72c3525b316e7367e226a33e97272061b666fb466b')
+
+prepare() {
+  cp -a zope.copy-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/zope.copy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/zope.copy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/zope.copy-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m zope.testrunner 
--test-path=src || warning "Tests failed"
+
+  cd "$srcdir"/zope.copy-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m zope.testrunner 
--test-path=src
+}
+
+package_python-zope-copy() {
+  depends=('python-setuptools' 'python-zope-interface')
+
+  cd "$srcdir"/zope.copy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zope-copy() {
+  depends=('python2-setuptools' 'python2-zope-interface')
+
+  cd "$srcdir"/zope.copy-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-10-04 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 4, 2018 @ 16:38:46
  Author: anatolik
Revision: 389553

upgpkg: fio 3.11-1

Modified:
  fio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 16:37:10 UTC (rev 389552)
+++ PKGBUILD2018-10-04 16:38:46 UTC (rev 389553)
@@ -10,7 +10,7 @@
 url='https://github.com/axboe/fio'
 license=(GPL2)
 # TODO: enable rdma, need to move the libraries from AUR
-depends=(bash libaio python2 numactl glusterfs ceph)
+depends=(bash libaio python2 numactl glusterfs)
 makedepends=(gtk2)
 optdepends=(
   'gtk2: for gfio - fio GUI frontend' 


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

2018-10-04 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 4, 2018 @ 16:34:10
  Author: anatolik
Revision: 389550

upgpkg: fio 3.11-1

Modified:
  fio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:44:48 UTC (rev 389549)
+++ PKGBUILD2018-10-04 16:34:10 UTC (rev 389550)
@@ -3,7 +3,7 @@
 # Contributor: John Williams 
 
 pkgname=fio
-pkgver=3.10
+pkgver=3.11
 pkgrel=1
 pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
 arch=(x86_64)
@@ -17,7 +17,7 @@
   'gnuplot: generating plots using fio_generate_plots'
 )
 source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
-sha256sums=('13526533cbfaff1241c8f5d1a35c950cbb0c18b2822b1938c678ce287158da02')
+sha256sums=('f8271adb66ad36e5aa282093b337fadf3380fff63ffa6a653dec701fdf99ff0c')
 
 prepare() {
   cd fio-fio-$pkgver


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

2018-10-04 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 4, 2018 @ 16:37:10
  Author: anatolik
Revision: 389552

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|   86 +-
 tup.install |   54 ++--
 2 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 16:36:36 UTC (rev 389551)
+++ PKGBUILD2018-10-04 16:37:10 UTC (rev 389552)
@@ -1,43 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Arvid Norlander 
-# Contributor: Patrick McCarty 
-
-pkgname=tup
-pkgver=0.7.8
-pkgrel=1
-pkgdesc='A fast, file-based build system'
-arch=(x86_64)
-url='http://gittup.org/tup/index.html'
-license=(GPL2)
-depends=(fuse2)
-install=tup.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/gittup/tup/archive/v0.7.8.tar.gz)
-sha256sums=('37baed2d12ef6ce66ce186dc5aa9bcf23098c35d3aee2dc25cb3177eee224b60')
-
-prepare() {
-  cd tup-$pkgver
-
-  sed "s/\`git describe\`/$pkgver/" -i src/tup/link.sh
-  echo "CFLAGS += $CFLAGS" >> Tuprules.tup
-  echo "LDFLAGS += $LDFLAGS" >> Tuprules.tup
-}
-
-build() {
-  cd tup-$pkgver
-
-  # Clean environment does not allow to use fuse so ./bootstrap does not work
-  ./build.sh
-  ./build/tup init
-  ./build/tup generate runme.sh
-  ./runme.sh
-}
-
-package() {
-  cd tup-$pkgver
-
-  install -d "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man1 
"$pkgdir"/usr/share/vim/vimfiles/{syntax,ftdetect}
-  install -m755 -t "$pkgdir"/usr/bin tup
-  install -m644 -t "$pkgdir"/usr/share/man/man1 tup.1
-  install -m644 -t "$pkgdir"/usr/share/vim/vimfiles/syntax 
contrib/syntax/tup.vim
-  echo 'au BufNewFile,BufRead Tupfile,*.tup setf tup' > 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tup.vim
-}

Copied: tup/repos/community-x86_64/PKGBUILD (from rev 389551, 
tup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 16:37:10 UTC (rev 389552)
@@ -0,0 +1,43 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Arvid Norlander 
+# Contributor: Patrick McCarty 
+
+pkgname=tup
+pkgver=0.7.8
+pkgrel=2
+pkgdesc='A fast, file-based build system'
+arch=(x86_64)
+url='http://gittup.org/tup/index.html'
+license=(GPL2)
+depends=(fuse2 pcre)
+install=tup.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/gittup/tup/archive/v0.7.8.tar.gz)
+sha256sums=('37baed2d12ef6ce66ce186dc5aa9bcf23098c35d3aee2dc25cb3177eee224b60')
+
+prepare() {
+  cd tup-$pkgver
+
+  sed "s/\`git describe\`/$pkgver/" -i src/tup/link.sh
+  echo "CFLAGS += $CFLAGS" >> Tuprules.tup
+  echo "LDFLAGS += $LDFLAGS" >> Tuprules.tup
+}
+
+build() {
+  cd tup-$pkgver
+
+  # Clean environment does not allow to use fuse so ./bootstrap does not work
+  ./build.sh
+  ./build/tup init
+  ./build/tup generate runme.sh
+  ./runme.sh
+}
+
+package() {
+  cd tup-$pkgver
+
+  install -d "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man1 
"$pkgdir"/usr/share/vim/vimfiles/{syntax,ftdetect}
+  install -m755 -t "$pkgdir"/usr/bin tup
+  install -m644 -t "$pkgdir"/usr/share/man/man1 tup.1
+  install -m644 -t "$pkgdir"/usr/share/vim/vimfiles/syntax 
contrib/syntax/tup.vim
+  echo 'au BufNewFile,BufRead Tupfile,*.tup setf tup' > 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tup.vim
+}

Deleted: tup.install
===
--- tup.install 2018-10-04 16:36:36 UTC (rev 389551)
+++ tup.install 2018-10-04 16:37:10 UTC (rev 389552)
@@ -1,27 +0,0 @@
-suid_set=tmp/tup.upgrade.suid_set
-binary=/usr/bin/tup
-
-suid_msg() {
-  if [ -f $suid_set ]; then
-echo ">>> $binary has suid bit set. It allows you to run commands in 
chroot-ed environment (e.g. for full dependency tracking)."
-  else
-echo ">>> If you want to be able to run commands in chroot-ed environment 
(e.g. for full dependency tracking)"
-echo "set suid bit on tup binary: 'sudo chmod +s $binary'."
-  fi
-}
-
-pre_upgrade() {
-  [ -u $binary ] && touch $suid_set
-  return 0
-}
-
-post_install() {
-  suid_msg
-  return 0
-}
-
-post_upgrade() {
-  [ -f $suid_set ] && chmod +s $binary
-  rm -f $suid_set
-  return 0
-}

Copied: tup/repos/community-x86_64/tup.install (from rev 389551, 
tup/trunk/tup.install)
===
--- tup.install (rev 0)
+++ tup.install 2018-10-04 16:37:10 UTC (rev 389552)
@@ -0,0 +1,27 @@
+suid_set=tmp/tup.upgrade.suid_set
+binary=/usr/bin/tup
+
+suid_msg() {
+  if [ -f $suid_set ]; then
+echo ">>> $binary has suid bit set. It allows you to run commands in 
chroot-ed environment (e.g. for full dependency 

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

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 17:28:32
  Author: dvzrv
Revision: 389564

archrelease: copy trunk to community-x86_64

Added:
  mxml/repos/community-x86_64/PKGBUILD
(from rev 389563, mxml/trunk/PKGBUILD)
Deleted:
  mxml/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 17:28:25 UTC (rev 389563)
+++ PKGBUILD2018-10-04 17:28:32 UTC (rev 389564)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: David Runge 
-# Contributor: Sergej Pupykin 
-# Contributor: Roman Kyrylych 
-# Contributor: Johannes Sjolund 
-
-pkgname=mxml
-pkgver=2.11
-pkgrel=1
-pkgdesc="A small XML parsing library"
-arch=('x86_64')
-url="http://www.minixml.org/;
-license=('LGPL')
-depends=('zlib')
-source=("https://github.com/michaelrsweet/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('1cb60f6e56dfda9a1f1ac0c39493da411dc671976469afe80995b996cb501ed692027bac37103f8ae5aa196e78896094ef43eb3113b722a5b33a5ae025f21854')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-shared
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DSTROOT="${pkgdir}" install
-}

Copied: mxml/repos/community-x86_64/PKGBUILD (from rev 389563, 
mxml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 17:28:32 UTC (rev 389564)
@@ -0,0 +1,27 @@
+# Maintainer: David Runge 
+# Contributor: Sergej Pupykin 
+# Contributor: Roman Kyrylych 
+# Contributor: Johannes Sjolund 
+
+pkgname=mxml
+pkgver=2.12
+pkgrel=1
+pkgdesc="A small XML parsing library"
+arch=('x86_64')
+url="https://www.msweet.org/mxml/;
+license=('LGPL')
+depends=('zlib')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/michaelrsweet/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('49233a0087f3ef73a01ef71bb79511af36bb72027e3d9f6df919385e9ff0b03a489a3ccc590941bc4af1f558f82b2ed9bf8ff641863300a7791ce6dddfd56e77')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --enable-shared
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DSTROOT="${pkgdir}" install
+}


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

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 17:28:25
  Author: dvzrv
Revision: 389563

upgpkg: mxml 2.12-1

Upgrading to 2.12. Switching to current upstream url.

Modified:
  mxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 17:08:26 UTC (rev 389562)
+++ PKGBUILD2018-10-04 17:28:25 UTC (rev 389563)
@@ -4,19 +4,20 @@
 # Contributor: Johannes Sjolund 
 
 pkgname=mxml
-pkgver=2.11
+pkgver=2.12
 pkgrel=1
 pkgdesc="A small XML parsing library"
 arch=('x86_64')
-url="http://www.minixml.org/;
+url="https://www.msweet.org/mxml/;
 license=('LGPL')
 depends=('zlib')
-source=("https://github.com/michaelrsweet/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('1cb60f6e56dfda9a1f1ac0c39493da411dc671976469afe80995b996cb501ed692027bac37103f8ae5aa196e78896094ef43eb3113b722a5b33a5ae025f21854')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/michaelrsweet/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('49233a0087f3ef73a01ef71bb79511af36bb72027e3d9f6df919385e9ff0b03a489a3ccc590941bc4af1f558f82b2ed9bf8ff641863300a7791ce6dddfd56e77')
 
 build() {
   cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-shared
+  ./configure --prefix=/usr \
+  --enable-shared
   make
 }
 


[arch-commits] Commit in (4 files)

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 17:55:02
  Author: archange
Revision: 389565

Initial addition of intel-media-driver to [community]

Added:
  intel-media-driver/
  intel-media-driver/repos/
  intel-media-driver/trunk/
  intel-media-driver/trunk/PKGBUILD

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

Added: intel-media-driver/trunk/PKGBUILD
===
--- intel-media-driver/trunk/PKGBUILD   (rev 0)
+++ intel-media-driver/trunk/PKGBUILD   2018-10-04 17:55:02 UTC (rev 389565)
@@ -0,0 +1,34 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Daniel Bermond < yahoo-com: danielbermond >
+
+pkgname=intel-media-driver
+pkgver=18.3.0
+pkgrel=1
+pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
+arch=('x86_64')
+url="https://github.com/intel/media-driver/;
+license=('MIT' 'BSD')
+depends=(gcc-libs intel-gmmlib libva libpciaccess)
+makedepends=(cmake)
+source=("https://github.com/${pkgname/-//}/archive/${pkgname%-*}-${pkgver}.tar.gz;)
+sha256sums=('df9af1cc796b4123508aacaf19d040cc5d8c5742c05199f45c9a3905ed8d1b52')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${pkgname#*-}-${pkgname%-*}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DINSTALL_DRIVER_SYSCONF=OFF \
+-Wno-dev
+make
+}
+
+package() {
+cd build
+make DESTDIR="$pkgdir" install
+install -Dm644 ../${pkgname#*-}-${pkgname%-*}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


[arch-commits] Commit in intel-media-driver/repos (2 files)

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 17:55:50
  Author: archange
Revision: 389566

archrelease: copy trunk to community-x86_64

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

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

Copied: intel-media-driver/repos/community-x86_64/PKGBUILD (from rev 389565, 
intel-media-driver/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-10-04 17:55:50 UTC (rev 389566)
@@ -0,0 +1,34 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Daniel Bermond < yahoo-com: danielbermond >
+
+pkgname=intel-media-driver
+pkgver=18.3.0
+pkgrel=1
+pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
+arch=('x86_64')
+url="https://github.com/intel/media-driver/;
+license=('MIT' 'BSD')
+depends=(gcc-libs intel-gmmlib libva libpciaccess)
+makedepends=(cmake)
+source=("https://github.com/${pkgname/-//}/archive/${pkgname%-*}-${pkgver}.tar.gz;)
+sha256sums=('df9af1cc796b4123508aacaf19d040cc5d8c5742c05199f45c9a3905ed8d1b52')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${pkgname#*-}-${pkgname%-*}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DINSTALL_DRIVER_SYSCONF=OFF \
+-Wno-dev
+make
+}
+
+package() {
+cd build
+make DESTDIR="$pkgdir" install
+install -Dm644 ../${pkgname#*-}-${pkgname%-*}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:20:36
  Author: felixonmars
Revision: 389543

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 389542, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 15:20:36 UTC (rev 389543)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.27
+pkgrel=36
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz)
+sha512sums=('ad235a81dd59a972646c189500b665c9c18d3ca644c9fa4bc18f6f1004e1e6914b6b5f3e83db439b946efd622bbf4d0894eb84fcf521255916f095632d8249da')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -i 's/==.*0.3/== 0.4/' xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:20:24
  Author: felixonmars
Revision: 389542

upgpkg: xmobar 0.27-36

rebuild with foldl 1.4.5

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:19:09 UTC (rev 389541)
+++ PKGBUILD2018-10-04 15:20:24 UTC (rev 389542)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.27
-pkgrel=35
+pkgrel=36
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('custom:BSD3')


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

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 16:46:01
  Author: archange
Revision: 389560

archrelease: copy trunk to community-x86_64

Added:
  intel-gmmlib/repos/community-x86_64/
  intel-gmmlib/repos/community-x86_64/PKGBUILD
(from rev 389559, intel-gmmlib/trunk/PKGBUILD)

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

Copied: intel-gmmlib/repos/community-x86_64/PKGBUILD (from rev 389559, 
intel-gmmlib/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-10-04 16:46:01 UTC (rev 389560)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Daniel Bermond < yahoo-com: danielbermond >
+
+pkgname=intel-gmmlib
+pkgver=18.3.0
+pkgrel=1
+pkgdesc="Intel Graphics Memory Management Library"
+arch=('x86_64')
+url="https://github.com/intel/gmmlib/;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cmake')
+provides=('gmmlib')
+conflicts=('gmmlib')
+replaces=('gmmlib')
+options=('!emptydirs')
+source=("https://github.com/intel/gmmlib/archive/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('e3114d7ddd429f1b9aa43a1b1d0086d881fbf4d90e4a90ab8577c369d2e3a5e1')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../gmmlib-${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE='None' \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DRUN_TEST_SUITE=ON \
+-Wno-dev
+make
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+install -Dm644 ../gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:03:59
  Author: felixonmars
Revision: 389530

upgpkg: postgrest 0.5.0.0-45

rebuild with foldl 1.4.5

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:00:46 UTC (rev 389529)
+++ PKGBUILD2018-10-04 15:03:59 UTC (rev 389530)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=0.5.0.0
-pkgrel=44
+pkgrel=45
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:16:38
  Author: felixonmars
Revision: 389539

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
389538, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 15:16:38 UTC (rev 389539)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.9.2.0
+pkgrel=77
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 
'haskell-optparse-applicative'
+ 'haskell-src-exts' 'haskell-strict' 'haskell-syb' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('ccdbfc7f169624210590c5b60c98202709a9418bfe0aac1cf9af7e51704f7f1a2092716e1f5857056634611afbbb5d1013e2b2c3e79602a959a9725aacfba51a')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/<.*0.9/<1/' -e 's/<.*1.4/<2/' 
$pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old_base
+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
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 15:42:00
  Author: svenstaro
Revision: 389546

upgpkg: cimg 2.4.0-1

Modified:
  cimg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:31:13 UTC (rev 389545)
+++ PKGBUILD2018-10-04 15:42:00 UTC (rev 389546)
@@ -3,7 +3,7 @@
 # Contributor: zoulnix 
 
 pkgname=cimg
-pkgver=2.2.1
+pkgver=2.4.0
 pkgrel=1
 pkgdesc="Open-source C++ toolkit for image processing"
 arch=('any')
@@ -10,11 +10,11 @@
 url="http://cimg.eu/;
 license=('custom')
 depends=('fftw' 'graphicsmagick')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver//./}.tar.gz;)
-sha256sums=('364730f00457dc8e95b90dc2d786d68ad15f28f5e1eedd04762ed9c3e736348f')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver}.tar.gz;)
+sha256sums=('2411f1c1ba3f888cd1c3cf781286d80d1cb2752cfefe81a0896dd58f99792e8f')
 
 package() {
-  cd "${srcdir}"/CImg-v.${pkgver//./}
+  cd "${srcdir}"/CImg-v.${pkgver}
   install -d "${pkgdir}"/usr/include/CImg/plugins 
${pkgdir}/usr/share/licenses/${pkgname}
   install -m644 CImg.h "${pkgdir}"/usr/include/
   install -m644 plugins/*.h "${pkgdir}"/usr/include/CImg/plugins/


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

2018-10-04 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, October 4, 2018 @ 17:08:26
  Author: mtorromeo
Revision: 389562

archrelease: copy trunk to community-x86_64

Added:
  lastpass-cli/repos/community-x86_64/PKGBUILD
(from rev 389561, lastpass-cli/trunk/PKGBUILD)
Deleted:
  lastpass-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 17:08:10 UTC (rev 389561)
+++ PKGBUILD2018-10-04 17:08:26 UTC (rev 389562)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Oliver Lantwin 
-# Contributor: Gabriel Peixoto 
-
-pkgname=lastpass-cli
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="LastPass command line interface tool"
-arch=('x86_64')
-url="https://lastpass.com/;
-license=('GPL2')
-depends=('openssl' 'curl' 'libxml2')
-makedepends=('asciidoc' 'cmake' 'bash-completion')
-optdepends=('xclip: clipboard support'
-'pinentry: securely read passwords')
-source=("https://github.com/lastpass/lastpass-cli/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('25dc9a0c99a10ee70b5b3991d525448c25f312cc69fa0216d7ac70c4ae384b1b')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  cmake . -DCMAKE_INSTALL_PREFIX="/usr"
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make DESTDIR="$pkgdir" install install-doc
-  install -Dm0644 contrib/lpass_zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_lpass
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lastpass-cli/repos/community-x86_64/PKGBUILD (from rev 389561, 
lastpass-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 17:08:26 UTC (rev 389562)
@@ -0,0 +1,32 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Oliver Lantwin 
+# Contributor: Gabriel Peixoto 
+
+pkgname=lastpass-cli
+pkgver=1.3.1
+pkgrel=2
+pkgdesc="LastPass command line interface tool"
+arch=('x86_64')
+url="https://lastpass.com/;
+license=('GPL2')
+depends=('openssl' 'curl' 'libxml2')
+makedepends=('asciidoc' 'cmake' 'bash-completion')
+optdepends=('xclip: clipboard support'
+'pinentry: securely read passwords')
+source=("https://github.com/lastpass/lastpass-cli/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('25dc9a0c99a10ee70b5b3991d525448c25f312cc69fa0216d7ac70c4ae384b1b')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX="/usr"
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install install-doc
+  install -Dm0644 contrib/lpass_zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_lpass
+  install -Dm0644 contrib/completions-lpass.fish 
"$pkgdir"/usr/share/fish/completions/lpass.fish
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-10-04 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, October 4, 2018 @ 17:08:10
  Author: mtorromeo
Revision: 389561

Installed fish completions

Modified:
  lastpass-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 16:46:01 UTC (rev 389560)
+++ PKGBUILD2018-10-04 17:08:10 UTC (rev 389561)
@@ -4,7 +4,7 @@
 
 pkgname=lastpass-cli
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc="LastPass command line interface tool"
 arch=('x86_64')
 url="https://lastpass.com/;
@@ -26,6 +26,7 @@
   cd "$srcdir"/$pkgname-$pkgver
   make DESTDIR="$pkgdir" install install-doc
   install -Dm0644 contrib/lpass_zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_lpass
+  install -Dm0644 contrib/completions-lpass.fish 
"$pkgdir"/usr/share/fish/completions/lpass.fish
 }
 
 # vim:set ts=2 sw=2 et:


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:44:48
  Author: felixonmars
Revision: 389549

archrelease: copy trunk to community-x86_64

Added:
  v2ray/repos/community-x86_64/PKGBUILD
(from rev 389548, v2ray/trunk/PKGBUILD)
  v2ray/repos/community-x86_64/v2ray.service
(from rev 389548, v2ray/trunk/v2ray.service)
Deleted:
  v2ray/repos/community-x86_64/PKGBUILD
  v2ray/repos/community-x86_64/v2ray.service

---+
 PKGBUILD  |   90 
 v2ray.service |   26 
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 15:44:34 UTC (rev 389548)
+++ PKGBUILD2018-10-04 15:44:48 UTC (rev 389549)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: pandada8 
-
-pkgname=v2ray
-pkgver=3.45
-pkgrel=1
-pkgdesc="A platform for building proxies to bypass network restrictions"
-arch=('x86_64')
-url="https://github.com/v2ray/v2ray-core;
-license=('MIT')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
-'v2ray.service')
-sha512sums=('78969e0a2f06c915fe8ec28887f3976a811399b699d49fa5011e1ede1210103a2c95b361f06f6993640e88561967102779853f1f337e6a9ae81cae435d33ed01'
-
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
-
-prepare() {
-  export GOPATH="$srcdir/build"
-  go get v2ray.com/core github.com/miekg/dns golang.org/x/sys/unix 
v2ray.com/ext/assert \
- github.com/gorilla/websocket golang.org/x/crypto/chacha20poly1305 
golang.org/x/crypto/sha3 \
- v2ray.com/ext golang.org/x/net/proxy 
github.com/google/go-github/github golang.org/x/oauth2 \
- github.com/gogo/protobuf/proto google.golang.org/grpc
-  go install v2ray.com/ext/tools/build/vbuild
-}
-
-build() {
-  cd v2ray-core-$pkgver
-  "$GOPATH"/bin/vbuild
-}
-
-check() {
-  cd v2ray-core-$pkgver
-  go test -p 1 -tags json -v v2ray.com/core/...
-}
-
-package() {
-  cd v2ray-core-$pkgver
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
-  install -Dm644 release/config/systemd/v2ray.service 
${pkgdir}/usr/lib/systemd/system/v2ray.service
-  sed -i '/ExecStart/c\ExecStart=/usr/bin/env v2ray.location.asset=/etc/v2ray 
/usr/bin/v2ray -config /etc/v2ray/config.json' 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
-  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
-  install -Dm755 "$GOPATH"/bin/v2ray-custom-linux-64/{v2ray,v2ctl} -t 
"$pkgdir"/usr/bin/
-
-  install -Dm644 "$srcdir"/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
-}

Copied: v2ray/repos/community-x86_64/PKGBUILD (from rev 389548, 
v2ray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 15:44:48 UTC (rev 389549)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: pandada8 
+
+pkgname=v2ray
+pkgver=3.45.1
+pkgrel=1
+pkgdesc="A platform for building proxies to bypass network restrictions"
+arch=('x86_64')
+url="https://github.com/v2ray/v2ray-core;
+license=('MIT')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
+'v2ray.service')
+sha512sums=('99d2323e125dcdf80646535b533b33dcf017afbad2c2ad93a2456644e53800d5406ceea23a42d40955d86279f67b49eb2d7b81dfef9fe616b28e6e640da54697'
+
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
+
+prepare() {
+  export GOPATH="$srcdir/build"
+  go get v2ray.com/core github.com/miekg/dns golang.org/x/sys/unix 
v2ray.com/ext/assert \
+ github.com/gorilla/websocket golang.org/x/crypto/chacha20poly1305 
golang.org/x/crypto/sha3 \
+ v2ray.com/ext golang.org/x/net/proxy 
github.com/google/go-github/github golang.org/x/oauth2 \
+ github.com/gogo/protobuf/proto google.golang.org/grpc
+  go install v2ray.com/ext/tools/build/vbuild
+}
+
+build() {
+  cd v2ray-core-$pkgver
+  "$GOPATH"/bin/vbuild
+}
+
+check() {
+  cd v2ray-core-$pkgver
+  go test -p 1 -tags json -v v2ray.com/core/...
+}
+
+package() {
+  cd v2ray-core-$pkgver
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
+  install -Dm644 release/config/systemd/v2ray.service 
${pkgdir}/usr/lib/systemd/system/v2ray.service
+  sed -i '/ExecStart/c\ExecStart=/usr/bin/env v2ray.location.asset=/etc/v2ray 
/usr/bin/v2ray -config /etc/v2ray/config.json' 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
+  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
+  install -Dm755 "$GOPATH"/bin/v2ray-custom-linux-64/{v2ray,v2ctl} -t 
"$pkgdir"/usr/bin/
+
+  install -Dm644 

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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 15:44:34
  Author: felixonmars
Revision: 389548

upgpkg: v2ray 3.45.1-1

Modified:
  v2ray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 15:42:12 UTC (rev 389547)
+++ PKGBUILD2018-10-04 15:44:34 UTC (rev 389548)
@@ -2,7 +2,7 @@
 # Contributor: pandada8 
 
 pkgname=v2ray
-pkgver=3.45
+pkgver=3.45.1
 pkgrel=1
 pkgdesc="A platform for building proxies to bypass network restrictions"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
 'v2ray.service')
-sha512sums=('78969e0a2f06c915fe8ec28887f3976a811399b699d49fa5011e1ede1210103a2c95b361f06f6993640e88561967102779853f1f337e6a9ae81cae435d33ed01'
+sha512sums=('99d2323e125dcdf80646535b533b33dcf017afbad2c2ad93a2456644e53800d5406ceea23a42d40955d86279f67b49eb2d7b81dfef9fe616b28e6e640da54697'
 
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
 
 prepare() {


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

2018-10-04 Thread Florian Pritz via arch-commits
Date: Thursday, October 4, 2018 @ 18:05:26
  Author: bluewind
Revision: 389568

archrelease: copy trunk to community-x86_64

Added:
  libfilezilla/repos/community-x86_64/PKGBUILD
(from rev 389567, libfilezilla/trunk/PKGBUILD)
Deleted:
  libfilezilla/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 18:05:23 UTC (rev 389567)
+++ PKGBUILD2018-10-04 18:05:26 UTC (rev 389568)
@@ -1,36 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Martchus 
-
-pkgname=libfilezilla
-pkgver=0.13.2
-pkgrel=1
-pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
-arch=('x86_64')
-url="https://lib.filezilla-project.org/;
-license=('GPL')
-depends=('gcc-libs')
-makedepends=(clang)
-checkdepends=('cppunit')
-source=("https://download.filezilla-project.org/libfilezilla/libfilezilla-$pkgver.tar.bz2;)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  export CXX=clang++
-  export CC=clang
-  ./configure \
---prefix=/usr \
---disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  # LANG needed to fix string_test::test_conversion2
-  LANG=en_US.UTF-8 make check
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-}
-sha512sums=('97fd49fbfbfaabb0354c69f9a26d674e7cda7a085201eb0e3454558e5773404f4c13f87ae4e11cba9bd0737dbd7c65778d02a8de2f07dd39636514134cce5c88')

Copied: libfilezilla/repos/community-x86_64/PKGBUILD (from rev 389567, 
libfilezilla/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 18:05:26 UTC (rev 389568)
@@ -0,0 +1,36 @@
+# Maintainer: Florian Pritz 
+# Contributor: Martchus 
+
+pkgname=libfilezilla
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
+arch=('x86_64')
+url="https://lib.filezilla-project.org/;
+license=('GPL')
+depends=('gcc-libs')
+makedepends=(clang)
+checkdepends=('cppunit')
+source=("https://download.filezilla-project.org/libfilezilla/libfilezilla-$pkgver.tar.bz2;)
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  export CXX=clang++
+  export CC=clang
+  ./configure \
+--prefix=/usr \
+--disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  # LANG needed to fix string_test::test_conversion2
+  LANG=en_US.UTF-8 make check
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+}
+sha512sums=('f20932e14ab81df9562e030ce10009b9ab55b6798f7bfff7249e9f472fc8cae4278eb142a655dffb63fec53894783874973eb33444bfdacdb06fa682c2dd66a6')


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

2018-10-04 Thread Florian Pritz via arch-commits
Date: Thursday, October 4, 2018 @ 18:05:23
  Author: bluewind
Revision: 389567

upgpkg: libfilezilla 0.14.0-1

upstream update

Modified:
  libfilezilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 17:55:50 UTC (rev 389566)
+++ PKGBUILD2018-10-04 18:05:23 UTC (rev 389567)
@@ -2,7 +2,7 @@
 # Contributor: Martchus 
 
 pkgname=libfilezilla
-pkgver=0.13.2
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
 arch=('x86_64')
@@ -33,4 +33,4 @@
   cd "${srcdir}/$pkgname-$pkgver"
   make DESTDIR="${pkgdir}" install
 }
-sha512sums=('97fd49fbfbfaabb0354c69f9a26d674e7cda7a085201eb0e3454558e5773404f4c13f87ae4e11cba9bd0737dbd7c65778d02a8de2f07dd39636514134cce5c88')
+sha512sums=('f20932e14ab81df9562e030ce10009b9ab55b6798f7bfff7249e9f472fc8cae4278eb142a655dffb63fec53894783874973eb33444bfdacdb06fa682c2dd66a6')


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:03:24
  Author: felixonmars
Revision: 389653

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 20:03:00 UTC (rev 389652)
+++ PKGBUILD2018-10-04 20:03:24 UTC (rev 389653)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-awkward
-pkgver=0.0.10
-pkgrel=1
-pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
-url="https://github.com/scikit-hep/awkward-array;
-license=('BSD')
-arch=('any')
-depends=('python-numpy')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('3685ae9e88786ab4f727c7993e80c294f45d63a64a3fe63d3b7ffd37676ef867960277cc99cff461d3feafbfa83bf21ce3c69a864cc84fc135f7f72470bc2caf')
-
-build() {
-  cd awkward-array-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd awkward-array-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd awkward-array-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  rm "$pkgdir"/usr/README.rst
-}

Copied: python-awkward/repos/community-any/PKGBUILD (from rev 389652, 
python-awkward/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 20:03:24 UTC (rev 389653)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-awkward
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
+url="https://github.com/scikit-hep/awkward-array;
+license=('BSD')
+arch=('any')
+depends=('python-numpy')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
+sha512sums=('7e895c9c94fd473bf39c1c2f3bbe2f7d9eafb09efe3613b02ae5dc280f529bea1362234462df9c777a8bfb72f901142883003858e9bb6c1471ac99cd1a9a5abb')
+
+build() {
+  cd awkward-array-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd awkward-array-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd awkward-array-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  rm "$pkgdir"/usr/README.rst
+}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:02:39
  Author: felixonmars
Revision: 389651

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 20:02:18 UTC (rev 389650)
+++ PKGBUILD2018-10-04 20:02:39 UTC (rev 389651)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Simon Sapin 
-# Contributor: Kyle Keen 
-
-pkgbase=python-zconfig
-pkgname=(python-zconfig python2-zconfig)
-pkgver=3.2.0
-pkgrel=2
-pkgdesc="Structured Configuration Library"
-url="https://github.com/zopefoundation/ZConfig;
-license=('ZPL')
-arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-manuel' 'python2-manuel'
-  'python-docutils' 'python2-docutils' 'python-nose' 
'python2-nose')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/ZConfig/archive/$pkgver.tar.gz;)
-sha512sums=('053c12ef8d36e53ea844afc6949304ff6153895f3d4eac8c30f4bff6bde7efc017caac4364656683bd3c95b3840e59b95bd8e338c97dc3b5bbb67fac08496107')
-
-prepare() {
-  cp -a ZConfig-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/ZConfig-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/ZConfig-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/ZConfig-$pkgver
-  nosetests3
-
-  cd "$srcdir"/ZConfig-$pkgver-py2
-  nosetests2
-}
-
-package_python-zconfig() {
-  depends=('python')
-
-  cd ZConfig-$pkgver
-  python3 setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-zconfig() {
-  depends=('python2')
-
-  cd ZConfig-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/zconfig{,2}
-  mv "$pkgdir"/usr/bin/zconfig{,2}_schema2html
-}

Copied: python-zconfig/repos/community-any/PKGBUILD (from rev 389650, 
python-zconfig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 20:02:39 UTC (rev 389651)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-zconfig
+pkgname=(python-zconfig python2-zconfig)
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="Structured Configuration Library"
+url="https://github.com/zopefoundation/ZConfig;
+license=('ZPL')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-manuel' 'python2-manuel'
+  'python-docutils' 'python2-docutils' 'python-nose' 
'python2-nose')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/ZConfig/archive/$pkgver.tar.gz;)
+sha512sums=('e1bd04a67644ab3985b2b72319a279d228212915cbd0808d741d4feba89518b1ead1393868ce7d80d480923467f52faf9c8fcf0db93efef3067ae22178b215e6')
+
+prepare() {
+  cp -a ZConfig-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/ZConfig-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/ZConfig-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/ZConfig-$pkgver
+  nosetests3
+
+  cd "$srcdir"/ZConfig-$pkgver-py2
+  nosetests2
+}
+
+package_python-zconfig() {
+  depends=('python')
+
+  cd ZConfig-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zconfig() {
+  depends=('python2')
+
+  cd ZConfig-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/zconfig{,2}
+  mv "$pkgdir"/usr/bin/zconfig{,2}_schema2html
+}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:03:00
  Author: felixonmars
Revision: 389652

upgpkg: python-awkward 0.1.0-1

Modified:
  python-awkward/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:02:39 UTC (rev 389651)
+++ PKGBUILD2018-10-04 20:03:00 UTC (rev 389652)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-awkward
-pkgver=0.0.10
+pkgver=0.1.0
 pkgrel=1
 pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
 url="https://github.com/scikit-hep/awkward-array;
@@ -10,7 +10,7 @@
 depends=('python-numpy')
 makedepends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('3685ae9e88786ab4f727c7993e80c294f45d63a64a3fe63d3b7ffd37676ef867960277cc99cff461d3feafbfa83bf21ce3c69a864cc84fc135f7f72470bc2caf')
+sha512sums=('7e895c9c94fd473bf39c1c2f3bbe2f7d9eafb09efe3613b02ae5dc280f529bea1362234462df9c777a8bfb72f901142883003858e9bb6c1471ac99cd1a9a5abb')
 
 build() {
   cd awkward-array-$pkgver


[arch-commits] Commit in python-zope-exceptions/repos/community-any (2 files)

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:14:09
  Author: felixonmars
Revision: 389667

archrelease: copy trunk to community-any

Added:
  python-zope-exceptions/repos/community-any/PKGBUILD
(from rev 389665, python-zope-exceptions/trunk/PKGBUILD)
Deleted:
  python-zope-exceptions/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 20:14:04 UTC (rev 389666)
+++ PKGBUILD2018-10-04 20:14:09 UTC (rev 389667)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-zope-exceptions
-pkgname=('python-zope-exceptions' 'python2-zope-exceptions')
-pkgver=4.2.0
-pkgrel=2
-pkgdesc="Generic exceptions and implementations for Zope"
-arch=('any')
-url="https://github.com/zopefoundation/zope.exceptions;
-license=('ZPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface')
-checkdepends=('python-zope-testrunner' 'python2-zope-testrunner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.exceptions/archive/$pkgver.tar.gz;)
-sha512sums=('120ae57003426cd308f213885c53fd6d0e61a6ff08eeaa912c9a3ff9f4274a5dfafdc8016814cbef59f9d2722edac0a032286ef334b8dd452afed048cd8c21a5')
-
-prepare() {
-  cp -a zope.exceptions-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/zope.exceptions-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/zope.exceptions-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/zope.exceptions-$pkgver
-  python setup.py test || :
-
-  cd "$srcdir"/zope.exceptions-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-zope-exceptions() {
-  depends=('python-setuptools' 'python-zope-interface')
-
-  cd zope.exceptions-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-zope-exceptions() {
-  depends=('python2-setuptools' 'python2-zope-interface')
-
-  cd zope.exceptions-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zope-exceptions/repos/community-any/PKGBUILD (from rev 389665, 
python-zope-exceptions/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 20:14:09 UTC (rev 389667)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-zope-exceptions
+pkgname=('python-zope-exceptions' 'python2-zope-exceptions')
+pkgver=4.3
+pkgrel=1
+pkgdesc="Generic exceptions and implementations for Zope"
+arch=('any')
+url="https://github.com/zopefoundation/zope.exceptions;
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface')
+checkdepends=('python-zope-testrunner' 'python2-zope-testrunner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.exceptions/archive/$pkgver.tar.gz;)
+sha512sums=('c327b52090ea30604d9bd6d2e00b5ebbef54571c8723ecde35ffaa7301d39e819ed59fb051bc3515560830e0834c249cb98b5db2ba1fb2639a5d19b531875680')
+
+prepare() {
+  cp -a zope.exceptions-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/zope.exceptions-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/zope.exceptions-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/zope.exceptions-$pkgver
+  python setup.py test || :
+
+  cd "$srcdir"/zope.exceptions-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-zope-exceptions() {
+  depends=('python-setuptools' 'python-zope-interface')
+
+  cd zope.exceptions-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zope-exceptions() {
+  depends=('python2-setuptools' 'python2-zope-interface')
+
+  cd zope.exceptions-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:13:45
  Author: felixonmars
Revision: 389664

upgpkg: python-zope-exceptions 4.3-1

Modified:
  python-zope-exceptions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:11:02 UTC (rev 389663)
+++ PKGBUILD2018-10-04 20:13:45 UTC (rev 389664)
@@ -2,8 +2,8 @@
 
 pkgbase=python-zope-exceptions
 pkgname=('python-zope-exceptions' 'python2-zope-exceptions')
-pkgver=4.2.0
-pkgrel=2
+pkgver=4.3
+pkgrel=1
 pkgdesc="Generic exceptions and implementations for Zope"
 arch=('any')
 url="https://github.com/zopefoundation/zope.exceptions;
@@ -12,7 +12,7 @@
  'python2-zope-interface')
 checkdepends=('python-zope-testrunner' 'python2-zope-testrunner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.exceptions/archive/$pkgver.tar.gz;)
-sha512sums=('120ae57003426cd308f213885c53fd6d0e61a6ff08eeaa912c9a3ff9f4274a5dfafdc8016814cbef59f9d2722edac0a032286ef334b8dd452afed048cd8c21a5')
+sha512sums=('c327b52090ea30604d9bd6d2e00b5ebbef54571c8723ecde35ffaa7301d39e819ed59fb051bc3515560830e0834c249cb98b5db2ba1fb2639a5d19b531875680')
 
 prepare() {
   cp -a zope.exceptions-$pkgver{,-py2}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:13:45
  Author: felixonmars
Revision: 389665

upgpkg: postgrest 0.5.0.0-46

rebuild with deferred-folds 0.9.9

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:13:45 UTC (rev 389664)
+++ PKGBUILD2018-10-04 20:13:45 UTC (rev 389665)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=0.5.0.0
-pkgrel=45
+pkgrel=46
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:14:04
  Author: felixonmars
Revision: 389666

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 389665, postgrest/trunk/PKGBUILD)
  postgrest/repos/community-staging-x86_64/new-hasql.patch
(from rev 389665, postgrest/trunk/new-hasql.patch)

-+
 PKGBUILD|   77 
 new-hasql.patch |  477 ++
 2 files changed, 554 insertions(+)

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 389665, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 20:14:04 UTC (rev 389666)
@@ -0,0 +1,77 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.5.0.0
+pkgrel=46
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' 'haskell-hasql' 'haskell-hasql-pool' 
'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-either' 'haskell-gitrev' 'haskell-hasql-transaction' 
'haskell-heredoc'
+ 'haskell-http' 'haskell-http-types' 
'haskell-insert-ordered-containers'
+ 'haskell-interpolatedstring-perl6' 'haskell-jose' 'haskell-lens' 
'haskell-lens-aeson'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 
'haskell-ranged-sets'
+ 'haskell-regex-tdfa' 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra'
+ 'haskell-wai-middleware-static' 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;
+new-hasql.patch)
+sha512sums=('ba8974cc83de3a7fcf1ede454eed726d6dfe7d677e4b34bbf6a03f11cc648d6812c2f101684175bb1f4d0f0b384795a737791ce807c257eae67158e2fc74b0a0'
+
'54257b24e646175c3687d3d0b224092441e0a8093d04327fb900da6c463625bfc952aabe46bcbbee8d0b4b96d4c07b4b148efa5ac4dcd9dd60bf7d3da5a49fcd')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../new-hasql.patch
+
+sed -i 's/==/>=/' $pkgname.cabal
+
+sed -i '/import\s*Safe/d' src/PostgREST/App.hs
+sed -i '/safe/d' $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"
+}

Copied: postgrest/repos/community-staging-x86_64/new-hasql.patch (from rev 
389665, postgrest/trunk/new-hasql.patch)
===
--- community-staging-x86_64/new-hasql.patch(rev 0)
+++ community-staging-x86_64/new-hasql.patch2018-10-04 20:14:04 UTC (rev 
389666)
@@ -0,0 +1,477 @@
+From f02992e562fafc807092d09a8034f2117c9db00d Mon Sep 17 00:00:00 2001
+From: Ben Gamari 
+Date: Thu, 28 Jun 2018 01:02:09 -0400
+Subject: [PATCH] Update hasql
+
+Move to hasql 1.3.
+---
+ postgrest.cabal   |   6 +-
+ src/PostgREST/App.hs  |  16 ++---
+ 

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

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 20:40:17
  Author: archange
Revision: 389676

upgpkg: acpica 20181003-1

Modified:
  acpica/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:17:02 UTC (rev 389675)
+++ PKGBUILD2018-10-04 20:40:17 UTC (rev 389676)
@@ -4,7 +4,7 @@
 # Contributor: Alessio 'mOlOk' Bolognino 
 
 pkgname=acpica
-pkgver=20180927
+pkgver=20181003
 pkgrel=1
 pkgdesc="ACPI tools, including Intel ACPI Source Language compiler"
 arch=('x86_64')
@@ -17,7 +17,7 @@
 replaces=('iasl')
 options=('!makeflags')
 source=("https://acpica.org/sites/acpica/files/acpica-unix-${pkgver}.tar.gz;)
-sha256sums=('dc408d11889bcbedcfe9cc5b7ed23f65e857ca8fd5125f8c7a9e075e0b282db1')
+sha256sums=('4c40014ef582665f87e4278f34a60b725bc99cb94341c900621780d6d5a708d1')
 
 build() {
   cd acpica-unix-${pkgver}


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

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 20:40:32
  Author: archange
Revision: 389677

archrelease: copy trunk to community-x86_64

Added:
  acpica/repos/community-x86_64/PKGBUILD
(from rev 389676, acpica/trunk/PKGBUILD)
Deleted:
  acpica/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 20:40:17 UTC (rev 389676)
+++ PKGBUILD2018-10-04 20:40:32 UTC (rev 389677)
@@ -1,30 +0,0 @@
-# Maintainer : Bruno Pagani 
-# Maintainer : Laurent Carlier 
-# Contributor: Giovanni Scafora 
-# Contributor: Alessio 'mOlOk' Bolognino 
-
-pkgname=acpica
-pkgver=20180927
-pkgrel=1
-pkgdesc="ACPI tools, including Intel ACPI Source Language compiler"
-arch=('x86_64')
-url="https://acpica.org;
-license=('GPL2')
-depends=('glibc')
-makedepends=('flex' 'bison')
-provides=('iasl')
-conflicts=('iasl')
-replaces=('iasl')
-options=('!makeflags')
-source=("https://acpica.org/sites/acpica/files/acpica-unix-${pkgver}.tar.gz;)
-sha256sums=('dc408d11889bcbedcfe9cc5b7ed23f65e857ca8fd5125f8c7a9e075e0b282db1')
-
-build() {
-  cd acpica-unix-${pkgver}
-  make
-}
-
-package() {
-  cd acpica-unix-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: acpica/repos/community-x86_64/PKGBUILD (from rev 389676, 
acpica/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 20:40:32 UTC (rev 389677)
@@ -0,0 +1,30 @@
+# Maintainer : Bruno Pagani 
+# Maintainer : Laurent Carlier 
+# Contributor: Giovanni Scafora 
+# Contributor: Alessio 'mOlOk' Bolognino 
+
+pkgname=acpica
+pkgver=20181003
+pkgrel=1
+pkgdesc="ACPI tools, including Intel ACPI Source Language compiler"
+arch=('x86_64')
+url="https://acpica.org;
+license=('GPL2')
+depends=('glibc')
+makedepends=('flex' 'bison')
+provides=('iasl')
+conflicts=('iasl')
+replaces=('iasl')
+options=('!makeflags')
+source=("https://acpica.org/sites/acpica/files/acpica-unix-${pkgver}.tar.gz;)
+sha256sums=('4c40014ef582665f87e4278f34a60b725bc99cb94341c900621780d6d5a708d1')
+
+build() {
+  cd acpica-unix-${pkgver}
+  make
+}
+
+package() {
+  cd acpica-unix-${pkgver}
+  make DESTDIR=${pkgdir} install
+}


[arch-commits] Commit in (rhash)

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:45:05
  Author: felixonmars
Revision: 389679

community2extra: Moving rhash from community to extra

Deleted:
  rhash/


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:07:09
  Author: felixonmars
Revision: 389656

upgpkg: haskell-text-builder 0.6.3-12

rebuild with deferred-folds 0.9.9

Modified:
  haskell-text-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:06:06 UTC (rev 389655)
+++ PKGBUILD2018-10-04 20:07:09 UTC (rev 389656)
@@ -3,7 +3,7 @@
 _hkgname=text-builder
 pkgname=haskell-text-builder
 pkgver=0.6.3
-pkgrel=11
+pkgrel=12
 pkgdesc="An efficient strict text builder"
 url="https://github.com/nikita-volkov/text-builder;
 license=('MIT')


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:08:40
  Author: felixonmars
Revision: 389658

upgpkg: haskell-hasql 1.3.0.3-21

rebuild with deferred-folds 0.9.9

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:07:26 UTC (rev 389657)
+++ PKGBUILD2018-10-04 20:08:40 UTC (rev 389658)
@@ -4,7 +4,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=1.3.0.3
-pkgrel=20
+pkgrel=21
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql;
 license=('MIT')


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:54:00
  Author: felixonmars
Revision: 335765

archrelease: copy trunk to extra-x86_64

Added:
  cmake/repos/extra-x86_64/PKGBUILD
(from rev 335764, cmake/trunk/PKGBUILD)
  cmake/repos/extra-x86_64/rebuild.list
(from rev 335764, cmake/trunk/rebuild.list)
Deleted:
  cmake/repos/extra-x86_64/PKGBUILD
  cmake/repos/extra-x86_64/rebuild.list

--+
 PKGBUILD |  103 -
 rebuild.list |4 +-
 2 files changed, 53 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 20:53:41 UTC (rev 335764)
+++ PKGBUILD2018-10-04 20:54:00 UTC (rev 335765)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=cmake
-pkgver=3.12.2
-pkgrel=1
-pkgdesc='A cross-platform open-source make system'
-arch=('x86_64')
-url="http://www.cmake.org/;
-license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash')
-makedepends=('qt5-base' 'python-sphinx' 'emacs')
-optdepends=('qt5-base: cmake-gui'
-'libxkbcommon-x11: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('a2f44b2d77d9a3aa62273dbdeb94ad336c7430f41a31f48b4b395d170577b2b296d598ed9d1d548df95758b3fbf3ced193e1398fd701bc99792580798ec2a99d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./bootstrap --prefix=/usr \
---mandir=/share/man \
---docdir=/share/doc/cmake \
---sphinx-man \
---system-libs \
---qt-gui \
---parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${vimpath}"/{help,indent,syntax}
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
-"${vimpath}"/indent/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
-"${vimpath}"/syntax/
-
-  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
-"${pkgdir}"/usr/share/emacs/site-lisp/
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: cmake/repos/extra-x86_64/PKGBUILD (from rev 335764, 
cmake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 20:54:00 UTC (rev 335765)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.12.3
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('x86_64')
+url="http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('2b5b006bd0fa09431eb525a7f419c64b811afbe1cc81d34e6167e04112966d9f48f28652b21b5a04c889de6227315db57dd2099a17ea6329e27f3e97eac9051c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+
+  install -Dm644 Copyright.txt \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: rebuild.list
===
--- rebuild.list2018-10-04 20:53:41 UTC (rev 335764)
+++ rebuild.list2018-10-04 20:54:00 UTC (rev 335765)
@@ -1,2 +0,0 @@
-cmake-fedora
-uranium

Copied: cmake/repos/extra-x86_64/rebuild.list (from rev 335764, 
cmake/trunk/rebuild.list)
===
--- rebuild.list(rev 0)
+++ rebuild.list2018-10-04 20:54:00 UTC (rev 335765)
@@ -0,0 +1,2 @@
+cmake-fedora
+uranium


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:53:41
  Author: felixonmars
Revision: 335764

upgpkg: cmake 3.12.3-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:44:42 UTC (rev 335763)
+++ PKGBUILD2018-10-04 20:53:41 UTC (rev 335764)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.12.2
+pkgver=3.12.3
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: cmake-gui'
 'libxkbcommon-x11: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('a2f44b2d77d9a3aa62273dbdeb94ad336c7430f41a31f48b4b395d170577b2b296d598ed9d1d548df95758b3fbf3ced193e1398fd701bc99792580798ec2a99d')
+sha512sums=('2b5b006bd0fa09431eb525a7f419c64b811afbe1cc81d34e6167e04112966d9f48f28652b21b5a04c889de6227315db57dd2099a17ea6329e27f3e97eac9051c')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in gitea/repos (7 files)

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 21:24:51
  Author: archange
Revision: 389681

archrelease: copy trunk to community-testing-x86_64

Added:
  gitea/repos/community-testing-x86_64/
  gitea/repos/community-testing-x86_64/PKGBUILD
(from rev 389680, gitea/trunk/PKGBUILD)
  gitea/repos/community-testing-x86_64/gitea-disable-u2f.patch
(from rev 389680, gitea/trunk/gitea-disable-u2f.patch)
  gitea/repos/community-testing-x86_64/gitea-ldflags.patch
(from rev 389680, gitea/trunk/gitea-ldflags.patch)
  gitea/repos/community-testing-x86_64/gitea-repos.patch
(from rev 389680, gitea/trunk/gitea-repos.patch)
  gitea/repos/community-testing-x86_64/gitea.service
(from rev 389680, gitea/trunk/gitea.service)
  gitea/repos/community-testing-x86_64/gitea.tmpfiles
(from rev 389680, gitea/trunk/gitea.tmpfiles)

-+
 PKGBUILD|   66 ++
 gitea-disable-u2f.patch |   16 +++
 gitea-ldflags.patch |   19 +
 gitea-repos.patch   |   11 +++
 gitea.service   |   29 
 gitea.tmpfiles  |7 
 6 files changed, 148 insertions(+)

Copied: gitea/repos/community-testing-x86_64/PKGBUILD (from rev 389680, 
gitea/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-10-04 21:24:51 UTC (rev 389681)
@@ -0,0 +1,66 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Maxime Gauduin 
+# Contributor: Frederik Schwan 
+
+pkgname=gitea
+pkgver=1.5.1
+pkgrel=2
+pkgdesc="Painless self-hosted Git service. Community managed fork of Gogs."
+arch=('x86_64')
+url="https://gitea.io;
+license=('MIT')
+depends=('git')
+makedepends=('go-pie' 'go-bindata')
+optdepends=(
+  'mariadb: MariaDB support'
+  'memcached: MemCached support'
+  'openssh: GIT over SSH support'
+  'pam: Authentication via PAM support'
+  'postgresql: PostgreSQL support'
+  'redis: Redis support'
+  'sqlite: SQLite support'
+)
+backup=('etc/gitea/app.ini')
+_commit=38d8b8cf49ce62dd7cfc806f1995d00e6fecc707  # tags/1.5.1^0
+source=("git+https://github.com/go-gitea/gitea.git#commit=${_commit};
+gitea.tmpfiles
+gitea.service
+gitea-repos.patch
+gitea-ldflags.patch
+gitea-disable-u2f.patch)
+sha256sums=('SKIP'
+'da04ca25b76bcfc443c49da056393240d94d8c7e3b4bd63d4cf10e5aea001239'
+'49c6da593d9c463d39bec47aa2496a636944d5c673c2983be731466d4dbbf578'
+'66c5a84fbbe56dd8b3bca3a779aaaf5d4855573f0dd2b273018a8983d7951a72'
+'f062d395b3122edcbcb51f6bac59da70ef57bfcf4693c17bde14ee35b1ef5e92'
+'d6842efd13b6971b77d233ff3ac2bd3d81c5d26c348ae1f2a2b19b0e7237726e')
+
+prepare() {
+  mkdir -p gopath/src/code.gitea.io
+  ln -rTsf ${pkgname} gopath/src/code.gitea.io/${pkgname}
+
+  cd ${pkgname}
+  # Change default repos path for ArchLinux
+  patch -Np1 -i ../gitea-repos.patch
+  # Fix LDFLAGS not being respected by Go
+  patch -Np1 -i ../gitea-ldflags.patch
+  # https://github.com/go-gitea/gitea/issues/4692
+  patch -Np1 -i ../gitea-disable-u2f.patch
+}
+
+build() {
+  export GOPATH="${srcdir}"/gopath
+  cd gopath/src/code.gitea.io/gitea
+  make generate
+  EXTRA_GOFLAGS="-gcflags all=-trimpath=${GOPATH} -asmflags 
all=-trimpath=${GOPATH}" \
+  make GOFLAGS="-v" TAGS="bindata sqlite tidb pam" build
+}
+
+package() {
+  install -Dm755 ${pkgname}/${pkgname} -t "${pkgdir}"/usr/bin/
+  install -Dm644 ${pkgname}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+  install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+  install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+  install -dm755 -o root -g git "${pkgdir}"/etc/gitea
+  install -m 660 -o root -g git ${pkgname}/custom/conf/app.ini.sample 
"${pkgdir}"/etc/gitea/app.ini
+}

Copied: gitea/repos/community-testing-x86_64/gitea-disable-u2f.patch (from rev 
389680, gitea/trunk/gitea-disable-u2f.patch)
===
--- community-testing-x86_64/gitea-disable-u2f.patch
(rev 0)
+++ community-testing-x86_64/gitea-disable-u2f.patch2018-10-04 21:24:51 UTC 
(rev 389681)
@@ -0,0 +1,16 @@
+--- a/custom/conf/app.ini.sample
 b/custom/conf/app.ini.sample
+@@ -628,13 +628,6 @@ sr-SP = sr
+ sv-SE = sv
+ ko-KR = ko
+ 
+-[U2F]
+-; Two Factor authentication with security keys
+-; https://developers.yubico.com/U2F/App_ID.html
+-APP_ID = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
+-; Comma seperated list of truisted facets
+-TRUSTED_FACETS = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
+-
+ ; Extension mapping to highlight class
+ ; e.g. .toml=ini
+ [highlight.mapping]

Copied: gitea/repos/community-testing-x86_64/gitea-ldflags.patch (from rev 
389680, gitea/trunk/gitea-ldflags.patch)

[arch-commits] Commit in (9 files)

2018-10-04 Thread Bruno Pagani via arch-commits
Date: Thursday, October 4, 2018 @ 21:24:26
  Author: archange
Revision: 389680

Initial addition of gitea in [community]

Added:
  gitea/
  gitea/repos/
  gitea/trunk/
  gitea/trunk/PKGBUILD
  gitea/trunk/gitea-disable-u2f.patch
  gitea/trunk/gitea-ldflags.patch
  gitea/trunk/gitea-repos.patch
  gitea/trunk/gitea.service
  gitea/trunk/gitea.tmpfiles

-+
 PKGBUILD|   66 ++
 gitea-disable-u2f.patch |   16 +++
 gitea-ldflags.patch |   19 +
 gitea-repos.patch   |   11 +++
 gitea.service   |   29 
 gitea.tmpfiles  |7 
 6 files changed, 148 insertions(+)

Added: gitea/trunk/PKGBUILD
===
--- gitea/trunk/PKGBUILD(rev 0)
+++ gitea/trunk/PKGBUILD2018-10-04 21:24:26 UTC (rev 389680)
@@ -0,0 +1,66 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Maxime Gauduin 
+# Contributor: Frederik Schwan 
+
+pkgname=gitea
+pkgver=1.5.1
+pkgrel=2
+pkgdesc="Painless self-hosted Git service. Community managed fork of Gogs."
+arch=('x86_64')
+url="https://gitea.io;
+license=('MIT')
+depends=('git')
+makedepends=('go-pie' 'go-bindata')
+optdepends=(
+  'mariadb: MariaDB support'
+  'memcached: MemCached support'
+  'openssh: GIT over SSH support'
+  'pam: Authentication via PAM support'
+  'postgresql: PostgreSQL support'
+  'redis: Redis support'
+  'sqlite: SQLite support'
+)
+backup=('etc/gitea/app.ini')
+_commit=38d8b8cf49ce62dd7cfc806f1995d00e6fecc707  # tags/1.5.1^0
+source=("git+https://github.com/go-gitea/gitea.git#commit=${_commit};
+gitea.tmpfiles
+gitea.service
+gitea-repos.patch
+gitea-ldflags.patch
+gitea-disable-u2f.patch)
+sha256sums=('SKIP'
+'da04ca25b76bcfc443c49da056393240d94d8c7e3b4bd63d4cf10e5aea001239'
+'49c6da593d9c463d39bec47aa2496a636944d5c673c2983be731466d4dbbf578'
+'66c5a84fbbe56dd8b3bca3a779aaaf5d4855573f0dd2b273018a8983d7951a72'
+'f062d395b3122edcbcb51f6bac59da70ef57bfcf4693c17bde14ee35b1ef5e92'
+'d6842efd13b6971b77d233ff3ac2bd3d81c5d26c348ae1f2a2b19b0e7237726e')
+
+prepare() {
+  mkdir -p gopath/src/code.gitea.io
+  ln -rTsf ${pkgname} gopath/src/code.gitea.io/${pkgname}
+
+  cd ${pkgname}
+  # Change default repos path for ArchLinux
+  patch -Np1 -i ../gitea-repos.patch
+  # Fix LDFLAGS not being respected by Go
+  patch -Np1 -i ../gitea-ldflags.patch
+  # https://github.com/go-gitea/gitea/issues/4692
+  patch -Np1 -i ../gitea-disable-u2f.patch
+}
+
+build() {
+  export GOPATH="${srcdir}"/gopath
+  cd gopath/src/code.gitea.io/gitea
+  make generate
+  EXTRA_GOFLAGS="-gcflags all=-trimpath=${GOPATH} -asmflags 
all=-trimpath=${GOPATH}" \
+  make GOFLAGS="-v" TAGS="bindata sqlite tidb pam" build
+}
+
+package() {
+  install -Dm755 ${pkgname}/${pkgname} -t "${pkgdir}"/usr/bin/
+  install -Dm644 ${pkgname}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+  install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+  install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+  install -dm755 -o root -g git "${pkgdir}"/etc/gitea
+  install -m 660 -o root -g git ${pkgname}/custom/conf/app.ini.sample 
"${pkgdir}"/etc/gitea/app.ini
+}

Added: gitea/trunk/gitea-disable-u2f.patch
===
--- gitea/trunk/gitea-disable-u2f.patch (rev 0)
+++ gitea/trunk/gitea-disable-u2f.patch 2018-10-04 21:24:26 UTC (rev 389680)
@@ -0,0 +1,16 @@
+--- a/custom/conf/app.ini.sample
 b/custom/conf/app.ini.sample
+@@ -628,13 +628,6 @@ sr-SP = sr
+ sv-SE = sv
+ ko-KR = ko
+ 
+-[U2F]
+-; Two Factor authentication with security keys
+-; https://developers.yubico.com/U2F/App_ID.html
+-APP_ID = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
+-; Comma seperated list of truisted facets
+-TRUSTED_FACETS = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
+-
+ ; Extension mapping to highlight class
+ ; e.g. .toml=ini
+ [highlight.mapping]

Added: gitea/trunk/gitea-ldflags.patch
===
--- gitea/trunk/gitea-ldflags.patch (rev 0)
+++ gitea/trunk/gitea-ldflags.patch 2018-10-04 21:24:26 UTC (rev 389680)
@@ -0,0 +1,19 @@
+--- a/Makefile
 b/Makefile
+@@ -33,6 +33,7 @@ else
+   GITEA_VERSION := $(shell git describe --tags --always | sed 's/-/+/' | 
sed 's/^v//')
+ endif
+ 
++EXTLDFLAGS := ${LDFLAGS}
+ LDFLAGS := -X "main.Version=$(GITEA_VERSION)" -X "main.Tags=$(TAGS)"
+ 
+ PACKAGES ?= $(filter-out code.gitea.io/gitea/integrations,$(shell $(GO) list 
./... | grep -v /vendor/))
+@@ -240,7 +241,7 @@ install: $(wildcard *.go)
+ build: $(EXECUTABLE)
+ 
+ $(EXECUTABLE): $(SOURCES)
+-  $(GO) build $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w 
$(LDFLAGS)' -o $@
++ 

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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:02:18
  Author: felixonmars
Revision: 389650

upgpkg: python-zconfig 3.3.0-1

Modified:
  python-zconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 19:29:27 UTC (rev 389649)
+++ PKGBUILD2018-10-04 20:02:18 UTC (rev 389650)
@@ -4,8 +4,8 @@
 
 pkgbase=python-zconfig
 pkgname=(python-zconfig python2-zconfig)
-pkgver=3.2.0
-pkgrel=2
+pkgver=3.3.0
+pkgrel=1
 pkgdesc="Structured Configuration Library"
 url="https://github.com/zopefoundation/ZConfig;
 license=('ZPL')
@@ -14,7 +14,7 @@
 checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-manuel' 'python2-manuel'
   'python-docutils' 'python2-docutils' 'python-nose' 
'python2-nose')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/ZConfig/archive/$pkgver.tar.gz;)
-sha512sums=('053c12ef8d36e53ea844afc6949304ff6153895f3d4eac8c30f4bff6bde7efc017caac4364656683bd3c95b3840e59b95bd8e338c97dc3b5bbb67fac08496107')
+sha512sums=('e1bd04a67644ab3985b2b72319a279d228212915cbd0808d741d4feba89518b1ead1393868ce7d80d480923467f52faf9c8fcf0db93efef3067ae22178b215e6')
 
 prepare() {
   cp -a ZConfig-$pkgver{,-py2}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:17:02
  Author: felixonmars
Revision: 389675

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 20:16:41 UTC (rev 389674)
+++ PKGBUILD2018-10-04 20:17:02 UTC (rev 389675)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-zope-testing
-pkgname=('python-zope-testing' 'python2-zope-testing')
-pkgver=4.6.2
-pkgrel=2
-pkgdesc="Zope testing helpers"
-arch=('any')
-url="https://github.com/zopefoundation/zope.testing;
-license=('ZPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface' 'python-zope-exceptions' 
'python2-zope-exceptions')
-checkdepends=('python-nose' 'python2-nose')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.testing/archive/$pkgver.tar.gz;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a zope.testing-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/zope.testing-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/zope.testing-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/zope.testing-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/zope.testing-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-zope-testing() {
-  depends=('python-setuptools' 'python-zope-interface' 
'python-zope-exceptions')
-
-  cd "$srcdir/zope.testing-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-zope-testing() {
-  depends=('python2-setuptools' 'python2-zope-interface' 
'python2-zope-exceptions')
-
-  cd "$srcdir/zope.testing-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zope-testing/repos/community-any/PKGBUILD (from rev 389674, 
python-zope-testing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 20:17:02 UTC (rev 389675)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-zope-testing
+pkgname=('python-zope-testing' 'python2-zope-testing')
+pkgver=4.7
+pkgrel=1
+pkgdesc="Zope testing helpers"
+arch=('any')
+url="https://github.com/zopefoundation/zope.testing;
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface' 'python-zope-exceptions' 
'python2-zope-exceptions')
+checkdepends=('python-nose' 'python2-nose')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.testing/archive/$pkgver.tar.gz;)
+sha512sums=('8d285e64a5ec0f7df8e12e8887246f76b14a6bf8c5e1febd83afbd2baff28bc7ce98bbc4fffae69678270219fab84849b05a892cbd94674b3925623d338b0176')
+
+prepare() {
+  cp -a zope.testing-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/zope.testing-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/zope.testing-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/zope.testing-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/zope.testing-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-zope-testing() {
+  depends=('python-setuptools' 'python-zope-interface' 
'python-zope-exceptions')
+
+  cd "$srcdir/zope.testing-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zope-testing() {
+  depends=('python2-setuptools' 'python2-zope-interface' 
'python2-zope-exceptions')
+
+  cd "$srcdir/zope.testing-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:16:41
  Author: felixonmars
Revision: 389674

upgpkg: python-zope-testing 4.7-1

Modified:
  python-zope-testing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:14:34 UTC (rev 389673)
+++ PKGBUILD2018-10-04 20:16:41 UTC (rev 389674)
@@ -2,8 +2,8 @@
 
 pkgbase=python-zope-testing
 pkgname=('python-zope-testing' 'python2-zope-testing')
-pkgver=4.6.2
-pkgrel=2
+pkgver=4.7
+pkgrel=1
 pkgdesc="Zope testing helpers"
 arch=('any')
 url="https://github.com/zopefoundation/zope.testing;
@@ -12,7 +12,7 @@
  'python2-zope-interface' 'python-zope-exceptions' 
'python2-zope-exceptions')
 checkdepends=('python-nose' 'python2-nose')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.testing/archive/$pkgver.tar.gz;)
-sha256sums=('SKIP')
+sha512sums=('8d285e64a5ec0f7df8e12e8887246f76b14a6bf8c5e1febd83afbd2baff28bc7ce98bbc4fffae69678270219fab84849b05a892cbd94674b3925623d338b0176')
 
 prepare() {
   cp -a zope.testing-$pkgver{,-py2}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:11:02
  Author: felixonmars
Revision: 389663

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql-transaction/repos/community-staging-x86_64/
  haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD
(from rev 389662, haskell-hasql-transaction/trunk/PKGBUILD)

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

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 389662, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 20:11:02 UTC (rev 389663)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.7
+pkgrel=21
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-bytestring-tree-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-hasql')
+makedepends=('ghc' 'haskell-async' 'haskell-rebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('adfbb25a1c94785137e9e0d8d8b2d4a36492d7d4cf305e45c5f15da9e369897cc7d404edcaee898b80de509fccde081627e105fa8e7915ff616d13d909c092d4')
+
+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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql-transaction/trunk (PKGBUILD)

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:10:44
  Author: felixonmars
Revision: 389662

upgpkg: haskell-hasql-transaction 0.7-21

rebuild with deferred-folds 0.9.9

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:09:58 UTC (rev 389661)
+++ PKGBUILD2018-10-04 20:10:44 UTC (rev 389662)
@@ -3,7 +3,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=0.7
-pkgrel=20
+pkgrel=21
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction;
 license=('MIT')


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

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 22:07:09
  Author: dvzrv
Revision: 389683

archrelease: copy trunk to community-x86_64

Added:
  lsp-plugins/repos/community-x86_64/
  lsp-plugins/repos/community-x86_64/PKGBUILD
(from rev 389682, lsp-plugins/trunk/PKGBUILD)
  lsp-plugins/repos/community-x86_64/relro_pie.patch
(from rev 389682, lsp-plugins/trunk/relro_pie.patch)

-+
 PKGBUILD|   48 +++
 relro_pie.patch |  826 ++
 2 files changed, 874 insertions(+)

Copied: lsp-plugins/repos/community-x86_64/PKGBUILD (from rev 389682, 
lsp-plugins/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-10-04 22:07:09 UTC (rev 389683)
@@ -0,0 +1,48 @@
+# Maintainer: David Runge 
+pkgname=lsp-plugins
+pkgver=1.1.4
+pkgrel=2
+pkgdesc="Collection of free plugins compatible with LADSPA, LV2 and LinuxVST"
+arch=('x86_64')
+url="https://lsp-plug.in;
+license=('LGPL3')
+groups=('ladspa-plugins' 'lv2-plugins' 'pro-audio' 'vst-plugins')
+depends=('cairo' 'glu' 'jack' 'libglvnd' 'libsndfile')
+makedepends=('ladspa' 'lv2' 'php')
+source=("https://github.com/sadko4u/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;
+'relro_pie.patch')
+sha512sums=('214af5c9cb3adf5013359768356594ba9e8d2ee214e9b10e2f51d7b1b51e6c7a7aaebff826149dcd7a9fa945cbac623422c53e46165b2091f5c35ca0d0807617'
+
'fe1c477809426fc06e1c8b804fde2d88f49ae2b9adb4728c46fcdc3730f869f91dc87bece22d406283d64f76b3aae541c00e8122d0d21a14442baac4e2e855da')
+
+prepare() {
+#  local _relro="-Wl,-z,relro,-z,now"
+  mv -v "$pkgname-$pkgname-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  patch -Np1 -i ../relro_pie.patch
+  # removing /usr/local/lib from RPATH
+  sed -e '/LD_PATH/ s|:/usr/local/lib||' \
+  -i Makefile
+}
+
+build() {
+  local _test_path="$(pwd)/.build-test"
+  cd "$pkgname-$pkgver"
+  make
+  make OBJDIR=${_test_path} clean
+  make OBJDIR=${_test_path} test
+}
+
+check() {
+  local _test_path="$(pwd)/.build-test"
+  cd "$pkgname-$pkgver"
+  ${_test_path}/lsp-plugins-test utest --nofork --debug --verbose
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make BIN_PATH=/usr/bin \
+   LIB_PATH=/usr/lib \
+   DOC_PATH=/usr/share/doc \
+   DESTDIR="$pkgdir/" \
+   install
+}

Copied: lsp-plugins/repos/community-x86_64/relro_pie.patch (from rev 389682, 
lsp-plugins/trunk/relro_pie.patch)
===
--- community-x86_64/relro_pie.patch(rev 0)
+++ community-x86_64/relro_pie.patch2018-10-04 22:07:09 UTC (rev 389683)
@@ -0,0 +1,826 @@
+diff -ruN lsp-plugins/Makefile lsp-plugins-fix/Makefile
+--- lsp-plugins/Makefile   2018-10-02 19:34:33.893727476 +0200
 lsp-plugins-fix/Makefile   2018-10-04 23:39:10.818524204 +0200
+@@ -88,14 +88,14 @@
+ export BASEDIR  = ${CURDIR}
+ export INCLUDE  = ${INC_FLAGS}
+ export MAKE_OPTS= -s
+-export CFLAGS   = $(CC_ARCH) -std=c++98 -fPIC -fdata-sections 
-ffunction-sections -fno-exceptions -fno-asynchronous-unwind-tables -Wall 
-pthread -pipe -fno-rtti $(CC_FLAGS) -DLSP_MAIN_VERSION=\"$(VERSION)\"
++export CFLAGS   = $(CC_ARCH) -std=c++98 -fdata-sections 
-ffunction-sections -fno-exceptions -fno-asynchronous-unwind-tables -Wall -pipe 
-fno-rtti $(CC_FLAGS) -DLSP_MAIN_VERSION=\"$(VERSION)\"
+ export CC   = g++
+ export PHP  = php
+ export LD   = ld
+ export LDFLAGS  = $(LD_ARCH) -L$(LD_PATH)
+-export SO_FLAGS = $(CC_ARCH) -Wl,-rpath,$(LD_PATH) -Wl,--gc-sections 
-shared -Llibrary -lc -lm -fPIC -lpthread
++export SO_FLAGS = $(CC_ARCH) -Wl,-rpath,$(LD_PATH) 
-Wl,-z,relro,-z,now -Wl,--gc-sections -shared -Llibrary -lc -fPIC
+ export MERGE_FLAGS  = $(LD_ARCH) -r
+-export EXE_FLAGS= $(CC_ARCH) -Wl,-rpath,$(LD_PATH) -Wl,--gc-sections 
-lm -fPIC -pthread
++export EXE_FLAGS= $(CC_ARCH) -Wl,-rpath,$(LD_PATH) 
-Wl,-z,relro,-z,now -Wl,--gc-sections -pie -fPIE
+ 
+ # Objects
+ export OBJ_CORE = $(OBJDIR)/core.o
+@@ -134,6 +134,9 @@
+ export PHP_PLUGINS  = $(OBJDIR)/plugins.php
+ 
+ # Compile headers and linkage libraries
++export PTHREAD_LIBS = -lpthread
++export MATH_LIBS= -lm
++export DL_LIBS  = -ldl
+ export CAIRO_HEADERS= $(shell pkg-config --cflags cairo)
+ export CAIRO_LIBS   = $(shell pkg-config --libs cairo)
+ export XLIB_HEADERS = $(shell pkg-config --cflags x11)
+@@ -164,7 +167,7 @@
+ 
+ default: all
+ 
+-all: export CFLAGS  += -O2
++all: export CFLAGS  += -O2 -DLSP_NO_EXPERIMENTAL
+ all: compile
+ 
+ trace: export CFLAGS+= -DLSP_TRACE
+diff -ruN lsp-plugins/TODO.txt lsp-plugins-fix/TODO.txt
+--- lsp-plugins/TODO.txt   2018-10-02 19:34:33.897060773 +0200
 lsp-plugins-fix/TODO.txt   2018-10-02 19:35:32.626431501 

[arch-commits] Commit in lsp-plugins/trunk (PKGBUILD relro_pie.patch)

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 22:07:04
  Author: dvzrv
Revision: 389682

upgpkg: lsp-plugins 1.1.4-2

Adding lsp-plugins 1.1.4 with patch for full RELRO and PIE for the jack clients.

Modified:
  lsp-plugins/trunk/PKGBUILD
  lsp-plugins/trunk/relro_pie.patch

-+
 PKGBUILD|4 
 relro_pie.patch |  523 +++---
 2 files changed, 502 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 21:24:51 UTC (rev 389681)
+++ PKGBUILD2018-10-04 22:07:04 UTC (rev 389682)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=lsp-plugins
 pkgver=1.1.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Collection of free plugins compatible with LADSPA, LV2 and LinuxVST"
 arch=('x86_64')
 url="https://lsp-plug.in;
@@ -12,7 +12,7 @@
 
source=("https://github.com/sadko4u/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;
 'relro_pie.patch')
 
sha512sums=('214af5c9cb3adf5013359768356594ba9e8d2ee214e9b10e2f51d7b1b51e6c7a7aaebff826149dcd7a9fa945cbac623422c53e46165b2091f5c35ca0d0807617'
-
'8801dc4f00ec5feb3766b532db413462e4d0c64329c8ce1941d875705c99d772d60796fa88aa92c94e59be8324b8a1ff88664d98d2e5541b26f56fa8b1654ae0')
+
'fe1c477809426fc06e1c8b804fde2d88f49ae2b9adb4728c46fcdc3730f869f91dc87bece22d406283d64f76b3aae541c00e8122d0d21a14442baac4e2e855da')
 
 prepare() {
 #  local _relro="-Wl,-z,relro,-z,now"

Modified: relro_pie.patch
===
--- relro_pie.patch 2018-10-04 21:24:51 UTC (rev 389681)
+++ relro_pie.patch 2018-10-04 22:07:04 UTC (rev 389682)
@@ -1,20 +1,12 @@
 diff -ruN lsp-plugins/Makefile lsp-plugins-fix/Makefile
 --- lsp-plugins/Makefile   2018-10-02 19:34:33.893727476 +0200
-+++ lsp-plugins-fix/Makefile   2018-10-02 19:35:32.626431501 +0200
-@@ -30,6 +30,7 @@
- INC_FLAGS   = -I"${CURDIR}/include"
- INSTALLATIONS   = install_ladspa install_lv2 install_jack install_doc 
install_vst
- RELEASES= release_ladspa release_lv2 release_jack release_src 
release_doc release_vst
-+CC_FLAGS= -DLSP_NO_EXPERIMENTAL
- 
- # Build profile
- ifndef BUILD_PROFILE
-@@ -88,14 +89,14 @@
 lsp-plugins-fix/Makefile   2018-10-04 23:39:10.818524204 +0200
+@@ -88,14 +88,14 @@
  export BASEDIR  = ${CURDIR}
  export INCLUDE  = ${INC_FLAGS}
  export MAKE_OPTS= -s
 -export CFLAGS   = $(CC_ARCH) -std=c++98 -fPIC -fdata-sections 
-ffunction-sections -fno-exceptions -fno-asynchronous-unwind-tables -Wall 
-pthread -pipe -fno-rtti $(CC_FLAGS) -DLSP_MAIN_VERSION=\"$(VERSION)\"
-+export CFLAGS   = $(CC_ARCH) -std=c++98 -fPIC -fdata-sections 
-ffunction-sections -fno-exceptions -fno-asynchronous-unwind-tables -Wall -pipe 
-fno-rtti $(CC_FLAGS) -DLSP_MAIN_VERSION=\"$(VERSION)\"
++export CFLAGS   = $(CC_ARCH) -std=c++98 -fdata-sections 
-ffunction-sections -fno-exceptions -fno-asynchronous-unwind-tables -Wall -pipe 
-fno-rtti $(CC_FLAGS) -DLSP_MAIN_VERSION=\"$(VERSION)\"
  export CC   = g++
  export PHP  = php
  export LD   = ld
@@ -27,7 +19,7 @@
  
  # Objects
  export OBJ_CORE = $(OBJDIR)/core.o
-@@ -134,6 +135,9 @@
+@@ -134,6 +134,9 @@
  export PHP_PLUGINS  = $(OBJDIR)/plugins.php
  
  # Compile headers and linkage libraries
@@ -37,6 +29,15 @@
  export CAIRO_HEADERS= $(shell pkg-config --cflags cairo)
  export CAIRO_LIBS   = $(shell pkg-config --libs cairo)
  export XLIB_HEADERS = $(shell pkg-config --cflags x11)
+@@ -164,7 +167,7 @@
+ 
+ default: all
+ 
+-all: export CFLAGS  += -O2
++all: export CFLAGS  += -O2 -DLSP_NO_EXPERIMENTAL
+ all: compile
+ 
+ trace: export CFLAGS+= -DLSP_TRACE
 diff -ruN lsp-plugins/TODO.txt lsp-plugins-fix/TODO.txt
 --- lsp-plugins/TODO.txt   2018-10-02 19:34:33.897060773 +0200
 +++ lsp-plugins-fix/TODO.txt   2018-10-02 19:35:32.626431501 +0200
@@ -110,9 +111,21 @@
  
  // Transfer MIDI events
  size_t events = pMidi->nEvents;
+diff -ruN lsp-plugins/src/Makefile lsp-plugins-fix/src/Makefile
+--- lsp-plugins/src/Makefile   2018-10-02 19:34:34.253723619 +0200
 lsp-plugins-fix/src/Makefile   2018-10-04 23:39:10.818524204 +0200
+@@ -46,7 +46,7 @@
+   @mkdir -p $(OBJDIR)/res
+   @$(UTL_RESGEN) $(BASEDIR)/res/ui $(OBJDIR)/res/xml_resource.cpp
+   @-rm gmon.out >/dev/null 2>&1
+-  @$(CC) -c $(CPPFLAGS) $(CFLAGS) $(INCLUDE) 
$(OBJDIR)/res/xml_resource.cpp -o $(OBJ_RES_CORE)
++  @$(CC) -o $(OBJ_RES_CORE) -c $(OBJDIR)/res/xml_resource.cpp -fPIC 
$(CPPFLAGS) $(CFLAGS) $(INCLUDE) 
+ 
+ # Target dependencies
+ container: $(CONTAINER_DEPS)
 diff -ruN lsp-plugins/src/container/Makefile 
lsp-plugins-fix/src/container/Makefile
 --- lsp-plugins/src/container/Makefile 2018-10-02 19:34:34.253723619 +0200
-+++ 

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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:05:49
  Author: felixonmars
Revision: 389654

upgpkg: haskell-deferred-folds 0.9.9-1

rebuild with deferred-folds 0.9.9

Modified:
  haskell-deferred-folds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:03:24 UTC (rev 389653)
+++ PKGBUILD2018-10-04 20:05:49 UTC (rev 389654)
@@ -2,8 +2,8 @@
 
 _hkgname=deferred-folds
 pkgname=haskell-deferred-folds
-pkgver=0.9.8
-pkgrel=2
+pkgver=0.9.9
+pkgrel=1
 pkgdesc="Abstractions over deferred folds"
 url="https://github.com/metrix-ai/deferred-folds;
 license=('MIT')
@@ -10,15 +10,16 @@
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-foldl' 'haskell-hashable' 'haskell-primitive'
  'haskell-unordered-containers' 'haskell-vector')
-makedepends=('ghc')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('b4218d51710efd7be6504e8cadd2592998e61cd3ff528067f2217758fd2fb70e471f94a5aada3a591c562dd4fde20388c494e07c9dda75ba9ef154cbdedd7ce9')
+sha512sums=('710c92522aa42a2d6329a925e44b29324e992c1b339778130fc6b709dc6eb3fe0a0e3bb9561b556f47d194457c70fc100c9562b56c0a80afd3058f0e18dd37cd')
 
 build() {
 cd $_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
@@ -27,6 +28,11 @@
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
 package() {
 cd $_hkgname-$pkgver
 


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

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 18:36:53
  Author: dvzrv
Revision: 389571

upgpkg: sox 14.4.2-4

Adding current maintainer. Changing to correct licenses (GPL2, LGPL2.1). 
Switching to https for source. Adding docs. Minor fixes.

Modified:
  sox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 18:08:51 UTC (rev 389570)
+++ PKGBUILD2018-10-04 18:36:53 UTC (rev 389571)
@@ -1,12 +1,13 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: David Runge 
+# Contributor: Eric Bélanger 
 
 pkgname=sox
 pkgver=14.4.2
-pkgrel=3
+pkgrel=4
 pkgdesc="The Swiss Army knife of sound processing tools"
 arch=('x86_64')
 url="http://sox.sourceforge.net/;
-license=('GPL' 'LGPL')
+license=('GPL2' 'LGPL2.1')
 depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
 makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 
'twolame')
 checkdepends=('time')
@@ -15,9 +16,10 @@
 'libid3tag: for mp3 plugin'
 'wavpack: for wavpack plugin'
 'libpulse: for pulse plugin'
-   'opusfile: for opus plugin'
+'opusfile: for opus plugin'
 'twolame: for mp3 plugin')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+sox-dynamic.patch
 CVE-2017-15371.patch::https://github.com/mansr/sox/commit/818bdd0.patch
 CVE-2017-11358.patch::https://github.com/mansr/sox/commit/6cb44a4.patch
 CVE-2017-15370.patch::https://github.com/mansr/sox/commit/ef3d8be.patch
@@ -38,21 +40,29 @@
 
 prepare() {
   cd ${pkgname}-${pkgver}
-  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
+  # fix man page installation
+  sed -e 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' \
+  -i Makefile.in
+
+  # fix dynamic linking
   patch -p1 -i "${srcdir}/sox-dynamic.patch"
+
+  # patch all (known) CVEs
   for _cve in 15371 11358 15370 11332 11359 15372 15642; do
 patch -p1 -i ../CVE-2017-$_cve.patch
   done
-  sed -e '/hcom/d' -i src/tests.sh # test fails with CVE-2017-11358.patch
 
-  aclocal
-  automake
+  # test fails with CVE-2017-11358.patch
+  sed -e '/hcom/d' -i src/tests.sh
+  autoreconf -vfi
 }
 
 build() {
   cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-dyn-default --with-distro="Arch Linux"
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-dyn-default \
+  --with-distro="Arch Linux"
   make
 }
 
@@ -64,4 +74,6 @@
 package() {
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
+  install -vDm 644 {AUTHORS,ChangeLog,README} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 18:37:03
  Author: dvzrv
Revision: 389572

archrelease: copy trunk to community-x86_64

Added:
  sox/repos/community-x86_64/PKGBUILD
(from rev 389571, sox/trunk/PKGBUILD)
  sox/repos/community-x86_64/sox-dynamic.patch
(from rev 389571, sox/trunk/sox-dynamic.patch)
Deleted:
  sox/repos/community-x86_64/PKGBUILD
  sox/repos/community-x86_64/sox-dynamic.patch

---+
 PKGBUILD  |  147 +++-
 sox-dynamic.patch |   24 
 2 files changed, 91 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 18:36:53 UTC (rev 389571)
+++ PKGBUILD2018-10-04 18:37:03 UTC (rev 389572)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=sox
-pkgver=14.4.2
-pkgrel=3
-pkgdesc="The Swiss Army knife of sound processing tools"
-arch=('x86_64')
-url="http://sox.sourceforge.net/;
-license=('GPL' 'LGPL')
-depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
-makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 
'twolame')
-checkdepends=('time')
-optdepends=('libao: for ao plugin'
-'libmad: for mp3 plugin'
-'libid3tag: for mp3 plugin'
-'wavpack: for wavpack plugin'
-'libpulse: for pulse plugin'
-   'opusfile: for opus plugin'
-'twolame: for mp3 plugin')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch
-CVE-2017-15371.patch::https://github.com/mansr/sox/commit/818bdd0.patch
-CVE-2017-11358.patch::https://github.com/mansr/sox/commit/6cb44a4.patch
-CVE-2017-15370.patch::https://github.com/mansr/sox/commit/ef3d8be.patch
-CVE-2017-11332.patch::https://github.com/mansr/sox/commit/7405bca.patch
-CVE-2017-11359.patch::https://github.com/mansr/sox/commit/8b590b3.patch
-CVE-2017-15372.patch::https://github.com/mansr/sox/commit/001c337.patch
-
CVE-2017-15642.patch::https://github.com/mansr/sox/commit/0be259e.patch)
-
-sha1sums=('dc9668256b9d81ef25d672f14f12ec026b0b4087'
-  '9c71fa36596ed127b1bb367cfbab3b52cd2ecb6d'
-  'e10b3903906eee6e1ac413c985de8deba1089c6c'
-  '67c701cf7b3b78b167e5c62a2deade5b92c73bf6'
-  '8cf9cda08e3da1d3cf75fa64d17859b9b2a05b73'
-  'dc832d954ea1dcddfdf80719bbcb7b4f187a9901'
-  '293e4b7942a82c686695d968a2e0b0400ba4f534'
-  'd580cfbac8e6562e9150dbd10b36fd66f4011a48'
-  '23b0012c3e214eade8e6fedeb610548f90527ee4')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
-  patch -p1 -i "${srcdir}/sox-dynamic.patch"
-  for _cve in 15371 11358 15370 11332 11359 15372 15642; do
-patch -p1 -i ../CVE-2017-$_cve.patch
-  done
-  sed -e '/hcom/d' -i src/tests.sh # test fails with CVE-2017-11358.patch
-
-  aclocal
-  automake
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-dyn-default --with-distro="Arch Linux"
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make bindir=. installcheck
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: sox/repos/community-x86_64/PKGBUILD (from rev 389571, 
sox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 18:37:03 UTC (rev 389572)
@@ -0,0 +1,79 @@
+# Maintainer: David Runge 
+# Contributor: Eric Bélanger 
+
+pkgname=sox
+pkgver=14.4.2
+pkgrel=4
+pkgdesc="The Swiss Army knife of sound processing tools"
+arch=('x86_64')
+url="http://sox.sourceforge.net/;
+license=('GPL2' 'LGPL2.1')
+depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
+makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 
'twolame')
+checkdepends=('time')
+optdepends=('libao: for ao plugin'
+'libmad: for mp3 plugin'
+'libid3tag: for mp3 plugin'
+'wavpack: for wavpack plugin'
+'libpulse: for pulse plugin'
+'opusfile: for opus plugin'
+'twolame: for mp3 plugin')
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+sox-dynamic.patch
+CVE-2017-15371.patch::https://github.com/mansr/sox/commit/818bdd0.patch
+CVE-2017-11358.patch::https://github.com/mansr/sox/commit/6cb44a4.patch
+CVE-2017-15370.patch::https://github.com/mansr/sox/commit/ef3d8be.patch
+CVE-2017-11332.patch::https://github.com/mansr/sox/commit/7405bca.patch
+CVE-2017-11359.patch::https://github.com/mansr/sox/commit/8b590b3.patch
+CVE-2017-15372.patch::https://github.com/mansr/sox/commit/001c337.patch
+
CVE-2017-15642.patch::https://github.com/mansr/sox/commit/0be259e.patch)
+

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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:06:06
  Author: felixonmars
Revision: 389655

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-deferred-folds/repos/community-staging-x86_64/
  haskell-deferred-folds/repos/community-staging-x86_64/PKGBUILD
(from rev 389654, haskell-deferred-folds/trunk/PKGBUILD)

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

Copied: haskell-deferred-folds/repos/community-staging-x86_64/PKGBUILD (from 
rev 389654, haskell-deferred-folds/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 20:06:06 UTC (rev 389655)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+_hkgname=deferred-folds
+pkgname=haskell-deferred-folds
+pkgver=0.9.9
+pkgrel=1
+pkgdesc="Abstractions over deferred folds"
+url="https://github.com/metrix-ai/deferred-folds;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-foldl' 'haskell-hashable' 'haskell-primitive'
+ 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('710c92522aa42a2d6329a925e44b29324e992c1b339778130fc6b709dc6eb3fe0a0e3bb9561b556f47d194457c70fc100c9562b56c0a80afd3058f0e18dd37cd')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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 $_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-text-builder/repos (2 files)

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:07:26
  Author: felixonmars
Revision: 389657

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-text-builder/repos/community-staging-x86_64/
  haskell-text-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 389656, haskell-text-builder/trunk/PKGBUILD)

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

Copied: haskell-text-builder/repos/community-staging-x86_64/PKGBUILD (from rev 
389656, haskell-text-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 20:07:26 UTC (rev 389657)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=text-builder
+pkgname=haskell-text-builder
+pkgver=0.6.3
+pkgrel=12
+pkgdesc="An efficient strict text builder"
+url="https://github.com/nikita-volkov/text-builder;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-deferred-folds')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a919476ae67613ad54c735439c73099b0a07a214ed41aa3ccf54fa37d4bc72d49f9400bede4903a716c6839f24da66b956f9982740b89ecbc580d0f100ac28a6')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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 $_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 rhash/repos (extra-x86_64 extra-x86_64/PKGBUILD)

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:44:42
  Author: felixonmars
Revision: 335763

archrelease: copy trunk to extra-x86_64

Added:
  rhash/repos/extra-x86_64/
  rhash/repos/extra-x86_64/PKGBUILD
(from rev 335762, rhash/trunk/PKGBUILD)

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

Copied: rhash/repos/extra-x86_64/PKGBUILD (from rev 335762, 
rhash/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2018-10-04 20:44:42 UTC (rev 335763)
@@ -0,0 +1,52 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: 謝致邦 
+# Contributor: cantabile 
+# Contributor: reMiND 
+
+pkgname=rhash
+pkgver=1.3.6
+pkgrel=1
+
+pkgdesc='Utility for verifying hash sums of files'
+url='http://rhash.anz.ru/?l=en'
+license=('custom' 'MIT')
+arch=('x86_64')
+
+depends=('glibc')
+
+backup=('etc/rhashrc')
+
+source=(https://downloads.sourceforge.net/rhash/rhash-$pkgver-src.tar.gz{,.asc})
+
+sha256sums=('964df972b60569b5cb35ec989ced195ab8ea514fc46a74eab98e86569ffbcf92'
+'SKIP')
+validpgpkeys=('2875F6B1C2D27A4F0C8AF60B2A714497E37363AE')
+
+prepare() {
+  cd RHash-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --extra-cflags="$CFLAGS" 
--extra-ldflags="$LDFLAGS"
+}
+
+build() {
+  cd RHash-$pkgver
+  make
+}
+
+check() {
+  cd RHash-$pkgver
+  make test test-lib
+}
+
+package() {
+  cd RHash-$pkgver
+
+  # program
+  make DESTDIR="$pkgdir" install
+
+  # library, since the makefiles are still broken
+  make -C librhash DESTDIR="$pkgdir" install-headers install-lib-shared 
install-so-link
+
+  # license
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/rhash/LICENSE
+}


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:44:26
  Author: felixonmars
Revision: 335762

community2extra: Moving rhash from community to extra

Added:
  rhash/
  rhash/repos/
  rhash/trunk/
  rhash/trunk/PKGBUILD

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

Added: rhash/trunk/PKGBUILD
===
--- rhash/trunk/PKGBUILD(rev 0)
+++ rhash/trunk/PKGBUILD2018-10-04 20:44:26 UTC (rev 335762)
@@ -0,0 +1,52 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: 謝致邦 
+# Contributor: cantabile 
+# Contributor: reMiND 
+
+pkgname=rhash
+pkgver=1.3.6
+pkgrel=1
+
+pkgdesc='Utility for verifying hash sums of files'
+url='http://rhash.anz.ru/?l=en'
+license=('custom' 'MIT')
+arch=('x86_64')
+
+depends=('glibc')
+
+backup=('etc/rhashrc')
+
+source=(https://downloads.sourceforge.net/rhash/rhash-$pkgver-src.tar.gz{,.asc})
+
+sha256sums=('964df972b60569b5cb35ec989ced195ab8ea514fc46a74eab98e86569ffbcf92'
+'SKIP')
+validpgpkeys=('2875F6B1C2D27A4F0C8AF60B2A714497E37363AE')
+
+prepare() {
+  cd RHash-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --extra-cflags="$CFLAGS" 
--extra-ldflags="$LDFLAGS"
+}
+
+build() {
+  cd RHash-$pkgver
+  make
+}
+
+check() {
+  cd RHash-$pkgver
+  make test test-lib
+}
+
+package() {
+  cd RHash-$pkgver
+
+  # program
+  make DESTDIR="$pkgdir" install
+
+  # library, since the makefiles are still broken
+  make -C librhash DESTDIR="$pkgdir" install-headers install-lib-shared 
install-so-link
+
+  # license
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/rhash/LICENSE
+}


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


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

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:09:58
  Author: felixonmars
Revision: 389661

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql-pool/repos/community-staging-x86_64/
  haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD
(from rev 389660, haskell-hasql-pool/trunk/PKGBUILD)

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

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
389660, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 20:09:58 UTC (rev 389661)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.5
+pkgrel=21
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('346ef1e40ce71597bc533be5affa4d4e75048a9f0d19e0d3347ba2c528f60d413f2a494dcee80b9911ce6759cf1a221e3132f760ff6ba72dd77ba49652cab2e6')
+
+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-hasql/repos (2 files)

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:08:58
  Author: felixonmars
Revision: 389659

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 389658, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-04 20:08:58 UTC (rev 389659)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=1.3.0.3
+pkgrel=21
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-data-default-class'
+ 'haskell-dlist' 'haskell-hashable' 'haskell-hashtables' 
'haskell-loch-th'
+ 'haskell-placeholders' 'haskell-postgresql-binary' 
'haskell-postgresql-libpq'
+ 'haskell-profunctors' 'haskell-text-builder' 'haskell-vector')
+makedepends=('ghc' 'haskell-bug' 'haskell-tasty' 'haskell-tasty-quickcheck' 
'haskell-tasty-hunit'
+ 'haskell-quickcheck-instances' 'haskell-quickcheck' 
'haskell-rerebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fb951f3c7f09b7bc9ba62afc01c25dea7b839d3da21065bb4bba923a96ecd9b53074650084db846e00f3bb27de638e7dd776b081346919b4e92c5d1aac405336')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/<.*0.6/<1/' $_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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql-pool/trunk (PKGBUILD)

2018-10-04 Thread Felix Yan via arch-commits
Date: Thursday, October 4, 2018 @ 20:09:40
  Author: felixonmars
Revision: 389660

upgpkg: haskell-hasql-pool 0.5-21

rebuild with deferred-folds 0.9.9

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 20:08:58 UTC (rev 389659)
+++ PKGBUILD2018-10-04 20:09:40 UTC (rev 389660)
@@ -4,7 +4,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.5
-pkgrel=20
+pkgrel=21
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool;
 license=('MIT')


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Thursday, October 4, 2018 @ 22:16:26
  Author: heftig
Revision: 335767

1.0.3-1

Modified:
  flatpak/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:16:05 UTC (rev 335766)
+++ PKGBUILD2018-10-04 22:16:26 UTC (rev 335767)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=flatpak
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
 url="http://flatpak.org;
@@ -12,14 +12,16 @@
 makedepends=(intltool gobject-introspection gtk-doc git docbook-xsl xmlto)
 checkdepends=(valgrind)
 install=flatpak.install
-_commit=2ec63469ec9aecdf202458eff2d5217904214e19  # tags/1.0.2^0
+_commit=b6a8cab35ff7628050a5e5c385979a034a2ff2dc  # tags/1.0.3^0
 source=("git+https://github.com/flatpak/flatpak#commit=$_commit;
 "git+https://github.com/projectatomic/bubblewrap;
 "git+https://gitlab.gnome.org/GNOME/libglnx.git;
+"git+https://github.com/flatpak/xdg-dbus-proxy;
 flatpak-bindir.sh flathub.flatpakrepo)
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
+'SKIP'
 'cf20e4831bceaaee74e9298b4ad7c4d2d51085d43f62d1c6a2d2977d2f421e00'
 '3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a')
 
@@ -29,6 +31,7 @@
   git submodule init
   git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
   git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git config --local submodule.dbus-proxy.url "$srcdir/xdg-dbus-proxy"
   git submodule update
 
   # https://github.com/flatpak/flatpak/issues/267


[arch-commits] Commit in nvidia-utils/repos/extra-x86_64 (8 files)

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 22:45:08
  Author: svenstaro
Revision: 335774

archrelease: copy trunk to extra-x86_64

Added:
  nvidia-utils/repos/extra-x86_64/PKGBUILD
(from rev 335773, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/extra-x86_64/nvidia-drm-outputclass.conf
(from rev 335773, nvidia-utils/trunk/nvidia-drm-outputclass.conf)
  nvidia-utils/repos/extra-x86_64/nvidia-utils.install
(from rev 335773, nvidia-utils/trunk/nvidia-utils.install)
  nvidia-utils/repos/extra-x86_64/nvidia-utils.sysusers
(from rev 335773, nvidia-utils/trunk/nvidia-utils.sysusers)
Deleted:
  nvidia-utils/repos/extra-x86_64/PKGBUILD
  nvidia-utils/repos/extra-x86_64/nvidia-drm-outputclass.conf
  nvidia-utils/repos/extra-x86_64/nvidia-utils.install
  nvidia-utils/repos/extra-x86_64/nvidia-utils.sysusers

-+
 PKGBUILD|  350 +-
 nvidia-drm-outputclass.conf |   29 +--
 nvidia-utils.install|   14 -
 nvidia-utils.sysusers   |2 
 4 files changed, 198 insertions(+), 197 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 22:44:58 UTC (rev 335773)
+++ PKGBUILD2018-10-04 22:45:08 UTC (rev 335774)
@@ -1,175 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Thomas Baechler 
-# Contributor: James Rayner 
-
-pkgbase=nvidia-utils
-pkgname=('nvidia-utils' 'opencl-nvidia')
-pkgver=410.57
-pkgrel=2
-arch=('x86_64')
-url="http://www.nvidia.com/;
-license=('custom')
-options=('!strip')
-_pkg="NVIDIA-Linux-x86_64-${pkgver}"
-source=('nvidia-drm-outputclass.conf'
-'nvidia-utils.sysusers'
-
"https://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
-sha512sums=('4b7ee569b4f7e5d8c8e17bcc3d25ae78ab859abbf51cded9179ee723f41570a3d4c57af8649b8b1a24689374921bdf45c8fb4689149f3ee254ff093d71e662e7'
-
'4b3ad73f5076ba90fe0b3a2e712ac9cde76f469cd8070280f960c3ce7dc502d1927f525ae18d008075c8f08ea432f7be0a6c3a7a6b49c361126dcf42f97ec499'
-
'2ba6b4b7829410152e0fa57772969ca59f134995ef93d08c12cc6a7a97e081c1d718600a25f541444ce66603ed84b99e66b0ced6fb773ca40f98cd5dc1348d79')
-
-
-create_links() {
-# create soname links
-find "$pkgdir" -type f -name '*.so*' ! -path '*xorg/*' -print0 | while 
read -d $'\0' _lib; do
-_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
-_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
-[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
-[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
-done
-}
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-bsdtar -xf nvidia-persistenced-init.tar.bz2
-
-sed -i 's/__NV_VK_ICD__/libGLX_nvidia.so.0/' nvidia_icd.json.template
-}
-
-package_opencl-nvidia() {
-pkgdesc="OpenCL implemention for NVIDIA"
-depends=('zlib')
-optdepends=('opencl-headers: headers necessary for OpenCL development')
-provides=('opencl-driver')
-cd "${_pkg}"
-
-# OpenCL
-install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
-install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
-install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}"
-
-create_links
-
-mkdir -p "${pkgdir}/usr/share/licenses"
-ln -s nvidia "${pkgdir}/usr/share/licenses/opencl-nvidia"
-}
-
-package_nvidia-utils() {
-pkgdesc="NVIDIA drivers utilities"
-depends=('xorg-server' 'libglvnd' 'egl-wayland')
-optdepends=('nvidia-settings: configuration tool'
-'xorg-server-devel: nvidia-xconfig'
-'opencl-nvidia: OpenCL support')
-conflicts=('nvidia-libgl')
-provides=('vulkan-driver' 'opengl-driver' 'nvidia-libgl')
-replaces=('nvidia-libgl')
-install="${pkgname}.install"
-
-cd "${_pkg}"
-
-# X driver
-install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
-
-# GLX extension module for X
-install -D -m755 "libglxserver_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglxserver_nvidia.so.${pkgver}"
-# Ensure that X finds glx
-ln -s "libglxserver_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglxserver_nvidia.so.1"
-ln -s "libglxserver_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglxserver_nvidia.so"
-
-# X wrapped software rendering
-install -D -m755 "libnvidia-wfb.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-wfb.so.${pkgver}"
-
-install -D -m755 "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLX_nvidia.so.${pkgver}"
-
-# OpenGL libraries
-install -D -m755 "libEGL_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libEGL_nvidia.so.${pkgver}"
-install -D -m755 "libGLESv1_CM_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLESv1_CM_nvidia.so.${pkgver}"
- 

[arch-commits] Commit in nvidia-utils/trunk (PKGBUILD nvidia-drm-outputclass.conf)

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 22:44:58
  Author: svenstaro
Revision: 335773

upgpkg: nvidia-utils 410.57-3

Revert latest changes

This is because that break for people with laptops with a dGPU and an Intel one.

Modified:
  nvidia-utils/trunk/PKGBUILD
  nvidia-utils/trunk/nvidia-drm-outputclass.conf

-+
 PKGBUILD|4 ++--
 nvidia-drm-outputclass.conf |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:24:04 UTC (rev 335772)
+++ PKGBUILD2018-10-04 22:44:58 UTC (rev 335773)
@@ -5,7 +5,7 @@
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'opencl-nvidia')
 pkgver=410.57
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url="http://www.nvidia.com/;
 license=('custom')
@@ -14,7 +14,7 @@
 source=('nvidia-drm-outputclass.conf'
 'nvidia-utils.sysusers'
 
"https://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
-sha512sums=('4b7ee569b4f7e5d8c8e17bcc3d25ae78ab859abbf51cded9179ee723f41570a3d4c57af8649b8b1a24689374921bdf45c8fb4689149f3ee254ff093d71e662e7'
+sha512sums=('c49d246a519731bfab9d22afa5c2dd2d366db06d80182738b84881e93cd697c783f16ee04819275c05597bb063451a5d6102fbc562cd078d2a374533a23cea48'
 
'4b3ad73f5076ba90fe0b3a2e712ac9cde76f469cd8070280f960c3ce7dc502d1927f525ae18d008075c8f08ea432f7be0a6c3a7a6b49c361126dcf42f97ec499'
 
'2ba6b4b7829410152e0fa57772969ca59f134995ef93d08c12cc6a7a97e081c1d718600a25f541444ce66603ed84b99e66b0ced6fb773ca40f98cd5dc1348d79')
 

Modified: nvidia-drm-outputclass.conf
===
--- nvidia-drm-outputclass.conf 2018-10-04 22:24:04 UTC (rev 335772)
+++ nvidia-drm-outputclass.conf 2018-10-04 22:44:58 UTC (rev 335773)
@@ -9,6 +9,7 @@
 MatchDriver "nvidia-drm"
 Driver "nvidia"
 Option "AllowEmptyInitialConfiguration"
+Option "PrimaryGPU" "yes"
 ModulePath "/usr/lib/nvidia/xorg"
 ModulePath "/usr/lib/xorg/modules"
 EndSection


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

2018-10-04 Thread Evangelos Foutras via arch-commits
Date: Friday, October 5, 2018 @ 04:51:52
  Author: foutrelis
Revision: 335785

upgpkg: fontconfig 2:2.13.1+12+g5f5ec56-1

Bump to 2.13.1 (+ fixes) now that the following issues are fixed:

 - https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/107
 - https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/110

Modified:
  fontconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-05 03:31:45 UTC (rev 335784)
+++ PKGBUILD2018-10-05 04:51:52 UTC (rev 335785)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=fontconfig
-pkgver=2.13.0+15+gc60ed9e
+pkgver=2.13.1+12+g5f5ec56
 pkgrel=1
 epoch=2
 pkgdesc="A library for configuring and customizing font access"
@@ -13,7 +13,7 @@
 makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
  perl-sgmls 'texlive-formatsextra>=2017' lynx json-c)
 install=fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
+_commit=5f5ec5676c61b9773026a9335c9b0dfa73a73353  # master
 source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
 fontconfig.hook)
 sha256sums=('SKIP'


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Friday, October 5, 2018 @ 00:22:33
  Author: heftig
Revision: 335777

1.5.3-1

Modified:
  libepoxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 23:16:05 UTC (rev 335776)
+++ PKGBUILD2018-10-05 00:22:33 UTC (rev 335777)
@@ -1,7 +1,7 @@
 # Maintainer: Laurent Carlier 
 
 pkgname=libepoxy
-pkgver=1.5.2
+pkgver=1.5.3
 pkgrel=1
 pkgdesc="Library handling OpenGL function pointer management"
 url="https://github.com/anholt/libepoxy;
@@ -9,7 +9,7 @@
 license=(MIT)
 depends=(glibc)
 makedepends=(python mesa-libgl git meson doxygen graphviz)
-_commit=707f50e680ab4f1861b1e54ca6e2907aaca56c12  # tags/1.5.2^0
+_commit=16b1481e00084682d5ae5d38178e3e418976dfae  # tags/1.5.3^0
 source=("git+https://github.com/anholt/libepoxy#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -32,12 +32,11 @@
 }
 
 check() {
-  cd build
-  meson test
+  meson test -C build
 }
 
 package() {
-  DESTDIR="$pkgdir" ninja -C build install
+  DESTDIR="$pkgdir" meson install -C build
   install -Dm644 $pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Friday, October 5, 2018 @ 00:23:24
  Author: heftig
Revision: 335778

archrelease: copy trunk to extra-x86_64

Added:
  libepoxy/repos/extra-x86_64/PKGBUILD
(from rev 335777, libepoxy/trunk/PKGBUILD)
Deleted:
  libepoxy/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-05 00:22:33 UTC (rev 335777)
+++ PKGBUILD2018-10-05 00:23:24 UTC (rev 335778)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-
-pkgname=libepoxy
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="Library handling OpenGL function pointer management"
-url="https://github.com/anholt/libepoxy;
-arch=(x86_64)
-license=(MIT)
-depends=(glibc)
-makedepends=(python mesa-libgl git meson doxygen graphviz)
-_commit=707f50e680ab4f1861b1e54ca6e2907aaca56c12  # tags/1.5.2^0
-source=("git+https://github.com/anholt/libepoxy#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  # Reduce docs size
-  printf '%s\n' >>doc/Doxyfile.in \
-HAVE_DOT=yes DOT_IMAGE_FORMAT=svg INTERACTIVE_SVG=yes
-}
-
-build() {
-  arch-meson $pkgname build \
--D docs=true
-  ninja -C build
-}
-
-check() {
-  cd build
-  meson test
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 $pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set sw=2 noet:

Copied: libepoxy/repos/extra-x86_64/PKGBUILD (from rev 335777, 
libepoxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-05 00:23:24 UTC (rev 335778)
@@ -0,0 +1,43 @@
+# Maintainer: Laurent Carlier 
+
+pkgname=libepoxy
+pkgver=1.5.3
+pkgrel=1
+pkgdesc="Library handling OpenGL function pointer management"
+url="https://github.com/anholt/libepoxy;
+arch=(x86_64)
+license=(MIT)
+depends=(glibc)
+makedepends=(python mesa-libgl git meson doxygen graphviz)
+_commit=16b1481e00084682d5ae5d38178e3e418976dfae  # tags/1.5.3^0
+source=("git+https://github.com/anholt/libepoxy#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  # Reduce docs size
+  printf '%s\n' >>doc/Doxyfile.in \
+HAVE_DOT=yes DOT_IMAGE_FORMAT=svg INTERACTIVE_SVG=yes
+}
+
+build() {
+  arch-meson $pkgname build \
+-D docs=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dm644 $pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set sw=2 et:


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

2018-10-04 Thread Evangelos Foutras via arch-commits
Date: Friday, October 5, 2018 @ 04:51:59
  Author: foutrelis
Revision: 335786

archrelease: copy trunk to extra-x86_64

Added:
  fontconfig/repos/extra-x86_64/PKGBUILD
(from rev 335785, fontconfig/trunk/PKGBUILD)
  fontconfig/repos/extra-x86_64/fontconfig.hook
(from rev 335785, fontconfig/trunk/fontconfig.hook)
  fontconfig/repos/extra-x86_64/fontconfig.install
(from rev 335785, fontconfig/trunk/fontconfig.install)
Deleted:
  fontconfig/repos/extra-x86_64/PKGBUILD
  fontconfig/repos/extra-x86_64/fontconfig.hook
  fontconfig/repos/extra-x86_64/fontconfig.install

+
 PKGBUILD   |  128 +--
 fontconfig.hook|   22 
 fontconfig.install |   76 +++---
 3 files changed, 113 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-05 04:51:52 UTC (rev 335785)
+++ PKGBUILD2018-10-05 04:51:59 UTC (rev 335786)
@@ -1,64 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=fontconfig
-pkgver=2.13.0+15+gc60ed9e
-pkgrel=1
-epoch=2
-pkgdesc="A library for configuring and customizing font access"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/fontconfig/;
-license=(custom)
-depends=(expat freetype2)
-makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
- perl-sgmls 'texlive-formatsextra>=2017' lynx json-c)
-install=fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
-source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
-fontconfig.hook)
-sha256sums=('SKIP'
-'672f6a1c5e164671955ce807e670306194142a1794ce88df653aa717a972e274')
-
-# a nice page to test font matching:
-# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
-# http://getemoji.com/
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---with-templatedir=/etc/fonts/conf.avail \
---with-xmldir=/etc/fonts \
---localstatedir=/var \
---disable-static \
---with-default-fonts=/usr/share/fonts \
---with-add-fonts=/usr/local/share/fonts
-  make
-}
-
-check() {
-  cd $pkgname
-  make -k check
-}
-
-_install_conf() {
-  install -m644 "$1" "$pkgdir/etc/fonts/conf.avail"
-  ln -s "../conf.avail/${1##*/}" "$pkgdir/etc/fonts/conf.d"
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-  install -Dm644 ../fontconfig.hook 
"$pkgdir/usr/share/libalpm/hooks/fontconfig.hook"
-}

Copied: fontconfig/repos/extra-x86_64/PKGBUILD (from rev 335785, 
fontconfig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-05 04:51:59 UTC (rev 335786)
@@ -0,0 +1,64 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=fontconfig
+pkgver=2.13.1+12+g5f5ec56
+pkgrel=1
+epoch=2
+pkgdesc="A library for configuring and customizing font access"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fontconfig/;
+license=(custom)
+depends=(expat freetype2)
+makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
+ perl-sgmls 'texlive-formatsextra>=2017' lynx json-c)
+install=fontconfig.install
+_commit=5f5ec5676c61b9773026a9335c9b0dfa73a73353  # master
+source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
+fontconfig.hook)
+sha256sums=('SKIP'
+'672f6a1c5e164671955ce807e670306194142a1794ce88df653aa717a972e274')
+
+# a nice page to test font matching:
+# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
+# http://getemoji.com/
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-templatedir=/etc/fonts/conf.avail \
+--with-xmldir=/etc/fonts \
+--localstatedir=/var \
+--disable-static \
+--with-default-fonts=/usr/share/fonts \
+--with-add-fonts=/usr/local/share/fonts
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check
+}
+
+_install_conf() {
+  install -m644 "$1" "$pkgdir/etc/fonts/conf.avail"
+  ln -s "../conf.avail/${1##*/}" "$pkgdir/etc/fonts/conf.d"
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 ../fontconfig.hook 
"$pkgdir/usr/share/libalpm/hooks/fontconfig.hook"
+}

Deleted: fontconfig.hook
===
--- fontconfig.hook   

[arch-commits] Commit in lib32-fontconfig/repos/multilib-x86_64 (6 files)

2018-10-04 Thread Evangelos Foutras via arch-commits
Date: Friday, October 5, 2018 @ 04:55:10
  Author: foutrelis
Revision: 389696

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-fontconfig/repos/multilib-x86_64/PKGBUILD
(from rev 389695, lib32-fontconfig/trunk/PKGBUILD)
  lib32-fontconfig/repos/multilib-x86_64/fontconfig-32.hook
(from rev 389695, lib32-fontconfig/trunk/fontconfig-32.hook)
  lib32-fontconfig/repos/multilib-x86_64/lib32-fontconfig.install
(from rev 389695, lib32-fontconfig/trunk/lib32-fontconfig.install)
Deleted:
  lib32-fontconfig/repos/multilib-x86_64/PKGBUILD
  lib32-fontconfig/repos/multilib-x86_64/fontconfig-32.hook
  lib32-fontconfig/repos/multilib-x86_64/lib32-fontconfig.install

--+
 PKGBUILD |  146 ++---
 fontconfig-32.hook   |   22 +++---
 lib32-fontconfig.install |   20 +++---
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-05 04:55:04 UTC (rev 389695)
+++ PKGBUILD2018-10-05 04:55:10 UTC (rev 389696)
@@ -1,73 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-_pkgbasename=fontconfig
-pkgname=lib32-$_pkgbasename
-pkgver=2.13.0+15+gc60ed9e
-pkgrel=1
-epoch=2
-pkgdesc="A library for configuring and customizing font access (32-bit)"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/fontconfig/;
-license=(custom)
-depends=(lib32-expat lib32-freetype2 $_pkgbasename)
-makedepends=(git autoconf-archive gperf python-lxml python-six lib32-json-c)
-install=lib32-fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
-source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
-fontconfig-32.hook)
-sha256sums=('SKIP'
-'d97c0c5b88023da5a2acf64cf560265390a9365305c43b8e86b4f89348e727b3')
-
-# a nice page to test font matching:
-# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
-# http://getemoji.com/
-
-pkgver() {
-  cd $_pkgbasename
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $_pkgbasename
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $_pkgbasename
-
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  ./configure --prefix=/usr \
---libdir=/usr/lib32 \
---sysconfdir=/etc \
---with-templatedir=/etc/fonts/conf.avail \
---with-xmldir=/etc/fonts \
---localstatedir=/var \
---disable-static \
---with-default-fonts=/usr/share/fonts \
---with-add-fonts=/usr/local/share/fonts
-  make
-}
-
-check() {
-  cd $_pkgbasename
-  make -k check
-}
-
-package() {
-  cd $_pkgbasename
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/{etc,usr/{include,share}}
-  find "$pkgdir/usr/bin" -not -type d -not -name fc-cache -delete
-  mv "$pkgdir"/usr/bin/fc-cache{,-32}
-
-  install -Dm644 ../fontconfig-32.hook 
"$pkgdir/usr/share/libalpm/hooks/fontconfig-32.hook"
-
-  # Install license
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-fontconfig/repos/multilib-x86_64/PKGBUILD (from rev 389695, 
lib32-fontconfig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-05 04:55:10 UTC (rev 389696)
@@ -0,0 +1,73 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+_pkgbasename=fontconfig
+pkgname=lib32-$_pkgbasename
+pkgver=2.13.1+12+g5f5ec56
+pkgrel=1
+epoch=2
+pkgdesc="A library for configuring and customizing font access (32-bit)"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fontconfig/;
+license=(custom)
+depends=(lib32-expat lib32-freetype2 $_pkgbasename)
+makedepends=(git autoconf-archive gperf python-lxml python-six lib32-json-c)
+install=lib32-fontconfig.install
+_commit=5f5ec5676c61b9773026a9335c9b0dfa73a73353  # master
+source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
+fontconfig-32.hook)
+sha256sums=('SKIP'
+'d97c0c5b88023da5a2acf64cf560265390a9365305c43b8e86b4f89348e727b3')
+
+# a nice page to test font matching:
+# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
+# http://getemoji.com/
+
+pkgver() {
+  cd $_pkgbasename
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $_pkgbasename
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $_pkgbasename
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure --prefix=/usr \
+--libdir=/usr/lib32 \
+--sysconfdir=/etc \
+--with-templatedir=/etc/fonts/conf.avail \
+--with-xmldir=/etc/fonts \
+--localstatedir=/var \
+--disable-static \
+--with-default-fonts=/usr/share/fonts \
+--with-add-fonts=/usr/local/share/fonts
+  make
+}
+
+check() {
+  cd $_pkgbasename
+  make -k check
+}

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

2018-10-04 Thread Evangelos Foutras via arch-commits
Date: Friday, October 5, 2018 @ 04:55:04
  Author: foutrelis
Revision: 389695

upgpkg: lib32-fontconfig 2:2.13.1+12+g5f5ec56-1

Bump to 2.13.1 (+ fixes) now that the following issues are fixed:

 - https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/107
 - https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/110

Modified:
  lib32-fontconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-05 00:41:36 UTC (rev 389694)
+++ PKGBUILD2018-10-05 04:55:04 UTC (rev 389695)
@@ -3,7 +3,7 @@
 
 _pkgbasename=fontconfig
 pkgname=lib32-$_pkgbasename
-pkgver=2.13.0+15+gc60ed9e
+pkgver=2.13.1+12+g5f5ec56
 pkgrel=1
 epoch=2
 pkgdesc="A library for configuring and customizing font access (32-bit)"
@@ -13,7 +13,7 @@
 depends=(lib32-expat lib32-freetype2 $_pkgbasename)
 makedepends=(git autoconf-archive gperf python-lxml python-six lib32-json-c)
 install=lib32-fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
+_commit=5f5ec5676c61b9773026a9335c9b0dfa73a73353  # master
 source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
 fontconfig-32.hook)
 sha256sums=('SKIP'


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

2018-10-04 Thread Eli Schwartz via arch-commits
Date: Thursday, October 4, 2018 @ 22:20:12
  Author: eschwartz
Revision: 389686

archrelease: copy trunk to community-x86_64

Added:
  llpp/repos/community-x86_64/Makefile
(from rev 389685, llpp/trunk/Makefile)
  llpp/repos/community-x86_64/PKGBUILD
(from rev 389685, llpp/trunk/PKGBUILD)
  llpp/repos/community-x86_64/no-quit-on-escape.patch
(from rev 389685, llpp/trunk/no-quit-on-escape.patch)
Deleted:
  llpp/repos/community-x86_64/Makefile
  llpp/repos/community-x86_64/PKGBUILD
  llpp/repos/community-x86_64/no-quit-on-escape.patch

-+
 Makefile|  182 +++---
 PKGBUILD|  144 +---
 no-quit-on-escape.patch |   68 -
 3 files changed, 194 insertions(+), 200 deletions(-)

Deleted: Makefile
===
--- Makefile2018-10-04 22:19:26 UTC (rev 389685)
+++ Makefile2018-10-04 22:20:12 UTC (rev 389686)
@@ -1,91 +0,0 @@
-VERSION = $(shell test -d .git && git describe --tags --dirty 2>/dev/null)
-ifeq "$(VERSION)" ""
-VERSION = 28
-endif
-
-# paths
-PREFIX ?= /usr/local
-
-# includes and libs
-PKGCONF_DEPS := freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
-CPPFLAGS += -D_GNU_SOURCE -DFFP
-CFLAGS += -g -std=c99 -pedantic -Wall -Wextra -Wshadow $(shell pkg-config 
--cflags $(PKGCONF_DEPS))
-LDLIBS = -lpthread -lmupdf -lmupdfthird -ljbig2dec $(shell pkg-config --libs 
$(PKGCONF_DEPS))
-
-# ocaml
-CAMLOPT = ocamlopt
-CAMLFLAGS = -g -w +a -safe-string -I +lablGL
-
-VPATH = wsi/x11
-
-C_SRC = cutils.c keysym2ucs.c link.c xlib.c version.c
-C_OBJ = $(C_SRC:.c=.o)
-OCAML_SRC = utils.ml wsi.ml confstruct.ml parser.ml config.ml ffi.ml 
glutils.ml help.ml keys.ml utf8syms.ml listview.ml main.ml
-OCAML_OBJ = $(OCAML_SRC:.ml=.cmx)
-MOD = unix.cmxa str.cmxa lablgl.cmxa
-SRCMANS = $(wildcard adoc/*.adoc)
-MANS = $(SRCMANS:.adoc=.1)
-
-DISTFILES := Makefile $(OCAML_SRC) link.c glfont.c keysym2ucs.c wsi.mli
-DISTFILES += $(wildcard *.sh) KEYS README BUILDING
-DISTFILES += misc/ adoc/
-
-all: llpp $(MANS)
-
-# dependency ordering
-config.cmx: wsi.cmi parser.cmx utils.cmx confstruct.cmx
-confstruct.cmx: wsi.cmx utils.cmx
-ffi.cmx: config.cmx
-glutils.cmx: ffi.cmx
-help.cmx: help.cmi config.cmx utils.cmx
-listview.cmx: utils.cmx glutils.cmx config.cmx utf8syms.cmx
-parser.cmx: utils.cmx
-wsi.cmi: utils.cmx keys.cmx
-wsi.cmx: wsi.cmi
-
-link.o: glfont.c
-version.o: CPPFLAGS += -DLLPP_VERSION=$(VERSION)
-
-# ordinary targets
-llpp: $(OCAML_OBJ) $(C_OBJ)
-   $(CAMLOPT) -o $@ $(CAMLFLAGS) $(C_OBJ) -ccopt '$(LDFLAGS)' -cclib 
'$(LDLIBS)' $(MOD) $(OCAML_OBJ)
-
-main.cmx: main.ml utils.cmx config.cmx glutils.cmx listview.cmx ffi.cmx 
keys.cmx wsi.cmx
-   $(CAMLOPT) -c -o $@ $(CAMLFLAGS) -thread $^
-
-confstruct.ml: genconfstr.sh
-   sh $< >$@
-
-# pattern rules
-%.o: %.c
-   $(CAMLOPT) -c -o $@ $(CAMLFLAGS) -cc $(CC) -ccopt '$(CFLAGS) 
$(CPPFLAGS)' $<
-
-%.cmx: %.ml
-   $(CAMLOPT) -c -o $@ $(CAMLFLAGS) $<
-
-%.cmi: %.mli
-   $(CAMLOPT) -c -o $@ $(CAMLFLAGS) $<
-
-%.1: %.adoc adoc/asciidoc.conf
-   a2x -d manpage -f manpage --asciidoc-opts="-f adoc/asciidoc.conf 
--out-file=$@.xml" $<
-
-# special targets
-clean:
-   $(RM) llpp link.o help.ml $(OCAML_OBJ) $(OCAML_OBJ:.cmx=.cmi) 
$(OCAML_OBJ:.cmx=.o) $(MANS) $(MANS:.1=.xml)
-
-dist: clean
-   mkdir llpp-$(VERSION)
-   cp -r $(DISTFILES) llpp-$(VERSION)
-   tar czf llpp-$(VERSION).tar.gz llpp-$(VERSION)
-   rm -rf llpp-$(VERSION)
-
-install:
-   install -Dm755 llpp "$(DESTDIR)"$(PREFIX)/bin/llpp
-   install -Dm644 -t "$(DESTDIR)"$(PREFIX)/share/man/man1  $(MANS)
-   install -Dm755 misc/llppac "$(DESTDIR)"$(PREFIX)/bin/llppac
-   install -Dm755 misc/llpp.inotify "$(DESTDIR)"$(PREFIX)/bin/llpp.inotify
-   install -Dm755 misc/llpphtml "$(DESTDIR)"$(PREFIX)/bin/llpphtml
-   install -Dm644 misc/llpp.desktop 
"$(DESTDIR)"$(PREFIX)/share/applications/llpp.desktop
-   install -Dm644 README "$(DESTDIR)"$(PREFIX)/share/licenses/llpp/README
-
-.PHONY: all clean dist install

Copied: llpp/repos/community-x86_64/Makefile (from rev 389685, 
llpp/trunk/Makefile)
===
--- Makefile(rev 0)
+++ Makefile2018-10-04 22:20:12 UTC (rev 389686)
@@ -0,0 +1,91 @@
+VERSION = $(shell test -d .git && git describe --tags --dirty 2>/dev/null)
+ifeq "$(VERSION)" ""
+VERSION = 28
+endif
+
+# paths
+PREFIX ?= /usr/local
+
+# includes and libs
+PKGCONF_DEPS := freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
+CPPFLAGS += -D_GNU_SOURCE -DFFP
+CFLAGS += -g -std=c99 -pedantic -Wall -Wextra -Wshadow $(shell pkg-config 
--cflags $(PKGCONF_DEPS))
+LDLIBS = -lpthread -lmupdf -lmupdf-third -ljbig2dec $(shell pkg-config --libs 
$(PKGCONF_DEPS))
+
+# ocaml
+CAMLOPT = ocamlopt
+CAMLFLAGS = -g -w +a -safe-string -I +lablGL
+
+VPATH = wsi/x11
+
+C_SRC = 

[arch-commits] Commit in llpp/trunk (Makefile PKGBUILD no-quit-on-escape.patch)

2018-10-04 Thread Eli Schwartz via arch-commits
Date: Thursday, October 4, 2018 @ 22:19:26
  Author: eschwartz
Revision: 389685

upgpkg: llpp 30-1

upstream release

Makefile changes:
- use the generic .cmx rule but set the CAMLFLAGS for main.cmx
- adapt to mupdf upstream changing the name of the "mupdfthird" library to 
"mupdf-third"

Modified:
  llpp/trunk/Makefile
  llpp/trunk/PKGBUILD
  llpp/trunk/no-quit-on-escape.patch

-+
 Makefile|6 +++---
 PKGBUILD|   13 -
 no-quit-on-escape.patch |   16 
 3 files changed, 15 insertions(+), 20 deletions(-)

Modified: Makefile
===
--- Makefile2018-10-04 22:08:26 UTC (rev 389684)
+++ Makefile2018-10-04 22:19:26 UTC (rev 389685)
@@ -10,7 +10,7 @@
 PKGCONF_DEPS := freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
 CPPFLAGS += -D_GNU_SOURCE -DFFP
 CFLAGS += -g -std=c99 -pedantic -Wall -Wextra -Wshadow $(shell pkg-config 
--cflags $(PKGCONF_DEPS))
-LDLIBS = -lpthread -lmupdf -lmupdfthird -ljbig2dec $(shell pkg-config --libs 
$(PKGCONF_DEPS))
+LDLIBS = -lpthread -lmupdf -lmupdf-third -ljbig2dec $(shell pkg-config --libs 
$(PKGCONF_DEPS))
 
 # ocaml
 CAMLOPT = ocamlopt
@@ -39,6 +39,8 @@
 glutils.cmx: ffi.cmx
 help.cmx: help.cmi config.cmx utils.cmx
 listview.cmx: utils.cmx glutils.cmx config.cmx utf8syms.cmx
+main.cmx: main.ml utils.cmx config.cmx glutils.cmx listview.cmx ffi.cmx 
keys.cmx wsi.cmx
+main.cmx: CAMLFLAGS += -thread
 parser.cmx: utils.cmx
 wsi.cmi: utils.cmx keys.cmx
 wsi.cmx: wsi.cmi
@@ -50,8 +52,6 @@
 llpp: $(OCAML_OBJ) $(C_OBJ)
$(CAMLOPT) -o $@ $(CAMLFLAGS) $(C_OBJ) -ccopt '$(LDFLAGS)' -cclib 
'$(LDLIBS)' $(MOD) $(OCAML_OBJ)
 
-main.cmx: main.ml utils.cmx config.cmx glutils.cmx listview.cmx ffi.cmx 
keys.cmx wsi.cmx
-   $(CAMLOPT) -c -o $@ $(CAMLFLAGS) -thread $^
 
 confstruct.ml: genconfstr.sh
sh $< >$@

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:08:26 UTC (rev 389684)
+++ PKGBUILD2018-10-04 22:19:26 UTC (rev 389685)
@@ -2,9 +2,9 @@
 # Contributor: earnestly
 
 pkgname=llpp
-pkgver=28
+pkgver=30
 # Often breaks with mupdf, which means I'll occasionally need to pin a 
specific commit.
-_commit=6face0c21f4d1ac5d7d4ffd33fefc5ce924d4fc8
+_commit=273ad1dccd857e2e664530fbb98ca93d68945867 # tags/v30
 pkgrel=1
 pkgdesc='opengl accelerated pdf viewer based on mupdf'
 arch=('x86_64')
@@ -35,9 +35,9 @@
 "${url}/pull/85/commits/6e40f7315cb620fef1d96bbe56cfe24dd91e182a.patch"
 'Makefile')
 sha256sums=('SKIP'
-'8bba7d57e65679c36f0dde27e38ded5e16f71d3c196d47573faa2c06533b1a73'
+'5814846ad19d9ddd8e1412bf36d4c2dc1a32186261126ec63cdf19f308396458'
 'e6fa1df1e9451d4ffecc416676ad4697da21fc8809e20c78502b97805e4f4321'
-'722b61229adde7e68de375bb713313759be3845715ca12a8fcbe60fe0d79ac45')
+'95b684261f1baf2ccce9adac7739936e238143e41bd2b291edbb3fae1b3b7d33')
 
 pkgver() {
 cd "${srcdir}"/${pkgname}
@@ -48,11 +48,6 @@
 prepare() {
 cd "${srcdir}"/${pkgname}
 
-# weird tag breaks versioning logic
-git tag -d llipposuction
-
-# mupdf too new
-git show c4a533126fa20f42088e2d99f416ce3d667f2d13 -- :./link.c | git apply 
--reverse --index
 # Don't use CPPFLAGS to insert '#include '
 patch -Np1 -i "${srcdir}"/6e40f7315cb620fef1d96bbe56cfe24dd91e182a.patch
 

Modified: no-quit-on-escape.patch
===
--- no-quit-on-escape.patch 2018-10-04 22:08:26 UTC (rev 389684)
+++ no-quit-on-escape.patch 2018-10-04 22:19:26 UTC (rev 389685)
@@ -1,20 +1,20 @@
 diff --git a/help.ml b/help.ml
-index 165d46e..b86f0a0 100644
+index 772e262..42262d8 100644
 --- a/help.ml
 +++ b/help.ml
 @@ -1,6 +1,6 @@
  let keys =
  {|-Quitting-
--escape/q- quit
-+q   - quit
- Q   - quit without saving the configuration or changes
- W   - save changes
+-escape/q  - quit
++q - quit
+ Q - quit without saving the configuration or changes
+ W - save changes
  
 diff --git a/main.ml b/main.ml
-index cd45361..5d66930 100644
+index 0445b50..645e35f 100644
 --- a/main.ml
 +++ b/main.ml
-@@ -3365,7 +3365,7 @@ let viewkeyboard key mask =
+@@ -3394,7 +3394,7 @@ let viewkeyboard key mask =
   )
   else impmsg "keyboard link navigation does not work under rotation"
  
@@ -23,7 +23,7 @@
   begin match state.mstate with
   | Mzoomrect _ ->
  resetmstate ();
-@@ -3782,7 +3782,7 @@ let viewkeyboard key mask =
+@@ -3811,7 +3811,7 @@ let viewkeyboard key mask =
   postRedisplay "|";
   state.mode <- Textentry (te, onleave);
  


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Thursday, October 4, 2018 @ 23:15:41
  Author: heftig
Revision: 335775

3.30.1.2-1

Modified:
  gnome-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:45:08 UTC (rev 335774)
+++ PKGBUILD2018-10-04 23:15:41 UTC (rev 335775)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-settings-daemon
-pkgver=3.30.1.1
+pkgver=3.30.1.2
 pkgrel=1
 pkgdesc="GNOME Settings Daemon"
 url="https://gitlab.gnome.org/GNOME/gnome-settings-daemon;
@@ -13,7 +13,7 @@
 makedepends=(xf86-input-wacom libxslt docbook-xsl python git meson)
 checkdepends=(python-pip python-gobject python-dbus)
 groups=(gnome)
-_commit=ed08ac9b41a07a33d3cd17a7711c239b8a5a42be  # 
tags/GNOME_SETTINGS_DAEMON_3_30_1_1^0
+_commit=0e5951b4201d2363221d1ddf319fcd313ee39b28  # 
tags/GNOME_SETTINGS_DAEMON_3_30_1_2^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-settings-daemon.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
 sha256sums=('SKIP'
@@ -38,7 +38,9 @@
 }
 
 check() {
-  pip install --user python-dbusmock
+  python -m venv --system-site-packages venv
+  venv/bin/pip install python-dbusmock
+  sed -i "1s|/usr/bin/python3|$srcdir/venv/bin/python|" 
$pkgname/plugins/*/test.py
   meson test -C build
 }
 


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Thursday, October 4, 2018 @ 22:17:26
  Author: heftig
Revision: 335771

archrelease: copy trunk to extra-x86_64

Added:
  flatpak/repos/extra-x86_64/PKGBUILD
(from rev 335770, flatpak/trunk/PKGBUILD)
  flatpak/repos/extra-x86_64/flathub.flatpakrepo
(from rev 335770, flatpak/trunk/flathub.flatpakrepo)
  flatpak/repos/extra-x86_64/flatpak-bindir.sh
(from rev 335770, flatpak/trunk/flatpak-bindir.sh)
  flatpak/repos/extra-x86_64/flatpak.install
(from rev 335770, flatpak/trunk/flatpak.install)
Deleted:
  flatpak/repos/extra-x86_64/PKGBUILD
  flatpak/repos/extra-x86_64/flathub.flatpakrepo
  flatpak/repos/extra-x86_64/flatpak-bindir.sh
  flatpak/repos/extra-x86_64/flatpak.install

-+
 PKGBUILD|  169 +-
 flathub.flatpakrepo |   16 ++--
 flatpak-bindir.sh   |   14 ++--
 flatpak.install |   18 ++---
 4 files changed, 110 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 22:17:18 UTC (rev 335770)
+++ PKGBUILD2018-10-04 22:17:26 UTC (rev 335771)
@@ -1,83 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=flatpak
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
-url="http://flatpak.org;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(dbus systemd glib2 libsoup polkit libxau ostree json-glib libseccomp 
libarchive
- python bubblewrap appstream-glib xdg-dbus-proxy)
-makedepends=(intltool gobject-introspection gtk-doc git docbook-xsl xmlto)
-checkdepends=(valgrind)
-install=flatpak.install
-_commit=2ec63469ec9aecdf202458eff2d5217904214e19  # tags/1.0.2^0
-source=("git+https://github.com/flatpak/flatpak#commit=$_commit;
-"git+https://github.com/projectatomic/bubblewrap;
-"git+https://gitlab.gnome.org/GNOME/libglnx.git;
-flatpak-bindir.sh flathub.flatpakrepo)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'cf20e4831bceaaee74e9298b4ad7c4d2d51085d43f62d1c6a2d2977d2f421e00'
-'3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git submodule update
-
-  # https://github.com/flatpak/flatpak/issues/267
-  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---disable-static \
---enable-gtk-doc \
---with-system-bubblewrap \
---with-system-dbus-proxy \
---with-priv-mode=setuid \
---with-dbus-config-dir=/usr/share/dbus-1/system.d
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # Xattr tests fail on tmpfs
-  make -k check || :
-}
-
-package() {
-  depends+=(xdg-desktop-portal)
-
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  install -Dt "$pkgdir/etc/profile.d" -m644 ../flatpak-bindir.sh
-  install -Dt "$pkgdir/usr/share/flatpak" -m644 ../flathub.flatpakrepo
-
-  # Fixup mode to match polkit
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: flatpak/repos/extra-x86_64/PKGBUILD (from rev 335770, 
flatpak/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 22:17:26 UTC (rev 335771)
@@ -0,0 +1,86 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
+url="http://flatpak.org;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(dbus systemd glib2 libsoup polkit libxau ostree json-glib libseccomp 
libarchive
+ python bubblewrap appstream-glib xdg-dbus-proxy)
+makedepends=(intltool gobject-introspection gtk-doc git docbook-xsl xmlto)
+checkdepends=(valgrind)
+install=flatpak.install
+_commit=b6a8cab35ff7628050a5e5c385979a034a2ff2dc  # tags/1.0.3^0
+source=("git+https://github.com/flatpak/flatpak#commit=$_commit;
+"git+https://github.com/projectatomic/bubblewrap;
+"git+https://gitlab.gnome.org/GNOME/libglnx.git;
+"git+https://github.com/flatpak/xdg-dbus-proxy;
+flatpak-bindir.sh flathub.flatpakrepo)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'cf20e4831bceaaee74e9298b4ad7c4d2d51085d43f62d1c6a2d2977d2f421e00'
+'3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.bubblewrap.url 

[arch-commits] Commit in gnome-sound-recorder/repos/extra-any (PKGBUILD PKGBUILD)

2018-10-04 Thread Jan Steffens via arch-commits
Date: Friday, October 5, 2018 @ 01:00:23
  Author: heftig
Revision: 335780

archrelease: copy trunk to extra-any

Added:
  gnome-sound-recorder/repos/extra-any/PKGBUILD
(from rev 335779, gnome-sound-recorder/trunk/PKGBUILD)
Deleted:
  gnome-sound-recorder/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-05 01:00:10 UTC (rev 335779)
+++ PKGBUILD2018-10-05 01:00:23 UTC (rev 335780)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-sound-recorder
-pkgver=3.28.1
-pkgrel=1
-pkgdesc="A utility to make simple audio recording from your GNOME desktop"
-url="https://wiki.gnome.org/Apps/SoundRecorder;
-arch=(any)
-license=(GPL2)
-depends=(gtk3 gjs gst-plugins-good gst-plugins-base)
-makedepends=(intltool gobject-introspection git gnome-common)
-groups=('gnome-extra')
-_commit=721080149bb6e58fcae6f277fc8c37ddd30e1c49  # tags/3.28.1^0
-source=("git+https://git.gnome.org/browse/gnome-sound-recorder#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-sound-recorder/repos/extra-any/PKGBUILD (from rev 335779, 
gnome-sound-recorder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-05 01:00:23 UTC (rev 335780)
@@ -0,0 +1,47 @@
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-sound-recorder
+pkgver=3.28.1
+pkgrel=2
+pkgdesc="A utility to make simple audio recording from your GNOME desktop"
+url="https://wiki.gnome.org/Apps/SoundRecorder;
+arch=(any)
+license=(GPL2)
+depends=(gtk3 gjs gst-plugins-good gst-plugins-base)
+makedepends=(intltool gobject-introspection git gnome-common)
+groups=('gnome-extra')
+_commit=721080149bb6e58fcae6f277fc8c37ddd30e1c49  # tags/3.28.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-sound-recorder.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Fix for js60
+  git cherry-pick -n 455ba5f9e327b6d9495b1fd7dc5dd0a6bd95ae99
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Friday, October 5, 2018 @ 01:00:10
  Author: heftig
Revision: 335779

3.28.1-2

Modified:
  gnome-sound-recorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-05 00:23:24 UTC (rev 335778)
+++ PKGBUILD2018-10-05 01:00:10 UTC (rev 335779)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-sound-recorder
 pkgver=3.28.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A utility to make simple audio recording from your GNOME desktop"
 url="https://wiki.gnome.org/Apps/SoundRecorder;
 arch=(any)
@@ -11,7 +11,7 @@
 makedepends=(intltool gobject-introspection git gnome-common)
 groups=('gnome-extra')
 _commit=721080149bb6e58fcae6f277fc8c37ddd30e1c49  # tags/3.28.1^0
-source=("git+https://git.gnome.org/browse/gnome-sound-recorder#commit=$_commit;)
+source=("git+https://gitlab.gnome.org/GNOME/gnome-sound-recorder.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
@@ -21,6 +21,10 @@
 
 prepare() {
   cd $pkgname
+
+  # Fix for js60
+  git cherry-pick -n 455ba5f9e327b6d9495b1fd7dc5dd0a6bd95ae99
+
   NOCONFIGURE=1 ./autogen.sh
 }
 


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Thursday, October 4, 2018 @ 22:16:49
  Author: heftig
Revision: 335768

0.7.13-1

Modified:
  appstream-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:16:26 UTC (rev 335767)
+++ PKGBUILD2018-10-04 22:16:49 UTC (rev 335768)
@@ -1,7 +1,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=appstream-glib
-pkgver=0.7.12
+pkgver=0.7.13
 pkgrel=1
 pkgdesc="Objects and methods for reading and writing AppStream metadata"
 url="https://people.freedesktop.org/~hughsient/appstream-glib/;
@@ -12,7 +12,7 @@
 provides=(appdata-tools)
 conflicts=(appdata-tools)
 replaces=(appdata-tools)
-_commit=614ce59c184f7844146eff5513375348c42c1326  # 
tags/appstream_glib_0_7_12^0
+_commit=d108b8ad471ae3448b2e5049f86b54250b9c3a03  # 
tags/appstream_glib_0_7_13^0
 source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -22,25 +22,21 @@
 }
 
 prepare() {
-  mkdir build
   cd $pkgname
 }
 
 build() {
-  cd build
-  arch-meson ../$pkgname \
--Dalpm=true \
--Dgtk-doc=true \
--Drpm=false
-  ninja
+  arch-meson $pkgname build \
+-D alpm=true \
+-D gtk-doc=true \
+-D rpm=false
+  ninja -C build
 }
 
 check() {
-  cd build
-  meson test
+  meson test -C build
 }
 
 package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
+  DESTDIR="$pkgdir" meson install -C build
 }


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

2018-10-04 Thread Jan Steffens via arch-commits
Date: Thursday, October 4, 2018 @ 22:24:04
  Author: heftig
Revision: 335772

FS#60284: Drop README

Modified:
  meson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:17:26 UTC (rev 335771)
+++ PKGBUILD2018-10-04 22:24:04 UTC (rev 335772)
@@ -49,7 +49,7 @@
   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 
   install -d "${pkgdir}/usr/share/vim/vimfiles"
-  cp -rt "${pkgdir}/usr/share/vim/vimfiles" data/syntax-highlighting/vim/*
+  cp -rt "${pkgdir}/usr/share/vim/vimfiles" data/syntax-highlighting/vim/*/
 
   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-commits] Commit in libircclient/trunk (PKGBUILD)

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 23:33:49
  Author: dvzrv
Revision: 389691

upgpkg: libircclient 1.10-1

Upgrading to 1.10. Minor fixes.

Modified:
  libircclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:40:08 UTC (rev 389690)
+++ PKGBUILD2018-10-04 23:33:49 UTC (rev 389691)
@@ -5,8 +5,8 @@
 # Contributor: coolkehon 
 
 pkgname=libircclient
-pkgver=1.9
-pkgrel=3
+pkgver=1.10
+pkgrel=1
 pkgdesc='Small but powerful library, which implements client-server IRC 
protocol'
 arch=('x86_64')
 url='https://www.ulduzsoft.com/linux/libircclient/'
@@ -14,16 +14,12 @@
 depends=('openssl')
 makedepends=('python2-sphinx' 'python2-rst2pdf') 
 
source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('6f424791fed94ecacdd5d0b2c04472b0ddba09da08a8efb76c115a2a6abedecdf0aab3a86632bdf0fbca78781256fb591d8c94ed8eb776c5f30557d5c426bd1c')
+sha512sums=('d677ceae0bfabc112671b351fb94d048399a7ad025ff33a2ff1ae6313382fcc78b64d499f2c882eb8b894abdde949562395819e4059fd14640dfae6757b0c259')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
-
   # fix include dir path
   sed -i "s/@\/include/&\/${pkgname}/" src/Makefile.in
-
-  # support openssl 1.1
-  sed -e 's|SSL_library_init|OPENSSL_init_ssl|' -i configure.in
   autoreconf -vi
 }
 
@@ -34,25 +30,23 @@
   --enable-shared \
   --enable-openssl \
   --enable-ipv6
-  cd src
-  make
-
-  cd ../doc
-  make SPHINXBUILD=sphinx-build2 singlehtml man
+  make -C src
+  make -C doc SPHINXBUILD=sphinx-build2 singlehtml man
 }
 
 package() {
-  cd "${pkgname}-${pkgver}/src"
-  make DESTDIR="${pkgdir}" install
+  cd "${pkgname}-${pkgver}"
+  make -C src DESTDIR="${pkgdir}" install
 
   # docs
   install -d "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -a ../doc/_build/singlehtml/* "${pkgdir}/usr/share/doc/${pkgname}"
-
+  cp -a doc/_build/singlehtml/* "${pkgdir}/usr/share/doc/${pkgname}"
   # man
-  install -Dm644 "../doc/_build/man/${pkgname}.1" \
-"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-
+  install -Dm 644 "doc/_build/man/${pkgname}.1" \
+-t "${pkgdir}/usr/share/man/man1/"
   # examples
-  install -t "${pkgdir}/usr/share/${pkgname}/examples" -Dm644 ../examples/*
+  install -Dm 644 examples/* -t "${pkgdir}/usr/share/${pkgname}/examples"
+  # docs
+  install -vDm 644 {Changelog,README,THANKS} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2018-10-04 Thread David Runge via arch-commits
Date: Thursday, October 4, 2018 @ 23:33:56
  Author: dvzrv
Revision: 389692

archrelease: copy trunk to community-x86_64

Added:
  libircclient/repos/community-x86_64/PKGBUILD
(from rev 389691, libircclient/trunk/PKGBUILD)
Deleted:
  libircclient/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 23:33:49 UTC (rev 389691)
+++ PKGBUILD2018-10-04 23:33:56 UTC (rev 389692)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Marcel Wysocki 
-# Contributor: coolkehon 
-
-pkgname=libircclient
-pkgver=1.9
-pkgrel=3
-pkgdesc='Small but powerful library, which implements client-server IRC 
protocol'
-arch=('x86_64')
-url='https://www.ulduzsoft.com/linux/libircclient/'
-license=('GPL')
-depends=('openssl')
-makedepends=('python2-sphinx' 'python2-rst2pdf') 
-source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('6f424791fed94ecacdd5d0b2c04472b0ddba09da08a8efb76c115a2a6abedecdf0aab3a86632bdf0fbca78781256fb591d8c94ed8eb776c5f30557d5c426bd1c')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-
-  # fix include dir path
-  sed -i "s/@\/include/&\/${pkgname}/" src/Makefile.in
-
-  # support openssl 1.1
-  sed -e 's|SSL_library_init|OPENSSL_init_ssl|' -i configure.in
-  autoreconf -vi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib \
-  --enable-shared \
-  --enable-openssl \
-  --enable-ipv6
-  cd src
-  make
-
-  cd ../doc
-  make SPHINXBUILD=sphinx-build2 singlehtml man
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/src"
-  make DESTDIR="${pkgdir}" install
-
-  # docs
-  install -d "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -a ../doc/_build/singlehtml/* "${pkgdir}/usr/share/doc/${pkgname}"
-
-  # man
-  install -Dm644 "../doc/_build/man/${pkgname}.1" \
-"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-
-  # examples
-  install -t "${pkgdir}/usr/share/${pkgname}/examples" -Dm644 ../examples/*
-}

Copied: libircclient/repos/community-x86_64/PKGBUILD (from rev 389691, 
libircclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-04 23:33:56 UTC (rev 389692)
@@ -0,0 +1,52 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Marcel Wysocki 
+# Contributor: coolkehon 
+
+pkgname=libircclient
+pkgver=1.10
+pkgrel=1
+pkgdesc='Small but powerful library, which implements client-server IRC 
protocol'
+arch=('x86_64')
+url='https://www.ulduzsoft.com/linux/libircclient/'
+license=('GPL')
+depends=('openssl')
+makedepends=('python2-sphinx' 'python2-rst2pdf') 
+source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d677ceae0bfabc112671b351fb94d048399a7ad025ff33a2ff1ae6313382fcc78b64d499f2c882eb8b894abdde949562395819e4059fd14640dfae6757b0c259')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix include dir path
+  sed -i "s/@\/include/&\/${pkgname}/" src/Makefile.in
+  autoreconf -vi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib \
+  --enable-shared \
+  --enable-openssl \
+  --enable-ipv6
+  make -C src
+  make -C doc SPHINXBUILD=sphinx-build2 singlehtml man
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make -C src DESTDIR="${pkgdir}" install
+
+  # docs
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a doc/_build/singlehtml/* "${pkgdir}/usr/share/doc/${pkgname}"
+  # man
+  install -Dm 644 "doc/_build/man/${pkgname}.1" \
+-t "${pkgdir}/usr/share/man/man1/"
+  # examples
+  install -Dm 644 examples/* -t "${pkgdir}/usr/share/${pkgname}/examples"
+  # docs
+  install -vDm 644 {Changelog,README,THANKS} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2018-10-04 Thread Kyle Keen via arch-commits
Date: Friday, October 5, 2018 @ 00:41:23
  Author: kkeen
Revision: 389693

upgpkg: python-testpath 0.4.2-1

Modified:
  python-testpath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 23:33:56 UTC (rev 389692)
+++ PKGBUILD2018-10-05 00:41:23 UTC (rev 389693)
@@ -2,8 +2,8 @@
 # Contributor: Philipp A. 
 _name=testpath
 pkgname=python-testpath
-pkgver=0.3.1
-pkgrel=2
+pkgver=0.4.2
+pkgrel=1
 pkgdesc='Test utilities for code working with files and commands'
 arch=('any')
 url="http://pypi.python.org/pypi/testpath;
@@ -15,8 +15,8 @@
 
source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/testpath/archive/$pkgver.tar.gz;
 "https://files.pythonhosted.org/packages/py2.py3/t/$_name/$_wheel;)
 #noextract=("$_wheel")
-md5sums=('b39b572b7e22570e679b924b6ed2dcdc'
- '12728181294cf6f815421081d620c494')
+md5sums=('2f0971fb3f497275f5763c137c3380af'
+ '4128c6f88528e9cf5c7f6f40359e8380')
 
 prepare() {
   cd "$srcdir"


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

2018-10-04 Thread Kyle Keen via arch-commits
Date: Friday, October 5, 2018 @ 00:41:36
  Author: kkeen
Revision: 389694

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-05 00:41:23 UTC (rev 389693)
+++ PKGBUILD2018-10-05 00:41:36 UTC (rev 389694)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Philipp A. 
-_name=testpath
-pkgname=python-testpath
-pkgver=0.3.1
-pkgrel=2
-pkgdesc='Test utilities for code working with files and commands'
-arch=('any')
-url="http://pypi.python.org/pypi/testpath;
-license=('MIT')
-depends=('python')
-#makedepends=('python-pip')
-_wheel="$_name-$pkgver-py2.py3-none-any.whl"
-# both sources because the WHL doesn't come with a license
-source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/testpath/archive/$pkgver.tar.gz;
-"https://files.pythonhosted.org/packages/py2.py3/t/$_name/$_wheel;)
-#noextract=("$_wheel")
-md5sums=('b39b572b7e22570e679b924b6ed2dcdc'
- '12728181294cf6f815421081d620c494')
-
-prepare() {
-  cd "$srcdir"
-  rm testpath/cli*.exe
-  sed -i '/cli-32.exe/d' testpath-$pkgver.dist-info/RECORD
-  sed -i '/cli-64.exe/d' testpath-$pkgver.dist-info/RECORD
-  sed -i 's/shutil.copy(src, dst)/return/' testpath/commands.py
-}
-
-package() {
-  #pip install --compile --no-deps --root="$pkgdir" "$_wheel"
-  # not using pip here because it installs windows junk
-
-  cd "$srcdir/testpath"
-  for _i in ./*; do
-install -Dm644 $_i "$pkgdir/usr/lib/python3.7/site-packages/testpath/$_i"
-  done
-
-  _dist="testpath-$pkgver.dist-info"
-  cd "$srcdir/$_dist"
-  for _i in ./*; do
-install -Dm644 $_i "$pkgdir/usr/lib/python3.7/site-packages/$_dist/$_i"
-  done
-
-  cd "$srcdir/testpath-$pkgver"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-testpath/repos/community-any/PKGBUILD (from rev 389693, 
python-testpath/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-05 00:41:36 UTC (rev 389694)
@@ -0,0 +1,46 @@
+# Maintainer: Kyle Keen 
+# Contributor: Philipp A. 
+_name=testpath
+pkgname=python-testpath
+pkgver=0.4.2
+pkgrel=1
+pkgdesc='Test utilities for code working with files and commands'
+arch=('any')
+url="http://pypi.python.org/pypi/testpath;
+license=('MIT')
+depends=('python')
+#makedepends=('python-pip')
+_wheel="$_name-$pkgver-py2.py3-none-any.whl"
+# both sources because the WHL doesn't come with a license
+source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/testpath/archive/$pkgver.tar.gz;
+"https://files.pythonhosted.org/packages/py2.py3/t/$_name/$_wheel;)
+#noextract=("$_wheel")
+md5sums=('2f0971fb3f497275f5763c137c3380af'
+ '4128c6f88528e9cf5c7f6f40359e8380')
+
+prepare() {
+  cd "$srcdir"
+  rm testpath/cli*.exe
+  sed -i '/cli-32.exe/d' testpath-$pkgver.dist-info/RECORD
+  sed -i '/cli-64.exe/d' testpath-$pkgver.dist-info/RECORD
+  sed -i 's/shutil.copy(src, dst)/return/' testpath/commands.py
+}
+
+package() {
+  #pip install --compile --no-deps --root="$pkgdir" "$_wheel"
+  # not using pip here because it installs windows junk
+
+  cd "$srcdir/testpath"
+  for _i in ./*; do
+install -Dm644 $_i "$pkgdir/usr/lib/python3.7/site-packages/testpath/$_i"
+  done
+
+  _dist="testpath-$pkgver.dist-info"
+  cd "$srcdir/$_dist"
+  for _i in ./*; do
+install -Dm644 $_i "$pkgdir/usr/lib/python3.7/site-packages/$_dist/$_i"
+  done
+
+  cd "$srcdir/testpath-$pkgver"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-pytorch/trunk (12116.patch PKGBUILD)

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 22:28:42
  Author: svenstaro
Revision: 389687

upgpkg: python-pytorch 1.0rc1-1

Added:
  python-pytorch/trunk/12116.patch
Modified:
  python-pytorch/trunk/PKGBUILD

-+
 12116.patch |   70 ++
 PKGBUILD|   10 
 2 files changed, 75 insertions(+), 5 deletions(-)

Added: 12116.patch
===
--- 12116.patch (rev 0)
+++ 12116.patch 2018-10-04 22:28:42 UTC (rev 389687)
@@ -0,0 +1,70 @@
+From cea0d3269daf34fa32b55237d393de7c47928f65 Mon Sep 17 00:00:00 2001
+From: Xiaodong Wang 
+Date: Wed, 26 Sep 2018 13:44:53 -0700
+Subject: [PATCH] Caffe 2 adoption
+
+Summary:
+Adapt Caffe 2 to platform007 (gcc 8):
+* gcc 8 + nvcc template symbol lookup (D9319742):
+context_.template CopySameDevice ==> this->context_.template 
CopySameDevice
+* New gcc 8 warning (error):
+  * -Werror=sizeof-pointer-div
+  * Unnecessary parenthesis
+
+Differential Revision: D10045844
+
+fbshipit-source-id: 0b0569401fac69f83b8c2be758eea7c8fa18a019
+---
+ aten/src/THC/generic/THCTensor.cpp | 2 +-
+ caffe2/operators/rnn/recurrent_op_cudnn.cc | 8 
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/aten/src/THC/generic/THCTensor.cpp 
b/aten/src/THC/generic/THCTensor.cpp
+index a7779047863..673870288e8 100644
+--- a/aten/src/THC/generic/THCTensor.cpp
 b/aten/src/THC/generic/THCTensor.cpp
+@@ -596,7 +596,7 @@ int THCTensor_(checkGPU)(THCState *state, unsigned int 
nTensors, ...)
+ {
+   int curDev = -1;
+   THCudaCheck(cudaGetDevice());
+-  va_list(args);
++  va_list args;
+   va_start(args, nTensors);
+   int valid = 1;
+   for (unsigned int i = 0; i < nTensors; i++) {
+diff --git a/caffe2/operators/rnn/recurrent_op_cudnn.cc 
b/caffe2/operators/rnn/recurrent_op_cudnn.cc
+index 4b349655843..fa37874bd3e 100644
+--- a/caffe2/operators/rnn/recurrent_op_cudnn.cc
 b/caffe2/operators/rnn/recurrent_op_cudnn.cc
+@@ -458,13 +458,13 @@ bool RecurrentParamAccessOp::RunOnDevice() {
+ if (mode == SET_PARAM) {
+   CAFFE_ENFORCE_EQ(
+   biasDims[0] * biasDims[1] * biasDims[2], Input(2).size());
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   biasDims[0] * biasDims[1] * biasDims[2],
+   Input(2).template data(),
+   static_cast(bias));
+ } else {
+   Output(0)->Resize(biasDims);
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   biasDims[0] * biasDims[1] * biasDims[2],
+   static_cast(bias),
+   Output(0)->template mutable_data());
+@@ -495,13 +495,13 @@ bool RecurrentParamAccessOp::RunOnDevice() {
+ CAFFE_ENFORCE_EQ(numDims, 3);
+ if (mode == SET_PARAM) {
+   CAFFE_ENFORCE_EQ(matDims[0] * matDims[1] * matDims[2], Input(2).size());
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   matDims[0] * matDims[1] * matDims[2],
+   Input(2).template data(),
+   static_cast(pmatrix));
+ } else {
+   Output(0)->Resize(matDims);
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   matDims[0] * matDims[1] * matDims[2],
+   static_cast(pmatrix),
+   Output(0)->template mutable_data());

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:20:12 UTC (rev 389686)
+++ PKGBUILD2018-10-04 22:28:42 UTC (rev 389687)
@@ -117,21 +117,21 @@
   msg2 "Building without cuda"
   export NO_CUDA=1
   export WITH_CUDNN=0
-  export USE_OPENCV=1
-  export BUILD_BINARY=1
+  # export USE_OPENCV=1
+  # export BUILD_BINARY=1
 
   cd "$srcdir/${_pkgname}-${pkgver}"
   python setup.py build
 
   msg2 "Building with cuda"
-  # export CC=gcc-7
-  # export CXX=g++-7
+  export CC=gcc-7
+  export CXX=g++-7
   export NO_CUDA=0
   export CUDAHOSTCXX=g++-7
   export CUDA_HOME=/opt/cuda
   export CUDNN_LIB_DIR=/opt/cuda/lib64
   export CUDNN_INCLUDE_DIR=/opt/cuda/include
-  export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
+  # export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
 
   cd "$srcdir/${_pkgname}-${pkgver}-cuda"
   python setup.py build


[arch-commits] Commit in python-pytorch/repos/community-x86_64 (5 files)

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 22:28:50
  Author: svenstaro
Revision: 389688

archrelease: copy trunk to community-x86_64

Added:
  python-pytorch/repos/community-x86_64/12116.patch
(from rev 389687, python-pytorch/trunk/12116.patch)
  python-pytorch/repos/community-x86_64/PKGBUILD
(from rev 389687, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-x86_64/noplt.patch
(from rev 389687, python-pytorch/trunk/noplt.patch)
Deleted:
  python-pytorch/repos/community-x86_64/PKGBUILD
  python-pytorch/repos/community-x86_64/noplt.patch

-+
 12116.patch |   70 +++
 PKGBUILD|  354 +-
 noplt.patch |   26 ++--
 3 files changed, 238 insertions(+), 212 deletions(-)

Copied: python-pytorch/repos/community-x86_64/12116.patch (from rev 389687, 
python-pytorch/trunk/12116.patch)
===
--- 12116.patch (rev 0)
+++ 12116.patch 2018-10-04 22:28:50 UTC (rev 389688)
@@ -0,0 +1,70 @@
+From cea0d3269daf34fa32b55237d393de7c47928f65 Mon Sep 17 00:00:00 2001
+From: Xiaodong Wang 
+Date: Wed, 26 Sep 2018 13:44:53 -0700
+Subject: [PATCH] Caffe 2 adoption
+
+Summary:
+Adapt Caffe 2 to platform007 (gcc 8):
+* gcc 8 + nvcc template symbol lookup (D9319742):
+context_.template CopySameDevice ==> this->context_.template 
CopySameDevice
+* New gcc 8 warning (error):
+  * -Werror=sizeof-pointer-div
+  * Unnecessary parenthesis
+
+Differential Revision: D10045844
+
+fbshipit-source-id: 0b0569401fac69f83b8c2be758eea7c8fa18a019
+---
+ aten/src/THC/generic/THCTensor.cpp | 2 +-
+ caffe2/operators/rnn/recurrent_op_cudnn.cc | 8 
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/aten/src/THC/generic/THCTensor.cpp 
b/aten/src/THC/generic/THCTensor.cpp
+index a7779047863..673870288e8 100644
+--- a/aten/src/THC/generic/THCTensor.cpp
 b/aten/src/THC/generic/THCTensor.cpp
+@@ -596,7 +596,7 @@ int THCTensor_(checkGPU)(THCState *state, unsigned int 
nTensors, ...)
+ {
+   int curDev = -1;
+   THCudaCheck(cudaGetDevice());
+-  va_list(args);
++  va_list args;
+   va_start(args, nTensors);
+   int valid = 1;
+   for (unsigned int i = 0; i < nTensors; i++) {
+diff --git a/caffe2/operators/rnn/recurrent_op_cudnn.cc 
b/caffe2/operators/rnn/recurrent_op_cudnn.cc
+index 4b349655843..fa37874bd3e 100644
+--- a/caffe2/operators/rnn/recurrent_op_cudnn.cc
 b/caffe2/operators/rnn/recurrent_op_cudnn.cc
+@@ -458,13 +458,13 @@ bool RecurrentParamAccessOp::RunOnDevice() {
+ if (mode == SET_PARAM) {
+   CAFFE_ENFORCE_EQ(
+   biasDims[0] * biasDims[1] * biasDims[2], Input(2).size());
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   biasDims[0] * biasDims[1] * biasDims[2],
+   Input(2).template data(),
+   static_cast(bias));
+ } else {
+   Output(0)->Resize(biasDims);
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   biasDims[0] * biasDims[1] * biasDims[2],
+   static_cast(bias),
+   Output(0)->template mutable_data());
+@@ -495,13 +495,13 @@ bool RecurrentParamAccessOp::RunOnDevice() {
+ CAFFE_ENFORCE_EQ(numDims, 3);
+ if (mode == SET_PARAM) {
+   CAFFE_ENFORCE_EQ(matDims[0] * matDims[1] * matDims[2], Input(2).size());
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   matDims[0] * matDims[1] * matDims[2],
+   Input(2).template data(),
+   static_cast(pmatrix));
+ } else {
+   Output(0)->Resize(matDims);
+-  context_.template CopySameDevice(
++  this->context_.template CopySameDevice(
+   matDims[0] * matDims[1] * matDims[2],
+   static_cast(pmatrix),
+   Output(0)->template mutable_data());

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-04 22:28:42 UTC (rev 389687)
+++ PKGBUILD2018-10-04 22:28:50 UTC (rev 389688)
@@ -1,199 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Stephen Zhang 
-
-pkgbase="python-pytorch"
-pkgname=("python-pytorch" "python2-pytorch" "python-pytorch-cuda" 
"python2-pytorch-cuda")
-_pkgname="pytorch"
-_commit=a24163a
-pkgver=0.4.1
-pkgrel=5
-pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
-arch=('x86_64')
-url="https://pytorch.org;
-license=('BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools'
- 'python-yaml' 'python2-yaml' 'python-numpy' 'python2-numpy'
- 'cmake' 'cuda' 'cudnn' 'git' 'python2-typing')
-source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#commit=$_commit;
-"git+https://github.com/catchorg/Catch2;
-"git+https://github.com/ARM-software/ComputeLibrary;
-"git+https://github.com/Maratyszcza/FP16;
-

[arch-commits] Commit in bumblebee/repos/community-x86_64 (25 files)

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 22:40:08
  Author: svenstaro
Revision: 389690

archrelease: copy trunk to community-x86_64

Added:
  
bumblebee/repos/community-x86_64/0001-bb_nvidia_modeset-detection_bug699_01.patch
(from rev 389689, 
bumblebee/trunk/0001-bb_nvidia_modeset-detection_bug699_01.patch)
  
bumblebee/repos/community-x86_64/0002-bb_nvidia_modeset-detection_bug699_02.patch
(from rev 389689, 
bumblebee/trunk/0002-bb_nvidia_modeset-detection_bug699_02.patch)
  bumblebee/repos/community-x86_64/0003-bb_nvidia_umv_detection_bug699.patch
(from rev 389689, bumblebee/trunk/0003-bb_nvidia_umv_detection_bug699.patch)
  bumblebee/repos/community-x86_64/0004-bb_nvidia_drm_detection_bug699_01.patch
(from rev 389689, 
bumblebee/trunk/0004-bb_nvidia_drm_detection_bug699_01.patch)
  bumblebee/repos/community-x86_64/0005-bb_nvidia_drm_detection_bug699_02.patch
(from rev 389689, 
bumblebee/trunk/0005-bb_nvidia_drm_detection_bug699_02.patch)
  bumblebee/repos/community-x86_64/0006-bb_hexadicimal_bug573.patch
(from rev 389689, bumblebee/trunk/0006-bb_hexadicimal_bug573.patch)
  bumblebee/repos/community-x86_64/0007-bb_mutebblogger.patch
(from rev 389689, bumblebee/trunk/0007-bb_mutebblogger.patch)
  bumblebee/repos/community-x86_64/0008-libglvnd.patch
(from rev 389689, bumblebee/trunk/0008-libglvnd.patch)
  bumblebee/repos/community-x86_64/PKGBUILD
(from rev 389689, bumblebee/trunk/PKGBUILD)
  bumblebee/repos/community-x86_64/bumblebee.conf
(from rev 389689, bumblebee/trunk/bumblebee.conf)
  bumblebee/repos/community-x86_64/bumblebee.install
(from rev 389689, bumblebee/trunk/bumblebee.install)
  bumblebee/repos/community-x86_64/bumblebee.sysusers
(from rev 389689, bumblebee/trunk/bumblebee.sysusers)
Deleted:
  
bumblebee/repos/community-x86_64/0001-bb_nvidia_modeset-detection_bug699_01.patch
  
bumblebee/repos/community-x86_64/0002-bb_nvidia_modeset-detection_bug699_02.patch
  bumblebee/repos/community-x86_64/0003-bb_nvidia_umv_detection_bug699.patch
  bumblebee/repos/community-x86_64/0004-bb_nvidia_drm_detection_bug699_01.patch
  bumblebee/repos/community-x86_64/0005-bb_nvidia_drm_detection_bug699_02.patch
  bumblebee/repos/community-x86_64/0006-bb_hexadicimal_bug573.patch
  bumblebee/repos/community-x86_64/0007-bb_mutebblogger.patch
  bumblebee/repos/community-x86_64/0008-libglvnd.patch
  bumblebee/repos/community-x86_64/PKGBUILD
  bumblebee/repos/community-x86_64/bumblebee.conf
  bumblebee/repos/community-x86_64/bumblebee.install
  bumblebee/repos/community-x86_64/bumblebee.sysusers
  bumblebee/repos/community-x86_64/nvidia-drm-outputclass.conf

--+
 0001-bb_nvidia_modeset-detection_bug699_01.patch |   48 ++--
 0002-bb_nvidia_modeset-detection_bug699_02.patch |  112 +-
 0003-bb_nvidia_umv_detection_bug699.patch|  152 +++---
 0004-bb_nvidia_drm_detection_bug699_01.patch |   88 
 0005-bb_nvidia_drm_detection_bug699_02.patch |  218 ++---
 0006-bb_hexadicimal_bug573.patch |   46 ++--
 0007-bb_mutebblogger.patch   |   30 +-
 0008-libglvnd.patch  |   52 ++---
 PKGBUILD |  177 -
 bumblebee.conf   |   12 -
 bumblebee.install|6 
 bumblebee.sysusers   |2 
 nvidia-drm-outputclass.conf  |   15 -
 13 files changed, 469 insertions(+), 489 deletions(-)

Deleted: 0001-bb_nvidia_modeset-detection_bug699_01.patch
===
--- 0001-bb_nvidia_modeset-detection_bug699_01.patch2018-10-04 22:39:49 UTC 
(rev 389689)
+++ 0001-bb_nvidia_modeset-detection_bug699_01.patch2018-10-04 22:40:08 UTC 
(rev 389690)
@@ -1,24 +0,0 @@
-From 5636b24fa86a005a5d2e30bd794516db13ccba56 Mon Sep 17 00:00:00 2001
-From: Abuzer Rafey 
-Date: Tue, 8 Dec 2015 07:00:32 -0500
-Subject: [PATCH] Dirty fix for issue #699
-

- src/module.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/module.c b/src/module.c
-index f7b99fa..6b6cb09 100644
 a/src/module.c
-+++ b/src/module.c
-@@ -96,7 +96,9 @@ int module_unload(char *driver) {
- int retries = 30;
- bb_log(LOG_INFO, "Unloading %s driver\n", driver);
- char *mod_argv[] = {
--  "rmmod",
-+  "modprobe",
-+  "-r",
-+  "nvidia_modeset",
-   driver,
-   NULL
- };

Copied: 
bumblebee/repos/community-x86_64/0001-bb_nvidia_modeset-detection_bug699_01.patch
 (from rev 389689, 
bumblebee/trunk/0001-bb_nvidia_modeset-detection_bug699_01.patch)
===
--- 0001-bb_nvidia_modeset-detection_bug699_01.patch
(rev 0)
+++ 0001-bb_nvidia_modeset-detection_bug699_01.patch2018-10-04 22:40:08 UTC 
(rev 389690)
@@ 

[arch-commits] Commit in bumblebee/trunk (PKGBUILD nvidia-drm-outputclass.conf)

2018-10-04 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, October 4, 2018 @ 22:39:49
  Author: svenstaro
Revision: 389689

upgpkg: bumblebee 3.2.1-20

Revert last change

Modified:
  bumblebee/trunk/PKGBUILD
Deleted:
  bumblebee/trunk/nvidia-drm-outputclass.conf

-+
 PKGBUILD|   11 +++
 nvidia-drm-outputclass.conf |   15 ---
 2 files changed, 3 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-04 22:28:50 UTC (rev 389688)
+++ PKGBUILD2018-10-04 22:39:49 UTC (rev 389689)
@@ -2,7 +2,7 @@
 
 pkgname=bumblebee
 pkgver=3.2.1
-pkgrel=19
+pkgrel=20
 pkgdesc="NVIDIA Optimus support for Linux through VirtualGL"
 arch=('x86_64')
 depends=('virtualgl' 'glib2' 'mesa-libgl')
@@ -30,8 +30,7 @@
 "0007-bb_mutebblogger.patch"
 "0008-libglvnd.patch"
 "bumblebee.conf"
-"bumblebee.sysusers"
-"nvidia-drm-outputclass.conf")
+"bumblebee.sysusers")
 sha256sums=('1018703b07e2f607a4641249d69478ce076ae5a1e9dd6cff5694d394fa7ee30e'
 'aff3528d17a77ff19b4e0a7a10682b8351456f11795f71ef62b315e774fb408a'
 '70ad9b3d8e0d70a504110651c6f5f3a1b1d3c4c44eeb0fd49a4463e99124a47b'
@@ -42,8 +41,7 @@
 'cbe3e1717bc80146b87d8f2ab1158ee9e094ea5bb2ca9a4a8c09c24b086a7792'
 'b260d64a53617807afe21560db0592d114d7775b182e13fb59349f0157c8dba4'
 '1c3d4f5d40245a23a5f1cb1f2f6bd4274ff3c5b3749f76a09255191328ae3193'
-'1bc209c21b4f6d1975ede4091829baf98d20b33100b9d21061393880bb391fd8'
-'089d6dc247c9091b320c418b0d91ae6adda65e170934d178cdd4e9bd0785b182')
+'1bc209c21b4f6d1975ede4091829baf98d20b33100b9d21061393880bb391fd8')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"
@@ -85,7 +83,4 @@
 sed -i "s/have/_have/" 
"${pkgdir}/usr/share/bash-completion/completions/optirun"
 
 install -Dm644 "$srcdir"/bumblebee.sysusers 
"$pkgdir"/usr/lib/sysusers.d/$pkgname.conf
-
-# Overwrite the OutputClass due to https://bugs.archlinux.org/task/60102
-install -D -m644 "${srcdir}/nvidia-drm-outputclass.conf" 
"${pkgdir}/usr/share/X11/xorg.conf.d/11-nvidia-drm-outputclass.conf"
 }

Deleted: nvidia-drm-outputclass.conf
===
--- nvidia-drm-outputclass.conf 2018-10-04 22:28:50 UTC (rev 389688)
+++ nvidia-drm-outputclass.conf 2018-10-04 22:39:49 UTC (rev 389689)
@@ -1,15 +0,0 @@
-Section "OutputClass"
-Identifier "intel"
-MatchDriver "i915"
-Driver "modesetting"
-EndSection
-
-Section "OutputClass"
-Identifier "nvidia"
-MatchDriver "nvidia-drm"
-Driver "nvidia"
-Option "AllowEmptyInitialConfiguration"
-Option "PrimaryGPU" "yes"
-ModulePath "/usr/lib/nvidia/xorg"
-ModulePath "/usr/lib/xorg/modules"
-EndSection


  1   2   3   >