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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 15:09:31
  Author: felixonmars
Revision: 274646

upgpkg: python-praw 5.3.0-1

Modified:
  python-praw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 14:57:44 UTC (rev 274645)
+++ PKGBUILD2017-12-17 15:09:31 UTC (rev 274646)
@@ -3,7 +3,7 @@
 
 pkgbase=python-praw
 pkgname=('python-praw' 'python2-praw')
-pkgver=5.2.0
+pkgver=5.3.0
 pkgrel=1
 pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
 arch=('any')
@@ -15,7 +15,7 @@
 checkdepends=('python-mock' 'python2-mock' 'python-betamax-serializers'
   'python2-betamax-serializers' 'python-betamax-matchers' 
'python2-betamax-matchers')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
-sha512sums=('182e2caa94d93dad0d72a03ad47870280f453c964d173f15e03a1a7c9aa5940bf919492a67295630f970bceffa3babd23806da9b3833006c64a3c16d35b705a6')
+sha512sums=('5381b715401b8faf0cae50b9faa66c481154a76ee3ffefdaa6ae0268866b63447161a91f9d74129919d932437166fbe3a936a407306580d184700a840b63dec6')
 
 prepare() {
   cp -a praw-$pkgver{,-py2}


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 15:09:47
  Author: felixonmars
Revision: 274647

archrelease: copy trunk to community-testing-any

Added:
  python-praw/repos/community-testing-any/
  python-praw/repos/community-testing-any/PKGBUILD
(from rev 274646, python-praw/trunk/PKGBUILD)

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

Copied: python-praw/repos/community-testing-any/PKGBUILD (from rev 274646, 
python-praw/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-12-17 15:09:47 UTC (rev 274647)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-praw
+pkgname=('python-praw' 'python2-praw')
+pkgver=5.3.0
+pkgrel=1
+pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
+arch=('any')
+license=('GPL')
+url="http://praw.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-prawcore' 
'python2-prawcore'
+ 'python-update-checker' 'python2-update-checker' 
'python-pytest-runner'
+ 'python2-pytest-runner')
+checkdepends=('python-mock' 'python2-mock' 'python-betamax-serializers'
+  'python2-betamax-serializers' 'python-betamax-matchers' 
'python2-betamax-matchers')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
+sha512sums=('5381b715401b8faf0cae50b9faa66c481154a76ee3ffefdaa6ae0268866b63447161a91f9d74129919d932437166fbe3a936a407306580d184700a840b63dec6')
+
+prepare() {
+  cp -a praw-$pkgver{,-py2}
+}
+
+check() {
+  cd "$srcdir"/praw-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/praw-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-praw() {
+  depends=('python-prawcore' 'python-update-checker')
+
+  cd praw-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-praw() {
+  depends=('python2-prawcore' 'python2-update-checker')
+
+  cd praw-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in tar/trunk (01-When-extracting-skip-.-members.patch PKGBUILD)

2017-12-17 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 17, 2017 @ 16:05:29
  Author: seblu
Revision: 313254

upgpkg: tar 1.30-1

Modified:
  tar/trunk/PKGBUILD
Deleted:
  tar/trunk/01-When-extracting-skip-.-members.patch

-+
 01-When-extracting-skip-.-members.patch |   25 -
 PKGBUILD|   12 +---
 2 files changed, 5 insertions(+), 32 deletions(-)

Deleted: 01-When-extracting-skip-.-members.patch
===
--- 01-When-extracting-skip-.-members.patch 2017-12-17 13:56:53 UTC (rev 
313253)
+++ 01-When-extracting-skip-.-members.patch 2017-12-17 16:05:29 UTC (rev 
313254)
@@ -1,25 +0,0 @@
-diff --git a/src/extract.c b/src/extract.c
-index f982433..7904148 100644
 a/src/extract.c
-+++ b/src/extract.c
-@@ -1629,12 +1629,20 @@ extract_archive (void)
- {
-   char typeflag;
-   tar_extractor_t fun;
-+  bool skip_dotdot_name;
- 
-   fatal_exit_hook = extract_finish;
- 
-   set_next_block_after (current_header);
- 
-+  skip_dotdot_name = (!absolute_names_option
-+&& contains_dot_dot (current_stat_info.orig_file_name));
-+  if (skip_dotdot_name)
-+ERROR ((0, 0, _("%s: Member name contains '..'"),
-+  quotearg_colon (current_stat_info.orig_file_name)));
-+
-   if (!current_stat_info.file_name[0]
-+  || skip_dotdot_name
-   || (interactive_option
- && !confirm ("extract", current_stat_info.file_name)))
- {

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 13:56:53 UTC (rev 313253)
+++ PKGBUILD2017-12-17 16:05:29 UTC (rev 313254)
@@ -4,8 +4,8 @@
 # Contributor: Andreas Radke 
 
 pkgname=tar
-pkgver=1.29
-pkgrel=2
+pkgver=1.30
+pkgrel=1
 pkgdesc='Utility used to store, backup, and transport files'
 arch=('x86_64')
 url='https://www.gnu.org/software/tar/'
@@ -14,11 +14,9 @@
 depends=('glibc' 'acl' 'attr')
 options=('!emptydirs')
 validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732') # Sergey Poznyakoff
-source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig}
-'01-When-extracting-skip-.-members.patch')
-md5sums=('a1802fec550baaeecff6c381629653ef'
- 'SKIP'
- '21f9b5b3642b5476bd972189c33d06ca')
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('2d01c6cd1387be98f57a0ec4e6e35826'
+ 'SKIP')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-12-17 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 17, 2017 @ 16:05:37
  Author: seblu
Revision: 313255

archrelease: copy trunk to testing-x86_64

Added:
  tar/repos/testing-x86_64/
  tar/repos/testing-x86_64/PKGBUILD
(from rev 313254, tar/trunk/PKGBUILD)

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

Copied: tar/repos/testing-x86_64/PKGBUILD (from rev 313254, tar/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-17 16:05:37 UTC (rev 313255)
@@ -0,0 +1,50 @@
+# $Id$
+# Mainainer: Sébastien "Seblu" Luttringer 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=tar
+pkgver=1.30
+pkgrel=1
+pkgdesc='Utility used to store, backup, and transport files'
+arch=('x86_64')
+url='https://www.gnu.org/software/tar/'
+license=('GPL3')
+groups=('base')
+depends=('glibc' 'acl' 'attr')
+options=('!emptydirs')
+validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732') # Sergey Poznyakoff
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('2d01c6cd1387be98f57a0ec4e6e35826'
+ 'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # 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
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/tar
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 16:25:17
  Author: felixonmars
Revision: 274651

archrelease: copy trunk to community-x86_64

Added:
  haskell-turtle/repos/community-x86_64/PKGBUILD
(from rev 274650, haskell-turtle/trunk/PKGBUILD)
Deleted:
  haskell-turtle/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 16:24:49 UTC (rev 274650)
+++ PKGBUILD2017-12-17 16:25:17 UTC (rev 274651)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic 
-
-_hkgname=turtle
-pkgname=haskell-turtle
-pkgver=1.4.5
-pkgrel=6
-pkgdesc="Shell programming, Haskell-style"
-url="https://github.com/Gabriel439/Haskell-Turtle-Library;
-license=('custom:BSD3')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-foldl'
- 'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative' 
'haskell-optional-args'
- 'haskell-semigroups' 'haskell-stm' 'haskell-system-fileio' 
'haskell-system-filepath'
- 'haskell-temporary' 'haskell-text' 'haskell-unix-compat')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('bff4f8ae6c46748f095232d73f1415cafd8eebd02e8ee93a0e48a66fd5b3457988f647c574ab95216665da6e9f9678a13cd734511e682e4093f2fe02a20e86ef')
-
-build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
-install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-runhaskell Setup copy --destdir="${pkgdir}"
-install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-}

Copied: haskell-turtle/repos/community-x86_64/PKGBUILD (from rev 274650, 
haskell-turtle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 16:25:17 UTC (rev 274651)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-exceptions'
+ 'haskell-foldl' 'haskell-hostname' 'haskell-managed' 
'haskell-optparse-applicative'
+ 'haskell-optional-args' 'haskell-semigroups' 'haskell-stm' 
'haskell-system-fileio'
+ 'haskell-system-filepath' 'haskell-temporary' 'haskell-text' 
'haskell-unix-compat')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fcc775a63e1eec885556e5537656772da69da522d8c6d8445814359f0486c70580809d801c95febfa3bb2a4c75f2d017e602911b14d146d6c3756b3ca017a0b7')
+
+prepare() {
+sed -i 's/]/, "-dynamic"]/' $_hkgname-$pkgver/test/Main.hs
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 

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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 16:24:49
  Author: felixonmars
Revision: 274650

upgpkg: haskell-turtle 1.5.0-1

Modified:
  haskell-turtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 16:20:41 UTC (rev 274649)
+++ PKGBUILD2017-12-17 16:24:49 UTC (rev 274650)
@@ -4,25 +4,29 @@
 
 _hkgname=turtle
 pkgname=haskell-turtle
-pkgver=1.4.5
-pkgrel=6
+pkgver=1.5.0
+pkgrel=1
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library;
 license=('custom:BSD3')
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-foldl'
- 'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative' 
'haskell-optional-args'
- 'haskell-semigroups' 'haskell-stm' 'haskell-system-fileio' 
'haskell-system-filepath'
- 'haskell-temporary' 'haskell-text' 'haskell-unix-compat')
-makedepends=('ghc')
+depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-exceptions'
+ 'haskell-foldl' 'haskell-hostname' 'haskell-managed' 
'haskell-optparse-applicative'
+ 'haskell-optional-args' 'haskell-semigroups' 'haskell-stm' 
'haskell-system-fileio'
+ 'haskell-system-filepath' 'haskell-temporary' 'haskell-text' 
'haskell-unix-compat')
+makedepends=('ghc' 'haskell-doctest')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('bff4f8ae6c46748f095232d73f1415cafd8eebd02e8ee93a0e48a66fd5b3457988f647c574ab95216665da6e9f9678a13cd734511e682e4093f2fe02a20e86ef')
+sha512sums=('fcc775a63e1eec885556e5537656772da69da522d8c6d8445814359f0486c70580809d801c95febfa3bb2a4c75f2d017e602911b14d146d6c3756b3ca017a0b7')
 
+prepare() {
+sed -i 's/]/, "-dynamic"]/' $_hkgname-$pkgver/test/Main.hs
+}
+
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
-
+
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
 runhaskell Setup build
 runhaskell Setup register --gen-script
@@ -31,9 +35,14 @@
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
 package() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
-
+
 install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
 install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
 runhaskell Setup copy --destdir="${pkgdir}"


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

2017-12-17 Thread Christian Rebischke via arch-commits
Date: Sunday, December 17, 2017 @ 16:48:10
  Author: shibumi
Revision: 274652

upgpkg: packer-io 1.1.3-1

update to version 1.1.3

Modified:
  packer-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 16:25:17 UTC (rev 274651)
+++ PKGBUILD2017-12-17 16:48:10 UTC (rev 274652)
@@ -1,11 +1,11 @@
 # Maintainer: Christian Rebischke 
 _pkgname=packer
 pkgname=packer-io
-pkgver=1.1.2
+pkgver=1.1.3
 pkgrel=1
 pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
 arch=('x86_64')
-url="https://github.com/hashicorp/packer;
+url="9698d7283f790aa1d3755ccbd95a1a1cdea9390a"
 license=('MPL')
 makedepends=('git' 'go-pie' 'go-tools')
 depends=('glibc')


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

2017-12-17 Thread Christian Rebischke via arch-commits
Date: Sunday, December 17, 2017 @ 16:48:35
  Author: shibumi
Revision: 274653

archrelease: copy trunk to community-x86_64

Added:
  packer-io/repos/community-x86_64/PKGBUILD
(from rev 274652, packer-io/trunk/PKGBUILD)
Deleted:
  packer-io/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 16:48:10 UTC (rev 274652)
+++ PKGBUILD2017-12-17 16:48:35 UTC (rev 274653)
@@ -1,84 +0,0 @@
-# Maintainer: Christian Rebischke 
-_pkgname=packer
-pkgname=packer-io
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
-arch=('x86_64')
-url="https://github.com/hashicorp/packer;
-license=('MPL')
-makedepends=('git' 'go-pie' 'go-tools')
-depends=('glibc')
-_packer_commit='14183e6bc442559cd401618ff58293c29455b87c'
-_go_checkpoint_commit='1545e56e46dec3bba264e41fde2c1e2aa65b5dd4'
-_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
-_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
-_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
-_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
-_cli_commit='65fcae5817c8600da98ada9d7edf26dd1a84837b'
-_prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
-_go_radix_commit='1fca145dffbcaa8fe914309b1ec0cfc67500fe61'
-_speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
-_go_isatty_commit='6ca4dbf54d38eea1a992b3c722a76a5d1c4cb25c'
-source=("git+https://github.com/hashicorp/packer#commit=${_packer_commit};
-
"git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit};
-
"git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit};
-"git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit};
-"git+https://github.com/kardianos/osext#commit=${_osext_commit};
-
"git+https://github.com/mitchellh/panicwrap#commit=${_panicwrap_commit};
-"git+https://github.com/mitchellh/cli#commit=${_cli_commit};
-
"git+https://github.com/mitchellh/prefixedio#commit=${_prefixedio_commit};
-"git+https://github.com/armon/go-radix#commit=${_go_radix_commit};
-"git+https://github.com/bgentry/speakeasy#commit=${_speakeasy_commit};
-"git+https://github.com/mattn/go-isatty#commit=${_go_isatty_commit};)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-
-prepare() {
-  export GOPATH="${srcdir}"
-  export PATH="$PATH:$GOPATH/bin"
-  mkdir -p "src/github.com/mitchellh"
-  mkdir -p "src/github.com/hashicorp"
-  mkdir -p "src/github.com/kardianos"
-  mkdir -p "src/github.com/armon"
-  mkdir -p "src/github.com/bgentry"
-  mkdir -p "src/github.com/mattn"
-  mv ${_pkgname} src/github.com/hashicorp
-  mv go-checkpoint src/github.com/hashicorp
-  mv go-cleanhttp src/github.com/hashicorp
-  mv go-uuid src/github.com/hashicorp
-  mv osext src/github.com/kardianos
-  mv panicwrap src/github.com/mitchellh
-  mv cli src/github.com/mitchellh
-  mv prefixedio src/github.com/mitchellh
-  mv go-radix src/github.com/armon
-  mv speakeasy src/github.com/bgentry
-  mv go-isatty src/github.com/mattn
-  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i 
"${srcdir}/src/github.com/hashicorp/${_pkgname}/Makefile"
-}
-build() {
-  cd "src/github.com/hashicorp/${_pkgname}"
-  make dev
-}
-
-#check() {
-#  cd "src/github.com/hashicorp/${_pkgname}"
-#  make test
-#}
-
-package() {
-  cd "${srcdir}/bin/"
-  install -Dm755 packer "${pkgdir}/usr/bin/packer-io"
-}
-
-# vim:set et sw=2 ts=2 tw=79:

Copied: packer-io/repos/community-x86_64/PKGBUILD (from rev 274652, 
packer-io/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 16:48:35 UTC (rev 274653)
@@ -0,0 +1,84 @@
+# Maintainer: Christian Rebischke 
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
+arch=('x86_64')
+url="9698d7283f790aa1d3755ccbd95a1a1cdea9390a"
+license=('MPL')
+makedepends=('git' 'go-pie' 'go-tools')
+depends=('glibc')
+_packer_commit='14183e6bc442559cd401618ff58293c29455b87c'
+_go_checkpoint_commit='1545e56e46dec3bba264e41fde2c1e2aa65b5dd4'
+_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
+_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
+_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
+_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'

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

2017-12-17 Thread Christian Rebischke via arch-commits
Date: Sunday, December 17, 2017 @ 16:20:41
  Author: shibumi
Revision: 274649

archrelease: copy trunk to community-any

Added:
  electrum/repos/community-any/PKGBUILD
(from rev 274648, electrum/trunk/PKGBUILD)
Deleted:
  electrum/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 16:20:31 UTC (rev 274648)
+++ PKGBUILD2017-12-17 16:20:41 UTC (rev 274649)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=electrum
-pkgver=3.0.2
-pkgrel=1
-pkgdesc="Lightweight Bitcoin wallet"
-arch=('any')
-depends=('python-pyaes' 'python-ecdsa' 'python-pbkdf2' 'python-requests' 
'python-qrcode'
- 'python-protobuf' 'python-dnspython' 'python-jsonrpclib-pelix' 
'python-pysocks'
- 'python-pyqt5' 'python-pycryptodomex')
-makedepends=('python-setuptools')
-optdepends=('python-btchip: BTChip hardware wallet support'
-'python-matplotlib: plot transaction history in graphical mode'
-'zbar: QR code reading support')
-url="https://electrum.org;
-license=(MIT)
-source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('4dff75bc5f496f03ad7acbe33f7cec301955ef592b0276f2c518e94e47284f53'
-'SKIP')
-validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
-
-build() {
-  cd ${pkgname^}-${pkgver}
-
-  pyrcc5 icons.qrc -o gui/qt/icons_rc.py
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname^}-${pkgver}
-
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 274648, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 16:20:41 UTC (rev 274649)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Christian Rebischke 
+# Contributor: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=electrum
+pkgver=3.0.3
+pkgrel=1
+pkgdesc="Lightweight Bitcoin wallet"
+arch=('any')
+depends=('python-pyaes' 'python-ecdsa' 'python-pbkdf2' 'python-requests' 
'python-qrcode'
+ 'python-protobuf' 'python-dnspython' 'python-jsonrpclib-pelix' 
'python-pysocks'
+ 'python-pyqt5' 'python-pycryptodomex')
+makedepends=('python-setuptools')
+optdepends=('python-btchip: BTChip hardware wallet support'
+'python-matplotlib: plot transaction history in graphical mode'
+'zbar: QR code reading support')
+url="https://electrum.org;
+license=(MIT)
+source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('6628b6621e3502bb9782ec7ce0fd11a657c10dfaab6a5c4de4e4bae5bc1207fa55f642a92fcca08e1f342e0ecf8dd0c72134db7020e03df2ed6f81b27c49aa30'
+'SKIP')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
+build() {
+  cd "${pkgname^}-${pkgver}"
+
+  pyrcc5 icons.qrc -o gui/qt/icons_rc.py
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname^}-${pkgver}"
+
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
+}


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

2017-12-17 Thread Christian Rebischke via arch-commits
Date: Sunday, December 17, 2017 @ 16:20:31
  Author: shibumi
Revision: 274648

upgpkg: electrum 3.0.3-1

Updated to version 3.0.3

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 15:09:47 UTC (rev 274647)
+++ PKGBUILD2017-12-17 16:20:31 UTC (rev 274648)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer:
+# Maintainer: Christian Rebischke 
 # Contributor: Timothy Redaelli 
 # Contributor: Andy Weidenbaum 
 
 pkgname=electrum
-pkgver=3.0.2
+pkgver=3.0.3
 pkgrel=1
 pkgdesc="Lightweight Bitcoin wallet"
 arch=('any')
@@ -18,12 +18,12 @@
 url="https://electrum.org;
 license=(MIT)
 
source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('4dff75bc5f496f03ad7acbe33f7cec301955ef592b0276f2c518e94e47284f53'
+sha512sums=('6628b6621e3502bb9782ec7ce0fd11a657c10dfaab6a5c4de4e4bae5bc1207fa55f642a92fcca08e1f342e0ecf8dd0c72134db7020e03df2ed6f81b27c49aa30'
 'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 
 build() {
-  cd ${pkgname^}-${pkgver}
+  cd "${pkgname^}-${pkgver}"
 
   pyrcc5 icons.qrc -o gui/qt/icons_rc.py
   python setup.py build
@@ -30,8 +30,8 @@
 }
 
 package() {
-  cd ${pkgname^}-${pkgver}
+  cd "${pkgname^}-${pkgver}"
 
   python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
 }


[arch-commits] Commit in bird/trunk (PKGBUILD bird6.service)

2017-12-17 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 17, 2017 @ 17:03:44
  Author: seblu
Revision: 313256

upgpkg: bird 2.0.0-1

Modified:
  bird/trunk/PKGBUILD
Deleted:
  bird/trunk/bird6.service

---+
 PKGBUILD  |   67 ++--
 bird6.service |   12 --
 2 files changed, 13 insertions(+), 66 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 16:05:37 UTC (rev 313255)
+++ PKGBUILD2017-12-17 17:03:44 UTC (rev 313256)
@@ -1,30 +1,24 @@
 # $Id$
 # Maintainer: Sébastien Luttringer
 
-pkgbase=bird
-pkgname=('bird' 'bird6')
-pkgver=1.6.3
+pkgname=bird
+pkgver=2.0.0
 pkgrel=1
+pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babbel routing daemon'
 arch=('x86_64')
 url='http://bird.network.cz/'
 license=('GPL2')
-depends=('readline' 'ncurses')
-source=("ftp://bird.network.cz/pub/bird/${pkgname}-${pkgver}.tar.gz;
-'bird.service'
-'bird6.service')
-md5sums=('63dd93a7a23c274fc5b7f2e37664bfb7'
- '69221e063a3f07dcad519d5eeacaae75'
- '5b172bd052b523efd95ee018e891e181')
+backup=('etc/bird.conf')
+depends=('glibc' 'readline' 'ncurses')
+replaces=('bird6')
+source=("ftp://bird.network.cz/pub/bird/$pkgname-$pkgver.tar.gz;
+'bird.service')
+md5sums=('31cbd40f493d6e946e7cdf3158c4923a'
+ '69221e063a3f07dcad519d5eeacaae75')
 
 build() {
   cd $pkgbase-$pkgver
-  [[ -e _build4 ]] && rm -rf _build4
-  [[ -e _build6 ]] && rm -rf _build6
-  mkdir _build4 _build6
-
-  # build ipv4 bird
-  cd _build4
-  ../configure \
+  ./configure \
 --prefix=/usr \
 --sbindir=/usr/bin \
 --sysconfdir=/etc \
@@ -31,24 +25,11 @@
 --localstatedir=/var \
 --docdir=/usr/share/doc/$pkgname
   make
-
-  # build ipv6 bird
-  cd ../_build6
-  ../configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---docdir=/usr/share/doc/$pkgname \
---enable-ipv6
-  make
 }
 
-package_bird () {
-  pkgdesc='RIP, OSPFv2 and BGP daemon (ipv4 version)'
-  backup=('etc/bird.conf')
+package () {
 
-  cd $pkgbase-$pkgver/_build4
+  cd $pkgbase-$pkgver
   make \
 prefix="$pkgdir/usr" \
 sysconfdir="$pkgdir/etc" \
@@ -56,7 +37,6 @@
 localstatedir="$pkgdir/var" \
 docdir="$pkgdir/usr/share/doc/$pkgname" \
 install
-  #make docdir="$pkgdir/usr/share/doc/$pkgname" install-docs
 
   # no /var inside pkg
   rm -r "$pkgdir/var"
@@ -65,25 +45,4 @@
   install -D -m 644 "$srcdir/bird.service" 
"$pkgdir/usr/lib/systemd/system/bird.service"
 }
 
-package_bird6 () {
-  pkgdesc='RIP, OSPFv3, RADV and BGP daemon (ipv6 version)'
-  backup=('etc/bird6.conf')
-
-  cd $pkgbase-$pkgver/_build6
-  make \
-prefix="$pkgdir/usr" \
-sysconfdir="$pkgdir/etc" \
-sbindir="$pkgdir/usr/bin" \
-localstatedir="$pkgdir/var" \
-docdir="$pkgdir/usr/share/doc/$pkgname" \
-install
-  #make docdir="$pkgdir/usr/share/doc/$pkgname" install-docs
-
-  # no /var inside pkg
-  rm -r "$pkgdir/var"
-
-  # systemd
-  install -D -m 644 "$srcdir/bird6.service" 
"$pkgdir/usr/lib/systemd/system/bird6.service"
-}
-
 # vim:set ts=2 sw=2 et:

Deleted: bird6.service
===
--- bird6.service   2017-12-17 16:05:37 UTC (rev 313255)
+++ bird6.service   2017-12-17 17:03:44 UTC (rev 313256)
@@ -1,12 +0,0 @@
-[Unit]
-Description=BIRD IPv6 routing daemon
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/bird6
-ExecReload=/usr/bin/birdc6 configure
-ExecStop=/usr/bin/birdc6 down
-
-[Install]
-WantedBy=multi-user.target


[arch-commits] Commit in bird/repos/extra-x86_64 (5 files)

2017-12-17 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 17, 2017 @ 17:03:52
  Author: seblu
Revision: 313257

archrelease: copy trunk to extra-x86_64

Added:
  bird/repos/extra-x86_64/PKGBUILD
(from rev 313256, bird/trunk/PKGBUILD)
  bird/repos/extra-x86_64/bird.service
(from rev 313256, bird/trunk/bird.service)
Deleted:
  bird/repos/extra-x86_64/PKGBUILD
  bird/repos/extra-x86_64/bird.service
  bird/repos/extra-x86_64/bird6.service

---+
 PKGBUILD  |  137 +++-
 bird.service  |   24 -
 bird6.service |   12 
 3 files changed, 60 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 17:03:44 UTC (rev 313256)
+++ PKGBUILD2017-12-17 17:03:52 UTC (rev 313257)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=bird
-pkgname=('bird' 'bird6')
-pkgver=1.6.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://bird.network.cz/'
-license=('GPL2')
-depends=('readline' 'ncurses')
-source=("ftp://bird.network.cz/pub/bird/${pkgname}-${pkgver}.tar.gz;
-'bird.service'
-'bird6.service')
-md5sums=('63dd93a7a23c274fc5b7f2e37664bfb7'
- '69221e063a3f07dcad519d5eeacaae75'
- '5b172bd052b523efd95ee018e891e181')
-
-build() {
-  cd $pkgbase-$pkgver
-  [[ -e _build4 ]] && rm -rf _build4
-  [[ -e _build6 ]] && rm -rf _build6
-  mkdir _build4 _build6
-
-  # build ipv4 bird
-  cd _build4
-  ../configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---docdir=/usr/share/doc/$pkgname
-  make
-
-  # build ipv6 bird
-  cd ../_build6
-  ../configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---docdir=/usr/share/doc/$pkgname \
---enable-ipv6
-  make
-}
-
-package_bird () {
-  pkgdesc='RIP, OSPFv2 and BGP daemon (ipv4 version)'
-  backup=('etc/bird.conf')
-
-  cd $pkgbase-$pkgver/_build4
-  make \
-prefix="$pkgdir/usr" \
-sysconfdir="$pkgdir/etc" \
-sbindir="$pkgdir/usr/bin" \
-localstatedir="$pkgdir/var" \
-docdir="$pkgdir/usr/share/doc/$pkgname" \
-install
-  #make docdir="$pkgdir/usr/share/doc/$pkgname" install-docs
-
-  # no /var inside pkg
-  rm -r "$pkgdir/var"
-
-  # systemd
-  install -D -m 644 "$srcdir/bird.service" 
"$pkgdir/usr/lib/systemd/system/bird.service"
-}
-
-package_bird6 () {
-  pkgdesc='RIP, OSPFv3, RADV and BGP daemon (ipv6 version)'
-  backup=('etc/bird6.conf')
-
-  cd $pkgbase-$pkgver/_build6
-  make \
-prefix="$pkgdir/usr" \
-sysconfdir="$pkgdir/etc" \
-sbindir="$pkgdir/usr/bin" \
-localstatedir="$pkgdir/var" \
-docdir="$pkgdir/usr/share/doc/$pkgname" \
-install
-  #make docdir="$pkgdir/usr/share/doc/$pkgname" install-docs
-
-  # no /var inside pkg
-  rm -r "$pkgdir/var"
-
-  # systemd
-  install -D -m 644 "$srcdir/bird6.service" 
"$pkgdir/usr/lib/systemd/system/bird6.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bird/repos/extra-x86_64/PKGBUILD (from rev 313256, bird/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 17:03:52 UTC (rev 313257)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=bird
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babbel routing daemon'
+arch=('x86_64')
+url='http://bird.network.cz/'
+license=('GPL2')
+backup=('etc/bird.conf')
+depends=('glibc' 'readline' 'ncurses')
+replaces=('bird6')
+source=("ftp://bird.network.cz/pub/bird/$pkgname-$pkgver.tar.gz;
+'bird.service')
+md5sums=('31cbd40f493d6e946e7cdf3158c4923a'
+ '69221e063a3f07dcad519d5eeacaae75')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--docdir=/usr/share/doc/$pkgname
+  make
+}
+
+package () {
+
+  cd $pkgbase-$pkgver
+  make \
+prefix="$pkgdir/usr" \
+sysconfdir="$pkgdir/etc" \
+sbindir="$pkgdir/usr/bin" \
+localstatedir="$pkgdir/var" \
+docdir="$pkgdir/usr/share/doc/$pkgname" \
+install
+
+  # no /var inside pkg
+  rm -r "$pkgdir/var"
+
+  # systemd
+  install -D -m 644 "$srcdir/bird.service" 
"$pkgdir/usr/lib/systemd/system/bird.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: bird.service
===
--- bird.service2017-12-17 17:03:44 UTC (rev 313256)
+++ bird.service2017-12-17 17:03:52 UTC (rev 313257)
@@ -1,12 +0,0 @@
-[Unit]
-Description=BIRD routing daemon
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/bird
-ExecReload=/usr/bin/birdc configure
-ExecStop=/usr/bin/birdc down
-
-[Install]
-WantedBy=multi-user.target

Copied: bird/repos/extra-x86_64/bird.service (from rev 313256, 
bird/trunk/bird.service)

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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 11:36:07
  Author: arojas
Revision: 313239

archrelease: copy trunk to extra-x86_64

Added:
  kmix/repos/extra-x86_64/PKGBUILD
(from rev 313238, kmix/trunk/PKGBUILD)
Deleted:
  kmix/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 11:35:42 UTC (rev 313238)
+++ PKGBUILD2017-12-17 11:36:07 UTC (rev 313239)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kmix
-pkgver=17.12.0
-pkgrel=1
-pkgdesc="KDE volume control program"
-url='https://kde.org/applications/multimedia/kmix/'
-arch=(x86_64)
-license=(GPL LGPL FDL)
-depends=(kinit libcanberra hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools plasma-framework)
-conflicts=(kdemultimedia-kmix)
-replaces=(kdemultimedia-kmix)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('40c2f841e3026e0d3a9464ce4c6f172ae9c705b249ddde365b26910b3e87e7a1'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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

Copied: kmix/repos/extra-x86_64/PKGBUILD (from rev 313238, kmix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 11:36:07 UTC (rev 313239)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kmix
+pkgver=17.12.0
+pkgrel=2
+pkgdesc="KDE volume control program"
+url='https://kde.org/applications/multimedia/kmix/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kinit libcanberra hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools plasma-framework)
+conflicts=(kdemultimedia-kmix)
+replaces=(kdemultimedia-kmix)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('40c2f841e3026e0d3a9464ce4c6f172ae9c705b249ddde365b26910b3e87e7a1'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 11:35:42
  Author: arojas
Revision: 313238

Push again, package was removed with kdemultimedia-kmix

Modified:
  kmix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 11:12:05 UTC (rev 313237)
+++ PKGBUILD2017-12-17 11:35:42 UTC (rev 313238)
@@ -4,7 +4,7 @@
 
 pkgname=kmix
 pkgver=17.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE volume control program"
 url='https://kde.org/applications/multimedia/kmix/'
 arch=(x86_64)


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 11:58:32
  Author: heftig
Revision: 313248

archrelease: copy trunk to extra-x86_64

Added:
  evolution-ews/repos/extra-x86_64/PKGBUILD
(from rev 313247, evolution-ews/trunk/PKGBUILD)
Deleted:
  evolution-ews/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 11:57:13 UTC (rev 313247)
+++ PKGBUILD2017-12-17 11:58:32 UTC (rev 313248)
@@ -1,35 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.26.2
-pkgrel=2
-pkgdesc="MS Exchange integration through Exchange Web Services"
-url="https://wiki.gnome.org/Apps/Evolution/EWS;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(libmspack evolution)
-makedepends=(git cmake ninja intltool python)
-options=(!emptydirs)
-_commit=fb9752275bfb34054f6ba6df3cb2b3bb87d82662  # tags/EVOLUTION_EWS_3_26_2^0
-source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_EWS_//;s/_/./g;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  cmake . -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBEXEC_INSTALL_DIR=/usr/lib/evolution \
--DSYSCONF_INSTALL_DIR=/etc
-  ninja
-}
-
-package() {
-  cd $pkgname
-  DESTDIR="$pkgdir" ninja install
-}

Copied: evolution-ews/repos/extra-x86_64/PKGBUILD (from rev 313247, 
evolution-ews/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 11:58:32 UTC (rev 313248)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=evolution-ews
+pkgver=3.26.3
+pkgrel=1
+pkgdesc="MS Exchange integration through Exchange Web Services"
+url="https://wiki.gnome.org/Apps/Evolution/EWS;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(libmspack evolution)
+makedepends=(git cmake ninja intltool python)
+options=(!emptydirs)
+_commit=d7598da5df4ca80aee73b13a407dda9865fba06d  # tags/EVOLUTION_EWS_3_26_3^0
+source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EVOLUTION_EWS_//;s/_/./g;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  cmake . -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib/evolution \
+-DSYSCONF_INSTALL_DIR=/etc
+  ninja
+}
+
+package() {
+  cd $pkgname
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in qca/trunk (PKGBUILD qca-openssl-1.1.patch)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 12:45:50
  Author: arojas
Revision: 313249

Add support for openssl 1.1

Added:
  qca/trunk/qca-openssl-1.1.patch
Modified:
  qca/trunk/PKGBUILD

---+
 PKGBUILD  |   26 
 qca-openssl-1.1.patch | 2036 
 2 files changed, 2048 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 11:58:32 UTC (rev 313248)
+++ PKGBUILD2017-12-17 12:45:50 UTC (rev 313249)
@@ -6,17 +6,21 @@
 pkgbase=qca
 pkgname=(qca-qt4 qca-qt5)
 pkgver=2.1.3
-pkgrel=5
+pkgrel=6
 pkgdesc="Qt Cryptographic Architecture"
 arch=(x86_64)
 url="http://delta.affinix.com/qca/;
 license=(LGPL)
-makedepends=(qt4 qt5-base cmake doxygen nss pkcs11-helper botan1.10 
openssl-1.0)
-source=("http://download.kde.org/stable/$pkgbase/$pkgver/src/$pkgbase-$pkgver.tar.xz;)
-md5sums=('5019cc29efcf828681cd93164238ce26')
+makedepends=(qt4 qt5-base cmake doxygen nss pkcs11-helper botan1.10)
+source=("http://download.kde.org/stable/$pkgbase/$pkgver/src/$pkgbase-$pkgver.tar.xz;
 qca-openssl-1.1.patch)
+sha256sums=('003fd86a32421057a03b18a8168db52e2940978f9db5ebbb6a08882f8ab1e353'
+'b1505bc313fd2f4e350cd4c94af69256c901afa419ae6700b208cb6e40e6926d')
 
 prepare() {
   mkdir -p build{4,5}
+
+  cd $pkgbase-$pkgver
+  patch -p1 -i ../qca-openssl-1.1.patch # Fix build with OpenSSL 1.1 
https://bugs.kde.org/show_bug.cgi?id=379810
 }
 
 build() {
@@ -27,10 +31,7 @@
 -DBUILD_TESTS=OFF \
 -DQCA_LIBRARY_INSTALL_DIR=/usr/lib \
 -DQCA_FEATURE_INSTALL_DIR=/usr/share/qt4/mkspecs/features/ \
--DQT4_BUILD=ON \
--DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
--DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
--DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
+-DQT4_BUILD=ON
   make
 
   cd ../build5
@@ -39,16 +40,13 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DBUILD_TESTS=OFF \
 -DQCA_INSTALL_IN_QT_PREFIX=ON \
--DQCA_MAN_INSTALL_DIR=/usr/share/man \
--DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
--DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
--DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
+-DQCA_MAN_INSTALL_DIR=/usr/share/man
   make
 }
 
 package_qca-qt4() {
   depends=(qt4 nss)
-  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan1.10: botan plugin' 
'openssl-1.0: OpenSSL plugin')
+  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan1.10: botan plugin')
   conflicts=(qca qca-gnupg qca-ossl)
   provides=(qca qca-gnupg qca-ossl)
   replaces=(qca qca-gnupg qca-ossl)
@@ -59,7 +57,7 @@
 
 package_qca-qt5() {
   depends=(qt5-base nss ca-certificates)
-  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan1.10: botan plugin' 
'openssl-1.0: OpenSSL plugin')
+  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan1.10: botan plugin')
 
   cd build5
   make DESTDIR="$pkgdir" install

Added: qca-openssl-1.1.patch
===
--- qca-openssl-1.1.patch   (rev 0)
+++ qca-openssl-1.1.patch   2017-12-17 12:45:50 UTC (rev 313249)
@@ -0,0 +1,2036 @@
+diff --git a/plugins/qca-ossl/CMakeLists.txt b/plugins/qca-ossl/CMakeLists.txt
+index cdeaeca..f7c5c1b 100644
+--- a/plugins/qca-ossl/CMakeLists.txt
 b/plugins/qca-ossl/CMakeLists.txt
+@@ -32,7 +32,7 @@ if(OPENSSL_FOUND)
+ message(WARNING "qca-ossl will be compiled without SHA-0 digest algorithm 
support")
+   endif(HAVE_OPENSSL_SHA0)
+ 
+-  set(QCA_OSSL_SOURCES qca-ossl.cpp)
++  set(QCA_OSSL_SOURCES libcrypto-compat.c qca-ossl.cpp)
+ 
+   my_automoc( QCA_OSSL_SOURCES )
+ 
+diff --git a/plugins/qca-ossl/libcrypto-compat.c 
b/plugins/qca-ossl/libcrypto-compat.c
+index e69de29..b587845 100644
+--- a/plugins/qca-ossl/libcrypto-compat.c
 b/plugins/qca-ossl/libcrypto-compat.c
+@@ -0,0 +1,410 @@
++/*
++ * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
++ *
++ * Licensed under the OpenSSL license (the "License").  You may not use
++ * this file except in compliance with the License.  You can obtain a copy
++ * in the file LICENSE in the source distribution or at
++ * https://www.openssl.org/source/license.html
++ */
++
++#include 
++
++#if OPENSSL_VERSION_NUMBER < 0x1010L
++
++#include 
++#include 
++
++static void *OPENSSL_zalloc(size_t num)
++{
++void *ret = OPENSSL_malloc(num);
++
++if (ret != NULL)
++memset(ret, 0, num);
++return ret;
++}
++
++int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d)
++{
++/* If the fields n and e in r are NULL, the corresponding input
++ * parameters MUST be non-NULL for n and e.  d may be
++ * left NULL (in case only the public key is used).
++ */
++if ((r->n == NULL && n == NULL)
++|| (r->e == NULL && e == NULL))
++return 0;
++
++if (n != NULL) {
++BN_free(r->n);
++r->n = n;
++}
++if (e != NULL) {
++

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

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

archrelease: copy trunk to testing-x86_64

Added:
  qca/repos/testing-x86_64/
  qca/repos/testing-x86_64/PKGBUILD
(from rev 313249, qca/trunk/PKGBUILD)
  qca/repos/testing-x86_64/qca-openssl-1.1.patch
(from rev 313249, qca/trunk/qca-openssl-1.1.patch)

---+
 PKGBUILD  |   66 +
 qca-openssl-1.1.patch | 2036 
 2 files changed, 2102 insertions(+)

Copied: qca/repos/testing-x86_64/PKGBUILD (from rev 313249, qca/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-17 12:46:18 UTC (rev 313250)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=qca
+pkgname=(qca-qt4 qca-qt5)
+pkgver=2.1.3
+pkgrel=6
+pkgdesc="Qt Cryptographic Architecture"
+arch=(x86_64)
+url="http://delta.affinix.com/qca/;
+license=(LGPL)
+makedepends=(qt4 qt5-base cmake doxygen nss pkcs11-helper botan1.10)
+source=("http://download.kde.org/stable/$pkgbase/$pkgver/src/$pkgbase-$pkgver.tar.xz;
 qca-openssl-1.1.patch)
+sha256sums=('003fd86a32421057a03b18a8168db52e2940978f9db5ebbb6a08882f8ab1e353'
+'b1505bc313fd2f4e350cd4c94af69256c901afa419ae6700b208cb6e40e6926d')
+
+prepare() {
+  mkdir -p build{4,5}
+
+  cd $pkgbase-$pkgver
+  patch -p1 -i ../qca-openssl-1.1.patch # Fix build with OpenSSL 1.1 
https://bugs.kde.org/show_bug.cgi?id=379810
+}
+
+build() {
+  cd build4
+  cmake ../$pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=OFF \
+-DQCA_LIBRARY_INSTALL_DIR=/usr/lib \
+-DQCA_FEATURE_INSTALL_DIR=/usr/share/qt4/mkspecs/features/ \
+-DQT4_BUILD=ON
+  make
+
+  cd ../build5
+  cmake ../$pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=OFF \
+-DQCA_INSTALL_IN_QT_PREFIX=ON \
+-DQCA_MAN_INSTALL_DIR=/usr/share/man
+  make
+}
+
+package_qca-qt4() {
+  depends=(qt4 nss)
+  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan1.10: botan plugin')
+  conflicts=(qca qca-gnupg qca-ossl)
+  provides=(qca qca-gnupg qca-ossl)
+  replaces=(qca qca-gnupg qca-ossl)
+
+  cd build4
+  make DESTDIR="$pkgdir" install
+}
+
+package_qca-qt5() {
+  depends=(qt5-base nss ca-certificates)
+  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan1.10: botan plugin')
+
+  cd build5
+  make DESTDIR="$pkgdir" install
+}
+
+

Copied: qca/repos/testing-x86_64/qca-openssl-1.1.patch (from rev 313249, 
qca/trunk/qca-openssl-1.1.patch)
===
--- testing-x86_64/qca-openssl-1.1.patch(rev 0)
+++ testing-x86_64/qca-openssl-1.1.patch2017-12-17 12:46:18 UTC (rev 
313250)
@@ -0,0 +1,2036 @@
+diff --git a/plugins/qca-ossl/CMakeLists.txt b/plugins/qca-ossl/CMakeLists.txt
+index cdeaeca..f7c5c1b 100644
+--- a/plugins/qca-ossl/CMakeLists.txt
 b/plugins/qca-ossl/CMakeLists.txt
+@@ -32,7 +32,7 @@ if(OPENSSL_FOUND)
+ message(WARNING "qca-ossl will be compiled without SHA-0 digest algorithm 
support")
+   endif(HAVE_OPENSSL_SHA0)
+ 
+-  set(QCA_OSSL_SOURCES qca-ossl.cpp)
++  set(QCA_OSSL_SOURCES libcrypto-compat.c qca-ossl.cpp)
+ 
+   my_automoc( QCA_OSSL_SOURCES )
+ 
+diff --git a/plugins/qca-ossl/libcrypto-compat.c 
b/plugins/qca-ossl/libcrypto-compat.c
+index e69de29..b587845 100644
+--- a/plugins/qca-ossl/libcrypto-compat.c
 b/plugins/qca-ossl/libcrypto-compat.c
+@@ -0,0 +1,410 @@
++/*
++ * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
++ *
++ * Licensed under the OpenSSL license (the "License").  You may not use
++ * this file except in compliance with the License.  You can obtain a copy
++ * in the file LICENSE in the source distribution or at
++ * https://www.openssl.org/source/license.html
++ */
++
++#include 
++
++#if OPENSSL_VERSION_NUMBER < 0x1010L
++
++#include 
++#include 
++
++static void *OPENSSL_zalloc(size_t num)
++{
++void *ret = OPENSSL_malloc(num);
++
++if (ret != NULL)
++memset(ret, 0, num);
++return ret;
++}
++
++int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d)
++{
++/* If the fields n and e in r are NULL, the corresponding input
++ * parameters MUST be non-NULL for n and e.  d may be
++ * left NULL (in case only the public key is used).
++ */
++if ((r->n == NULL && n == NULL)
++|| (r->e == NULL && e == NULL))
++return 0;
++
++if (n != NULL) {
++BN_free(r->n);
++r->n = n;
++}
++if (e != NULL) {
++BN_free(r->e);
++r->e = e;
++}
++if (d != NULL) {
++BN_free(r->d);
++r->d = d;
++}
++
++return 1;
++}
++
++int RSA_set0_factors(RSA 

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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 13:08:21
  Author: arojas
Revision: 274641

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 13:08:00 UTC (rev 274640)
+++ PKGBUILD2017-12-17 13:08:21 UTC (rev 274641)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Diego Galizzi 
-# Contributor: zoulnix 
-
-pkgname=cimg
-pkgver=2.0.2
-pkgrel=1
-pkgdesc="Open-source C++ toolkit for image processing"
-arch=('any')
-url="http://cimg.eu/;
-license=('CeCiLL-C' 'CeCiLL')
-depends=('fftw' 'graphicsmagick')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver//./}.tar.gz;)
-sha256sums=('809bc7737bd4261378fb16d43056f79d3171d17f87cdfa738d74386213a9c721')
-
-package() {
-  cd "${srcdir}"/CImg-v.${pkgver//./}
-  install -d "${pkgdir}"/usr/include/CImg/plugins 
${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 CImg.h "${pkgdir}"/usr/include/
-  install -m644 plugins/*.h "${pkgdir}"/usr/include/CImg/plugins/
-  install -m644 Licence_CeCILL*_V*-en.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: cimg/repos/community-any/PKGBUILD (from rev 274640, cimg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 13:08:21 UTC (rev 274641)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Diego Galizzi 
+# Contributor: zoulnix 
+
+pkgname=cimg
+pkgver=2.1.5
+pkgrel=1
+pkgdesc="Open-source C++ toolkit for image processing"
+arch=('any')
+url="http://cimg.eu/;
+license=('CeCiLL-C' 'CeCiLL')
+depends=('fftw' 'graphicsmagick')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver//./}.tar.gz;)
+sha256sums=('c97e7d268d9832d71cfee0f45ed5d965441b7c8cb7566570531db41e9556391d')
+
+package() {
+  cd "${srcdir}"/CImg-v.${pkgver//./}
+  install -d "${pkgdir}"/usr/include/CImg/plugins 
${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 CImg.h "${pkgdir}"/usr/include/
+  install -m644 plugins/*.h "${pkgdir}"/usr/include/CImg/plugins/
+  install -m644 Licence_CeCILL*_V*-en.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 13:08:00
  Author: arojas
Revision: 274640

Update to 2.1.5

Modified:
  cimg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 11:50:32 UTC (rev 274639)
+++ PKGBUILD2017-12-17 13:08:00 UTC (rev 274640)
@@ -4,7 +4,7 @@
 # Contributor: zoulnix 
 
 pkgname=cimg
-pkgver=2.0.2
+pkgver=2.1.5
 pkgrel=1
 pkgdesc="Open-source C++ toolkit for image processing"
 arch=('any')
@@ -12,7 +12,7 @@
 license=('CeCiLL-C' 'CeCiLL')
 depends=('fftw' 'graphicsmagick')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver//./}.tar.gz;)
-sha256sums=('809bc7737bd4261378fb16d43056f79d3171d17f87cdfa738d74386213a9c721')
+sha256sums=('c97e7d268d9832d71cfee0f45ed5d965441b7c8cb7566570531db41e9556391d')
 
 package() {
   cd "${srcdir}"/CImg-v.${pkgver//./}


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 13:20:31
  Author: arojas
Revision: 313251

Fix double context menu in folder view (KDEBUG#387199)

Modified:
  plasma-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 12:46:18 UTC (rev 313250)
+++ PKGBUILD2017-12-17 13:20:31 UTC (rev 313251)
@@ -6,18 +6,20 @@
 pkgbase=plasma-desktop
 pkgname=(plasma-desktop knetattach)
 pkgver=5.11.4
-pkgrel=1
+pkgrel=2
 pkgdesc='KDE Plasma Desktop'
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'
 license=(LGPL)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdebug-387199.patch::"https://cgit.kde.org/plasma-desktop.git/patch/?id=0d3f000f;)
 depends=(polkit-kde-agent libcanberra libxkbfile kmenuedit appstream-qt 
systemsettings ksysguard kpeople baloo qt5-graphicaleffects)
 makedepends=(extra-cmake-modules kdoctools boost xf86-input-evdev 
xf86-input-synaptics xorg-server-devel
  libibus scim python kdesignerplugin)
 groups=(plasma)
 sha256sums=('38efe3488375093fe2efbd50ddd9ea2d2b0381867dfcaefb7ca70b54a24bac29'
-'SKIP')
+'SKIP'
+'0d5b8c55ddcba94c31fbb7e676cd790f5f1a7d725b6dd58dca986df026a21ac4')
 validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
   '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
   'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
@@ -24,6 +26,9 @@
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-387199.patch # Fix double context menu in folder view 
with Qt 5.10 https://bugs.kde.org/show_bug.cgi?id=387199
 }
 
 build() {


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 13:27:04
  Author: arojas
Revision: 313252

archrelease: copy trunk to extra-x86_64

Added:
  plasma-desktop/repos/extra-x86_64/PKGBUILD
(from rev 313251, plasma-desktop/trunk/PKGBUILD)
Deleted:
  plasma-desktop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 13:20:31 UTC (rev 313251)
+++ PKGBUILD2017-12-17 13:27:04 UTC (rev 313252)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=plasma-desktop
-pkgname=(plasma-desktop knetattach)
-pkgver=5.11.4
-pkgrel=1
-pkgdesc='KDE Plasma Desktop'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-depends=(polkit-kde-agent libcanberra libxkbfile kmenuedit appstream-qt 
systemsettings ksysguard kpeople baloo qt5-graphicaleffects)
-makedepends=(extra-cmake-modules kdoctools boost xf86-input-evdev 
xf86-input-synaptics xorg-server-devel
- libibus scim python kdesignerplugin)
-groups=(plasma)
-sha256sums=('38efe3488375093fe2efbd50ddd9ea2d2b0381867dfcaefb7ca70b54a24bac29'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_plasma-desktop() {
-  depends+=(knetattach)
-  optdepends=('plasma-nm: Network manager applet'
-  'powerdevil: power management'
-  'ibus: kimpanel IBUS support'
-  'scim: kimpanel SCIM support'
-  'discover: manage applications installation from the launcher')
-
-  cd build
-  make DESTDIR="$pkgdir" install
-
-# Split knetattach
-  rm 
"$pkgdir"/usr/{bin/knetattach,share/applications/org.kde.knetattach.desktop}
-}
-
-package_knetattach() {
-  pkgdesc='Wizard which makes it easier to integrate network resources with 
the Plasma Desktop'
-  depends=(kdelibs4support)
-
-  cd build/knetattach
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-desktop/repos/extra-x86_64/PKGBUILD (from rev 313251, 
plasma-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 13:27:04 UTC (rev 313252)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=plasma-desktop
+pkgname=(plasma-desktop knetattach)
+pkgver=5.11.4
+pkgrel=2
+pkgdesc='KDE Plasma Desktop'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdebug-387199.patch::"https://cgit.kde.org/plasma-desktop.git/patch/?id=0d3f000f;)
+depends=(polkit-kde-agent libcanberra libxkbfile kmenuedit appstream-qt 
systemsettings ksysguard kpeople baloo qt5-graphicaleffects)
+makedepends=(extra-cmake-modules kdoctools boost xf86-input-evdev 
xf86-input-synaptics xorg-server-devel
+ libibus scim python kdesignerplugin)
+groups=(plasma)
+sha256sums=('38efe3488375093fe2efbd50ddd9ea2d2b0381867dfcaefb7ca70b54a24bac29'
+'SKIP'
+'0d5b8c55ddcba94c31fbb7e676cd790f5f1a7d725b6dd58dca986df026a21ac4')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-387199.patch # Fix double context menu in folder view 
with Qt 5.10 https://bugs.kde.org/show_bug.cgi?id=387199
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package_plasma-desktop() {
+  depends+=(knetattach)
+  optdepends=('plasma-nm: Network manager applet'
+  'powerdevil: power management'
+  'ibus: kimpanel IBUS support'
+  'scim: kimpanel SCIM support'
+  'discover: manage applications installation from the 

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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 11:04:38
  Author: arojas
Revision: 313236

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 313235, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 313235, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  282 +++---
 arch-fonts.diff |  214 
 2 files changed, 248 insertions(+), 248 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 11:04:13 UTC (rev 313235)
+++ PKGBUILD2017-12-17 11:04:38 UTC (rev 313236)
@@ -1,141 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.7.14
-pkgrel=1
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('1cf7623055bd0d3b52774562fc6321ef9f8c1d74b4c5d9818f095c6762621712'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---with-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc \
---without-jbig
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_libmagick() {
-  pkgdesc+=" (library)"
-  optdepends=('ghostscript: PS/PDF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split 'imagemagick'
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-}
-
-package_imagemagick() {
-  depends=("libmagick=$pkgver-$pkgrel")
-  optdepends=('imagemagick-doc: manual and API docs')
-  options=('!emptydirs')
-
-  mv binpkg/* "$pkgdir"
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-_perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-_perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-  depends=()
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE 

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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 11:04:13
  Author: arojas
Revision: 313235

Update to 7.0.7.15

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 10:08:17 UTC (rev 313234)
+++ PKGBUILD2017-12-17 11:04:13 UTC (rev 313235)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.7.14
+pkgver=7.0.7.15
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -17,7 +17,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('1cf7623055bd0d3b52774562fc6321ef9f8c1d74b4c5d9818f095c6762621712'
+sha256sums=('9809be6bab0c5258721a5c5bbe8bccf61357b506024f8514d94e9efcd575a69d'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 11:50:11
  Author: felixonmars
Revision: 274637

upgpkg: python-hypothesis 3.43.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 11:50:09 UTC (rev 274636)
+++ PKGBUILD2017-12-17 11:50:11 UTC (rev 274637)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.43.0
+pkgver=3.43.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('13deab408ad1d01c20e7aac2abba9c2955421c43ed843748e2ec42cb3d892004ecae6accda953d2db9855dd6bd7d1df16b55bedda8e78d3f4c2e3e051c32469e')
+sha512sums=('348d1b996b9600eac488b9e5b6a69aff2186429dca94e27dbe7b662954c32219fcb8ea4ee0701b43c9ea8c5dd1e2ca88d835bf5fe01b2cc84fe0dcf97c3913cc')
 
 prepare() {
   # Make tests faster


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 11:50:32
  Author: felixonmars
Revision: 274639

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  156 ++---
 1 file changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 11:50:14 UTC (rev 274638)
+++ PKGBUILD2017-12-17 11:50:32 UTC (rev 274639)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.43.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('13deab408ad1d01c20e7aac2abba9c2955421c43ed843748e2ec42cb3d892004ecae6accda953d2db9855dd6bd7d1df16b55bedda8e78d3f4c2e3e051c32469e')
-
-prepare() {
-  # Make tests faster
-  sed -i 's/ -n 2$/ -n 16/' hypothesis-python-$pkgver/tox.ini
-
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 274638, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 11:50:32 UTC (rev 274639)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.43.1
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)

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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 11:55:36
  Author: heftig
Revision: 313245

3.26.3-1

Modified:
  evolution-ews/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 11:51:06 UTC (rev 313244)
+++ PKGBUILD2017-12-17 11:55:36 UTC (rev 313245)
@@ -2,8 +2,8 @@
 # Contributor: Ionut Biru 
 
 pkgname=evolution-ews
-pkgver=3.26.2
-pkgrel=2
+pkgver=3.26.3
+pkgrel=1
 pkgdesc="MS Exchange integration through Exchange Web Services"
 url="https://wiki.gnome.org/Apps/Evolution/EWS;
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(libmspack evolution)
 makedepends=(git cmake ninja intltool python)
 options=(!emptydirs)
-_commit=fb9752275bfb34054f6ba6df3cb2b3bb87d82662  # tags/EVOLUTION_EWS_3_26_2^0
+_commit=d7598da5df4ca80aee73b13a407dda9865fba06d  # tags/EVOLUTION_EWS_3_26_3^0
 source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 11:57:13
  Author: heftig
Revision: 313247

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick6/repos/extra-x86_64/PKGBUILD
(from rev 313246, imagemagick6/trunk/PKGBUILD)
  imagemagick6/repos/extra-x86_64/arch-fonts.diff
(from rev 313246, imagemagick6/trunk/arch-fonts.diff)
Deleted:
  imagemagick6/repos/extra-x86_64/PKGBUILD
  imagemagick6/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  264 +++---
 arch-fonts.diff |  214 +--
 2 files changed, 239 insertions(+), 239 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 11:56:19 UTC (rev 313246)
+++ PKGBUILD2017-12-17 11:57:13 UTC (rev 313247)
@@ -1,132 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick6
-pkgname=(libmagick6 imagemagick6)
-pkgver=6.9.9.26
-pkgrel=1
-pkgdesc="An image viewing/manipulation program (version 6)"
-url="https://www.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('dcf23a7356a970e613a9fa2cfaa64c999ea8e278a45aec4905e54398d6c12c83'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---with-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc \
---without-jbig
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_libmagick6() {
-  pkgdesc="${pkgdesc/)/; library)}"
-  optdepends=('ghostscript: PS/PDF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!docs' '!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p "$pkgdir/usr/lib/$pkgbase/pkgconfig"
-  mv "$pkgdir"/usr/lib/pkgconfig/!(*Q16HDRI*) 
"$pkgdir/usr/lib/$pkgbase/pkgconfig/"
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split 'imagemagick'
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-}
-
-package_imagemagick6() {
-  depends=("libmagick6=$pkgver-$pkgrel")
-  provides=("imagemagick=$pkgver-$pkgrel")
-  conflicts=(imagemagick)
-  options=('!emptydirs')
-
-  mv binpkg/* "$pkgdir"
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-_perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-_perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagemagick6/repos/extra-x86_64/PKGBUILD (from rev 313246, 

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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 11:56:19
  Author: heftig
Revision: 313246

6.9.9.27-1

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 11:55:36 UTC (rev 313245)
+++ PKGBUILD2017-12-17 11:56:19 UTC (rev 313246)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6 imagemagick6)
-pkgver=6.9.9.26
+pkgver=6.9.9.27
 pkgrel=1
 pkgdesc="An image viewing/manipulation program (version 6)"
 url="https://www.imagemagick.org/;
@@ -17,7 +17,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('dcf23a7356a970e613a9fa2cfaa64c999ea8e278a45aec4905e54398d6c12c83'
+sha256sums=('27d0090b6a019eb038d254a9eb8d8939ac0d225b5dc651abc9212bb7c257e17c'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 14:57:44
  Author: felixonmars
Revision: 274645

archrelease: copy trunk to community-testing-any

Added:
  python-prawcore/repos/community-testing-any/
  python-prawcore/repos/community-testing-any/PKGBUILD
(from rev 274644, python-prawcore/trunk/PKGBUILD)

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

Copied: python-prawcore/repos/community-testing-any/PKGBUILD (from rev 274644, 
python-prawcore/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-12-17 14:57:44 UTC (rev 274645)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-prawcore
+pkgname=('python-prawcore' 'python2-prawcore')
+pkgver=0.13.0
+pkgrel=1
+pkgdesc="Low-level communication layer for PRAW 4+."
+arch=('any')
+license=('BSD')
+url="https://github.com/praw-dev/prawcore;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
+checkdepends=('python-mock' 'python2-mock' 'python-betamax-matchers' 
'python2-betamax-matchers'
+  'python-betamax-serializers' 'python2-betamax-serializers' 
'python-testfixtures'
+  'python2-testfixtures')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/prawcore/archive/v$pkgver.tar.gz;)
+sha512sums=('90e5d2182a4d707685bc3d3b33f6d08e66d030e65faf9de1d2038ac9b1ab6f9955378599c218ddb4849d213074f49f069a2746fd9223227010f3b67d863a4dfe')
+
+prepare() {
+  cp -a prawcore-$pkgver{,-py2}
+}
+
+check() {
+  cd "$srcdir"/prawcore-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/prawcore-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-prawcore() {
+  depends=('python-requests')
+
+  cd prawcore-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-prawcore() {
+  depends=('python2-requests')
+
+  cd prawcore-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 14:57:28
  Author: felixonmars
Revision: 274644

upgpkg: python-prawcore 0.13.0-1

Modified:
  python-prawcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 13:58:37 UTC (rev 274643)
+++ PKGBUILD2017-12-17 14:57:28 UTC (rev 274644)
@@ -3,7 +3,7 @@
 
 pkgbase=python-prawcore
 pkgname=('python-prawcore' 'python2-prawcore')
-pkgver=0.12.0
+pkgver=0.13.0
 pkgrel=1
 pkgdesc="Low-level communication layer for PRAW 4+."
 arch=('any')
@@ -14,7 +14,7 @@
   'python-betamax-serializers' 'python2-betamax-serializers' 
'python-testfixtures'
   'python2-testfixtures')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/prawcore/archive/v$pkgver.tar.gz;)
-sha512sums=('0dcbd5a26ca7c139a1ac0da41078faf86a2b297add122839e66cc7c18f1fd120d5d8a535a5d901ae9d06a9c0a151f221a062abb93da004afd9bb8b7e6fedfe48')
+sha512sums=('90e5d2182a4d707685bc3d3b33f6d08e66d030e65faf9de1d2038ac9b1ab6f9955378599c218ddb4849d213074f49f069a2746fd9223227010f3b67d863a4dfe')
 
 prepare() {
   cp -a prawcore-$pkgver{,-py2}


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

2017-12-17 Thread Levente Polyak via arch-commits
Date: Sunday, December 17, 2017 @ 18:36:40
  Author: anthraxx
Revision: 274655

archrelease: copy trunk to community-any

Added:
  vim-vital/repos/community-any/
  vim-vital/repos/community-any/PKGBUILD
(from rev 274654, vim-vital/trunk/PKGBUILD)

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

Copied: vim-vital/repos/community-any/PKGBUILD (from rev 274654, 
vim-vital/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-12-17 18:36:40 UTC (rev 274655)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+
+pkgname=vim-vital
+_gitcommit=982e0bf3a5c181c0fa9d37bab784412f941f6b80
+pkgver=3113.982e0bf3
+pkgrel=1
+pkgdesc='Comprehensive Vim utility functions for Vim plugins'
+url='https://github.com/vim-jp/vital.vim'
+arch=('any')
+license=('custom:NYSL')
+depends=('vim' 'git')
+groups=('vim-plugins')
+source=(${pkgname}::"git+https://github.com/vim-jp/vital.vim#commit=${_gitcommit};)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
+package() {
+  cd ${pkgname}
+  _installpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${_installpath}"
+  cp -r -t "${_installpath}" autoload doc plugin
+  install -Dm 644 README.md Changes -t "${pkgdir}/usr/share/doc/${pkgdir}"
+  install -Dm 644 README.md -T "${pkgdir}/usr/share/licenses/${pkgdir}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-12-17 Thread Levente Polyak via arch-commits
Date: Sunday, December 17, 2017 @ 18:36:28
  Author: anthraxx
Revision: 274654

upgpkg: vim-vital 3113.982e0bf3-1

Added:
  vim-vital/
  vim-vital/repos/
  vim-vital/trunk/
  vim-vital/trunk/PKGBUILD

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

Added: vim-vital/trunk/PKGBUILD
===
--- vim-vital/trunk/PKGBUILD(rev 0)
+++ vim-vital/trunk/PKGBUILD2017-12-17 18:36:28 UTC (rev 274654)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+
+pkgname=vim-vital
+_gitcommit=982e0bf3a5c181c0fa9d37bab784412f941f6b80
+pkgver=3113.982e0bf3
+pkgrel=1
+pkgdesc='Comprehensive Vim utility functions for Vim plugins'
+url='https://github.com/vim-jp/vital.vim'
+arch=('any')
+license=('custom:NYSL')
+depends=('vim' 'git')
+groups=('vim-plugins')
+source=(${pkgname}::"git+https://github.com/vim-jp/vital.vim#commit=${_gitcommit};)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
+package() {
+  cd ${pkgname}
+  _installpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${_installpath}"
+  cp -r -t "${_installpath}" autoload doc plugin
+  install -Dm 644 README.md Changes -t "${pkgdir}/usr/share/doc/${pkgdir}"
+  install -Dm 644 README.md -T "${pkgdir}/usr/share/licenses/${pkgdir}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-12-17 Thread Levente Polyak via arch-commits
Date: Sunday, December 17, 2017 @ 18:40:15
  Author: anthraxx
Revision: 274657

archrelease: copy trunk to community-any

Added:
  vim-easymotion/repos/community-any/
  vim-easymotion/repos/community-any/PKGBUILD
(from rev 274656, vim-easymotion/trunk/PKGBUILD)

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

Copied: vim-easymotion/repos/community-any/PKGBUILD (from rev 274656, 
vim-easymotion/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-12-17 18:40:15 UTC (rev 274657)
@@ -0,0 +1,27 @@
+# Maintainer: Levente Polyak 
+# Contributor: Chris Oelmueller 
+# Contributor: Andreas B. Wagner 
+
+pkgname=vim-easymotion
+pkgver=3.0.1
+pkgrel=4
+pkgdesc='Vim motion on speed'
+url='https://github.com/easymotion/vim-easymotion'
+arch=('any')
+license=('MIT')
+depends=('vim' 'vim-vital')
+groups=('vim-plugins')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/easymotion/vim-easymotion/archive/v${pkgver}.tar.gz)
+sha256sums=('c1b24de4592212f4c45327b98cca521cd811074475f8352cb2231be8fc61ae44')
+sha512sums=('8d9349eb4c558cf2d86ea696e8d99f7720542e206b87e6e21073eacb79dbb89669cba24feecc54006c3f374afcc9bb8156f7eb4424df8bd00ef659c4a4df335c')
+
+package() {
+  cd ${pkgname}-${pkgver}
+  _installpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${_installpath}"
+  cp -r -t "${_installpath}" autoload doc plugin t
+  rm -f "${_installpath}/autoload/vital.vim"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-12-17 Thread Levente Polyak via arch-commits
Date: Sunday, December 17, 2017 @ 18:40:04
  Author: anthraxx
Revision: 274656

addpkg: vim-easymotion 3.0.1-4

Added:
  vim-easymotion/
  vim-easymotion/repos/
  vim-easymotion/trunk/
  vim-easymotion/trunk/PKGBUILD

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

Added: vim-easymotion/trunk/PKGBUILD
===
--- vim-easymotion/trunk/PKGBUILD   (rev 0)
+++ vim-easymotion/trunk/PKGBUILD   2017-12-17 18:40:04 UTC (rev 274656)
@@ -0,0 +1,27 @@
+# Maintainer: Levente Polyak 
+# Contributor: Chris Oelmueller 
+# Contributor: Andreas B. Wagner 
+
+pkgname=vim-easymotion
+pkgver=3.0.1
+pkgrel=4
+pkgdesc='Vim motion on speed'
+url='https://github.com/easymotion/vim-easymotion'
+arch=('any')
+license=('MIT')
+depends=('vim' 'vim-vital')
+groups=('vim-plugins')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/easymotion/vim-easymotion/archive/v${pkgver}.tar.gz)
+sha256sums=('c1b24de4592212f4c45327b98cca521cd811074475f8352cb2231be8fc61ae44')
+sha512sums=('8d9349eb4c558cf2d86ea696e8d99f7720542e206b87e6e21073eacb79dbb89669cba24feecc54006c3f374afcc9bb8156f7eb4424df8bd00ef659c4a4df335c')
+
+package() {
+  cd ${pkgname}-${pkgver}
+  _installpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${_installpath}"
+  cp -r -t "${_installpath}" autoload doc plugin t
+  rm -f "${_installpath}/autoload/vital.vim"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 18:44:12
  Author: heftig
Revision: 274658

3.26.4-1

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 18:40:15 UTC (rev 274657)
+++ PKGBUILD2017-12-17 18:44:12 UTC (rev 274658)
@@ -4,7 +4,7 @@
 # Contributor: Yosef Or Boczko 
 
 pkgname=gnome-software
-pkgver=3.26.3
+pkgver=3.26.4
 pkgrel=1
 pkgdesc="GNOME Software Tools"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
flatpak
  packagekit archlinux-appstream-data gtkspell3 libgudev fwupd liboauth)
 makedepends=(python docbook-xsl git valgrind meson gobject-introspection 
gtk-doc)
-_commit=f38f46c22d7be15f0415925e06c4cc2b94950fbc  # 
tags/GNOME_SOFTWARE_3_26_3^0
+_commit=2d0d2d7bc464a35a9d26f6a6485bf38c716ace86  # tags/3.26.4^0
 source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Monday, December 18, 2017 @ 07:04:32
  Author: arojas
Revision: 313282

Update

Modified:
  archlinux-appstream-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-18 01:48:32 UTC (rev 313281)
+++ PKGBUILD2017-12-18 07:04:32 UTC (rev 313282)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas <aro...@archlinux.org>
 
 pkgname=archlinux-appstream-data
-pkgver=20171017
+pkgver=20171217
 pkgrel=1
 pkgdesc="Arch Linux application database for AppStream-based software centers"
 arch=(any)
@@ -18,15 +18,15 @@
   
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
  noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
 done
-sha256sums=('1433a8a1a0f3bb7a2fb9bed816fb611e25fc0aa175439f07c646dcae512add0e'
+sha256sums=('da61313bcbd9afd012064b6cacf3fdadd29caca6a8bfb94b1b5e2c0f7a20232b'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'9b066cd170252d91eccd8072019dbeae583d6d9f0bfac87ca1afee91595ba31c'
-'cc93f064a835a4fa0640d55cae5185351742de82f9887c28b0eec5f70f2ae757'
-'641fd8f7a024082cc61f2f2bfd518c91a4327b76b34f3dbbd3ba39654fd1a666'
-'60aee3c13a3247239807a243fdf1cdc751eb21ca78a371b827a49f8409ae3483'
-'105711f0cca9534a57e852af7028ac28e1f9ec6d69c0307e7b9c46439a5781ea'
-'340b159077bbfdeef9f0ba8531c2bfa1acc326fad8b418279f4d7078898e80a9')
+'a1e72abe2afb9107475e472c4c2cefec74f396de7d8236215abcbe81d4211dcc'
+'6dbf54fe7b6bd19292474d0142de77492e10c7405502f9a4945fcc0462018833'
+'2ee0a77d8f7b2577436c96fff4215e82ee92070dec9118787524af89a300d24e'
+'477810ec71f5b233438d2bcb8764ebe8969aaadc33e71c30cfec95f8e63ebc4b'
+'392170eb1cfc5d89ccc96b22486623779a8ef7c4b0d59780613bf5c24cba2925'
+'ea13f96b68afd9650628f6e1fe5d5cdbb9158ca2ad733a2ad6e8f53fd5e6349d')
 
 package() {
   mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Monday, December 18, 2017 @ 07:31:25
  Author: arojas
Revision: 274701

archrelease: copy trunk to community-x86_64

Added:
  qbittorrent/repos/community-x86_64/PKGBUILD
(from rev 274700, qbittorrent/trunk/PKGBUILD)
  qbittorrent/repos/community-x86_64/qbittorrent@.service
(from rev 274700, qbittorrent/trunk/qbittorrent@.service)
Deleted:
  qbittorrent/repos/community-x86_64/PKGBUILD
  qbittorrent/repos/community-x86_64/qbittorrent@.service

--+
 PKGBUILD |  114 -
 qbittorrent@.service |   24 +-
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-18 07:31:00 UTC (rev 274700)
+++ PKGBUILD2017-12-18 07:31:25 UTC (rev 274701)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Timothy Redaelli 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Jkkyll Wu 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Daniel J Griffiths 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=qbittorrent
-pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.0.2
-pkgrel=1
-arch=(x86_64)
-url="https://www.qbittorrent.org;
-license=(custom GPL)
-makedepends=(libtorrent-rasterbar boost qt5-tools qt5-svg)
-source=(https://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('09240274036be42328131602cd69e12bac909031b0b827c1168ae305d67bbac3'
-'SKIP')
-validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  mkdir $pkgbase
-  pushd $pkgbase
-  ../configure --prefix=/usr
-  make
-
-  # Build nox variant
-  popd
-  mkdir "$pkgbase-nox"
-  pushd "$pkgbase-nox"
-  ../configure --prefix=/usr --disable-gui --enable-systemd
-}
-
-package_qbittorrent() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
-  depends=(libtorrent-rasterbar qt5-svg hicolor-icon-theme)
-  optdepends=('python: needed for torrent search tab')
-
-  cd $pkgbase-$pkgver/$pkgbase
-
-  make INSTALL_ROOT="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}
-
-package_qbittorrent-nox() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
-  depends=(libtorrent-rasterbar qt5-base)
-
-  cd $pkgbase-$pkgver/$pkgbase-nox
-
-  make INSTALL_ROOT="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: qbittorrent/repos/community-x86_64/PKGBUILD (from rev 274700, 
qbittorrent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-18 07:31:25 UTC (rev 274701)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=qbittorrent
+pkgname=(qbittorrent qbittorrent-nox)
+pkgver=4.0.3
+pkgrel=1
+arch=(x86_64)
+url="https://www.qbittorrent.org;
+license=(custom GPL)
+makedepends=(libtorrent-rasterbar boost qt5-tools qt5-svg)
+source=(https://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc})
+sha256sums=('9a03b84e6d2ac81a0add84a7946033ff9ea854de49252069e478b9f6efce6bd2'
+'SKIP')
+validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir $pkgbase
+  pushd $pkgbase
+  ../configure --prefix=/usr
+  make
+
+  # Build nox variant
+  popd
+  mkdir "$pkgbase-nox"
+  pushd "$pkgbase-nox"
+  ../configure --prefix=/usr --disable-gui --enable-systemd
+}
+
+package_qbittorrent() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
+  depends=(libtorrent-rasterbar qt5-svg hicolor-icon-theme)
+  optdepends=('python: needed for torrent search tab')
+
+  cd $pkgbase-$pkgver/$pkgbase
+
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_qbittorrent-nox() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
+  depends=(libtorrent-rasterbar qt5-base)
+
+  cd $pkgbase-$pkgver/$pkgbase-nox
+
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Deleted: 

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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Monday, December 18, 2017 @ 07:31:00
  Author: arojas
Revision: 274700

Update to 4.0.3

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-18 00:04:33 UTC (rev 274699)
+++ PKGBUILD2017-12-18 07:31:00 UTC (rev 274700)
@@ -9,7 +9,7 @@
 
 pkgbase=qbittorrent
 pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.0.2
+pkgver=4.0.3
 pkgrel=1
 arch=(x86_64)
 url="https://www.qbittorrent.org;
@@ -16,7 +16,7 @@
 license=(custom GPL)
 makedepends=(libtorrent-rasterbar boost qt5-tools qt5-svg)
 
source=(https://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('09240274036be42328131602cd69e12bac909031b0b827c1168ae305d67bbac3'
+sha256sums=('9a03b84e6d2ac81a0add84a7946033ff9ea854de49252069e478b9f6efce6bd2'
 'SKIP')
 validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
 


[arch-commits] Commit in tcc/trunk (ChangeLog)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Monday, December 18, 2017 @ 07:43:47
  Author: arojas
Revision: 274704

Remove obsolete file

Deleted:
  tcc/trunk/ChangeLog

---+
 ChangeLog |3 ---
 1 file changed, 3 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2017-12-18 07:38:54 UTC (rev 274703)
+++ ChangeLog   2017-12-18 07:43:47 UTC (rev 274704)
@@ -1,3 +0,0 @@
-0.9.25-2:
-
- + Added libtcc.so as well, for dynamic code.


[arch-commits] Commit in archlinux-appstream-data/repos/extra-any (PKGBUILD PKGBUILD)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Monday, December 18, 2017 @ 07:04:59
  Author: arojas
Revision: 313283

archrelease: copy trunk to extra-any

Added:
  archlinux-appstream-data/repos/extra-any/PKGBUILD
(from rev 313282, archlinux-appstream-data/trunk/PKGBUILD)
Deleted:
  archlinux-appstream-data/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-18 07:04:32 UTC (rev 313282)
+++ PKGBUILD2017-12-18 07:04:59 UTC (rev 313283)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas <aro...@archlinux.org>
-
-pkgname=archlinux-appstream-data
-pkgver=20171017
-pkgrel=1
-pkgdesc="Arch Linux application database for AppStream-based software centers"
-arch=(any)
-url="http://www.archlinux.org;
-license=(GPL)
-depends=()
-makedepends=()
-source=()
-noextract=()
-for _repo in core extra community; do
- 
source+=($_repo.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
-  
$_repo-icons-64x64.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
-  
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
- noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
-done
-sha256sums=('1433a8a1a0f3bb7a2fb9bed816fb611e25fc0aa175439f07c646dcae512add0e'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'9b066cd170252d91eccd8072019dbeae583d6d9f0bfac87ca1afee91595ba31c'
-'cc93f064a835a4fa0640d55cae5185351742de82f9887c28b0eec5f70f2ae757'
-'641fd8f7a024082cc61f2f2bfd518c91a4327b76b34f3dbbd3ba39654fd1a666'
-'60aee3c13a3247239807a243fdf1cdc751eb21ca78a371b827a49f8409ae3483'
-'105711f0cca9534a57e852af7028ac28e1f9ec6d69c0307e7b9c46439a5781ea'
-'340b159077bbfdeef9f0ba8531c2bfa1acc326fad8b418279f4d7078898e80a9')
-
-package() {
-  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
-  for _repo in core extra community; do
-   tar -xzf $_repo-icons-64x64.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
-   tar -xzf $_repo-icons-128x128.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
-  done
-  cp *.xml.gz "$pkgdir"/usr/share/app-info/xmls/
-}

Copied: archlinux-appstream-data/repos/extra-any/PKGBUILD (from rev 313282, 
archlinux-appstream-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-18 07:04:59 UTC (rev 313283)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas <aro...@archlinux.org>
+
+pkgname=archlinux-appstream-data
+pkgver=20171217
+pkgrel=1
+pkgdesc="Arch Linux application database for AppStream-based software centers"
+arch=(any)
+url="http://www.archlinux.org;
+license=(GPL)
+depends=()
+makedepends=()
+source=()
+noextract=()
+for _repo in core extra community; do
+ 
source+=($_repo.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
+  
$_repo-icons-64x64.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
+  
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
+ noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
+done
+sha256sums=('da61313bcbd9afd012064b6cacf3fdadd29caca6a8bfb94b1b5e2c0f7a20232b'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'a1e72abe2afb9107475e472c4c2cefec74f396de7d8236215abcbe81d4211dcc'
+'6dbf54fe7b6bd19292474d0142de77492e10c7405502f9a4945fcc0462018833'
+'2ee0a77d8f7b2577436c96fff4215e82ee92070dec9118787524af89a300d24e'
+'477810ec71f5b233438d2bcb8764ebe8969aaadc33e71c30cfec95f8e63ebc4b'
+'392170eb1cfc5d89ccc96b22486623779a8ef7c4b0d59780613bf5c24cba2925'
+'ea13f96b68afd9650628f6e1fe5d5cdbb9158ca2ad733a2ad6e8f53fd5e6349d')
+
+package() {
+  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
+  for _repo in core extra community; do
+   tar -xzf $_repo-icons-64x64.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
+   tar -xzf $_repo-icons-128x128.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
+  done
+  cp *.xml.gz "$pkgdir"/usr/share/app-info/xmls/
+}


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Monday, December 18, 2017 @ 07:38:54
  Author: arojas
Revision: 274703

archrelease: copy trunk to community-x86_64

Added:
  tcc/repos/community-x86_64/ChangeLog
(from rev 274702, tcc/trunk/ChangeLog)
  tcc/repos/community-x86_64/PKGBUILD
(from rev 274702, tcc/trunk/PKGBUILD)
Deleted:
  tcc/repos/community-x86_64/ChangeLog
  tcc/repos/community-x86_64/PKGBUILD

---+
 ChangeLog |6 ++--
 PKGBUILD  |   79 
 2 files changed, 40 insertions(+), 45 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2017-12-18 07:38:29 UTC (rev 274702)
+++ ChangeLog   2017-12-18 07:38:54 UTC (rev 274703)
@@ -1,3 +0,0 @@
-0.9.25-2:
-
- + Added libtcc.so as well, for dynamic code.

Copied: tcc/repos/community-x86_64/ChangeLog (from rev 274702, 
tcc/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2017-12-18 07:38:54 UTC (rev 274703)
@@ -0,0 +1,3 @@
+0.9.25-2:
+
+ + Added libtcc.so as well, for dynamic code.

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-18 07:38:29 UTC (rev 274702)
+++ PKGBUILD2017-12-18 07:38:54 UTC (rev 274703)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer : Gergely Imreh 
-# Contributor : dschauer 
-# Contributor : Stefan Husmann 
-# Contributor : Jeremy Cowgar 
-
-pkgname=tcc
-pkgver=0.9.26
-pkgrel=5
-_commit=5420bb8a67f5f782ac49c90afb7da178a60c448a
-pkgdesc="Tiny C Compiler"
-arch=('i686' 'x86_64')
-url="http://bellard.org/tcc/;
-license=('LGPL')
-makedepends=('gcc' 'git')
-options=('docs' 'staticlibs')
-#source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2)
-source=("$pkgname-$pkgver::git://repo.or.cz/tinycc.git#commit=${_commit}")
-md5sums=('SKIP')
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  unset CFLAGS
-  unset LDFLAGS
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make tccdir="$pkgdir"/usr/lib/tcc libdir="$pkgdir"/usr/lib \
-mandir="$pkgdir"/usr/share/man bindir="$pkgdir"/usr/bin \
-includedir="$pkgdir"/usr/include \
-docdir="$pkgdir"/usr/share/doc/tcc \
-install
-
-  make clean
-  make CFLAGS="-fPIC"
-  gcc -shared -o libtcc.so *.o
-  install -D -m 755 libtcc.so "${pkgdir}/usr/lib/libtcc.so"
-}

Copied: tcc/repos/community-x86_64/PKGBUILD (from rev 274702, 
tcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-18 07:38:54 UTC (rev 274703)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer : Gergely Imreh 
+# Contributor : dschauer 
+# Contributor : Stefan Husmann 
+# Contributor : Jeremy Cowgar 
+
+pkgname=tcc
+pkgver=0.9.27
+pkgrel=1
+pkgdesc="Tiny C Compiler"
+arch=('x86_64')
+url="http://bellard.org/tcc/;
+license=('LGPL')
+depends=('glibc')
+options=('docs' 'staticlibs')
+source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  unset CFLAGS
+  unset LDFLAGS
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+ make DESTDIR="$pkgdir" docdir="$pkgdir"/usr/share/doc/tcc install
+
+ make clean
+ make CFLAGS="-fPIC"
+ gcc -shared -o libtcc.so *.o
+ install -Dm755 libtcc.so -t "${pkgdir}/usr/lib/"
+}


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Monday, December 18, 2017 @ 07:38:29
  Author: arojas
Revision: 274702

Update to 0.9.27

Modified:
  tcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-18 07:31:25 UTC (rev 274701)
+++ PKGBUILD2017-12-18 07:38:29 UTC (rev 274702)
@@ -6,21 +6,19 @@
 # Contributor : Jeremy Cowgar 
 
 pkgname=tcc
-pkgver=0.9.26
-pkgrel=5
-_commit=5420bb8a67f5f782ac49c90afb7da178a60c448a
+pkgver=0.9.27
+pkgrel=1
 pkgdesc="Tiny C Compiler"
 arch=('x86_64')
 url="http://bellard.org/tcc/;
 license=('LGPL')
-makedepends=('gcc' 'git')
+depends=('glibc')
 options=('docs' 'staticlibs')
-#source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2)
-source=("$pkgname-$pkgver::git://repo.or.cz/tinycc.git#commit=${_commit}")
+source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2)
 md5sums=('SKIP')
 
 build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   unset CFLAGS
   unset LDFLAGS
   ./configure --prefix=/usr
@@ -28,15 +26,12 @@
 }
 
 package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make tccdir="$pkgdir"/usr/lib/tcc libdir="$pkgdir"/usr/lib \
-mandir="$pkgdir"/usr/share/man bindir="$pkgdir"/usr/bin \
-includedir="$pkgdir"/usr/include \
-docdir="$pkgdir"/usr/share/doc/tcc \
-install
+  cd ${pkgname}-${pkgver}
 
-  make clean
-  make CFLAGS="-fPIC"
-  gcc -shared -o libtcc.so *.o
-  install -D -m 755 libtcc.so "${pkgdir}/usr/lib/libtcc.so"
+ make DESTDIR="$pkgdir" docdir="$pkgdir"/usr/share/doc/tcc install
+
+ make clean
+ make CFLAGS="-fPIC"
+ gcc -shared -o libtcc.so *.o
+ install -Dm755 libtcc.so -t "${pkgdir}/usr/lib/"
 }


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 13:56:53
  Author: heftig
Revision: 313253

1.4.1+7+g2c92e03-1

Modified:
  colord/trunk/0001-Make-cd_color_get_blackbody_rgb_full-safer.patch
  colord/trunk/PKGBUILD
Deleted:
  colord/trunk/0002-Avoid-buffer-overflow-when-reading-profile_id.patch

--+
 0001-Make-cd_color_get_blackbody_rgb_full-safer.patch|   38 ++
 0002-Avoid-buffer-overflow-when-reading-profile_id.patch |   74 -
 PKGBUILD |   15 +-
 3 files changed, 22 insertions(+), 105 deletions(-)

Modified: 0001-Make-cd_color_get_blackbody_rgb_full-safer.patch
===
--- 0001-Make-cd_color_get_blackbody_rgb_full-safer.patch   2017-12-17 
13:27:04 UTC (rev 313252)
+++ 0001-Make-cd_color_get_blackbody_rgb_full-safer.patch   2017-12-17 
13:56:53 UTC (rev 313253)
@@ -1,34 +1,26 @@
-From 264981ddfd1984b25c629d8e3ef6cf25c70cc61a Mon Sep 17 00:00:00 2001
-Message-Id: 
<264981ddfd1984b25c629d8e3ef6cf25c70cc61a.1513454215.git.jan.steff...@gmail.com>
+From 6d7a6ae89bd12640e863a10fc88b6678f9dc9477 Mon Sep 17 00:00:00 2001
+Message-Id: 
<6d7a6ae89bd12640e863a10fc88b6678f9dc9477.1513518702.git.jan.steff...@gmail.com>
 From: "Jan Alexander Steffens (heftig)" 
 Date: Sat, 16 Dec 2017 04:18:01 +0100
-Subject: [PATCH 1/2] Make cd_color_get_blackbody_rgb_full safer
+Subject: [PATCH] Make cd_color_get_blackbody_rgb_full safer
 
 Validate arguments. If temp is divisible by 100, avoid interpolation
 because it accesses beyond the data for temp == 1.
 ---
- lib/colord/cd-color.c | 22 ++
- 1 file changed, 14 insertions(+), 8 deletions(-)
+ lib/colord/cd-color.c | 23 +++
+ 1 file changed, 15 insertions(+), 8 deletions(-)
 
 diff --git a/lib/colord/cd-color.c b/lib/colord/cd-color.c
-index 6062595187616846..3907a7349c1351ba 100644
+index 6062595187616846..9960e7ecd247a289 100644
 --- a/lib/colord/cd-color.c
 +++ b/lib/colord/cd-color.c
-@@ -29,6 +29,7 @@
- #include "config.h"
- 
- #include 
-+#include 
- #include 
- #include 
- 
-@@ -1444,33 +1445,38 @@ cd_color_get_blackbody_rgb_full (gdouble temp,
+@@ -1444,33 +1444,40 @@ cd_color_get_blackbody_rgb_full (gdouble temp,
 CdColorBlackbodyFlags flags)
  {
gboolean ret = TRUE;
 -  gdouble alpha;
 -  gint temp_index;
-+  div_t temp_int;
++  guint temp_quot, temp_rem;
const CdColorRGB *blackbody_func = blackbody_data_d65modified;
  
 +  g_return_val_if_fail (!isnan (temp), FALSE);
@@ -57,13 +49,15 @@
 -_func[temp_index + 1],
 -alpha,
 -result);
-+  temp_int = div (temp, 100);
-+  if (temp_int.rem == 0)
-+  *result = blackbody_func[temp_int.quot - 10];
++  temp_quot = (guint) temp / 100;
++  temp_rem = (guint) temp % 100;
++
++  if (temp_rem == 0)
++  *result = blackbody_func[temp_quot - 10];
 +  else
-+  cd_color_rgb_interpolate (_func[temp_int.quot - 10],
-+_func[temp_int.quot - 9],
-+temp_int.rem / 100.0,
++  cd_color_rgb_interpolate (_func[temp_quot - 10],
++_func[temp_quot - 9],
++temp_rem / 100.0,
 +result);
 +
return ret;

Deleted: 0002-Avoid-buffer-overflow-when-reading-profile_id.patch
===
--- 0002-Avoid-buffer-overflow-when-reading-profile_id.patch2017-12-17 
13:27:04 UTC (rev 313252)
+++ 0002-Avoid-buffer-overflow-when-reading-profile_id.patch2017-12-17 
13:56:53 UTC (rev 313253)
@@ -1,74 +0,0 @@
-From 9b1b755e4dc9b6e91554ee7cd5777f96063a2a0d Mon Sep 17 00:00:00 2001
-Message-Id: 
<9b1b755e4dc9b6e91554ee7cd5777f96063a2a0d.1513454215.git.jan.steff...@gmail.com>
-In-Reply-To: 
<264981ddfd1984b25c629d8e3ef6cf25c70cc61a.1513454215.git.jan.steff...@gmail.com>
-References: 
<264981ddfd1984b25c629d8e3ef6cf25c70cc61a.1513454215.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Sat, 16 Dec 2017 20:40:51 +0100
-Subject: [PATCH 2/2] Avoid buffer overflow when reading profile_id
-
-The profile ID is 16 bytes, not 4 bytes. Use the union type specified by
-the LCMS API.

- lib/colord/cd-icc.c | 26 +++---
- 1 file changed, 19 insertions(+), 7 deletions(-)
-
-diff --git a/lib/colord/cd-icc.c b/lib/colord/cd-icc.c
-index 99fa27b2988b26d0..0404278f8f2dba39 100644
 a/lib/colord/cd-icc.c
-+++ b/lib/colord/cd-icc.c
-@@ -227,20 +227,20 @@ gchar *
- cd_icc_to_string (CdIcc *icc)
- {
-   CdIccPrivate *priv = GET_PRIVATE (icc);
-+  cmsProfileID profile_id;
-  

[arch-commits] Commit in jack2/trunk (4 files)

2017-12-17 Thread David Runge via arch-commits
Date: Sunday, December 17, 2017 @ 13:58:22
  Author: dvzrv
Revision: 274642

upgpkg: jack2 1.9.12-1

Updating to 1.9.12. Removing all patches relevant to the 1.9.11_RC1 version. 
Removing libsamplerate from the depends array, as it is already included by 
proxy.

Modified:
  jack2/trunk/PKGBUILD
Deleted:
  jack2/trunk/example-clients-fix-compilation-of-tw.c.patch
  jack2/trunk/jackdebugclient-keep-client-fsynchrotable.patch
  jack2/trunk/tests-fix-compilation-with-gcc7.patch

-+
 PKGBUILD|   59 --
 example-clients-fix-compilation-of-tw.c.patch   |   24 
 jackdebugclient-keep-client-fsynchrotable.patch |   53 ---
 tests-fix-compilation-with-gcc7.patch   |   25 -
 4 files changed, 24 insertions(+), 137 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 13:08:21 UTC (rev 274641)
+++ PKGBUILD2017-12-17 13:58:22 UTC (rev 274642)
@@ -8,39 +8,28 @@
 pkgbase=jack2
 pkgname=('jack2' 'jack2-dbus')
 pkgdesc="The next-generation JACK with SMP support"
-pkgver=1.9.11_RC1
-pkgrel=3
+pkgver=1.9.12
+pkgrel=1
 arch=('x86_64')
 url="http://jackaudio.org/;
 license=('GPL')
-makedepends=('python' 'python2-dbus' 'libffado' 'celt' 'opus' 'libsamplerate' 
'doxygen')
-source=("${pkgbase}-${pkgver}::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver//_/-}.tar.gz;
+makedepends=('python' 'python2-dbus' 'libffado' 'celt' 'opus' 'doxygen')
+source=("${pkgbase}-${pkgver}::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver}.tar.gz;
 '99-audio.conf'
 '40-hpet-permissions.rules'
-'tests-fix-compilation-with-gcc7.patch'
-'jackdebugclient-keep-client-fsynchrotable.patch'
-'example-clients-fix-compilation-of-tw.c.patch')
-sha512sums=('4fd7d82ab6536b8c6061023858ae5b978903608b149498818971481da75c6e9e0e7e7aef5e1343730c259f4378aebfbf25916b9736e0ad8aa19584a44f894436'
+)
+sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa'
 
'c21f593d46ff12d1b8d3ce7ca4593c230a673e67ed4e486944f52fd51bdf902873d3fb253220c8ec9c6c5d5b9f002ecf3dd72318222cd748b1925bfcbf1df5d7'
-
'1f876aa61de4bc4e54d46dde7f8c8c2aa575fc382c09f3dc6819c328224b1998c7171cfd3039d35ca214e40909ad71f8d56a9b3b5652046beb5ca97e44a780b1'
-
'79e44bae409fc47af8b9b227464a3a88c223f103bf59a2aaaf2ade99108c27aeca8f4f8d60ba919a3aa83a0072f9ffef03e7259c28a61d70caf9cc18a23afcad'
-
'4c3290c51bd289e36edddb55a6e4cab981d9d3a3932da8c0a06652a22cce35c7858ff4afa99c309ed0e331224274bdb9dfe8e4fed46d486e1b2b44e6b971c484'
-
'ec5f46c8fffda5f90c7597c8a8058246adefec95c0565ccc72afb7f57cb159fdf368107d3160284f1b2cf1c8e5e5c490f53151039d69423ca48da0d3d676e1e0')
-
+
'1f876aa61de4bc4e54d46dde7f8c8c2aa575fc382c09f3dc6819c328224b1998c7171cfd3039d35ca214e40909ad71f8d56a9b3b5652046beb5ca97e44a780b1')
 prepare() {
-  cd "${pkgbase}-${pkgver//_/-}"
+  cd "${pkgbase}-${pkgver}"
 
-  # https://github.com/jackaudio/jack2/issues/253
-  patch -Np1 -i "${srcdir}/tests-fix-compilation-with-gcc7.patch"
-  patch -Np1 -i "${srcdir}/example-clients-fix-compilation-of-tw.c.patch"
-  patch -Np1 -i "${srcdir}/jackdebugclient-keep-client-fsynchrotable.patch"
-
   # https://github.com/jackaudio/jack2/issues/308
   sed -i 's:bin/env python:bin/env python2:' \
 "example-clients/jack_control"
 
   # copy of the source for jack2-dbus
-  cp -r "${srcdir}/${pkgbase}-${pkgver//_/-}" 
"${srcdir}/${pkgname[1]}-${pkgver//_/-}"
+  cp -r "${srcdir}/${pkgbase}-${pkgver}" "${srcdir}/${pkgname[1]}-${pkgver}"
 
   # configure jack2
   python waf configure --prefix=/usr \
@@ -50,7 +39,7 @@
--dbus
 
   # configure jack2-dbus
-  cd "${srcdir}/${pkgname[1]}-${pkgver//_/-}"
+  cd "${srcdir}/${pkgname[1]}-${pkgver}"
   python waf configure --prefix=/usr \
--htmldir="/usr/share/doc/${pkgbase}/" \
--freebob=no \
@@ -59,49 +48,49 @@
 
 build() {
   # build jack2
-  cd "${pkgname[0]}-${pkgver//_/-}"
+  cd "${pkgname[0]}-${pkgver}"
   python waf build
   # build jack2-dbus
-  cd "${srcdir}/${pkgname[1]}-${pkgver//_/-}"
+  cd "${srcdir}/${pkgname[1]}-${pkgver}"
   python waf build
 }
 
 package_jack2() {
   pkgdesc="The next-generation JACK with SMP support"
-  depends=('libsamplerate' 'celt' 'opus' 'libffado' 'python2-dbus')
+  depends=('celt' 'opus' 'libffado' 'python2-dbus')
   conflicts=('jack')
   provides=('jack' 'jackmp' 'jackdmp' 'jackdbus')
   backup=(etc/security/limits.d/99-audio.conf)
 
-  cd "${pkgname[0]}-${pkgver//_/-}"
+  cd "${pkgname[0]}-${pkgver}"
   python waf install --destdir="${pkgdir}"
 
   # configure realtime access/scheduling
   # see https://bugs.archlinux.org/task/26343
-  install -Dm644 "$srcdir/99-audio.conf" \
-

[arch-commits] Commit in jack2/repos/community-testing-x86_64 (9 files)

2017-12-17 Thread David Runge via arch-commits
Date: Sunday, December 17, 2017 @ 13:58:37
  Author: dvzrv
Revision: 274643

archrelease: copy trunk to community-testing-x86_64

Added:
  jack2/repos/community-testing-x86_64/40-hpet-permissions.rules
(from rev 274642, jack2/trunk/40-hpet-permissions.rules)
  jack2/repos/community-testing-x86_64/99-audio.conf
(from rev 274642, jack2/trunk/99-audio.conf)
  jack2/repos/community-testing-x86_64/PKGBUILD
(from rev 274642, jack2/trunk/PKGBUILD)
Deleted:
  jack2/repos/community-testing-x86_64/40-hpet-permissions.rules
  jack2/repos/community-testing-x86_64/99-audio.conf
  jack2/repos/community-testing-x86_64/PKGBUILD
  
jack2/repos/community-testing-x86_64/example-clients-fix-compilation-of-tw.c.patch
  
jack2/repos/community-testing-x86_64/jackdebugclient-keep-client-fsynchrotable.patch
  jack2/repos/community-testing-x86_64/tests-fix-compilation-with-gcc7.patch

-+
 40-hpet-permissions.rules   |4 
 99-audio.conf   |4 
 PKGBUILD|  203 ++
 example-clients-fix-compilation-of-tw.c.patch   |   24 --
 jackdebugclient-keep-client-fsynchrotable.patch |   53 -
 tests-fix-compilation-with-gcc7.patch   |   25 --
 6 files changed, 100 insertions(+), 213 deletions(-)

Deleted: 40-hpet-permissions.rules
===
--- 40-hpet-permissions.rules   2017-12-17 13:58:22 UTC (rev 274642)
+++ 40-hpet-permissions.rules   2017-12-17 13:58:37 UTC (rev 274643)
@@ -1,2 +0,0 @@
-KERNEL=="rtc0", GROUP="audio"
-KERNEL=="hpet", GROUP="audio"

Copied: jack2/repos/community-testing-x86_64/40-hpet-permissions.rules (from 
rev 274642, jack2/trunk/40-hpet-permissions.rules)
===
--- 40-hpet-permissions.rules   (rev 0)
+++ 40-hpet-permissions.rules   2017-12-17 13:58:37 UTC (rev 274643)
@@ -0,0 +1,2 @@
+KERNEL=="rtc0", GROUP="audio"
+KERNEL=="hpet", GROUP="audio"

Deleted: 99-audio.conf
===
--- 99-audio.conf   2017-12-17 13:58:22 UTC (rev 274642)
+++ 99-audio.conf   2017-12-17 13:58:37 UTC (rev 274643)
@@ -1,2 +0,0 @@
-@audio - rtprio99
-@audio - memlock   unlimited

Copied: jack2/repos/community-testing-x86_64/99-audio.conf (from rev 274642, 
jack2/trunk/99-audio.conf)
===
--- 99-audio.conf   (rev 0)
+++ 99-audio.conf   2017-12-17 13:58:37 UTC (rev 274643)
@@ -0,0 +1,2 @@
+@audio - rtprio99
+@audio - memlock   unlimited

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 13:58:22 UTC (rev 274642)
+++ PKGBUILD2017-12-17 13:58:37 UTC (rev 274643)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Maintainer: David Runge 
-# Contributor: Daniele Paolella 
-# Contributor: Philipp Überbacher 
-# Contributor: Thomas Bahn 
-
-pkgbase=jack2
-pkgname=('jack2' 'jack2-dbus')
-pkgdesc="The next-generation JACK with SMP support"
-pkgver=1.9.11_RC1
-pkgrel=3
-arch=('x86_64')
-url="http://jackaudio.org/;
-license=('GPL')
-makedepends=('python' 'python2-dbus' 'libffado' 'celt' 'opus' 'libsamplerate' 
'doxygen')
-source=("${pkgbase}-${pkgver}::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver//_/-}.tar.gz;
-'99-audio.conf'
-'40-hpet-permissions.rules'
-'tests-fix-compilation-with-gcc7.patch'
-'jackdebugclient-keep-client-fsynchrotable.patch'
-'example-clients-fix-compilation-of-tw.c.patch')
-sha512sums=('4fd7d82ab6536b8c6061023858ae5b978903608b149498818971481da75c6e9e0e7e7aef5e1343730c259f4378aebfbf25916b9736e0ad8aa19584a44f894436'
-
'c21f593d46ff12d1b8d3ce7ca4593c230a673e67ed4e486944f52fd51bdf902873d3fb253220c8ec9c6c5d5b9f002ecf3dd72318222cd748b1925bfcbf1df5d7'
-
'1f876aa61de4bc4e54d46dde7f8c8c2aa575fc382c09f3dc6819c328224b1998c7171cfd3039d35ca214e40909ad71f8d56a9b3b5652046beb5ca97e44a780b1'
-
'79e44bae409fc47af8b9b227464a3a88c223f103bf59a2aaaf2ade99108c27aeca8f4f8d60ba919a3aa83a0072f9ffef03e7259c28a61d70caf9cc18a23afcad'
-
'4c3290c51bd289e36edddb55a6e4cab981d9d3a3932da8c0a06652a22cce35c7858ff4afa99c309ed0e331224274bdb9dfe8e4fed46d486e1b2b44e6b971c484'
-
'ec5f46c8fffda5f90c7597c8a8058246adefec95c0565ccc72afb7f57cb159fdf368107d3160284f1b2cf1c8e5e5c490f53151039d69423ca48da0d3d676e1e0')
-
-prepare() {
-  cd "${pkgbase}-${pkgver//_/-}"
-
-  # https://github.com/jackaudio/jack2/issues/253
-  patch -Np1 -i "${srcdir}/tests-fix-compilation-with-gcc7.patch"
-  patch -Np1 -i "${srcdir}/example-clients-fix-compilation-of-tw.c.patch"
-  patch -Np1 -i 

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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 09:35:54
  Author: felixonmars
Revision: 274624

upgpkg: glider 0.4.2-1

Modified:
  glider/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-16 22:58:05 UTC (rev 274623)
+++ PKGBUILD2017-12-17 09:35:54 UTC (rev 274624)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=glider
-pkgver=0.4.1
-pkgrel=2
+pkgver=0.4.2
+pkgrel=1
 pkgdesc="A forward proxy with multiple protocols support"
 arch=('x86_64')
 url="https://github.com/nadoo/glider;
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
-sha512sums=('38a31ff766fbcd28be10ca9bbc6cd7f57ea182e4c0ab9593d01425cc4ebf63ed49cc4f1a36a9a954059bfa5becd2e4ff9d7dc0a029783644d187688d8e207a91')
+sha512sums=('bc8aaae08455bcc2e60052be1523ddc44a4022b2578cc58656b1aa30fdad4e3f295496ce81a07a97d7556ae9846660fefc391115c3fcf15cb30610fde815b435')
 
 prepare() {
   mkdir .gopath


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 09:36:54
  Author: felixonmars
Revision: 274626

upgpkg: python-mamba 0.9.2-1

Modified:
  python-mamba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 09:36:26 UTC (rev 274625)
+++ PKGBUILD2017-12-17 09:36:54 UTC (rev 274626)
@@ -3,43 +3,42 @@
 
 pkgbase=python-mamba
 pkgname=('python-mamba' 'python2-mamba')
-pkgver=0.8.6
-pkgrel=2
+pkgver=0.9.2
+pkgrel=1
 pkgdesc="The definitive testing tool for Python. Born under the banner of 
Behavior Driven Development."
 arch=('any')
 license=('MIT')
 url="http://nestorsalceda.github.io/mamba;
 makedepends=('python-setuptools' 'python2-setuptools' 'python-clint' 
'python2-clint'
- 'python-coverage' 'python2-coverage' 'python-watchdog' 
'python2-watchdog'
- 'git')
+ 'python-coverage' 'python2-coverage' 'python-watchdog' 
'python2-watchdog')
 checkdepends=('python-doublex-expects' 'python2-doublex-expects')
-source=("git+https://github.com/nestorsalceda/mamba.git#tag=v$pkgver;)
-sha512sums=('SKIP')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/nestorsalceda/mamba/archive/v$pkgver.tar.gz;)
+sha512sums=('37a3e453fae7c17892b680a940ab0f4d9120021751f9b4e4e030221b0fe2c3f536a99a0f896d075f0923a3ae2b96b7798e44eb4b64807695ba86258657a029d8')
 
 prepare() {
-  cp -a mamba{,-py2}
+  cp -a mamba-$pkgver{,-py2}
 }
 
 build() {
-  cd "$srcdir"/mamba
+  cd "$srcdir"/mamba-$pkgver
   python setup.py build
 
-  cd "$srcdir"/mamba-py2
+  cd "$srcdir"/mamba-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/mamba
+  cd "$srcdir"/mamba-$pkgver
   # Hack entry points by installing it
 
-  cd "$srcdir"/mamba
+  cd "$srcdir"/mamba-$pkgver
   python setup.py install --root="$PWD/tmp_install" --optimize=1
   (
-export PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH"
+export PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH"
 mamba --enable-coverage
   )
 
-  cd "$srcdir"/mamba-py2
+  cd "$srcdir"/mamba-$pkgver-py2
   python setup.py install --root="$PWD/tmp_install" --optimize=1
   (
 export PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH"
@@ -50,7 +49,7 @@
 package_python-mamba() {
   depends=('python-coverage' 'python-watchdog' 'python-clint' 
'python-setuptools')
 
-  cd mamba
+  cd mamba-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 }
@@ -58,7 +57,7 @@
 package_python2-mamba() {
   depends=('python2-coverage' 'python2-watchdog' 'python2-clint' 
'python2-setuptools')
 
-  cd mamba-py2
+  cd mamba-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 09:37:21
  Author: felixonmars
Revision: 274627

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 09:36:54 UTC (rev 274626)
+++ PKGBUILD2017-12-17 09:37:21 UTC (rev 274627)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-mamba
-pkgname=('python-mamba' 'python2-mamba')
-pkgver=0.8.6
-pkgrel=2
-pkgdesc="The definitive testing tool for Python. Born under the banner of 
Behavior Driven Development."
-arch=('any')
-license=('MIT')
-url="http://nestorsalceda.github.io/mamba;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-clint' 
'python2-clint'
- 'python-coverage' 'python2-coverage' 'python-watchdog' 
'python2-watchdog'
- 'git')
-checkdepends=('python-doublex-expects' 'python2-doublex-expects')
-source=("git+https://github.com/nestorsalceda/mamba.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a mamba{,-py2}
-}
-
-build() {
-  cd "$srcdir"/mamba
-  python setup.py build
-
-  cd "$srcdir"/mamba-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/mamba
-  # Hack entry points by installing it
-
-  cd "$srcdir"/mamba
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  (
-export PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH"
-mamba --enable-coverage
-  )
-
-  cd "$srcdir"/mamba-py2
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  (
-export PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH"
-mamba --enable-coverage
-  )
-}
-
-package_python-mamba() {
-  depends=('python-coverage' 'python-watchdog' 'python-clint' 
'python-setuptools')
-
-  cd mamba
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}
-
-package_python2-mamba() {
-  depends=('python2-coverage' 'python2-watchdog' 'python2-clint' 
'python2-setuptools')
-
-  cd mamba-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-
-  mv "$pkgdir"/usr/bin/mamba{,2}
-}

Copied: python-mamba/repos/community-any/PKGBUILD (from rev 274626, 
python-mamba/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 09:37:21 UTC (rev 274627)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-mamba
+pkgname=('python-mamba' 'python2-mamba')
+pkgver=0.9.2
+pkgrel=1
+pkgdesc="The definitive testing tool for Python. Born under the banner of 
Behavior Driven Development."
+arch=('any')
+license=('MIT')
+url="http://nestorsalceda.github.io/mamba;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-clint' 
'python2-clint'
+ 'python-coverage' 'python2-coverage' 'python-watchdog' 
'python2-watchdog')
+checkdepends=('python-doublex-expects' 'python2-doublex-expects')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/nestorsalceda/mamba/archive/v$pkgver.tar.gz;)
+sha512sums=('37a3e453fae7c17892b680a940ab0f4d9120021751f9b4e4e030221b0fe2c3f536a99a0f896d075f0923a3ae2b96b7798e44eb4b64807695ba86258657a029d8')
+
+prepare() {
+  cp -a mamba-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/mamba-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/mamba-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/mamba-$pkgver
+  # Hack entry points by installing it
+
+  cd "$srcdir"/mamba-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  (
+export PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH"
+mamba --enable-coverage
+  )
+
+  cd "$srcdir"/mamba-$pkgver-py2
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  (
+export PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH"
+mamba --enable-coverage
+  )
+}
+
+package_python-mamba() {
+  depends=('python-coverage' 'python-watchdog' 'python-clint' 
'python-setuptools')
+
+  cd mamba-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_python2-mamba() {
+  depends=('python2-coverage' 'python2-watchdog' 'python2-clint' 
'python2-setuptools')
+
+  cd mamba-$pkgver-py2
+  python2 setup.py install 

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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 09:36:26
  Author: felixonmars
Revision: 274625

archrelease: copy trunk to community-x86_64

Added:
  glider/repos/community-x86_64/PKGBUILD
(from rev 274624, glider/trunk/PKGBUILD)
Deleted:
  glider/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 09:35:54 UTC (rev 274624)
+++ PKGBUILD2017-12-17 09:36:26 UTC (rev 274625)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=glider
-pkgver=0.4.1
-pkgrel=2
-pkgdesc="A forward proxy with multiple protocols support"
-arch=('i686' 'x86_64')
-url="https://github.com/nadoo/glider;
-license=('GPL')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
-sha512sums=('38a31ff766fbcd28be10ca9bbc6cd7f57ea182e4c0ab9593d01425cc4ebf63ed49cc4f1a36a9a954059bfa5becd2e4ff9d7dc0a029783644d187688d8e207a91')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir"/.gopath
-
-  go get github.com/nadoo/conflag github.com/shadowsocks/go-shadowsocks2/core
-}
-
-build() {
-  cd glider-$pkgver
-  go build
-}
-
-package() {
-  cd glider-$pkgver
-  install -Dm755 glider-$pkgver "$pkgdir"/usr/bin/glider
-  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
-  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
-}

Copied: glider/repos/community-x86_64/PKGBUILD (from rev 274624, 
glider/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 09:36:26 UTC (rev 274625)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=glider
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="A forward proxy with multiple protocols support"
+arch=('x86_64')
+url="https://github.com/nadoo/glider;
+license=('GPL')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
+sha512sums=('bc8aaae08455bcc2e60052be1523ddc44a4022b2578cc58656b1aa30fdad4e3f295496ce81a07a97d7556ae9846660fefc391115c3fcf15cb30610fde815b435')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir"/.gopath
+
+  go get github.com/nadoo/conflag github.com/shadowsocks/go-shadowsocks2/core
+}
+
+build() {
+  cd glider-$pkgver
+  go build
+}
+
+package() {
+  cd glider-$pkgver
+  install -Dm755 glider-$pkgver "$pkgdir"/usr/bin/glider
+  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
+  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
+}


[arch-commits] Commit in (18 files)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 09:58:12
  Author: arojas
Revision: 313221

Drop obsolete KDE4 applications

Deleted:
  kdeaccessibility-jovie/
  kdeaccessibility-kaccessible/
  kdeaccessibility-kmouth/
  kdegames-kolf/
  kdegames-ksirk/
  kdegames-palapeli/
  kdegraphics-ksaneplugin/
  kdemultimedia-juk/
  kdemultimedia-kmix/
  kdemultimedia-kscd/
  kdenetwork-kget/
  kdenetwork-kppp/
  kdenetwork-zeroconf-ioslave/
  kdeutils-kremotecontrol/
  kdeutils-sweeper/
  kdewebdev-kfilereplace/
  kdewebdev-kimagemapeditor/
  kdewebdev-klinkstatus/


[arch-commits] Commit in (akonadi-qt4 kdepimlibs4 libksane4 libktorrent4)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 10:05:47
  Author: arojas
Revision: 313230

Drop obsolete KDE4 libraries

Deleted:
  akonadi-qt4/
  kdepimlibs4/
  libksane4/
  libktorrent4/


[arch-commits] Commit in (libkolab)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 10:06:32
  Author: arojas
Revision: 313232

No longer needed

Deleted:
  libkolab/


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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 09:56:03
  Author: felixonmars
Revision: 274631

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  156 ++---
 1 file changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 09:55:43 UTC (rev 274630)
+++ PKGBUILD2017-12-17 09:56:03 UTC (rev 274631)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.42.2
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('9d8949856bff627bceb3bb5ca1403576e484e7ef4132e77daef359bee26129e53e3cc3b50c0fe92a50dbbf19d943f276ab5aaa5d89a0256c462ad4e0deeffbaa')
-
-prepare() {
-  # Make tests faster
-  sed -i 's/ -n 2$/ -n 16/' hypothesis-python-$pkgver/tox.ini
-
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 274630, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 09:56:03 UTC (rev 274631)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.43.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)

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

2017-12-17 Thread Felix Yan via arch-commits
Date: Sunday, December 17, 2017 @ 09:55:43
  Author: felixonmars
Revision: 274630

upgpkg: python-hypothesis 3.43.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 09:43:44 UTC (rev 274629)
+++ PKGBUILD2017-12-17 09:55:43 UTC (rev 274630)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.42.2
+pkgver=3.43.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('9d8949856bff627bceb3bb5ca1403576e484e7ef4132e77daef359bee26129e53e3cc3b50c0fe92a50dbbf19d943f276ab5aaa5d89a0256c462ad4e0deeffbaa')
+sha512sums=('13deab408ad1d01c20e7aac2abba9c2955421c43ed843748e2ec42cb3d892004ecae6accda953d2db9855dd6bd7d1df16b55bedda8e78d3f4c2e3e051c32469e')
 
 prepare() {
   # Make tests faster


[arch-commits] Commit in (kdenetwork-kopete)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 09:59:53
  Author: arojas
Revision: 313223

Renamed to kopete

Deleted:
  kdenetwork-kopete/


[arch-commits] Commit in (blogilo)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 10:01:05
  Author: arojas
Revision: 313225

Broken and unmaintained

Deleted:
  blogilo/


[arch-commits] Commit in (libmusicbrainz3)

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 10:07:28
  Author: arojas
Revision: 313233

No longer needed

Deleted:
  libmusicbrainz3/


[arch-commits] Commit in nsd/repos/community-x86_64 (8 files)

2017-12-17 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 17, 2017 @ 18:52:15
  Author: bisson
Revision: 274661

archrelease: copy trunk to community-x86_64

Added:
  nsd/repos/community-x86_64/PKGBUILD
(from rev 274660, nsd/trunk/PKGBUILD)
  nsd/repos/community-x86_64/service
(from rev 274660, nsd/trunk/service)
  nsd/repos/community-x86_64/sysusers.d
(from rev 274660, nsd/trunk/sysusers.d)
  nsd/repos/community-x86_64/tmpfiles.d
(from rev 274660, nsd/trunk/tmpfiles.d)
Deleted:
  nsd/repos/community-x86_64/PKGBUILD
  nsd/repos/community-x86_64/service
  nsd/repos/community-x86_64/sysusers.d
  nsd/repos/community-x86_64/tmpfiles.d

+
 PKGBUILD   |  105 +--
 service|   27 +++
 sysusers.d |2 -
 tmpfiles.d |3 +
 4 files changed, 68 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 18:51:28 UTC (rev 274660)
+++ PKGBUILD2017-12-17 18:52:15 UTC (rev 274661)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Kaiting Chen 
-# Contributor: Roberto Alsina 
-
-pkgname=nsd
-pkgver=4.1.19
-pkgrel=2
-pkgdesc='Authoritative only, high performance and simple DNS server'
-url='https://www.nlnetlabs.nl/nsd/'
-license=('BSD')
-arch=('x86_64')
-depends=('openssl' 'libevent')
-makedepends=('flex')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'tmpfiles.d'
-   'sysusers.d'
-'service')
-sha256sums=('b0782cb9b57416888d488b6460b071cd85ecb5f99381865b3a7f93dddf9e02c5'
-'SKIP'
-'8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b'
-   '6490660d5d4b3e28e16d73e50e35a786a4114991739fac461ebc60465c79'
-'ba87a4cd10395e13ffd34f42714cfd98d3818b35aa96240e28523837d109a1df')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/ \
-   --sbindir=/usr/bin \
-   --datarootdir=/usr/share \
-   --with-pidfile=/run/nsd/nsd.pid \
-   --enable-ratelimit \
-   --enable-relro-now \
-   --enable-pie \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rmdir "${pkgdir}"/{tmp,run/{nsd,}}
-   chmod 700 "${pkgdir}"/var/db/nsd
-
-   rm doc/differences.pdf
-   install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
-   install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
-   ln -s ../../doc/"${pkgname}"/LICENSE 
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
-   install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/nsd.service
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf
-   install -Dm644 ../sysusers.d "${pkgdir}"/usr/lib/sysusers.d/nsd.conf
-}

Copied: nsd/repos/community-x86_64/PKGBUILD (from rev 274660, 
nsd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 18:52:15 UTC (rev 274661)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Kaiting Chen 
+# Contributor: Roberto Alsina 
+
+pkgname=nsd
+pkgver=4.1.19
+pkgrel=3
+pkgdesc='Authoritative only, high performance and simple DNS server'
+url='https://www.nlnetlabs.nl/nsd/'
+license=('BSD')
+arch=('x86_64')
+depends=('openssl' 'libevent')
+makedepends=('flex')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'tmpfiles.d'
+'sysusers.d'
+'service')
+sha256sums=('b0782cb9b57416888d488b6460b071cd85ecb5f99381865b3a7f93dddf9e02c5'
+'SKIP'
+'0be5badb996297150da49b4c655d801bfba76fd8d7785e0899184c130630fe66'
+'6490660d5d4b3e28e16d73e50e35a786a4114991739fac461ebc60465c79'
+'5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/ \
+   --sbindir=/usr/bin \
+   --datarootdir=/usr/share \
+   --with-pidfile=/run/nsd/nsd.pid \
+   --enable-ratelimit \
+   --enable-relro-now \
+   --enable-pie \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rmdir "${pkgdir}"/{tmp,run/{nsd,}}
+
+   rm doc/differences.pdf
+   install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
+   install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
+   ln -s ../../doc/"${pkgname}"/LICENSE 

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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:34:30
  Author: heftig
Revision: 313260

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/60-linux.hook
(from rev 313259, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/testing-x86_64/90-linux.hook
(from rev 313259, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 313259, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 313259, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/linux.install
(from rev 313259, linux-zen/trunk/linux.install)
  linux-zen/repos/testing-x86_64/linux.preset
(from rev 313259, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  241 +
 config| 8536 
 linux.install |   10 
 linux.preset  |   14 
 6 files changed, 8824 insertions(+)

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


[arch-commits] Commit in emby-server/repos/community-any (16 files)

2017-12-17 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 17, 2017 @ 21:18:04
  Author: alucryd
Revision: 274691

archrelease: copy trunk to community-any

Added:
  emby-server/repos/community-any/PKGBUILD
(from rev 274690, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-any/emby-migrate-database
(from rev 274690, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-any/emby-server
(from rev 274690, emby-server/trunk/emby-server)
  emby-server/repos/community-any/emby-server.conf
(from rev 274690, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-any/emby-server.install
(from rev 274690, emby-server/trunk/emby-server.install)
  emby-server/repos/community-any/emby-server.service
(from rev 274690, emby-server/trunk/emby-server.service)
  emby-server/repos/community-any/emby-server.sysusers
(from rev 274690, emby-server/trunk/emby-server.sysusers)
  emby-server/repos/community-any/emby-server.tmpfiles
(from rev 274690, emby-server/trunk/emby-server.tmpfiles)
Deleted:
  emby-server/repos/community-any/PKGBUILD
  emby-server/repos/community-any/emby-migrate-database
  emby-server/repos/community-any/emby-server
  emby-server/repos/community-any/emby-server.conf
  emby-server/repos/community-any/emby-server.install
  emby-server/repos/community-any/emby-server.service
  emby-server/repos/community-any/emby-server.sysusers
  emby-server/repos/community-any/emby-server.tmpfiles

---+
 PKGBUILD  |   90 +++---
 emby-migrate-database |  112 
 emby-server   |   16 +++---
 emby-server.conf  |6 +-
 emby-server.install   |   28 ++--
 emby-server.service   |   32 ++---
 emby-server.sysusers  |2 
 emby-server.tmpfiles  |3 -
 8 files changed, 144 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 21:17:50 UTC (rev 274690)
+++ PKGBUILD2017-12-17 21:18:04 UTC (rev 274691)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=3.2.50.0
-pkgrel=2
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=('any')
-url='http://emby.media'
-license=('GPL2')
-depends=('dotnet-runtime' 'ffmpeg' 'skia-sharp58' 'sqlite')
-install='emby-server.install'
-source=("https://github.com/MediaBrowser/Emby/releases/download/${pkgver}/embyserver-netcore-${pkgver}.zip;
-'emby-server'
-'emby-migrate-database'
-'emby-server.conf'
-'emby-server.service'
-'emby-server.sysusers'
-'emby-server.tmpfiles')
-backup=('etc/conf.d/emby-server')
-sha256sums=('b9e0883aa7401af47f8c2eb72f48b7a4889ed46e11e74dec49502f1714703dc3'
-'f0afca728cf695ae80fffe944ea2700e154293247b30ed592f632c2e58dd00f1'
-'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
-'015869b52601a9cdbd303aed9dffe11ef19959da4a070c775ece8416e699979f'
-'8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70'
-'f7fa33949757ffc587ecf82496dc35ebc8c8e5c98b882b31dc40a24263d3921a'
-'a3b0b558042b91e94030d5b5dbadb8fd0814e07a6fc371724589c9247f340465')
-
-prepare() {
-  rm -rf system/{electron,runtimes}
-}
-
-package() {
-  install -dm 755 
"${pkgdir}"/{etc/conf.d,usr/{bin,lib/{systemd/system,sysusers.d,tmpfiles.d}}}
-  cp -dr --no-preserve='ownership' system "${pkgdir}"/usr/lib/emby-server
-  install -m 755 emby-server "${pkgdir}"/usr/bin/
-  install -m 755 emby-migrate-database "${pkgdir}"/usr/bin/
-  install -m 644 emby-server.service "${pkgdir}"/usr/lib/systemd/system/
-  install -m 644 emby-server.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/emby-server.conf
-  install -m 644 emby-server.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/emby-server.conf
-  install -m 644 emby-server.conf "${pkgdir}"/etc/conf.d/emby-server
-}
-
-# vim: ts=2 sw=2 et:

Copied: emby-server/repos/community-any/PKGBUILD (from rev 274690, 
emby-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 21:18:04 UTC (rev 274691)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Daniel Seymour 
+
+pkgname=emby-server
+pkgver=3.2.50.0
+pkgrel=3
+pkgdesc='Bring together your videos, music, photos, and live television'
+arch=('any')
+url='http://emby.media'
+license=('GPL2')
+depends=('dotnet-runtime' 'ffmpeg' 'skia-sharp58' 'sqlite')
+install='emby-server.install'
+source=("https://github.com/MediaBrowser/Emby/releases/download/${pkgver}/embyserver-netcore-${pkgver}.zip;
+'emby-server'
+'emby-migrate-database'
+'emby-server.conf'
+'emby-server.service'
+

[arch-commits] Commit in emby-server/trunk (PKGBUILD emby-server.tmpfiles)

2017-12-17 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 17, 2017 @ 21:17:50
  Author: alucryd
Revision: 274690

upgpkg: emby-server 3.2.50.0-3

Modified:
  emby-server/trunk/PKGBUILD
  emby-server/trunk/emby-server.tmpfiles

--+
 PKGBUILD |4 ++--
 emby-server.tmpfiles |3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 21:01:52 UTC (rev 274689)
+++ PKGBUILD2017-12-17 21:17:50 UTC (rev 274690)
@@ -4,7 +4,7 @@
 
 pkgname=emby-server
 pkgver=3.2.50.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Bring together your videos, music, photos, and live television'
 arch=('any')
 url='http://emby.media'
@@ -25,7 +25,7 @@
 '015869b52601a9cdbd303aed9dffe11ef19959da4a070c775ece8416e699979f'
 '8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70'
 'f7fa33949757ffc587ecf82496dc35ebc8c8e5c98b882b31dc40a24263d3921a'
-'a3b0b558042b91e94030d5b5dbadb8fd0814e07a6fc371724589c9247f340465')
+'a13a844a1bdc679356698e3fd7f3946d07bdfe021ed857d944ead011ad338056')
 
 prepare() {
   rm -rf system/{electron,runtimes}

Modified: emby-server.tmpfiles
===
--- emby-server.tmpfiles2017-12-17 21:01:52 UTC (rev 274689)
+++ emby-server.tmpfiles2017-12-17 21:17:50 UTC (rev 274690)
@@ -1,2 +1 @@
-d /var/lib/emby 0755 emby emby
-x /var/lib/emby
+d /var/lib/emby 0755 emby emby -


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

2017-12-17 Thread Antonio Rojas via arch-commits
Date: Sunday, December 17, 2017 @ 21:55:25
  Author: arojas
Revision: 274695

archrelease: copy trunk to community-x86_64

Added:
  sqlitebrowser/repos/community-x86_64/PKGBUILD
(from rev 274694, sqlitebrowser/trunk/PKGBUILD)
Deleted:
  sqlitebrowser/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 21:54:50 UTC (rev 274694)
+++ PKGBUILD2017-12-17 21:55:25 UTC (rev 274695)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Douglas Soares de Andrade 
-# Contributor: Michael Fellinger 
-
-pkgname=sqlitebrowser
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt"
-arch=('i686' 'x86_64')
-url="http://sqlitebrowser.org/;
-license=('GPL')
-depends=('qt5-base' 'sqlite' 'libxkbcommon-x11')
-makedepends=('cmake' 'qt5-tools')
-#source=(https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-$pkgver.tar.gz)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sqlitebrowser/sqlitebrowser/archive/v$pkgver.tar.gz;)
-sha256sums=('608475b5956bc7ebbfc80515a96b814abe9e0f9f2b040ac19fd8608d80163a56')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  sed -i 's|Icon=.*|Icon=sqlitebrowser|' distri/sqlitebrowser.desktop
-  sed -i \
--e 's|DB Browser for SQLite|sqlitebrowser|g' \
-CMakeLists.txt
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  cmake -DUSE_QT5=TRUE -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-  install -Dm0644 distri/sqlitebrowser.desktop 
"$pkgdir"/usr/share/applications/sqlitebrowser.desktop
-  install -dm0755 "$pkgdir"/usr/share/icons/
-  install -m0644 images/sqlitebrowser.svg "$pkgdir"/usr/share/icons/
-}

Copied: sqlitebrowser/repos/community-x86_64/PKGBUILD (from rev 274694, 
sqlitebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 21:55:25 UTC (rev 274695)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Douglas Soares de Andrade 
+# Contributor: Michael Fellinger 
+
+pkgname=sqlitebrowser
+pkgver=3.10.1
+pkgrel=1
+pkgdesc="SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt"
+arch=('x86_64')
+url="http://sqlitebrowser.org/;
+license=('GPL')
+depends=('qt5-base' 'hicolor-icon-theme')
+makedepends=('cmake' 'qt5-tools')
+#source=(https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-$pkgver.tar.gz)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sqlitebrowser/sqlitebrowser/archive/v$pkgver.tar.gz;)
+sha256sums=('36eb53bc75192c687dce298c79f1532c410ce4ecbeeacfb07b9d02a307f16bef')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}


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

2017-12-17 Thread Gaëtan Bisson via arch-commits
Date: Monday, December 18, 2017 @ 01:48:32
  Author: bisson
Revision: 313281

archrelease: copy trunk to extra-x86_64

Added:
  mpd/repos/extra-x86_64/PKGBUILD
(from rev 313280, mpd/trunk/PKGBUILD)
  mpd/repos/extra-x86_64/conf
(from rev 313280, mpd/trunk/conf)
  mpd/repos/extra-x86_64/sysusers.d
(from rev 313280, mpd/trunk/sysusers.d)
  mpd/repos/extra-x86_64/tmpfiles.d
(from rev 313280, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/extra-x86_64/PKGBUILD
  mpd/repos/extra-x86_64/conf
  mpd/repos/extra-x86_64/install
  mpd/repos/extra-x86_64/tmpfiles.d

+
 PKGBUILD   |  125 +--
 conf   |   12 ++---
 install|5 --
 sysusers.d |2 
 tmpfiles.d |4 +
 5 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-18 01:47:45 UTC (rev 313280)
+++ PKGBUILD2017-12-18 01:48:32 UTC (rev 313281)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Andrea Scarpino 
-# Contributor: Damir Perisa 
-# Contributor: Ben 
-
-pkgname=mpd
-pkgver=0.20.12
-pkgrel=1
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='https://www.musicpd.org/'
-license=('GPL')
-arch=('x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
- 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient' 
'libcdio-paranoia'
- 'libgme' 'zziplib')
-makedepends=('boost' 'doxygen')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-#source=("https://www.musicpd.org/download/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-'tmpfiles.d'
-'conf')
-sha256sums=('e159ac0608fb85c891bd19375ed7056d5f9ec4ba492b052f24820513e774f709'
-'SKIP'
-'c1683ba35774c85e16c70e89f7e2ed1c09619512b1a273daabbd5e34d40439bd'
-'f40f68205834ca53cea3372e930bfe6c2f9ecc9df3b1605df2fec63a658b2e03')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-cdio-paranoia \
-   --enable-iso9660 \
-   --enable-jack \
-   --enable-libmpdclient \
-   --enable-pipe-output \
-   --enable-pulse \
-   --enable-soundcloud \
-   --enable-zzip \
-   --disable-sidplay \
-   --with-systemduserunitdir=/usr/lib/systemd/user \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../conf "${pkgdir}"/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd{,/playlists}
-
-   sed '/\[Service\]/a User=mpd' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
-   sed '/WantedBy=/c WantedBy=default.target' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
-}

Copied: mpd/repos/extra-x86_64/PKGBUILD (from rev 313280, mpd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-18 01:48:32 UTC (rev 313281)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Andrea Scarpino 
+# Contributor: Damir Perisa 
+# Contributor: Ben 
+
+pkgname=mpd
+pkgver=0.20.12
+pkgrel=2
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='https://www.musicpd.org/'
+license=('GPL')
+arch=('x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
+ 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient' 
'libcdio-paranoia'
+ 'libgme' 'zziplib')
+makedepends=('boost' 'doxygen')
+validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
+#source=("https://www.musicpd.org/download/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+'tmpfiles.d'
+'sysusers.d'
+'conf')
+sha256sums=('e159ac0608fb85c891bd19375ed7056d5f9ec4ba492b052f24820513e774f709'
+'SKIP'
+  

[arch-commits] Commit in mpd/trunk (PKGBUILD install sysusers.d tmpfiles.d)

2017-12-17 Thread Gaëtan Bisson via arch-commits
Date: Monday, December 18, 2017 @ 01:47:45
  Author: bisson
Revision: 313280

switch to systemd-sysusers.d

Added:
  mpd/trunk/sysusers.d
Modified:
  mpd/trunk/PKGBUILD
  mpd/trunk/tmpfiles.d
Deleted:
  mpd/trunk/install

+
 PKGBUILD   |9 +
 install|5 -
 sysusers.d |2 ++
 tmpfiles.d |2 ++
 4 files changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 21:15:16 UTC (rev 313279)
+++ PKGBUILD2017-12-18 01:47:45 UTC (rev 313280)
@@ -7,7 +7,7 @@
 
 pkgname=mpd
 pkgver=0.20.12
-pkgrel=1
+pkgrel=2
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='https://www.musicpd.org/'
 license=('GPL')
@@ -21,14 +21,15 @@
 
#source=("https://www.musicpd.org/download/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 
source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 'tmpfiles.d'
+'sysusers.d'
 'conf')
 sha256sums=('e159ac0608fb85c891bd19375ed7056d5f9ec4ba492b052f24820513e774f709'
 'SKIP'
-'c1683ba35774c85e16c70e89f7e2ed1c09619512b1a273daabbd5e34d40439bd'
+'2faa85c12449a5b3ca422ff1c1fa06d057c7e262a74bfa6298c914a92d6f2e7a'
+'0b74c6e5db08daab3091dc15a6b0c75210ba2f9e98fa074f6cfd605a461056b6'
 'f40f68205834ca53cea3372e930bfe6c2f9ecc9df3b1605df2fec63a658b2e03')
 
 backup=('etc/mpd.conf')
-install=install
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
@@ -55,7 +56,7 @@
make DESTDIR="${pkgdir}" install
install -Dm644 ../conf "${pkgdir}"/etc/mpd.conf
install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd{,/playlists}
+   install -Dm644 ../sysusers.d "${pkgdir}"/usr/lib/sysusers.d/mpd.conf
 
sed '/\[Service\]/a User=mpd' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
sed '/WantedBy=/c WantedBy=default.target' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service

Deleted: install
===
--- install 2017-12-17 21:15:16 UTC (rev 313279)
+++ install 2017-12-18 01:47:45 UTC (rev 313280)
@@ -1,5 +0,0 @@
-post_install() {
-   getent group mpd &>/dev/null || groupadd -r -g 45 mpd >/dev/null
-   getent passwd mpd &>/dev/null || useradd -r -u 45 -g mpd -d 
/var/lib/mpd -s /bin/false -G audio mpd >/dev/null
-   usr/bin/systemd-tmpfiles --create mpd.conf || true
-}

Added: sysusers.d
===
--- sysusers.d  (rev 0)
+++ sysusers.d  2017-12-18 01:47:45 UTC (rev 313280)
@@ -0,0 +1,2 @@
+u mpd 45 - /var/lib/mpd
+m mpd audio

Modified: tmpfiles.d
===
--- tmpfiles.d  2017-12-17 21:15:16 UTC (rev 313279)
+++ tmpfiles.d  2017-12-18 01:47:45 UTC (rev 313280)
@@ -1 +1,3 @@
 d /run/mpd 0755 mpd mpd
+d /var/lib/mpd 0755 mpd mpd
+d /var/lib/mpd/playlists 0755 mpd mpd


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 18:45:28
  Author: heftig
Revision: 274659

archrelease: copy trunk to community-x86_64

Added:
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 274658, gnome-software/trunk/PKGBUILD)
Deleted:
  gnome-software/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 18:44:12 UTC (rev 274658)
+++ PKGBUILD2017-12-17 18:45:28 UTC (rev 274659)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgname=gnome-software
-pkgver=3.26.3
-pkgrel=1
-pkgdesc="GNOME Software Tools"
-arch=(x86_64)
-license=(GPL2)
-url="https://wiki.gnome.org/Apps/Software/;
-depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
flatpak
- packagekit archlinux-appstream-data gtkspell3 libgudev fwupd liboauth)
-makedepends=(python docbook-xsl git valgrind meson gobject-introspection 
gtk-doc)
-_commit=f38f46c22d7be15f0415925e06c4cc2b94950fbc  # 
tags/GNOME_SOFTWARE_3_26_3^0
-source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  arch-meson ../$pkgname -Denable-rpm=false
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: gnome-software/repos/community-x86_64/PKGBUILD (from rev 274658, 
gnome-software/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 18:45:28 UTC (rev 274659)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Yosef Or Boczko 
+
+pkgname=gnome-software
+pkgver=3.26.4
+pkgrel=1
+pkgdesc="GNOME Software Tools"
+arch=(x86_64)
+license=(GPL2)
+url="https://wiki.gnome.org/Apps/Software/;
+depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
flatpak
+ packagekit archlinux-appstream-data gtkspell3 libgudev fwupd liboauth)
+makedepends=(python docbook-xsl git valgrind meson gobject-introspection 
gtk-doc)
+_commit=2d0d2d7bc464a35a9d26f6a6485bf38c716ace86  # tags/3.26.4^0
+source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  arch-meson ../$pkgname -Denable-rpm=false
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in linux/repos (10 files)

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:35:19
  Author: heftig
Revision: 313261

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  
linux/repos/staging-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
(from rev 313260, 
linux/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch)
  
linux/repos/staging-x86_64/0001-e1000e-Fix-e1000_check_for_copper_link_ich8lan-retur.patch
(from rev 313260, 
linux/trunk/0001-e1000e-Fix-e1000_check_for_copper_link_ich8lan-retur.patch)
  
linux/repos/staging-x86_64/0002-dccp-CVE-2017-8824-use-after-free-in-DCCP-code.patch
(from rev 313260, 
linux/trunk/0002-dccp-CVE-2017-8824-use-after-free-in-DCCP-code.patch)
  linux/repos/staging-x86_64/60-linux.hook
(from rev 313260, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 313260, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 313260, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 313260, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 313260, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 313260, linux/trunk/linux.preset)

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |  102 
 0001-e1000e-Fix-e1000_check_for_copper_link_ich8lan-retur.patch |   73 
 0002-dccp-CVE-2017-8824-use-after-free-in-DCCP-code.patch   |   57 
 60-linux.hook   |   12 
 90-linux.hook   |   11 
 PKGBUILD|  246 
 config  | 8498 
++
 linux.install   |   10 
 linux.preset|   14 
 9 files changed, 9023 insertions(+)

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


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:48:43
  Author: heftig
Revision: 274666

20170610-29: kernel 4.14.7

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:48:12 UTC (rev 274665)
+++ PKGBUILD2017-12-17 19:48:43 UTC (rev 274666)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=28
+pkgrel=29
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2017-12-17 Thread Levente Polyak via arch-commits
Date: Sunday, December 17, 2017 @ 19:46:49
  Author: anthraxx
Revision: 313262

upgpkg: trayer 1.1.7-1

Modified:
  trayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:35:19 UTC (rev 313261)
+++ PKGBUILD2017-12-17 19:46:49 UTC (rev 313262)
@@ -1,37 +1,31 @@
-# $Id$
+# Maintainer: Levente Polyak 
 # Maintainer: Eric Bélanger 
 
 pkgname=trayer
-pkgver=1.0
-pkgrel=8
-pkgdesc="A lightweight GTK2-based systray"
+pkgver=1.1.7
+pkgrel=1
+pkgdesc='lightweight GTK2-based systray for UNIX desktop'
+url='https://github.com/sargon/trayer-srg'
 arch=('x86_64')
-url="https://gna.org/projects/fvwm-crystal/;
-license=('GPL' 'MIT')
+license=('MIT')
 depends=('gtk2')
 makedepends=('libxmu')
-options=('!makeflags')
-source=(http://download.gna.org/fvwm-crystal/trayer/${pkgver}/${pkgname}-${pkgver}.tar.gz
-trayer.diff manpage.diff)
-sha1sums=('f2657693d196578e3776b0812952dfa1c25878cc'
-  '63459c5f74b8cc137d8a16ab997200025225215c'
-  'eb919fd4a6223034e59e7c9fd0de298d40c91242')
+provides=('trayer-srg')
+conflicts=('trayer-srg')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sargon/trayer-srg/archive/trayer-${pkgver}.tar.gz)
+sha512sums=('5bb049af01c3f3f62dc8a5c1932985b92c98e4e2083aebd1dc09256746e097239be54ebc739801773878882a5c8f168a4a13bdac292388f79079ad52c41b2cad')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p0 -i ../trayer.diff
-  patch -p1 -i ../manpage.diff
-  sed -i 's/$(LIBS) $(OBJ) $(SYSTRAYOBJ)/$(OBJ) $(SYSTRAYOBJ) $(LIBS) -lX11/' 
Makefile
-}
-
 build() {
-  cd ${pkgname}-${pkgver}
-  make CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+  cd trayer-srg-${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX="${pkgdir}/usr" install
-  install -D -m644 trayer.1 "${pkgdir}/usr/share/man/man1/trayer.1"
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  cd trayer-srg-${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 man/trayer.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
+
+# vim: ts=2 sw=2 et:


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:49:27
  Author: heftig
Revision: 274667

5.2.2-12: kernel 4.14.7

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:48:43 UTC (rev 274666)
+++ PKGBUILD2017-12-17 19:49:27 UTC (rev 274667)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=5.2.2
-pkgrel=11
+pkgrel=12
 _linux_major=4
 _linux_minor=14
 arch=('x86_64')


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

2017-12-17 Thread Levente Polyak via arch-commits
Date: Sunday, December 17, 2017 @ 19:49:20
  Author: anthraxx
Revision: 313265

archrelease: copy trunk to extra-x86_64

Added:
  trayer/repos/extra-x86_64/PKGBUILD
(from rev 313264, trayer/trunk/PKGBUILD)
Deleted:
  trayer/repos/extra-x86_64/PKGBUILD
  trayer/repos/extra-x86_64/manpage.diff
  trayer/repos/extra-x86_64/trayer.diff

--+
 PKGBUILD |   68 ---
 manpage.diff |  197 -
 trayer.diff  |   22 --
 3 files changed, 31 insertions(+), 256 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 19:49:12 UTC (rev 313264)
+++ PKGBUILD2017-12-17 19:49:20 UTC (rev 313265)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=trayer
-pkgver=1.0
-pkgrel=8
-pkgdesc="A lightweight GTK2-based systray"
-arch=('i686' 'x86_64')
-url="https://gna.org/projects/fvwm-crystal/;
-license=('GPL' 'MIT')
-depends=('gtk2')
-makedepends=('libxmu')
-options=('!makeflags')
-source=(http://download.gna.org/fvwm-crystal/trayer/${pkgver}/${pkgname}-${pkgver}.tar.gz
-trayer.diff manpage.diff)
-sha1sums=('f2657693d196578e3776b0812952dfa1c25878cc'
-  '63459c5f74b8cc137d8a16ab997200025225215c'
-  'eb919fd4a6223034e59e7c9fd0de298d40c91242')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p0 -i ../trayer.diff
-  patch -p1 -i ../manpage.diff
-  sed -i 's/$(LIBS) $(OBJ) $(SYSTRAYOBJ)/$(OBJ) $(SYSTRAYOBJ) $(LIBS) -lX11/' 
Makefile
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX="${pkgdir}/usr" install
-  install -D -m644 trayer.1 "${pkgdir}/usr/share/man/man1/trayer.1"
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: trayer/repos/extra-x86_64/PKGBUILD (from rev 313264, 
trayer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 19:49:20 UTC (rev 313265)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgname=trayer
+pkgver=1.1.7
+pkgrel=1
+pkgdesc='lightweight GTK2-based systray for UNIX desktop'
+url='https://github.com/sargon/trayer-srg'
+arch=('x86_64')
+license=('MIT')
+depends=('gtk2')
+makedepends=('libxmu')
+provides=('trayer-srg')
+conflicts=('trayer-srg')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sargon/trayer-srg/archive/trayer-${pkgver}.tar.gz)
+sha512sums=('5bb049af01c3f3f62dc8a5c1932985b92c98e4e2083aebd1dc09256746e097239be54ebc739801773878882a5c8f168a4a13bdac292388f79079ad52c41b2cad')
+
+build() {
+  cd trayer-srg-${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd trayer-srg-${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 man/trayer.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: manpage.diff
===
--- manpage.diff2017-12-17 19:49:12 UTC (rev 313264)
+++ manpage.diff2017-12-17 19:49:20 UTC (rev 313265)
@@ -1,197 +0,0 @@
-Description: Debian manpage and path setup
-Author: Jens Peter Secher 
-Index: trayer/trayer.1
-===
 /dev/null  1970-01-01 00:00:00.0 +
-+++ trayer/trayer.12011-05-08 21:38:37.0 +0200
-@@ -0,0 +1,190 @@
-+.TH TRAYER 1 "Feb 14, 2005" "FVWM\-Crystal"
-+.SH NAME
-+trayer \- a lightweight GTK2\-based systray for UNIX desktop
-+.SH SYNOPSIS
-+.B trayer \-h
-+.br
-+.B trayer \-v
-+.br
-+.B trayer
-+.\"
-+.RB [\| \-\-edge
-+.RI \| left \||\| right \||\| top \||\| bottom \||\| none \|]
-+.\"
-+.RB [\| \-\-align
-+.RI \| left \||\| right \||\| center \|]
-+.\"
-+.RB [\| \-\-margin
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-widthtype
-+.RI \| request \||\| pixel \||\| percent
-+.RI \|]
-+.\"
-+.RB [\| \-\-width
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-heighttype
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-height
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-SetDockType
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-SetPartialStrut
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-transparent
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-alpha
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-tint
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-distance
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-expand
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-padding
-+.RI \|  \|]
-+.\"
-+.SH DESCRIPTION
-+.B trayer
-+is a small program designed to provide system tray similar to these in
-+.B GNOME
-+/
-+.B KDE
-+desktop environments for window managers which does not
-+support that function. It is similar to other applications such as
-+.B peksystray
-+and \fBdocker\fP.
-+.PP
-+System 

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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:48:12
  Author: heftig
Revision: 274665

0.42-43: kernel 4.14.7

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:47:57 UTC (rev 274664)
+++ PKGBUILD2017-12-17 19:48:12 UTC (rev 274665)
@@ -11,7 +11,7 @@
 _pkgname=tp-smapi
 pkgver=0.42
 _extradir=/usr/lib/modules/extramodules-4.14-ARCH
-pkgrel=42
+pkgrel=43
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:47:57
  Author: heftig
Revision: 274664

8.045.08-16: kernel 4.14.7

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:47:06 UTC (rev 274663)
+++ PKGBUILD2017-12-17 19:47:57 UTC (rev 274664)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.045.08
-pkgrel=15
+pkgrel=16
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


[arch-commits] Commit in nvidia-304xx/repos (4 files)

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:55:27
  Author: heftig
Revision: 313269

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-304xx/repos/staging-x86_64/
  nvidia-304xx/repos/staging-x86_64/PKGBUILD
(from rev 313268, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/staging-x86_64/disable-mtrr.patch
(from rev 313268, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/staging-x86_64/kernel-4.14.patch
(from rev 313268, nvidia-304xx/trunk/kernel-4.14.patch)

+
 PKGBUILD   |   71 +++
 disable-mtrr.patch |   24 +
 kernel-4.14.patch  |   29 
 3 files changed, 124 insertions(+)

Copied: nvidia-304xx/repos/staging-x86_64/PKGBUILD (from rev 313268, 
nvidia-304xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-17 19:55:27 UTC (rev 313269)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-304xx
+pkgname=(nvidia-304xx nvidia-304xx-dkms)
+pkgver=304.137
+_extramodules=extramodules-4.14-ARCH
+pkgrel=16
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-304xx-utils=${pkgver}" 'linux' 'linux-headers>=4.14' 
'linux-headers<4.15')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'disable-mtrr.patch' 'kernel-4.14.patch')
+sha512sums=('4ab648647e4f3e2c352b2eab6454c264fe4728d8eb1264fafee2a4ab1a4ce59516abcf8490044d31e35309ea951e564cc217e13f7139a48bbf650a4238c5b87c'
+
'54e8825e523f11706890e09e476498f3a30f75ce4e350ff2ff8a1e1c3af574d9ccfb8903543766b6863d94cdfbf46e68cd3d33380867dd976cafc8dd2dd78774'
+
'ccaa40e085d985ec4280003e36dd06e60958ed1408867379fd21a68a18d48aa4be311bf9ad1e804f7a7245c90be98e919d2ec30f45d290f1cdb19c866bdb8a8d')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np1 --no-backup-if-mismatch < "${srcdir}/kernel-4.14.patch"
+
+# FS#47092
+#patch -d kernel -Np1 --no-backup-if-mismatch < 
"${srcdir}/disable-mtrr.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-304xx() {
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-304xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-304xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 304xx legacy branch"
+depends=('dkms' "nvidia-304xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-304xx')
+
+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/nvidia.conf"
+}

Copied: nvidia-304xx/repos/staging-x86_64/disable-mtrr.patch (from rev 313268, 
nvidia-304xx/trunk/disable-mtrr.patch)
===
--- staging-x86_64/disable-mtrr.patch   (rev 0)
+++ staging-x86_64/disable-mtrr.patch   2017-12-17 19:55:27 UTC (rev 313269)
@@ -0,0 +1,24 @@
+Author: Luca Boccassi 
+Description: Disable MTRR on kernel >= 4.3
+ From kernel 4.3 and newer (commit 2baa891e42d84) mtrr_add and mtrr_del are no
+ longer exported. The Nvidia kernel shim still uses it as of 304.131, causing
+ the module to error out when loading. Disable MTRR if running on 4.3 or 
greater
+ until upstream fixes it.
+--- a/nv-linux.h
 b/nv-linux.h
+@@ -256,6 +256,15 @@
+ #include 
+ #endif
+ 
++/*
++ * As of version 304.131, os-agp.c and os-mtrr.c still use deprecated
++ * kernel APIs for mtrr which are no longer exported since 4.3, causing
++ * the module to error out when loaded.
++ */
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++#undef CONFIG_MTRR
++#endif
++
+ #if !defined(NV_VMWARE) && defined(CONFIG_MTRR)
+ #include 
+ #endif

Copied: nvidia-304xx/repos/staging-x86_64/kernel-4.14.patch (from rev 313268, 

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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:54:40
  Author: heftig
Revision: 274669

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 274668, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 274668, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-17 19:54:40 UTC (rev 274669)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=5.2.2
+pkgrel=12
+_linux_major=4
+_linux_minor=14
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=("linux>=${_linux_major}.${_linux_minor}"
+ "linux<${_linux_major}.$((_linux_minor+1))"
+ "linux-headers>=${_linux_major}.${_linux_minor}"
+ "linux-headers<${_linux_major}.$((_linux_minor+1))"
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-${_linux_major}.${_linux_minor}-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=("linux>=${_linux_major}.${_linux_minor}"
+   "linux<${_linux_major}.$((_linux_minor+1))")
+  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" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" |
+install -Dm644 /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'
+  license=('GPL')
+  depends=("linux>=${_linux_major}.${_linux_minor}"
+   "linux<${_linux_major}.$((_linux_minor+1))")
+  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/vboxguest/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf "vboxguest\nvboxsf\nvboxvideo\n" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:55:04
  Author: heftig
Revision: 274670

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 274669, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-17 19:55:04 UTC (rev 274670)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=94
+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>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+_extramodules=extramodules-4.14-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 bbswitch.ko
+  find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+}
+
+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 tp_smapi/repos (2 files)

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:54:16
  Author: heftig
Revision: 274668

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 274667, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 274667, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-17 19:54:16 UTC (rev 274668)
@@ -0,0 +1,44 @@
+# 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
+_pkgname=tp-smapi
+pkgver=0.42
+_extradir=/usr/lib/modules/extramodules-4.14-ARCH
+pkgrel=43
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+source=("$pkgname-$_pkgname-$pkgver.tar.gz::https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd $pkgname-$_pkgname-$pkgver
+
+  # 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-$_pkgname-$pkgver
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec gzip -n -9 {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:55:49
  Author: heftig
Revision: 274671

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 274670, r8168/trunk/PKGBUILD)
  r8168/repos/community-staging-x86_64/linux-4.11.patch
(from rev 274670, r8168/trunk/linux-4.11.patch)

--+
 PKGBUILD |   42 ++
 linux-4.11.patch |   14 ++
 2 files changed, 56 insertions(+)

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 274670, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-17 19:55:49 UTC (rev 274671)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.045.08
+pkgrel=16
+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=('18161cb72fc872a9aed194514f7b8fb8b255b6fa6ed3d2dd459700eaad575f31')
+
+build() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+   msg2 "Kernel = $KERNEL_VERSION"
+
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_VERSION/build \
+   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
+
+   cd "$pkgname-$pkgver"
+   install -Dt "$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH" -m644 
src/r8168.ko
+   find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+
+   echo "blacklist r8169" | \
+   install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/r8168.conf"
+}

Copied: r8168/repos/community-staging-x86_64/linux-4.11.patch (from rev 274670, 
r8168/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2017-12-17 19:55:49 UTC (rev 
274671)
@@ -0,0 +1,14 @@
+diff --git a/src/r8168_n.c b/src/r8168_n.c
+index 3c5a7e7..e2026bb 100755
+--- a/src/r8168_n.c
 b/src/r8168_n.c
+@@ -25732,7 +25732,9 @@ process_pkt:
+ if (rtl8168_rx_vlan_skb(tp, desc, skb) < 0)
+ rtl8168_rx_skb(tp, skb);
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ dev->last_rx = jiffies;
++#endif
+ RTLDEV->stats.rx_bytes += pkt_size;
+ RTLDEV->stats.rx_packets++;
+ }


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:56:22
  Author: heftig
Revision: 274672

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 274671, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 274671, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 274671, 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 
274671, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2017-12-17 19:56:22 UTC (rev 
274672)
@@ -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 274671, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-17 19:56:22 UTC (rev 274672)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+pkgrel=29
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+_extramodules=extramodules-4.14-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+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 vhba.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 gzip -n {} +
+}
+
+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 274671, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2017-12-17 19:56:22 UTC (rev 274672)
@@ -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 lollypop/trunk (PKGBUILD)

2017-12-17 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 17, 2017 @ 20:17:39
  Author: alucryd
Revision: 274684

upgpkg: lollypop 0.9.305-1

Modified:
  lollypop/trunk/PKGBUILD

--+
 PKGBUILD |   23 +++
 1 file changed, 7 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 20:04:45 UTC (rev 274683)
+++ PKGBUILD2017-12-17 20:17:39 UTC (rev 274684)
@@ -4,9 +4,9 @@
 # Contributor: Cédric Bellegarde 
 
 pkgname=lollypop
-pkgver=0.9.304
-_portal_pkgver=0.9.4
-pkgrel=2
+pkgver=0.9.305
+_portal_pkgver=0.9.5
+pkgrel=1
 pkgdesc='Music player for GNOME'
 arch=('any')
 url='https://github.com/gnumdk/lollypop'
@@ -22,20 +22,11 @@
 'python-pylast: Last.FM support'
 'python-wikipedia: Wikipedia support'
 'youtube-dl: YouTube playback')
-_commit='8f3fec20c99498a48f33df00eb64d5af20f81a38'
-source=("https://github.com/gnumdk/lollypop/releases/download/${pkgver}/lollypop-${pkgver}.tar.xz;
-
"lollypop-portal-${_portal_pkgver}.tar.gz::https://github.com/gnumdk/lollypop-portal/archive/${_portal_pkgver}.tar.gz;
-
'lollypop-pylast-2.0.patch::https://github.com/gnumdk/lollypop/commit/15d29a825067b7e854f15c40ec955790877b33f9.patch')
-sha256sums=('e80933295f9dbc04ca1b079250cb920678c3aa3b54a11e035d10a0101c371e1c'
-'0afaf691aa1e87e1720960c66bea73a03e7453b2f5e825d4cffdbaaa6406da5c'
-'c3453c1e048d96ba35322d1830c26f03c0723edd97d1d9e26a77ca1afdcd4428')
+source=("https://gitlab.gnome.org/gnumdk/lollypop/uploads/6d0bae054101608108339802db583fb9/lollypop-${pkgver}.tar.xz;
+
"https://gitlab.gnome.org/gnumdk/lollypop-portal/uploads/53e3fbe2d27328fc2a7b9e4073e9500b/lollypop-portal-${_portal_pkgver}.tar.xz;)
+sha256sums=('8b8c5a3c5d8ee0a5874b6c93fa5ce0346b8e67b9382ee06d4381fab5563f3c90'
+'0997150312aaf576dfe625f1e7cafcfe82ad4927d7e0b3e463a9da70ae0d7133')
 
-prepare() {
-  cd lollypop-${pkgver}
-
-  patch -Np1 -i ../lollypop-pylast-2.0.patch
-}
-
 build() {
   for d in lollypop-portal-${_portal_pkgver} lollypop-${pkgver}; do
 pushd $d


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

2017-12-17 Thread Alexander Rødseth via arch-commits
Date: Sunday, December 17, 2017 @ 21:01:52
  Author: arodseth
Revision: 274689

archrelease: copy trunk to community-x86_64

Added:
  wings3d/repos/community-x86_64/PKGBUILD
(from rev 274688, wings3d/trunk/PKGBUILD)
  wings3d/repos/community-x86_64/wings3d.sh
(from rev 274688, wings3d/trunk/wings3d.sh)
Deleted:
  wings3d/repos/community-x86_64/PKGBUILD
  wings3d/repos/community-x86_64/wings3d.sh

+
 PKGBUILD   |  118 +--
 wings3d.sh |8 ++--
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 21:01:35 UTC (rev 274688)
+++ PKGBUILD2017-12-17 21:01:52 UTC (rev 274689)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: kappa 
-
-pkgname=wings3d
-pkgver=2.1.5
-pkgrel=3
-pkgdesc='3D modeling program'
-arch=('x86_64' 'i686')
-url='http://www.wings3d.com/'
-license=('GPL')
-depends=('desktop-file-utils' 'erlang-sdl' 'erlang-cl')
-makedepends=('gendesk' 'imagemagick')
-optdepends=('povray: rendering support via POV-Ray')
-source=("https://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2;
-$pkgname.sh)
-sha256sums=('f0f03cfe9f0ee0ee6c734a2b7e50410d5f21238441cb1f34422b0ecde25b582c'
-'b44102a5c4f9f3cf71c17ef45ce534c5723b3aeb2f78298abdaf77b401982128')
-_p=${pkgname%3d}-$pkgver
-
-prepare() {
-  gendesk -f -n \
---name Wings3D \
---pkgname $pkgname \
---pkgdesc "$pkgdesc" \
---genericname '3D Modeler' \
---categories 'Graphics;3DGraphics'
-
-  convert $_p/win32/wings.ico $pkgname.png
-
-  # Path fix for building wpc_lwo
-  ln -s $_p $_p/plugins_src/import_export/wings
-  ln -s $_p wings
-
-  sed -i 's/-Werror//' $_p/{src,e3d,plugins_src/import_export}/Makefile
-}
-
-build() {
-  export ESDL_PATH="$(echo /usr/lib/erlang/lib/esdl-*)"
-  export ERL_LIBS="$srcdir"
-
-  make -C $_p all lang
-}
-
-package() {
-  install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-
-  install -Dm644 $pkgname.desktop \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 $pkgname-3.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-  install -d "$pkgdir/usr/lib/$pkgname"
-  for subdir in e3d ebin icons plugins psd shaders src textures tools; do
-cp -r $_p/$subdir/ "$pkgdir/usr/lib/$pkgname"
-  done
-}
-
-# getver: wings3d.com/?page_id=84
-# vim:ts=2 sw=2 et:

Copied: wings3d/repos/community-x86_64/PKGBUILD (from rev 274688, 
wings3d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 21:01:52 UTC (rev 274689)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: kappa 
+
+pkgname=wings3d
+pkgver=2.1.5
+pkgrel=4
+pkgdesc='3D modeling program'
+arch=('x86_64')
+url='http://www.wings3d.com/'
+license=('GPL')
+depends=('erlang<=20.0.1' 'desktop-file-utils' 'erlang-sdl' 'erlang-cl')
+makedepends=('gendesk' 'imagemagick')
+optdepends=('povray: rendering support via POV-Ray')
+source=("https://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2;
+$pkgname.sh)
+sha256sums=('f0f03cfe9f0ee0ee6c734a2b7e50410d5f21238441cb1f34422b0ecde25b582c'
+'b44102a5c4f9f3cf71c17ef45ce534c5723b3aeb2f78298abdaf77b401982128')
+_p=${pkgname%3d}-$pkgver
+
+prepare() {
+  gendesk -f -n \
+--name Wings3D \
+--pkgname $pkgname \
+--pkgdesc "$pkgdesc" \
+--genericname '3D Modeler' \
+--categories 'Graphics;3DGraphics'
+
+  convert $_p/win32/wings.ico $pkgname.png
+
+  # Path fix for building wpc_lwo
+  ln -s $_p $_p/plugins_src/import_export/wings
+  ln -s $_p wings
+
+  sed -i 's/-Werror//' $_p/{src,e3d,plugins_src/import_export}/Makefile
+}
+
+build() {
+  export ESDL_PATH="$(echo /usr/lib/erlang/lib/esdl-*)"
+  export ERL_LIBS="$srcdir"
+
+  make -C $_p all lang
+}
+
+package() {
+  install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
+
+  install -Dm644 $pkgname.desktop \
+"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 $pkgname-3.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+  install -d "$pkgdir/usr/lib/$pkgname"
+  for subdir in e3d ebin icons plugins psd shaders src textures tools; do
+cp -r $_p/$subdir/ "$pkgdir/usr/lib/$pkgname"
+  done
+}
+
+# getver: wings3d.com/?page_id=84
+# vim: ts=2 sw=2 et:

Deleted: wings3d.sh
===
--- wings3d.sh  2017-12-17 21:01:35 UTC (rev 274688)
+++ wings3d.sh  2017-12-17 21:01:52 UTC (rev 274689)
@@ -1,4 +0,0 @@
-#!/bin/sh
-erl -noinput -smp \
-  -pa /usr/lib/erlang/lib/esdl-*/ebin /usr/lib/wings3d/ebin \
-  -run wings_start start_halt ${1+"$@"}

Copied: wings3d/repos/community-x86_64/wings3d.sh (from rev 274688, 
wings3d/trunk/wings3d.sh)

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

2017-12-17 Thread Johannes Löthberg via arch-commits
Date: Sunday, December 17, 2017 @ 21:51:55
  Author: demize
Revision: 274692

upgpkg: pkgconf 1.3.90-1

Modified:
  pkgconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 21:18:04 UTC (rev 274691)
+++ PKGBUILD2017-12-17 21:51:55 UTC (rev 274692)
@@ -4,7 +4,7 @@
 # Contributor: Bartlomiej Piotrowski 
 
 pkgname=pkgconf
-pkgver=1.3.12
+pkgver=1.3.90
 pkgrel=1
 
 pkgdesc='Light pkg-config replacement'
@@ -17,7 +17,7 @@
 
 source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz;)
 
-sha256sums=('9fa878a21fec186af095a2f47e8f249fcf4645ed969aba4cdd7ed9031fe7ae30')
+sha256sums=('112db7f957816901b5fe448715c0a9e38f171d4794c44075b0734a0e7fcfba36')
 
 build() {
cd pkgconf-$pkgver


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

2017-12-17 Thread Johannes Löthberg via arch-commits
Date: Sunday, December 17, 2017 @ 21:52:06
  Author: demize
Revision: 274693

archrelease: copy trunk to community-x86_64

Added:
  pkgconf/repos/community-x86_64/PKGBUILD
(from rev 274692, pkgconf/trunk/PKGBUILD)
Deleted:
  pkgconf/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 21:51:55 UTC (rev 274692)
+++ PKGBUILD2017-12-17 21:52:06 UTC (rev 274693)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Piotr Gorski 
-# Contributor: Lucy 
-# Contributor: Bartlomiej Piotrowski 
-
-pkgname=pkgconf
-pkgver=1.3.12
-pkgrel=1
-
-pkgdesc='Light pkg-config replacement'
-url='https://github.com/pkgconf/pkgconf'
-arch=('x86_64')
-license=('custom:ISC')
-
-conflicts=('pkg-config')
-provides=('pkg-config')
-
-source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz;)
-
-sha256sums=('9fa878a21fec186af095a2f47e8f249fcf4645ed969aba4cdd7ed9031fe7ae30')
-
-build() {
-   cd pkgconf-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd pkgconf-$pkgver
-   make DESTDIR="$pkgdir" install
-   ln -s /usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
-   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: pkgconf/repos/community-x86_64/PKGBUILD (from rev 274692, 
pkgconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 21:52:06 UTC (rev 274693)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.3.90
+pkgrel=1
+
+pkgdesc='Light pkg-config replacement'
+url='https://github.com/pkgconf/pkgconf'
+arch=('x86_64')
+license=('custom:ISC')
+
+conflicts=('pkg-config')
+provides=('pkg-config')
+
+source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz;)
+
+sha256sums=('112db7f957816901b5fe448715c0a9e38f171d4794c44075b0734a0e7fcfba36')
+
+build() {
+   cd pkgconf-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd pkgconf-$pkgver
+   make DESTDIR="$pkgdir" install
+   ln -s /usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
+   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}


[arch-commits] Commit in erlang/repos/community-x86_64 (8 files)

2017-12-17 Thread Alexander Rødseth via arch-commits
Date: Sunday, December 17, 2017 @ 23:28:17
  Author: arodseth
Revision: 274697

archrelease: copy trunk to community-x86_64

Added:
  erlang/repos/community-x86_64/PKGBUILD
(from rev 274696, erlang/trunk/PKGBUILD)
  erlang/repos/community-x86_64/epmd.conf
(from rev 274696, erlang/trunk/epmd.conf)
  erlang/repos/community-x86_64/epmd.service
(from rev 274696, erlang/trunk/epmd.service)
  erlang/repos/community-x86_64/epmd.socket
(from rev 274696, erlang/trunk/epmd.socket)
Deleted:
  erlang/repos/community-x86_64/PKGBUILD
  erlang/repos/community-x86_64/epmd.conf
  erlang/repos/community-x86_64/epmd.service
  erlang/repos/community-x86_64/epmd.socket

--+
 PKGBUILD |  178 ++---
 epmd.conf|6 -
 epmd.service |   22 +++
 epmd.socket  |   18 ++---
 4 files changed, 107 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 23:28:03 UTC (rev 274696)
+++ PKGBUILD2017-12-17 23:28:17 UTC (rev 274697)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgbase=erlang
-pkgname=('erlang' 'erlang-unixodbc')
-pkgver=20.1
-pkgrel=1
-_docver=20.0
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('Apache')
-makedepends=('perl' 'mesa' 'lksctp-tools' 'unixodbc' 'wxgtk' 'glu' 'git'
- 'libxslt' 'fop' 'java-environment')
-options=('staticlibs')
-source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver;
-"http://www.erlang.org/download/otp_doc_man_$_docver.tar.gz;
-'epmd.service' 'epmd.socket' 'epmd.conf')
-sha256sums=('SKIP'
-'b7f1542a94a170f8791f5d80a85706f9e8838924ea65d4301032d0c0cfb845cc'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
-
-prepare() {
-  cd otp
-
-  ./otp_build autoconf
-}
-
-build() {
-  cd otp
-
-  ./configure --prefix=/usr --enable-smp-support --with-odbc 
--enable-builtin-zlib
-  make
-}
-
-package_erlang() {
-  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=('ncurses' 'glu' 'wxgtk' 'openssl')
-  optdepends=('erlang-unixodbc: database support'
-  'java-environment: for Java support'
-  'lksctp-tools: for SCTP support')
-  provides=('erlang-nox')
-  conflicts=('erlang-nox')
-
-  make -C otp DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m644 "$srcdir/otp/README.md" \
-"$srcdir"/COPYRIGHT \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
-
-  # License
-  install -Dm644 "$srcdir/otp/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-
-  # Move over files that will be packaged as erlang-unixodbc
-  mkdir "$srcdir/unixodbc"
-  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-  mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
-
-  # epmd service, socket and conf
-  cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-}
-
-package_erlang-unixodbc() {
-  pkgdesc='Unixodbc support for Erlang'
-  depends=('unixodbc' 'erlang-nox')
-
-  # Get the files that should be packaged as erlang-unixodbc
-  mkdir -p "$pkgdir/usr/lib/erlang/"{lib,man/man3}
-  mv "$srcdir/unixodbc/"* "$pkgdir/usr/lib/erlang/lib/"
-  mv "$srcdir/odbc.3.gz" "$pkgdir/usr/lib/erlang/man/man3/"
-
-  # License
-  install -Dm644 "$srcdir/otp/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENCE.txt"
-}
-
-# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION
-# vim: ts=2 sw=2 et:

Copied: erlang/repos/community-x86_64/PKGBUILD (from rev 274696, 
erlang/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 23:28:17 UTC (rev 274697)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 

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

2017-12-17 Thread Alexander Rødseth via arch-commits
Date: Sunday, December 17, 2017 @ 23:28:03
  Author: arodseth
Revision: 274696

upgpkg: erlang 20.2-1

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 21:55:25 UTC (rev 274695)
+++ PKGBUILD2017-12-17 23:28:03 UTC (rev 274696)
@@ -8,9 +8,9 @@
 
 pkgbase=erlang
 pkgname=('erlang' 'erlang-unixodbc')
-pkgver=20.1
+pkgver=20.2
 pkgrel=1
-_docver=20.1
+_docver=20.2
 arch=('x86_64')
 url='https://www.erlang.org/'
 license=('Apache')
@@ -21,7 +21,7 @@
 "http://www.erlang.org/download/otp_doc_man_$_docver.tar.gz;
 'epmd.service' 'epmd.socket' 'epmd.conf')
 sha256sums=('SKIP'
-'05ccf82ff85316e2eb1bebf1a1741dfac1ee450ed49cf0be365f9d4fec6d7b46'
+'950e088f9e47fc10a98e3f67d6420a990650836c648686a2f5dafe331747cbdf'
 'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
 '998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
 '78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
@@ -53,7 +53,7 @@
   # move files that belong to the erlang-unixodbc package
   mkdir -p unixodbc
   mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-  mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
+  #mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
 
   # services and configuration
   install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
@@ -75,7 +75,7 @@
 
   install -d "$pkgdir/usr/lib/erlang/lib"
   mv unixodbc/* "$pkgdir/usr/lib/erlang/lib/"
-  install -Dm644 odbc.3 "$pkgdir/usr/lib/erlang/man/man3/odbc.3"
+  #install -Dm644 odbc.3 "$pkgdir/usr/lib/erlang/man/man3/odbc.3"
   install -Dm644 otp/LICENSE.txt \
 "$pkgdir/usr/share/licenses/$pkgname/LICENCE.txt"
 }


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

2017-12-17 Thread Levente Polyak via arch-commits
Date: Monday, December 18, 2017 @ 00:03:46
  Author: anthraxx
Revision: 274698

upgpkg: dzen2 0.9.5.14.488ab66-1

Modified:
  dzen2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 23:28:17 UTC (rev 274697)
+++ PKGBUILD2017-12-18 00:03:46 UTC (rev 274698)
@@ -1,44 +1,50 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Mark Taylor 
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
+# Contributor: Mark Taylor 
 
 pkgname=dzen2
-pkgver=0.9.5git
+pkgver=0.9.5.14.488ab66
 _commit=488ab66019f475e35e067646621827c18a879ba1
-pkgrel=6
-arch=(x86_64)
-pkgdesc="X notification utility"
-url="https://github.com/robm/dzen;
-license=("MIT")
+pkgrel=1
+pkgdesc='General purpose messaging, notification and menuing program for X11'
+url='https://github.com/robm/dzen'
+arch=('x86_64')
+license=('MIT')
 depends=('libx11' 'libxpm' 'libxinerama' 'libxft')
-makedepends=('gcc' 'git')
-source=("$pkgname-$pkgver::git://github.com/robm/dzen#commit=${_commit}")
-md5sums=('SKIP')
+makedepends=('git')
+source=(${pkgname}::"git+https://github.com/robm/dzen#commit=${_commit};)
+sha512sums=('SKIP')
 
+pkgver() {
+  cd ${pkgname}
+  printf "%s.%s.%s" "$(grep 'VERSION = ' config.mk|cut -d' ' -f3|cut -d- -f1)" 
\
+"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
 prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd ${pkgname}
   sed -i 's|DZEN_XMP|DZEN_XPM|g' main.c
 
-  CFLAGS="$CFLAGS -Wall -Os \${INCS} -DVERSION=\\\"\${VERSION}\\\" 
-DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT `pkg-config --cflags xft`"
+  CFLAGS="${CFLAGS} -Wall -Os \${INCS} -DVERSION=\\\"\${VERSION}\\\" 
-DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT `pkg-config --cflags xft`"
   LIBS=" -L/usr/lib -lc -lXft -lXpm -lXinerama -lX11"
 
-  echo "CFLAGS=$CFLAGS" >>config.mk
-  echo "LIBS=$LIBS" >>config.mk
-  echo "LDFLAGS=$LDFLAGS $LIBS" >>config.mk
+  echo "CFLAGS=${CFLAGS}" >> config.mk
+  echo "LIBS=${LIBS}" >> config.mk
+  echo "LDFLAGS=${LDFLAGS} ${LIBS}" >> config.mk
 }
 
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd ${pkgname}
   make X11INC=/usr/include X11LIB=/usr/lib
-  (cd gadgets && make X11INC=/usr/include X11LIB=/usr/lib)
+  make -C gadgets X11INC=/usr/include X11LIB=/usr/lib
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make PREFIX=/usr MANPREFIX=/usr/man DESTDIR="$pkgdir" install
-  (cd gadgets && make PREFIX=/usr MANPREFIX=/usr/man DESTDIR="$pkgdir" install)
-  install -Dm0644 LICENSE "$pkgdir"/usr/share/licenses/dzen2/COPYING
+  cd ${pkgname}
+  make PREFIX=/usr MANPREFIX=/usr/man DESTDIR="${pkgdir}" install
+  make -C gadgets PREFIX=/usr MANPREFIX=/usr/man DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README* -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
 
-  install -dm0755 "$pkgdir"/usr/share/doc/dzen2
-  install -m0644 README* "$pkgdir"/usr/share/doc/dzen2/
-}
+# vim: ts=2 sw=2 et:


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

2017-12-17 Thread Levente Polyak via arch-commits
Date: Monday, December 18, 2017 @ 00:04:33
  Author: anthraxx
Revision: 274699

archrelease: copy trunk to community-x86_64

Added:
  dzen2/repos/community-x86_64/PKGBUILD
(from rev 274698, dzen2/trunk/PKGBUILD)
Deleted:
  dzen2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-18 00:03:46 UTC (rev 274698)
+++ PKGBUILD2017-12-18 00:04:33 UTC (rev 274699)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Mark Taylor 
-
-pkgname=dzen2
-pkgver=0.9.5git
-_commit=488ab66019f475e35e067646621827c18a879ba1
-pkgrel=6
-arch=(i686 x86_64)
-pkgdesc="X notification utility"
-url="https://github.com/robm/dzen;
-license=("MIT")
-depends=('libx11' 'libxpm' 'libxinerama' 'libxft')
-makedepends=('gcc' 'git')
-source=("$pkgname-$pkgver::git://github.com/robm/dzen#commit=${_commit}")
-md5sums=('SKIP')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's|DZEN_XMP|DZEN_XPM|g' main.c
-
-  CFLAGS="$CFLAGS -Wall -Os \${INCS} -DVERSION=\\\"\${VERSION}\\\" 
-DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT `pkg-config --cflags xft`"
-  LIBS=" -L/usr/lib -lc -lXft -lXpm -lXinerama -lX11"
-
-  echo "CFLAGS=$CFLAGS" >>config.mk
-  echo "LIBS=$LIBS" >>config.mk
-  echo "LDFLAGS=$LDFLAGS $LIBS" >>config.mk
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make X11INC=/usr/include X11LIB=/usr/lib
-  (cd gadgets && make X11INC=/usr/include X11LIB=/usr/lib)
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=/usr MANPREFIX=/usr/man DESTDIR=$pkgdir install
-  (cd gadgets && make PREFIX=/usr MANPREFIX=/usr/man DESTDIR=$pkgdir install)
-  install -Dm0644 LICENSE $pkgdir/usr/share/licenses/dzen2/COPYING
-
-  install -dm0755 $pkgdir/usr/share/doc/dzen2
-  install -m0644 README* $pkgdir/usr/share/doc/dzen2/
-}

Copied: dzen2/repos/community-x86_64/PKGBUILD (from rev 274698, 
dzen2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-18 00:04:33 UTC (rev 274699)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
+# Contributor: Mark Taylor 
+
+pkgname=dzen2
+pkgver=0.9.5.14.488ab66
+_commit=488ab66019f475e35e067646621827c18a879ba1
+pkgrel=1
+pkgdesc='General purpose messaging, notification and menuing program for X11'
+url='https://github.com/robm/dzen'
+arch=('x86_64')
+license=('MIT')
+depends=('libx11' 'libxpm' 'libxinerama' 'libxft')
+makedepends=('git')
+source=(${pkgname}::"git+https://github.com/robm/dzen#commit=${_commit};)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  printf "%s.%s.%s" "$(grep 'VERSION = ' config.mk|cut -d' ' -f3|cut -d- -f1)" 
\
+"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|DZEN_XMP|DZEN_XPM|g' main.c
+
+  CFLAGS="${CFLAGS} -Wall -Os \${INCS} -DVERSION=\\\"\${VERSION}\\\" 
-DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT `pkg-config --cflags xft`"
+  LIBS=" -L/usr/lib -lc -lXft -lXpm -lXinerama -lX11"
+
+  echo "CFLAGS=${CFLAGS}" >> config.mk
+  echo "LIBS=${LIBS}" >> config.mk
+  echo "LDFLAGS=${LDFLAGS} ${LIBS}" >> config.mk
+}
+
+build() {
+  cd ${pkgname}
+  make X11INC=/usr/include X11LIB=/usr/lib
+  make -C gadgets X11INC=/usr/include X11LIB=/usr/lib
+}
+
+package() {
+  cd ${pkgname}
+  make PREFIX=/usr MANPREFIX=/usr/man DESTDIR="${pkgdir}" install
+  make -C gadgets PREFIX=/usr MANPREFIX=/usr/man DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README* -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:46:57
  Author: heftig
Revision: 274662

1.1.0-88: kernel 4.14.7

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 18:52:15 UTC (rev 274661)
+++ PKGBUILD2017-12-17 19:46:57 UTC (rev 274662)
@@ -6,7 +6,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=87
+pkgrel=88
 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 bbswitch/trunk (PKGBUILD)

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:47:06
  Author: heftig
Revision: 274663

0.8-94: kernel 4.14.7

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:46:57 UTC (rev 274662)
+++ PKGBUILD2017-12-17 19:47:06 UTC (rev 274663)
@@ -6,7 +6,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=93
+pkgrel=94
 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 nvidia/trunk (PKGBUILD)

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:49:43
  Author: heftig
Revision: 313266

387.34-13: kernel 4.14.7

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:49:20 UTC (rev 313265)
+++ PKGBUILD2017-12-17 19:49:43 UTC (rev 313266)
@@ -7,7 +7,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=387.34
 _extramodules=extramodules-4.14-ARCH
-pkgrel=12
+pkgrel=13
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


[arch-commits] Commit in trayer/trunk (manpage.diff trayer.diff)

2017-12-17 Thread Levente Polyak via arch-commits
Date: Sunday, December 17, 2017 @ 19:49:12
  Author: anthraxx
Revision: 313264

upgpkg: trayer 1.1.7-1

Deleted:
  trayer/trunk/manpage.diff
  trayer/trunk/trayer.diff

--+
 manpage.diff |  197 -
 trayer.diff  |   22 --
 2 files changed, 219 deletions(-)

Deleted: manpage.diff
===
--- manpage.diff2017-12-17 19:48:45 UTC (rev 313263)
+++ manpage.diff2017-12-17 19:49:12 UTC (rev 313264)
@@ -1,197 +0,0 @@
-Description: Debian manpage and path setup
-Author: Jens Peter Secher 
-Index: trayer/trayer.1
-===
 /dev/null  1970-01-01 00:00:00.0 +
-+++ trayer/trayer.12011-05-08 21:38:37.0 +0200
-@@ -0,0 +1,190 @@
-+.TH TRAYER 1 "Feb 14, 2005" "FVWM\-Crystal"
-+.SH NAME
-+trayer \- a lightweight GTK2\-based systray for UNIX desktop
-+.SH SYNOPSIS
-+.B trayer \-h
-+.br
-+.B trayer \-v
-+.br
-+.B trayer
-+.\"
-+.RB [\| \-\-edge
-+.RI \| left \||\| right \||\| top \||\| bottom \||\| none \|]
-+.\"
-+.RB [\| \-\-align
-+.RI \| left \||\| right \||\| center \|]
-+.\"
-+.RB [\| \-\-margin
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-widthtype
-+.RI \| request \||\| pixel \||\| percent
-+.RI \|]
-+.\"
-+.RB [\| \-\-width
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-heighttype
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-height
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-SetDockType
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-SetPartialStrut
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-transparent
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-alpha
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-tint
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-distance
-+.RI \|  \|]
-+.\"
-+.RB [\| \-\-expand
-+.RI \| true \||\| false \|]
-+.\"
-+.RB [\| \-\-padding
-+.RI \|  \|]
-+.\"
-+.SH DESCRIPTION
-+.B trayer
-+is a small program designed to provide system tray similar to these in
-+.B GNOME
-+/
-+.B KDE
-+desktop environments for window managers which does not
-+support that function. It is similar to other applications such as
-+.B peksystray
-+and \fBdocker\fP.
-+.PP
-+System tray is a place, where many applications put their icons, so they are
-+always visible. Such icons may present status of an application and allow user
-+to control the program.
-+.PP
-+\fBtrayer\fP's code was extracted from \fBfbpanel\fP application, you can 
find more
-+about it on its homepage: http://fbpanel.sourceforge.net/.
-+.SH OPTIONS
-+This programs follow the usual GNU command line syntax, with long
-+options starting with two dashes (`-').
-+A summary of options is included below.
-+.TP
-+.B \-\-help
-+.TP
-+.B \-h
-+Show summary of options and exit.
-+
-+.TP
-+.B \-\-version
-+.TP
-+.B \-v
-+Show version of program and exit.
-+
-+.TP
-+\fB\-\-edge\fP 
\fIleft\fP\||\|\fIright\fP\||\|\fItop\fP\||\|\fIbottom\fP\||\|\fInone\fP
-+Specifies a screen edge to use.
-+
-+.TP
-+\fB\-\-align\fP \fIleft\fP\||\|\fIcenter\fP\||\|\fIright\fP
-+Specifies an align of the icons.
-+
-+.TP
-+\fB\-\-margin\fP \fI\fP
-+Specifies length of margin (in pixels)
-+
-+.TP
-+\fB\-\-widthtype\fB \fIrequest\fP\||\|\fIpixel\fP\||\|\fIpercent\fP
-+Specifies method of calculating trayer's window width:
-+.RS
-+.TP
-+\fIrequest\fP
-+Follow application icons' size, so trayer may shrink or expand dynamically.
-+
-+.TP
-+\fIpixel\fP
-+Set a fixed size, given with \fB\-\-width\fP option in pixels.
-+
-+.TP
-+\fIpercent\fP
-+Set a fixed size, given with \fB\-\-width\fP option in percentage of a length 
of screen edge.
-+.RE
-+
-+.TP
-+\fB\-\-width\fP \fI\fP
-+Width of trayer's window. Ignored when \fB\-\-widthtype\fP is set to 
\fIrequest\fP.
-+
-+.TP
-+\fB\-\-heighttype\fP \fIrequest\fP\||\|\fIpixel\fP\||\|\fIpercent\fP
-+Specifies method of calculating trayer's window height:
-+.RS
-+.TP
-+\fIrequest\fP
-+Follow application icons' size, so trayer may shrink or expand dynamically.
-+
-+.TP
-+\fIpixel\fP
-+Set a fixed size, given with \fB\-\-height\fP option in pixels.
-+
-+.TP
-+\fIpercent\fP
-+Set a fixed size, given with \fB\-\-height\fP option in percentage of a 
length of screen edge.
-+.RE
-+
-+.TP
-+\fB\-\-height\fP \fI\fP
-+Height of trayer's window. Ignored when \fB\-\-heighttype\fP is set to 
\fIrequest\fP.
-+
-+.TP
-+\fB\-\-SetDockType\fP \fItrue\fP\||\|\fIfalse\fP
-+Identify panel window type as dock.
-+
-+.TP
-+\fB\-\-SetPartialStrut\fP \fItrue\fP\||\|\fIfalse\fP
-+Reserve panel space so that it will not be covered by maximized windows.
-+
-+.TP
-+\fB\-\-transparent\fP \fItrue\fP\||\|\fIfalse\fP
-+Use transparency.
-+
-+.TP
-+\fB\-\-alpha\fP \fI\fP
-+Percentage of transparency (0 \- nontransparent, 255 \- fully transparent)
-+
-+.TP
-+\fB\-\-tint\fP \fI\fP
-+Color used to tint transparent background. Color is given as a 24-bit C 
hexadecimal integer, for example: 0xff is red, 0xff8800 is orange and 
0x00ff00 is green.
-+
-+.TP
-+\fB\-\-distance\fP \fI\fP

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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:49:56
  Author: heftig
Revision: 313268

340.104-15: kernel 4.14.7

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:49:49 UTC (rev 313267)
+++ PKGBUILD2017-12-17 19:49:56 UTC (rev 313268)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.104
 _extramodules=extramodules-4.14-ARCH
-pkgrel=14
+pkgrel=15
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:49:49
  Author: heftig
Revision: 313267

304.137-16: kernel 4.14.7

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:49:43 UTC (rev 313266)
+++ PKGBUILD2017-12-17 19:49:49 UTC (rev 313267)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.137
 _extramodules=extramodules-4.14-ARCH
-pkgrel=15
+pkgrel=16
 pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:56:56
  Author: heftig
Revision: 274673

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 274672, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 274672, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   62 
 dkms.conf |9 
 2 files changed, 71 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 274672, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-17 19:56:56 UTC (rev 274673)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=88
+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>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+_extramodules=extramodules-4.14-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 acpi_call.ko
+  find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+
+  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 274672, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2017-12-17 19:56:56 UTC (rev 274673)
@@ -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 nvidia-340xx/repos (4 files)

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:57:44
  Author: heftig
Revision: 313271

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-340xx/repos/staging-x86_64/
  nvidia-340xx/repos/staging-x86_64/PKGBUILD
(from rev 313270, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch
(from rev 313270, nvidia-340xx/trunk/kernel-4.11.patch)
  nvidia-340xx/repos/staging-x86_64/kernel-4.14.patch
(from rev 313270, nvidia-340xx/trunk/kernel-4.14.patch)

---+
 PKGBUILD  |   73 
 kernel-4.11.patch |   38 +++
 kernel-4.14.patch |   29 
 3 files changed, 140 insertions(+)

Copied: nvidia-340xx/repos/staging-x86_64/PKGBUILD (from rev 313270, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-17 19:57:44 UTC (rev 313271)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.104
+_extramodules=extramodules-4.14-ARCH
+pkgrel=15
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.14' 
'linux-headers<4.15')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'kernel-4.11.patch' 'kernel-4.14.patch')
+sha512sums=('e962494561728af5a911354bfb3560e414464f7858f30f9654eac5ca56175bc8498d1eee93a18248c63e9eee7d84807ef924fe9f53239644d7085b0f3502bf8c'
+
'c25d90499e1deb26129a67dd7e953be8c1e31c5770e2b8b64d03af54cf1afec1a52636e74900f8ac468692207ab8a3765a12edd581142c4d2cfd2d6e66ac7ac2'
+
'ccaa40e085d985ec4280003e36dd06e60958ed1408867379fd21a68a18d48aa4be311bf9ad1e804f7a7245c90be98e919d2ec30f45d290f1cdb19c866bdb8a8d')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np0 < "${srcdir}/kernel-4.11.patch"
+patch -Np1 < "${srcdir}/kernel-4.14.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-340xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch (from rev 313270, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2017-12-17 19:57:44 UTC (rev 313271)
@@ -0,0 +1,38 @@
+--- kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:50:46.334075042 +0200
 kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:56:06.358041280 +0200
+@@ -818,7 +818,11 @@
+ }
+ 
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else 
++int _fault(struct vm_fault *vmf)  
++#endif
+ {
+ #if defined(NV_VM_FAULT_HAS_ADDRESS)
+ unsigned long vaddr = vmf->address;
+@@ -828,7 +832,11 @@
+ struct page *page = NULL;
+ int retval;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ retval = _fault_common(vma, vaddr, , vmf->flags);
++#else
++retval = _fault_common(NULL, vaddr, , vmf->flags);
++#endif
+ 
+ vmf->page = 

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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 19:57:20
  Author: heftig
Revision: 313270

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 313269, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fix-abi.patch
(from rev 313269, nvidia/trunk/fix-abi.patch)

---+
 PKGBUILD  |   77 
 fix-abi.patch |   12 
 2 files changed, 89 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 313269, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-17 19:57:20 UTC (rev 313270)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=387.34
+_extramodules=extramodules-4.14-ARCH
+pkgrel=13
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+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>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
+
+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/nvidia.conf"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+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/nvidia.conf"
+}

Copied: nvidia/repos/staging-x86_64/fix-abi.patch (from rev 313269, 
nvidia/trunk/fix-abi.patch)
===
--- staging-x86_64/fix-abi.patch(rev 0)
+++ staging-x86_64/fix-abi.patch2017-12-17 19:57:20 UTC (rev 313270)
@@ -0,0 +1,12 @@
+diff -u -r kernel/nvidia-drm/nvidia-drm-fence.c 
kernel-patched/nvidia-drm/nvidia-drm-fence.c
+--- kernel/nvidia-drm/nvidia-drm-fence.c   2016-08-09 01:43:19.0 
+0200
 kernel-patched/nvidia-drm/nvidia-drm-fence.c   2016-08-25 
14:31:34.419655564 +0200
+@@ -325,7 +325,7 @@
+ struct nvidia_drm_gem_object *nv_gem;
+ };
+ 
+-static void nvidia_drm_gem_prime_soft_fence_event
++static void NVKMS_KAPI_CALL nvidia_drm_gem_prime_soft_fence_event
+ (
+ void *dataPtr,
+ NvU32 dataU32


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

2017-12-17 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 17, 2017 @ 20:04:45
  Author: alucryd
Revision: 274683

archrelease: copy trunk to community-x86_64

Added:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
(from rev 274682, pycharm-community-edition/trunk/PKGBUILD)
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
(from rev 274682, pycharm-community-edition/trunk/pycharm.desktop)
Deleted:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop

-+
 PKGBUILD|   90 +++---
 pycharm.desktop |   22 ++---
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 20:04:28 UTC (rev 274682)
+++ PKGBUILD2017-12-17 20:04:45 UTC (rev 274683)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: David Keogh 
-
-pkgname=pycharm-community-edition
-pkgver=2017.3
-pkgrel=2
-pkgdesc='Python IDE for Professional Developers'
-arch=('x86_64')
-url='http://www.jetbrains.com/pycharm/'
-license=('Apache')
-depends=('gcc-libs' 'giflib' 'glibc' 'java-runtime=8' 'sh' 'ttf-font')
-optdepends=('ipython2: IPython integration for Python 2'
-'ipython: IPython integration for Python 3'
-'python2: Python 2 support'
-'python: Python 3 support')
-makedepends=('python2-setuptools' 'python-setuptools')
-conflicts=('pycharm' 'pycharm-community' 'pycharm-professional')
-provides=('pycharm')
-source=("https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz;
-'pycharm.desktop')
-sha256sums=('b973581cb3de0f0f5a203231f67b21a45b7dd58968393cef49d48403cb1b8ad1'
-'28e0d3200c721e61831d8246eba8f72485d3c8379d10bfa75ccb5331b6749480')
-
-build() {
-  cd pycharm-community-${pkgver}
-
-  python2 helpers/pydev/setup_cython.py build_ext --inplace
-  python3 helpers/pydev/setup_cython.py build_ext --inplace
-  rm -rf bin/fsnotifier{,-arm} lib/libpty/linux/x86
-}
-
-package() {
-  cd pycharm-community-${pkgver}
-
-  install -dm 755 
"${pkgdir}"/usr/{bin,share/{applications,doc,licenses,pixmaps,pycharm}}
-  cp -dr --no-preserve='ownership' bin helpers lib plugins 
"${pkgdir}"/usr/share/pycharm/
-  cp -dr --no-preserve='ownership' help "${pkgdir}"/usr/share/doc/pycharm/
-  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
-  ln -s /usr/share/pycharm/bin/pycharm.sh $pkgdir/usr/bin/pycharm
-  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
-  install -m 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
-}
-
-# vim: ts=2 sw=2 et:

Copied: pycharm-community-edition/repos/community-x86_64/PKGBUILD (from rev 
274682, pycharm-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 20:04:45 UTC (rev 274683)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: David Keogh 
+
+pkgname=pycharm-community-edition
+pkgver=2017.3.1
+pkgrel=1
+pkgdesc='Python IDE for Professional Developers'
+arch=('x86_64')
+url='http://www.jetbrains.com/pycharm/'
+license=('Apache')
+depends=('gcc-libs' 'giflib' 'glibc' 'java-runtime=8' 'sh' 'ttf-font')
+optdepends=('ipython2: IPython integration for Python 2'
+'ipython: IPython integration for Python 3'
+'python2: Python 2 support'
+'python: Python 3 support')
+makedepends=('python2-setuptools' 'python-setuptools')
+conflicts=('pycharm' 'pycharm-community' 'pycharm-professional')
+provides=('pycharm')
+source=("https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz;
+'pycharm.desktop')
+sha256sums=('01bdf87e0f4b6fab9fe12fe957f79049e60346e853ac072c883ecb06c59beb29'
+'28e0d3200c721e61831d8246eba8f72485d3c8379d10bfa75ccb5331b6749480')
+
+build() {
+  cd pycharm-community-${pkgver}
+
+  python2 helpers/pydev/setup_cython.py build_ext --inplace
+  python3 helpers/pydev/setup_cython.py build_ext --inplace
+  rm -rf bin/fsnotifier{,-arm} lib/libpty/linux/x86
+}
+
+package() {
+  cd pycharm-community-${pkgver}
+
+  install -dm 755 
"${pkgdir}"/usr/{bin,share/{applications,doc,licenses,pixmaps,pycharm}}
+  cp -dr --no-preserve='ownership' bin helpers lib plugins 
"${pkgdir}"/usr/share/pycharm/
+  cp -dr --no-preserve='ownership' help "${pkgdir}"/usr/share/doc/pycharm/
+  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
+  ln -s /usr/share/pycharm/bin/pycharm.sh $pkgdir/usr/bin/pycharm
+  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
+  install -m 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: pycharm.desktop

[arch-commits] Commit in pycharm-community-edition/trunk (PKGBUILD)

2017-12-17 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 17, 2017 @ 20:04:28
  Author: alucryd
Revision: 274682

upgpkg: pycharm-community-edition 2017.3.1-1

Modified:
  pycharm-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:58:56 UTC (rev 274681)
+++ PKGBUILD2017-12-17 20:04:28 UTC (rev 274682)
@@ -3,8 +3,8 @@
 # Contributor: David Keogh 
 
 pkgname=pycharm-community-edition
-pkgver=2017.3
-pkgrel=2
+pkgver=2017.3.1
+pkgrel=1
 pkgdesc='Python IDE for Professional Developers'
 arch=('x86_64')
 url='http://www.jetbrains.com/pycharm/'
@@ -19,7 +19,7 @@
 provides=('pycharm')
 
source=("https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz;
 'pycharm.desktop')
-sha256sums=('b973581cb3de0f0f5a203231f67b21a45b7dd58968393cef49d48403cb1b8ad1'
+sha256sums=('01bdf87e0f4b6fab9fe12fe957f79049e60346e853ac072c883ecb06c59beb29'
 '28e0d3200c721e61831d8246eba8f72485d3c8379d10bfa75ccb5331b6749480')
 
 build() {


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 20:52:19
  Author: heftig
Revision: 313276

3.26.5-1

Modified:
  epiphany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 19:58:52 UTC (rev 313275)
+++ PKGBUILD2017-12-17 20:52:19 UTC (rev 313276)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=epiphany
-pkgver=3.26.3
+pkgver=3.26.5
 pkgrel=1
 pkgdesc="A GNOME web browser based on the WebKit rendering engine"
 url="https://wiki.gnome.org/Apps/Web;
@@ -12,7 +12,7 @@
 makedepends=(itstool docbook-xml startup-notification lsb-release
  gobject-introspection yelp-tools appstream-glib git meson)
 groups=(gnome)
-_commit=5d5d5762eae06b157a34f9b1001fa8eadd844b31  # tags/3.26.3^0
+_commit=7d46f6af21101c0957fa00e5eabb187131434acf  # tags/3.26.5^0
 source=("git+https://git.gnome.org/browse/epiphany#commit=$_commit;
 "git+https://git.gnome.org/browse/libgd;
 "git+https://git.gnome.org/browse/gvdb;


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

2017-12-17 Thread Jan Steffens via arch-commits
Date: Sunday, December 17, 2017 @ 20:53:06
  Author: heftig
Revision: 313277

archrelease: copy trunk to extra-x86_64

Added:
  epiphany/repos/extra-x86_64/PKGBUILD
(from rev 313276, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-x86_64/pluginsdir.diff
(from rev 313276, epiphany/trunk/pluginsdir.diff)
Deleted:
  epiphany/repos/extra-x86_64/PKGBUILD
  epiphany/repos/extra-x86_64/pluginsdir.diff

-+
 PKGBUILD|  104 +++---
 pluginsdir.diff |   40 ++--
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-17 20:52:19 UTC (rev 313276)
+++ PKGBUILD2017-12-17 20:53:06 UTC (rev 313277)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=epiphany
-pkgver=3.26.3
-pkgrel=1
-pkgdesc="A GNOME web browser based on the WebKit rendering engine"
-url="https://wiki.gnome.org/Apps/Web;
-arch=(x86_64)
-license=(GPL)
-depends=(webkit2gtk gcr gnome-desktop icu)
-makedepends=(itstool docbook-xml startup-notification lsb-release
- gobject-introspection yelp-tools appstream-glib git meson)
-groups=(gnome)
-_commit=5d5d5762eae06b157a34f9b1001fa8eadd844b31  # tags/3.26.3^0
-source=("git+https://git.gnome.org/browse/epiphany#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;
-"git+https://git.gnome.org/browse/gvdb;
-pluginsdir.diff)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'0e4db79fe22a4ed447aa926eecd09fc660cf2f5aac2d42aa9adaacad45416faf')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-
-  patch -Np1 -i ../pluginsdir.diff
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git config --local submodule.gvdb.url "$srcdir/gvdb"
-  git submodule update
-
-}
-
-build() {
-  cd build
-  arch-meson ../$pkgname -Ddistributor_name="Arch Linux®"
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: epiphany/repos/extra-x86_64/PKGBUILD (from rev 313276, 
epiphany/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-17 20:53:06 UTC (rev 313277)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=epiphany
+pkgver=3.26.5
+pkgrel=1
+pkgdesc="A GNOME web browser based on the WebKit rendering engine"
+url="https://wiki.gnome.org/Apps/Web;
+arch=(x86_64)
+license=(GPL)
+depends=(webkit2gtk gcr gnome-desktop icu)
+makedepends=(itstool docbook-xml startup-notification lsb-release
+ gobject-introspection yelp-tools appstream-glib git meson)
+groups=(gnome)
+_commit=7d46f6af21101c0957fa00e5eabb187131434acf  # tags/3.26.5^0
+source=("git+https://git.gnome.org/browse/epiphany#commit=$_commit;
+"git+https://git.gnome.org/browse/libgd;
+"git+https://git.gnome.org/browse/gvdb;
+pluginsdir.diff)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'0e4db79fe22a4ed447aa926eecd09fc660cf2f5aac2d42aa9adaacad45416faf')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+
+  patch -Np1 -i ../pluginsdir.diff
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git config --local submodule.gvdb.url "$srcdir/gvdb"
+  git submodule update
+
+}
+
+build() {
+  cd build
+  arch-meson ../$pkgname -Ddistributor_name="Arch Linux®"
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: pluginsdir.diff
===
--- pluginsdir.diff 2017-12-17 20:52:19 UTC (rev 313276)
+++ pluginsdir.diff 2017-12-17 20:53:06 UTC (rev 313277)
@@ -1,20 +0,0 @@
 a/embed/ephy-embed-shell.c
-+++ b/embed/ephy-embed-shell.c
-@@ -671,6 +671,7 @@ ephy_embed_shell_create_web_context (EphyEmbedShell *shell)
-   g_free (cache_dir);
- 
-   priv->web_context = webkit_web_context_new_with_website_data_manager 
(manager);
-+  webkit_web_context_set_additional_plugins_directory (priv->web_context, 
EPHY_PLUGINS_DIR);
-   g_object_unref (manager);
- }
- 
 a/meson.build  2017-09-18 11:49:28.745287692 +
-+++ b/meson.build  2017-09-18 11:52:53.432417200 +
-@@ -25,6 +25,7 @@
- conf.set_quoted('BUILD_ROOT', meson.build_root())
- conf.set_quoted('DISTRIBUTOR_NAME', get_option('distributor_name'))
- conf.set_quoted('EPHY_WEB_EXTENSIONS_DIR', webextensionsdir)
-+conf.set_quoted('EPHY_PLUGINS_DIR', join_paths(pkglibdir, 'plugins'))
- conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
- conf.set_quoted('ISO_CODES_PREFIX', iso_codes_prefix)
- conf.set_quoted('LOCALEDIR', localedir)

Copied: epiphany/repos/extra-x86_64/pluginsdir.diff (from rev 313276, 

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

2017-12-17 Thread Alexander Rødseth via arch-commits
Date: Sunday, December 17, 2017 @ 21:01:35
  Author: arodseth
Revision: 274688

upgpkg: wings3d 2.1.5-4

Modified:
  wings3d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-17 20:37:44 UTC (rev 274687)
+++ PKGBUILD2017-12-17 21:01:35 UTC (rev 274688)
@@ -4,12 +4,12 @@
 
 pkgname=wings3d
 pkgver=2.1.5
-pkgrel=3
+pkgrel=4
 pkgdesc='3D modeling program'
 arch=('x86_64')
 url='http://www.wings3d.com/'
 license=('GPL')
-depends=('desktop-file-utils' 'erlang-sdl' 'erlang-cl')
+depends=('erlang<=20.0.1' 'desktop-file-utils' 'erlang-sdl' 'erlang-cl')
 makedepends=('gendesk' 'imagemagick')
 optdepends=('povray: rendering support via POV-Ray')
 
source=("https://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2;
@@ -56,4 +56,4 @@
 }
 
 # getver: wings3d.com/?page_id=84
-# vim:ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


  1   2   >