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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:44:39
  Author: felixonmars
Revision: 499936

enable tests

Modified:
  haskell-system-filepath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:44:20 UTC (rev 499935)
+++ PKGBUILD2019-08-17 03:44:39 UTC (rev 499936)
@@ -14,11 +14,13 @@
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 
sha512sums=('d858b077516ecb76e27d032fd123aad154afea87fab93f148aa8a0007587c1fb04d87217cf0b51a80e9a81ab20357dcc5e345899e1c2b6513900da1e6768')
 
+export LC_ALL=en_US.UTF-8
+
 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 +29,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 tamarin-prover/repos (2 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:44:20
  Author: felixonmars
Revision: 499935

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 499933, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
499933, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-17 03:44:20 UTC (rev 499935)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=131
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://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=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+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/ftdetect/tamarin.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 hasktags/trunk (PKGBUILD)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:44:17
  Author: felixonmars
Revision: 499934

don't ignore test errors

Modified:
  hasktags/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:44:12 UTC (rev 499933)
+++ PKGBUILD2019-08-17 03:44:17 UTC (rev 499934)
@@ -35,7 +35,7 @@
 
 check() {
 cd $pkgname-$pkgver
-runhaskell Setup test || warning "Tests failed"
+runhaskell Setup test
 }
 
 package() {


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:44:12
  Author: felixonmars
Revision: 499933

upgpkg: tamarin-prover 1.4.1-131

rebuild with persistent 2.10.1

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:42:32 UTC (rev 499932)
+++ PKGBUILD2019-08-17 03:44:12 UTC (rev 499933)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=130
+pkgrel=131
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:42:22
  Author: felixonmars
Revision: 499931

upgpkg: stack 2.1.3-9

rebuild with persistent 2.10.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:41:06 UTC (rev 499930)
+++ PKGBUILD2019-08-17 03:42:22 UTC (rev 499931)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.1.3
-pkgrel=8
+pkgrel=9
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:42:32
  Author: felixonmars
Revision: 499932

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   83 
 stack.install |4 ++
 2 files changed, 87 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 499931, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-17 03:42:32 UTC (rev 499932)
@@ -0,0 +1,83 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.1.3
+pkgrel=9
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-colour'
+ '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-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hi-file-parser' 'haskell-hpack' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 
'haskell-http-download'
+ 'haskell-http-types' 'haskell-memory' 'haskell-microlens' 
'haskell-mintty'
+ 'haskell-mono-traversable' 'haskell-mustache' 
'haskell-neat-interpolation'
+ 'haskell-network-uri' 'haskell-open-browser' 
'haskell-optparse-applicative'
+ 'haskell-optparse-generic' 'haskell-optparse-simple' 'haskell-pantry' 
'haskell-path'
+ 'haskell-path-io' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-resource-pool' 
'haskell-resourcet'
+ 'haskell-retry' 'haskell-rio' 'haskell-rio-prettyprint' 
'haskell-split'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-terminal-size'
+ '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' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
https://github.com/commercialhaskell/stack/commit/62c24fa0552dc722260f1cee75325145e837ab6a.patch)
+sha512sums=('SKIP'
+
'99bb04cf6581a8d712413822f834856b036b37ab2ae41307e82a7064b12cdfa43c6ccc60adfa870057f9ba197e1ae4eda144a7088306630400c0798a2b60d9c6')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../62c24fa0552dc722260f1cee75325145e837ab6a.patch || :
+  hpack
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i '1i {-# LANGUAGE UndecidableInstances #-}' 
src/Stack/Storage/{User,Project}.hs
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  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
+  # 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 $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls 

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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:41:06
  Author: felixonmars
Revision: 499930

remove i686

Modified:
  xcb-imdkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:39:53 UTC (rev 499929)
+++ PKGBUILD2019-08-17 03:41:06 UTC (rev 499930)
@@ -7,7 +7,7 @@
 _commit=b82eddb3432b25f0db4aa7db4f68c6744ad895c1
 pkgrel=1
 pkgdesc="Input method development support for xcb"
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url="https://gitlab.com/fcitx/xcb-imdkit;
 license=('GPL')
 depends=('xcb-util' 'xcb-util-keysyms')


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:39:53
  Author: felixonmars
Revision: 499929

remove empty dirs

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:37:09 UTC (rev 499928)
+++ PKGBUILD2019-08-17 03:39:53 UTC (rev 499929)
@@ -48,4 +48,6 @@
   install -dm755 "$pkgdir"/usr/share/zsh/site-functions
   mv "$pkgdir"/usr/share/zsh/{vendor-completions,site-functions}/_git-annex
   rmdir "$pkgdir"/usr/share/zsh/vendor-completions
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
 }


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:37:09
  Author: felixonmars
Revision: 499928

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 499927, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-17 03:37:09 UTC (rev 499928)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.14.1
+pkgrel=118
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3eb50a27e96b8e4590719c41fe00dbf7add431a8bbc300f1d2614c09dbae5eaa2eb43ac96c597c441a2f43bf4096fe8c450bb3bdb601cc2a06fd840768b45786')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/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}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+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 "${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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:37:01
  Author: felixonmars
Revision: 499927

upgpkg: hledger-web 1.14.1-118

rebuild with persistent 2.10.1

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:35:22 UTC (rev 499926)
+++ PKGBUILD2019-08-17 03:37:01 UTC (rev 499927)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.14.1
-pkgrel=117
+pkgrel=118
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:35:22
  Author: felixonmars
Revision: 499926

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 499925, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-17 03:35:22 UTC (rev 499926)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190730
+pkgrel=10
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+
+  sed -e 's/ghc --make/ghc -dynamic --make/' \
+  -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  # FS#62775
+  install -dm755 "$pkgdir"/usr/share/zsh/site-functions
+  mv "$pkgdir"/usr/share/zsh/{vendor-completions,site-functions}/_git-annex
+  rmdir "$pkgdir"/usr/share/zsh/vendor-completions
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:35:14
  Author: felixonmars
Revision: 499925

upgpkg: git-annex 7.20190730-10

rebuild with persistent 2.10.1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:32:58 UTC (rev 499924)
+++ PKGBUILD2019-08-17 03:35:14 UTC (rev 499925)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190730
-pkgrel=9
+pkgrel=10
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")
@@ -34,18 +34,18 @@
 build() {
   cd git-annex
 
-  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
---docdir="/usr/share/doc/$pkgname" \
--ftorrentparser -fproduction -fpairing -fwebapp \
--fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime -f-networkbsd
-  runhaskell Setup build
+  sed -e 's/ghc --make/ghc -dynamic --make/' \
+  -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup
 }
 
 package() {
   cd git-annex
-  runhaskell Setup copy --destdir="$pkgdir"
-  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" install-desktop 
install-completions
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
 
-  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
-  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+  # FS#62775
+  install -dm755 "$pkgdir"/usr/share/zsh/site-functions
+  mv "$pkgdir"/usr/share/zsh/{vendor-completions,site-functions}/_git-annex
+  rmdir "$pkgdir"/usr/share/zsh/vendor-completions
 }


[arch-commits] Commit in (4 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:32:49
  Author: felixonmars
Revision: 499923

addpkg: haskell-broadcast-chan 0.2.0.2-1

Added:
  haskell-broadcast-chan/
  haskell-broadcast-chan/repos/
  haskell-broadcast-chan/trunk/
  haskell-broadcast-chan/trunk/PKGBUILD

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

Added: haskell-broadcast-chan/trunk/PKGBUILD
===
--- haskell-broadcast-chan/trunk/PKGBUILD   (rev 0)
+++ haskell-broadcast-chan/trunk/PKGBUILD   2019-08-17 03:32:49 UTC (rev 
499923)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=broadcast-chan
+pkgname=haskell-broadcast-chan
+pkgver=0.2.0.2
+pkgrel=1
+pkgdesc="Closable, fair, single-wakeup channel type that avoids 0 reader space 
leaks"
+url="https://github.com/merijn/broadcast-chan;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-unliftio-core')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('7e3aa3352c15a8f7f4197c4f171a6e185b0661b3499b1a47edb3b932425a54e270c00126472c0e29b5e35b463936cfb5bd167139bcd218f4f64448e140af3e95')
+
+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-broadcast-chan/repos (2 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:32:58
  Author: felixonmars
Revision: 499924

archrelease: copy trunk to community-x86_64

Added:
  haskell-broadcast-chan/repos/community-x86_64/
  haskell-broadcast-chan/repos/community-x86_64/PKGBUILD
(from rev 499923, haskell-broadcast-chan/trunk/PKGBUILD)

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

Copied: haskell-broadcast-chan/repos/community-x86_64/PKGBUILD (from rev 
499923, haskell-broadcast-chan/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-17 03:32:58 UTC (rev 499924)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=broadcast-chan
+pkgname=haskell-broadcast-chan
+pkgver=0.2.0.2
+pkgrel=1
+pkgdesc="Closable, fair, single-wakeup channel type that avoids 0 reader space 
leaks"
+url="https://github.com/merijn/broadcast-chan;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-unliftio-core')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('7e3aa3352c15a8f7f4197c4f171a6e185b0661b3499b1a47edb3b932425a54e270c00126472c0e29b5e35b463936cfb5bd167139bcd218f4f64448e140af3e95')
+
+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-dyre/repos (2 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:28:52
  Author: felixonmars
Revision: 499922

archrelease: copy trunk to community-x86_64

Added:
  haskell-dyre/repos/community-x86_64/
  haskell-dyre/repos/community-x86_64/PKGBUILD
(from rev 499921, haskell-dyre/trunk/PKGBUILD)

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

Copied: haskell-dyre/repos/community-x86_64/PKGBUILD (from rev 499921, 
haskell-dyre/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-17 03:28:52 UTC (rev 499922)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=dyre
+pkgname=haskell-dyre
+pkgver=0.8.12
+pkgrel=1
+pkgdesc="Dynamic reconfiguration in Haskell"
+url="https://github.com/willdonnelly/dyre;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc-paths' 'haskell-executable-path' 
'haskell-xdg-basedir'
+ 'haskell-io-storage')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('157f1d20dd7a0bbad46044722a4d0e291df09dede715417cf20b18391cb13b52fc25486f99d604d3c279a3f86fc3fc405466099e995190fcbe8aad3cbdb1220e')
+
+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 (4 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:28:13
  Author: felixonmars
Revision: 499921

addpkg: haskell-dyre 0.8.12-1

Added:
  haskell-dyre/
  haskell-dyre/repos/
  haskell-dyre/trunk/
  haskell-dyre/trunk/PKGBUILD

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

Added: haskell-dyre/trunk/PKGBUILD
===
--- haskell-dyre/trunk/PKGBUILD (rev 0)
+++ haskell-dyre/trunk/PKGBUILD 2019-08-17 03:28:13 UTC (rev 499921)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=dyre
+pkgname=haskell-dyre
+pkgver=0.8.12
+pkgrel=1
+pkgdesc="Dynamic reconfiguration in Haskell"
+url="https://github.com/willdonnelly/dyre;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc-paths' 'haskell-executable-path' 
'haskell-xdg-basedir'
+ 'haskell-io-storage')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('157f1d20dd7a0bbad46044722a4d0e291df09dede715417cf20b18391cb13b52fc25486f99d604d3c279a3f86fc3fc405466099e995190fcbe8aad3cbdb1220e')
+
+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-xdg-basedir/repos (2 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:22:36
  Author: felixonmars
Revision: 499920

archrelease: copy trunk to community-x86_64

Added:
  haskell-xdg-basedir/repos/community-x86_64/
  haskell-xdg-basedir/repos/community-x86_64/PKGBUILD
(from rev 499919, haskell-xdg-basedir/trunk/PKGBUILD)

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

Copied: haskell-xdg-basedir/repos/community-x86_64/PKGBUILD (from rev 499919, 
haskell-xdg-basedir/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-17 03:22:36 UTC (rev 499920)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=xdg-basedir
+pkgname=haskell-xdg-basedir
+pkgver=0.2.2
+pkgrel=1
+pkgdesc="A basic implementation of the XDG Base Directory specification"
+url="https://github.com/willdonnelly/xdg-basedir;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('4bd857ef8e0e21caff0e6e80ec9fe6f693e4f44b635e6d53c206905d8b08533d7de26d1bf58d7ef7ca3d818508b2d8d9490f6c301c95b9d37fa87e11d2f0346c')
+
+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 (4 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:22:27
  Author: felixonmars
Revision: 499919

addpkg: haskell-xdg-basedir 0.2.2-1

Added:
  haskell-xdg-basedir/
  haskell-xdg-basedir/repos/
  haskell-xdg-basedir/trunk/
  haskell-xdg-basedir/trunk/PKGBUILD

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

Added: haskell-xdg-basedir/trunk/PKGBUILD
===
--- haskell-xdg-basedir/trunk/PKGBUILD  (rev 0)
+++ haskell-xdg-basedir/trunk/PKGBUILD  2019-08-17 03:22:27 UTC (rev 499919)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=xdg-basedir
+pkgname=haskell-xdg-basedir
+pkgver=0.2.2
+pkgrel=1
+pkgdesc="A basic implementation of the XDG Base Directory specification"
+url="https://github.com/willdonnelly/xdg-basedir;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('4bd857ef8e0e21caff0e6e80ec9fe6f693e4f44b635e6d53c206905d8b08533d7de26d1bf58d7ef7ca3d818508b2d8d9490f6c301c95b9d37fa87e11d2f0346c')
+
+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-io-storage/trunk (PKGBUILD)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:21:37
  Author: felixonmars
Revision: 499918

fix license

Modified:
  haskell-io-storage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 03:19:47 UTC (rev 499917)
+++ PKGBUILD2019-08-17 03:21:37 UTC (rev 499918)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="A key-value store in the IO monad"
 url="https://github.com/willdonnelly/io-storage;
-license=('MIT')
+license=('BSD')
 arch=('x86_64')
 depends=('ghc-libs')
 makedepends=('ghc')


[arch-commits] Commit in (4 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:19:36
  Author: felixonmars
Revision: 499916

addpkg: haskell-io-storage 0.3-1

Added:
  haskell-io-storage/
  haskell-io-storage/repos/
  haskell-io-storage/trunk/
  haskell-io-storage/trunk/PKGBUILD

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

Added: haskell-io-storage/trunk/PKGBUILD
===
--- haskell-io-storage/trunk/PKGBUILD   (rev 0)
+++ haskell-io-storage/trunk/PKGBUILD   2019-08-17 03:19:36 UTC (rev 499916)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=io-storage
+pkgname=haskell-io-storage
+pkgver=0.3
+pkgrel=1
+pkgdesc="A key-value store in the IO monad"
+url="https://github.com/willdonnelly/io-storage;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8c03a4e7166e8f76f2c2cdc5f23320bfe8f620f463752bf530b6bc90ea6182f967190420ae3d00212101fbd0d3967d01141092f01b1f237fd7e01b7dc2cf1c11')
+
+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-io-storage/repos (2 files)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:19:47
  Author: felixonmars
Revision: 499917

archrelease: copy trunk to community-x86_64

Added:
  haskell-io-storage/repos/community-x86_64/
  haskell-io-storage/repos/community-x86_64/PKGBUILD
(from rev 499916, haskell-io-storage/trunk/PKGBUILD)

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

Copied: haskell-io-storage/repos/community-x86_64/PKGBUILD (from rev 499916, 
haskell-io-storage/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-17 03:19:47 UTC (rev 499917)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=io-storage
+pkgname=haskell-io-storage
+pkgver=0.3
+pkgrel=1
+pkgdesc="A key-value store in the IO monad"
+url="https://github.com/willdonnelly/io-storage;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8c03a4e7166e8f76f2c2cdc5f23320bfe8f620f463752bf530b6bc90ea6182f967190420ae3d00212101fbd0d3967d01141092f01b1f237fd7e01b7dc2cf1c11')
+
+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 nghttp2/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:03:30
  Author: felixonmars
Revision: 359915

archrelease: copy trunk to testing-x86_64

Added:
  nghttp2/repos/testing-x86_64/
  nghttp2/repos/testing-x86_64/PKGBUILD
(from rev 359914, nghttp2/trunk/PKGBUILD)

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

Copied: nghttp2/repos/testing-x86_64/PKGBUILD (from rev 359914, 
nghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-17 03:03:30 UTC (rev 359915)
@@ -0,0 +1,46 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.39.2
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc c-ares libnghttp2 
systemd-libs)
+options=(!emptydirs)
+source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha512sums=('d8c971543e3e87736dfafebca55e9ecd0644e304c9731edaccba34170205824476595861a439077289b438ad489dd6008dedf2c6b2c111920300329be1b1bf34')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  make -C lib DESTDIR="$pkgdir" uninstall
+
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:03:35
  Author: felixonmars
Revision: 499915

archrelease: copy trunk to community-testing-x86_64

Added:
  nodejs/repos/community-testing-x86_64/PKGBUILD
(from rev 499914, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-testing-x86_64/rebuild.list
(from rev 499914, nodejs/trunk/rebuild.list)
Deleted:
  nodejs/repos/community-testing-x86_64/PKGBUILD
  nodejs/repos/community-testing-x86_64/rebuild.list

--+
 PKGBUILD |  144 -
 rebuild.list |4 -
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 03:03:24 UTC (rev 499914)
+++ PKGBUILD2019-08-17 03:03:35 UTC (rev 499915)
@@ -1,72 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=12.8.0
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('d948b0151e6010d94d06ce726edc58405a823d212a3ba5a353b1e18bfa9a24cfcce4d0146fb0f29be4e71a374c1ea84acafdba50535ae1512ed93a8db8d468ea')
-
-prepare() {
-  cd node-$pkgver
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---experimental-http-parser \
---shared-cares \
---shared-nghttp2
-# --shared-v8
-# --shared-http-parser
-
-  make
-}
-
-check() {
-  cd node-$pkgver
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-testing-x86_64/PKGBUILD (from rev 499914, 
nodejs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 03:03:35 UTC (rev 499915)
@@ -0,0 +1,72 @@
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=12.8.1
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
+sha512sums=('17d8d33a5c4154d6d0c1ce09b933a6ac0986242335fb6c45a4c1ed4190aede9bc08dbcb537d8547c5f53c15958e323bb26e6eefd51b139835e6825b45d73efa4')
+
+prepare() {
+  cd node-$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-$pkgver
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--experimental-http-parser \
+--shared-cares \
+--shared-nghttp2
+# --shared-v8
+# --shared-http-parser
+
+  make
+}
+
+check() {
+  cd node-$pkgver
+  # Expected failure: https://github.com/nodejs/node/issues/11627
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 LICENSE \
+

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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:03:24
  Author: felixonmars
Revision: 499914

upgpkg: nodejs 12.8.1-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:56:38 UTC (rev 499913)
+++ PKGBUILD2019-08-17 03:03:24 UTC (rev 499914)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=12.8.0
+pkgver=12.8.1
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
 
source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('d948b0151e6010d94d06ce726edc58405a823d212a3ba5a353b1e18bfa9a24cfcce4d0146fb0f29be4e71a374c1ea84acafdba50535ae1512ed93a8db8d468ea')
+sha512sums=('17d8d33a5c4154d6d0c1ce09b933a6ac0986242335fb6c45a4c1ed4190aede9bc08dbcb537d8547c5f53c15958e323bb26e6eefd51b139835e6825b45d73efa4')
 
 prepare() {
   cd node-$pkgver


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 03:03:22
  Author: felixonmars
Revision: 359914

upgpkg: nghttp2 1.39.2-1

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:57:35 UTC (rev 359913)
+++ PKGBUILD2019-08-17 03:03:22 UTC (rev 359914)
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.39.1
+pkgver=1.39.2
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -15,7 +15,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha512sums=('36558ed03c59086086abbf144ec7c54c60de3fea00a9ea594feea7186a779781cbb66a08c9b34265892dea382b42b875f551e85331cfa0086e357f9b27b919fa')
+sha512sums=('d8c971543e3e87736dfafebca55e9ecd0644e304c9731edaccba34170205824476595861a439077289b438ad489dd6008dedf2c6b2c111920300329be1b1bf34')
 
 build() {
   cd nghttp2-$pkgver


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:57:35
  Author: felixonmars
Revision: 359913

archrelease: copy trunk to testing-x86_64

Added:
  libnghttp2/repos/testing-x86_64/
  libnghttp2/repos/testing-x86_64/PKGBUILD
(from rev 359912, libnghttp2/trunk/PKGBUILD)

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

Copied: libnghttp2/repos/testing-x86_64/PKGBUILD (from rev 359912, 
libnghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-17 01:57:35 UTC (rev 359913)
@@ -0,0 +1,38 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=libnghttp2
+pkgver=1.39.2
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(glibc)
+conflicts=('nghttp2<1.20.0-2')
+source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
+sha512sums=('d8c971543e3e87736dfafebca55e9ecd0644e304c9731edaccba34170205824476595861a439077289b438ad489dd6008dedf2c6b2c111920300329be1b1bf34')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--disable-examples \
+--disable-python-bindings \
+--enable-lib-only
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver/lib
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/libnghttp2/COPYING"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:57:27
  Author: felixonmars
Revision: 359912

upgpkg: libnghttp2 1.39.2-1

Modified:
  libnghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 23:21:32 UTC (rev 359911)
+++ PKGBUILD2019-08-17 01:57:27 UTC (rev 359912)
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=libnghttp2
-pkgver=1.39.1
+pkgver=1.39.2
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 conflicts=('nghttp2<1.20.0-2')
 
source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
-sha512sums=('36558ed03c59086086abbf144ec7c54c60de3fea00a9ea594feea7186a779781cbb66a08c9b34265892dea382b42b875f551e85331cfa0086e357f9b27b919fa')
+sha512sums=('d8c971543e3e87736dfafebca55e9ecd0644e304c9731edaccba34170205824476595861a439077289b438ad489dd6008dedf2c6b2c111920300329be1b1bf34')
 
 build() {
   cd nghttp2-$pkgver


[arch-commits] Commit in python-ruamel-yaml/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:56:38
  Author: felixonmars
Revision: 499913

archrelease: copy trunk to community-x86_64

Added:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD
(from rev 499912, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:56:29 UTC (rev 499912)
+++ PKGBUILD2019-08-17 01:56:38 UTC (rev 499913)
@@ -1,22 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.16.3
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('4b333b4216baf2c6adc120d7561464699ca25bf26b81917e67b5cfe5fbfa24c95e846b3a5a37287ba42a6e153fb042a627355688660786445acbbc68b5c19992')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-x86_64/PKGBUILD (from rev 499912, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:56:38 UTC (rev 499913)
@@ -0,0 +1,22 @@
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.16.4
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('50b411eb08a395ce910f0e04fdf3afa252632d8cd3716f8f7026c3b48bbc8f7dd545f51b87ba02092ce7a645c95e0da20972fafb5f1a51388721d59723aa5312')
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:56:29
  Author: felixonmars
Revision: 499912

upgpkg: python-ruamel-yaml 0.16.4-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:53:32 UTC (rev 499911)
+++ PKGBUILD2019-08-17 01:56:29 UTC (rev 499912)
@@ -3,7 +3,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.16.3
+pkgver=0.16.4
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('4b333b4216baf2c6adc120d7561464699ca25bf26b81917e67b5cfe5fbfa24c95e846b3a5a37287ba42a6e153fb042a627355688660786445acbbc68b5c19992')
+sha512sums=('50b411eb08a395ce910f0e04fdf3afa252632d8cd3716f8f7026c3b48bbc8f7dd545f51b87ba02092ce7a645c95e0da20972fafb5f1a51388721d59723aa5312')
 
 package() {
   depends=('python')


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:53:32
  Author: felixonmars
Revision: 499911

archrelease: copy trunk to community-x86_64

Added:
  arduino-builder/repos/community-x86_64/PKGBUILD
(from rev 499910, arduino-builder/trunk/PKGBUILD)
Deleted:
  arduino-builder/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:53:23 UTC (rev 499910)
+++ PKGBUILD2019-08-17 01:53:32 UTC (rev 499911)
@@ -1,68 +0,0 @@
-# Maintainer: NicoHood 
-# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
-
-pkgname=arduino-builder
-pkgver=1.4.4
-pkgrel=1
-pkgdesc="A command line tool for compiling Arduino sketches"
-arch=('x86_64')
-url="https://github.com/arduino/arduino-builder;
-license=('GPL')
-depends=('arduino-ctags')
-makedepends=('go-pie' 'git' 'unzip')
-optdepends=('arduino-avr-core: AVR core with upstream avr-gcc and avrdude')
-source=("${pkgname}-${pkgver}.tar.xz::https://github.com/arduino/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz;
-   
"${pkgname}-${pkgver}.tar.xz.asc::https://github.com/arduino/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz.asc;)
-sha512sums=('306bb7330036c188b02e3fa85da8b595f91426eea177a5bc59098c8ee497549af41ce92fc15ae6ac8aa5eb6293b9ab52104ea7263ef801eb75150d7efddc7038'
-'SKIP')
-validpgpkeys=('326567C1C6B288DF32CB061A95FA6F43E21188C4') # Arduino Packages 

-
-build() {
-   # TODO Symlink will fail in test 
https://github.com/golang/go/issues/15507
-   mkdir -p "${srcdir}/build/src/github.com/arduino/arduino-builder"
-   #ln -sf "${srcdir}/${pkgname}-${pkgver}" 
"${srcdir}/build/src/github.com/arduino/arduino-builder"
-   cp -a "${srcdir}/${pkgname}-${pkgver}/." 
"${srcdir}/build/src/github.com/arduino/arduino-builder"
-   export GOPATH="${srcdir}/build"
-   cd "${srcdir}/build"
-
-   go get github.com/go-errors/errors
-   go get github.com/stretchr/testify
-   go get github.com/jstemmer/go-junit-report
-   go get -u github.com/arduino/go-properties-map
-   go get -u github.com/arduino/go-timeutils
-   go get google.golang.org/grpc
-   go get github.com/golang/protobuf/proto
-   go get golang.org/x/net/context
-   go get github.com/fsnotify/fsnotify
-   go get github.com/schollz/closestmatch
-   #go get github.com/arduino/arduino-builder
-   go build github.com/arduino/arduino-builder/arduino-builder
-
-   # TODO Fix ctags test environment at build time
-   # https://github.com/arduino/arduino-builder/issues/202
-}
-
-check() {
-   # Test will download ~1GB of testfiles
-   echo "Running check() for the first time might take a while as it 
downloads ~1GB of testfiles. Skip with --nocheck"
-   export GOPATH="${srcdir}/build"
-   go test -timeout 60m github.com/arduino/arduino-builder/...
-}
-
-package() {
-   # Fix platform.txt for arch arduino-ctags
-   cd "${srcdir}/build/src/github.com/arduino/arduino-builder/hardware"
-   sed -i 's#^tools.ctags.path=.*#tools.ctags.path=/usr/bin#' platform.txt
-   sed -i 
's#^tools.ctags.cmd.path=.*#tools.ctags.cmd.path={path}/arduino-ctags#' 
platform.txt
-
-   cd "${srcdir}/build"
-
-   # Install main tool
-   install -Dm755 "arduino-builder" "${pkgdir}/usr/bin/arduino-builder"
-
-   # Install platform.txt files
-   install -Dm644 -t "${pkgdir}/usr/share/arduino/hardware/" 
"${srcdir}"/build/src/github.com/arduino/arduino-builder/hardware/*
-
-   # Add documentation
-   install -Dm644 -t "${pkgdir}/usr/share/doc/${pkgname}" 
"${srcdir}/${pkgname}-${pkgver}/README.md"
-}

Copied: arduino-builder/repos/community-x86_64/PKGBUILD (from rev 499910, 
arduino-builder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:53:32 UTC (rev 499911)
@@ -0,0 +1,68 @@
+# Maintainer: NicoHood 
+# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
+
+pkgname=arduino-builder
+pkgver=1.4.4
+pkgrel=2
+pkgdesc="A command line tool for compiling Arduino sketches"
+arch=('x86_64')
+url="https://github.com/arduino/arduino-builder;
+license=('GPL')
+depends=('arduino-ctags')
+makedepends=('go-pie' 'git' 'unzip')
+optdepends=('arduino-avr-core: AVR core with upstream avr-gcc and avrdude')
+source=("${pkgname}-${pkgver}.tar.xz::https://github.com/arduino/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz;
+   
"${pkgname}-${pkgver}.tar.xz.asc::https://github.com/arduino/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('306bb7330036c188b02e3fa85da8b595f91426eea177a5bc59098c8ee497549af41ce92fc15ae6ac8aa5eb6293b9ab52104ea7263ef801eb75150d7efddc7038'
+'SKIP')

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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:53:23
  Author: felixonmars
Revision: 499910

upgpkg: arduino-builder 1.4.4-2

golang 1.12.8 security rebuild

Modified:
  arduino-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:48:35 UTC (rev 499909)
+++ PKGBUILD2019-08-17 01:53:23 UTC (rev 499910)
@@ -3,7 +3,7 @@
 
 pkgname=arduino-builder
 pkgver=1.4.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A command line tool for compiling Arduino sketches"
 arch=('x86_64')
 url="https://github.com/arduino/arduino-builder;


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:48:35
  Author: felixonmars
Revision: 499909

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:48:26 UTC (rev 499908)
+++ PKGBUILD2019-08-17 01:48:35 UTC (rev 499909)
@@ -1,50 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=arduino-cli
-pkgver=0.4.0
-pkgrel=1
-arch=('x86_64')
-pkgdesc='Arduino command line interface'
-url='https://github.com/arduino/arduino-cli'
-license=('GPL3')
-groups=('arduino')
-#checkdepends=('unzip')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('a9266ba0e674ac6c7222aac5f54581b447ed6a88924b8c306dcee7769fa903ff32b0664d24037fb8a694598a3e34461d66853ca3ac97cf94a0ffb31c90a0')
-
-prepare(){
-  export GOPATH="$srcdir"/gopath
-
-  mkdir -p "$GOPATH"/src/github.com/arduino
-  ln -rTsf "$pkgname-$pkgver" "$GOPATH"/src/github.com/arduino/arduino-cli
-  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-
-  export GO111MODULE=on
-
-  go mod vendor
-  go mod download
-}
-
-build(){
-  export GOPATH="$srcdir"/gopath
-  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-
-  go build \
-   -gcflags "all=-trimpath=$GOPATH" \
-   -asmflags "all=-trimpath=$GOPATH" \
-   -ldflags "-extldflags $LDFLAGS" \
-   -v .
-}
-
-#check() {
-#  export GOPATH="$srcdir"/gopath
-#  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-#
-#  go test .
-#}
-
-package() {
-  install -Dm 755 $pkgname-$pkgver/$pkgname "$pkgdir"/usr/bin/$pkgname
-}
-

Copied: arduino-cli/repos/community-x86_64/PKGBUILD (from rev 499908, 
arduino-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:48:35 UTC (rev 499909)
@@ -0,0 +1,50 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=arduino-cli
+pkgver=0.4.0
+pkgrel=2
+arch=('x86_64')
+pkgdesc='Arduino command line interface'
+url='https://github.com/arduino/arduino-cli'
+license=('GPL3')
+groups=('arduino')
+#checkdepends=('unzip')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('a9266ba0e674ac6c7222aac5f54581b447ed6a88924b8c306dcee7769fa903ff32b0664d24037fb8a694598a3e34461d66853ca3ac97cf94a0ffb31c90a0')
+
+prepare(){
+  export GOPATH="$srcdir"/gopath
+
+  mkdir -p "$GOPATH"/src/github.com/arduino
+  ln -rTsf "$pkgname-$pkgver" "$GOPATH"/src/github.com/arduino/arduino-cli
+  cd "$GOPATH"/src/github.com/arduino/arduino-cli
+
+  export GO111MODULE=on
+
+  go mod vendor
+  go mod download
+}
+
+build(){
+  export GOPATH="$srcdir"/gopath
+  cd "$GOPATH"/src/github.com/arduino/arduino-cli
+
+  go build \
+   -gcflags "all=-trimpath=$GOPATH" \
+   -asmflags "all=-trimpath=$GOPATH" \
+   -ldflags "-extldflags $LDFLAGS" \
+   -v .
+}
+
+#check() {
+#  export GOPATH="$srcdir"/gopath
+#  cd "$GOPATH"/src/github.com/arduino/arduino-cli
+#
+#  go test .
+#}
+
+package() {
+  install -Dm 755 $pkgname-$pkgver/$pkgname "$pkgdir"/usr/bin/$pkgname
+}
+


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:48:26
  Author: felixonmars
Revision: 499908

upgpkg: arduino-cli 0.4.0-2

golang 1.12.8 security rebuild

Modified:
  arduino-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:47:09 UTC (rev 499907)
+++ PKGBUILD2019-08-17 01:48:26 UTC (rev 499908)
@@ -2,7 +2,7 @@
 
 pkgname=arduino-cli
 pkgver=0.4.0
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 pkgdesc='Arduino command line interface'
 url='https://github.com/arduino/arduino-cli'


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:47:09
  Author: felixonmars
Revision: 499907

archrelease: copy trunk to community-x86_64

Added:
  bettercap/repos/community-x86_64/PKGBUILD
(from rev 499906, bettercap/trunk/PKGBUILD)
Deleted:
  bettercap/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:46:59 UTC (rev 499906)
+++ PKGBUILD2019-08-17 01:47:09 UTC (rev 499907)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Christian Rebischke 
-
-pkgname=bettercap
-pkgver=2.24.1
-pkgrel=1
-pkgdesc='Swiss army knife for network attacks and monitoring'
-url='https://github.com/bettercap/bettercap'
-arch=('x86_64')
-license=('GPL3')
-depends=('libpcap' 'libnetfilter_queue' 'iproute2' 'glibc' 'libnfnetlink')
-makedepends=('go-pie' 'git' 'dep')
-optdepends=('bettercap-caplets: scripts (caplets) and proxy modules')
-options=('!emptydirs')
-source=(https://github.com/bettercap/bettercap/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('2ff7af5af6143c3c5e94e5925feca6281d5f561ad910c6ba20dc0e006826f587733fdfddbe84a4da1933c8832cd9b297efd6b825b8dd6e590050a717ca859730')
-
-prepare() {
-  export GOPATH="${srcdir}/go"
-  mkdir -p go/src/github.com/bettercap
-  ln -rTsf ${pkgname}-${pkgver} go/src/github.com/bettercap/bettercap
-  sed -E "s|(go build)|\\1 -ldflags '-linkmode external -extldflags 
\"${LDFLAGS}\"'|" -i ${pkgname}-${pkgver}/Makefile
-}
-
-build() {
-  cd go/src/github.com/bettercap/bettercap
-  export GOPATH="${srcdir}/go"
-  dep ensure
-  make build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 bettercap -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: bettercap/repos/community-x86_64/PKGBUILD (from rev 499906, 
bettercap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:47:09 UTC (rev 499907)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Christian Rebischke 
+
+pkgname=bettercap
+pkgver=2.24.1
+pkgrel=2
+pkgdesc='Swiss army knife for network attacks and monitoring'
+url='https://github.com/bettercap/bettercap'
+arch=('x86_64')
+license=('GPL3')
+depends=('libpcap' 'libnetfilter_queue' 'iproute2' 'glibc' 'libnfnetlink')
+makedepends=('go-pie' 'git' 'dep')
+optdepends=('bettercap-caplets: scripts (caplets) and proxy modules')
+options=('!emptydirs')
+source=(https://github.com/bettercap/bettercap/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('2ff7af5af6143c3c5e94e5925feca6281d5f561ad910c6ba20dc0e006826f587733fdfddbe84a4da1933c8832cd9b297efd6b825b8dd6e590050a717ca859730')
+
+prepare() {
+  export GOPATH="${srcdir}/go"
+  mkdir -p go/src/github.com/bettercap
+  ln -rTsf ${pkgname}-${pkgver} go/src/github.com/bettercap/bettercap
+  sed -E "s|(go build)|\\1 -ldflags '-linkmode external -extldflags 
\"${LDFLAGS}\"'|" -i ${pkgname}-${pkgver}/Makefile
+}
+
+build() {
+  cd go/src/github.com/bettercap/bettercap
+  export GOPATH="${srcdir}/go"
+  dep ensure
+  make build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 bettercap -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:46:59
  Author: felixonmars
Revision: 499906

upgpkg: bettercap 2.24.1-2

golang 1.12.8 security rebuild

Modified:
  bettercap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:46:10 UTC (rev 499905)
+++ PKGBUILD2019-08-17 01:46:59 UTC (rev 499906)
@@ -3,7 +3,7 @@
 
 pkgname=bettercap
 pkgver=2.24.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Swiss army knife for network attacks and monitoring'
 url='https://github.com/bettercap/bettercap'
 arch=('x86_64')


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:46:10
  Author: felixonmars
Revision: 499905

archrelease: copy trunk to community-x86_64

Added:
  buildah/repos/community-x86_64/PKGBUILD
(from rev 499904, buildah/trunk/PKGBUILD)
Deleted:
  buildah/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:46:00 UTC (rev 499904)
+++ PKGBUILD2019-08-17 01:46:10 UTC (rev 499905)
@@ -1,37 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=buildah
-pkgver=1.9.2
-pkgrel=1
-pkgdesc="A tool which facilitates building OCI images"
-arch=(x86_64)
-url="https://github.com/containers/buildah;
-license=(Apache)
-depends=(ostree runc skopeo)
-makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
- bzip2 go-md2man runc skopeo)
-_commit=d2a3249ab6efd4508e2fe4229871f4b1bb5cf810  # tags/v1.9.2^0
-source=(git://github.com/containers/buildah.git#commit=$_commit)
-md5sums=('SKIP')
-
-pkgver() {
-  cd buildah
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-prepare() {
-  mkdir -p src/github.com/containers
-  cp -r $pkgname src/github.com/containers
-}
-
-build() {
-  export GOPATH="${srcdir}"
-  cd src/github.com/containers/buildah
-  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub ostree seccomp"
-}
-
-package() {
-  cd src/github.com/containers/buildah
-  make DESTDIR="$pkgdir" PREFIX=usr install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: buildah/repos/community-x86_64/PKGBUILD (from rev 499904, 
buildah/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:46:10 UTC (rev 499905)
@@ -0,0 +1,37 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=buildah
+pkgver=1.9.2
+pkgrel=2
+pkgdesc="A tool which facilitates building OCI images"
+arch=(x86_64)
+url="https://github.com/containers/buildah;
+license=(Apache)
+depends=(ostree runc skopeo)
+makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
+ bzip2 go-md2man runc skopeo)
+_commit=d2a3249ab6efd4508e2fe4229871f4b1bb5cf810  # tags/v1.9.2^0
+source=(git://github.com/containers/buildah.git#commit=$_commit)
+md5sums=('SKIP')
+
+pkgver() {
+  cd buildah
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+prepare() {
+  mkdir -p src/github.com/containers
+  cp -r $pkgname src/github.com/containers
+}
+
+build() {
+  export GOPATH="${srcdir}"
+  cd src/github.com/containers/buildah
+  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub ostree seccomp"
+}
+
+package() {
+  cd src/github.com/containers/buildah
+  make DESTDIR="$pkgdir" PREFIX=usr install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:46:00
  Author: felixonmars
Revision: 499904

upgpkg: buildah 1.9.2-2

golang 1.12.8 security rebuild

Modified:
  buildah/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:44:46 UTC (rev 499903)
+++ PKGBUILD2019-08-17 01:46:00 UTC (rev 499904)
@@ -2,7 +2,7 @@
 
 pkgname=buildah
 pkgver=1.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool which facilitates building OCI images"
 arch=(x86_64)
 url="https://github.com/containers/buildah;


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:44:46
  Author: felixonmars
Revision: 499903

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 499902, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:44:18 UTC (rev 499902)
+++ PKGBUILD2019-08-17 01:44:46 UTC (rev 499903)
@@ -1,37 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="Multi-machine dotfile management system"
-arch=('x86_64')
-url='https://github.com/twpayne/chezmoi'
-license=('MIT')
-makedepends=('go-pie' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha256sums=('ab315e88cc1740468adac51d0e8e57b6b9553b0668e178b44ef32074b791c8e8')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  go build \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/completions/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/vendor-completions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 499902, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:44:46 UTC (rev 499903)
@@ -0,0 +1,37 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.6.1
+pkgrel=3
+pkgdesc="Multi-machine dotfile management system"
+arch=('x86_64')
+url='https://github.com/twpayne/chezmoi'
+license=('MIT')
+makedepends=('go-pie' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha256sums=('ab315e88cc1740468adac51d0e8e57b6b9553b0668e178b44ef32074b791c8e8')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Saturday, August 17, 2019 @ 01:44:18
  Author: felixonmars
Revision: 499902

upgpkg: chezmoi 1.6.1-3

golang 1.12.8 security rebuild

Modified:
  chezmoi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 01:17:27 UTC (rev 499901)
+++ PKGBUILD2019-08-17 01:44:18 UTC (rev 499902)
@@ -4,7 +4,7 @@
 
 pkgname=chezmoi
 pkgver=1.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Multi-machine dotfile management system"
 arch=('x86_64')
 url='https://github.com/twpayne/chezmoi'


[arch-commits] Commit in python-aws-sam-translator/repos/community-any (2 files)

2019-08-16 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, August 17, 2019 @ 01:17:27
  Author: yan12125
Revision: 499901

archrelease: copy trunk to community-any

Added:
  python-aws-sam-translator/repos/community-any/PKGBUILD
(from rev 499900, python-aws-sam-translator/trunk/PKGBUILD)
Deleted:
  python-aws-sam-translator/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:16:54 UTC (rev 499900)
+++ PKGBUILD2019-08-17 01:17:27 UTC (rev 499901)
@@ -1,29 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aws-sam-translator
-pkgver=1.13.2
-pkgrel=1
-pkgdesc='AWS Serverless Application Model (AWS SAM) prescribes rules for 
expressing Serverless applications on AWS'
-arch=(any)
-url='https://github.com/awslabs/serverless-application-model'
-license=(Apache)
-depends=(python python-boto3 python-jsonschema python-six)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytest-cov python-yaml python-mock 
python-parameterized python-cfn-lint)
-source=("https://github.com/awslabs/serverless-application-model/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('c97d2ad86df16152176afa0a14558879cf090932ce18b111716766e1870a52c9')
-
-build() {
-  cd serverless-application-model-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd serverless-application-model-$pkgver
-  pytest -v tests
-}
-
-package() {
-  cd serverless-application-model-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aws-sam-translator/repos/community-any/PKGBUILD (from rev 
499900, python-aws-sam-translator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:17:27 UTC (rev 499901)
@@ -0,0 +1,29 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aws-sam-translator
+pkgver=1.13.2
+pkgrel=1
+pkgdesc='AWS Serverless Application Model (AWS SAM) prescribes rules for 
expressing Serverless applications on AWS'
+arch=(any)
+url='https://github.com/awslabs/serverless-application-model'
+license=(Apache)
+depends=(python python-boto3 python-jsonschema python-six)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-pytest-cov python-yaml python-mock 
python-parameterized python-cfn-lint)
+source=("https://github.com/awslabs/serverless-application-model/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('c97d2ad86df16152176afa0a14558879cf090932ce18b111716766e1870a52c9')
+
+build() {
+  cd serverless-application-model-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd serverless-application-model-$pkgver
+  pytest -v tests
+}
+
+package() {
+  cd serverless-application-model-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in python-aws-sam-translator/repos/community-any (2 files)

2019-08-16 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, August 17, 2019 @ 01:16:54
  Author: yan12125
Revision: 499900

archrelease: copy trunk to community-any

Added:
  python-aws-sam-translator/repos/community-any/PKGBUILD
(from rev 499899, python-aws-sam-translator/trunk/PKGBUILD)
Deleted:
  python-aws-sam-translator/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:16:33 UTC (rev 499899)
+++ PKGBUILD2019-08-17 01:16:54 UTC (rev 499900)
@@ -1,29 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aws-sam-translator
-pkgver=1.13.2
-pkgrel=1
-pkgdesc='AWS Serverless Application Model (AWS SAM) prescribes rules for 
expressing Serverless applications on AWS'
-arch=(any)
-url='https://github.com/awslabs/serverless-application-model'
-license=(Apache)
-depends=(python python-boto3 python-jsonschema python-six)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytest-cov python-yaml python-mock 
python-parameterized python-cfn-lint)
-source=("https://github.com/awslabs/serverless-application-model/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('c97d2ad86df16152176afa0a14558879cf090932ce18b111716766e1870a52c9')
-
-build() {
-  cd serverless-application-model-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd serverless-application-model-$pkgver
-  pytest -v tests
-}
-
-package() {
-  cd serverless-application-model-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aws-sam-translator/repos/community-any/PKGBUILD (from rev 
499899, python-aws-sam-translator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:16:54 UTC (rev 499900)
@@ -0,0 +1,29 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aws-sam-translator
+pkgver=1.13.2
+pkgrel=1
+pkgdesc='AWS Serverless Application Model (AWS SAM) prescribes rules for 
expressing Serverless applications on AWS'
+arch=(any)
+url='https://github.com/awslabs/serverless-application-model'
+license=(Apache)
+depends=(python python-boto3 python-jsonschema python-six)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-pytest-cov python-yaml python-mock 
python-parameterized python-cfn-lint)
+source=("https://github.com/awslabs/serverless-application-model/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('c97d2ad86df16152176afa0a14558879cf090932ce18b111716766e1870a52c9')
+
+build() {
+  cd serverless-application-model-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd serverless-application-model-$pkgver
+  pytest -v tests
+}
+
+package() {
+  cd serverless-application-model-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in python-aws-sam-translator/trunk (PKGBUILD)

2019-08-16 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, August 17, 2019 @ 01:16:11
  Author: yan12125
Revision: 499898

upgpkg: python-aws-sam-translator 1.13.2-1

Modified:
  python-aws-sam-translator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 00:15:51 UTC (rev 499897)
+++ PKGBUILD2019-08-17 01:16:11 UTC (rev 499898)
@@ -1,7 +1,7 @@
 # Maintainer: Chih-Hsuan Yen 
 
 pkgname=python-aws-sam-translator
-pkgver=1.13.1
+pkgver=1.13.2
 pkgrel=1
 pkgdesc='AWS Serverless Application Model (AWS SAM) prescribes rules for 
expressing Serverless applications on AWS'
 arch=(any)
@@ -11,7 +11,7 @@
 makedepends=(python-setuptools)
 checkdepends=(python-pytest python-pytest-cov python-yaml python-mock 
python-parameterized python-cfn-lint)
 
source=("https://github.com/awslabs/serverless-application-model/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('f6ba4e4fb588d786727fcc825ebe29553ba3b50814e7e093223e4dfba2ed1eb9')
+sha256sums=('c97d2ad86df16152176afa0a14558879cf090932ce18b111716766e1870a52c9')
 
 build() {
   cd serverless-application-model-$pkgver


[arch-commits] Commit in python-aws-sam-translator/repos/community-any (2 files)

2019-08-16 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, August 17, 2019 @ 01:16:33
  Author: yan12125
Revision: 499899

archrelease: copy trunk to community-any

Added:
  python-aws-sam-translator/repos/community-any/PKGBUILD
(from rev 499898, python-aws-sam-translator/trunk/PKGBUILD)
Deleted:
  python-aws-sam-translator/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 01:16:11 UTC (rev 499898)
+++ PKGBUILD2019-08-17 01:16:33 UTC (rev 499899)
@@ -1,29 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aws-sam-translator
-pkgver=1.13.1
-pkgrel=1
-pkgdesc='AWS Serverless Application Model (AWS SAM) prescribes rules for 
expressing Serverless applications on AWS'
-arch=(any)
-url='https://github.com/awslabs/serverless-application-model'
-license=(Apache)
-depends=(python python-boto3 python-jsonschema python-six)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytest-cov python-yaml python-mock 
python-parameterized python-cfn-lint)
-source=("https://github.com/awslabs/serverless-application-model/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('f6ba4e4fb588d786727fcc825ebe29553ba3b50814e7e093223e4dfba2ed1eb9')
-
-build() {
-  cd serverless-application-model-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd serverless-application-model-$pkgver
-  pytest -v tests
-}
-
-package() {
-  cd serverless-application-model-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aws-sam-translator/repos/community-any/PKGBUILD (from rev 
499898, python-aws-sam-translator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 01:16:33 UTC (rev 499899)
@@ -0,0 +1,29 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aws-sam-translator
+pkgver=1.13.2
+pkgrel=1
+pkgdesc='AWS Serverless Application Model (AWS SAM) prescribes rules for 
expressing Serverless applications on AWS'
+arch=(any)
+url='https://github.com/awslabs/serverless-application-model'
+license=(Apache)
+depends=(python python-boto3 python-jsonschema python-six)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-pytest-cov python-yaml python-mock 
python-parameterized python-cfn-lint)
+source=("https://github.com/awslabs/serverless-application-model/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('c97d2ad86df16152176afa0a14558879cf090932ce18b111716766e1870a52c9')
+
+build() {
+  cd serverless-application-model-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd serverless-application-model-$pkgver
+  pytest -v tests
+}
+
+package() {
+  cd serverless-application-model-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2019-08-16 Thread Kyle Keen via arch-commits
Date: Saturday, August 17, 2019 @ 00:15:51
  Author: kkeen
Revision: 499897

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio/repos/community-staging-x86_64/
  gnuradio/repos/community-staging-x86_64/21-fcd.rules
(from rev 499896, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-staging-x86_64/PKGBUILD
(from rev 499896, gnuradio/trunk/PKGBUILD)

--+
 21-fcd.rules |9 
 PKGBUILD |  103 +
 2 files changed, 112 insertions(+)

Copied: gnuradio/repos/community-staging-x86_64/21-fcd.rules (from rev 499896, 
gnuradio/trunk/21-fcd.rules)
===
--- community-staging-x86_64/21-fcd.rules   (rev 0)
+++ community-staging-x86_64/21-fcd.rules   2019-08-17 00:15:51 UTC (rev 
499897)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio/repos/community-staging-x86_64/PKGBUILD (from rev 499896, 
gnuradio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-17 00:15:51 UTC (rev 499897)
@@ -0,0 +1,103 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+# Contributor: Jonatan Sastre 
+pkgbase=gnuradio
+pkgname=(gnuradio gnuradio-companion)
+pkgver=3.8.0.0
+pkgrel=1
+pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
+arch=('x86_64')
+url="https://gnuradio.org;
+license=('GPL')
+depends=('fftw' 'python-numpy' 'gsl' 'blas' 'boost-libs>=1.53'
+'libusbx' 'portaudio' 'libuhd' 'zeromq' 'libvolk' 'log4cpp' 'python-yaml'
+'gmp' 'gsm' 'codec2' 'python-mako' 'python-click-plugins')
+makedepends=('boost' 'cmake' 'python-lxml' 'glu' 'swig' 'python-gobject'
+'qwt' 'python-pyqt5' 'python-cairo')
+
+# todo
+# split the gui components?
+# build doxygen docs?
+# gr-video-sdl ?
+# icons
+# add thrift?
+
+# zeroc-ice: gr-ctrlport
+# doxygen: C++ autogenerated documentation
+# python-sphinx: Python autogenerated documentation
+
+# secret release directory
+#source=("http://s3-dist.gnuradio.org/gnuradio-$pkgver.tar.gz;
+# neglected official release directory
+#source=("https://gnuradio.org/releases/$pkgbase/$pkgbase-$pkgver.tar.gz;
+source=("https://github.com/gnuradio/gnuradio/releases/download/v$pkgver/gnuradio-$pkgver.tar.gz;
+
"https://github.com/gnuradio/gnuradio/releases/download/v$pkgver/gnuradio-$pkgver.tar.gz.asc;
+"21-fcd.rules")
+validpgpkeys=('B90DDFAC56989BF62262EB812987C77CBB8ED9B2'  # GNU Radio Project
+  'D74F9F146E7F755783583158B343B2BA293E5174') # Marcus Müller
+md5sums=('85e1ed4b18c46227731d83f8c3fbe45a'
+ 'SKIP'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  sed -i -e "s|GR_PKG_LIBEXEC_DIR|GR_RUNTIME_DIR|" 
grc/scripts/freedesktop/CMakeLists.txt
+  #sed -i -e "s|/qwt$|/qwt5|" -e "s| qwt | qwt5 |" cmake/Modules/FindQwt.cmake
+  sed -i -e "s| sphinx-build$| sphinx-build2|" cmake/Modules/FindSphinx.cmake
+}
+
+build() {
+  export PYTHON=python3
+  cd "$srcdir/$pkgbase-$pkgver"
+  mkdir -p build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*m.so) \
+-DGR_PYTHON_DIR=$(echo /usr/lib/python3.*/site-packages/) \
+-DENABLE_INTERNAL_VOLK=OFF \
+-DENABLE_GRC=ON \
+-DENABLE_GR_QTGUI=ON \
+-DQWT_LIBRARIES=/usr/lib/libqwt.so \
+-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgbase-$pkgver/build"
+  export PYTHON=python3
+  #make test
+}
+
+package_gnuradio() {
+  optdepends=('boost: gr_modtool'
+  'swig: gr_modtool'
+  'cmake: gr_modtool'
+  'pkgconfig: libuhd')
+  cd "$srcdir"
+  install -Dm644 21-fcd.rules "$pkgdir/usr/lib/udev/rules.d/21-fcd.rules"
+  cd "$srcdir/$pkgbase-$pkgver/grc/scripts/freedesktop"
+  install -Dm644 gnuradio-grc.desktop 
"$pkgdir/usr/share/applications/gnuradio-grc.desktop"
+  cd "$srcdir/$pkgbase-$pkgver/build"
+  make DESTDIR="$pkgdir" install
+}
+
+package_gnuradio-companion() {
+  pkgdesc="GUI frontend for gnuradio and SDR."
+  depends=('gnuradio' 'qwt' 'python-lxml'
+   'python-opengl' 'python-cairo' 'python-pyqt5')
+  # Yup, nothing in the package except dependencies,
+  # because more than five optdeps is too many for most people.
+}
+
+# 

[arch-commits] Commit in gnuradio/trunk (PKGBUILD gnuradio-qt5.patch)

2019-08-16 Thread Kyle Keen via arch-commits
Date: Saturday, August 17, 2019 @ 00:15:37
  Author: kkeen
Revision: 499896

upgpkg: gnuradio 3.8.0.0-1

Modified:
  gnuradio/trunk/PKGBUILD
Deleted:
  gnuradio/trunk/gnuradio-qt5.patch

+
 PKGBUILD   |   62 
 gnuradio-qt5.patch |10723 ---
 2 files changed, 24 insertions(+), 10761 deletions(-)

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


[arch-commits] Commit in intel-opencl-clang/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-08-16 Thread Daniel Bermond via arch-commits
Date: Saturday, August 17, 2019 @ 00:07:50
  Author: dbermond
Revision: 499895

archrelease: copy trunk to community-x86_64

Added:
  intel-opencl-clang/repos/community-x86_64/PKGBUILD
(from rev 499894, intel-opencl-clang/trunk/PKGBUILD)
Deleted:
  intel-opencl-clang/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-17 00:07:24 UTC (rev 499894)
+++ PKGBUILD2019-08-17 00:07:50 UTC (rev 499895)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-_srcname=opencl-clang
-pkgname=intel-${_srcname}
-pkgver=8.0.1
-pkgrel=1
-pkgdesc="A wrapper library around clang that can compile OpenCL C kernels to 
SPIR-V modules"
-arch=(x86_64)
-url="https://github.com/intel/opencl-clang/;
-license=(custom)
-depends=(clang llvm-libs)
-makedepends=(cmake llvm spirv-llvm-translator git)
-source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('f24880407214c0d726829392cfe30a54f8259700d17e9c3d5e7bfa6f237e1153')
-
-prepare() {
-mkdir -p build
-}
-
-build() {
-cd build
-cmake ../${_srcname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLLVMSPIRV_INCLUDED_IN_LLVM=OFF \
--DSPIRV_TRANSLATOR_DIR=/usr \
--DLLVM_NO_DEAD_STRIP=ON \
--Wno-dev
-make
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-install -Dm644 ../${_srcname}-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-opencl-clang/repos/community-x86_64/PKGBUILD (from rev 499894, 
intel-opencl-clang/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-17 00:07:50 UTC (rev 499895)
@@ -0,0 +1,45 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+_srcname=opencl-clang
+pkgname=intel-${_srcname}
+pkgver=8.0.1
+pkgrel=2
+pkgdesc="A wrapper library around clang that can compile OpenCL C kernels to 
SPIR-V modules"
+arch=(x86_64)
+url="https://github.com/intel/opencl-clang/;
+license=(custom)
+depends=(clang llvm-libs)
+makedepends=(cmake llvm spirv-llvm-translator git)
+source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz"
+
"${pkgname}-0001-update-revision-of-spirv-llvm-translator.patch"::'https://github.com/intel/opencl-clang/commit/a6e69b30a6a2c925254784be808ae3171ecd75ea.patch'
+
"${pkgname}-0002-align-with-modified-llvm-writespirv-api.patch"::'https://github.com/intel/opencl-clang/commit/94af090661d7c953c516c97a25ed053c744a0737.patch')
+sha256sums=('f24880407214c0d726829392cfe30a54f8259700d17e9c3d5e7bfa6f237e1153'
+'2f8f6b0fdc10e83670704b98638fc2117863d277486add942cc07484c4274de5'
+'1c8dd6951df94ab4e73a07b27e158b24d8f81142fa2e33720e7a2a8a13322af8')
+
+prepare() {
+mkdir -p build
+
+# fixes for spirv-llvm-translator 8.0.1.2
+cd ${_srcname}-${pkgver}
+patch -Np1 -i 
"${srcdir}/${pkgname}-0001-update-revision-of-spirv-llvm-translator.patch"
+patch -Np1 -i 
"${srcdir}/${pkgname}-0002-align-with-modified-llvm-writespirv-api.patch"
+}
+
+build() {
+cd build
+cmake ../${_srcname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVMSPIRV_INCLUDED_IN_LLVM=OFF \
+-DSPIRV_TRANSLATOR_DIR=/usr \
+-DLLVM_NO_DEAD_STRIP=ON \
+-Wno-dev
+make
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+install -Dm644 ../${_srcname}-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in intel-opencl-clang/trunk (PKGBUILD)

2019-08-16 Thread Daniel Bermond via arch-commits
Date: Saturday, August 17, 2019 @ 00:07:24
  Author: dbermond
Revision: 499894

upgpkg: intel-opencl-clang 8.0.1-2

Rebuild/update for spirv-llvm-translator 8.0.1.2

Modified:
  intel-opencl-clang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-17 00:05:10 UTC (rev 499893)
+++ PKGBUILD2019-08-17 00:07:24 UTC (rev 499894)
@@ -4,7 +4,7 @@
 _srcname=opencl-clang
 pkgname=intel-${_srcname}
 pkgver=8.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A wrapper library around clang that can compile OpenCL C kernels to 
SPIR-V modules"
 arch=(x86_64)
 url="https://github.com/intel/opencl-clang/;
@@ -11,11 +11,20 @@
 license=(custom)
 depends=(clang llvm-libs)
 makedepends=(cmake llvm spirv-llvm-translator git)
-source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('f24880407214c0d726829392cfe30a54f8259700d17e9c3d5e7bfa6f237e1153')
+source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz"
+
"${pkgname}-0001-update-revision-of-spirv-llvm-translator.patch"::'https://github.com/intel/opencl-clang/commit/a6e69b30a6a2c925254784be808ae3171ecd75ea.patch'
+
"${pkgname}-0002-align-with-modified-llvm-writespirv-api.patch"::'https://github.com/intel/opencl-clang/commit/94af090661d7c953c516c97a25ed053c744a0737.patch')
+sha256sums=('f24880407214c0d726829392cfe30a54f8259700d17e9c3d5e7bfa6f237e1153'
+'2f8f6b0fdc10e83670704b98638fc2117863d277486add942cc07484c4274de5'
+'1c8dd6951df94ab4e73a07b27e158b24d8f81142fa2e33720e7a2a8a13322af8')
 
 prepare() {
 mkdir -p build
+
+# fixes for spirv-llvm-translator 8.0.1.2
+cd ${_srcname}-${pkgver}
+patch -Np1 -i 
"${srcdir}/${pkgname}-0001-update-revision-of-spirv-llvm-translator.patch"
+patch -Np1 -i 
"${srcdir}/${pkgname}-0002-align-with-modified-llvm-writespirv-api.patch"
 }
 
 build() {


[arch-commits] Commit in spirv-llvm-translator/repos/community-x86_64 (3 files)

2019-08-16 Thread Daniel Bermond via arch-commits
Date: Saturday, August 17, 2019 @ 00:05:10
  Author: dbermond
Revision: 499893

archrelease: copy trunk to community-x86_64

Added:
  spirv-llvm-translator/repos/community-x86_64/PKGBUILD
(from rev 499892, spirv-llvm-translator/trunk/PKGBUILD)
Deleted:
  
spirv-llvm-translator/repos/community-x86_64/0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch
  spirv-llvm-translator/repos/community-x86_64/PKGBUILD

-+
 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch | 1116 
--
 PKGBUILD|   78 
 2 files changed, 41 insertions(+), 1153 deletions(-)

Deleted: 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch
===
--- 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch 
2019-08-17 00:04:46 UTC (rev 499892)
+++ 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch 
2019-08-17 00:05:10 UTC (rev 499893)
@@ -1,1116 +0,0 @@
-From 9ce0fe02fd6cda5fb29fbb0d5037a1798a810b8a Mon Sep 17 00:00:00 2001
-From: Alexey Sotkin 
-Date: Thu, 21 Feb 2019 17:14:36 +0300
-Subject: [PATCH 1/3] Update LowerOpenCL pass to handle new blocks
- represntation in LLVM IR
-

- lib/SPIRV/SPIRVLowerOCLBlocks.cpp | 413 --
- test/global_block.ll  |  71 ++---
- test/literal-struct.ll|  31 ++-
- test/transcoding/block_w_struct_return.ll |  47 ++--
- test/transcoding/enqueue_kernel.ll| 237 ++---
- 5 files changed, 317 insertions(+), 482 deletions(-)
-
-diff --git a/lib/SPIRV/SPIRVLowerOCLBlocks.cpp 
b/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
-index 50e1838..b42a4ec 100644
 a/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
-+++ b/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
-@@ -1,303 +1,110 @@
--//===- SPIRVLowerOCLBlocks.cpp - OCL Utilities 
===//
--//
--// The LLVM/SPIRV Translator
--//
--// This file is distributed under the University of Illinois Open Source
--// License. See LICENSE.TXT for details.
--//
--// Copyright (c) 2018 Intel Corporation. All rights reserved.
--//
--// Permission is hereby granted, free of charge, to any person obtaining a
--// copy of this software and associated documentation files (the "Software"),
--// to deal with the Software without restriction, including without limitation
--// the rights to use, copy, modify, merge, publish, distribute, sublicense,
--// and/or sell copies of the Software, and to permit persons to whom the
--// Software is furnished to do so, subject to the following conditions:
--//
--// Redistributions of source code must retain the above copyright notice,
--// this list of conditions and the following disclaimers.
--// Redistributions in binary form must reproduce the above copyright notice,
--// this list of conditions and the following disclaimers in the documentation
--// and/or other materials provided with the distribution.
--// Neither the names of Intel Corporation, nor the names of its
--// contributors may be used to endorse or promote products derived from this
--// Software without specific prior written permission.
--// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
--// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
--// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
--// CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
--// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM,
--// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH
--// THE SOFTWARE.
--//
--//===--===//
--//
--// SPIR-V specification doesn't allow function pointers, so SPIR-V translator
--// is designed to fail if a value with function type (except calls) is 
occured.
--// Currently there is only two cases, when function pointers are generating in
--// LLVM IR in OpenCL - block calls and device side enqueue built-in calls.
--//
--// In both cases values with function type used as intermediate representation
--// for block literal structure.
--//
--// This pass is designed to find such cases and simplify them to avoid any
--// function pointer types occurrences in LLVM IR in 4 steps.
--//
--// 1. Find all function pointer allocas, like
--//  %block = alloca void () *
--//
--//Then find a single store to that alloca:
--//  %blockLit = alloca <{ i32, i32, ...}>, align 4
--//  %0 = bitcast <{ i32, i32, ... }>* %blockLit to void ()*
--//> store void ()* %0, void ()** %block, align 4
--//
--//And replace the alloca users by new instructions which used stored value
--//%blockLit itself instead of function pointer alloca %block.
--//
--// 2. Find consecutive casts from block literal type to 

[arch-commits] Commit in spirv-llvm-translator/trunk (2 files)

2019-08-16 Thread Daniel Bermond via arch-commits
Date: Saturday, August 17, 2019 @ 00:04:46
  Author: dbermond
Revision: 499892

upgpkg: spirv-llvm-translator 8.0.1.2-1

Updated to version 8.0.1.2

Modified:
  spirv-llvm-translator/trunk/PKGBUILD
Deleted:
  
spirv-llvm-translator/trunk/0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch

-+
 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch | 1116 
--
 PKGBUILD|   14 
 2 files changed, 9 insertions(+), 1121 deletions(-)

Deleted: 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch
===
--- 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch 
2019-08-16 23:33:02 UTC (rev 499891)
+++ 0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch 
2019-08-17 00:04:46 UTC (rev 499892)
@@ -1,1116 +0,0 @@
-From 9ce0fe02fd6cda5fb29fbb0d5037a1798a810b8a Mon Sep 17 00:00:00 2001
-From: Alexey Sotkin 
-Date: Thu, 21 Feb 2019 17:14:36 +0300
-Subject: [PATCH 1/3] Update LowerOpenCL pass to handle new blocks
- represntation in LLVM IR
-

- lib/SPIRV/SPIRVLowerOCLBlocks.cpp | 413 --
- test/global_block.ll  |  71 ++---
- test/literal-struct.ll|  31 ++-
- test/transcoding/block_w_struct_return.ll |  47 ++--
- test/transcoding/enqueue_kernel.ll| 237 ++---
- 5 files changed, 317 insertions(+), 482 deletions(-)
-
-diff --git a/lib/SPIRV/SPIRVLowerOCLBlocks.cpp 
b/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
-index 50e1838..b42a4ec 100644
 a/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
-+++ b/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
-@@ -1,303 +1,110 @@
--//===- SPIRVLowerOCLBlocks.cpp - OCL Utilities 
===//
--//
--// The LLVM/SPIRV Translator
--//
--// This file is distributed under the University of Illinois Open Source
--// License. See LICENSE.TXT for details.
--//
--// Copyright (c) 2018 Intel Corporation. All rights reserved.
--//
--// Permission is hereby granted, free of charge, to any person obtaining a
--// copy of this software and associated documentation files (the "Software"),
--// to deal with the Software without restriction, including without limitation
--// the rights to use, copy, modify, merge, publish, distribute, sublicense,
--// and/or sell copies of the Software, and to permit persons to whom the
--// Software is furnished to do so, subject to the following conditions:
--//
--// Redistributions of source code must retain the above copyright notice,
--// this list of conditions and the following disclaimers.
--// Redistributions in binary form must reproduce the above copyright notice,
--// this list of conditions and the following disclaimers in the documentation
--// and/or other materials provided with the distribution.
--// Neither the names of Intel Corporation, nor the names of its
--// contributors may be used to endorse or promote products derived from this
--// Software without specific prior written permission.
--// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
--// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
--// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
--// CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
--// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM,
--// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH
--// THE SOFTWARE.
--//
--//===--===//
--//
--// SPIR-V specification doesn't allow function pointers, so SPIR-V translator
--// is designed to fail if a value with function type (except calls) is 
occured.
--// Currently there is only two cases, when function pointers are generating in
--// LLVM IR in OpenCL - block calls and device side enqueue built-in calls.
--//
--// In both cases values with function type used as intermediate representation
--// for block literal structure.
--//
--// This pass is designed to find such cases and simplify them to avoid any
--// function pointer types occurrences in LLVM IR in 4 steps.
--//
--// 1. Find all function pointer allocas, like
--//  %block = alloca void () *
--//
--//Then find a single store to that alloca:
--//  %blockLit = alloca <{ i32, i32, ...}>, align 4
--//  %0 = bitcast <{ i32, i32, ... }>* %blockLit to void ()*
--//> store void ()* %0, void ()** %block, align 4
--//
--//And replace the alloca users by new instructions which used stored value
--//%blockLit itself instead of function pointer alloca %block.
--//
--// 2. Find consecutive casts from block literal type to i8 addrspace(4)*
--//used function pointers as an intermediate type:
--//  %0 = bitcast <{ i32, i32 }> %block to 

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

2019-08-16 Thread Lukas Fleischer via arch-commits
Date: Friday, August 16, 2019 @ 23:32:52
  Author: lfleischer
Revision: 499890

upgpkg: deadbeef 1.8.2-1

Upstream update.

Modified:
  deadbeef/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 23:26:06 UTC (rev 499889)
+++ PKGBUILD2019-08-16 23:32:52 UTC (rev 499890)
@@ -2,8 +2,8 @@
 # Contributor: Alexey Yakovenko 
 
 pkgname=deadbeef
-pkgver=0.7.2
-pkgrel=5
+pkgver=1.8.2
+pkgrel=1
 pkgdesc='A GTK+ audio player for GNU/Linux.'
 arch=('x86_64')
 url='http://deadbeef.sourceforge.net'
@@ -32,18 +32,22 @@
 'zlib: for Audio Overload plugin'
 'libzip: for vfs_zip plugin'
 'ffmpeg: for ffmpeg plugin')
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('f8f5353e7c201fce316f8b082ab408bb')
+source=("https://github.com/DeaDBeeF-Player/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('e854a26b8d9e7eb8f8db8333d213655d')
 
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   
+   ./autogen.sh 
+   ./configure --prefix=/usr
+}
 
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+build () {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make
 }
 
-package () {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make prefix="${pkgdir}/usr" install
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="$pkgdir" install
 }


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

2019-08-16 Thread Lukas Fleischer via arch-commits
Date: Friday, August 16, 2019 @ 23:33:02
  Author: lfleischer
Revision: 499891

archrelease: copy trunk to community-x86_64

Added:
  deadbeef/repos/community-x86_64/PKGBUILD
(from rev 499890, deadbeef/trunk/PKGBUILD)
Deleted:
  deadbeef/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 23:32:52 UTC (rev 499890)
+++ PKGBUILD2019-08-16 23:33:02 UTC (rev 499891)
@@ -1,49 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Alexey Yakovenko 
-
-pkgname=deadbeef
-pkgver=0.7.2
-pkgrel=5
-pkgdesc='A GTK+ audio player for GNU/Linux.'
-arch=('x86_64')
-url='http://deadbeef.sourceforge.net'
-license=('GPL2')
-depends=('alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils' 'jansson')
-makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'imlib2' 'wavpack' 
'libsndfile' 'libcdio' 'libcddb'
- 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 
'libzip' 'libsamplerate'
- 'yasm' 'ffmpeg' 'gtk2' 'gtk3')
-optdepends=('gtk2: for the GTK2 interface'
-'gtk3: for the GTK3 interface'
-'libsamplerate: for Resampler plugin'
-'libvorbis: for Ogg Vorbis playback'
-'libmad: for MP1/MP2/MP3 playback'
-'mpg123: for MP1/MP2/MP3 playback'
-'flac: for FLAC playback'
-'curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support'
-'imlib2: for artwork plugin'
-'wavpack: for WavPack playback'
-'libsndfile: for Wave playback'
-'libcdio: audio cd plugin'
-'libcddb: audio cd plugin'
-'faad2: for AAC/MP4 support'
-'dbus: for OSD notifications support'
-'pulseaudio: for PulseAudio output plugin'
-'libx11: for global hotkeys plugin'
-'zlib: for Audio Overload plugin'
-'libzip: for vfs_zip plugin'
-'ffmpeg: for ffmpeg plugin')
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('f8f5353e7c201fce316f8b082ab408bb')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package () {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make prefix="${pkgdir}/usr" install
-}

Copied: deadbeef/repos/community-x86_64/PKGBUILD (from rev 499890, 
deadbeef/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 23:33:02 UTC (rev 499891)
@@ -0,0 +1,53 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Alexey Yakovenko 
+
+pkgname=deadbeef
+pkgver=1.8.2
+pkgrel=1
+pkgdesc='A GTK+ audio player for GNU/Linux.'
+arch=('x86_64')
+url='http://deadbeef.sourceforge.net'
+license=('GPL2')
+depends=('alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils' 'jansson')
+makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'imlib2' 'wavpack' 
'libsndfile' 'libcdio' 'libcddb'
+ 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 
'libzip' 'libsamplerate'
+ 'yasm' 'ffmpeg' 'gtk2' 'gtk3')
+optdepends=('gtk2: for the GTK2 interface'
+'gtk3: for the GTK3 interface'
+'libsamplerate: for Resampler plugin'
+'libvorbis: for Ogg Vorbis playback'
+'libmad: for MP1/MP2/MP3 playback'
+'mpg123: for MP1/MP2/MP3 playback'
+'flac: for FLAC playback'
+'curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support'
+'imlib2: for artwork plugin'
+'wavpack: for WavPack playback'
+'libsndfile: for Wave playback'
+'libcdio: audio cd plugin'
+'libcddb: audio cd plugin'
+'faad2: for AAC/MP4 support'
+'dbus: for OSD notifications support'
+'pulseaudio: for PulseAudio output plugin'
+'libx11: for global hotkeys plugin'
+'zlib: for Audio Overload plugin'
+'libzip: for vfs_zip plugin'
+'ffmpeg: for ffmpeg plugin')
+source=("https://github.com/DeaDBeeF-Player/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('e854a26b8d9e7eb8f8db8333d213655d')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   
+   ./autogen.sh 
+   ./configure --prefix=/usr
+}
+
+build () {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="$pkgdir" install
+}


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

2019-08-16 Thread Daniel M. Capella via arch-commits
Date: Friday, August 16, 2019 @ 23:26:06
  Author: polyzen
Revision: 499889

archrelease: copy trunk to community-x86_64

Added:
  toastify/repos/community-x86_64/PKGBUILD
(from rev 499888, toastify/trunk/PKGBUILD)
Deleted:
  toastify/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 23:25:44 UTC (rev 499888)
+++ PKGBUILD2019-08-16 23:26:06 UTC (rev 499889)
@@ -1,26 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=toastify
-pkgver=0.3.4
-pkgrel=2
-pkgdesc='Commandline tool that shows desktop notifications using notify-rust'
-arch=('x86_64')
-url=https://github.com/hoodie/toastify
-license=('Apache' 'MIT')
-depends=('dbus')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::https://crates.io/api/v1/crates/$pkgname/$pkgver/download;)
-sha512sums=('f75e24b6199e27e7c6225dbf71fff5d322200cbc3c426d71104267e10f865b992af1c1fd18917dc187f2285926763551e4c6941c1021290e2d5ee234420616b4')
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --release
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: toastify/repos/community-x86_64/PKGBUILD (from rev 499888, 
toastify/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 23:26:06 UTC (rev 499889)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=toastify
+pkgver=0.4.0
+pkgrel=1
+pkgdesc='Commandline tool that shows desktop notifications using notify-rust'
+arch=('x86_64')
+url=https://github.com/hoodie/toastify
+license=('Apache' 'MIT')
+depends=('dbus')
+makedepends=('rust')
+source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+sha512sums=('ea1bd87e059c945ec69734685f3c91aa573e47665627647279dbf373f1f9db163d1803afab988fffe7ff7df6b32a6d1cf9873080516b8d87895844bd97800cc0')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-16 Thread Daniel M. Capella via arch-commits
Date: Friday, August 16, 2019 @ 23:25:44
  Author: polyzen
Revision: 499888

upgpkg: toastify 0.4.0-1

Modified:
  toastify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 18:28:02 UTC (rev 499887)
+++ PKGBUILD2019-08-16 23:25:44 UTC (rev 499888)
@@ -1,8 +1,8 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=toastify
-pkgver=0.3.4
-pkgrel=2
+pkgver=0.4.0
+pkgrel=1
 pkgdesc='Commandline tool that shows desktop notifications using notify-rust'
 arch=('x86_64')
 url=https://github.com/hoodie/toastify
@@ -10,7 +10,7 @@
 depends=('dbus')
 makedepends=('rust')
 source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-sha512sums=('637ad3dd87ae9c71c6f0c1e8801823486e30c7d30bfcfbc8079e894549cfef46f8d89516fbb699a1ad72832e79c71b643a080e53b0ae39fa20185561b9675b6a')
+sha512sums=('ea1bd87e059c945ec69734685f3c91aa573e47665627647279dbf373f1f9db163d1803afab988fffe7ff7df6b32a6d1cf9873080516b8d87895844bd97800cc0')
 
 build() {
   cd $pkgname-$pkgver


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

2019-08-16 Thread Gaëtan Bisson via arch-commits
Date: Friday, August 16, 2019 @ 23:21:32
  Author: bisson
Revision: 359911

archrelease: copy trunk to extra-x86_64

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

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

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

Copied: graphicsmagick/repos/extra-x86_64/PKGBUILD (from rev 359910, 
graphicsmagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 23:21:32 UTC (rev 359911)
@@ -0,0 +1,65 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Gaetan Bisson 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Anton Leontiev 
+
+pkgname=graphicsmagick
+pkgver=1.3.33
+pkgrel=1
+pkgdesc='Image processing system'
+url='http://www.graphicsmagick.org/'
+arch=('x86_64')
+license=('MIT')
+optdepends=('jasper: jp2 module'
+'libpng: png module'
+'libwmf: wmf module'
+'libxml2: msl, svg, url modules'
+'libtiff: ps2, ps3, tiff modules'
+'ghostscript: pdf, ps modules')
+makedepends=('perl' 'jasper' 'libpng' 'libwmf' 'libxml2' 'libtiff' 'libwebp')
+depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
+sha256sums=('130cb330a633580b5124eba5c125bbcbc484298423a97b9bed37ccd50d6dc778')
+
+options=('!emptydirs' 'libtool')
+
+prepare() {
+   cd "${srcdir}/GraphicsMagick-${pkgver}"
+   sed -e "s:freetype_config='':freetype_config='/usr/bin/pkg-config 
freetype2':g" -i configure
+}
+
+build() {
+   cd "${srcdir}/GraphicsMagick-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --enable-shared \
+   --with-modules \
+   --with-perl \
+   --with-gs-font-dir=/usr/share/fonts/Type1 \
+   --with-quantum-depth=16 \
+   --with-threads
+   make
+}
+
+package() {
+   cd "${srcdir}/GraphicsMagick-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   # Install MIT license
+   install -Dm644 "Copyright.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/Copyright.txt"
+
+   # Install 

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

2019-08-16 Thread Gaëtan Bisson via arch-commits
Date: Friday, August 16, 2019 @ 23:21:14
  Author: bisson
Revision: 359910

upstream update

Modified:
  graphicsmagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 13:51:42 UTC (rev 359909)
+++ PKGBUILD2019-08-16 23:21:14 UTC (rev 359910)
@@ -4,7 +4,7 @@
 # Contributor: Anton Leontiev 
 
 pkgname=graphicsmagick
-pkgver=1.3.32
+pkgver=1.3.33
 pkgrel=1
 pkgdesc='Image processing system'
 url='http://www.graphicsmagick.org/'
@@ -19,7 +19,7 @@
 makedepends=('perl' 'jasper' 'libpng' 'libwmf' 'libxml2' 'libtiff' 'libwebp')
 depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz')
 
source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
-sha256sums=('b842a5a0d6c84fd6c5f161b5cd8e02bbd210b0c0b6728dd762b7c53062ba94e1')
+sha256sums=('130cb330a633580b5124eba5c125bbcbc484298423a97b9bed37ccd50d6dc778')
 
 options=('!emptydirs' 'libtool')
 


[arch-commits] Commit in debootstrap/trunk (PKGBUILD arch-detect.patch)

2019-08-16 Thread Eli Schwartz via arch-commits
Date: Friday, August 16, 2019 @ 18:28:02
  Author: eschwartz
Revision: 499887

update arch-detection patch to make use of pacman-conf

pacman 5.1 is a thing, now

Modified:
  debootstrap/trunk/PKGBUILD
  debootstrap/trunk/arch-detect.patch

---+
 PKGBUILD  |2 +-
 arch-detect.patch |   31 +--
 2 files changed, 22 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 15:43:24 UTC (rev 499886)
+++ PKGBUILD2019-08-16 18:28:02 UTC (rev 499887)
@@ -14,7 +14,7 @@
 'debian-archive-keyring: check release signatures for Debian'
 'ubuntu-keyring: check release signatures for Ubuntu')
 
sha512sums=('36310ae320abce915fa39204a92a90bcbf8ebee864a550097fef2266df64c510304cc220d56bd4a092fa3b3f43864931170f8b25ca7ae585e0018d7a44f3c1df'
-
'56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97')
+
'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5')
 
 prepare() {
   cd debootstrap-$pkgver

Modified: arch-detect.patch
===
--- arch-detect.patch   2019-08-16 15:43:24 UTC (rev 499886)
+++ arch-detect.patch   2019-08-16 18:28:02 UTC (rev 499887)
@@ -1,21 +1,32 @@
+From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Fri, 16 Aug 2019 14:20:19 -0400
+Subject: [PATCH] add pacman capability to debootstrap architecture detection
+
+---
+ debootstrap | 9 +
+ 1 file changed, 9 insertions(+)
+
 diff --git a/debootstrap b/debootstrap
-index fcdb20f..184900d 100755
+index 29c0443..f9d49a9 100755
 --- a/debootstrap
 +++ b/debootstrap
-@@ -427,6 +427,16 @@ elif in_path udpkg && \
+@@ -506,6 +506,15 @@ elif in_path udpkg && \
HOST_ARCH=$(/usr/bin/udpkg --print-architecture)
  elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then
HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch")
-+elif in_path pacman; then
-+  # pacman 5.1 will have `pacman-conf Architecture`
-+  CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')"
-+  case "$CARCH" in
-+  "i686")   HOST_ARCH="i386" ;;
-+  "x86_64") HOST_ARCH="amd64" ;;
-+  "armv7h") HOST_ARCH="armhf" ;;
-+  "aarch64") HOST_ARCH="arm64" ;;
++elif in_path pacman-conf; then
++  CARCH=$(pacman-conf Architecture)
++  case $CARCH in
++  i686)HOST_ARCH=i386 ;;
++  x86_64)  HOST_ARCH=amd64 ;;
++  armv7h)  HOST_ARCH=armhf ;;
++  aarch64) HOST_ARCH=arm64 ;;
 +  *) echo "Unknown architecture: $CARCH" && exit 1
 +  esac
  fi
  HOST_OS="$HOST_ARCH"
  # basic host OS guessing for non-Debian systems
+-- 
+2.22.1
+


[arch-commits] Commit in python-click-plugins/repos (2 files)

2019-08-16 Thread Kyle Keen via arch-commits
Date: Friday, August 16, 2019 @ 15:43:24
  Author: kkeen
Revision: 499886

archrelease: copy trunk to community-any

Added:
  python-click-plugins/repos/community-any/
  python-click-plugins/repos/community-any/PKGBUILD
(from rev 499885, python-click-plugins/trunk/PKGBUILD)

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

Copied: python-click-plugins/repos/community-any/PKGBUILD (from rev 499885, 
python-click-plugins/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-08-16 15:43:24 UTC (rev 499886)
@@ -0,0 +1,50 @@
+# Maintainer: Kyle Keen 
+# Contributor: Matthew McGinn 
+# Contributor: Carl George < arch at cgtx dot us >
+
+_name="click-plugins"
+pkgname=("python-click-plugins" "python2-click-plugins")
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="An extension module for click to enable registering CLI commands via 
setuptools entry-points."
+arch=("any")
+url="https://github.com/click-contrib/click-plugins;
+license=("BSD")
+depends=("python-click")
+makedepends=("python-setuptools" "python2-setuptools")
+checkdepends=("python-pytest" "python2-pytest" "python-click" "python2-click")
+source=("https://pypi.python.org/packages/source/${_name:0:1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b')
+
+prepare() {
+cp -a "$srcdir/$_name-$pkgver" "$srcdir/$_name-$pkgver-python2"
+}
+
+build() {
+cd "$srcdir/$_name-$pkgver"
+python setup.py build
+cd "$srcdir/$_name-$pkgver-python2"
+python2 setup.py build
+}
+
+check() {
+export LC_ALL="en_US.UTF-8"
+cd "$srcdir/$_name-$pkgver"
+py.test tests
+cd "$srcdir/$_name-$pkgver-python2"
+py.test2 tests
+}
+
+package_python-click-plugins() {
+depends=("python-click")
+cd "$srcdir/$_name-$pkgver"
+python setup.py install --skip-build --root="$pkgdir" --optimize=1
+install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-click-plugins() {
+depends=("python2-click")
+cd "$srcdir/$_name-$pkgver-python2"
+python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in (4 files)

2019-08-16 Thread Kyle Keen via arch-commits
Date: Friday, August 16, 2019 @ 15:42:50
  Author: kkeen
Revision: 499885

pkginit: moved from AUR

Added:
  python-click-plugins/
  python-click-plugins/repos/
  python-click-plugins/trunk/
  python-click-plugins/trunk/PKGBUILD

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

Added: python-click-plugins/trunk/PKGBUILD
===
--- python-click-plugins/trunk/PKGBUILD (rev 0)
+++ python-click-plugins/trunk/PKGBUILD 2019-08-16 15:42:50 UTC (rev 499885)
@@ -0,0 +1,50 @@
+# Maintainer: Kyle Keen 
+# Contributor: Matthew McGinn 
+# Contributor: Carl George < arch at cgtx dot us >
+
+_name="click-plugins"
+pkgname=("python-click-plugins" "python2-click-plugins")
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="An extension module for click to enable registering CLI commands via 
setuptools entry-points."
+arch=("any")
+url="https://github.com/click-contrib/click-plugins;
+license=("BSD")
+depends=("python-click")
+makedepends=("python-setuptools" "python2-setuptools")
+checkdepends=("python-pytest" "python2-pytest" "python-click" "python2-click")
+source=("https://pypi.python.org/packages/source/${_name:0:1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b')
+
+prepare() {
+cp -a "$srcdir/$_name-$pkgver" "$srcdir/$_name-$pkgver-python2"
+}
+
+build() {
+cd "$srcdir/$_name-$pkgver"
+python setup.py build
+cd "$srcdir/$_name-$pkgver-python2"
+python2 setup.py build
+}
+
+check() {
+export LC_ALL="en_US.UTF-8"
+cd "$srcdir/$_name-$pkgver"
+py.test tests
+cd "$srcdir/$_name-$pkgver-python2"
+py.test2 tests
+}
+
+package_python-click-plugins() {
+depends=("python-click")
+cd "$srcdir/$_name-$pkgver"
+python setup.py install --skip-build --root="$pkgdir" --optimize=1
+install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-click-plugins() {
+depends=("python2-click")
+cd "$srcdir/$_name-$pkgver-python2"
+python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:13:45
  Author: felixonmars
Revision: 499884

archrelease: copy trunk to community-x86_64

Added:
  cni-plugins/repos/community-x86_64/PKGBUILD
(from rev 499883, cni-plugins/trunk/PKGBUILD)
Deleted:
  cni-plugins/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 14:13:35 UTC (rev 499883)
+++ PKGBUILD2019-08-16 14:13:45 UTC (rev 499884)
@@ -1,27 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=cni-plugins
-pkgver=0.8.1
-pkgrel=1
-pkgdesc='Some standard networking plugins, maintained by the CNI team'
-arch=(x86_64)
-url="https://github.com/containernetworking/plugins;
-license=(Apache)
-depends=(glibc)
-makedepends=(go-pie)
-source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha512sums=('ed57162fc3d014c897ee2f7f82b738624ca42ad7c238ac6ac5c1eb9ac865fe27f8ded1510cfb131f7b43e44f6cd0366ab83011386bcb6add36ea11235767760f')
-
-build() {
-  cd plugins-$pkgver
-  ./build_linux.sh
-}
-
-package() {
-  cd plugins-$pkgver/bin
-  for bin in *; do
-install -Dm755 $bin "$pkgdir/usr/lib/cni/$bin"
-  done
-
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: cni-plugins/repos/community-x86_64/PKGBUILD (from rev 499883, 
cni-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 14:13:45 UTC (rev 499884)
@@ -0,0 +1,27 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=cni-plugins
+pkgver=0.8.1
+pkgrel=2
+pkgdesc='Some standard networking plugins, maintained by the CNI team'
+arch=(x86_64)
+url="https://github.com/containernetworking/plugins;
+license=(Apache)
+depends=(glibc)
+makedepends=(go-pie)
+source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
+sha512sums=('ed57162fc3d014c897ee2f7f82b738624ca42ad7c238ac6ac5c1eb9ac865fe27f8ded1510cfb131f7b43e44f6cd0366ab83011386bcb6add36ea11235767760f')
+
+build() {
+  cd plugins-$pkgver
+  ./build_linux.sh
+}
+
+package() {
+  cd plugins-$pkgver/bin
+  for bin in *; do
+install -Dm755 $bin "$pkgdir/usr/lib/cni/$bin"
+  done
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:13:35
  Author: felixonmars
Revision: 499883

upgpkg: cni-plugins 0.8.1-2

golang 1.12.8 security rebuild

Modified:
  cni-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 14:11:59 UTC (rev 499882)
+++ PKGBUILD2019-08-16 14:13:35 UTC (rev 499883)
@@ -2,7 +2,7 @@
 
 pkgname=cni-plugins
 pkgver=0.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Some standard networking plugins, maintained by the CNI team'
 arch=(x86_64)
 url="https://github.com/containernetworking/plugins;


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:11:36
  Author: felixonmars
Revision: 499880

archrelease: copy trunk to community-x86_64

Added:
  container-diff/repos/community-x86_64/PKGBUILD
(from rev 499879, container-diff/trunk/PKGBUILD)
Deleted:
  container-diff/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 14:11:26 UTC (rev 499879)
+++ PKGBUILD2019-08-16 14:11:36 UTC (rev 499880)
@@ -1,40 +0,0 @@
-# Maintainer: Daniel Milde 
-# Co-maintainer: Santiago Torres-Arias 
-
-pkgname=container-diff
-pkgver=0.15.0
-pkgrel=1
-pkgdesc="Diff your Docker containers"
-arch=(x86_64)
-url="https://github.com/GoogleContainerTools/container-diff;
-license=('Apache')
-depends=('glibc')
-makedepends=("go" "dep" "git")
-checkdepends=("docker")
-source=("git+https://github.com/GoogleContainerTools/container-diff#tag=v${pkgver};)
-sha512sums=('SKIP')
-
-prepare() {
-  mkdir -vp "${srcdir}/src/github.com/GoogleContainerTools/"
-  mv "${srcdir}/${pkgname}" 
"${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
-}
-
-build() {
-  cd "${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
-  export GOPATH=${srcdir}
-  make clean && make
-}
-
-check() {
-  #FIXME: This may ETIMEOUT if your computer is not fast enough...
-  #FIXME: we also need to instantiate our custom docker daemon 
-  # (if you want to build on a chroot), which is rather tricky...
-  cd "${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
-  export GOPATH=${srcdir} 
-  make test integration -j | true
-}
-
-package() {
-  install -D -m0755 
"${srcdir}/src/github.com/GoogleContainerTools/${pkgname}/out/${pkgname}" 
"${pkgdir}/usr/bin/${pkgname}"
-  install -Dm0644 
"${srcdir}/src/github.com/GoogleContainerTools/${pkgname}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: container-diff/repos/community-x86_64/PKGBUILD (from rev 499879, 
container-diff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 14:11:36 UTC (rev 499880)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Milde 
+# Co-maintainer: Santiago Torres-Arias 
+
+pkgname=container-diff
+pkgver=0.15.0
+pkgrel=2
+pkgdesc="Diff your Docker containers"
+arch=(x86_64)
+url="https://github.com/GoogleContainerTools/container-diff;
+license=('Apache')
+depends=('glibc')
+makedepends=("go" "dep" "git")
+checkdepends=("docker")
+source=("git+https://github.com/GoogleContainerTools/container-diff#tag=v${pkgver};)
+sha512sums=('SKIP')
+
+prepare() {
+  mkdir -vp "${srcdir}/src/github.com/GoogleContainerTools/"
+  mv "${srcdir}/${pkgname}" 
"${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
+}
+
+build() {
+  cd "${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
+  export GOPATH=${srcdir}
+  make clean && make
+}
+
+check() {
+  #FIXME: This may ETIMEOUT if your computer is not fast enough...
+  #FIXME: we also need to instantiate our custom docker daemon 
+  # (if you want to build on a chroot), which is rather tricky...
+  cd "${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
+  export GOPATH=${srcdir} 
+  make test integration -j | true
+}
+
+package() {
+  install -D -m0755 
"${srcdir}/src/github.com/GoogleContainerTools/${pkgname}/out/${pkgname}" 
"${pkgdir}/usr/bin/${pkgname}"
+  install -Dm0644 
"${srcdir}/src/github.com/GoogleContainerTools/${pkgname}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:11:45
  Author: felixonmars
Revision: 499881

upgpkg: consul-template 0.20.0-2

golang 1.12.8 security rebuild

Modified:
  consul-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 14:11:36 UTC (rev 499880)
+++ PKGBUILD2019-08-16 14:11:45 UTC (rev 499881)
@@ -3,7 +3,7 @@
 # Contributor: Tim Meusel 
 pkgname=consul-template
 pkgver=0.20.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Template rendering, notifier, and supervisor for HashiCorp Consul and 
Vault data'
 arch=('x86_64')
 url='https://github.com/hashicorp/consul-template'


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:11:59
  Author: felixonmars
Revision: 499882

archrelease: copy trunk to community-x86_64

Added:
  consul-template/repos/community-x86_64/PKGBUILD
(from rev 499881, consul-template/trunk/PKGBUILD)
  consul-template/repos/community-x86_64/consul-template.hcl
(from rev 499881, consul-template/trunk/consul-template.hcl)
  consul-template/repos/community-x86_64/consul-template.service
(from rev 499881, consul-template/trunk/consul-template.service)
Deleted:
  consul-template/repos/community-x86_64/PKGBUILD
  consul-template/repos/community-x86_64/consul-template.hcl
  consul-template/repos/community-x86_64/consul-template.service

-+
 PKGBUILD|   82 ++---
 consul-template.hcl |  700 +++---
 consul-template.service |   24 -
 3 files changed, 403 insertions(+), 403 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 14:11:45 UTC (rev 499881)
+++ PKGBUILD2019-08-16 14:11:59 UTC (rev 499882)
@@ -1,41 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Tyler Langlois 
-# Contributor: Tim Meusel 
-pkgname=consul-template
-pkgver=0.20.0
-pkgrel=1
-pkgdesc='Template rendering, notifier, and supervisor for HashiCorp Consul and 
Vault data'
-arch=('x86_64')
-url='https://github.com/hashicorp/consul-template'
-license=('MPL')
-backup=("etc/${pkgname}/${pkgname}.hcl")
-makedepends=('go-pie' 'git')
-depends=('glibc')
-optdepends=('consul: interpolate values from a distributed key/value store'
-'vault: reference secure secrets in template files')
-_consul_template_commit='9a0f301b69d841c32f36b78008afb2dee8a9c40b'
-source=("git+https://github.com/hashicorp/consul-template#commit=${_consul_template_commit};
-"${pkgname}.service"
-"${pkgname}.hcl")
-sha512sums=('SKIP'
-
'8b187ff470fb10b47b815b2faaad836ac369071c8ce7e353ec0cbc98e3b1ac2ffc9c892244ac492be1285caa303c4b5fd0a22df3bdb2a037fca1b06c7b24084b'
-
'b2acfbb4bf389b1d95ca9a5f2dfe9be85444c20efdae63f0e6e34d2f33a16ca1d089e6510b6867f74c3b4390a097952ab235c55e4023245e61cc4318622d5674')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  export PATH="$PATH:$GOPATH/bin"
-  mkdir -p src/github.com/hashicorp/
-  mv "${pkgname}" src/github.com/hashicorp/
-}
-
-build() {
-  cd src/github.com/hashicorp/"${pkgname}"
-  go build -o consul-template-binary
-}
-
-package() {
-  cd src/github.com/hashicorp/"${pkgname}"
-  install -Dm755 consul-template-binary "${pkgdir}/usr/bin/consul-template"
-  install -Dm644 "${srcdir}/${pkgname}.hcl" 
"${pkgdir}/etc/${pkgname}/${pkgname}.hcl"
-  install -Dm644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-}

Copied: consul-template/repos/community-x86_64/PKGBUILD (from rev 499881, 
consul-template/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 14:11:59 UTC (rev 499882)
@@ -0,0 +1,41 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Tyler Langlois 
+# Contributor: Tim Meusel 
+pkgname=consul-template
+pkgver=0.20.0
+pkgrel=2
+pkgdesc='Template rendering, notifier, and supervisor for HashiCorp Consul and 
Vault data'
+arch=('x86_64')
+url='https://github.com/hashicorp/consul-template'
+license=('MPL')
+backup=("etc/${pkgname}/${pkgname}.hcl")
+makedepends=('go-pie' 'git')
+depends=('glibc')
+optdepends=('consul: interpolate values from a distributed key/value store'
+'vault: reference secure secrets in template files')
+_consul_template_commit='9a0f301b69d841c32f36b78008afb2dee8a9c40b'
+source=("git+https://github.com/hashicorp/consul-template#commit=${_consul_template_commit};
+"${pkgname}.service"
+"${pkgname}.hcl")
+sha512sums=('SKIP'
+
'8b187ff470fb10b47b815b2faaad836ac369071c8ce7e353ec0cbc98e3b1ac2ffc9c892244ac492be1285caa303c4b5fd0a22df3bdb2a037fca1b06c7b24084b'
+
'b2acfbb4bf389b1d95ca9a5f2dfe9be85444c20efdae63f0e6e34d2f33a16ca1d089e6510b6867f74c3b4390a097952ab235c55e4023245e61cc4318622d5674')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p src/github.com/hashicorp/
+  mv "${pkgname}" src/github.com/hashicorp/
+}
+
+build() {
+  cd src/github.com/hashicorp/"${pkgname}"
+  go build -o consul-template-binary
+}
+
+package() {
+  cd src/github.com/hashicorp/"${pkgname}"
+  install -Dm755 consul-template-binary "${pkgdir}/usr/bin/consul-template"
+  install -Dm644 "${srcdir}/${pkgname}.hcl" 
"${pkgdir}/etc/${pkgname}/${pkgname}.hcl"
+  install -Dm644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+}

Deleted: consul-template.hcl
===
--- consul-template.hcl 2019-08-16 14:11:45 UTC (rev 499881)
+++ consul-template.hcl 2019-08-16 14:11:59 UTC 

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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:11:26
  Author: felixonmars
Revision: 499879

upgpkg: container-diff 0.15.0-2

golang 1.12.8 security rebuild

Modified:
  container-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 14:10:50 UTC (rev 499878)
+++ PKGBUILD2019-08-16 14:11:26 UTC (rev 499879)
@@ -3,7 +3,7 @@
 
 pkgname=container-diff
 pkgver=0.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Diff your Docker containers"
 arch=(x86_64)
 url="https://github.com/GoogleContainerTools/container-diff;


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:10:50
  Author: felixonmars
Revision: 499878

archrelease: copy trunk to community-x86_64

Added:
  containerd/repos/community-x86_64/PKGBUILD
(from rev 499877, containerd/trunk/PKGBUILD)
Deleted:
  containerd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 14:10:39 UTC (rev 499877)
+++ PKGBUILD2019-08-16 14:10:50 UTC (rev 499878)
@@ -1,43 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Santiago Torres-Arias 
-# Contributor: Sébastien "Seblu" Luttringer
-# Contributor: Iwan Timmer 
-
-pkgname=containerd
-pkgver=1.2.7
-_commit=85f6aa58b8a3170aec9824568f7a31832878b603
-pkgrel=1
-pkgdesc='An open and reliable container runtime'
-url='https://containerd.io/'
-depends=('runc')
-makedepends=('go' 'git' 'btrfs-progs' 'libseccomp')
-arch=('x86_64')
-license=("Apache")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/containerd/containerd/archive/v$pkgver.tar.gz;)
-sha256sums=('7179c709a0d187708a1eeddcbdecd7206b2c642dc4413bcdb049cd6b38d06801')
-
-
-prepare() {
-  mkdir -p src/github.com/containerd
-  ln -rTsf $pkgname-$pkgver src/github.com/containerd/containerd
-  # fix paths in service
-  sed -i 's,/sbin,/usr/bin,;s,/usr/local,/usr,' 
$pkgname-$pkgver/containerd.service
-}
-
-build() {
-  export GOPATH="$srcdir"
-  cd src/github.com/containerd/containerd
-  make VERSION=v$pkgver.m REVISION=$_commit.m
-}
-
-check() {
-  cd src/github.com/containerd/containerd
-  make test
-}
-
-package() {
-  export GOPATH="$srcdir"
-  cd src/github.com/containerd/containerd
-  make install DESTDIR="$pkgdir/usr"
-  install -Dm644 containerd.service 
"$pkgdir"/usr/lib/systemd/system/containerd.service
-}

Copied: containerd/repos/community-x86_64/PKGBUILD (from rev 499877, 
containerd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 14:10:50 UTC (rev 499878)
@@ -0,0 +1,43 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Santiago Torres-Arias 
+# Contributor: Sébastien "Seblu" Luttringer
+# Contributor: Iwan Timmer 
+
+pkgname=containerd
+pkgver=1.2.7
+_commit=85f6aa58b8a3170aec9824568f7a31832878b603
+pkgrel=2
+pkgdesc='An open and reliable container runtime'
+url='https://containerd.io/'
+depends=('runc')
+makedepends=('go' 'git' 'btrfs-progs' 'libseccomp')
+arch=('x86_64')
+license=("Apache")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/containerd/containerd/archive/v$pkgver.tar.gz;)
+sha256sums=('7179c709a0d187708a1eeddcbdecd7206b2c642dc4413bcdb049cd6b38d06801')
+
+
+prepare() {
+  mkdir -p src/github.com/containerd
+  ln -rTsf $pkgname-$pkgver src/github.com/containerd/containerd
+  # fix paths in service
+  sed -i 's,/sbin,/usr/bin,;s,/usr/local,/usr,' 
$pkgname-$pkgver/containerd.service
+}
+
+build() {
+  export GOPATH="$srcdir"
+  cd src/github.com/containerd/containerd
+  make VERSION=v$pkgver.m REVISION=$_commit.m
+}
+
+check() {
+  cd src/github.com/containerd/containerd
+  make test
+}
+
+package() {
+  export GOPATH="$srcdir"
+  cd src/github.com/containerd/containerd
+  make install DESTDIR="$pkgdir/usr"
+  install -Dm644 containerd.service 
"$pkgdir"/usr/lib/systemd/system/containerd.service
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:10:39
  Author: felixonmars
Revision: 499877

upgpkg: containerd 1.2.7-2

golang 1.12.8 security rebuild

Modified:
  containerd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 14:06:21 UTC (rev 499876)
+++ PKGBUILD2019-08-16 14:10:39 UTC (rev 499877)
@@ -6,7 +6,7 @@
 pkgname=containerd
 pkgver=1.2.7
 _commit=85f6aa58b8a3170aec9824568f7a31832878b603
-pkgrel=1
+pkgrel=2
 pkgdesc='An open and reliable container runtime'
 url='https://containerd.io/'
 depends=('runc')


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:06:21
  Author: felixonmars
Revision: 499876

archrelease: copy trunk to community-x86_64

Added:
  delve/repos/community-x86_64/PKGBUILD
(from rev 499875, delve/trunk/PKGBUILD)
Deleted:
  delve/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 14:06:11 UTC (rev 499875)
+++ PKGBUILD2019-08-16 14:06:21 UTC (rev 499876)
@@ -1,22 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=delve
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="A debugger for the Go programming language."
-arch=('x86_64')
-url="https://github.com/derekparker/delve;
-license=('MIT')
-makedepends=('go-pie' 'git')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derekparker/delve/archive/v${pkgver}.tar.gz;)
-sha256sums=('eebf6cd9647a2c3987fd38e8dd6e0e968ff41300cab20dc178a789a77b92627d')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  go build -gcflags "all=-trimpath=${GOPATH}" -asmflags 
"all=-trimpath=${GOPATH}" -ldflags "-extldflags $LDFLAGS" ./cmd/dlv
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 dlv "${pkgdir}/usr/bin/dlv"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: delve/repos/community-x86_64/PKGBUILD (from rev 499875, 
delve/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 14:06:21 UTC (rev 499876)
@@ -0,0 +1,22 @@
+# Maintainer: Morten Linderud 
+pkgname=delve
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A debugger for the Go programming language."
+arch=('x86_64')
+url="https://github.com/derekparker/delve;
+license=('MIT')
+makedepends=('go-pie' 'git')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derekparker/delve/archive/v${pkgver}.tar.gz;)
+sha256sums=('eebf6cd9647a2c3987fd38e8dd6e0e968ff41300cab20dc178a789a77b92627d')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  go build -gcflags "all=-trimpath=${GOPATH}" -asmflags 
"all=-trimpath=${GOPATH}" -ldflags "-extldflags $LDFLAGS" ./cmd/dlv
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 dlv "${pkgdir}/usr/bin/dlv"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:06:11
  Author: felixonmars
Revision: 499875

upgpkg: delve 1.2.0-2

golang 1.12.8 security rebuild

Modified:
  delve/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 14:05:57 UTC (rev 499874)
+++ PKGBUILD2019-08-16 14:06:11 UTC (rev 499875)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 pkgname=delve
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A debugger for the Go programming language."
 arch=('x86_64')
 url="https://github.com/derekparker/delve;


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:05:57
  Author: felixonmars
Revision: 499874

archrelease: copy trunk to community-x86_64

Added:
  dep/repos/community-x86_64/PKGBUILD
(from rev 499873, dep/trunk/PKGBUILD)
Deleted:
  dep/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 14:05:47 UTC (rev 499873)
+++ PKGBUILD2019-08-16 14:05:57 UTC (rev 499874)
@@ -1,42 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=dep
-pkgver=0.5.4
-pkgrel=1
-pkgdesc="Go dependency management tool"
-arch=('x86_64')
-url='https://golang.github.io/dep/'
-license=('BSD')
-makedepends=('go-pie' 'git')
-optdepends=('git: fetch git sources')
-checkdepends=('mercurial' 'bzr' 'subversion')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/dep/archive/v${pkgver}.tar.gz;)
-sha256sums=('929c8f759838f98323211ba408a831ea80d93b75beda8584b6d950f393a3298a')
-
-prepare(){
-  mkdir -p src/github.com/golang
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/golang/dep
-}
-
-build(){
-  export GOPATH="${srcdir}"
-  cd src/github.com/golang/dep
-  go install \
-   -gcflags "all=-trimpath=${GOPATH}/src" \
-   -asmflags "all=-trimpath=${GOPATH}/src" \
-   -ldflags "-extldflags ${LDFLAGS}" \
-   ./cmd/...
-}
-
-# check(){
-#   cd src/github.com/golang/dep
-#   mkdir -p "${srcdir}/build-cache"
-#   DEPCACHEDIR="${srcdir}/build-cache" go test ./...
-# }
-
-package(){
-  install -Dm755 bin/dep "${pkgdir}/usr/bin/dep"
-
-  cd "${pkgname}-${pkgver}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: dep/repos/community-x86_64/PKGBUILD (from rev 499873, 
dep/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 14:05:57 UTC (rev 499874)
@@ -0,0 +1,42 @@
+# Maintainer: Morten Linderud 
+
+pkgname=dep
+pkgver=0.5.4
+pkgrel=2
+pkgdesc="Go dependency management tool"
+arch=('x86_64')
+url='https://golang.github.io/dep/'
+license=('BSD')
+makedepends=('go-pie' 'git')
+optdepends=('git: fetch git sources')
+checkdepends=('mercurial' 'bzr' 'subversion')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/dep/archive/v${pkgver}.tar.gz;)
+sha256sums=('929c8f759838f98323211ba408a831ea80d93b75beda8584b6d950f393a3298a')
+
+prepare(){
+  mkdir -p src/github.com/golang
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/golang/dep
+}
+
+build(){
+  export GOPATH="${srcdir}"
+  cd src/github.com/golang/dep
+  go install \
+   -gcflags "all=-trimpath=${GOPATH}/src" \
+   -asmflags "all=-trimpath=${GOPATH}/src" \
+   -ldflags "-extldflags ${LDFLAGS}" \
+   ./cmd/...
+}
+
+# check(){
+#   cd src/github.com/golang/dep
+#   mkdir -p "${srcdir}/build-cache"
+#   DEPCACHEDIR="${srcdir}/build-cache" go test ./...
+# }
+
+package(){
+  install -Dm755 bin/dep "${pkgdir}/usr/bin/dep"
+
+  cd "${pkgname}-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:05:47
  Author: felixonmars
Revision: 499873

upgpkg: dep 0.5.4-2

golang 1.12.8 security rebuild

Modified:
  dep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 14:05:09 UTC (rev 499872)
+++ PKGBUILD2019-08-16 14:05:47 UTC (rev 499873)
@@ -2,7 +2,7 @@
 
 pkgname=dep
 pkgver=0.5.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Go dependency management tool"
 arch=('x86_64')
 url='https://golang.github.io/dep/'


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:05:09
  Author: felixonmars
Revision: 499872

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 499871, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.sysusers
(from rev 499871, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.sysusers

-+
 PKGBUILD|  302 +++---
 docker.sysusers |4 
 2 files changed, 153 insertions(+), 153 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 14:04:56 UTC (rev 499871)
+++ PKGBUILD2019-08-16 14:05:09 UTC (rev 499872)
@@ -1,151 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-
-pkgname=docker
-pkgver=19.03.1
-pkgrel=1
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='https://www.docker.com/'
-license=('Apache')
-depends=('glibc' 'bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 
'systemd-libs'
- 'libseccomp' 'libtool' 'runc' 'containerd')
-makedepends=('git' 'go' 'btrfs-progs' 'cmake' 'systemd' 'go-md2man')
-optdepends=('btrfs-progs: btrfs backend support'
-'pigz: parallel gzip compressor support')
-# don't strip binaries! A sha1 is used to check binary consistency.
-options=('!strip' '!buildflags')
-# Use exact commit version from Dockerfile, see them in:
-# 
https://github.com/docker/docker-ce/blob/master/components/engine/hack/dockerfile/install/
-_TINI_COMMIT=fec3683b971d9c3ef73f284f176672c44b448662
-_LIBNETWORK_COMMIT=fc5a7d91d54cc98f64fc28f9e288b46a0bee756c
-source=("git+https://github.com/docker/docker-ce.git#tag=v$pkgver;
-
"git+https://github.com/docker/libnetwork.git#commit=$_LIBNETWORK_COMMIT;
-"git+https://github.com/krallin/tini.git#commit=$_TINI_COMMIT;
-"git+https://github.com/spf13/cobra.git;
-"$pkgname.sysusers")
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- '9a8b2744db23b14ca3cd350fdf73c179')
-
-
-# create a fake go path directory and pushd into it
-# $1 real directory
-# $2 gopath directory
-_fake_gopath_pushd() {
-  mkdir -p "$GOPATH/src/${2%/*}"
-  rm -f "$GOPATH/src/$2"
-  ln -rsT "$1" "$GOPATH/src/$2"
-  pushd  "$GOPATH/src/$2" >/dev/null
-}
-
-_fake_gopath_popd() {
-  popd >/dev/null
-}
-
-build() {
-  ### check my mistakes on commit version
-  msg2 'Checking commit mismatch'
-  (
-  local _cfile
-  for _cfile in tini proxy; do
-. 
"$srcdir/docker-ce/components/engine/hack/dockerfile/install/$_cfile.installer"
-  done
-  local _commit _pkgbuild _dockerfile
-  err=0
-  for _commit in LIBNETWORK TINI; do
-_pkgbuild=_${_commit}_COMMIT
-_dockerfile=${_commit}_COMMIT
-if [[ ${!_pkgbuild} != ${!_dockerfile} ]]; then
-  error "Invalid $_commit commit, should be ${!_dockerfile}"
-  err=$(($err + 1))
-fi
-  done
-  return $err
-  )
-
-  ### globals
-  export GOPATH="$srcdir"
-  export PATH="$GOPATH/bin:$PATH"
-
-  ### cli
-  msg2 'Building cli'
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  DISABLE_WARN_OUTSIDE_CONTAINER=1 make VERSION=$pkgver-ce dynbinary
-  _fake_gopath_popd
-
-  ### daemon
-  msg2 'Building daemon'
-  _fake_gopath_pushd docker-ce/components/engine github.com/docker/docker
-  DOCKER_GITCOMMIT=$(cd "$srcdir"/docker-ce && git rev-parse --short HEAD) \
-DOCKER_BUILDTAGS='seccomp journald' \
-VERSION=$pkgver-ce \
-hack/make.sh dynbinary
-  _fake_gopath_popd
-
-  ### docker man pages
-  msg2 'Building man pages'
-  mkdir -p src/github.com/spf13
-  ln -rsfT cobra src/github.com/spf13/cobra
-  # use docker-ce cli version because they mess up with man dir
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  make manpages 2>/dev/null
-  _fake_gopath_popd
-
-  ### docker proxy
-  msg2 'Building docker-proxy'
-  _fake_gopath_pushd libnetwork github.com/docker/libnetwork
-  go build -ldflags='-linkmode=external' github.com/docker/libnetwork/cmd/proxy
-  _fake_gopath_popd
-
-  ### docker-init
-  msg2 'Building docker-init'
-  _fake_gopath_pushd tini github.com/krallin/tini
-  cmake .
-  # we must use the static binary because it's started in a foreign os
-  make tini-static
-  _fake_gopath_popd
-}
-
-package() {
-  ### proxy
-  install -Dm755 libnetwork/proxy "$pkgdir/usr/bin/docker-proxy"
-  ### init
-  install -Dm755 tini/tini-static "$pkgdir/usr/bin/docker-init"
-  ### engine
-  cd "$srcdir"/docker-ce/components/engine
-  # binary
-  install -Dm755 {bundles/latest/dynbinary-daemon,"$pkgdir"/usr/bin}/dockerd
-  # systemd
-  install -Dm644 'contrib/init/systemd/docker.service' \
-"$pkgdir/usr/lib/systemd/system/docker.service"
-  install -Dm644 'contrib/init/systemd/docker.socket' \
-"$pkgdir/usr/lib/systemd/system/docker.socket"
-  install -Dm644 'contrib/udev/80-docker.rules' \
-

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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:04:56
  Author: felixonmars
Revision: 499871

upgpkg: docker 1:19.03.1-2

golang 1.12.8 security rebuild

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 14:00:19 UTC (rev 499870)
+++ PKGBUILD2019-08-16 14:04:56 UTC (rev 499871)
@@ -2,7 +2,7 @@
 
 pkgname=docker
 pkgver=19.03.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 14:00:19
  Author: felixonmars
Revision: 499870

archrelease: copy trunk to community-x86_64

Added:
  evilginx/repos/community-x86_64/PKGBUILD
(from rev 499869, evilginx/trunk/PKGBUILD)
Deleted:
  evilginx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 13:59:49 UTC (rev 499869)
+++ PKGBUILD2019-08-16 14:00:19 UTC (rev 499870)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: kpcyrd 
-
-pkgname=evilginx
-pkgdesc='Man-in-the-middle attack framework used for phishing login 
credentials'
-pkgver=2.3.0
-pkgrel=2
-url='https://github.com/kgretzky/evilginx2'
-license=('GPL3')
-arch=('x86_64')
-depends=('glibc')
-makedepends=('go-pie' 'git' 'dep')
-source=(https://github.com/kgretzky/evilginx2/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('385926bbd0a37568a4fa9fc9e500bd622a14209ecf0d60ff8b93e6e45b3d59b0649fe9f0c5571f6eade58e025d25a84f24bce9b64a63163939eabdea937bac69')
-
-prepare() {
-  export GOPATH="${srcdir}/go"
-  mkdir -p go/src/github.com/kgretzky
-  ln -rTsf evilginx2-${pkgver} go/src/github.com/kgretzky/evilginx2
-}
-
-build() {
-  cd go/src/github.com/kgretzky/evilginx2
-  export GOPATH="${srcdir}/go"
-  dep ensure -v
-  go build -v \
--gcflags "all=-trimpath=${GOPATH}" \
--asmflags "all=-trimpath=${GOPATH}" \
--ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
--o ./bin/evilginx main.go
-}
-
-package() {
-  cd go/src/github.com/kgretzky/evilginx2
-  install -Dm 755 bin/evilginx -t "${pkgdir}/usr/bin"
-  install -Dm 644 phishlets/* -t "${pkgdir}/usr/share/evilginx/phishlets"
-  install -Dm 644 README.md CHANGELOG -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: evilginx/repos/community-x86_64/PKGBUILD (from rev 499869, 
evilginx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 14:00:19 UTC (rev 499870)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Maintainer: kpcyrd 
+
+pkgname=evilginx
+pkgdesc='Man-in-the-middle attack framework used for phishing login 
credentials'
+pkgver=2.3.0
+pkgrel=3
+url='https://github.com/kgretzky/evilginx2'
+license=('GPL3')
+arch=('x86_64')
+depends=('glibc')
+makedepends=('go-pie' 'git' 'dep')
+source=(https://github.com/kgretzky/evilginx2/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('385926bbd0a37568a4fa9fc9e500bd622a14209ecf0d60ff8b93e6e45b3d59b0649fe9f0c5571f6eade58e025d25a84f24bce9b64a63163939eabdea937bac69')
+
+prepare() {
+  export GOPATH="${srcdir}/go"
+  mkdir -p go/src/github.com/kgretzky
+  ln -rTsf evilginx2-${pkgver} go/src/github.com/kgretzky/evilginx2
+}
+
+build() {
+  cd go/src/github.com/kgretzky/evilginx2
+  export GOPATH="${srcdir}/go"
+  dep ensure -v
+  go build -v \
+-gcflags "all=-trimpath=${GOPATH}" \
+-asmflags "all=-trimpath=${GOPATH}" \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
+-o ./bin/evilginx main.go
+}
+
+package() {
+  cd go/src/github.com/kgretzky/evilginx2
+  install -Dm 755 bin/evilginx -t "${pkgdir}/usr/bin"
+  install -Dm 644 phishlets/* -t "${pkgdir}/usr/share/evilginx/phishlets"
+  install -Dm 644 README.md CHANGELOG -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-16 Thread Felix Yan via arch-commits
Date: Friday, August 16, 2019 @ 13:59:49
  Author: felixonmars
Revision: 499869

upgpkg: evilginx 2.3.0-3

golang 1.12.8 security rebuild

Modified:
  evilginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 13:51:36 UTC (rev 499868)
+++ PKGBUILD2019-08-16 13:59:49 UTC (rev 499869)
@@ -4,7 +4,7 @@
 pkgname=evilginx
 pkgdesc='Man-in-the-middle attack framework used for phishing login 
credentials'
 pkgver=2.3.0
-pkgrel=2
+pkgrel=3
 url='https://github.com/kgretzky/evilginx2'
 license=('GPL3')
 arch=('x86_64')


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:24
  Author: heftig
Revision: 499857

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
499848, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2019-08-16 13:24:24 UTC (rev 
499857)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 499848, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:24 UTC (rev 499857)
@@ -0,0 +1,52 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20190410
+pkgrel=36
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('0c18954a8c2c7e208b20afdf785501b23be9382345e6577eba5d653002862394'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 499848, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-08-16 13:24:24 UTC (rev 499857)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:25
  Author: heftig
Revision: 359904

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 359903, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fs62142.patch
(from rev 359903, nvidia/trunk/fs62142.patch)

---+
 PKGBUILD  |   85 
 fs62142.patch |   13 
 2 files changed, 98 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 359903, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-16 13:24:25 UTC (rev 359904)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=430.40
+_extramodules=extramodules-ARCH
+pkgrel=5
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+fs62142.patch)
+sha512sums=('68e6187fe74b43e92de6159589463db5f74eba09652b0f55d5fcc790c315405df6cd27129185f4dbe18790abdbb61e79b52977d47c6407e74d3372b5511a4e1b'
+
'df949debf9fed92b3c58322c02685fb344bbfff2920557e7d55ed3f70559f48cd6199bc85e2af170b7e56797f3e9881a53eab8c411f21e75f5abec26eaa47752')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Fix https://bugs.archlinux.org/task/62142
+patch -Np1 -i ../fs62142.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/staging-x86_64/fs62142.patch (from rev 359903, 
nvidia/trunk/fs62142.patch)
===
--- staging-x86_64/fs62142.patch(rev 0)
+++ staging-x86_64/fs62142.patch2019-08-16 13:24:25 UTC (rev 359904)
@@ -0,0 +1,13 @@
+diff --git a/kernel/nvidia/nv-dma.c b/kernel/nvidia/nv-dma.c
+index 73cdeed..e691014 100644
+--- a/kernel/nvidia/nv-dma.c
 b/kernel/nvidia/nv-dma.c
+@@ -606,7 +606,7 @@ static NvBool nv_dma_is_map_resource_implemented
+ #if defined(NV_DMA_MAP_RESOURCE_PRESENT)
+ const struct dma_map_ops *ops = get_dma_ops(>dev->dev);
+ 
+-return (ops->map_resource != NULL);
++return (ops && ops->map_resource);
+ #else
+ return NV_FALSE;
+ #endif


[arch-commits] Commit in nvidia-390xx/repos (5 files)

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:31
  Author: heftig
Revision: 359905

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 359904, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 359904, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-5.1.patch
(from rev 359904, nvidia-390xx/trunk/kernel-5.1.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-5.2.patch
(from rev 359904, nvidia-390xx/trunk/kernel-5.2.patch)

---+
 PKGBUILD  |   92 
 kernel-4.16.patch |   33 +
 kernel-5.1.patch  |  130 
 kernel-5.2.patch  |   18 +++
 4 files changed, 273 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 359904, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-16 13:24:31 UTC (rev 359905)
@@ -0,0 +1,92 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.116
+_extramodules=extramodules-ARCH
+pkgrel=45
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+'kernel-4.16.patch' 'kernel-5.1.patch' 'kernel-5.2.patch')
+sha256sums=('de85a2eea39ca16e25645b345259b01fbe858b833286b7e6785afa273009ef6f'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385'
+'d92899d4f7a40e2c3cad92d067f2f53c3a18c49b34e62e707a93b125aa37640f'
+'9d94f30662d64400ee43bb7745544b72e1c6216a30ae2907a744c7ae0aa6e384')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+patch -Np1 -i ../kernel-5.1.patch
+patch -Np1 -i ../kernel-5.2.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux' "nvidia-390xx-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 359904, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2019-08-16 13:24:31 UTC (rev 359905)
@@ -0,0 

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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:26
  Author: heftig
Revision: 499858

archrelease: copy trunk to community-staging-x86_64

Added:
  wireguard-arch/repos/community-staging-x86_64/
  wireguard-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 499857, wireguard-arch/trunk/PKGBUILD)

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

Copied: wireguard-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
499857, wireguard-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:26 UTC (rev 499858)
@@ -0,0 +1,27 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-arch
+pkgver=0.0.20190702
+pkgrel=12
+pkgdesc='Wireguard module for Arch Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+_extramodules='extramodules-ARCH'
+
+package() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:23
  Author: heftig
Revision: 499855

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 499850, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 499850, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   61 
 dkms.conf |9 
 2 files changed, 70 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 499850, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:23 UTC (rev 499855)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=239
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 499850, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-08-16 13:24:23 UTC (rev 499855)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


[arch-commits] Commit in ndiswrapper-arch/repos (6 files)

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:23
  Author: heftig
Revision: 499856

archrelease: copy trunk to community-staging-x86_64

Added:
  ndiswrapper-arch/repos/community-staging-x86_64/
  ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 499848, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch
(from rev 499848, ndiswrapper-arch/trunk/linux-4.11.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.13.patch
(from rev 499848, ndiswrapper-arch/trunk/linux-4.13.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.15.patch
(from rev 499848, ndiswrapper-arch/trunk/linux-4.15.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-5.0.patch
(from rev 499849, ndiswrapper-arch/trunk/linux-5.0.patch)

--+
 PKGBUILD |   43 +++
 linux-4.11.patch |   55 ++
 linux-4.13.patch |   27 +++
 linux-4.15.patch |  199 +
 linux-5.0.patch  |   25 ++
 5 files changed, 349 insertions(+)

Copied: ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
499848, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:23 UTC (rev 499856)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.61
+_extramodules=extramodules-ARCH
+pkgrel=56
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("ndiswrapper-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
+'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch')
+sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
+
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
+
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
+
'52bd3d2025ffb8a3f6a4a1a1fee1b87d3811f30a210a54aaa7b37838eb256cd766bc1aeda24e4b4f4829992584931ecd97a042794c9b854bd1ebbf452dce2abf'
+
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch -d 
ndiswrapper
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.0.patch
+}
+
+build() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd ndiswrapper-$pkgver/ndiswrapper
+  make -C driver KVERS_UNAME="$_kernver"
+}
+
+package() {
+  cd ndiswrapper-$pkgver/ndiswrapper
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 driver/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}

Copied: ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch (from 
rev 499848, ndiswrapper-arch/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2019-08-16 13:24:23 UTC (rev 
499856)
@@ -0,0 +1,55 @@
+commit fa2aeeccd5366378ca2eb83c6daee64b511fe792
+Author: Felix Yan 
+Date:   Tue May 16 01:32:56 2017 +0800
+
+Add support for Linux 4.11+
+
+diff --git a/ndiswrapper/driver/ndis.c b/ndiswrapper/driver/ndis.c
+index c1913a05..2ab4dd21 100644
+--- a/ndiswrapper/driver/ndis.c
 b/ndiswrapper/driver/ndis.c
+@@ -2258,7 +2258,9 @@ wstdcall void NdisMIndicateReceivePacket(struct 
ndis_mp_block *nmb,
+   WARNING("empty packet ignored");
+   continue;
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+   /* get total number of bytes in packet */
+   NdisGetFirstBufferFromPacketSafe(packet, , ,
+, _length,
+@@ -2346,7 +2348,9 @@ wstdcall void EthRxIndicateHandler(struct ndis_mp_block 
*nmb, void *rx_ctx,
+   ERROR("nmb is NULL");
+   EXIT3(return);
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+ 
+   if (look_ahead_size < packet_size) {
+  

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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:17
  Author: heftig
Revision: 499850

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 499848, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 499848, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:17 UTC (rev 499850)
@@ -0,0 +1,49 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=133
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' 'git')
+_extradir=/usr/lib/modules/extramodules-ARCH
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec xz {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:22
  Author: heftig
Revision: 499852

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
499848, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:22 UTC (rev 499852)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+_extramodules=extramodules-ARCH
+pkgrel=6
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;)
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14')
+
+build() {
+  cd deepin-anything-$pkgver
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  make -C kernelmod kdir=/usr/lib/modules/$_kernver/build
+}
+
+package() {
+  cd deepin-anything-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 kernelmod/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:23
  Author: heftig
Revision: 499854

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
  virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 499848, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 499848, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:23 UTC (rev 499854)
@@ -0,0 +1,52 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=6.0.10
+pkgrel=9
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+ 'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -D -m0644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:22
  Author: heftig
Revision: 499853

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 499848, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:22 UTC (rev 499853)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=126
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+depends=("linux${_kernelname}")
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+_extramodules="/usr/lib/modules/extramodules${_kernelname:--ARCH}"
+
+build() {
+_kernver="$(<${_extramodules}/version)"
+
+dkms build --dkmstree "${srcdir}" -m ${_module}/${pkgver} -k ${_kernver}
+}
+
+package() {
+_kernver="$(<${_extramodules}/version)"
+
+install -Dm644 -t "${pkgdir}${_extramodules}" \
+${_module}/${pkgver}/${_kernver}/${CARCH}/module/*
+
+_license="/usr/share/licenses/${_module}-dkms"
+if [[ -d ${_license} ]]; then
+install -Dm644 -t "${pkgdir}"/${_license/-dkms/${_kernelname}} 
${_license}/*
+fi
+_modprobe="/usr/lib/modprobe.d/${_module}-dkms.conf"
+if [[ -r ${_modprobe} ]]; then
+install -Dm644 ${_modprobe} 
"${pkgdir}"/${_modprobe/-dkms/${_kernelname}}
+fi
+}


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:21
  Author: heftig
Revision: 499851

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 499848, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 499848, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:21 UTC (rev 499851)
@@ -0,0 +1,37 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.047.02
+pkgrel=10
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('29a67eedf1d84a3eae60aeb8bbd843b1e65e104a45a3e2932bd015aab4ebd1eb')
+
+build() {
+   KERNEL_VERSION=$(

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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 13:24:15
  Author: heftig
Revision: 499849

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 499848, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 499848, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-16 13:24:15 UTC (rev 499849)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=245
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2019-08-16 Thread Jelle van der Waa via arch-commits
Date: Friday, August 16, 2019 @ 13:09:10
  Author: jelle
Revision: 499848

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  156 ++---
 grafana.install  |   44 +++---
 grafana.service  |   46 +++
 grafana.sysusers |2 
 grafana.tmpfiles |4 -
 5 files changed, 126 insertions(+), 126 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 13:08:55 UTC (rev 499847)
+++ PKGBUILD2019-08-16 13:09:10 UTC (rev 499848)
@@ -1,78 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=6.3.2
-pkgrel=2
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='https://grafana.com/'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
-makedepends=('git' 'go-pie' 'npm' 'grunt-cli' 'python2' 'nodejs-lts-dubnium')
-backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver;
-'grafana.service'
-'grafana.sysusers'
-'grafana.tmpfiles'
-   )
-install=$pkgname.install
-sha512sums=('SKIP'
-
'4663d4f9ccffc3926a0f19088e0efcac76f6d464d7d53e3ecb448fde81ac0855d06935987b11b0608d63c71f76b0b15adce5e6248d28303f1ebb263347094a9a'
-
'38b46d953837a7afa5a654dfeef163b210d56cad57d937018531d00cd63b5341d6f9cd777299bdc7a994d0cb7df09b8157aad0f166e76ad47564e1ad6d5441d4'
-
'c1724bfc7cbd6a406f17acb661efca0f1e57e2c30cc1841f4cb7ccfc420adc40cc61cb1c023d00444827b2c40e9caa4c2fefbfd503419848c74a0b455b2375ab')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  # set arch linux paths
-  sed -ri 's,^(\s*data\s*=).*,\1 /var/lib/grafana,' conf/defaults.ini
-  sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
-  sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
-  sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-}
-
-build() {
-  msg2 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  msg2 'building the backend'
-  go run build.go setup
-  go run build.go build
-
-  msg2 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/linux-amd64/grafana-server 
"$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/linux-amd64/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  for i in vendor public tools; do
-cp -r "$i" "$pkgdir/usr/share/grafana/$i"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 499847, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 13:09:10 UTC (rev 499848)
@@ -0,0 +1,78 @@
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Carsten Feuls 
+# Contributor: Gilles Hamel 
+
+pkgname=grafana
+pkgver=6.3.3
+pkgrel=1
+pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'

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

2019-08-16 Thread Jelle van der Waa via arch-commits
Date: Friday, August 16, 2019 @ 13:08:55
  Author: jelle
Revision: 499847

upgpkg: grafana 6.3.3-1

Upstream minor update

Modified:
  grafana/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:47 UTC (rev 499846)
+++ PKGBUILD2019-08-16 13:08:55 UTC (rev 499847)
@@ -3,8 +3,8 @@
 # Contributor: Gilles Hamel 
 
 pkgname=grafana
-pkgver=6.3.2
-pkgrel=2
+pkgver=6.3.3
+pkgrel=1
 pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
 url='https://grafana.com/'
 arch=('x86_64')


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:45
  Author: heftig
Revision: 499845

0.0.20190702-12: kernel 5.2.9.arch1-1

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:44 UTC (rev 499844)
+++ PKGBUILD2019-08-16 12:40:45 UTC (rev 499845)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-arch
 pkgver=0.0.20190702
-pkgrel=11
+pkgrel=12
 pkgdesc='Wireguard module for Arch Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:47
  Author: heftig
Revision: 499846

5.0.1-6: kernel 5.2.9.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:45 UTC (rev 499845)
+++ PKGBUILD2019-08-16 12:40:47 UTC (rev 499846)
@@ -3,7 +3,7 @@
 pkgname=deepin-anything-arch
 pkgver=5.0.1
 _extramodules=extramodules-ARCH
-pkgrel=5
+pkgrel=6
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:36
  Author: heftig
Revision: 499841

8.047.02-10: kernel 5.2.9.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:34 UTC (rev 499840)
+++ PKGBUILD2019-08-16 12:40:36 UTC (rev 499841)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.047.02
-pkgrel=9
+pkgrel=10
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:40
  Author: heftig
Revision: 359902

390.116-45: kernel 5.2.9.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:10:04 UTC (rev 359901)
+++ PKGBUILD2019-08-16 12:40:40 UTC (rev 359902)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.116
 _extramodules=extramodules-ARCH
-pkgrel=44
+pkgrel=45
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:42
  Author: heftig
Revision: 359903

430.40-5: kernel 5.2.9.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:40 UTC (rev 359902)
+++ PKGBUILD2019-08-16 12:40:42 UTC (rev 359903)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=430.40
 _extramodules=extramodules-ARCH
-pkgrel=4
+pkgrel=5
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:38
  Author: heftig
Revision: 499842

20190410-36: kernel 5.2.9.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:36 UTC (rev 499841)
+++ PKGBUILD2019-08-16 12:40:38 UTC (rev 499842)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20190410
-pkgrel=35
+pkgrel=36
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:39
  Author: heftig
Revision: 499843

1.1.0-239: kernel 5.2.9.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:38 UTC (rev 499842)
+++ PKGBUILD2019-08-16 12:40:39 UTC (rev 499843)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=238
+pkgrel=239
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:32
  Author: heftig
Revision: 499838

6.30.223.271-126: kernel 5.2.9.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:30 UTC (rev 499837)
+++ PKGBUILD2019-08-16 12:40:32 UTC (rev 499838)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=125
+pkgrel=126
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:44
  Author: heftig
Revision: 499844

1.61-56: kernel 5.2.9.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:39 UTC (rev 499843)
+++ PKGBUILD2019-08-16 12:40:44 UTC (rev 499844)
@@ -4,7 +4,7 @@
 pkgname=ndiswrapper-arch
 pkgver=1.61
 _extramodules=extramodules-ARCH
-pkgrel=55
+pkgrel=56
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://sourceforge.net/projects/ndiswrapper/;


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:34
  Author: heftig
Revision: 499840

0.8-245: kernel 5.2.9.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:33 UTC (rev 499839)
+++ PKGBUILD2019-08-16 12:40:34 UTC (rev 499840)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=244
+pkgrel=245
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:30
  Author: heftig
Revision: 499837

0.43-133: kernel 5.2.9.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 11:26:51 UTC (rev 499836)
+++ PKGBUILD2019-08-16 12:40:30 UTC (rev 499837)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=132
+pkgrel=133
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2019-08-16 Thread Jan Steffens via arch-commits
Date: Friday, August 16, 2019 @ 12:40:33
  Author: heftig
Revision: 499839

6.0.10-9: kernel 5.2.9.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 12:40:32 UTC (rev 499838)
+++ PKGBUILD2019-08-16 12:40:33 UTC (rev 499839)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.10
-pkgrel=8
+pkgrel=9
 arch=('x86_64')
 url='http://virtualbox.org'
 license=('GPL')


  1   2   3   >