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

2017-01-20 Thread Jiachen Yang
Date: Saturday, January 21, 2017 @ 07:50:58
  Author: farseerfc
Revision: 208199

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  tuntox/repos/community-testing-i686/
  tuntox/repos/community-testing-i686/PKGBUILD
(from rev 208198, tuntox/trunk/PKGBUILD)
  tuntox/repos/community-testing-x86_64/
  tuntox/repos/community-testing-x86_64/PKGBUILD
(from rev 208198, tuntox/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   45 
 community-testing-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: tuntox/repos/community-testing-i686/PKGBUILD (from rev 208198, 
tuntox/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-21 07:50:58 UTC (rev 208199)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jiachen Yang 
+# Maintainer: Felix Yan 
+
+pkgname=tuntox
+pkgver=0.0.6
+_commit=fad23001af27f1cd380f7d05270ddcc04244f507
+pkgrel=2
+pkgdesc='Tunnel TCP connections over the Tox protocol'
+arch=('i686' 'x86_64')
+url='https://github.com/gjedeer/tuntox'
+license=('GPL3')
+depends=('toxcore')
+makedepends=('cscope')
+source=( # "git+https://github.com/gjedeer/tuntox.git#commit=$_commit;  
#tag=$pkgver
+"https://github.com/gjedeer/${pkgname}/archive/${pkgver}.tar.gz;
+
"https://github.com/gjedeer/${pkgname}/releases/download/${pkgver}/${pkgver}.tar.gz.asc;
+   )
+
+sha512sums=('57893516d2186f9830784f23f6312746ea6c64e0c75c84fbb3f1453da6d7c25f29cb9a848c0160b0d93dc0098d46cd923cf13b5bf2c3142c4cc05b0b14a73872'
+'SKIP')
+validpgpkeys=('11C1B15A5D5DD662E469928AEBDA6B974ED3D2B7')  # GDR!_ 

+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i "s|DEPS=libsodium toxcore|DEPS=libsodium libtoxcore|" Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Makefile requires these, make it happy
+  # pending issue: https://github.com/gjedeer/tuntox/issues/35
+  mkdir -p .git
+  touch .git/HEAD .git/index
+  echo "#define GITVERSION \"${_commit}\"" > gitversion.h
+  make tuntox_nostatic  # use dynamic linking
+  mv tuntox_nostatic tuntox
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 tuntox "$pkgdir/usr/bin/tuntox"
+  install -Dm644 scripts/tuntox.service 
"$pkgdir/usr/lib/systemd/system/tuntox.service"
+}

Copied: tuntox/repos/community-testing-x86_64/PKGBUILD (from rev 208198, 
tuntox/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-01-21 07:50:58 UTC (rev 208199)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jiachen Yang 
+# Maintainer: Felix Yan 
+
+pkgname=tuntox
+pkgver=0.0.6
+_commit=fad23001af27f1cd380f7d05270ddcc04244f507
+pkgrel=2
+pkgdesc='Tunnel TCP connections over the Tox protocol'
+arch=('i686' 'x86_64')
+url='https://github.com/gjedeer/tuntox'
+license=('GPL3')
+depends=('toxcore')
+makedepends=('cscope')
+source=( # "git+https://github.com/gjedeer/tuntox.git#commit=$_commit;  
#tag=$pkgver
+"https://github.com/gjedeer/${pkgname}/archive/${pkgver}.tar.gz;
+
"https://github.com/gjedeer/${pkgname}/releases/download/${pkgver}/${pkgver}.tar.gz.asc;
+   )
+
+sha512sums=('57893516d2186f9830784f23f6312746ea6c64e0c75c84fbb3f1453da6d7c25f29cb9a848c0160b0d93dc0098d46cd923cf13b5bf2c3142c4cc05b0b14a73872'
+'SKIP')
+validpgpkeys=('11C1B15A5D5DD662E469928AEBDA6B974ED3D2B7')  # GDR!_ 

+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i "s|DEPS=libsodium toxcore|DEPS=libsodium libtoxcore|" Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Makefile requires these, make it happy
+  # pending issue: https://github.com/gjedeer/tuntox/issues/35
+  mkdir -p .git
+  touch .git/HEAD .git/index
+  echo "#define GITVERSION \"${_commit}\"" > gitversion.h
+  make tuntox_nostatic  # use dynamic linking
+  mv tuntox_nostatic tuntox
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 tuntox "$pkgdir/usr/bin/tuntox"
+  install -Dm644 scripts/tuntox.service 
"$pkgdir/usr/lib/systemd/system/tuntox.service"
+}


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

2017-01-20 Thread Jiachen Yang
Date: Saturday, January 21, 2017 @ 07:49:53
  Author: farseerfc
Revision: 208198

upgpkg: tuntox 0.0.6-2

tuntox rebuild for toxcore 0.1.5

Modified:
  tuntox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 07:33:14 UTC (rev 208197)
+++ PKGBUILD2017-01-21 07:49:53 UTC (rev 208198)
@@ -5,7 +5,7 @@
 pkgname=tuntox
 pkgver=0.0.6
 _commit=fad23001af27f1cd380f7d05270ddcc04244f507
-pkgrel=1
+pkgrel=2
 pkgdesc='Tunnel TCP connections over the Tox protocol'
 arch=('i686' 'x86_64')
 url='https://github.com/gjedeer/tuntox'


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

2017-01-20 Thread Jiachen Yang
Date: Saturday, January 21, 2017 @ 07:33:14
  Author: farseerfc
Revision: 208197

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  qtox/repos/community-testing-i686/
  qtox/repos/community-testing-i686/PKGBUILD
(from rev 208195, qtox/trunk/PKGBUILD)
  qtox/repos/community-testing-x86_64/
  qtox/repos/community-testing-x86_64/PKGBUILD
(from rev 208196, qtox/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   56 
 community-testing-x86_64/PKGBUILD |   56 
 2 files changed, 112 insertions(+)

Copied: qtox/repos/community-testing-i686/PKGBUILD (from rev 208195, 
qtox/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-21 07:33:14 UTC (rev 208197)
@@ -0,0 +1,56 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Vlad M. 
+# Contributor: Håvard Pettersson 
+# Contributor: Kevin MacMartin 
+
+pkgname=qtox
+_pkgname=qTox
+pkgver=1.7.1
+pkgrel=5
+_gitver='6f155d4db806a664d76457d42a20246ffbd5d1ac'
+pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
+arch=('i686' 'x86_64')
+url='https://github.com/tux3/qTox'
+license=('GPL3')
+depends=('libxss'
+ 'openal'
+ 'gtk2'
+ 'ffmpeg'
+ 'qrencode'
+ 'qt5-svg'
+ 'sqlcipher'
+ 'toxcore')
+makedepends=('qt5-tools' 'git')
+
+#source=("git+https://github.com/qTox/qTox.git#commit=$_gitver;)
+source=("https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz;
+
"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz.asc;
+   
"pr4053.patch::https://patch-diff.githubusercontent.com/raw/qTox/qTox/pull/4053.diff;)
+sha512sums=('89149d712f342ef09596d376c35b8c5573e21ce74f6edf906d6eeadb8dfe1a6b0f2945221bafb7d7509a9c857d928deed86c0ffb1e2071edd6f899e048ea7122'
+'SKIP'
+
'b36eb38c50ede1decde5eb17eab447a62dd1d71e52106f4e73c02abf2af67e308deddb9c70d46e41c51ce3aa6463d012cc19b3207e2885c16cae09cd36040bfe')
+
+# GPG key fingerprints taken from 
https://github.com/qTox/qTox/blob/$_gitver/README.md
+validpgpkeys=('DA262CC93C0E1E525AD21C8596775D454B8EBF44'  # sudden6 

+  'BA7883E22F9D35945BA3376053137C3033F09008'  # Zetok Zalbavar 

+ '1157616BBD860C539926F8139591A163FF9BE04C'  # - antis81
+ '31039166FA902CA50D05D6085AF9F2E29107C727'  # - Diadlo
+ 'C7A2552D0B250F983827742C133203A3AC399151'  # - initramfs
+ '2880C860D95C909D3DA45C687E086DD661263264'  # - tux3
+ )
+prepare() {
+   # apply PR https://github.com/qTox/qTox/issues/4053
+   patch -p1 
+# AUR Maintainer: Vlad M. 
+# Contributor: Håvard Pettersson 
+# Contributor: Kevin MacMartin 
+
+pkgname=qtox
+_pkgname=qTox
+pkgver=1.7.1
+pkgrel=5
+_gitver='6f155d4db806a664d76457d42a20246ffbd5d1ac'
+pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
+arch=('i686' 'x86_64')
+url='https://github.com/tux3/qTox'
+license=('GPL3')
+depends=('libxss'
+ 'openal'
+ 'gtk2'
+ 'ffmpeg'
+ 'qrencode'
+ 'qt5-svg'
+ 'sqlcipher'
+ 'toxcore')
+makedepends=('qt5-tools' 'git')
+
+#source=("git+https://github.com/qTox/qTox.git#commit=$_gitver;)
+source=("https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz;
+
"https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz.asc;
+   
"pr4053.patch::https://patch-diff.githubusercontent.com/raw/qTox/qTox/pull/4053.diff;)
+sha512sums=('89149d712f342ef09596d376c35b8c5573e21ce74f6edf906d6eeadb8dfe1a6b0f2945221bafb7d7509a9c857d928deed86c0ffb1e2071edd6f899e048ea7122'
+'SKIP'
+
'b36eb38c50ede1decde5eb17eab447a62dd1d71e52106f4e73c02abf2af67e308deddb9c70d46e41c51ce3aa6463d012cc19b3207e2885c16cae09cd36040bfe')
+
+# GPG key fingerprints taken from 
https://github.com/qTox/qTox/blob/$_gitver/README.md
+validpgpkeys=('DA262CC93C0E1E525AD21C8596775D454B8EBF44'  # sudden6 

+  'BA7883E22F9D35945BA3376053137C3033F09008'  # Zetok Zalbavar 

+ '1157616BBD860C539926F8139591A163FF9BE04C'  # - antis81
+ '31039166FA902CA50D05D6085AF9F2E29107C727'  # - Diadlo
+ 'C7A2552D0B250F983827742C133203A3AC399151'  # - initramfs
+ '2880C860D95C909D3DA45C687E086DD661263264'  # - tux3
+ )
+prepare() {
+   # apply PR https://github.com/qTox/qTox/issues/4053
+   patch -p1 

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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 07:32:04
  Author: felixonmars
Revision: 208195

upgpkg: haskell-store 0.3-8

rebuild with mono-traversable,1.0.1.1

Modified:
  haskell-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 07:32:00 UTC (rev 208194)
+++ PKGBUILD2017-01-21 07:32:04 UTC (rev 208195)
@@ -4,7 +4,7 @@
 _hkgname=store
 pkgname=haskell-store
 pkgver=0.3
-pkgrel=7
+pkgrel=8
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store;
 license=('custom:BSD3')


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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 07:32:46
  Author: felixonmars
Revision: 208196

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-store/repos/community-staging-i686/
  haskell-store/repos/community-staging-i686/PKGBUILD
(from rev 208195, haskell-store/trunk/PKGBUILD)
  haskell-store/repos/community-staging-x86_64/
  haskell-store/repos/community-staging-x86_64/PKGBUILD
(from rev 208195, haskell-store/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   48 
 community-staging-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: haskell-store/repos/community-staging-i686/PKGBUILD (from rev 208195, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-21 07:32:46 UTC (rev 208196)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.3
+pkgrel=8
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-cryptohash' 'haskell-free' 
'haskell-hashable' 'haskell-hspec'
+ 'haskell-hspec-smallcheck' 'haskell-lifted-base' 
'haskell-monad-control'
+ 'haskell-mono-traversable' 'haskell-network' 'haskell-primitive' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-semigroups' 'haskell-smallcheck' 
'haskell-streaming-commons'
+ 'haskell-store-core' 'haskell-syb' 'haskell-text' 'haskell-th-lift'
+ 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('e8f68402d601c7d02453cb0f3aa04e74')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-comparison-bench -f-small-bench
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-store/repos/community-staging-x86_64/PKGBUILD (from rev 208195, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-21 07:32:46 UTC (rev 208196)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.3
+pkgrel=8
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-cryptohash' 'haskell-free' 
'haskell-hashable' 'haskell-hspec'
+ 'haskell-hspec-smallcheck' 'haskell-lifted-base' 
'haskell-monad-control'
+ 'haskell-mono-traversable' 'haskell-network' 'haskell-primitive' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-semigroups' 'haskell-smallcheck' 
'haskell-streaming-commons'
+ 'haskell-store-core' 'haskell-syb' 'haskell-text' 'haskell-th-lift'
+ 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('e8f68402d601c7d02453cb0f3aa04e74')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling 

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

2017-01-20 Thread Jiachen Yang
Date: Saturday, January 21, 2017 @ 07:32:00
  Author: farseerfc
Revision: 208194

upgpkg: qtox 1.7.1-5

qtox rebuild for toxcore 0.1.5

Modified:
  qtox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 07:16:17 UTC (rev 208193)
+++ PKGBUILD2017-01-21 07:32:00 UTC (rev 208194)
@@ -6,7 +6,7 @@
 pkgname=qtox
 _pkgname=qTox
 pkgver=1.7.1
-pkgrel=4
+pkgrel=5
 _gitver='6f155d4db806a664d76457d42a20246ffbd5d1ac'
 pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
 arch=('i686' 'x86_64')


[arch-commits] Commit in haskell-mono-traversable/repos (4 files)

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 07:16:17
  Author: felixonmars
Revision: 208193

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-mono-traversable/repos/community-staging-i686/
  haskell-mono-traversable/repos/community-staging-i686/PKGBUILD
(from rev 208192, haskell-mono-traversable/trunk/PKGBUILD)
  haskell-mono-traversable/repos/community-staging-x86_64/
  haskell-mono-traversable/repos/community-staging-x86_64/PKGBUILD
(from rev 208192, haskell-mono-traversable/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   42 
 community-staging-x86_64/PKGBUILD |   42 
 2 files changed, 84 insertions(+)

Copied: haskell-mono-traversable/repos/community-staging-i686/PKGBUILD (from 
rev 208192, haskell-mono-traversable/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-21 07:16:17 UTC (rev 208193)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=mono-traversable
+pkgname=haskell-mono-traversable
+pkgver=1.0.1.1
+pkgrel=1
+pkgdesc="Type classes for mapping, folding, and traversing monomorphic 
containers"
+url="https://github.com/snoyberg/mono-traversable;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-hashable" "haskell-split" "haskell-text"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-algorithms")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('3afa27672db118c215dca1233d7c0cdb9c3ba7f6e4fb4d56e9c75deebb3dde57')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-mono-traversable/repos/community-staging-x86_64/PKGBUILD (from 
rev 208192, haskell-mono-traversable/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-21 07:16:17 UTC (rev 208193)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=mono-traversable
+pkgname=haskell-mono-traversable
+pkgver=1.0.1.1
+pkgrel=1
+pkgdesc="Type classes for mapping, folding, and traversing monomorphic 
containers"
+url="https://github.com/snoyberg/mono-traversable;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-hashable" "haskell-split" "haskell-text"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-algorithms")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('3afa27672db118c215dca1233d7c0cdb9c3ba7f6e4fb4d56e9c75deebb3dde57')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 

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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 07:15:45
  Author: felixonmars
Revision: 208192

upgpkg: haskell-mono-traversable 1.0.1.1-1

rebuild with mono-traversable,1.0.1.1

Modified:
  haskell-mono-traversable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 06:33:18 UTC (rev 208191)
+++ PKGBUILD2017-01-21 07:15:45 UTC (rev 208192)
@@ -4,8 +4,8 @@
 
 _hkgname=mono-traversable
 pkgname=haskell-mono-traversable
-pkgver=1.0.1
-pkgrel=4
+pkgver=1.0.1.1
+pkgrel=1
 pkgdesc="Type classes for mapping, folding, and traversing monomorphic 
containers"
 url="https://github.com/snoyberg/mono-traversable;
 license=("MIT")
@@ -13,7 +13,7 @@
 depends=("ghc=8.0.1" "haskell-hashable" "haskell-split" "haskell-text"
  "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-algorithms")
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('a96d449eb00e062be003d314884fdb06b1e02e18e0d43e5008500ae7ef3de268')
+sha256sums=('3afa27672db118c215dca1233d7c0cdb9c3ba7f6e4fb4d56e9c75deebb3dde57')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in toxcore/repos (8 files)

2017-01-20 Thread Jiachen Yang
Date: Saturday, January 21, 2017 @ 06:33:18
  Author: farseerfc
Revision: 208191

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  toxcore/repos/community-testing-i686/
  toxcore/repos/community-testing-i686/PKGBUILD
(from rev 208190, toxcore/trunk/PKGBUILD)
  toxcore/repos/community-testing-i686/toxcore.conf
(from rev 208190, toxcore/trunk/toxcore.conf)
  toxcore/repos/community-testing-i686/toxcore.install
(from rev 208190, toxcore/trunk/toxcore.install)
  toxcore/repos/community-testing-x86_64/
  toxcore/repos/community-testing-x86_64/PKGBUILD
(from rev 208190, toxcore/trunk/PKGBUILD)
  toxcore/repos/community-testing-x86_64/toxcore.conf
(from rev 208190, toxcore/trunk/toxcore.conf)
  toxcore/repos/community-testing-x86_64/toxcore.install
(from rev 208190, toxcore/trunk/toxcore.install)

--+
 community-testing-i686/PKGBUILD  |   68 +
 community-testing-i686/toxcore.conf  |2 
 community-testing-i686/toxcore.install   |   15 ++
 community-testing-x86_64/PKGBUILD|   68 +
 community-testing-x86_64/toxcore.conf|2 
 community-testing-x86_64/toxcore.install |   15 ++
 6 files changed, 170 insertions(+)

Copied: toxcore/repos/community-testing-i686/PKGBUILD (from rev 208190, 
toxcore/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-21 06:33:18 UTC (rev 208191)
@@ -0,0 +1,68 @@
+# Maintainer: Jiachen Yang 
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Håvard Pettersson 
+# Contributor: naxuroqa 
+# Contributor: Boohbah 
+# Contributor: Kevin MacMartin 
+
+pkgname=toxcore
+_pkgname=c-toxcore
+epoch=1
+pkgver=0.1.5
+pkgrel=1
+pkgdesc='Secure, configuration-free, P2P Skype replacement backend'
+arch=('i686' 'x86_64')
+url='https://tox.chat'
+license=('GPL3')
+depends=('systemd' 'libconfig' 'libsodium' 'libvpx' 'opus')
+makedepends=('check')
+conflicts=("tox")
+provides=("tox")
+backup=('etc/tox-bootstrapd.conf')
+install=$pkgname.install
+source=(
+   
"${_pkgname}-v${pkgver}.tar.gz::https://github.com/TokTok/${_pkgname}/archive/v${pkgver}.tar.gz;
+   
"${_pkgname}-v${pkgver}.tar.gz.asc::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-${pkgver}.robinlinden.tar.gz.asc;
+'toxcore.conf')
+sha512sums=('3dda0e1f9d4232790899a68675db072f13f2e9142b8c45f6051780901dee1e9c15c803fb9d98745e88342d14d828f9be9974eeb61ee2c767b0d8cec3d55fa03f'
+'SKIP'
+
'aa1dcfbdf9b613f5d89e238ff5d01e0ea150ad3162792acb806f51ce07fd9ade1270b310b1285a828dcdf578549b95a89fd9bd198fb205c83f5a5be2c969ea63')
+validpgpkeys=("15D3B9A6B3951DF9854FCA93E786548AE0A0B56B"  # 
RobinLindén
+# GPG key fingerprints taken from 
https://github.com/qTox/qTox/blob/$_gitver/README.md
+'DA262CC93C0E1E525AD21C8596775D454B8EBF44'  # sudden6 
+'BA7883E22F9D35945BA3376053137C3033F09008'  # Zetok Zalbavar 

+'1157616BBD860C539926F8139591A163FF9BE04C'  # - antis81
+'31039166FA902CA50D05D6085AF9F2E29107C727'  # - Diadlo
+'C7A2552D0B250F983827742C133203A3AC399151'  # - initramfs
+'2880C860D95C909D3DA45C687E086DD661263264'  # - tux3
+)
+
+prepare() {
+  cd $_pkgname-$pkgver
+  sed -i "s|/usr/local|/usr|" other/bootstrap_daemon/tox-bootstrapd.service
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  autoreconf -if
+  ./configure \
+--prefix=/usr \
+--enable-daemon \
+--disable-ntox \
+--enable-tests
+  make
+}
+
+check() {
+  cd $_pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/toxcore.conf" 
"$pkgdir/usr/lib/sysusers.d/toxcore.conf"
+  install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service 
"$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service"
+  install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.conf 
"$pkgdir/etc/tox-bootstrapd.conf"
+}

Copied: toxcore/repos/community-testing-i686/toxcore.conf (from rev 208190, 
toxcore/trunk/toxcore.conf)
===
--- community-testing-i686/toxcore.conf (rev 0)
+++ community-testing-i686/toxcore.conf 2017-01-21 06:33:18 UTC (rev 208191)
@@ -0,0 +1,2 @@
+u tox-bootstrapd 199 "Tox bootstrapd"
+g tox-bootstrapd 199

Copied: toxcore/repos/community-testing-i686/toxcore.install (from rev 208190, 
toxcore/trunk/toxcore.install)
===
--- community-testing-i686/toxcore.install  (rev 0)
+++ community-testing-i686/toxcore.install  2017-01-21 06:33:18 UTC (rev 
208191)
@@ -0,0 +1,15 @@
+post_install() {
+  [[ -d 

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

2017-01-20 Thread Jiachen Yang
Date: Saturday, January 21, 2017 @ 06:32:05
  Author: farseerfc
Revision: 208190

upgpkg: toxcore 1:0.1.5-1

toxcore 0.1.5

Modified:
  toxcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 06:21:44 UTC (rev 208189)
+++ PKGBUILD2017-01-21 06:32:05 UTC (rev 208190)
@@ -9,8 +9,8 @@
 pkgname=toxcore
 _pkgname=c-toxcore
 epoch=1
-pkgver=0.1.4
-pkgrel=2
+pkgver=0.1.5
+pkgrel=1
 pkgdesc='Secure, configuration-free, P2P Skype replacement backend'
 arch=('i686' 'x86_64')
 url='https://tox.chat'
@@ -22,10 +22,10 @@
 backup=('etc/tox-bootstrapd.conf')
 install=$pkgname.install
 source=(
-   
"${_pkgname}-v${pkgver}.tar.lz::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}.tar.lz;
-   
"${_pkgname}-v${pkgver}.tar.lz.asc::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}.tar.lz.asc;
+   
"${_pkgname}-v${pkgver}.tar.gz::https://github.com/TokTok/${_pkgname}/archive/v${pkgver}.tar.gz;
+   
"${_pkgname}-v${pkgver}.tar.gz.asc::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-${pkgver}.robinlinden.tar.gz.asc;
 'toxcore.conf')
-sha512sums=('8d094275cc56193d33f380eb3c8ba708ce7a94b01ba378d68707240efd1550dd0e4a0ffd0f97bedd96c5ce6145b27e14fdb5b570ed0e5247b01f5d4e15b4fe3a'
+sha512sums=('3dda0e1f9d4232790899a68675db072f13f2e9142b8c45f6051780901dee1e9c15c803fb9d98745e88342d14d828f9be9974eeb61ee2c767b0d8cec3d55fa03f'
 'SKIP'
 
'aa1dcfbdf9b613f5d89e238ff5d01e0ea150ad3162792acb806f51ce07fd9ade1270b310b1285a828dcdf578549b95a89fd9bd198fb205c83f5a5be2c969ea63')
 validpgpkeys=("15D3B9A6B3951DF9854FCA93E786548AE0A0B56B"  # 
RobinLindén
@@ -39,12 +39,12 @@
 )
 
 prepare() {
-  #cd $_pkgname-$pkgver
+  cd $_pkgname-$pkgver
   sed -i "s|/usr/local|/usr|" other/bootstrap_daemon/tox-bootstrapd.service
 }
 
 build() {
-  #cd $_pkgname-$pkgver
+  cd $_pkgname-$pkgver
   autoreconf -if
   ./configure \
 --prefix=/usr \
@@ -55,12 +55,12 @@
 }
 
 check() {
-  #cd $_pkgname-$pkgver
+  cd $_pkgname-$pkgver
   make check
 }
 
 package() {
-  #cd $_pkgname-$pkgver
+  cd $_pkgname-$pkgver
   make DESTDIR="$pkgdir" install
   install -Dm644 "$srcdir/toxcore.conf" 
"$pkgdir/usr/lib/sysusers.d/toxcore.conf"
   install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service 
"$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service"


[arch-commits] Commit in perl-compress-bzip2/repos (4 files)

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 06:23:41
  Author: heftig
Revision: 287062

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  perl-compress-bzip2/repos/extra-i686/PKGBUILD
(from rev 287061, perl-compress-bzip2/trunk/PKGBUILD)
  perl-compress-bzip2/repos/extra-x86_64/PKGBUILD
(from rev 287061, perl-compress-bzip2/trunk/PKGBUILD)
Deleted:
  perl-compress-bzip2/repos/extra-i686/PKGBUILD
  perl-compress-bzip2/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 extra-i686/PKGBUILD   |   34 
 extra-x86_64/PKGBUILD |   34 
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-21 06:23:05 UTC (rev 287061)
+++ extra-i686/PKGBUILD 2017-01-21 06:23:41 UTC (rev 287062)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-compress-bzip2
-_realname=Compress-Bzip2
-pkgver=2.24
-pkgrel=2
-pkgdesc="Interface to Bzip2 compression library"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(perl bzip2)
-url="http://search.cpan.org/dist/Compress-Bzip2;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('d5ef04d1e51fe45743b3044abad967d2')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-# 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;
-}

Copied: perl-compress-bzip2/repos/extra-i686/PKGBUILD (from rev 287061, 
perl-compress-bzip2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-21 06:23:41 UTC (rev 287062)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=perl-compress-bzip2
+_realname=Compress-Bzip2
+pkgver=2.25
+pkgrel=1
+pkgdesc="Interface to Bzip2 compression library"
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(perl bzip2)
+url="http://search.cpan.org/dist/Compress-Bzip2;
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
+md5sums=('2c4336e3cd345acce4fae07e9f8b71fb')
+
+build() {
+  cd "$srcdir/$_realname-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir/$_realname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+# 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;
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-21 06:23:05 UTC (rev 287061)
+++ extra-x86_64/PKGBUILD   2017-01-21 06:23:41 UTC (rev 287062)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-compress-bzip2
-_realname=Compress-Bzip2
-pkgver=2.24
-pkgrel=2
-pkgdesc="Interface to Bzip2 compression library"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(perl bzip2)
-url="http://search.cpan.org/dist/Compress-Bzip2;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('d5ef04d1e51fe45743b3044abad967d2')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-# 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;
-}

Copied: perl-compress-bzip2/repos/extra-x86_64/PKGBUILD (from rev 287061, 
perl-compress-bzip2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in perl-compress-bzip2/trunk (PKGBUILD)

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 06:23:05
  Author: heftig
Revision: 287061

2.25-1

Modified:
  perl-compress-bzip2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 06:22:13 UTC (rev 287060)
+++ PKGBUILD2017-01-21 06:23:05 UTC (rev 287061)
@@ -3,8 +3,8 @@
 
 pkgname=perl-compress-bzip2
 _realname=Compress-Bzip2
-pkgver=2.24
-pkgrel=2
+pkgver=2.25
+pkgrel=1
 pkgdesc="Interface to Bzip2 compression library"
 arch=(i686 x86_64)
 license=(GPL2)
@@ -12,7 +12,7 @@
 url="http://search.cpan.org/dist/Compress-Bzip2;
 options=('!emptydirs')
 
source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('d5ef04d1e51fe45743b3044abad967d2')
+md5sums=('2c4336e3cd345acce4fae07e9f8b71fb')
 
 build() {
   cd "$srcdir/$_realname-$pkgver"


[arch-commits] Commit in lib32-opus/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 06:21:44
  Author: heftig
Revision: 208189

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-opus/repos/multilib-x86_64/PKGBUILD
(from rev 208188, lib32-opus/trunk/PKGBUILD)
Deleted:
  lib32-opus/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-21 06:21:07 UTC (rev 208188)
+++ PKGBUILD2017-01-21 06:21:44 UTC (rev 208189)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: farwayer 
-
-_pkgbase=opus
-pkgname=lib32-$_pkgbase
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=('x86_64')
-url="http://www.opus-codec.org/;
-license=('BSD')
-depends=('lib32-glibc' 'opus')
-makedepends=('gcc-multilib')
-source=("http://downloads.xiph.org/releases/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
-
-build() {
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  
-  cd ${_pkgbase}-${pkgver}
-  ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd --enable-ambisonics --libdir=/usr/lib32
-  make
-}
-
-check() {
-  cd ${_pkgbase}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${_pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{include,share}
-  install -d "${pkgdir}"/usr/share/licenses
-  ln -s ${_pkgbase} "${pkgdir}"/usr/share/licenses/$pkgname
-}

Copied: lib32-opus/repos/multilib-x86_64/PKGBUILD (from rev 208188, 
lib32-opus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-21 06:21:44 UTC (rev 208189)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: farwayer 
+
+_pkgbase=opus
+pkgname=lib32-$_pkgbase
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Totally open, royalty-free, highly versatile audio codec (32-bit)"
+arch=('x86_64')
+url="https://www.opus-codec.org/;
+license=('BSD')
+depends=('lib32-glibc' 'opus')
+makedepends=('gcc-multilib')
+source=("http://downloads.xiph.org/releases/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('9122b6b380081dd2665189f97bfd777f04f92dc3ab6698eea1dbb27ad59d8692')
+
+build() {
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  
+  cd ${_pkgbase}-${pkgver}
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd --enable-ambisonics --libdir=/usr/lib32
+  make
+}
+
+check() {
+  cd ${_pkgbase}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${_pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share}
+  install -d "${pkgdir}"/usr/share/licenses
+  ln -s ${_pkgbase} "${pkgdir}"/usr/share/licenses/$pkgname
+}


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

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 06:22:13
  Author: heftig
Revision: 287060

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  opus/repos/extra-i686/PKGBUILD
(from rev 287059, opus/trunk/PKGBUILD)
  opus/repos/extra-x86_64/PKGBUILD
(from rev 287059, opus/trunk/PKGBUILD)
Deleted:
  opus/repos/extra-i686/PKGBUILD
  opus/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   70 
 extra-i686/PKGBUILD   |   35 
 extra-x86_64/PKGBUILD |   35 
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-21 06:20:59 UTC (rev 287059)
+++ extra-i686/PKGBUILD 2017-01-21 06:22:13 UTC (rev 287060)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-makedepends=(doxygen)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd --enable-ambisonics
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-i686/PKGBUILD (from rev 287059, opus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-21 06:22:13 UTC (rev 287060)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Totally open, royalty-free, highly versatile audio codec"
+arch=(i686 x86_64)
+url="https://www.opus-codec.org/;
+license=(BSD)
+depends=(glibc)
+makedepends=(doxygen)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('9122b6b380081dd2665189f97bfd777f04f92dc3ab6698eea1dbb27ad59d8692')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd --enable-ambisonics
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-21 06:20:59 UTC (rev 287059)
+++ extra-x86_64/PKGBUILD   2017-01-21 06:22:13 UTC (rev 287060)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-makedepends=(doxygen)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd --enable-ambisonics
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-x86_64/PKGBUILD (from rev 287059, opus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-21 06:22:13 UTC (rev 287060)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Totally open, royalty-free, highly versatile audio codec"
+arch=(i686 x86_64)

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

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 06:21:07
  Author: heftig
Revision: 208188

1.1.4-1

Modified:
  lib32-opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 03:19:22 UTC (rev 208187)
+++ PKGBUILD2017-01-21 06:21:07 UTC (rev 208188)
@@ -4,16 +4,16 @@
 
 _pkgbase=opus
 pkgname=lib32-$_pkgbase
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Totally open, royalty-free, highly versatile audio codec (32-bit)"
 arch=('x86_64')
-url="http://www.opus-codec.org/;
+url="https://www.opus-codec.org/;
 license=('BSD')
 depends=('lib32-glibc' 'opus')
 makedepends=('gcc-multilib')
 
source=("http://downloads.xiph.org/releases/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
+sha256sums=('9122b6b380081dd2665189f97bfd777f04f92dc3ab6698eea1dbb27ad59d8692')
 
 build() {
   export CC='gcc -m32'


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

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 06:20:59
  Author: heftig
Revision: 287059

1.1.4-1

Modified:
  opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 03:21:01 UTC (rev 287058)
+++ PKGBUILD2017-01-21 06:20:59 UTC (rev 287059)
@@ -5,16 +5,16 @@
 # Contributor: pumbur
 
 pkgname=opus
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Totally open, royalty-free, highly versatile audio codec"
 arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
+url="https://www.opus-codec.org/;
 license=(BSD)
 depends=(glibc)
 makedepends=(doxygen)
 source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
+sha256sums=('9122b6b380081dd2665189f97bfd777f04f92dc3ab6698eea1dbb27ad59d8692')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in python-urllib3/repos/extra-any (4 files)

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:21:01
  Author: felixonmars
Revision: 287058

archrelease: copy trunk to extra-any

Added:
  python-urllib3/repos/extra-any/LICENSE
(from rev 287057, python-urllib3/trunk/LICENSE)
  python-urllib3/repos/extra-any/PKGBUILD
(from rev 287057, python-urllib3/trunk/PKGBUILD)
Deleted:
  python-urllib3/repos/extra-any/LICENSE
  python-urllib3/repos/extra-any/PKGBUILD

--+
 LICENSE  |   64 +-
 PKGBUILD |  148 ++---
 2 files changed, 105 insertions(+), 107 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-01-21 03:20:40 UTC (rev 287057)
+++ LICENSE 2017-01-21 03:21:01 UTC (rev 287058)
@@ -1,32 +0,0 @@
-Note from the ArchLinux Packager:
-The urllib3 source doesn't come with a license file.  Its homepage
-does provide a link to the text of the MIT license, so I copied
-the following text to a file when building the package.
-
---CUT--
-Open Source Initiative OSI - The MIT License:Licensing
-
-
-[OSI Approved License]
-
-The MIT License
-
-Copyright (c)  
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

Copied: python-urllib3/repos/extra-any/LICENSE (from rev 287057, 
python-urllib3/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-01-21 03:21:01 UTC (rev 287058)
@@ -0,0 +1,32 @@
+Note from the ArchLinux Packager:
+The urllib3 source doesn't come with a license file.  Its homepage
+does provide a link to the text of the MIT license, so I copied
+the following text to a file when building the package.
+
+--CUT--
+Open Source Initiative OSI - The MIT License:Licensing
+
+
+[OSI Approved License]
+
+The MIT License
+
+Copyright (c)  
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-21 03:20:40 UTC (rev 287057)
+++ PKGBUILD2017-01-21 03:21:01 UTC (rev 287058)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Patrice Peterson 
-# Contributor: Chris Brannon 
-# Contributor: BorgHunter 
-
-pkgbase=python-urllib3
-pkgname=(python-urllib3 python2-urllib3 python-urllib3-doc)
-pkgver=1.19.1
-pkgrel=2
-pkgdesc="HTTP library with thread-safe connection pooling and file post 
support"
-arch=("any")
-url="https://github.com/shazow/urllib3;
-license=("MIT")
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-sphinx' 
'python-ndg-httpsclient'
- 'python2-ndg-httpsclient' 'python-pyasn1' 'python2-pyasn1' 
'python-pyopenssl'
- 'python2-pyopenssl' 'python-pysocks' 'python2-pysocks' 
'python-mock' 'python2-mock'
- 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-tornado' 'python2-tornado' 
'python-coverage'
-  

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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:20:40
  Author: felixonmars
Revision: 287057

upgpkg: python-urllib3 1.20-1

Modified:
  python-urllib3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 01:15:53 UTC (rev 287056)
+++ PKGBUILD2017-01-21 03:20:40 UTC (rev 287057)
@@ -6,8 +6,8 @@
 
 pkgbase=python-urllib3
 pkgname=(python-urllib3 python2-urllib3 python-urllib3-doc)
-pkgver=1.19.1
-pkgrel=2
+pkgver=1.20
+pkgrel=1
 pkgdesc="HTTP library with thread-safe connection pooling and file post 
support"
 arch=("any")
 url="https://github.com/shazow/urllib3;
@@ -17,7 +17,7 @@
  'python2-pyopenssl' 'python-pysocks' 'python2-pysocks' 
'python-mock' 'python2-mock'
  'git')
 checkdepends=('python-nose' 'python2-nose' 'python-tornado' 'python2-tornado' 
'python-coverage'
-  'python2-coverage')
+  'python2-coverage' 'python-psutil' 'python2-psutil')
 source=("git+https://github.com/shazow/urllib3.git#tag=$pkgver;)
 md5sums=('SKIP')
 
@@ -38,8 +38,6 @@
 }
 
 check() {
-  # Failures are related to missing SSLv3
-
   cd "$srcdir"/urllib3
   nosetests3 || warning "Tests failed"
 


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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:19:22
  Author: felixonmars
Revision: 208187

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-21 03:18:51 UTC (rev 208186)
+++ PKGBUILD2017-01-21 03:19:22 UTC (rev 208187)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pifpaf
-pkgname=('python-pifpaf' 'python2-pifpaf')
-pkgver=0.20.0
-pkgrel=1
-pkgdesc='Suite of tools and fixtures to manage daemons for testing'
-arch=('any')
-license=('Apache')
-url='https://github.com/jd/pifpaf'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-cliff'
- 'python2-cliff' 'python-stevedore' 'python2-stevedore' 
'python-six' 'python2-six'
- 'python-fixtures' 'python2-fixtures' 'python-xattr' 
'python2-xattr' 'git')
-checkdepends=('python-testrepository' 'python2-testrepository' 
'python-requests' 'python2-requests'
-  'python-testtools' 'python2-testtools' 'python-oslotest' 
'python2-oslotest'
-  'memcached' 'mongodb' 'percona-server' 'percona-server-clients' 
'postgresql' 'redis'
-  'ceph' 'consul' 'couchdb')
-# 'elasticsearch': test fails
-# 'rabbitmq': test hangs
-source=("git+https://github.com/jd/pifpaf.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a pifpaf{,-py2}
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/pifpaf
-  python setup.py build
-
-  cd "$srcdir"/pifpaf-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pifpaf
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages" 
PATH="$PWD/tmp_install/usr/bin:$PATH" python setup.py testr
-
-  cd "$srcdir"/pifpaf-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages" 
PATH="$PWD/tmp_install/usr/bin:$PATH" PYTHON=python2 python2 setup.py testr
-}
-
-package_python-pifpaf() {
-  depends=('python-pbr' 'python-cliff' 'python-stevedore' 'python-six' 
'python-fixtures'
-   'python-xattr')
-
-  cd "$srcdir"/pifpaf
-  python setup.py install --root="$pkgdir"/ --optimize=1
-}
-
-package_python2-pifpaf() {
-  depends=('python2-pbr' 'python2-cliff' 'python2-stevedore' 'python2-six' 
'python2-fixtures'
-   'python2-xattr')
-
-  cd "$srcdir"/pifpaf-py2
-  python2 setup.py install --root="$pkgdir"/ --optimize=1
-
-  mv "$pkgdir"/usr/bin/pifpaf{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pifpaf/repos/community-any/PKGBUILD (from rev 208186, 
python-pifpaf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-21 03:19:22 UTC (rev 208187)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pifpaf
+pkgname=('python-pifpaf' 'python2-pifpaf')
+pkgver=0.22.0
+pkgrel=1
+pkgdesc='Suite of tools and fixtures to manage daemons for testing'
+arch=('any')
+license=('Apache')
+url='https://github.com/jd/pifpaf'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-cliff'
+ 'python2-cliff' 'python-stevedore' 'python2-stevedore' 
'python-six' 'python2-six'
+ 'python-fixtures' 'python2-fixtures' 'python-xattr' 
'python2-xattr' 'git')
+checkdepends=('python-testrepository' 'python2-testrepository' 
'python-requests' 'python2-requests'
+  'python-testtools' 'python2-testtools' 'python-oslotest' 
'python2-oslotest'
+  'memcached' 'mongodb' 'percona-server' 'percona-server-clients' 
'postgresql' 'redis'
+  'ceph' 'consul' 'couchdb')
+# 'elasticsearch': test fails
+# 'rabbitmq': test hangs
+source=("git+https://github.com/jd/pifpaf.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a pifpaf{,-py2}
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/pifpaf
+  python setup.py build
+
+  cd "$srcdir"/pifpaf-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pifpaf
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages" 
PATH="$PWD/tmp_install/usr/bin:$PATH" python setup.py testr
+
+  cd "$srcdir"/pifpaf-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages" 
PATH="$PWD/tmp_install/usr/bin:$PATH" PYTHON=python2 python2 setup.py testr
+}
+

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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:18:51
  Author: felixonmars
Revision: 208186

upgpkg: python-pifpaf 0.22.0-1

Modified:
  python-pifpaf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 03:18:07 UTC (rev 208185)
+++ PKGBUILD2017-01-21 03:18:51 UTC (rev 208186)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pifpaf
 pkgname=('python-pifpaf' 'python2-pifpaf')
-pkgver=0.20.0
+pkgver=0.22.0
 pkgrel=1
 pkgdesc='Suite of tools and fixtures to manage daemons for testing'
 arch=('any')


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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:18:07
  Author: felixonmars
Revision: 208185

archrelease: copy trunk to community-any

Added:
  ruby-bundler/repos/community-any/PKGBUILD
(from rev 208184, ruby-bundler/trunk/PKGBUILD)
Deleted:
  ruby-bundler/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-21 03:17:45 UTC (rev 208184)
+++ PKGBUILD2017-01-21 03:18:07 UTC (rev 208185)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jonne Haß 
-# Contributor: Hyacinthe Cartiaux 
-# Contributor: Anatol Pomozov 
-# Contributor: Alexsandr Pavlov 
-
-pkgname=ruby-bundler
-_gemname=${pkgname#ruby-}
-pkgver=1.13.7
-pkgrel=2
-pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
-arch=('any')
-url='http://bundler.io'
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
-noextract=("$_gemname-$pkgver.gem")
-sha256sums=('a9f0c8c5cf977cadce77e6185695d4a0b956a73569a5634b15b34cc07fdb7bab')
-
-package() {
-  cd "$srcdir"
-
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem install 
--no-user-install --ignore-dependencies \
- -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" "$_gemname-$pkgver.gem"
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}

Copied: ruby-bundler/repos/community-any/PKGBUILD (from rev 208184, 
ruby-bundler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-21 03:18:07 UTC (rev 208185)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jonne Haß 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Anatol Pomozov 
+# Contributor: Alexsandr Pavlov 
+
+pkgname=ruby-bundler
+_gemname=${pkgname#ruby-}
+pkgver=1.14.0
+pkgrel=1
+pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
+arch=('any')
+url='http://bundler.io'
+license=('MIT')
+depends=('ruby')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
+noextract=("$_gemname-$pkgver.gem")
+sha256sums=('ed0a8fe1fb0654a5971ef51e8754816be555494b667535ba285e8e4ff679319c')
+
+package() {
+  cd "$srcdir"
+
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem install 
--no-user-install --ignore-dependencies \
+ -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" "$_gemname-$pkgver.gem"
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+}


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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:17:45
  Author: felixonmars
Revision: 208184

upgpkg: ruby-bundler 1.14.0-1

Modified:
  ruby-bundler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 03:16:15 UTC (rev 208183)
+++ PKGBUILD2017-01-21 03:17:45 UTC (rev 208184)
@@ -7,8 +7,8 @@
 
 pkgname=ruby-bundler
 _gemname=${pkgname#ruby-}
-pkgver=1.13.7
-pkgrel=2
+pkgver=1.14.0
+pkgrel=1
 pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
 arch=('any')
 url='http://bundler.io'
@@ -17,7 +17,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
 noextract=("$_gemname-$pkgver.gem")
-sha256sums=('a9f0c8c5cf977cadce77e6185695d4a0b956a73569a5634b15b34cc07fdb7bab')
+sha256sums=('ed0a8fe1fb0654a5971ef51e8754816be555494b667535ba285e8e4ff679319c')
 
 package() {
   cd "$srcdir"


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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:15:52
  Author: felixonmars
Revision: 208182

upgpkg: eslint 3.14.0-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 03:14:12 UTC (rev 208181)
+++ PKGBUILD2017-01-21 03:15:52 UTC (rev 208182)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=3.13.1
+pkgver=3.14.0
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('bd4328ff6a39c79e1010ac0c8e99e5fd')
+md5sums=('1ec7e9d7460a0564dfecc7e0e16424d8')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:16:15
  Author: felixonmars
Revision: 208183

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 208182, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-21 03:15:52 UTC (rev 208182)
+++ PKGBUILD2017-01-21 03:16:15 UTC (rev 208183)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=3.13.1
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='http://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('bd4328ff6a39c79e1010ac0c8e99e5fd')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-npm link $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 208182, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-21 03:16:15 UTC (rev 208183)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=3.14.0
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='http://eslint.org'
+license=('MIT')
+depends=('nodejs' 'acorn')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('1ec7e9d7460a0564dfecc7e0e16424d8')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+npm link $dep;
+  done
+}


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

2017-01-20 Thread Balló György
Date: Saturday, January 21, 2017 @ 03:14:09
  Author: bgyorgy
Revision: 208180

archrelease: copy trunk to community-i686, community-x86_64

Added:
  tuxcmd/repos/community-i686/PKGBUILD
(from rev 208179, tuxcmd/trunk/PKGBUILD)
  tuxcmd/repos/community-x86_64/PKGBUILD
(from rev 208179, tuxcmd/trunk/PKGBUILD)
Deleted:
  tuxcmd/repos/community-i686/PKGBUILD
  tuxcmd/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   62 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 62 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-21 03:13:31 UTC (rev 208179)
+++ community-i686/PKGBUILD 2017-01-21 03:14:09 UTC (rev 208180)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=tuxcmd
-pkgver=0.6.70
-pkgrel=6
-pkgdesc='A GTK2 file manager with two panels'
-arch=('i686' 'x86_64')
-url='http://tuxcmd.sourceforge.net/'
-license=('GPL')
-depends=('gtk2' 'hicolor-icon-theme')
-makedepends=('fpc' 'desktop-file-utils')
-optdepends=('gnome-vfs: support for gvfs'
-'tuxcmd-modules: modules for tuxcmd')
-options=('!docs' '!emptydirs')
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgname-dev-$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b9f924766f2b1770f5fddc2b2e79c6778b44606ea05c53c9ffd947436b0e41fb')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}"/usr install
-
-# remove license and README file
-  rm -rf "${pkgdir}"/usr/share/doc/
-}

Copied: tuxcmd/repos/community-i686/PKGBUILD (from rev 208179, 
tuxcmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-21 03:14:09 UTC (rev 208180)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=tuxcmd
+pkgver=0.6.70
+pkgrel=7
+pkgdesc='A GTK2 file manager with two panels'
+arch=('i686' 'x86_64')
+url='http://tuxcmd.sourceforge.net/'
+license=('GPL')
+depends=('gtk2')
+makedepends=('fpc')
+optdepends=('tuxcmd-modules: modules for tuxcmd')
+options=('!docs' '!emptydirs')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgname-dev-$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('b9f924766f2b1770f5fddc2b2e79c6778b44606ea05c53c9ffd947436b0e41fb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}"/usr install
+
+# remove license and README file
+  rm -rf "${pkgdir}"/usr/share/doc/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-21 03:13:31 UTC (rev 208179)
+++ community-x86_64/PKGBUILD   2017-01-21 03:14:09 UTC (rev 208180)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=tuxcmd
-pkgver=0.6.70
-pkgrel=6
-pkgdesc='A GTK2 file manager with two panels'
-arch=('i686' 'x86_64')
-url='http://tuxcmd.sourceforge.net/'
-license=('GPL')
-depends=('gtk2' 'hicolor-icon-theme')
-makedepends=('fpc' 'desktop-file-utils')
-optdepends=('gnome-vfs: support for gvfs'
-'tuxcmd-modules: modules for tuxcmd')
-options=('!docs' '!emptydirs')
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgname-dev-$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b9f924766f2b1770f5fddc2b2e79c6778b44606ea05c53c9ffd947436b0e41fb')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}"/usr install
-
-# remove license and README file
-  rm -rf "${pkgdir}"/usr/share/doc/
-}

Copied: tuxcmd/repos/community-x86_64/PKGBUILD (from rev 208179, 
tuxcmd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-21 03:14:09 UTC (rev 208180)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=tuxcmd
+pkgver=0.6.70
+pkgrel=7
+pkgdesc='A GTK2 file manager with two panels'
+arch=('i686' 'x86_64')
+url='http://tuxcmd.sourceforge.net/'
+license=('GPL')
+depends=('gtk2')
+makedepends=('fpc')
+optdepends=('tuxcmd-modules: modules for tuxcmd')
+options=('!docs' '!emptydirs')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgname-dev-$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('b9f924766f2b1770f5fddc2b2e79c6778b44606ea05c53c9ffd947436b0e41fb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}"/usr install
+
+# 

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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:14:12
  Author: felixonmars
Revision: 208181

archrelease: copy trunk to community-any

Added:
  python-pytest-runner/repos/community-any/PKGBUILD
(from rev 208179, python-pytest-runner/trunk/PKGBUILD)
Deleted:
  python-pytest-runner/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-21 03:14:09 UTC (rev 208180)
+++ PKGBUILD2017-01-21 03:14:12 UTC (rev 208181)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-runner
-pkgname=('python-pytest-runner' 'python2-pytest-runner')
-pkgver=2.9
-pkgrel=2
-pkgdesc="Invoke py.test as distutils command with dependency resolution"
-arch=('any')
-license=('MIT')
-url="https://github.com/pytest-dev/pytest-runner;
-makedepends=('python-pytest' 'python2-pytest' 'python-setuptools-scm' 
'python2-setuptools-scm' 'git')
-source=("git+https://github.com/pytest-dev/pytest-runner.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a pytest-runner{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest-runner
-  python setup.py build
-
-  cd "$srcdir"/pytest-runner-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pytest-runner
-  py.test
-
-  cd "$srcdir"/pytest-runner-py2
-  py.test2
-}
-
-package_python-pytest-runner() {
-  depends=('python-pytest')
-
-  cd pytest-runner
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pytest-runner() {
-  depends=('python2-pytest')
-
-  cd pytest-runner-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pytest-runner/repos/community-any/PKGBUILD (from rev 208179, 
python-pytest-runner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-21 03:14:12 UTC (rev 208181)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-runner
+pkgname=('python-pytest-runner' 'python2-pytest-runner')
+pkgver=2.10.1
+pkgrel=1
+pkgdesc="Invoke py.test as distutils command with dependency resolution"
+arch=('any')
+license=('MIT')
+url="https://github.com/pytest-dev/pytest-runner;
+makedepends=('python-pytest' 'python2-pytest' 'python-setuptools-scm' 
'python2-setuptools-scm' 'git')
+source=("git+https://github.com/pytest-dev/pytest-runner.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a pytest-runner{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-runner
+  python setup.py build
+
+  cd "$srcdir"/pytest-runner-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pytest-runner
+  python setup.py egg_info
+  PYTHONPATH="$PWD" pytest
+
+  cd "$srcdir"/pytest-runner-py2
+  python2 setup.py egg_info
+  PYTHONPATH="$PWD" pytest2
+}
+
+package_python-pytest-runner() {
+  depends=('python-pytest')
+
+  cd pytest-runner
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-runner() {
+  depends=('python2-pytest')
+
+  cd pytest-runner-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-01-20 Thread Felix Yan
Date: Saturday, January 21, 2017 @ 03:13:31
  Author: felixonmars
Revision: 208179

upgpkg: python-pytest-runner 2.10.1-1

Modified:
  python-pytest-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 03:13:29 UTC (rev 208178)
+++ PKGBUILD2017-01-21 03:13:31 UTC (rev 208179)
@@ -3,8 +3,8 @@
 
 pkgbase=python-pytest-runner
 pkgname=('python-pytest-runner' 'python2-pytest-runner')
-pkgver=2.9
-pkgrel=2
+pkgver=2.10.1
+pkgrel=1
 pkgdesc="Invoke py.test as distutils command with dependency resolution"
 arch=('any')
 license=('MIT')
@@ -27,10 +27,12 @@
 
 check() {
   cd "$srcdir"/pytest-runner
-  py.test
+  python setup.py egg_info
+  PYTHONPATH="$PWD" pytest
 
   cd "$srcdir"/pytest-runner-py2
-  py.test2
+  python2 setup.py egg_info
+  PYTHONPATH="$PWD" pytest2
 }
 
 package_python-pytest-runner() {


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

2017-01-20 Thread Balló György
Date: Saturday, January 21, 2017 @ 03:13:29
  Author: bgyorgy
Revision: 208178

upgpkg: tuxcmd 0.6.70-7

Remove unused gnome-vfs optional dependency

Modified:
  tuxcmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 03:03:36 UTC (rev 208177)
+++ PKGBUILD2017-01-21 03:13:29 UTC (rev 208178)
@@ -3,15 +3,14 @@
 
 pkgname=tuxcmd
 pkgver=0.6.70
-pkgrel=6
+pkgrel=7
 pkgdesc='A GTK2 file manager with two panels'
 arch=('i686' 'x86_64')
 url='http://tuxcmd.sourceforge.net/'
 license=('GPL')
-depends=('gtk2' 'hicolor-icon-theme')
-makedepends=('fpc' 'desktop-file-utils')
-optdepends=('gnome-vfs: support for gvfs'
-'tuxcmd-modules: modules for tuxcmd')
+depends=('gtk2')
+makedepends=('fpc')
+optdepends=('tuxcmd-modules: modules for tuxcmd')
 options=('!docs' '!emptydirs')
 
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgname-dev-$pkgver/$pkgname-$pkgver.tar.bz2)
 sha256sums=('b9f924766f2b1770f5fddc2b2e79c6778b44606ea05c53c9ffd947436b0e41fb')


[arch-commits] Commit in netactview/repos (8 files)

2017-01-20 Thread Balló György
Date: Saturday, January 21, 2017 @ 03:03:36
  Author: bgyorgy
Revision: 208177

archrelease: copy trunk to community-i686, community-x86_64

Added:
  netactview/repos/community-i686/PKGBUILD
(from rev 208176, netactview/trunk/PKGBUILD)
  netactview/repos/community-i686/drop-libgnome.patch
(from rev 208176, netactview/trunk/drop-libgnome.patch)
  netactview/repos/community-i686/org.archlinux.pkexec.netactview.policy
(from rev 208176, netactview/trunk/org.archlinux.pkexec.netactview.policy)
  netactview/repos/community-x86_64/PKGBUILD
(from rev 208176, netactview/trunk/PKGBUILD)
  netactview/repos/community-x86_64/drop-libgnome.patch
(from rev 208176, netactview/trunk/drop-libgnome.patch)
  netactview/repos/community-x86_64/org.archlinux.pkexec.netactview.policy
(from rev 208176, netactview/trunk/org.archlinux.pkexec.netactview.policy)
Deleted:
  netactview/repos/community-i686/PKGBUILD
  netactview/repos/community-x86_64/PKGBUILD

-+
 /PKGBUILD   |   96 +
 community-i686/PKGBUILD |   26 --
 community-i686/drop-libgnome.patch  |  135 ++
 community-i686/org.archlinux.pkexec.netactview.policy   |   18 +
 community-x86_64/PKGBUILD   |   26 --
 community-x86_64/drop-libgnome.patch|  135 ++
 community-x86_64/org.archlinux.pkexec.netactview.policy |   18 +
 7 files changed, 402 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-21 03:03:29 UTC (rev 208176)
+++ community-i686/PKGBUILD 2017-01-21 03:03:36 UTC (rev 208177)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: lp76 
-
-pkgname=netactview
-pkgver=0.6.4
-pkgrel=1
-pkgdesc="A graphical network connections viewer similar in functionality to 
netstat"
-arch=('i686' 'x86_64')
-url="http://netactview.sourceforge.net/index.html;
-license=('GPL')
-depends=('libgnome' 'libglade' 'gksu')
-makedepends=('intltool')
-source=("http://downloads.sourceforge.net/netactview/${pkgname}-${pkgver}.tar.bz2;)
-sha256sums=('0cfe68e90862b10a19ab2cc4977a079887eeda00e4069a819c13ece90843fb4a')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: netactview/repos/community-i686/PKGBUILD (from rev 208176, 
netactview/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-21 03:03:36 UTC (rev 208177)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: lp76 
+
+pkgname=netactview
+pkgver=0.6.4
+pkgrel=2
+pkgdesc="A graphical network connections viewer similar in functionality to 
netstat"
+arch=('i686' 'x86_64')
+url="http://netactview.sourceforge.net/index.html;
+license=('GPL')
+depends=('gconf' 'libglade' 'libgtop')
+makedepends=('intltool' 'polkit')
+optdepends=('polkit: restart the application as root')
+source=("http://downloads.sourceforge.net/netactview/${pkgname}-${pkgver}.tar.bz2;
+'drop-libgnome.patch'
+'org.archlinux.pkexec.netactview.policy')
+sha256sums=('0cfe68e90862b10a19ab2cc4977a079887eeda00e4069a819c13ece90843fb4a'
+'e5359685c785427c812fd285b1eda3465e27120c186eae35a926881be1985df9'
+'467aa93ad28849061bfd1ea07698cc0154bef0a5a98e4c384260fc53e03b877c')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # Remove libgnome dependency
+  patch -Np1 -i ../drop-libgnome.patch
+
+  # Use pkexec instead of gksu
+  sed -i 's/\[gksu\]/\[pkexec\]/' configure.ac
+  sed -i 's/install gksu/install polkit/' src/mainwindow.c
+
+  autoreconf -fi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Polkit policy
+  install -Dm644 ../org.archlinux.pkexec.netactview.policy \
+"$pkgdir/usr/share/polkit-1/actions/org.archlinux.pkexec.netactview.policy"
+}

Copied: netactview/repos/community-i686/drop-libgnome.patch (from rev 208176, 
netactview/trunk/drop-libgnome.patch)
===
--- community-i686/drop-libgnome.patch  (rev 0)
+++ community-i686/drop-libgnome.patch  2017-01-21 03:03:36 UTC (rev 208177)
@@ -0,0 +1,135 @@
+diff -Naur netactview-0.6.4.orig/configure.ac netactview-0.6.4/configure.ac
+--- netactview-0.6.4.orig/configure.ac 2015-03-12 11:34:12.0 +0100
 netactview-0.6.4/configure.ac  2017-01-21 

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

2017-01-20 Thread Balló György
Date: Saturday, January 21, 2017 @ 03:03:29
  Author: bgyorgy
Revision: 208176

upgpkg: netactview 0.6.4-2

Remove deprecated libgnome dependency, replace gksu with pkexec

Added:
  netactview/trunk/drop-libgnome.patch
  netactview/trunk/org.archlinux.pkexec.netactview.policy
Modified:
  netactview/trunk/PKGBUILD

+
 PKGBUILD   |   32 ++-
 drop-libgnome.patch|  135 +++
 org.archlinux.pkexec.netactview.policy |   18 
 3 files changed, 180 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 00:48:57 UTC (rev 208175)
+++ PKGBUILD2017-01-21 03:03:29 UTC (rev 208176)
@@ -4,16 +4,34 @@
 
 pkgname=netactview
 pkgver=0.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A graphical network connections viewer similar in functionality to 
netstat"
 arch=('i686' 'x86_64')
 url="http://netactview.sourceforge.net/index.html;
 license=('GPL')
-depends=('libgnome' 'libglade' 'gksu')
-makedepends=('intltool')
-source=("http://downloads.sourceforge.net/netactview/${pkgname}-${pkgver}.tar.bz2;)
-sha256sums=('0cfe68e90862b10a19ab2cc4977a079887eeda00e4069a819c13ece90843fb4a')
+depends=('gconf' 'libglade' 'libgtop')
+makedepends=('intltool' 'polkit')
+optdepends=('polkit: restart the application as root')
+source=("http://downloads.sourceforge.net/netactview/${pkgname}-${pkgver}.tar.bz2;
+'drop-libgnome.patch'
+'org.archlinux.pkexec.netactview.policy')
+sha256sums=('0cfe68e90862b10a19ab2cc4977a079887eeda00e4069a819c13ece90843fb4a'
+'e5359685c785427c812fd285b1eda3465e27120c186eae35a926881be1985df9'
+'467aa93ad28849061bfd1ea07698cc0154bef0a5a98e4c384260fc53e03b877c')
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # Remove libgnome dependency
+  patch -Np1 -i ../drop-libgnome.patch
+
+  # Use pkexec instead of gksu
+  sed -i 's/\[gksu\]/\[pkexec\]/' configure.ac
+  sed -i 's/install gksu/install polkit/' src/mainwindow.c
+
+  autoreconf -fi
+}
+
 build() {
   cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr --mandir=/usr/share/man
@@ -23,4 +41,8 @@
 package() {
   cd "${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install
+
+  # Polkit policy
+  install -Dm644 ../org.archlinux.pkexec.netactview.policy \
+"$pkgdir/usr/share/polkit-1/actions/org.archlinux.pkexec.netactview.policy"
 }

Added: drop-libgnome.patch
===
--- drop-libgnome.patch (rev 0)
+++ drop-libgnome.patch 2017-01-21 03:03:29 UTC (rev 208176)
@@ -0,0 +1,135 @@
+diff -Naur netactview-0.6.4.orig/configure.ac netactview-0.6.4/configure.ac
+--- netactview-0.6.4.orig/configure.ac 2015-03-12 11:34:12.0 +0100
 netactview-0.6.4/configure.ac  2017-01-21 03:23:18.306420114 +0100
+@@ -25,7 +25,7 @@
+ AM_GLIB_GNU_GETTEXT
+ 
+ 
+-PKG_CHECK_MODULES(NETACTVIEW, [gtk+-2.0 >= 2.8 libglade-2.0 gnome-vfs-2.0 >= 
2.4 glib-2.0 >= 2.8 libgnome-2.0 gconf-2.0 libgtop-2.0 >= 2.12])
++PKG_CHECK_MODULES(NETACTVIEW, [gtk+-2.0 >= 2.8 libglade-2.0 gthread-2.0 
glib-2.0 >= 2.8 gconf-2.0 libgtop-2.0 >= 2.12])
+ AC_SUBST(NETACTVIEW_CFLAGS)
+ AC_SUBST(NETACTVIEW_LIBS)
+ 
+diff -Naur netactview-0.6.4.orig/src/main.c netactview-0.6.4/src/main.c
+--- netactview-0.6.4.orig/src/main.c   2015-03-18 14:04:51.0 +0100
 netactview-0.6.4/src/main.c2017-01-21 03:08:09.510451928 +0100
+@@ -27,9 +27,6 @@
+ #include 
+ #include 
+ #include 
+-#include 
+-#include 
+-#include 
+ #include 
+ 
+ #include "mainwindow.h"
+@@ -42,7 +39,7 @@
+ static void on_aboutdialog_url_activated (GtkAboutDialog *about, const gchar 
*url, 
+   
 gpointer data)
+ {
+-  gnome_vfs_url_show(url);
++  gtk_show_uri(NULL, url, GDK_CURRENT_TIME, NULL);
+ }
+ 
+ static void on_aboutdialog_email_activated (GtkAboutDialog *about, const 
gchar *url, 
+@@ -50,7 +47,7 @@
+ {
+   GString *s = g_string_new("mailto:;);
+   g_string_append(s, url);
+-  gnome_vfs_url_show(s->str);
++  gtk_show_uri(NULL, s->str, GDK_CURRENT_TIME, NULL);
+   g_string_free(s, TRUE);
+ }
+ 
+@@ -59,7 +56,6 @@
+ main (int argc, char *argv[])
+ {
+   GtkWidget *window;
+-  GnomeProgram *program;
+   GOptionContext *option_context;
+   
+   g_type_init();
+@@ -75,12 +71,6 @@
+   option_context = g_option_context_new(_(" - view network connections"));
+   
+   gtk_init(, );
+-  program = gnome_program_init(PACKAGE, VERSION, LIBGNOME_MODULE, argc, 
argv, 
+-   
GNOME_PARAM_GOPTION_CONTEXT, option_context,
+-   
GNOME_PROGRAM_STANDARD_PROPERTIES,
+-   
GNOME_PARAM_NONE);
+-  
+-  

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

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 01:15:53
  Author: heftig
Revision: 287056

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  linux-zen/repos/testing-i686/99-linux.hook
(from rev 287055, linux-zen/trunk/99-linux.hook)
  linux-zen/repos/testing-i686/PKGBUILD
(from rev 287055, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-i686/change-default-console-loglevel.patch
(from rev 287055, linux-zen/trunk/change-default-console-loglevel.patch)
  linux-zen/repos/testing-i686/config
(from rev 287055, linux-zen/trunk/config)
  linux-zen/repos/testing-i686/config.x86_64
(from rev 287055, linux-zen/trunk/config.x86_64)
  linux-zen/repos/testing-i686/linux.install
(from rev 287055, linux-zen/trunk/linux.install)
  linux-zen/repos/testing-i686/linux.preset
(from rev 287055, linux-zen/trunk/linux.preset)
  linux-zen/repos/testing-x86_64/99-linux.hook
(from rev 287055, linux-zen/trunk/99-linux.hook)
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 287055, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 287055, linux-zen/trunk/change-default-console-loglevel.patch)
  linux-zen/repos/testing-x86_64/config
(from rev 287055, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/config.x86_64
(from rev 287055, linux-zen/trunk/config.x86_64)
  linux-zen/repos/testing-x86_64/linux.install
(from rev 287055, linux-zen/trunk/linux.install)
  linux-zen/repos/testing-x86_64/linux.preset
(from rev 287055, linux-zen/trunk/linux.preset)
Deleted:
  linux-zen/repos/testing-i686/99-linux.hook
  linux-zen/repos/testing-i686/PKGBUILD
  linux-zen/repos/testing-i686/change-default-console-loglevel.patch
  linux-zen/repos/testing-i686/config
  linux-zen/repos/testing-i686/config.x86_64
  linux-zen/repos/testing-i686/linux.install
  linux-zen/repos/testing-i686/linux.preset
  linux-zen/repos/testing-x86_64/99-linux.hook
  linux-zen/repos/testing-x86_64/PKGBUILD
  linux-zen/repos/testing-x86_64/change-default-console-loglevel.patch
  linux-zen/repos/testing-x86_64/config
  linux-zen/repos/testing-x86_64/config.x86_64
  linux-zen/repos/testing-x86_64/linux.install
  linux-zen/repos/testing-x86_64/linux.preset

--+
 /99-linux.hook   |   22 
 /PKGBUILD|  622 
 /change-default-console-loglevel.patch   |   22 
 /config  |16498 +
 /config.x86_64   |16026 
 /linux.install   |   54 
 /linux.preset|   28 
 testing-i686/99-linux.hook   |   11 
 testing-i686/PKGBUILD|  311 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 8305 
 testing-i686/config.x86_64   | 8068 
 testing-i686/linux.install   |   27 
 testing-i686/linux.preset|   14 
 testing-x86_64/99-linux.hook |   11 
 testing-x86_64/PKGBUILD  |  311 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 8305 
 testing-x86_64/config.x86_64 | 8068 
 testing-x86_64/linux.install |   27 
 testing-x86_64/linux.preset  |   14 
 21 files changed, 33272 insertions(+), 33494 deletions(-)

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


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

2017-01-20 Thread Jan Steffens
Date: Saturday, January 21, 2017 @ 01:09:42
  Author: heftig
Revision: 287055

4.9.5-1

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

---+
 PKGBUILD  |   12 ++--
 config|  162 ++--
 config.x86_64 |  159 +-
 3 files changed, 111 insertions(+), 222 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 00:57:04 UTC (rev 287054)
+++ PKGBUILD2017-01-21 01:09:42 UTC (rev 287055)
@@ -6,8 +6,8 @@
 pkgbase=linux-zen   # Build -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.9
-_zenpatch=zen-4.9.4-271406515095e0f58907aa3093f08130eea50f44.diff
-pkgver=4.9.4
+_zenpatch=zen-4.9.5-5c46ba948a77e92394eab09faff1cb5eff5f0eeb.diff
+pkgver=4.9.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://github.com/zen-kernel/zen-kernel;
@@ -31,12 +31,12 @@
 
 sha256sums=('029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a'
 'SKIP'
-'ce711beba69745c5203a9e50ae5147c8d97ef084679a67cbb39e0090d2dcffe2'
+'0dd71eceb373d1731d821b02435b6d8cf261267e5a7fe2d82d39b45370e263e1'
 'SKIP'
-'0984f4478c8023845e6472e9c36f5c101652a47aec182a9c6496872f50349851'
+'36c275b93099a1c7a733539439ab5a6816145a0cedbb82d5c31ba52cd6cc612e'
 'SKIP'
-'9fce656528043ba1bc0c1fe03852ad9d3cf569503b47afc7c5f0e317de07c084'
-'fe6c7e809f52f7e6bcc3224cc82bf13458c7fc472ab831a49d2324976b6521d7'
+'93fcf61b6211656537b464a30bc2f3aafa9908330744e22f1486026204d2f5eb'
+'faef82d85d71e97cd1cd4771142280e037bf94f8d296b64af0dcc14033f2658b'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65'
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')

Modified: config
===
--- config  2017-01-21 00:57:04 UTC (rev 287054)
+++ config  2017-01-21 01:09:42 UTC (rev 287055)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.9.0-2 Kernel Configuration
+# Linux/x86 4.9.5-1 Kernel Configuration
 #
 # CONFIG_64BIT is not set
 CONFIG_X86_32=y
@@ -76,8 +76,11 @@
 CONFIG_CROSS_MEMORY_ATTACH=y
 CONFIG_FHANDLE=y
 # CONFIG_USELIB is not set
-# CONFIG_AUDIT is not set
+CONFIG_AUDIT=y
 CONFIG_HAVE_ARCH_AUDITSYSCALL=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_WATCH=y
+CONFIG_AUDIT_TREE=y
 
 #
 # IRQ subsystem
@@ -160,7 +163,7 @@
 CONFIG_PROC_PID_CPUSET=y
 CONFIG_CGROUP_DEVICE=y
 CONFIG_CGROUP_CPUACCT=y
-# CONFIG_CGROUP_PERF is not set
+CONFIG_CGROUP_PERF=y
 # CONFIG_CGROUP_DEBUG is not set
 # CONFIG_CHECKPOINT_RESTORE is not set
 CONFIG_NAMESPACES=y
@@ -398,7 +401,7 @@
 # CONFIG_GOLDFISH is not set
 # CONFIG_X86_EXTENDED_PLATFORM is not set
 CONFIG_X86_INTEL_LPSS=y
-# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
 CONFIG_IOSF_MBI=y
 # CONFIG_IOSF_MBI_DEBUG is not set
 CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
@@ -407,7 +410,8 @@
 CONFIG_HYPERVISOR_GUEST=y
 CONFIG_PARAVIRT=y
 # CONFIG_PARAVIRT_DEBUG is not set
-# CONFIG_PARAVIRT_SPINLOCKS is not set
+CONFIG_PARAVIRT_SPINLOCKS=y
+# CONFIG_QUEUED_LOCK_STAT is not set
 CONFIG_KVM_GUEST=y
 # CONFIG_KVM_DEBUG_FS is not set
 # CONFIG_LGUEST_GUEST is not set
@@ -625,7 +629,7 @@
 CONFIG_PM_TRACE_RTC=y
 CONFIG_PM_CLK=y
 CONFIG_PM_GENERIC_DOMAINS=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y
 CONFIG_PM_GENERIC_DOMAINS_SLEEP=y
 CONFIG_PM_GENERIC_DOMAINS_OF=y
 CONFIG_ACPI=y
@@ -675,7 +679,9 @@
 CONFIG_DPTF_POWER=m
 CONFIG_ACPI_WATCHDOG=y
 CONFIG_ACPI_EXTLOG=m
-# CONFIG_PMIC_OPREGION is not set
+CONFIG_PMIC_OPREGION=y
+CONFIG_CRC_PMIC_OPREGION=y
+CONFIG_BXT_WC_PMIC_OPREGION=y
 CONFIG_ACPI_CONFIGFS=m
 CONFIG_SFI=y
 CONFIG_X86_APM_BOOT=y
@@ -697,13 +703,13 @@
 # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
 # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
 # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
 # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y
 CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
 CONFIG_CPU_FREQ_GOV_POWERSAVE=m
 CONFIG_CPU_FREQ_GOV_USERSPACE=m
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=m
 CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
 CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
 
@@ -1046,6 +1052,7 @@
 #
 # Xtables targets
 #
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
 CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
 CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
@@ -1421,7 +1428,15 @@
 CONFIG_NET_CLS_BPF=m
 CONFIG_NET_CLS_FLOWER=m

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

2017-01-20 Thread Antonio Rojas
Date: Saturday, January 21, 2017 @ 00:56:33
  Author: arojas
Revision: 287053

Drop gnome-vfs support

Modified:
  xine-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 00:49:39 UTC (rev 287052)
+++ PKGBUILD2017-01-21 00:56:33 UTC (rev 287053)
@@ -3,7 +3,7 @@
 
 pkgname=xine-lib
 pkgver=1.2.6
-pkgrel=11
+pkgrel=12
 pkgdesc="A multimedia playback engine"
 arch=('i686' 'x86_64')
 url="http://www.xine-project.org;
@@ -11,7 +11,7 @@
 depends=('libxvmc' 'ffmpeg' 'libxinerama')
 makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
  'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu' 
'gdk-pixbuf2')
+ 'libmpcdec' 'libcaca' 'libbluray' 'libvdpau' 'glu' 'gdk-pixbuf2')
 optdepends=('imagemagick: for using the imagemagick plugin' \
 'jack: for using the jack plugin' \
 'vcdimager: for using the vcd plugin' \
@@ -28,7 +28,6 @@
 'libmpcdec: for using the musepack plugin' \
 'libcaca: for using the caca plugin' \
 'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
 'libvdpau: for using the VDPAU plugin' \
 'smbclient: for using the samba plugin' \
 'gdk-pixbuf2: for using the gdk-pixbuf plugin')


[arch-commits] Commit in xine-lib/repos (12 files)

2017-01-20 Thread Antonio Rojas
Date: Saturday, January 21, 2017 @ 00:57:04
  Author: arojas
Revision: 287054

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 287053, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/extra-i686/xine-lib-ffmpeg3.patch
(from rev 287053, xine-lib/trunk/xine-lib-ffmpeg3.patch)
  xine-lib/repos/extra-i686/xine-lib-xcb-1.12.patch
(from rev 287053, xine-lib/trunk/xine-lib-xcb-1.12.patch)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 287053, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/extra-x86_64/xine-lib-ffmpeg3.patch
(from rev 287053, xine-lib/trunk/xine-lib-ffmpeg3.patch)
  xine-lib/repos/extra-x86_64/xine-lib-xcb-1.12.patch
(from rev 287053, xine-lib/trunk/xine-lib-xcb-1.12.patch)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-i686/xine-lib-ffmpeg3.patch
  xine-lib/repos/extra-i686/xine-lib-xcb-1.12.patch
  xine-lib/repos/extra-x86_64/PKGBUILD
  xine-lib/repos/extra-x86_64/xine-lib-ffmpeg3.patch
  xine-lib/repos/extra-x86_64/xine-lib-xcb-1.12.patch

--+
 /PKGBUILD|  116 +
 /xine-lib-ffmpeg3.patch  |  110 +++
 /xine-lib-xcb-1.12.patch |   50 ++
 extra-i686/PKGBUILD  |   59 
 extra-i686/xine-lib-ffmpeg3.patch|   55 ---
 extra-i686/xine-lib-xcb-1.12.patch   |   25 ---
 extra-x86_64/PKGBUILD|   59 
 extra-x86_64/xine-lib-ffmpeg3.patch  |   55 ---
 extra-x86_64/xine-lib-xcb-1.12.patch |   25 ---
 9 files changed, 276 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-21 00:56:33 UTC (rev 287053)
+++ extra-i686/PKGBUILD 2017-01-21 00:57:04 UTC (rev 287054)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=xine-lib
-pkgver=1.2.6
-pkgrel=11
-pkgdesc="A multimedia playback engine"
-arch=('i686' 'x86_64')
-url="http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu' 
'gdk-pixbuf2')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'glu: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libdvdnav: for using the dvd plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin' \
-'smbclient: for using the samba plugin' \
-'gdk-pixbuf2: for using the gdk-pixbuf plugin')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
 xine-lib-ffmpeg3.patch xine-lib-xcb-1.12.patch)
-sha1sums=('ac929eef2b7bf5c27699bbed612b953a01fccba5'
-  'b4466616bb17142aef8aa1bb80fff67cd2d0d15d'
-  '890c8f044c0080bfb7d4b163061dd42621fc4df1')
-
-prepare() {
-  cd $pkgname-$pkgver
-# Fix build with ffmpeg 3.0 (Gentoo)
-  patch -p1 -i ../xine-lib-ffmpeg3.patch
-# Fix build with xcb 1.12 (Gentoo)
-  patch -p1 -i ../xine-lib-xcb-1.12.patch
-  autoreconf -vi
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--with-external-dvdnav \
---disable-optimizations 
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 287053, 
xine-lib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-21 00:57:04 UTC (rev 287054)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=xine-lib
+pkgver=1.2.6
+pkgrel=12
+pkgdesc="A multimedia playback engine"
+arch=('i686' 'x86_64')
+url="http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 

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

2017-01-20 Thread Antonio Rojas
Date: Saturday, January 21, 2017 @ 00:49:39
  Author: arojas
Revision: 287052

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  libqalculate/repos/extra-i686/PKGBUILD
(from rev 287051, libqalculate/trunk/PKGBUILD)
  libqalculate/repos/extra-x86_64/PKGBUILD
(from rev 287051, libqalculate/trunk/PKGBUILD)
Deleted:
  libqalculate/repos/extra-i686/PKGBUILD
  libqalculate/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 extra-i686/PKGBUILD   |   29 
 extra-x86_64/PKGBUILD |   29 
 3 files changed, 56 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-21 00:49:08 UTC (rev 287051)
+++ extra-i686/PKGBUILD 2017-01-21 00:49:39 UTC (rev 287052)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=libqalculate
-pkgver=0.9.10
-pkgrel=2
-pkgdesc="Multi-purpose desktop calculator"
-arch=('i686' 'x86_64')
-url="http://qalculate.github.io/;
-license=('GPL')
-depends=('libxml2' 'cln' 'glib2')
-makedepends=('perl-xml-parser' 'intltool')
-optdepends=('gnuplot: for plotting support' 
-'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)'
-'gnome-vfs: for retrieval of exchange rates (not needed if you use 
one of the GUI)')
-options=('!makeflags')
-source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha1sums=('b8fbfe49860da8fdd2b6f71e078cab7ce01e1dd7')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libqalculate/repos/extra-i686/PKGBUILD (from rev 287051, 
libqalculate/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-21 00:49:39 UTC (rev 287052)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=libqalculate
+pkgver=0.9.10
+pkgrel=3
+pkgdesc="Multi-purpose desktop calculator"
+arch=('i686' 'x86_64')
+url="http://qalculate.github.io/;
+license=('GPL')
+depends=('libxml2' 'cln' 'glib2')
+makedepends=('perl-xml-parser' 'intltool')
+optdepends=('gnuplot: for plotting support' 
+'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)')
+options=('!makeflags')
+source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha1sums=('b8fbfe49860da8fdd2b6f71e078cab7ce01e1dd7')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-21 00:49:08 UTC (rev 287051)
+++ extra-x86_64/PKGBUILD   2017-01-21 00:49:39 UTC (rev 287052)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=libqalculate
-pkgver=0.9.10
-pkgrel=2
-pkgdesc="Multi-purpose desktop calculator"
-arch=('i686' 'x86_64')
-url="http://qalculate.github.io/;
-license=('GPL')
-depends=('libxml2' 'cln' 'glib2')
-makedepends=('perl-xml-parser' 'intltool')
-optdepends=('gnuplot: for plotting support' 
-'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)'
-'gnome-vfs: for retrieval of exchange rates (not needed if you use 
one of the GUI)')
-options=('!makeflags')
-source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha1sums=('b8fbfe49860da8fdd2b6f71e078cab7ce01e1dd7')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libqalculate/repos/extra-x86_64/PKGBUILD (from rev 287051, 
libqalculate/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-21 00:49:39 UTC (rev 287052)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=libqalculate
+pkgver=0.9.10
+pkgrel=3
+pkgdesc="Multi-purpose desktop calculator"
+arch=('i686' 'x86_64')
+url="http://qalculate.github.io/;
+license=('GPL')
+depends=('libxml2' 'cln' 'glib2')
+makedepends=('perl-xml-parser' 'intltool')
+optdepends=('gnuplot: for plotting support' 
+'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)')
+options=('!makeflags')
+source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha1sums=('b8fbfe49860da8fdd2b6f71e078cab7ce01e1dd7')
+
+build() {

[arch-commits] Commit in (midori-gtk2)

2017-01-20 Thread Alexander Rødseth
Date: Saturday, January 21, 2017 @ 00:48:57
  Author: arodseth
Revision: 208175

Moved to AUR. Webkit security issue.

See: https://www.archlinux.org/todo/phasing-out-webkitgtk2/

Deleted:
  midori-gtk2/


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

2017-01-20 Thread Antonio Rojas
Date: Saturday, January 21, 2017 @ 00:49:08
  Author: arojas
Revision: 287051

Drop gnome-vfs optdepend

Modified:
  libqalculate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 22:34:22 UTC (rev 287050)
+++ PKGBUILD2017-01-21 00:49:08 UTC (rev 287051)
@@ -3,7 +3,7 @@
 
 pkgname=libqalculate
 pkgver=0.9.10
-pkgrel=2
+pkgrel=3
 pkgdesc="Multi-purpose desktop calculator"
 arch=('i686' 'x86_64')
 url="http://qalculate.github.io/;
@@ -11,8 +11,7 @@
 depends=('libxml2' 'cln' 'glib2')
 makedepends=('perl-xml-parser' 'intltool')
 optdepends=('gnuplot: for plotting support' 
-'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)'
-'gnome-vfs: for retrieval of exchange rates (not needed if you use 
one of the GUI)')
+'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)')
 options=('!makeflags')
 
source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
 sha1sums=('b8fbfe49860da8fdd2b6f71e078cab7ce01e1dd7')


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

2017-01-20 Thread Balló György
Date: Saturday, January 21, 2017 @ 00:28:08
  Author: bgyorgy
Revision: 208172

archrelease: copy trunk to community-i686, community-x86_64

Added:
  etherape/repos/community-i686/PKGBUILD
(from rev 208171, etherape/trunk/PKGBUILD)
  etherape/repos/community-i686/drop-libgnomeui.patch
(from rev 208171, etherape/trunk/drop-libgnomeui.patch)
  etherape/repos/community-x86_64/PKGBUILD
(from rev 208171, etherape/trunk/PKGBUILD)
  etherape/repos/community-x86_64/drop-libgnomeui.patch
(from rev 208171, etherape/trunk/drop-libgnomeui.patch)
Deleted:
  etherape/repos/community-i686/PKGBUILD
  etherape/repos/community-x86_64/PKGBUILD

+
 /PKGBUILD  |   80 ++
 community-i686/PKGBUILD|   30 -
 community-i686/drop-libgnomeui.patch   |  169 +++
 community-x86_64/PKGBUILD  |   30 -
 community-x86_64/drop-libgnomeui.patch |  169 +++
 5 files changed, 418 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-21 00:27:46 UTC (rev 208171)
+++ community-i686/PKGBUILD 2017-01-21 00:28:08 UTC (rev 208172)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: kevin 
-# Contributor: Damir Perisa 
-
-pkgname=etherape
-pkgver=0.9.14
-pkgrel=1
-pkgdesc='A graphical network monitor for various OSI layers and protocols'
-arch=('i686' 'x86_64')
-url="http://etherape.sourceforge.net/;
-license=('GPL2')
-depends=('libgnomeui' 'libpcap')
-makedepends=('rarian' 'gnome-doc-utils')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('d28ad8be9c571c204272391316ff261bdb4f1ec3')
-md5sums=('e491597d807d2b27c3fbd09e10bbd448')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: etherape/repos/community-i686/PKGBUILD (from rev 208171, 
etherape/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-21 00:28:08 UTC (rev 208172)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Thorsten Töpper 
+# Contributor: kevin 
+# Contributor: Damir Perisa 
+
+pkgname=etherape
+pkgver=0.9.14
+pkgrel=2
+pkgdesc='A graphical network monitor for various OSI layers and protocols'
+arch=('i686' 'x86_64')
+url="http://etherape.sourceforge.net/;
+license=('GPL2')
+depends=('libgnomecanvas' 'libpcap' 'popt')
+makedepends=('rarian' 'gnome-doc-utils')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
+drop-libgnomeui.patch)
+sha1sums=('d28ad8be9c571c204272391316ff261bdb4f1ec3'
+  'SKIP')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Remove libgnomeui dependency
+  patch -Np1 -i ../drop-libgnomeui.patch
+
+  autoreconf -fi
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: etherape/repos/community-i686/drop-libgnomeui.patch (from rev 208171, 
etherape/trunk/drop-libgnomeui.patch)
===
--- community-i686/drop-libgnomeui.patch(rev 0)
+++ community-i686/drop-libgnomeui.patch2017-01-21 00:28:08 UTC (rev 
208172)
@@ -0,0 +1,169 @@
+diff -Naur etherape-0.9.14.orig/configure.in etherape-0.9.14/configure.in
+--- etherape-0.9.14.orig/configure.in  2015-09-20 10:28:27.0 +0200
 etherape-0.9.14/configure.in   2017-01-21 00:46:38.419035434 +0100
+@@ -25,7 +25,7 @@
+ #AC_PROG_INTLTOOL(0.27)
+ 
+ # Checks for libraries.
+-PKG_CHECK_MODULES(ETHERAPE, glib-2.0 libglade-2.0 libgnomeui-2.0)
++PKG_CHECK_MODULES(ETHERAPE, glib-2.0 libglade-2.0 libgnomecanvas-2.0 popt)
+ AC_SUBST(ETHERAPE_CFLAGS)
+ AC_SUBST(ETHERAPE_LIBS)
+ 
+diff -Naur etherape-0.9.14.orig/src/callbacks.c etherape-0.9.14/src/callbacks.c
+--- etherape-0.9.14.orig/src/callbacks.c   2015-07-26 18:01:30.0 
+0200
 etherape-0.9.14/src/callbacks.c2017-01-21 00:32:56.115504072 +0100
+@@ -21,7 +21,8 @@
+ #include 
+ #endif
+ 
+-#include 
++#include 
++#include 
+ #include "appdata.h"
+ #include "callbacks.h"
+ #include "diagram.h"
+diff -Naur etherape-0.9.14.orig/src/capture.c etherape-0.9.14/src/capture.c
+--- etherape-0.9.14.orig/src/capture.c 2015-09-18 23:47:48.0 +0200
 etherape-0.9.14/src/capture.c  2017-01-21 01:19:23.827260356 +0100
+@@ -22,7 +22,8 @@
+ #include 
+ 

[arch-commits] Commit in etherape/trunk (PKGBUILD drop-libgnomeui.patch)

2017-01-20 Thread Balló György
Date: Saturday, January 21, 2017 @ 00:27:46
  Author: bgyorgy
Revision: 208171

upgpkg: etherape 0.9.14-2

Remove deprecated libgnomeui dependency

Added:
  etherape/trunk/drop-libgnomeui.patch
Modified:
  etherape/trunk/PKGBUILD

---+
 PKGBUILD  |   20 -
 drop-libgnomeui.patch |  169 
 2 files changed, 184 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 23:46:34 UTC (rev 208170)
+++ PKGBUILD2017-01-21 00:27:46 UTC (rev 208171)
@@ -5,17 +5,27 @@
 
 pkgname=etherape
 pkgver=0.9.14
-pkgrel=1
+pkgrel=2
 pkgdesc='A graphical network monitor for various OSI layers and protocols'
 arch=('i686' 'x86_64')
 url="http://etherape.sourceforge.net/;
 license=('GPL2')
-depends=('libgnomeui' 'libpcap')
+depends=('libgnomecanvas' 'libpcap' 'popt')
 makedepends=('rarian' 'gnome-doc-utils')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('d28ad8be9c571c204272391316ff261bdb4f1ec3')
-md5sums=('e491597d807d2b27c3fbd09e10bbd448')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
+drop-libgnomeui.patch)
+sha1sums=('d28ad8be9c571c204272391316ff261bdb4f1ec3'
+  'SKIP')
 
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Remove libgnomeui dependency
+  patch -Np1 -i ../drop-libgnomeui.patch
+
+  autoreconf -fi
+}
+
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 

Added: drop-libgnomeui.patch
===
--- drop-libgnomeui.patch   (rev 0)
+++ drop-libgnomeui.patch   2017-01-21 00:27:46 UTC (rev 208171)
@@ -0,0 +1,169 @@
+diff -Naur etherape-0.9.14.orig/configure.in etherape-0.9.14/configure.in
+--- etherape-0.9.14.orig/configure.in  2015-09-20 10:28:27.0 +0200
 etherape-0.9.14/configure.in   2017-01-21 00:46:38.419035434 +0100
+@@ -25,7 +25,7 @@
+ #AC_PROG_INTLTOOL(0.27)
+ 
+ # Checks for libraries.
+-PKG_CHECK_MODULES(ETHERAPE, glib-2.0 libglade-2.0 libgnomeui-2.0)
++PKG_CHECK_MODULES(ETHERAPE, glib-2.0 libglade-2.0 libgnomecanvas-2.0 popt)
+ AC_SUBST(ETHERAPE_CFLAGS)
+ AC_SUBST(ETHERAPE_LIBS)
+ 
+diff -Naur etherape-0.9.14.orig/src/callbacks.c etherape-0.9.14/src/callbacks.c
+--- etherape-0.9.14.orig/src/callbacks.c   2015-07-26 18:01:30.0 
+0200
 etherape-0.9.14/src/callbacks.c2017-01-21 00:32:56.115504072 +0100
+@@ -21,7 +21,8 @@
+ #include 
+ #endif
+ 
+-#include 
++#include 
++#include 
+ #include "appdata.h"
+ #include "callbacks.h"
+ #include "diagram.h"
+diff -Naur etherape-0.9.14.orig/src/capture.c etherape-0.9.14/src/capture.c
+--- etherape-0.9.14.orig/src/capture.c 2015-09-18 23:47:48.0 +0200
 etherape-0.9.14/src/capture.c  2017-01-21 01:19:23.827260356 +0100
+@@ -22,7 +22,8 @@
+ #include 
+ #endif
+ 
+-#include 
++#include 
++#include 
+ #include 
+ #include 
+ #include 
+diff -Naur etherape-0.9.14.orig/src/diagram.c etherape-0.9.14/src/diagram.c
+--- etherape-0.9.14.orig/src/diagram.c 2016-01-25 21:19:16.0 +0100
 etherape-0.9.14/src/diagram.c  2017-01-21 00:33:11.775939150 +0100
+@@ -23,7 +23,8 @@
+ 
+ #include 
+ 
+-#include 
++#include 
++#include 
+ #include 
+ 
+ #include "appdata.h"
+diff -Naur etherape-0.9.14.orig/src/main.c etherape-0.9.14/src/main.c
+--- etherape-0.9.14.orig/src/main.c2016-02-06 08:39:57.0 +0100
 etherape-0.9.14/src/main.c 2017-01-21 01:13:33.093843675 +0100
+@@ -26,8 +26,9 @@
+ #endif
+ #include 
+ #include 
+-#include 
+-#include 
++#include 
++#include 
++#include 
+ #include "appdata.h"
+ #include "ip-cache.h"
+ #include "main.h"
+@@ -53,11 +54,6 @@
+  **/
+ static void free_static_data(void);
+ static void set_debug_level (void);
+-static void session_die (GnomeClient * client, gpointer client_data);
+-static gint save_session (GnomeClient * client, gint phase, 
+-  GnomeSaveStyle save_style, gint is_shutdown, 
+-  GnomeInteractStyle interact_style, gint is_fast, 
+-  gpointer client_data);
+ static void log_handler (gchar * log_domain, GLogLevelFlags mask, 
+  const gchar * message, gpointer user_data);
+ 
+@@ -74,7 +70,6 @@
+ main (int argc, char *argv[])
+ {
+   GtkWidget *widget;
+-  GnomeClient *client;
+   gchar *mode_string = NULL;
+   gchar *cl_filter = NULL;
+   gchar *cl_interface = NULL;
+@@ -143,9 +138,7 @@
+ #else
+   version = g_strdup(VERSION);
+ #endif
+-  gnome_program_init ("EtherApe", version, 
+-  LIBGNOMEUI_MODULE, argc, argv,
+-GNOME_PARAM_POPT_TABLE, optionsTable, GNOME_PARAM_NONE);
++  gtk_init (, );
+   g_free(version);
+ 
+   appdata_init();
+@@ -330,12 +323,6 @@
+   /* Sets controls to the values of 

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

2017-01-20 Thread Alexander Rødseth
Date: Friday, January 20, 2017 @ 23:46:34
  Author: arodseth
Revision: 208170

archrelease: copy trunk to community-x86_64, community-i686

Added:
  midori-gtk2/repos/community-i686/PKGBUILD
(from rev 208169, midori-gtk2/trunk/PKGBUILD)
  midori-gtk2/repos/community-x86_64/PKGBUILD
(from rev 208169, midori-gtk2/trunk/PKGBUILD)
Deleted:
  midori-gtk2/repos/community-i686/PKGBUILD
  midori-gtk2/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   92 
 community-i686/PKGBUILD   |   42 
 community-x86_64/PKGBUILD |   42 
 3 files changed, 92 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 23:46:20 UTC (rev 208169)
+++ community-i686/PKGBUILD 2017-01-20 23:46:34 UTC (rev 208170)
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 139371 2015-09-06 21:13:29Z arodseth $
-# Maintainer: Alexander F Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori-gtk2
-pkgver=0.5.11
-pkgrel=5
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-conflicts=('midori')
-provides=('midori')
-depends=('webkitgtk2' 'libxss' 'gcr' 'zeitgeist')
-makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname/-gtk2}_${pkgver}_all_.tar.bz2;)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "${pkgname/-gtk2}-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "${pkgname/-gtk2}-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori-gtk2/repos/community-i686/PKGBUILD (from rev 208169, 
midori-gtk2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 23:46:34 UTC (rev 208170)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 139371 2015-09-06 21:13:29Z arodseth $
+# Maintainer: Alexander F Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori-gtk2
+pkgver=0.5.11
+pkgrel=6
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+conflicts=('midori')
+provides=('midori')
+depends=('webkitgtk2' 'libxss' 'gcr')
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname/-gtk2}_${pkgver}_all_.tar.bz2;)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "${pkgname/-gtk2}-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DUSE_ZEITGEIST=off \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "${pkgname/-gtk2}-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-20 23:46:20 UTC (rev 208169)
+++ community-x86_64/PKGBUILD   2017-01-20 23:46:34 UTC (rev 208170)
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 139371 2015-09-06 21:13:29Z arodseth $
-# Maintainer: Alexander F Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori-gtk2
-pkgver=0.5.11
-pkgrel=5
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-conflicts=('midori')
-provides=('midori')

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

2017-01-20 Thread Alexander Rødseth
Date: Friday, January 20, 2017 @ 23:46:20
  Author: arodseth
Revision: 208169

upgpkg: midori-gtk2 0.5.11-6

Modified:
  midori-gtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 23:44:15 UTC (rev 208168)
+++ PKGBUILD2017-01-20 23:46:20 UTC (rev 208169)
@@ -8,7 +8,7 @@
 
 pkgname=midori-gtk2
 pkgver=0.5.11
-pkgrel=5
+pkgrel=6
 pkgdesc='Lightweight web browser (GTK2)'
 arch=('x86_64' 'i686')
 url='http://www.midori-browser.org/'
@@ -15,7 +15,7 @@
 license=('LGPL2.1')
 conflicts=('midori')
 provides=('midori')
-depends=('webkitgtk2' 'libxss' 'gcr' 'zeitgeist')
+depends=('webkitgtk2' 'libxss' 'gcr')
 makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
 optdepends=('gst-plugins-base: HTML5 OGG videos support'
 'gst-plugins-good: HTML5 H264 and WebM videos support'
@@ -30,7 +30,11 @@
 
   mkdir -p build
   cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
+  cmake .. \
+-DUSE_ZEITGEIST=off \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-G Ninja
   ninja
 }
 


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

2017-01-20 Thread Alexander Rødseth
Date: Friday, January 20, 2017 @ 23:44:15
  Author: arodseth
Revision: 208168

archrelease: copy trunk to community-x86_64, community-i686

Added:
  elfkickers/repos/community-i686/PKGBUILD
(from rev 208167, elfkickers/trunk/PKGBUILD)
  elfkickers/repos/community-x86_64/PKGBUILD
(from rev 208167, elfkickers/trunk/PKGBUILD)
Deleted:
  elfkickers/repos/community-i686/PKGBUILD
  elfkickers/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   48 
 community-i686/PKGBUILD   |   24 --
 community-x86_64/PKGBUILD |   24 --
 3 files changed, 48 insertions(+), 48 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 23:42:45 UTC (rev 208167)
+++ community-i686/PKGBUILD 2017-01-20 23:44:15 UTC (rev 208168)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Mikko Sysikaski 
-pkgname=elfkickers
-pkgver=3.0a
-pkgrel=1
-pkgdesc='Collection of ELF utilities (includes sstrip)'
-arch=('x86_64' 'i686')
-license=('GPL')
-source=("http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-$pkgver.tar.gz;)
-url='http://www.muppetlabs.com/~breadbox/software/elfkickers.html'
-sha256sums=('c3429957142169c21ff550e0c06bbb0d48bb76437c4ccbc67164bf56b6e9774f')
-
-build() {
-  make -C "ELFkickers-$pkgver"
-}
-
-package() {
-  install -d "$pkgdir/usr/bin"
-  install -d "$pkgdir/usr/share/man/man1"
-  make -C "ELFkickers-$pkgver" prefix="$pkgdir/usr" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: elfkickers/repos/community-i686/PKGBUILD (from rev 208167, 
elfkickers/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 23:44:15 UTC (rev 208168)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Mikko Sysikaski 
+
+pkgname=elfkickers
+pkgver=3.1
+pkgrel=1
+pkgdesc='Collection of ELF utilities (includes sstrip)'
+arch=('x86_64' 'i686')
+license=('GPL')
+source=("http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-$pkgver.tar.gz;)
+url='http://www.muppetlabs.com/~breadbox/software/elfkickers.html'
+sha256sums=('6d663fb06dd723a078282937052368498e3860d3c42f0d765579d496e5f51a58')
+
+build() {
+  make -C "ELFkickers-$pkgver" -j1
+}
+
+package() {
+  install -d "$pkgdir/usr/"{bin,share/man/man1}
+  make -C "ELFkickers-$pkgver" prefix="$pkgdir/usr" install -j1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-20 23:42:45 UTC (rev 208167)
+++ community-x86_64/PKGBUILD   2017-01-20 23:44:15 UTC (rev 208168)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Mikko Sysikaski 
-pkgname=elfkickers
-pkgver=3.0a
-pkgrel=1
-pkgdesc='Collection of ELF utilities (includes sstrip)'
-arch=('x86_64' 'i686')
-license=('GPL')
-source=("http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-$pkgver.tar.gz;)
-url='http://www.muppetlabs.com/~breadbox/software/elfkickers.html'
-sha256sums=('c3429957142169c21ff550e0c06bbb0d48bb76437c4ccbc67164bf56b6e9774f')
-
-build() {
-  make -C "ELFkickers-$pkgver"
-}
-
-package() {
-  install -d "$pkgdir/usr/bin"
-  install -d "$pkgdir/usr/share/man/man1"
-  make -C "ELFkickers-$pkgver" prefix="$pkgdir/usr" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: elfkickers/repos/community-x86_64/PKGBUILD (from rev 208167, 
elfkickers/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-20 23:44:15 UTC (rev 208168)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Mikko Sysikaski 
+
+pkgname=elfkickers
+pkgver=3.1
+pkgrel=1
+pkgdesc='Collection of ELF utilities (includes sstrip)'
+arch=('x86_64' 'i686')
+license=('GPL')
+source=("http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-$pkgver.tar.gz;)
+url='http://www.muppetlabs.com/~breadbox/software/elfkickers.html'
+sha256sums=('6d663fb06dd723a078282937052368498e3860d3c42f0d765579d496e5f51a58')
+
+build() {
+  make -C "ELFkickers-$pkgver" -j1
+}
+
+package() {
+  install -d "$pkgdir/usr/"{bin,share/man/man1}
+  make -C "ELFkickers-$pkgver" prefix="$pkgdir/usr" install -j1
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-01-20 Thread Alexander Rødseth
Date: Friday, January 20, 2017 @ 23:42:45
  Author: arodseth
Revision: 208167

upgpkg: elfkickers 3.1-1

Modified:
  elfkickers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 23:09:35 UTC (rev 208166)
+++ PKGBUILD2017-01-20 23:42:45 UTC (rev 208167)
@@ -1,9 +1,9 @@
 # $Id$
-# Maintainer: Alexander Rødseth 
+# Maintainer: Alexander F Rødseth 
 # Contributor: Mikko Sysikaski 
 
 pkgname=elfkickers
-pkgver=3.0a
+pkgver=3.1
 pkgrel=1
 pkgdesc='Collection of ELF utilities (includes sstrip)'
 arch=('x86_64' 'i686')
@@ -10,16 +10,15 @@
 license=('GPL')
 
source=("http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-$pkgver.tar.gz;)
 url='http://www.muppetlabs.com/~breadbox/software/elfkickers.html'
-sha256sums=('c3429957142169c21ff550e0c06bbb0d48bb76437c4ccbc67164bf56b6e9774f')
+sha256sums=('6d663fb06dd723a078282937052368498e3860d3c42f0d765579d496e5f51a58')
 
 build() {
-  make -j1 -C "ELFkickers-$pkgver"
+  make -C "ELFkickers-$pkgver" -j1
 }
 
 package() {
-  install -d "$pkgdir/usr/bin"
-  install -d "$pkgdir/usr/share/man/man1"
-  make -j1 -C "ELFkickers-$pkgver" prefix="$pkgdir/usr" install
+  install -d "$pkgdir/usr/"{bin,share/man/man1}
+  make -C "ELFkickers-$pkgver" prefix="$pkgdir/usr" install -j1
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in gnome-hearts/trunk (PKGBUILD drop-libgnomeui.patch)

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 23:09:29
  Author: bgyorgy
Revision: 208165

upgpkg: gnome-hearts 0.3.1-3

Remove deprecated libgnomeui dependency

Added:
  gnome-hearts/trunk/drop-libgnomeui.patch
Modified:
  gnome-hearts/trunk/PKGBUILD

---+
 PKGBUILD  |   18 ++---
 drop-libgnomeui.patch |   64 
 2 files changed, 78 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 22:35:30 UTC (rev 208164)
+++ PKGBUILD2017-01-20 23:09:29 UTC (rev 208165)
@@ -4,17 +4,27 @@
 
 pkgname=gnome-hearts
 pkgver=0.3.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A card game for GNOME"
 arch=('i686' 'x86_64')
 url="http://www.jejik.com/gnome-hearts/;
 license=('GPL')
-depends=('python2' 'libgnomeui' 'libglade' 'desktop-file-utils')
+depends=('python2' 'libglade')
 makedepends=('intltool' 'rarian')
-source=(http://www.jejik.com/files/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('4b9477e8bb2d48a86021ae512a713fd405a96d52cf711ff549cfe0d119bf56b3')
+source=(http://www.jejik.com/files/$pkgname/$pkgname-$pkgver.tar.gz
+drop-libgnomeui.patch)
+sha256sums=('4b9477e8bb2d48a86021ae512a713fd405a96d52cf711ff549cfe0d119bf56b3'
+'cc2743c2efbabdc0e40c404ce3d6155d85a959474401823d075bcbb15dae424e')
 
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
 
+  # Remove libgnomeui dependency
+  patch -Np1 -i ../drop-libgnomeui.patch
+
+  autoreconf -fi
+}
+
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 

Added: drop-libgnomeui.patch
===
--- drop-libgnomeui.patch   (rev 0)
+++ drop-libgnomeui.patch   2017-01-20 23:09:29 UTC (rev 208165)
@@ -0,0 +1,64 @@
+diff -Naur gnome-hearts-0.3.1.orig/configure.in gnome-hearts-0.3.1/configure.in
+--- gnome-hearts-0.3.1.orig/configure.in   2013-06-09 15:05:11.0 
+0200
 gnome-hearts-0.3.1/configure.in2017-01-20 23:20:35.677689797 +0100
+@@ -23,7 +23,7 @@
+ fi
+ 
+ # Check for libraries. gmodule is required to make sure --export-dynamic is 
used and glade works
+-PKG_CHECK_MODULES(GNOME_HEARTS, [libgnomeui-2.0 gtk+-2.0 libglade-2.0 
glib-2.0 gmodule-2.0])
++PKG_CHECK_MODULES(GNOME_HEARTS, [gtk+-2.0 libglade-2.0 glib-2.0 gmodule-2.0])
+ AC_SUBST(GNOME_HEARTS_CFLAGS)
+ AC_SUBST(GNOME_HEARTS_LIBS)
+ 
+diff -Naur gnome-hearts-0.3.1.orig/src/events.c gnome-hearts-0.3.1/src/events.c
+--- gnome-hearts-0.3.1.orig/src/events.c   2013-06-09 15:01:08.0 
+0200
 gnome-hearts-0.3.1/src/events.c2017-01-20 23:35:17.428651148 +0100
+@@ -71,13 +71,13 @@
+ /* Open the help file */
+ void on_help(GtkWidget *widget, gpointer data)
+ {
+-  gnome_help_display("gnome-hearts.xml", NULL, NULL);
++  gtk_show_uri(NULL, "ghelp:gnome-hearts", GDK_CURRENT_TIME, NULL);
+ }
+ 
+ /* Open the preferences help file */
+ void on_preferences_help(GtkWidget *widget, gpointer data)
+ {
+-  gnome_help_display("gnome-hearts.xml", "hearts-prefs", NULL);
++  gtk_show_uri(NULL, "ghelp:gnome-hearts?hearts-prefs", GDK_CURRENT_TIME, 
NULL);
+ }
+ 
+ /* About menu item */
+diff -Naur gnome-hearts-0.3.1.orig/src/hearts.c gnome-hearts-0.3.1/src/hearts.c
+--- gnome-hearts-0.3.1.orig/src/hearts.c   2013-06-09 15:01:08.0 
+0200
 gnome-hearts-0.3.1/src/hearts.c2017-01-20 23:20:21.447210208 +0100
+@@ -534,15 +534,11 @@
+   setlocale(LC_ALL, "");
+   #endif
+ 
+-  /* Initialize GNOME */
++  /* Initialize GTK+ */
+   GOptionContext *option_context = g_option_context_new(_("- Play a game 
of hearts"));
+   g_option_context_add_main_entries(option_context, option_entries, 
GETTEXT_PACKAGE);
+ 
+-  gnome_program_init(PACKAGE, VERSION, LIBGNOMEUI_MODULE,
+-  argc, argv,
+-  GNOME_PARAM_GOPTION_CONTEXT, option_context,
+-  GNOME_PARAM_APP_DATADIR, PACKAGE_DATA_DIR,
+-  GNOME_PARAM_NONE);
++  gtk_init(, );
+   
+   /* init the game's global variables */
+   game_score_labels = NULL;
+diff -Naur gnome-hearts-0.3.1.orig/src/hearts.h gnome-hearts-0.3.1/src/hearts.h
+--- gnome-hearts-0.3.1.orig/src/hearts.h   2013-06-09 15:01:08.0 
+0200
 gnome-hearts-0.3.1/src/hearts.h2017-01-20 23:22:33.691604109 +0100
+@@ -26,7 +26,7 @@
+ /* headers */
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #include "cards.h"
+ #include "cfg.h"


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

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 23:09:35
  Author: bgyorgy
Revision: 208166

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gnome-hearts/repos/community-i686/PKGBUILD
(from rev 208165, gnome-hearts/trunk/PKGBUILD)
  gnome-hearts/repos/community-i686/drop-libgnomeui.patch
(from rev 208165, gnome-hearts/trunk/drop-libgnomeui.patch)
  gnome-hearts/repos/community-x86_64/PKGBUILD
(from rev 208165, gnome-hearts/trunk/PKGBUILD)
  gnome-hearts/repos/community-x86_64/drop-libgnomeui.patch
(from rev 208165, gnome-hearts/trunk/drop-libgnomeui.patch)
Deleted:
  gnome-hearts/repos/community-i686/PKGBUILD
  gnome-hearts/repos/community-x86_64/PKGBUILD

+
 /PKGBUILD  |   82 +++
 community-i686/PKGBUILD|   31 ---
 community-i686/drop-libgnomeui.patch   |   64 
 community-x86_64/PKGBUILD  |   31 ---
 community-x86_64/drop-libgnomeui.patch |   64 
 5 files changed, 210 insertions(+), 62 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 23:09:29 UTC (rev 208165)
+++ community-i686/PKGBUILD 2017-01-20 23:09:35 UTC (rev 208166)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Neil Darlow 
-
-pkgname=gnome-hearts
-pkgver=0.3.1
-pkgrel=2
-pkgdesc="A card game for GNOME"
-arch=('i686' 'x86_64')
-url="http://www.jejik.com/gnome-hearts/;
-license=('GPL')
-depends=('python2' 'libgnomeui' 'libglade' 'desktop-file-utils')
-makedepends=('intltool' 'rarian')
-source=(http://www.jejik.com/files/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('4b9477e8bb2d48a86021ae512a713fd405a96d52cf711ff549cfe0d119bf56b3')
-
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-hearts/repos/community-i686/PKGBUILD (from rev 208165, 
gnome-hearts/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 23:09:35 UTC (rev 208166)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Neil Darlow 
+
+pkgname=gnome-hearts
+pkgver=0.3.1
+pkgrel=3
+pkgdesc="A card game for GNOME"
+arch=('i686' 'x86_64')
+url="http://www.jejik.com/gnome-hearts/;
+license=('GPL')
+depends=('python2' 'libglade')
+makedepends=('intltool' 'rarian')
+source=(http://www.jejik.com/files/$pkgname/$pkgname-$pkgver.tar.gz
+drop-libgnomeui.patch)
+sha256sums=('4b9477e8bb2d48a86021ae512a713fd405a96d52cf711ff549cfe0d119bf56b3'
+'cc2743c2efbabdc0e40c404ce3d6155d85a959474401823d075bcbb15dae424e')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # Remove libgnomeui dependency
+  patch -Np1 -i ../drop-libgnomeui.patch
+
+  autoreconf -fi
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gnome-hearts/repos/community-i686/drop-libgnomeui.patch (from rev 
208165, gnome-hearts/trunk/drop-libgnomeui.patch)
===
--- community-i686/drop-libgnomeui.patch(rev 0)
+++ community-i686/drop-libgnomeui.patch2017-01-20 23:09:35 UTC (rev 
208166)
@@ -0,0 +1,64 @@
+diff -Naur gnome-hearts-0.3.1.orig/configure.in gnome-hearts-0.3.1/configure.in
+--- gnome-hearts-0.3.1.orig/configure.in   2013-06-09 15:05:11.0 
+0200
 gnome-hearts-0.3.1/configure.in2017-01-20 23:20:35.677689797 +0100
+@@ -23,7 +23,7 @@
+ fi
+ 
+ # Check for libraries. gmodule is required to make sure --export-dynamic is 
used and glade works
+-PKG_CHECK_MODULES(GNOME_HEARTS, [libgnomeui-2.0 gtk+-2.0 libglade-2.0 
glib-2.0 gmodule-2.0])
++PKG_CHECK_MODULES(GNOME_HEARTS, [gtk+-2.0 libglade-2.0 glib-2.0 gmodule-2.0])
+ AC_SUBST(GNOME_HEARTS_CFLAGS)
+ AC_SUBST(GNOME_HEARTS_LIBS)
+ 
+diff -Naur gnome-hearts-0.3.1.orig/src/events.c gnome-hearts-0.3.1/src/events.c
+--- gnome-hearts-0.3.1.orig/src/events.c   2013-06-09 15:01:08.0 
+0200
 gnome-hearts-0.3.1/src/events.c2017-01-20 23:35:17.428651148 +0100
+@@ -71,13 +71,13 @@
+ /* Open the help file */
+ void on_help(GtkWidget *widget, gpointer data)
+ {
+-  gnome_help_display("gnome-hearts.xml", NULL, NULL);
++  gtk_show_uri(NULL, "ghelp:gnome-hearts", GDK_CURRENT_TIME, NULL);
+ }
+ 
+ /* Open the preferences help file */
+ void on_preferences_help(GtkWidget *widget, gpointer data)
+ {
+-  

[arch-commits] Commit in (perl-gtk2-sexy)

2017-01-20 Thread Jan de Groot
Date: Friday, January 20, 2017 @ 22:34:54
  Author: jgc
Revision: 208162

Remove, no longer needed

Deleted:
  perl-gtk2-sexy/


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

2017-01-20 Thread Dave Reisner
Date: Friday, January 20, 2017 @ 22:35:14
  Author: dreisner
Revision: 208163

upgpkg: lib32-util-linux 2.29.1-1

Modified:
  lib32-util-linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 22:34:54 UTC (rev 208162)
+++ PKGBUILD2017-01-20 22:35:14 UTC (rev 208163)
@@ -4,8 +4,8 @@
 
 _pkgbasename=util-linux
 pkgname=lib32-$_pkgbasename
-_pkgmajor=2.28
-pkgver=${_pkgmajor}.2
+_pkgmajor=2.29
+pkgver=${_pkgmajor}.1
 pkgrel=1
 pkgdesc="Miscellaneous system utilities for Linux (32-bit)"
 url='http://www.kernel.org/pub/linux/utils/util-linux/'
@@ -17,7 +17,7 @@
 options=('!libtool' '!emptydirs')
 validpgpkeys=('B0C64D14301CC6EFAEDF60E4E4B71D5EEC39C284')  # Karel Zak
 
source=("https://www.kernel.org/pub/linux/utils/util-linux/v$_pkgmajor/$_pkgbasename-$pkgver.tar."{xz,sign})
-md5sums=('46a232a37bce45371a86d19300edc47a'
+md5sums=('0cbb6d16ab9c5736e5649ef1264bee6e'
  'SKIP')
 
 build() {


[arch-commits] Commit in lib32-util-linux/repos (2 files)

2017-01-20 Thread Dave Reisner
Date: Friday, January 20, 2017 @ 22:35:30
  Author: dreisner
Revision: 208164

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-util-linux/repos/multilib-testing-x86_64/
  lib32-util-linux/repos/multilib-testing-x86_64/PKGBUILD
(from rev 208163, lib32-util-linux/trunk/PKGBUILD)

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

Copied: lib32-util-linux/repos/multilib-testing-x86_64/PKGBUILD (from rev 
208163, lib32-util-linux/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2017-01-20 22:35:30 UTC (rev 208164)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: judd 
+
+_pkgbasename=util-linux
+pkgname=lib32-$_pkgbasename
+_pkgmajor=2.29
+pkgver=${_pkgmajor}.1
+pkgrel=1
+pkgdesc="Miscellaneous system utilities for Linux (32-bit)"
+url='http://www.kernel.org/pub/linux/utils/util-linux/'
+arch=('x86_64')
+depends=('lib32-glibc' "$_pkgbasename")
+provides=('libuuid.so' 'libblkid.so' 'libfdisk.so' 'libmount.so' 
'libsmartcols.so')
+makedepends=('gcc-multilib')
+license=('GPL2')
+options=('!libtool' '!emptydirs')
+validpgpkeys=('B0C64D14301CC6EFAEDF60E4E4B71D5EEC39C284')  # Karel Zak
+source=("https://www.kernel.org/pub/linux/utils/util-linux/v$_pkgmajor/$_pkgbasename-$pkgver.tar."{xz,sign})
+md5sums=('0cbb6d16ab9c5736e5649ef1264bee6e'
+ 'SKIP')
+
+build() {
+  cd "$_pkgbasename-$pkgver"
+
+  ./configure \
+  CC="${CC:-cc} -m32" \
+  PKG_CONFIG_PATH="/usr/lib32/pkgconfig" \
+  --libdir=/usr/lib32
+
+  make lib{uuid,blkid,fdisk,mount,smartcols}.la
+}
+
+package() {
+  make -C "$_pkgbasename-$pkgver" \
+DESTDIR="$pkgdir" \
+install-usrlib_execLTLIBRARIES \
+install-pkgconfigDATA
+}


[arch-commits] Commit in (libsexy)

2017-01-20 Thread Jan de Groot
Date: Friday, January 20, 2017 @ 22:34:22
  Author: jgc
Revision: 287050

Remove, no longer needed

Deleted:
  libsexy/


[arch-commits] Commit in (gnome-vfsmm)

2017-01-20 Thread Jan de Groot
Date: Friday, January 20, 2017 @ 22:32:21
  Author: jgc
Revision: 287047

Remove, no longer needed

Deleted:
  gnome-vfsmm/


[arch-commits] Commit in (libgnomemm)

2017-01-20 Thread Jan de Groot
Date: Friday, January 20, 2017 @ 22:29:20
  Author: jgc
Revision: 287044

Remove, no longer needed

Deleted:
  libgnomemm/


[arch-commits] Commit in (libgnomeuimm)

2017-01-20 Thread Jan de Groot
Date: Friday, January 20, 2017 @ 22:28:16
  Author: jgc
Revision: 287041

Remove, no longer needed

Deleted:
  libgnomeuimm/


[arch-commits] Commit in cdrdao/repos (20 files)

2017-01-20 Thread Jan de Groot
Date: Friday, January 20, 2017 @ 22:26:28
  Author: jgc
Revision: 287038

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  cdrdao/repos/extra-i686/PKGBUILD
(from rev 287037, cdrdao/trunk/PKGBUILD)
  cdrdao/repos/extra-i686/cdrdao-1.2.3-autoconf-update.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-autoconf-update.patch)
  cdrdao/repos/extra-i686/cdrdao-1.2.3-format_security.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-format_security.patch)
  cdrdao/repos/extra-i686/cdrdao-1.2.3-k3b.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-k3b.patch)
  cdrdao/repos/extra-i686/cdrdao-1.2.3-narrowing.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-narrowing.patch)
  cdrdao/repos/extra-i686/cdrdao-1.2.3-stat.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-stat.patch)
  cdrdao/repos/extra-x86_64/PKGBUILD
(from rev 287037, cdrdao/trunk/PKGBUILD)
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-autoconf-update.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-autoconf-update.patch)
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-format_security.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-format_security.patch)
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-k3b.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-k3b.patch)
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-narrowing.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-narrowing.patch)
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-stat.patch
(from rev 287037, cdrdao/trunk/cdrdao-1.2.3-stat.patch)
Deleted:
  cdrdao/repos/extra-i686/PKGBUILD
  cdrdao/repos/extra-i686/cdrdao-1.2.3-autoconf-update.patch
  cdrdao/repos/extra-i686/cdrdao-1.2.3-k3b.patch
  cdrdao/repos/extra-i686/cdrdao-1.2.3-stat.patch
  cdrdao/repos/extra-x86_64/PKGBUILD
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-autoconf-update.patch
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-k3b.patch
  cdrdao/repos/extra-x86_64/cdrdao-1.2.3-stat.patch

-+
 /PKGBUILD   |  100 +
 /cdrdao-1.2.3-autoconf-update.patch |  104 ++
 /cdrdao-1.2.3-k3b.patch |   22 
 /cdrdao-1.2.3-stat.patch|   26 +
 extra-i686/PKGBUILD |   65 -
 extra-i686/cdrdao-1.2.3-autoconf-update.patch   |   52 ---
 extra-i686/cdrdao-1.2.3-format_security.patch   |   57 
 extra-i686/cdrdao-1.2.3-k3b.patch   |   11 --
 extra-i686/cdrdao-1.2.3-narrowing.patch |   24 +
 extra-i686/cdrdao-1.2.3-stat.patch  |   13 --
 extra-x86_64/PKGBUILD   |   65 -
 extra-x86_64/cdrdao-1.2.3-autoconf-update.patch |   52 ---
 extra-x86_64/cdrdao-1.2.3-format_security.patch |   57 
 extra-x86_64/cdrdao-1.2.3-k3b.patch |   11 --
 extra-x86_64/cdrdao-1.2.3-narrowing.patch   |   24 +
 extra-x86_64/cdrdao-1.2.3-stat.patch|   13 --
 16 files changed, 414 insertions(+), 282 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-20 22:26:21 UTC (rev 287037)
+++ extra-i686/PKGBUILD 2017-01-20 22:26:28 UTC (rev 287038)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Daniel J Griffiths 
-# Contributor: Andrea Scarpino 
-# Contributor: dorphell 
-
-pkgbase=('cdrdao')
-pkgname=('cdrdao' 'gcdmaster')
-pkgver=1.2.3
-pkgrel=9
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://cdrdao.sourceforge.net/;
-makedepends=('gcc-libs' 'lame' 'libmad' 'libvorbis' 'libao' 'libgnomeuimm')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
-'cdrdao-1.2.3-autoconf-update.patch'
-'cdrdao-1.2.3-k3b.patch'
-'cdrdao-1.2.3-stat.patch')
-md5sums=('8d15ba6280bb7ba2f4d6be31d28b3c0c'
- '8e53dfc174f7c0882194caa05e68b85e'
- '696f6ca01e1eeb9b6a5be88e535d9398'
- '0fce05542ebad283f36fa1c4d62992a0')
-
-prepare() {
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-
-   patch -Np1 -i "${srcdir}/cdrdao-1.2.3-autoconf-update.patch"
-   patch -Np1 -i "${srcdir}/cdrdao-1.2.3-k3b.patch"
-   patch -Np1 -i "${srcdir}/cdrdao-1.2.3-stat.patch"
-
-   find -name '*.h' -exec sed -i '/sigc++\/object.h/d' {} +
-}
-
-build() {
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-
-   CXXFLAGS+=' -std=c++11 -Wno-narrowing'
-   ./configure --prefix=/usr \
-   --mandir=/usr/share/man \
-   --sysconfdir=/etc \
-   --with-xdao --with-lame \
-   --with-ogg-support --with-mp3-support
-   make
-}
-
-package_cdrdao() {
-   pkgdesc='Records audio/data CD-Rs in disk-at-once (DAO) mode'
-   depends=('gcc-libs' 'lame' 'libmad' 'libvorbis' 'libao')
-
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-   for dir in trackdb utils paranoia 

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

2017-01-20 Thread Jan de Groot
Date: Friday, January 20, 2017 @ 22:26:21
  Author: jgc
Revision: 287037

upgpkg: cdrdao 1.2.3-10

Drop gcdmaster, add patches from fedora to fix things instead of working them 
around using CXXFLAGS

Added:
  cdrdao/trunk/cdrdao-1.2.3-format_security.patch
  cdrdao/trunk/cdrdao-1.2.3-narrowing.patch
Modified:
  cdrdao/trunk/PKGBUILD

+
 PKGBUILD   |   81 ++-
 cdrdao-1.2.3-format_security.patch |   57 
 cdrdao-1.2.3-narrowing.patch   |   24 ++
 3 files changed, 114 insertions(+), 48 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 21:14:47 UTC (rev 287036)
+++ PKGBUILD2017-01-20 22:26:21 UTC (rev 287037)
@@ -3,63 +3,48 @@
 # Contributor: Andrea Scarpino 
 # Contributor: dorphell 
 
-pkgbase=('cdrdao')
-pkgname=('cdrdao' 'gcdmaster')
+pkgname=cdrdao
 pkgver=1.2.3
-pkgrel=9
+pkgrel=10
 arch=('i686' 'x86_64')
 license=('GPL')
 url="http://cdrdao.sourceforge.net/;
-makedepends=('gcc-libs' 'lame' 'libmad' 'libvorbis' 'libao' 'libgnomeuimm')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
-'cdrdao-1.2.3-autoconf-update.patch'
-'cdrdao-1.2.3-k3b.patch'
-'cdrdao-1.2.3-stat.patch')
-md5sums=('8d15ba6280bb7ba2f4d6be31d28b3c0c'
- '8e53dfc174f7c0882194caa05e68b85e'
- '696f6ca01e1eeb9b6a5be88e535d9398'
- '0fce05542ebad283f36fa1c4d62992a0')
+pkgdesc='Records audio/data CD-Rs in disk-at-once (DAO) mode'
+depends=('gcc-libs' 'lame' 'libmad' 'libvorbis' 'libao')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+cdrdao-1.2.3-autoconf-update.patch
+cdrdao-1.2.3-k3b.patch
+cdrdao-1.2.3-stat.patch
+cdrdao-1.2.3-format_security.patch
+cdrdao-1.2.3-narrowing.patch)
+sha256sums=('8193cb8fa6998ac362c55807e89ad0b3c63edc6b01afaeb3d5042519527fb75e'
+'2f4f54ed23b4f3b22fd64a2a3d4fa67ff186b3865213cba3fbe81ed9f6c42c74'
+'6eddd7c79f548b3ad1d8d4ce23367bcae3cd6dee74f0aeb6439758d6599090e0'
+'ca89b7c56a376d5a9574c5757f0d372236a895334f81867ff5e1703806565bbc'
+'7909a3ad290d45fd2db5059025bf219be7b77af60050a409a3dc2a41a4859fe3'
+'6222e307ebabe5149f88d64ef2cee7bf2a44588b9022babb7071bb87c224cae6')
 
 prepare() {
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-
-   patch -Np1 -i "${srcdir}/cdrdao-1.2.3-autoconf-update.patch"
-   patch -Np1 -i "${srcdir}/cdrdao-1.2.3-k3b.patch"
-   patch -Np1 -i "${srcdir}/cdrdao-1.2.3-stat.patch"
-
-   find -name '*.h' -exec sed -i '/sigc++\/object.h/d' {} +
+  cd ${pkgname}-${pkgver}
+  
+  patch -Np1 -i ../cdrdao-1.2.3-autoconf-update.patch
+  patch -Np1 -i ../cdrdao-1.2.3-k3b.patch
+  patch -Np1 -i ../cdrdao-1.2.3-stat.patch
+  patch -Np1 -i ../cdrdao-1.2.3-format_security.patch
+  patch -Np1 -i ../cdrdao-1.2.3-narrowing.patch
 }
 
 build() {
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-
-   CXXFLAGS+=' -std=c++11 -Wno-narrowing'
-   ./configure --prefix=/usr \
-   --mandir=/usr/share/man \
-   --sysconfdir=/etc \
-   --with-xdao --with-lame \
-   --with-ogg-support --with-mp3-support
-   make
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --mandir=/usr/share/man \
+   --sysconfdir=/etc \
+   --without-xdao --with-lame \
+   --with-ogg-support --with-mp3-support
+  make
 }
 
-package_cdrdao() {
-   pkgdesc='Records audio/data CD-Rs in disk-at-once (DAO) mode'
-   depends=('gcc-libs' 'lame' 'libmad' 'libvorbis' 'libao')
-
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-   for dir in trackdb utils paranoia dao
-   do
-make -C ${dir} DESTDIR="${pkgdir}" install
-   done
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
 }
-
-package_gcdmaster() {
-   pkgdesc='GUI frontend for creating audio CDs using cdrdao'
-   depends=('libgnomeuimm' "cdrdao=${pkgver}")
-
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-   make -C xdao GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 
DESTDIR="${pkgdir}" install
-
-   mv "${pkgdir}/etc/gconf" "${pkgdir}/usr/share/"
-   rmdir "${pkgdir}/etc"
-}

Added: cdrdao-1.2.3-format_security.patch
===
--- cdrdao-1.2.3-format_security.patch  (rev 0)
+++ cdrdao-1.2.3-format_security.patch  2017-01-20 22:26:21 UTC (rev 287037)
@@ -0,0 +1,57 @@
+diff -up wrk/pccts/antlr/fset2.c.wrk wrk/pccts/antlr/fset2.c
+--- wrk/pccts/antlr/fset2.c.wrk2013-12-05 11:33:33.561962126 +0100
 wrk/pccts/antlr/fset2.c2013-12-05 11:33:52.009105807 +0100
+@@ -2210,7 +2210,7 @@ void MR_backTraceReport()
+   if (p->ntype != nToken) continue;
+   tn=(TokNode *)p;
+   if 

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

2017-01-20 Thread Andreas Radke
Date: Friday, January 20, 2017 @ 21:14:35
  Author: andyrtr
Revision: 287035

upgpkg: xdg-utils 1.1.1-5

drop dead libgnome optdep

Modified:
  xdg-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 20:35:10 UTC (rev 287034)
+++ PKGBUILD2017-01-20 21:14:35 UTC (rev 287035)
@@ -4,7 +4,7 @@
 
 pkgname=xdg-utils
 pkgver=1.1.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Command line tools that assist applications with a variety of desktop 
integration tasks"
 arch=('any')
 url="https://www.freedesktop.org/wiki/Software/xdg-utils/;
@@ -12,7 +12,6 @@
 depends=('sh' 'xorg-xset') # xset needed inside xdg-screensaver
 makedepends=('docbook-xsl' 'lynx' 'xmlto' 'git')
 optdepends=('kde-cli-tools: for KDE Plasma5 support in xdg-open'
-'libgnome: for GNOME support in xdg-open'
 'exo: for Xfce support in xdg-open'
 'xorg-xprop: for Xfce support in xdg-open'
 'pcmanfm: for LXDE support in xdg-open'


[arch-commits] Commit in xdg-utils/repos/extra-any (4 files)

2017-01-20 Thread Andreas Radke
Date: Friday, January 20, 2017 @ 21:14:47
  Author: andyrtr
Revision: 287036

archrelease: copy trunk to extra-any

Added:
  xdg-utils/repos/extra-any/PKGBUILD
(from rev 287035, xdg-utils/trunk/PKGBUILD)
  xdg-utils/repos/extra-any/support_for_KDE_Frameworks_5.6.diff
(from rev 287035, xdg-utils/trunk/support_for_KDE_Frameworks_5.6.diff)
Deleted:
  xdg-utils/repos/extra-any/PKGBUILD
  xdg-utils/repos/extra-any/support_for_KDE_Frameworks_5.6.diff

-+
 PKGBUILD|  101 --
 support_for_KDE_Frameworks_5.6.diff |   86 ++--
 2 files changed, 93 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-20 21:14:35 UTC (rev 287035)
+++ PKGBUILD2017-01-20 21:14:47 UTC (rev 287036)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=xdg-utils
-pkgver=1.1.1
-pkgrel=4
-pkgdesc="Command line tools that assist applications with a variety of desktop 
integration tasks"
-arch=('any')
-url="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-license=('MIT')
-depends=('sh' 'xorg-xset') # xset needed inside xdg-screensaver
-makedepends=('docbook-xsl' 'lynx' 'xmlto' 'git')
-optdepends=('kde-cli-tools: for KDE Plasma5 support in xdg-open'
-'libgnome: for GNOME support in xdg-open'
-'exo: for Xfce support in xdg-open'
-'xorg-xprop: for Xfce support in xdg-open'
-'pcmanfm: for LXDE support in xdg-open'
-'perl-file-mimeinfo: for generic support in xdg-open'
-'perl-net-dbus: Perl extension to dbus used in xdg-screensaver'
-'perl-x11-protocol: Perl X11 protocol used in xdg-screensaver')
-source=(https://portland.freedesktop.org/download/$pkgname-$pkgver.tar.gz{,.asc}
-support_for_KDE_Frameworks_5.6.diff)
-md5sums=('2d0aec6037769a5f138ff404b1bb4b15'
- 'SKIP'
- 'fc0a612362e00cc091d2c1ebbfbfc500')
-validpgpkeys=('8B75CA7811367175D05F3B03C43570F80CC295E6') # "Per Olofsson 
"
-
-prepare() {
-   cd $pkgname-$pkgver
-   # fix wrong hardcoded chromium binary name - FS#50184
-   sed -i "s:chromium-browser:chromium:" scripts/xdg-open.in
-   
-   # fix KDE support, FS#48668
-   patch -Np1 -i $srcdir/support_for_KDE_Frameworks_5.6.diff
-}
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR="${pkgdir}" install
-   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   
-   # install empty directory to prevent xdg-desktop-menu install *.desktop 
to fail, see FS#33316
-   install -dm755 $pkgdir/usr/share/desktop-directories
-}

Copied: xdg-utils/repos/extra-any/PKGBUILD (from rev 287035, 
xdg-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-20 21:14:47 UTC (rev 287036)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=xdg-utils
+pkgver=1.1.1
+pkgrel=5
+pkgdesc="Command line tools that assist applications with a variety of desktop 
integration tasks"
+arch=('any')
+url="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+license=('MIT')
+depends=('sh' 'xorg-xset') # xset needed inside xdg-screensaver
+makedepends=('docbook-xsl' 'lynx' 'xmlto' 'git')
+optdepends=('kde-cli-tools: for KDE Plasma5 support in xdg-open'
+'exo: for Xfce support in xdg-open'
+'xorg-xprop: for Xfce support in xdg-open'
+'pcmanfm: for LXDE support in xdg-open'
+'perl-file-mimeinfo: for generic support in xdg-open'
+'perl-net-dbus: Perl extension to dbus used in xdg-screensaver'
+'perl-x11-protocol: Perl X11 protocol used in xdg-screensaver')
+source=(https://portland.freedesktop.org/download/$pkgname-$pkgver.tar.gz{,.asc}
+support_for_KDE_Frameworks_5.6.diff)
+md5sums=('2d0aec6037769a5f138ff404b1bb4b15'
+ 'SKIP'
+ 'fc0a612362e00cc091d2c1ebbfbfc500')
+validpgpkeys=('8B75CA7811367175D05F3B03C43570F80CC295E6') # "Per Olofsson 
"
+
+prepare() {
+   cd $pkgname-$pkgver
+   # fix wrong hardcoded chromium binary name - FS#50184
+   sed -i "s:chromium-browser:chromium:" scripts/xdg-open.in
+   
+   # fix KDE support, FS#48668
+   patch -Np1 -i $srcdir/support_for_KDE_Frameworks_5.6.diff
+}
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 

[arch-commits] Commit in ldns/repos (8 files)

2017-01-20 Thread Gaëtan Bisson
Date: Friday, January 20, 2017 @ 20:35:10
  Author: bisson
Revision: 287034

db-move: moved ldns from [testing] to [core] (i686, x86_64)

Added:
  ldns/repos/core-i686/PKGBUILD
(from rev 287033, ldns/repos/testing-i686/PKGBUILD)
  ldns/repos/core-i686/pc.patch
(from rev 287033, ldns/repos/testing-i686/pc.patch)
  ldns/repos/core-x86_64/PKGBUILD
(from rev 287033, ldns/repos/testing-x86_64/PKGBUILD)
  ldns/repos/core-x86_64/pc.patch
(from rev 287033, ldns/repos/testing-x86_64/pc.patch)
Deleted:
  ldns/repos/core-i686/PKGBUILD
  ldns/repos/core-x86_64/PKGBUILD
  ldns/repos/testing-i686/
  ldns/repos/testing-x86_64/

--+
 /PKGBUILD|   90 +
 core-i686/PKGBUILD   |   39 -
 core-i686/pc.patch   |   60 
 core-x86_64/PKGBUILD |   39 -
 core-x86_64/pc.patch |   60 
 5 files changed, 210 insertions(+), 78 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2017-01-20 20:35:07 UTC (rev 287033)
+++ core-i686/PKGBUILD  2017-01-20 20:35:10 UTC (rev 287034)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: mathieui 
-# Contributor: jiribb 
-
-pkgname=ldns
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='Fast DNS library supporting recent RFCs'
-url='https://www.nlnetlabs.nl/projects/ldns/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-depends=('openssl' 'dnssec-anchors')
-optdepends=('libpcap: ldns-dpa tool')
-makedepends=('libpcap')
-source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8')
-
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-   --with-trust-anchor=/etc/trusted-key.key \
-   --disable-dane-verify # needs openssl>=1.1.0
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ldns/repos/core-i686/PKGBUILD (from rev 287033, 
ldns/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2017-01-20 20:35:10 UTC (rev 287034)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.7.0
+pkgrel=2
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'pc.patch')
+sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8'
+  '92161452a6e75dd283bebef4e60135ed23497e51')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../pc.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+   --with-trust-anchor=/etc/trusted-key.key \
+   --disable-dane-verify # needs openssl>=1.1.0
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ldns/repos/core-i686/pc.patch (from rev 287033, 
ldns/repos/testing-i686/pc.patch)
===
--- core-i686/pc.patch  (rev 0)
+++ core-i686/pc.patch  2017-01-20 20:35:10 UTC (rev 287034)
@@ -0,0 +1,60 @@
+From 2a38f26ed5695c3ad737de082b56a296240dd51a Mon Sep 17 00:00:00 2001
+From: Willem Toorop 
+Date: Thu, 19 Jan 2017 09:41:51 +0100
+Subject: bugfix #1209: make install ldns.pc file
+
+---
+ Changelog   |  4 
+ Makefile.in | 16 ++--
+ 2 files changed, 18 insertions(+), 2 deletions(-)
+
+diff --git a/Changelog b/Changelog
+index 0bd3658..efda95e 100644
+--- a/Changelog
 b/Changelog
+@@ -1,3 +1,7 @@
++1.7.1 -??-??
++  * bugfix #1209: make install ldns.pc file
++Thanks Oleksandr Natalenko
++
+ 1.7.0 2016-12-20
+   * Fix lookup of 

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

2017-01-20 Thread Gaëtan Bisson
Date: Friday, January 20, 2017 @ 20:35:07
  Author: bisson
Revision: 287033

db-move: moved gnupg from [testing] to [core] (i686, x86_64)

Added:
  gnupg/repos/core-i686/PKGBUILD
(from rev 287032, gnupg/repos/testing-i686/PKGBUILD)
  gnupg/repos/core-i686/install
(from rev 287032, gnupg/repos/testing-i686/install)
  gnupg/repos/core-i686/negation.patch
(from rev 287032, gnupg/repos/testing-i686/negation.patch)
  gnupg/repos/core-i686/suffix.patch
(from rev 287032, gnupg/repos/testing-i686/suffix.patch)
  gnupg/repos/core-x86_64/PKGBUILD
(from rev 287032, gnupg/repos/testing-x86_64/PKGBUILD)
  gnupg/repos/core-x86_64/install
(from rev 287032, gnupg/repos/testing-x86_64/install)
  gnupg/repos/core-x86_64/negation.patch
(from rev 287032, gnupg/repos/testing-x86_64/negation.patch)
  gnupg/repos/core-x86_64/suffix.patch
(from rev 287032, gnupg/repos/testing-x86_64/suffix.patch)
Deleted:
  gnupg/repos/core-i686/PKGBUILD
  gnupg/repos/core-i686/install
  gnupg/repos/core-i686/libdns.patch
  gnupg/repos/core-x86_64/PKGBUILD
  gnupg/repos/core-x86_64/install
  gnupg/repos/core-x86_64/libdns.patch
  gnupg/repos/testing-i686/
  gnupg/repos/testing-x86_64/

+
 /PKGBUILD  |  146 +++
 /install   |   20 +
 core-i686/PKGBUILD |   71 
 core-i686/install  |   10 --
 core-i686/libdns.patch |   74 -
 core-i686/negation.patch   |   29 
 core-i686/suffix.patch |   46 +
 core-x86_64/PKGBUILD   |   71 
 core-x86_64/install|   10 --
 core-x86_64/libdns.patch   |   74 -
 core-x86_64/negation.patch |   29 
 core-x86_64/suffix.patch   |   46 +
 12 files changed, 316 insertions(+), 310 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2017-01-20 19:29:50 UTC (rev 287032)
+++ core-i686/PKGBUILD  2017-01-20 20:35:07 UTC (rev 287033)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Tobias Powalowski 
-# Contributor: Andreas Radke 
-# Contributor: Judd Vinet 
-
-pkgname=gnupg
-pkgver=2.1.17
-pkgrel=3
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='http://www.gnupg.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-optdepends=('libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon')
-makedepends=('libldap' 'libusb-compat')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
-  '46CC730865BB5C78EBABADCF04376F3EE0856959'
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
-  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
-'libdns.patch')
-sha1sums=('d83ab893faab35f37ace772ca29b939e6a5aa6a7' 'SKIP'
-  '4217441481d2f89783d39f50eeda7d6984a01e6d')
-
-install=install
-
-conflicts=('dirmngr' 'gnupg2')
-provides=('dirmngr' "gnupg2=${pkgver}")
-replaces=('dirmngr' 'gnupg2')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
-   patch -p1 -i ../libdns.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-   --disable-libdns # FS#52234
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make check || [[ $CARCH = i686 ]]
-   # 
https://lists.gnupg.org/pipermail/gnupg-devel/2016-December/032364.html
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
-   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
-   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
-
-   cd doc/examples/systemd-user
-   for i in *.*; do
-   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
-   done
-}

Copied: gnupg/repos/core-i686/PKGBUILD (from rev 287032, 
gnupg/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2017-01-20 20:35:07 UTC (rev 287033)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd 

[arch-commits] Commit in (ffmpeg0.10)

2017-01-20 Thread Bartłomiej Piotrowski
Date: Friday, January 20, 2017 @ 20:26:11
  Author: bpiotrowski
Revision: 208159

Move ffmpeg0.10 to AUR

Deleted:
  ffmpeg0.10/


[arch-commits] Commit in (ushare)

2017-01-20 Thread Bartłomiej Piotrowski
Date: Friday, January 20, 2017 @ 20:14:12
  Author: bpiotrowski
Revision: 208156

Move ushare to AUR

Deleted:
  ushare/


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

2017-01-20 Thread Bartłomiej Piotrowski
Date: Friday, January 20, 2017 @ 19:59:22
  Author: bpiotrowski
Revision: 208155

archrelease: copy trunk to community-i686, community-x86_64

Added:
  synfigstudio/repos/community-i686/PKGBUILD
(from rev 208154, synfigstudio/trunk/PKGBUILD)
  synfigstudio/repos/community-x86_64/PKGBUILD
(from rev 208154, synfigstudio/trunk/PKGBUILD)
Deleted:
  synfigstudio/repos/community-i686/PKGBUILD
  synfigstudio/repos/community-i686/build-fix.patch
  synfigstudio/repos/community-x86_64/PKGBUILD
  synfigstudio/repos/community-x86_64/build-fix.patch

--+
 /PKGBUILD|   96 +
 community-i686/PKGBUILD  |   55 -
 community-i686/build-fix.patch   |  372 -
 community-x86_64/PKGBUILD|   55 -
 community-x86_64/build-fix.patch |  372 -
 5 files changed, 96 insertions(+), 854 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 19:47:34 UTC (rev 208154)
+++ community-i686/PKGBUILD 2017-01-20 19:59:22 UTC (rev 208155)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Franco Iacomella 
-
-pkgname=synfigstudio
-pkgver=1.0.2
-pkgrel=5
-pkgdesc="Professional vector animation program (GUI)"
-arch=(i686 x86_64)
-url="http://synfig.org;
-license=('GPL2')
-depends=('gtkmm3' 'synfig' 'sdl_image')
-makedepends=('openexr' 'imagemagick' 'xorg-fonts-100dpi' 'xorg-fonts-75dpi'
-'xorg-fonts-misc' 'xorg-fonts-type1' 'intltool' 'etl')
-#source=(http://download.tuxfamily.org/synfig/releases/$pkgver/synfigstudio-$pkgver.tar.gz)
-source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfigstudio-$pkgver.tar.gz
-   build-fix.patch)
-md5sums=('566eac351cd6f63d200be6fb6fe55767'
- '033d6ad90f2b2226ddf7cc930be41624')
-
-prepare() {
-  cd "$srcdir"/synfigstudio-$pkgver
-  patch -p1 <"$srcdir"/build-fix.patch
-}
-
-build() {
-  cd "$srcdir"/synfigstudio-$pkgver
-  export PKG_CONFIG_PATH=/usr/lib/ffmpeg0.10/pkgconfig:$PKG_CONFIG_PATH
-  LDFLAGS="$LDFLAGS -Wl,-rpath -Wl,/usr/lib/ffmpeg0.10"
-  CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS"
-  CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS -std=gnu++11"
-  [ -f configure ] || { libtoolize --ltdl --copy --force && autoreconf 
--install --force; }
-  [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc 
--with-libavcodec --with-libdv
-  sed -i 's#Gtk::IconSize::IconSize#Gtk::IconSize#' 
src/gui/dialogs/dialog_color.cpp
-  make
-}
-
-package() {
-  cd "$srcdir"/synfigstudio-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -f "$pkgdir"/usr/share/pixmaps/$pkgname/*.mng
-  install -m644 images/*.png -t "$pkgdir"/usr/share/pixmaps/$pkgname/
-  rm -f "$pkgdir"/usr/share/mime/XMLnamespaces
-  rm -f "$pkgdir"/usr/share/mime/aliases
-  rm -f "$pkgdir"/usr/share/mime/generic-icons
-  rm -f "$pkgdir"/usr/share/mime/globs
-  rm -f "$pkgdir"/usr/share/mime/globs2
-  rm -f "$pkgdir"/usr/share/mime/icons
-  rm -f "$pkgdir"/usr/share/mime/magic
-  rm -f "$pkgdir"/usr/share/mime/mime.cache
-  rm -f "$pkgdir"/usr/share/mime/subclasses
-  rm -f "$pkgdir"/usr/share/mime/treemagic
-  rm -f "$pkgdir"/usr/share/mime/types
-  rm -f "$pkgdir"/usr/share/mime/version
-}

Copied: synfigstudio/repos/community-i686/PKGBUILD (from rev 208154, 
synfigstudio/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 19:59:22 UTC (rev 208155)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Franco Iacomella 
+
+pkgname=synfigstudio
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Professional vector animation program (GUI)"
+arch=(i686 x86_64)
+url="http://synfig.org;
+license=('GPL2')
+depends=('gtkmm3' 'synfig' 'sdl_image')
+makedepends=('openexr' 'imagemagick' 'xorg-fonts-100dpi' 'xorg-fonts-75dpi'
+'xorg-fonts-misc' 'xorg-fonts-type1' 'intltool' 'etl')
+#source=(http://download.tuxfamily.org/synfig/releases/$pkgver/synfigstudio-$pkgver.tar.gz)
+source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfigstudio-$pkgver.tar.gz)
+md5sums=('e7819c984656db7c7544bef78b81ec58')
+
+build() {
+  cd "$srcdir"/synfigstudio-$pkgver
+  export PKG_CONFIG_PATH=/usr/lib/ffmpeg0.10/pkgconfig:$PKG_CONFIG_PATH
+  LDFLAGS="$LDFLAGS -Wl,-rpath -Wl,/usr/lib/ffmpeg0.10"
+  CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS"
+  CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS -std=gnu++11"
+  [ -f configure ] || { libtoolize --ltdl --copy --force && autoreconf 
--install --force; }
+  [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc 
--with-libavcodec --with-libdv
+  sed -i 's#Gtk::IconSize::IconSize#Gtk::IconSize#' 
src/gui/dialogs/dialog_color.cpp
+  make
+}
+

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

2017-01-20 Thread Antonio Rojas
Date: Friday, January 20, 2017 @ 19:46:23
  Author: arojas
Revision: 208153

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pynac/repos/community-i686/PKGBUILD
(from rev 208152, pynac/trunk/PKGBUILD)
  pynac/repos/community-x86_64/PKGBUILD
(from rev 208152, pynac/trunk/PKGBUILD)
Deleted:
  pynac/repos/community-i686/PKGBUILD
  pynac/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-i686/PKGBUILD   |   35 
 community-x86_64/PKGBUILD |   35 
 3 files changed, 54 insertions(+), 70 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 19:45:48 UTC (rev 208152)
+++ community-i686/PKGBUILD 2017-01-20 19:46:23 UTC (rev 208153)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-
-pkgname=pynac
-pkgver=0.7.3
-pkgrel=2
-pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
-arch=(i686 x86_64)
-url="http://pynac.org;
-license=(GPL)
-depends=(python2 libgiac singular)
-source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;
-
pynac-0.7.3-fix-linking.patch::"https://github.com/pynac/pynac/commit/23f41c28.patch;)
-md5sums=('c76c749bc4301d09b90073bcaa230a24'
- '8082fcb68661cb43b99545c3872d645e')
-
-prepare() {
-  cd pynac-$pkgver
-# Fix underlinking with giac enabled
-  patch -p1 -i ../pynac-0.7.3-fix-linking.patch
-}
-
-build() {
-  cd pynac-$pkgver
-
-  export PYTHON=python2
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd pynac-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pynac/repos/community-i686/PKGBUILD (from rev 208152, 
pynac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 19:46:23 UTC (rev 208153)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=pynac
+pkgver=0.7.4
+pkgrel=1
+pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
+arch=(i686 x86_64)
+url="http://pynac.org;
+license=(GPL)
+depends=(python2 libgiac singular)
+source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;)
+sha256sums=('78b4d93ddb93cd364b377e2d8a3b202d46d50fbb3bd903e170279e0b5517db40')
+
+build() {
+  cd pynac-$pkgver
+
+  export PYTHON=python2
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd pynac-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-20 19:45:48 UTC (rev 208152)
+++ community-x86_64/PKGBUILD   2017-01-20 19:46:23 UTC (rev 208153)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-
-pkgname=pynac
-pkgver=0.7.3
-pkgrel=2
-pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
-arch=(i686 x86_64)
-url="http://pynac.org;
-license=(GPL)
-depends=(python2 libgiac singular)
-source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;
-
pynac-0.7.3-fix-linking.patch::"https://github.com/pynac/pynac/commit/23f41c28.patch;)
-md5sums=('c76c749bc4301d09b90073bcaa230a24'
- '8082fcb68661cb43b99545c3872d645e')
-
-prepare() {
-  cd pynac-$pkgver
-# Fix underlinking with giac enabled
-  patch -p1 -i ../pynac-0.7.3-fix-linking.patch
-}
-
-build() {
-  cd pynac-$pkgver
-
-  export PYTHON=python2
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd pynac-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pynac/repos/community-x86_64/PKGBUILD (from rev 208152, 
pynac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-20 19:46:23 UTC (rev 208153)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=pynac
+pkgver=0.7.4
+pkgrel=1
+pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
+arch=(i686 x86_64)
+url="http://pynac.org;
+license=(GPL)
+depends=(python2 libgiac singular)
+source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;)
+sha256sums=('78b4d93ddb93cd364b377e2d8a3b202d46d50fbb3bd903e170279e0b5517db40')
+
+build() {
+  cd pynac-$pkgver
+
+  export PYTHON=python2
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  

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

2017-01-20 Thread Antonio Rojas
Date: Friday, January 20, 2017 @ 19:45:48
  Author: arojas
Revision: 208152

pynac 0.7.4 rebuild

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 19:45:26 UTC (rev 208151)
+++ PKGBUILD2017-01-20 19:45:48 UTC (rev 208152)
@@ -10,7 +10,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=7.5.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(i686 x86_64)
 url="http://www.sagemath.org;


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

2017-01-20 Thread Antonio Rojas
Date: Friday, January 20, 2017 @ 19:45:26
  Author: arojas
Revision: 208151

Update to 0.7.4

Modified:
  pynac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 19:31:11 UTC (rev 208150)
+++ PKGBUILD2017-01-20 19:45:26 UTC (rev 208151)
@@ -3,24 +3,16 @@
 # Contributor: Rémy Oudompheng 
 
 pkgname=pynac
-pkgver=0.7.3
-pkgrel=2
+pkgver=0.7.4
+pkgrel=1
 pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
 arch=(i686 x86_64)
 url="http://pynac.org;
 license=(GPL)
 depends=(python2 libgiac singular)
-source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;
-
pynac-0.7.3-fix-linking.patch::"https://github.com/pynac/pynac/commit/23f41c28.patch;)
-md5sums=('c76c749bc4301d09b90073bcaa230a24'
- '8082fcb68661cb43b99545c3872d645e')
+source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;)
+sha256sums=('78b4d93ddb93cd364b377e2d8a3b202d46d50fbb3bd903e170279e0b5517db40')
 
-prepare() {
-  cd pynac-$pkgver
-# Fix underlinking with giac enabled
-  patch -p1 -i ../pynac-0.7.3-fix-linking.patch
-}
-
 build() {
   cd pynac-$pkgver
 


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

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 19:31:11
  Author: bgyorgy
Revision: 208150

archrelease: copy trunk to community-i686, community-x86_64

Added:
  cellwriter/repos/community-i686/PKGBUILD
(from rev 208149, cellwriter/trunk/PKGBUILD)
  cellwriter/repos/community-x86_64/PKGBUILD
(from rev 208149, cellwriter/trunk/PKGBUILD)
Deleted:
  cellwriter/repos/community-i686/PKGBUILD
  cellwriter/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 19:31:04 UTC (rev 208149)
+++ community-i686/PKGBUILD 2017-01-20 19:31:11 UTC (rev 208150)
@@ -1,33 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Cilyan Olowen 
-# Contributor: Alexander Markov 
-# Contributor: Winston Weinert
-
-pkgname=cellwriter
-pkgver=1.3.5
-pkgrel=3
-pkgdesc='A grid-entry natural handwriting input panel.'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://v1.risujin.org/cellwriter/'
-depends=('gtk2' 'libxtst' 'libgnome' 'hicolor-icon-theme')
-source=("http://v1.risujin.org/pub/cellwriter/${pkgname}-${pkgver}.tar.gz;
-
"http://launchpadlibrarian.net/18959127/${pkgname}-1.3.4-cellwidget-dont-disable-xinput.diff;)
-md5sums=('16db87415c3c669e0489f9c4d795ec7d'
- '5e8c61309c5ec8f67f0af7bb5ceb1aea')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}/src"
-
-  patch -p0 < "${srcdir}/${pkgname}-1.3.4-cellwidget-dont-disable-xinput.diff"
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  env LDFLAGS='-lX11' ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: cellwriter/repos/community-i686/PKGBUILD (from rev 208149, 
cellwriter/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 19:31:11 UTC (rev 208150)
@@ -0,0 +1,33 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Cilyan Olowen 
+# Contributor: Alexander Markov 
+# Contributor: Winston Weinert
+
+pkgname=cellwriter
+pkgver=1.3.5
+pkgrel=4
+pkgdesc='A grid-entry natural handwriting input panel.'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://v1.risujin.org/cellwriter/'
+depends=('gtk2' 'libxtst')
+source=("http://v1.risujin.org/pub/cellwriter/${pkgname}-${pkgver}.tar.gz;
+
"https://launchpadlibrarian.net/18959127/${pkgname}-1.3.4-cellwidget-dont-disable-xinput.diff;)
+md5sums=('16db87415c3c669e0489f9c4d795ec7d'
+ '5e8c61309c5ec8f67f0af7bb5ceb1aea')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}/src"
+
+  patch -p0 < "${srcdir}/${pkgname}-1.3.4-cellwidget-dont-disable-xinput.diff"
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  env LDFLAGS='-lX11' ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-20 19:31:04 UTC (rev 208149)
+++ community-x86_64/PKGBUILD   2017-01-20 19:31:11 UTC (rev 208150)
@@ -1,33 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Cilyan Olowen 
-# Contributor: Alexander Markov 
-# Contributor: Winston Weinert
-
-pkgname=cellwriter
-pkgver=1.3.5
-pkgrel=3
-pkgdesc='A grid-entry natural handwriting input panel.'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://v1.risujin.org/cellwriter/'
-depends=('gtk2' 'libxtst' 'libgnome' 'hicolor-icon-theme')
-source=("http://v1.risujin.org/pub/cellwriter/${pkgname}-${pkgver}.tar.gz;
-
"http://launchpadlibrarian.net/18959127/${pkgname}-1.3.4-cellwidget-dont-disable-xinput.diff;)
-md5sums=('16db87415c3c669e0489f9c4d795ec7d'
- '5e8c61309c5ec8f67f0af7bb5ceb1aea')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}/src"
-
-  patch -p0 < "${srcdir}/${pkgname}-1.3.4-cellwidget-dont-disable-xinput.diff"
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  env LDFLAGS='-lX11' ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: cellwriter/repos/community-x86_64/PKGBUILD (from rev 208149, 
cellwriter/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-20 19:31:11 UTC (rev 208150)
@@ -0,0 +1,33 @@
+# Maintainer: Lukas Fleischer 

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

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 19:31:04
  Author: bgyorgy
Revision: 208149

upgpkg: cellwriter 1.3.5-4

Remove unused libgnome dependency

Modified:
  cellwriter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 19:00:20 UTC (rev 208148)
+++ PKGBUILD2017-01-20 19:31:04 UTC (rev 208149)
@@ -5,12 +5,12 @@
 
 pkgname=cellwriter
 pkgver=1.3.5
-pkgrel=3
+pkgrel=4
 pkgdesc='A grid-entry natural handwriting input panel.'
 arch=('i686' 'x86_64')
 license=('GPL')
 url='http://v1.risujin.org/cellwriter/'
-depends=('gtk2' 'libxtst' 'libgnome' 'hicolor-icon-theme')
+depends=('gtk2' 'libxtst')
 source=("http://v1.risujin.org/pub/cellwriter/${pkgname}-${pkgver}.tar.gz;
 
"https://launchpadlibrarian.net/18959127/${pkgname}-1.3.4-cellwidget-dont-disable-xinput.diff;)
 md5sums=('16db87415c3c669e0489f9c4d795ec7d'


[arch-commits] Commit in qtscriptgenerator/repos (12 files)

2017-01-20 Thread Antonio Rojas
Date: Friday, January 20, 2017 @ 19:29:50
  Author: arojas
Revision: 287032

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  qtscriptgenerator/repos/extra-i686/PKGBUILD
(from rev 287031, qtscriptgenerator/trunk/PKGBUILD)
  qtscriptgenerator/repos/extra-i686/no-phonon.patch
(from rev 287031, qtscriptgenerator/trunk/no-phonon.patch)
  qtscriptgenerator/repos/extra-i686/phonon.patch
(from rev 287031, qtscriptgenerator/trunk/phonon.patch)
  qtscriptgenerator/repos/extra-x86_64/PKGBUILD
(from rev 287031, qtscriptgenerator/trunk/PKGBUILD)
  qtscriptgenerator/repos/extra-x86_64/no-phonon.patch
(from rev 287031, qtscriptgenerator/trunk/no-phonon.patch)
  qtscriptgenerator/repos/extra-x86_64/phonon.patch
(from rev 287031, qtscriptgenerator/trunk/phonon.patch)
Deleted:
  qtscriptgenerator/repos/extra-i686/PKGBUILD
  qtscriptgenerator/repos/extra-i686/no-phonon.patch
  qtscriptgenerator/repos/extra-i686/phonon.patch
  qtscriptgenerator/repos/extra-x86_64/PKGBUILD
  qtscriptgenerator/repos/extra-x86_64/no-phonon.patch
  qtscriptgenerator/repos/extra-x86_64/phonon.patch

--+
 /PKGBUILD|  100 +
 /no-phonon.patch |   46 +++
 /phonon.patch|  122 +
 extra-i686/PKGBUILD  |   44 --
 extra-i686/no-phonon.patch   |   34 ---
 extra-i686/phonon.patch  |   61 
 extra-x86_64/PKGBUILD|   44 --
 extra-x86_64/no-phonon.patch |   34 ---
 extra-x86_64/phonon.patch|   61 
 9 files changed, 268 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-20 19:29:16 UTC (rev 287031)
+++ extra-i686/PKGBUILD 2017-01-20 19:29:50 UTC (rev 287032)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=qtscriptgenerator
-pkgver=0.2.0
-pkgrel=4
-pkgdesc="A tool that generates Qt bindings for Qt Script"
-arch=("i686" "x86_64")
-url="https://code.google.com/p/qtscriptgenerator/;
-license=('GPL')
-depends=('qtwebkit')
-makedepends=('pkgconfig' 'mesa')
-source=("https://qtscriptgenerator.googlecode.com/files/${pkgname}-src-${pkgver}.tar.gz;
-'phonon.patch'
-'no-phonon.patch')
-sha1sums=('4c1078f26b196156e857c17c9d11a66cfea66f00'
-  'cca1cd546628a10a91475a82fe12ad2e4066a7d0'
-  'c50b26e6504f5c981a916860d9c3929e436e1067')
-
-build() {
-  cd $pkgname-src-$pkgver
-
-  patch -p1 -i "${srcdir}"/phonon.patch
-  patch -p1 -i "${srcdir}"/no-phonon.patch
-
-  # prepare plugins
-  cd generator
-  qmake-qt4
-  make
-  QTDIR=/usr ./generator --include-paths=/usr/include/qt4
-
-  # build plugins
-  cd ../qtbindings
-  qmake-qt4
-  make
-}
-
-package() {
-  cd $pkgname-src-$pkgver/qtbindings
-  # move plugins to correct directory
-  install -d "${pkgdir}"/usr/lib/qt4/plugins/script
-  cp -a "${srcdir}"/$pkgname-src-$pkgver/plugins/script/* \
-"${pkgdir}"/usr/lib/qt4/plugins/script/
-}

Copied: qtscriptgenerator/repos/extra-i686/PKGBUILD (from rev 287031, 
qtscriptgenerator/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-20 19:29:50 UTC (rev 287032)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=qtscriptgenerator
+pkgver=0.2.0
+pkgrel=5
+pkgdesc="A tool that generates Qt bindings for Qt Script"
+arch=("i686" "x86_64")
+url="https://code.google.com/p/qtscriptgenerator/;
+license=('GPL')
+depends=('qt4')
+makedepends=('pkgconfig' 'mesa')
+source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$pkgname/$pkgname-src-$pkgver.tar.gz;
+'phonon.patch'
+'no-phonon.patch')
+sha1sums=('4c1078f26b196156e857c17c9d11a66cfea66f00'
+  'cca1cd546628a10a91475a82fe12ad2e4066a7d0'
+  '99e4c14eb00eed5fcd7fb6e87b0286ab733b80b4')
+
+prepare() {
+  cd $pkgname-src-$pkgver
+# Don't build webkit or phonon bindings
+  sed -e '/webkit/d' -e '/phonon/d' -i qtbindings/qtbindings.pro
+
+  patch -p1 -i "${srcdir}"/phonon.patch
+  patch -p1 -i "${srcdir}"/no-phonon.patch
+}
+
+build() {
+  cd $pkgname-src-$pkgver
+
+  # prepare plugins
+  cd generator
+  qmake-qt4
+  make
+  QTDIR=/usr ./generator --include-paths=/usr/include/qt4
+
+  # build plugins
+  cd ../qtbindings
+  qmake-qt4
+  make
+}
+
+package() {
+  cd $pkgname-src-$pkgver/qtbindings
+  # move plugins to correct directory
+  install -d "${pkgdir}"/usr/lib/qt4/plugins/script
+  cp -a "${srcdir}"/$pkgname-src-$pkgver/plugins/script/* \
+"${pkgdir}"/usr/lib/qt4/plugins/script/
+}

Deleted: extra-i686/no-phonon.patch
===
--- extra-i686/no-phonon.patch  2017-01-20 19:29:16 

[arch-commits] Commit in qtscriptgenerator/trunk (PKGBUILD no-phonon.patch)

2017-01-20 Thread Antonio Rojas
Date: Friday, January 20, 2017 @ 19:29:16
  Author: arojas
Revision: 287031

Drop qtwebkit

Modified:
  qtscriptgenerator/trunk/PKGBUILD
  qtscriptgenerator/trunk/no-phonon.patch

-+
 PKGBUILD|   16 +++-
 no-phonon.patch |   11 ---
 2 files changed, 11 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 19:28:10 UTC (rev 287030)
+++ PKGBUILD2017-01-20 19:29:16 UTC (rev 287031)
@@ -3,26 +3,32 @@
 
 pkgname=qtscriptgenerator
 pkgver=0.2.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A tool that generates Qt bindings for Qt Script"
 arch=("i686" "x86_64")
 url="https://code.google.com/p/qtscriptgenerator/;
 license=('GPL')
-depends=('qtwebkit')
+depends=('qt4')
 makedepends=('pkgconfig' 'mesa')
-source=("https://qtscriptgenerator.googlecode.com/files/${pkgname}-src-${pkgver}.tar.gz;
+source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$pkgname/$pkgname-src-$pkgver.tar.gz;
 'phonon.patch'
 'no-phonon.patch')
 sha1sums=('4c1078f26b196156e857c17c9d11a66cfea66f00'
   'cca1cd546628a10a91475a82fe12ad2e4066a7d0'
-  'c50b26e6504f5c981a916860d9c3929e436e1067')
+  '99e4c14eb00eed5fcd7fb6e87b0286ab733b80b4')
 
-build() {
+prepare() {
   cd $pkgname-src-$pkgver
+# Don't build webkit or phonon bindings
+  sed -e '/webkit/d' -e '/phonon/d' -i qtbindings/qtbindings.pro
 
   patch -p1 -i "${srcdir}"/phonon.patch
   patch -p1 -i "${srcdir}"/no-phonon.patch
+}
 
+build() {
+  cd $pkgname-src-$pkgver
+
   # prepare plugins
   cd generator
   qmake-qt4

Modified: no-phonon.patch
===
--- no-phonon.patch 2017-01-20 19:28:10 UTC (rev 287030)
+++ no-phonon.patch 2017-01-20 19:29:16 UTC (rev 287031)
@@ -21,14 +21,3 @@
  xsltproc --stringparam source $PWD/typesystem_webkit-qtscript.xml merge.xsl 
typesystem_webkit-common.xml > typesystem_webkit.xml
  
  xsltproc --stringparam source $PWD/typesystem_xmlpatterns-qtscript.xml 
merge.xsl typesystem_xmlpatterns-common.xml > typesystem_xmlpatterns.xml
-diff -up qtscriptgenerator-src-0.1.0/qtbindings/qtbindings.pro.no_phonon 
qtscriptgenerator-src-0.1.0/qtbindings/qtbindings.pro
 qtscriptgenerator-src-0.1.0/qtbindings/qtbindings.pro.no_phonon
2010-10-26 02:53:53.0 -0500
-+++ qtscriptgenerator-src-0.1.0/qtbindings/qtbindings.pro  2010-12-21 
12:45:01.010979847 -0600
-@@ -6,7 +6,6 @@ SUBDIRS = qtscript_core \
- qtscript_sql \
- qtscript_svg \
- qtscript_xml \
--qtscript_phonon \
- qtscript_webkit \
- qtscript_xmlpatterns \
- qtscript_uitools \


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

2017-01-20 Thread Andreas Radke
Date: Friday, January 20, 2017 @ 19:27:57
  Author: andyrtr
Revision: 287029

upgpkg: libinput 1.6.0-1

upstream update 1.6.0

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 19:15:04 UTC (rev 287028)
+++ PKGBUILD2017-01-20 19:27:57 UTC (rev 287029)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=1.5.4
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="Input device management and event handling library"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=('doxygen' 'graphviz' 'gtk3')
 #checkdepends=('check' 'libunwind')
 
source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
+sha256sums=('b7534f518d735c643aedca2fb4694683dfddc8d0600cfb628c87a18e65255832'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


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

2017-01-20 Thread Andreas Radke
Date: Friday, January 20, 2017 @ 19:28:10
  Author: andyrtr
Revision: 287030

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libinput/repos/testing-i686/
  libinput/repos/testing-i686/PKGBUILD
(from rev 287029, libinput/trunk/PKGBUILD)
  libinput/repos/testing-x86_64/
  libinput/repos/testing-x86_64/PKGBUILD
(from rev 287029, libinput/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   41 +
 testing-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: libinput/repos/testing-i686/PKGBUILD (from rev 287029, 
libinput/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-20 19:28:10 UTC (rev 287030)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('b7534f518d735c643aedca2fb4694683dfddc8d0600cfb628c87a18e65255832'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}

Copied: libinput/repos/testing-x86_64/PKGBUILD (from rev 287029, 
libinput/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-20 19:28:10 UTC (rev 287030)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('b7534f518d735c643aedca2fb4694683dfddc8d0600cfb628c87a18e65255832'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}


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

2017-01-20 Thread Andreas Radke
Date: Friday, January 20, 2017 @ 19:15:04
  Author: andyrtr
Revision: 287028

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/0001-sdhci-revert.patch
(from rev 287027, linux-lts/trunk/0001-sdhci-revert.patch)
  linux-lts/repos/testing-i686/99-linux.hook
(from rev 287027, linux-lts/trunk/99-linux.hook)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 287027, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 287027, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 287027, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 287027, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 287027, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 287027, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/0001-sdhci-revert.patch
(from rev 287027, linux-lts/trunk/0001-sdhci-revert.patch)
  linux-lts/repos/testing-x86_64/99-linux.hook
(from rev 287027, linux-lts/trunk/99-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 287027, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 287027, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 287027, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 287027, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 287027, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 287027, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/0001-sdhci-revert.patch |   25 
 testing-i686/99-linux.hook   |   11 
 testing-i686/PKGBUILD|  300 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 7903 +
 testing-i686/config.x86_64   | 7662 
 testing-i686/linux-lts.install   |   33 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/0001-sdhci-revert.patch   |   25 
 testing-x86_64/99-linux.hook |   11 
 testing-x86_64/PKGBUILD  |  300 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 7903 +
 testing-x86_64/config.x86_64 | 7662 
 testing-x86_64/linux-lts.install |   33 
 testing-x86_64/linux-lts.preset  |   14 
 16 files changed, 31918 insertions(+)

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


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

2017-01-20 Thread Andreas Radke
Date: Friday, January 20, 2017 @ 19:14:35
  Author: andyrtr
Revision: 287027

upgpkg: linux-lts 4.4.44-1

upstream update 4.4.44

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 17:48:34 UTC (rev 287026)
+++ PKGBUILD2017-01-20 19:14:35 UTC (rev 287027)
@@ -4,7 +4,7 @@
 pkgbase=linux-lts
 #pkgbase=linux-lts-custom
 _srcname=linux-4.4
-pkgver=4.4.43
+pkgver=4.4.44
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://www.kernel.org/;
@@ -24,7 +24,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2'
 'SKIP'
-'17fb4d658c95fff9754b1409952c177fef2567eacb9386c86a4060ab27ff'
+'43e67f75f28f5c81fc63d53498a33113dbda133fa7cb83be697825f6a8ee761e'
 'SKIP'
 'b11702727b1503e5a613946790978481d34d8ecc6870337fadd3ce1ef084a8e2'
 '68c7296ff2f5f55d69e83aa4d20f925df740b1eb1e6bdb0f13e8a170360ed09f'


[arch-commits] Commit in gobby/repos (8 files)

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 19:00:20
  Author: bgyorgy
Revision: 208148

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gobby/repos/community-i686/ChangeLog
(from rev 208147, gobby/trunk/ChangeLog)
  gobby/repos/community-i686/PKGBUILD
(from rev 208147, gobby/trunk/PKGBUILD)
  gobby/repos/community-x86_64/ChangeLog
(from rev 208147, gobby/trunk/ChangeLog)
  gobby/repos/community-x86_64/PKGBUILD
(from rev 208147, gobby/trunk/PKGBUILD)
Deleted:
  gobby/repos/community-i686/ChangeLog
  gobby/repos/community-i686/PKGBUILD
  gobby/repos/community-x86_64/ChangeLog
  gobby/repos/community-x86_64/PKGBUILD

+
 /ChangeLog |6 
 /PKGBUILD  |   58 +++
 community-i686/ChangeLog   |3 --
 community-i686/PKGBUILD|   30 --
 community-x86_64/ChangeLog |3 --
 community-x86_64/PKGBUILD  |   30 --
 6 files changed, 64 insertions(+), 66 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2017-01-20 19:00:14 UTC (rev 208147)
+++ community-i686/ChangeLog2017-01-20 19:00:20 UTC (rev 208148)
@@ -1,3 +0,0 @@
-2007-06-27 tardo 
-* Built for x86_64
-* No need for .install since gnome moved to /usr

Copied: gobby/repos/community-i686/ChangeLog (from rev 208147, 
gobby/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2017-01-20 19:00:20 UTC (rev 208148)
@@ -0,0 +1,3 @@
+2007-06-27 tardo 
+* Built for x86_64
+* No need for .install since gnome moved to /usr

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 19:00:14 UTC (rev 208147)
+++ community-i686/PKGBUILD 2017-01-20 19:00:20 UTC (rev 208148)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: William Rea 
-# Maintainer: Angel 'angvp' Velasquez 
-
-pkgname=gobby
-pkgver=0.5.0
-pkgrel=3
-pkgdesc="A collaborative text editor"
-arch=('i686' 'x86_64')
-url="http://gobby.github.io/;
-license=('GPL')
-depends=('obby' 'libxml++2' 'gtkmm' 'gnome-vfs' 'libbonobo' 
'libgtksourceviewmm2'
-'gtksourceview2' 'libxml++' 'libunique' 'libinfinity' 'gsasl')
-makedepends=('gettext' 'intltool' 'gnome-doc-utils')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/gobby/archive/v$pkgver.tar.gz;)
-md5sums=('fcc25c3b5e3150f4c6cffa3ad6cbac9d')
-
-build() {
-  cd $srcdir/gobby-$pkgver
-  [ -x configure ] || ./autogen.sh
-  CXXFLAGS+=' -std=c++11'
-  ./configure --prefix=/usr --with-gnome
-  make
-}
-
-package() {
-  cd $srcdir/gobby-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gobby/repos/community-i686/PKGBUILD (from rev 208147, 
gobby/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 19:00:20 UTC (rev 208148)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+# Maintainer: Angel 'angvp' Velasquez 
+
+pkgname=gobby
+pkgver=0.5.0
+pkgrel=4
+pkgdesc="A collaborative text editor"
+arch=('i686' 'x86_64')
+url="http://gobby.github.io/;
+license=('GPL')
+depends=('gtkmm' 'gtksourceview2' 'libinfinity' 'libxml++')
+makedepends=('gnome-doc-utils' 'intltool')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/gobby/archive/v$pkgver.tar.gz;)
+md5sums=('fcc25c3b5e3150f4c6cffa3ad6cbac9d')
+
+build() {
+  cd "$srcdir"/gobby-$pkgver
+  [ -x configure ] || ./autogen.sh
+  CXXFLAGS+=' -std=c++11'
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/gobby-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/ChangeLog
===
--- community-x86_64/ChangeLog  2017-01-20 19:00:14 UTC (rev 208147)
+++ community-x86_64/ChangeLog  2017-01-20 19:00:20 UTC (rev 208148)
@@ -1,3 +0,0 @@
-2007-06-27 tardo 
-* Built for x86_64
-* No need for .install since gnome moved to /usr

Copied: gobby/repos/community-x86_64/ChangeLog (from rev 208147, 
gobby/trunk/ChangeLog)
===
--- community-x86_64/ChangeLog  (rev 0)
+++ community-x86_64/ChangeLog  2017-01-20 19:00:20 UTC (rev 208148)
@@ -0,0 +1,3 @@
+2007-06-27 tardo 
+* Built for x86_64
+* No need for .install since gnome moved to /usr

Deleted: community-x86_64/PKGBUILD

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

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 19:00:14
  Author: bgyorgy
Revision: 208147

upgpkg: gobby 0.5.0-4

Remove unused dependencies

Modified:
  gobby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 18:42:58 UTC (rev 208146)
+++ PKGBUILD2017-01-20 19:00:14 UTC (rev 208147)
@@ -5,14 +5,13 @@
 
 pkgname=gobby
 pkgver=0.5.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A collaborative text editor"
 arch=('i686' 'x86_64')
 url="http://gobby.github.io/;
 license=('GPL')
-depends=('obby' 'libxml++2' 'gtkmm' 'gnome-vfs' 'libbonobo' 
'libgtksourceviewmm2'
-'gtksourceview2' 'libxml++' 'libunique' 'libinfinity' 'gsasl')
-makedepends=('gettext' 'intltool' 'gnome-doc-utils')
+depends=('gtkmm' 'gtksourceview2' 'libinfinity' 'libxml++')
+makedepends=('gnome-doc-utils' 'intltool')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/gobby/archive/v$pkgver.tar.gz;)
 md5sums=('fcc25c3b5e3150f4c6cffa3ad6cbac9d')
 
@@ -20,7 +19,7 @@
   cd "$srcdir"/gobby-$pkgver
   [ -x configure ] || ./autogen.sh
   CXXFLAGS+=' -std=c++11'
-  ./configure --prefix=/usr --with-gnome
+  ./configure --prefix=/usr
   make
 }
 


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

2017-01-20 Thread Levente Polyak
Date: Friday, January 20, 2017 @ 18:42:58
  Author: anthraxx
Revision: 208146

archrelease: copy trunk to community-i686, community-x86_64

Added:
  yara/repos/community-i686/PKGBUILD
(from rev 208145, yara/trunk/PKGBUILD)
  yara/repos/community-x86_64/PKGBUILD
(from rev 208145, yara/trunk/PKGBUILD)
Deleted:
  yara/repos/community-i686/PKGBUILD
  yara/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   31 
 community-x86_64/PKGBUILD |   31 
 3 files changed, 68 insertions(+), 62 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 18:42:49 UTC (rev 208145)
+++ community-i686/PKGBUILD 2017-01-20 18:42:58 UTC (rev 208146)
@@ -1,31 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: bitwave 
-# Contributor: fnord0 
-
-pkgname=yara
-pkgver=3.5.0
-pkgrel=1
-pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
-url='https://github.com/VirusTotal/yara'
-arch=('i686' 'x86_64')
-license=('Apache')
-makedepends=('openssl' 'file' 'python-setuptools' 'python2-setuptools')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('52b815c59ad086020bd8a002d13b89d671a218c2f3a3214b93fb215f18f7f4b57ed6d27c2aa03218626eb1da1f541a0b1d0b20a3d467950089e5150bc90fe76b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  autoreconf --force --install
-  ./configure --prefix=/usr --with-crypto --enable-magic
-  make
-}
-
-package() {
-  depends=('openssl' 'file')
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
-  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: yara/repos/community-i686/PKGBUILD (from rev 208145, 
yara/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 18:42:58 UTC (rev 208146)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 
+# Contributor: bitwave 
+# Contributor: fnord0 
+
+pkgname=yara
+pkgver=3.5.0
+pkgrel=2
+pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
+url='https://github.com/VirusTotal/yara'
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl' 'file')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('84e3b8248749271f154c05216417be76c56563012c0a2013fde5184c6ed03d2933c456d61f036292c42030b52705d5c6e94824d1fd36dbffe46af625ddedaaf5')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+  ./configure \
+--prefix=/usr \
+--with-crypto \
+--enable-magic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-20 18:42:49 UTC (rev 208145)
+++ community-x86_64/PKGBUILD   2017-01-20 18:42:58 UTC (rev 208146)
@@ -1,31 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: bitwave 
-# Contributor: fnord0 
-
-pkgname=yara
-pkgver=3.5.0
-pkgrel=1
-pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
-url='https://github.com/VirusTotal/yara'
-arch=('i686' 'x86_64')
-license=('Apache')
-makedepends=('openssl' 'file' 'python-setuptools' 'python2-setuptools')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('52b815c59ad086020bd8a002d13b89d671a218c2f3a3214b93fb215f18f7f4b57ed6d27c2aa03218626eb1da1f541a0b1d0b20a3d467950089e5150bc90fe76b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  autoreconf --force --install
-  ./configure --prefix=/usr --with-crypto --enable-magic
-  make
-}
-
-package() {
-  depends=('openssl' 'file')
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
-  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: yara/repos/community-x86_64/PKGBUILD (from rev 208145, 
yara/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-20 18:42:58 UTC (rev 208146)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 

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

2017-01-20 Thread Levente Polyak
Date: Friday, January 20, 2017 @ 18:42:49
  Author: anthraxx
Revision: 208145

upgpkg: yara 3.5.0-2 (package cleanup + fix license)

Modified:
  yara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 18:22:48 UTC (rev 208144)
+++ PKGBUILD2017-01-20 18:42:49 UTC (rev 208145)
@@ -4,27 +4,30 @@
 
 pkgname=yara
 pkgver=3.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
 url='https://github.com/VirusTotal/yara'
 arch=('i686' 'x86_64')
-license=('Apache')
-makedepends=('openssl' 'file' 'python-setuptools' 'python2-setuptools')
+license=('BSD')
+depends=('openssl' 'file')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('52b815c59ad086020bd8a002d13b89d671a218c2f3a3214b93fb215f18f7f4b57ed6d27c2aa03218626eb1da1f541a0b1d0b20a3d467950089e5150bc90fe76b')
+sha512sums=('84e3b8248749271f154c05216417be76c56563012c0a2013fde5184c6ed03d2933c456d61f036292c42030b52705d5c6e94824d1fd36dbffe46af625ddedaaf5')
 
 build() {
   cd ${pkgname}-${pkgver}
-  autoreconf --force --install
-  ./configure --prefix=/usr --with-crypto --enable-magic
+  autoreconf -fiv
+  ./configure \
+--prefix=/usr \
+--with-crypto \
+--enable-magic
   make
 }
 
 package() {
-  depends=('openssl' 'file')
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
   cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
 }
 


[arch-commits] Commit in kompozer/trunk (PKGBUILD mozconfig.patch)

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 18:22:34
  Author: bgyorgy
Revision: 208143

upgpkg: kompozer 0.8b3-19

Remove deprecated gnome-vfs dependency

Modified:
  kompozer/trunk/PKGBUILD
  kompozer/trunk/mozconfig.patch

-+
 PKGBUILD|8 
 mozconfig.patch |4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 17:36:49 UTC (rev 208142)
+++ PKGBUILD2017-01-20 18:22:34 UTC (rev 208143)
@@ -11,13 +11,13 @@
 
 pkgname=kompozer
 pkgver=0.8b3
-pkgrel=18
+pkgrel=19
 pkgdesc="A Dreamweaver style WYSIWYG web editor; Nvu unofficial bug-fix 
release"
 arch=('x86_64' 'i686')
 license=('GPL')
 url="http://www.kompozer.net;
-depends=('gtk2' 'nss' 'libxt' 'libidl2' 'gnome-vfs' 'desktop-file-utils')
-makedepends=('zip' 'pkgconfig' 'pangox-compat' 'nss')
+depends=('gtk2' 'nss' 'libxt' 'libidl2')
+makedepends=('zip' 'pangox-compat')
 options=('!buildflags')
 
source=("http://downloads.sourceforge.net/kompozer/${pkgname}-${pkgver}-src.tar.bz2;
 
 'kompozer.desktop' 
@@ -34,7 +34,7 @@
 
"bug_698592_cxx11_user_defined_literals.patch"::"https://bug698592.bmoattachments.org/attachment.cgi?id=573137;)
 sha256sums=('9dfef34e5941ce1e68e2f952c9783b281a74be226dad3ab1a2b1b8c99df5c5e3'
 '9c051098389cfe8cb0f2fa296022e9160417af7601d0f2543d22823ee3f230d9'
-'188ca29c3e0d15ebafe2c8cdc9b4daf9bec0d1b5477206590ddc7a02230d925d'
+'46ee83e2875129bab821ce5965ddb923683c9745b718f3c8689e9758c45df4b7'
 'bbab99625647ca678c3b399551c945647117f817f238905c9c0babe1db941773'
 '7319c26c9c16e3817377815d5cc9b2f490a49c5a51a5d3bee0f496a2931c64c1'
 'cefc169f14a02591d335cf4763e057284a3350edb2e4474fad0e92c5273e25fb'

Modified: mozconfig.patch
===
--- mozconfig.patch 2017-01-20 17:36:49 UTC (rev 208142)
+++ mozconfig.patch 2017-01-20 18:22:34 UTC (rev 208143)
@@ -1,6 +1,6 @@
 --- .mozconfig 2009-04-26 16:19:33.0 +0100
 +++ .mozconfig 1970-01-01 10:14:21.0 +0100
-@@ -1,85 +1,80 @@
+@@ -1,85 +1,79 @@
 -# Pulling Composer from the 1.8 Mozilla branch (cvs)
 -#$ cvs -d :pserver:anonym...@cvs-mirror.mozilla.org:/cvsroot co -r 
MOZILLA_1_8_BRANCH mozilla/client.mk
 -#$ cvs -d :pserver:anonym...@cvs-mirror.mozilla.org:/cvsroot co -r 
FIREFOX_2_0_0_20_RELEASE mozilla/client.mk
@@ -114,7 +114,7 @@
 +ac_add_options --with-system-jpeg
 +ac_add_options --with-system-zlib
  
- ac_add_options --enable-gnomevfs
+-ac_add_options --enable-gnomevfs
 -ac_add_options --enable-xinerama
  ac_add_options --enable-single-profile
  ac_add_options --disable-profilesharing


[arch-commits] Commit in kompozer/repos (48 files)

2017-01-20 Thread Balló György
Date: Friday, January 20, 2017 @ 18:22:48
  Author: bgyorgy
Revision: 208144

archrelease: copy trunk to community-x86_64, community-i686

Added:
  kompozer/repos/community-i686/NS_IMETHOD_i686.patch
(from rev 208143, kompozer/trunk/NS_IMETHOD_i686.patch)
  kompozer/repos/community-i686/PKGBUILD
(from rev 208143, kompozer/trunk/PKGBUILD)
  kompozer/repos/community-i686/any_kernel_26_plus.patch
(from rev 208143, kompozer/trunk/any_kernel_26_plus.patch)
  kompozer/repos/community-i686/external-nss-for-shlibsign.patch
(from rev 208143, kompozer/trunk/external-nss-for-shlibsign.patch)
  kompozer/repos/community-i686/freetype-pango.patch
(from rev 208143, kompozer/trunk/freetype-pango.patch)
  kompozer/repos/community-i686/freetype-xft.patch
(from rev 208143, kompozer/trunk/freetype-xft.patch)
  kompozer/repos/community-i686/gcc46_default_ctors.patch
(from rev 208143, kompozer/trunk/gcc46_default_ctors.patch)
  kompozer/repos/community-i686/kompozer-libpng14.patch
(from rev 208143, kompozer/trunk/kompozer-libpng14.patch)
  kompozer/repos/community-i686/kompozer-libpng15.patch
(from rev 208143, kompozer/trunk/kompozer-libpng15.patch)
  kompozer/repos/community-i686/kompozer.desktop
(from rev 208143, kompozer/trunk/kompozer.desktop)
  kompozer/repos/community-i686/kompozer_gcc_4.7.patch
(from rev 208143, kompozer/trunk/kompozer_gcc_4.7.patch)
  kompozer/repos/community-i686/mozconfig.patch
(from rev 208143, kompozer/trunk/mozconfig.patch)
  kompozer/repos/community-x86_64/NS_IMETHOD_i686.patch
(from rev 208143, kompozer/trunk/NS_IMETHOD_i686.patch)
  kompozer/repos/community-x86_64/PKGBUILD
(from rev 208143, kompozer/trunk/PKGBUILD)
  kompozer/repos/community-x86_64/any_kernel_26_plus.patch
(from rev 208143, kompozer/trunk/any_kernel_26_plus.patch)
  kompozer/repos/community-x86_64/external-nss-for-shlibsign.patch
(from rev 208143, kompozer/trunk/external-nss-for-shlibsign.patch)
  kompozer/repos/community-x86_64/freetype-pango.patch
(from rev 208143, kompozer/trunk/freetype-pango.patch)
  kompozer/repos/community-x86_64/freetype-xft.patch
(from rev 208143, kompozer/trunk/freetype-xft.patch)
  kompozer/repos/community-x86_64/gcc46_default_ctors.patch
(from rev 208143, kompozer/trunk/gcc46_default_ctors.patch)
  kompozer/repos/community-x86_64/kompozer-libpng14.patch
(from rev 208143, kompozer/trunk/kompozer-libpng14.patch)
  kompozer/repos/community-x86_64/kompozer-libpng15.patch
(from rev 208143, kompozer/trunk/kompozer-libpng15.patch)
  kompozer/repos/community-x86_64/kompozer.desktop
(from rev 208143, kompozer/trunk/kompozer.desktop)
  kompozer/repos/community-x86_64/kompozer_gcc_4.7.patch
(from rev 208143, kompozer/trunk/kompozer_gcc_4.7.patch)
  kompozer/repos/community-x86_64/mozconfig.patch
(from rev 208143, kompozer/trunk/mozconfig.patch)
Deleted:
  kompozer/repos/community-i686/NS_IMETHOD_i686.patch
  kompozer/repos/community-i686/PKGBUILD
  kompozer/repos/community-i686/any_kernel_26_plus.patch
  kompozer/repos/community-i686/external-nss-for-shlibsign.patch
  kompozer/repos/community-i686/freetype-pango.patch
  kompozer/repos/community-i686/freetype-xft.patch
  kompozer/repos/community-i686/gcc46_default_ctors.patch
  kompozer/repos/community-i686/kompozer-libpng14.patch
  kompozer/repos/community-i686/kompozer-libpng15.patch
  kompozer/repos/community-i686/kompozer.desktop
  kompozer/repos/community-i686/kompozer_gcc_4.7.patch
  kompozer/repos/community-i686/mozconfig.patch
  kompozer/repos/community-x86_64/NS_IMETHOD_i686.patch
  kompozer/repos/community-x86_64/PKGBUILD
  kompozer/repos/community-x86_64/any_kernel_26_plus.patch
  kompozer/repos/community-x86_64/external-nss-for-shlibsign.patch
  kompozer/repos/community-x86_64/freetype-pango.patch
  kompozer/repos/community-x86_64/freetype-xft.patch
  kompozer/repos/community-x86_64/gcc46_default_ctors.patch
  kompozer/repos/community-x86_64/kompozer-libpng14.patch
  kompozer/repos/community-x86_64/kompozer-libpng15.patch
  kompozer/repos/community-x86_64/kompozer.desktop
  kompozer/repos/community-x86_64/kompozer_gcc_4.7.patch
  kompozer/repos/community-x86_64/mozconfig.patch

---+
 /NS_IMETHOD_i686.patch|   22 +
 /PKGBUILD |  182 
 /any_kernel_26_plus.patch |   62 
 /external-nss-for-shlibsign.patch |   24 +
 /freetype-pango.patch |   22 +
 /freetype-xft.patch   |   26 +
 /gcc46_default_ctors.patch|   44 +++
 /kompozer-libpng14.patch  |   34 ++
 /kompozer-libpng15.patch  |  128 +
 /kompozer.desktop |   22 +
 /kompozer_gcc_4.7.patch   |  214 +++
 /mozconfig.patch

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

2017-01-20 Thread Dave Reisner
Date: Friday, January 20, 2017 @ 17:48:34
  Author: dreisner
Revision: 287026

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  util-linux/repos/testing-i686/
  util-linux/repos/testing-i686/0001-sfdisk-support-empty-label-use-case.patch
(from rev 287025, 
util-linux/trunk/0001-sfdisk-support-empty-label-use-case.patch)
  util-linux/repos/testing-i686/PKGBUILD
(from rev 287025, util-linux/trunk/PKGBUILD)
  util-linux/repos/testing-i686/pam-common
(from rev 287025, util-linux/trunk/pam-common)
  util-linux/repos/testing-i686/pam-login
(from rev 287025, util-linux/trunk/pam-login)
  util-linux/repos/testing-i686/pam-su
(from rev 287025, util-linux/trunk/pam-su)
  util-linux/repos/testing-x86_64/
  util-linux/repos/testing-x86_64/0001-sfdisk-support-empty-label-use-case.patch
(from rev 287025, 
util-linux/trunk/0001-sfdisk-support-empty-label-use-case.patch)
  util-linux/repos/testing-x86_64/PKGBUILD
(from rev 287025, util-linux/trunk/PKGBUILD)
  util-linux/repos/testing-x86_64/pam-common
(from rev 287025, util-linux/trunk/pam-common)
  util-linux/repos/testing-x86_64/pam-login
(from rev 287025, util-linux/trunk/pam-login)
  util-linux/repos/testing-x86_64/pam-su
(from rev 287025, util-linux/trunk/pam-su)

---+
 testing-i686/0001-sfdisk-support-empty-label-use-case.patch   |  223 ++
 testing-i686/PKGBUILD |  104 
 testing-i686/pam-common   |6 
 testing-i686/pam-login|7 
 testing-i686/pam-su   |9 
 testing-x86_64/0001-sfdisk-support-empty-label-use-case.patch |  223 ++
 testing-x86_64/PKGBUILD   |  104 
 testing-x86_64/pam-common |6 
 testing-x86_64/pam-login  |7 
 testing-x86_64/pam-su |9 
 10 files changed, 698 insertions(+)

Copied: 
util-linux/repos/testing-i686/0001-sfdisk-support-empty-label-use-case.patch 
(from rev 287025, 
util-linux/trunk/0001-sfdisk-support-empty-label-use-case.patch)
===
--- testing-i686/0001-sfdisk-support-empty-label-use-case.patch 
(rev 0)
+++ testing-i686/0001-sfdisk-support-empty-label-use-case.patch 2017-01-20 
17:48:34 UTC (rev 287026)
@@ -0,0 +1,223 @@
+From 35ca51182782193f555fbdcb06bb10766550d017 Mon Sep 17 00:00:00 2001
+From: Karel Zak 
+Date: Wed, 30 Nov 2016 12:43:10 +0100
+Subject: [PATCH] sfdisk: support empty label use-case
+
+By default sfdisk creates partition table when a first partition is
+specified, otherwise the device is not modified. This force users to
+create at least one partition.
+
+This commit allows to create empty label without partitions if "label:
+" header line is specified by script.
+
+The commit also modifies "New situation:" output to list label name
+and label identifier.
+
+Addresses: https://github.com/karelzak/util-linux/issues/374
+Signed-off-by: Karel Zak 
+---
+ disk-utils/fdisk-list.c| 23 +++
+ disk-utils/fdisk-list.h|  1 +
+ disk-utils/sfdisk.8| 18 +-
+ disk-utils/sfdisk.c| 17 +
+ libfdisk/src/libfdisk.h.in |  1 +
+ libfdisk/src/libfdisk.sym  |  5 +
+ libfdisk/src/script.c  | 20 +++-
+ 7 files changed, 75 insertions(+), 10 deletions(-)
+
+diff --git a/disk-utils/fdisk-list.c b/disk-utils/fdisk-list.c
+index e6b2033..c9560f4 100644
+--- a/disk-utils/fdisk-list.c
 b/disk-utils/fdisk-list.c
+@@ -34,10 +34,23 @@ static int is_ide_cdrom_or_tape(char *device)
+   return ret;
+ }
+ 
++void list_disk_identifier(struct fdisk_context *cxt)
++{
++  struct fdisk_label *lb = fdisk_get_label(cxt, NULL);
++  char *id = NULL;
++
++  if (fdisk_has_label(cxt))
++  fdisk_info(cxt, _("Disklabel type: %s"),
++  fdisk_label_get_name(lb));
++
++  if (!fdisk_is_details(cxt) && fdisk_get_disklabel_id(cxt, ) == 0 && 
id) {
++  fdisk_info(cxt, _("Disk identifier: %s"), id);
++  free(id);
++  }
++}
+ 
+ void list_disk_geometry(struct fdisk_context *cxt)
+ {
+-  char *id = NULL;
+   struct fdisk_label *lb = fdisk_get_label(cxt, NULL);
+   uint64_t bytes = fdisk_get_nsectors(cxt) * fdisk_get_sector_size(cxt);
+   char *strsz = size_to_human_string(SIZE_SUFFIX_SPACE
+@@ -71,14 +84,8 @@ void list_disk_geometry(struct fdisk_context *cxt)
+   if (fdisk_get_alignment_offset(cxt))
+   fdisk_info(cxt, _("Alignment offset: %lu bytes"),
+   fdisk_get_alignment_offset(cxt));
+-  if (fdisk_has_label(cxt))
+-  fdisk_info(cxt, 

[arch-commits] Commit in util-linux/trunk (5 files)

2017-01-20 Thread Dave Reisner
Date: Friday, January 20, 2017 @ 17:47:35
  Author: dreisner
Revision: 287025

upgpkg: util-linux 2.29.1-1

Modified:
  util-linux/trunk/PKGBUILD
Deleted:
  util-linux/trunk/0001-chrt-default-to-SCHED_RR-policy.patch
  
util-linux/trunk/0001-lsns-Fix-parser-for-proc-pid-stat-which-is-including.patch
  util-linux/trunk/0001-sfdisk-cleanup-dump-error-messages.patch
  
util-linux/trunk/0001-sfdisk-don-t-be-silent-when-list-non-existing-device.patch

-+
 0001-chrt-default-to-SCHED_RR-policy.patch  |   39 
 0001-lsns-Fix-parser-for-proc-pid-stat-which-is-including.patch |   79 
--
 0001-sfdisk-cleanup-dump-error-messages.patch   |   44 -
 0001-sfdisk-don-t-be-silent-when-list-non-existing-device.patch |   70 
 PKGBUILD|   23 --
 5 files changed, 5 insertions(+), 250 deletions(-)

Deleted: 0001-chrt-default-to-SCHED_RR-policy.patch
===
--- 0001-chrt-default-to-SCHED_RR-policy.patch  2017-01-20 17:13:06 UTC (rev 
287024)
+++ 0001-chrt-default-to-SCHED_RR-policy.patch  2017-01-20 17:47:35 UTC (rev 
287025)
@@ -1,39 +0,0 @@
-From c7adc2f204f19167f781fa2ee739e0ca386fc4f5 Mon Sep 17 00:00:00 2001
-From: Andreas Henriksson 
-Date: Fri, 2 Dec 2016 15:10:18 +0100
-Subject: [PATCH] chrt: default to SCHED_RR policy
-
-This fixes a regression introduced in:
-
-commit 7a4ea5664edba98bff28adec3a9c3cfb5763a495
-"chrt: add control struct"
-
-Previously (and as documented in the manpage) the default policy
-was SCHED_RR. Now it's implicitly SCHED_OTHER (0) as the value
-is not initialized explicitly anymore.
-
-Test-command: chrt 90 echo hello
-
-Reported-by: Patrick Pelissier 
-Addresses: http://bugs.debian.org/846572
-Signed-off-by: Andreas Henriksson 

- schedutils/chrt.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/schedutils/chrt.c b/schedutils/chrt.c
-index a861d9f..73d1ffa 100644
 a/schedutils/chrt.c
-+++ b/schedutils/chrt.c
-@@ -409,7 +409,7 @@ static void set_sched(struct chrt_ctl *ctl)
- 
- int main(int argc, char **argv)
- {
--  struct chrt_ctl _ctl = { .pid = -1 }, *ctl = &_ctl;
-+  struct chrt_ctl _ctl = { .pid = -1, .policy = SCHED_RR }, *ctl = &_ctl;
-   int c;
- 
-   static const struct option longopts[] = {
--- 
-2.10.2
-

Deleted: 0001-lsns-Fix-parser-for-proc-pid-stat-which-is-including.patch
===
--- 0001-lsns-Fix-parser-for-proc-pid-stat-which-is-including.patch 
2017-01-20 17:13:06 UTC (rev 287024)
+++ 0001-lsns-Fix-parser-for-proc-pid-stat-which-is-including.patch 
2017-01-20 17:47:35 UTC (rev 287025)
@@ -1,79 +0,0 @@
-From 3fcbd7978980dc1a29c626b701333e27599e506d Mon Sep 17 00:00:00 2001
-From: OGAWA Hirofumi 
-Date: Wed, 23 Nov 2016 14:13:34 +0900
-Subject: [PATCH] lsns: Fix parser for /proc//stat which is including
- space in comm
-
-For example, child process of spamd has
-
-32031 (spamd child) S 32026 32026 32026 0 -1 4210752 338 0 0 0 ...
-
-fscanf("%d %*s %c %d*[^\n]") in read_process() can't parse above as we
-expected, because %s only skips non-whitespace. I.e. it parses like
-following,
-
-32031 (spamd child) S 32026 32026 32026 0 -1 4210752 338 0 0 0 ...
-+---+ ++ +
-  %d%*s  %c
-
-and returns 2 (pid=32031, state=c).
-
-This fixes it by skipping task->comm part manually.
-
-Signed-off-by: OGAWA Hirofumi 

- sys-utils/lsns.c | 30 ++
- 1 file changed, 26 insertions(+), 4 deletions(-)
-
-diff --git a/sys-utils/lsns.c b/sys-utils/lsns.c
-index e4fd208..809737c 100644
 a/sys-utils/lsns.c
-+++ b/sys-utils/lsns.c
-@@ -217,6 +217,30 @@ static int get_ns_ino(int dir, const char *nsname, ino_t 
*ino)
-   return 0;
- }
- 
-+static int parse_proc_stat(FILE *fp, pid_t *pid, char *state, pid_t *ppid)
-+{
-+  char *line = NULL, *p;
-+  size_t len = 0;
-+  int rc;
-+
-+  if (getline(, , fp) < 0) {
-+  rc = -errno;
-+  goto error;
-+  }
-+
-+  p = strrchr(line, ')');
-+  if (p == NULL ||
-+  sscanf(line, "%d (", pid) != 1 ||
-+  sscanf(p, ") %c %d*[^\n]", state, ppid) != 2) {
-+  rc = -EINVAL;
-+  goto error;
-+  }
-+  rc = 0;
-+
-+error:
-+  free(line);
-+  return rc;
-+}
- 
- static int read_process(struct lsns *ls, pid_t pid)
- {
-@@ -255,11 +279,9 @@ static int read_process(struct lsns *ls, pid_t pid)
-   rc = -errno;
-   goto done;
-   }
--  rc = fscanf(f, "%d %*s %c %d*[^\n]", >pid, >state, >ppid);
--  if (rc != 3) {
--  rc = rc < 0 ? -errno : -EINVAL;
-+  rc = parse_proc_stat(f, >pid, >state, >ppid);

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

2017-01-20 Thread Levente Polyak
Date: Friday, January 20, 2017 @ 17:36:49
  Author: anthraxx
Revision: 208142

switch upstream url to new one

Modified:
  awesome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 15:44:02 UTC (rev 208141)
+++ PKGBUILD2017-01-20 17:36:49 UTC (rev 208142)
@@ -10,7 +10,7 @@
 pkgver=4.0
 pkgrel=1
 pkgdesc='Highly configurable framework window manager'
-url='http://awesome.naquadah.org/'
+url='https://awesomewm.org/'
 arch=('i686' 'x86_64')
 license=('GPL2')
 depends=('cairo' 'dbus' 'gdk-pixbuf2' 'imlib2' 'libxdg-basedir' 'lua' 
'lua-lgi' 'pango'


[arch-commits] Commit in truecrypt/repos (28 files)

2017-01-20 Thread Levente Polyak
Date: Friday, January 20, 2017 @ 17:13:06
  Author: anthraxx
Revision: 287024

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  truecrypt/repos/extra-i686/PKGBUILD
(from rev 287023, truecrypt/trunk/PKGBUILD)
  truecrypt/repos/extra-i686/fix-invalid-characters.patch
(from rev 287023, truecrypt/trunk/fix-invalid-characters.patch)
  truecrypt/repos/extra-i686/gcc6.patch
(from rev 287023, truecrypt/trunk/gcc6.patch)
  truecrypt/repos/extra-i686/no-exec-stack.patch
(from rev 287023, truecrypt/trunk/no-exec-stack.patch)
  truecrypt/repos/extra-i686/truecrypt-arch-detection.patch
(from rev 287023, truecrypt/trunk/truecrypt-arch-detection.patch)
  truecrypt/repos/extra-i686/truecrypt.desktop
(from rev 287023, truecrypt/trunk/truecrypt.desktop)
  truecrypt/repos/extra-i686/wxwidgets3.patch
(from rev 287023, truecrypt/trunk/wxwidgets3.patch)
  truecrypt/repos/extra-i686/xdg-open.patch
(from rev 287023, truecrypt/trunk/xdg-open.patch)
  truecrypt/repos/extra-x86_64/PKGBUILD
(from rev 287023, truecrypt/trunk/PKGBUILD)
  truecrypt/repos/extra-x86_64/fix-invalid-characters.patch
(from rev 287023, truecrypt/trunk/fix-invalid-characters.patch)
  truecrypt/repos/extra-x86_64/gcc6.patch
(from rev 287023, truecrypt/trunk/gcc6.patch)
  truecrypt/repos/extra-x86_64/no-exec-stack.patch
(from rev 287023, truecrypt/trunk/no-exec-stack.patch)
  truecrypt/repos/extra-x86_64/truecrypt-arch-detection.patch
(from rev 287023, truecrypt/trunk/truecrypt-arch-detection.patch)
  truecrypt/repos/extra-x86_64/truecrypt.desktop
(from rev 287023, truecrypt/trunk/truecrypt.desktop)
  truecrypt/repos/extra-x86_64/wxwidgets3.patch
(from rev 287023, truecrypt/trunk/wxwidgets3.patch)
  truecrypt/repos/extra-x86_64/xdg-open.patch
(from rev 287023, truecrypt/trunk/xdg-open.patch)
Deleted:
  truecrypt/repos/extra-i686/PKGBUILD
  truecrypt/repos/extra-i686/fix-invalid-characters.patch
  truecrypt/repos/extra-i686/gcc6.patch
  truecrypt/repos/extra-i686/no-exec-stack.patch
  truecrypt/repos/extra-i686/truecrypt-arch-detection.patch
  truecrypt/repos/extra-i686/truecrypt.desktop
  truecrypt/repos/extra-x86_64/PKGBUILD
  truecrypt/repos/extra-x86_64/fix-invalid-characters.patch
  truecrypt/repos/extra-x86_64/gcc6.patch
  truecrypt/repos/extra-x86_64/no-exec-stack.patch
  truecrypt/repos/extra-x86_64/truecrypt-arch-detection.patch
  truecrypt/repos/extra-x86_64/truecrypt.desktop

-+
 /PKGBUILD   |  136 ++
 /fix-invalid-characters.patch   |  108 +++
 /gcc6.patch |  122 
 /no-exec-stack.patch|  120 
 /truecrypt-arch-detection.patch |   30 +++
 /truecrypt.desktop  |   18 +
 extra-i686/PKGBUILD |   62 --
 extra-i686/fix-invalid-characters.patch |   54 -
 extra-i686/gcc6.patch   |   61 --
 extra-i686/no-exec-stack.patch  |   60 --
 extra-i686/truecrypt-arch-detection.patch   |   15 -
 extra-i686/truecrypt.desktop|9 
 extra-i686/wxwidgets3.patch |  249 ++
 extra-i686/xdg-open.patch   |   81 
 extra-x86_64/PKGBUILD   |   62 --
 extra-x86_64/fix-invalid-characters.patch   |   54 -
 extra-x86_64/gcc6.patch |   61 --
 extra-x86_64/no-exec-stack.patch|   60 --
 extra-x86_64/truecrypt-arch-detection.patch |   15 -
 extra-x86_64/truecrypt.desktop  |9 
 extra-x86_64/wxwidgets3.patch   |  249 ++
 extra-x86_64/xdg-open.patch |   81 
 22 files changed, 1194 insertions(+), 522 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-20 17:12:50 UTC (rev 287023)
+++ extra-i686/PKGBUILD 2017-01-20 17:13:06 UTC (rev 287024)
@@ -1,62 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Rémy Oudompheng 
-# Contributor: Paul Mattal 
-
-pkgname=truecrypt
-pkgver=7.1a
-pkgrel=4
-epoch=1
-pkgdesc='Free open-source cross-platform disk encryption software'
-url='http://www.truecrypt.org/'
-arch=('i686' 'x86_64')
-license=('custom:TrueCrypt')
-depends=('fuse>=2.8.0' 'wxgtk2.8>=2.8.9' 'libsm' 'device-mapper')
-optdepends=('sudo: mounting encrypted volumes as nonroot users')
-makedepends=('nasm')
-conflicts=('truecrypt-utils')
-replaces=('truecrypt-utils')
-# N.B. Truecrypt's web-based source download is incompatible with
-# makepkg. Source has been placed on ftp.archlinux.org instead
-source=(https://sources.archlinux.org/other/tc/truecrypt-${pkgver}.tar.gz{,.sig}
-https://sources.archlinux.org/other/tc/pkcs-2.20.tar.gz
-

[arch-commits] Commit in truecrypt/trunk (PKGBUILD wxwidgets3.patch xdg-open.patch)

2017-01-20 Thread Levente Polyak
Date: Friday, January 20, 2017 @ 17:12:50
  Author: anthraxx
Revision: 287023

upgpkg: truecrypt 1:7.1a-5 (wxgtk>=3 compatibility)

backport "open directory" patch for FS#38477

Added:
  truecrypt/trunk/wxwidgets3.patch
  truecrypt/trunk/xdg-open.patch
Modified:
  truecrypt/trunk/PKGBUILD

--+
 PKGBUILD |   16 ++-
 wxwidgets3.patch |  249 +
 xdg-open.patch   |   81 +
 3 files changed, 341 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 15:46:57 UTC (rev 287022)
+++ PKGBUILD2017-01-20 17:12:50 UTC (rev 287023)
@@ -4,13 +4,13 @@
 
 pkgname=truecrypt
 pkgver=7.1a
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc='Free open-source cross-platform disk encryption software'
 url='http://www.truecrypt.org/'
 arch=('i686' 'x86_64')
 license=('custom:TrueCrypt')
-depends=('fuse2>=2.8.0' 'wxgtk2.8>=2.8.9' 'libsm' 'device-mapper')
+depends=('fuse2>=2.8.0' 'wxgtk' 'libsm' 'device-mapper')
 optdepends=('sudo: mounting encrypted volumes as nonroot users')
 makedepends=('nasm')
 conflicts=('truecrypt-utils')
@@ -23,7 +23,9 @@
 truecrypt-arch-detection.patch
 gcc6.patch
 fix-invalid-characters.patch
-no-exec-stack.patch)
+no-exec-stack.patch
+wxwidgets3.patch
+xdg-open.patch)
 
sha512sums=('b5e766023168015cb91bfd85c9e2621055dd98408215e02704775861b5070c5a0234a00c64c1bf7faa34e6d0b51ac71cd36169dd7a6f84d7a34ad0cfa304796a'
 'SKIP'
 
'd69d90040da5bc93f91041ed9404f1614a3b1bdc8eddc2bbbd19367f12d2416a6f3af8b0071d77e1273d627148c63ebe7ebe332878fbe9adb8ae33dcc723f473'
@@ -31,7 +33,9 @@
 
'fac6963c65720f0b13486ff22bdcc2e31e78c39ede2b9561b2c4037ef2c0375f04c4d51dc6067c37aaeb664c3ed70e5747488389737c41807680750c26a8f084'
 
'84175a3677f20b2b03ab29b017b9deecb517a58a640cf667b503cc9375c104b9c0a5d5ea4b3537ba7f12530054a456b466df0afdd935714cd43034b8e6cb2b7c'
 
'd52826572178a471bb608fd4991766f4f9fa7c5cbf3659922372feb9fdfcbab596d5f1360e30f66613681619672d0be6c5457f5617f5fb1f84061de779831f96'
-
'c64f9255303a521b4e531ebea574befe80a9f193c9aa42fd9cb552e56d087815ca161b50b593e7c3ede10a65c67dc36d0447dbffb0f4d4614f181a95759c2f79')
+
'c64f9255303a521b4e531ebea574befe80a9f193c9aa42fd9cb552e56d087815ca161b50b593e7c3ede10a65c67dc36d0447dbffb0f4d4614f181a95759c2f79'
+
'f5dcbcd046489b52657fd99ec1d4d926883414b450af5bbd90890b210988f75055346c9276526486e9db00bffd50926e01c4f17da18144ad903fb40d81043769'
+
'e60f780bbd2d72ff86ce14df6bda929e696c825f20ccc54bee74c6fc85a98cbf73ccfdb311f6e33c92ef3f7e9095907ab98d62cfe067ab6254513731e9d69ab7')
 validpgpkeys=('C5F4BAC4A7B22DB8B8F85538E3BA73CAF0D6B1E0') # TrueCrypt 
Foundation
 
 prepare() {
@@ -40,12 +44,14 @@
   patch -p0 < "${srcdir}/gcc6.patch"
   patch -p2 < "${srcdir}/fix-invalid-characters.patch"
   patch -p0 < "${srcdir}/no-exec-stack.patch"
+  patch -p2 < "${srcdir}/wxwidgets3.patch"
+  patch -p2 < "${srcdir}/xdg-open.patch"
 }
 
 build() {
   cd ${pkgname}-${pkgver}-source
   make PKCS11_INC="${srcdir}/pkcs-2.20" \
-WX_CONFIG=/usr/bin/wx-config-2.8 \
+WX_CONFIG=/usr/bin/wx-config \
 TC_EXTRA_LFLAGS+="-ldl ${LDFLAGS}" \
 TC_EXTRA_CXXFLAGS="${CXXFLAGS}" \
 TC_EXTRA_CFLAGS="${CFLAGS}"

Added: wxwidgets3.patch
===
--- wxwidgets3.patch(rev 0)
+++ wxwidgets3.patch2017-01-20 17:12:50 UTC (rev 287023)
@@ -0,0 +1,249 @@
+From 084a8ee85c24fbc7077d6c789c97aacdb31b4e39 Mon Sep 17 00:00:00 2001
+From: Mounir IDRASSI 
+Date: Sun, 8 Jun 2014 00:45:49 +0200
+Subject: [PATCH] wxWidgets 3.0 compatibility modifications
+
+---
+ src/Main/Application.cpp |  6 +++---
+ src/Main/CommandLineInterface.cpp| 12 ++--
+ src/Main/Forms/MainFrame.cpp |  2 +-
+ src/Main/Forms/SelectDirectoryWizardPage.cpp |  2 +-
+ src/Main/Forms/SelectDirectoryWizardPage.h   |  2 +-
+ src/Main/GraphicUserInterface.cpp|  6 +++---
+ src/Main/TextUserInterface.cpp   |  2 +-
+ src/Main/UserPreferences.cpp |  2 +-
+ 8 files changed, 17 insertions(+), 17 deletions(-)
+
+diff --git a/src/Main/Application.cpp b/src/Main/Application.cpp
+index 8c6dea1..2d49169 100644
+--- a/src/Main/Application.cpp
 b/src/Main/Application.cpp
+@@ -36,7 +36,7 @@ namespace TrueCrypt
+ 
+   FilePath Application::GetConfigFilePath (const wxString 
, bool createConfigDir)
+   {
+-  wxStandardPaths stdPaths;
++  wxStandardPaths& stdPaths = wxStandardPaths::Get();
+   DirectoryPath configDir;
+   
+   if (!Core->IsInPortableMode())
+@@ -61,12 +61,12 @@ namespace TrueCrypt
+ 
+   DirectoryPath Application::GetExecutableDirectory ()
+   {
+-   

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

2017-01-20 Thread Antonio Rojas
Date: Friday, January 20, 2017 @ 15:46:57
  Author: arojas
Revision: 287022

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ffmpegthumbnailer/repos/testing-i686/
  ffmpegthumbnailer/repos/testing-i686/PKGBUILD
(from rev 287021, ffmpegthumbnailer/trunk/PKGBUILD)
  ffmpegthumbnailer/repos/testing-x86_64/
  ffmpegthumbnailer/repos/testing-x86_64/PKGBUILD
(from rev 287021, ffmpegthumbnailer/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: ffmpegthumbnailer/repos/testing-i686/PKGBUILD (from rev 287021, 
ffmpegthumbnailer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-20 15:46:57 UTC (rev 287022)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: boro...@gmail.com
+
+pkgname=ffmpegthumbnailer
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Lightweight video thumbnailer that can be used by file managers."
+url="https://github.com/dirkvdb/ffmpegthumbnailer;
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('ffmpeg' 'libjpeg' 'libpng')
+makedepends=('cmake')
+optdepends=('gvfs: support for gio uris')
+source=("https://github.com/dirkvdb/$pkgname/archive/$pkgver.tar.gz;)
+sha1sums=('cbd130569ed56f8e3097378b52d66dde2f23b0d4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  mkdir -p build
+  cd build
+  cmake .. \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DENABLE_GIO=ON \
+   -DENABLE_THUMBNAILER=ON
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: ffmpegthumbnailer/repos/testing-x86_64/PKGBUILD (from rev 287021, 
ffmpegthumbnailer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-20 15:46:57 UTC (rev 287022)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: boro...@gmail.com
+
+pkgname=ffmpegthumbnailer
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Lightweight video thumbnailer that can be used by file managers."
+url="https://github.com/dirkvdb/ffmpegthumbnailer;
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('ffmpeg' 'libjpeg' 'libpng')
+makedepends=('cmake')
+optdepends=('gvfs: support for gio uris')
+source=("https://github.com/dirkvdb/$pkgname/archive/$pkgver.tar.gz;)
+sha1sums=('cbd130569ed56f8e3097378b52d66dde2f23b0d4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  mkdir -p build
+  cd build
+  cmake .. \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DENABLE_GIO=ON \
+   -DENABLE_THUMBNAILER=ON
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"/build
+  make DESTDIR="${pkgdir}" install
+}


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

2017-01-20 Thread Antonio Rojas
Date: Friday, January 20, 2017 @ 15:46:01
  Author: arojas
Revision: 287021

Update to 2.2.0

Modified:
  ffmpegthumbnailer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 14:52:50 UTC (rev 287020)
+++ PKGBUILD2017-01-20 15:46:01 UTC (rev 287021)
@@ -3,7 +3,7 @@
 # Contributor: boro...@gmail.com
 
 pkgname=ffmpegthumbnailer
-pkgver=2.1.1
+pkgver=2.2.0
 pkgrel=1
 pkgdesc="Lightweight video thumbnailer that can be used by file managers."
 url="https://github.com/dirkvdb/ffmpegthumbnailer;
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 optdepends=('gvfs: support for gio uris')
 source=("https://github.com/dirkvdb/$pkgname/archive/$pkgver.tar.gz;)
-sha1sums=('a5e7f15a95990349d6b54a13d723d209e19eab35')
+sha1sums=('cbd130569ed56f8e3097378b52d66dde2f23b0d4')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-01-20 Thread Jakob Gruber
Date: Friday, January 20, 2017 @ 15:44:02
  Author: schuay
Revision: 208141

archrelease: copy trunk to community-any

Added:
  abcde/repos/community-any/PKGBUILD
(from rev 208140, abcde/trunk/PKGBUILD)
  abcde/repos/community-any/fix-mp3-tagging.patch
(from rev 208140, abcde/trunk/fix-mp3-tagging.patch)
Deleted:
  abcde/repos/community-any/PKGBUILD
  abcde/repos/community-any/fix-mp3-tagging.patch

---+
 PKGBUILD  |   94 
 fix-mp3-tagging.patch |   40 ++--
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-20 15:43:47 UTC (rev 208140)
+++ PKGBUILD2017-01-20 15:44:02 UTC (rev 208141)
@@ -1,47 +0,0 @@
-# $Id$
-# Contributor: Jochem Kossen 
-# Contributor: Kevin Piche 
-# Contributor: Daniel J Griffiths 
-# Maintainer: schuay 
-
-pkgname=abcde
-pkgver=2.7.2
-pkgrel=1
-pkgdesc='A frontend command-line utility that grabs tracks off a CD, encodes 
them to ogg or mp3 format, and tags them, all in one go.'
-arch=('any')
-url='http://abcde.einval.com'
-license=('GPL')
-depends=('bash' 'cd-discid' 'wget' 'vorbis-tools' 'python2-eyed3')
-optdepends=('cdparanoia: Paranoia ripping support'
-'cdrkit: icedax ripping support'
-'eject: Eject support'
-'flac: FLAC encoding support'
-'id3: ID3 v1 tag support'
-'lame: MP3 encoding support'
-'mp3gain: MP3 normalization support'
-'perl-musicbrainz-discid: musicbrainz support (AUR)'
-'perl-webservice-musicbrainz: musicbrainz support (AUR)'
-'vorbisgain: Ogg Vorbis normalization support')
-backup=("etc/${pkgname}.conf")
-source=("http://abcde.einval.com/download/abcde-${pkgver}.tar.gz;
-"http://abcde.einval.com/download/abcde-${pkgver}.tar.gz.sign;
-'fix-mp3-tagging.patch')
-validpgpkeys=('CEBB52301D617E910390FE16587979573442684E'
-  '742D444A5AFAF2951EF33E7BF8FB375D9CC820B3') # Steve McIntyre, 
Andrew Strong
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-patch -Np0 < ${srcdir}/fix-mp3-tagging.patch
-sed -e "s:normalize-audio:normalize:g" -i ${pkgname}
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" install
-}
-
-md5sums=('f9455231436d80329eacedf32441d9be'
- 'SKIP'
- 'c3975dc8389ff2edba6684bbc378d97d')

Copied: abcde/repos/community-any/PKGBUILD (from rev 208140, 
abcde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-20 15:44:02 UTC (rev 208141)
@@ -0,0 +1,47 @@
+# $Id$
+# Contributor: Jochem Kossen 
+# Contributor: Kevin Piche 
+# Contributor: Daniel J Griffiths 
+# Maintainer: schuay 
+
+pkgname=abcde
+pkgver=2.8.1
+pkgrel=1
+pkgdesc='A frontend command-line utility that grabs tracks off a CD, encodes 
them to ogg or mp3 format, and tags them, all in one go.'
+arch=('any')
+url='http://abcde.einval.com'
+license=('GPL')
+depends=('bash' 'cd-discid' 'wget' 'vorbis-tools' 'python2-eyed3')
+optdepends=('cdparanoia: Paranoia ripping support'
+'cdrkit: icedax ripping support'
+'eject: Eject support'
+'flac: FLAC encoding support'
+'id3: ID3 v1 tag support'
+'lame: MP3 encoding support'
+'mp3gain: MP3 normalization support'
+'perl-musicbrainz-discid: musicbrainz support (AUR)'
+'perl-webservice-musicbrainz: musicbrainz support (AUR)'
+'vorbisgain: Ogg Vorbis normalization support')
+backup=("etc/${pkgname}.conf")
+source=("http://abcde.einval.com/download/abcde-${pkgver}.tar.gz;
+"http://abcde.einval.com/download/abcde-${pkgver}.tar.gz.sign;
+'fix-mp3-tagging.patch')
+validpgpkeys=('CEBB52301D617E910390FE16587979573442684E'
+  '742D444A5AFAF2951EF33E7BF8FB375D9CC820B3') # Steve McIntyre, 
Andrew Strong
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+patch -Np0 < ${srcdir}/fix-mp3-tagging.patch
+sed -e "s:normalize-audio:normalize:g" -i ${pkgname}
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" install
+}
+
+md5sums=('29c9819f83615d71eda3489fd3fc5d43'
+ 'SKIP'
+ 'c3975dc8389ff2edba6684bbc378d97d')

Deleted: fix-mp3-tagging.patch
===
--- fix-mp3-tagging.patch   2017-01-20 15:43:47 UTC (rev 208140)
+++ fix-mp3-tagging.patch   2017-01-20 15:44:02 UTC (rev 208141)
@@ -1,20 +0,0 @@
-*** abcde  2010-02-15 16:04:40.0 -0600
 abcde  

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

2017-01-20 Thread Jakob Gruber
Date: Friday, January 20, 2017 @ 15:43:47
  Author: schuay
Revision: 208140

abcde-2.8.1-1

Modified:
  abcde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 15:39:58 UTC (rev 208139)
+++ PKGBUILD2017-01-20 15:43:47 UTC (rev 208140)
@@ -5,7 +5,7 @@
 # Maintainer: schuay 
 
 pkgname=abcde
-pkgver=2.7.2
+pkgver=2.8.1
 pkgrel=1
 pkgdesc='A frontend command-line utility that grabs tracks off a CD, encodes 
them to ogg or mp3 format, and tags them, all in one go.'
 arch=('any')
@@ -42,6 +42,6 @@
 make DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" install
 }
 
-md5sums=('f9455231436d80329eacedf32441d9be'
+md5sums=('29c9819f83615d71eda3489fd3fc5d43'
  'SKIP'
  'c3975dc8389ff2edba6684bbc378d97d')


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

2017-01-20 Thread Massimiliano Torromeo
Date: Friday, January 20, 2017 @ 15:39:58
  Author: mtorromeo
Revision: 208139

archrelease: copy trunk to community-x86_64

Added:
  rkt/repos/community-x86_64/PKGBUILD
(from rev 208138, rkt/trunk/PKGBUILD)
  
rkt/repos/community-x86_64/rkt-1.15.0-stage1-host-reorder-systemd-nspawn-args.patch
(from rev 208138, 
rkt/trunk/rkt-1.15.0-stage1-host-reorder-systemd-nspawn-args.patch)
  rkt/repos/community-x86_64/rkt.sysusers
(from rev 208138, rkt/trunk/rkt.sysusers)
Deleted:
  rkt/repos/community-x86_64/PKGBUILD
  
rkt/repos/community-x86_64/rkt-1.15.0-stage1-host-reorder-systemd-nspawn-args.patch
  rkt/repos/community-x86_64/rkt.sysusers

--+
 PKGBUILD |  194 ++---
 rkt-1.15.0-stage1-host-reorder-systemd-nspawn-args.patch |   70 ++--
 rkt.sysusers |4 
 3 files changed, 134 insertions(+), 134 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-20 15:35:30 UTC (rev 208138)
+++ PKGBUILD2017-01-20 15:39:58 UTC (rev 208139)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-# Contributor: Yuval Adam  PGP-Key: 271386AA2EB7672F
-# Contributor: Kenny Rasschaert  
PGP-Key: 1F70454121E41419
-# Contributor: Adrián Pérez de Castro  
PGP-Key: 91C559DBE4C9123B
-# Contributor: Carl George  PGP-Key: 4BA2F7E101D9F512
-
-pkgname=rkt
-pkgver=1.22.0
-pkgrel=2
-pkgdesc="App container runtime"
-arch=('x86_64')
-url="https://github.com/coreos/rkt;
-license=(apache)
-depends=('glibc' 'openssl' 'zlib' 'systemd')
-makedepends=('cpio' 'go' 'wget' 'squashfs-tools' 'perl-capture-tiny'
- 'intltool' 'gperf' 'git' 'libseccomp' 'bc')
-
-# stage1/usr_from_coreos/coreos-common.mk
-CCN_IMG_RELEASE=1235.0.0
-CCN_SYSTEMD_VERSION=v231
-
-# stage1/usr_from_kvm/kernel.mk
-KERNEL_VERSION=4.8.6
-
-source=(https://github.com/coreos/rkt/archive/v$pkgver/$pkgname-$pkgver.tar.gz
-
coreos_production_pxe_image-$CCN_IMG_RELEASE.cpio.gz::http://alpha.release.core-os.net/amd64-usr/$CCN_IMG_RELEASE/coreos_production_pxe_image.cpio.gz
-
coreos_production_pxe_image-$CCN_IMG_RELEASE.cpio.gz.sig::http://alpha.release.core-os.net/amd64-usr/$CCN_IMG_RELEASE/coreos_production_pxe_image.cpio.gz.sig
-
https://www.kernel.org/pub/linux/kernel/v4.x/linux-$KERNEL_VERSION.tar.xz
-rkt.sysusers)
-noextract=(coreos_production_pxe_image.cpio.gz
-   linux-$KERNEL_VERSION.tar.xz)
-validpgpkeys=('04127D0BFABEC8871FFB2CCE50E0885593D2DCB4' '48F9B96A2E16137F')
-sha256sums=('49fda935e0ec628889b0c6ba22277354dbf9b89b4c09429c10800a562bbf1b7c'
-'988e4ad8e044dd8bff54cb5e0a34a1ed25cf7bc8cc241f1a90e3fe7f1412f315'
-'SKIP'
-'74744e00420856cfc8049fa3b3a55e57a116994226a498ef56801bc9492df36b'
-'2aee4e8547843f4e6c032761b97cb723c1ecd384d508b86f44d16826bc34d6d6')
-
-prepare() {
-  cd $pkgname-$pkgver
-  mkdir -p build-rkt-$pkgver/tmp/usr_from_kvm/kernel/
-  cd build-rkt-$pkgver/tmp/usr_from_kvm/kernel/
-  ln -s "$srcdir"/linux-$KERNEL_VERSION.tar.xz
-}
-
-build() {
-  cd $pkgname-$pkgver
-  export GOPATH="$PWD/Godeps/_workspace/src"
-
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---localstatedir=/var \
---enable-tpm=auto \
---with-stage1-flavors=coreos,kvm,host,fly \
---with-stage1-default-flavor=host \
---with-stage1-default-images-directory=/usr/lib/rkt/stage1-images \
---with-stage1-default-location=/usr/lib/rkt/stage1-images/stage1-host.aci \
-
--with-coreos-local-pxe-image-path="$srcdir"/coreos_production_pxe_image-$CCN_IMG_RELEASE.cpio.gz
 \
---with-coreos-local-pxe-image-systemd-version=$CCN_SYSTEMD_VERSION
-
-  make manpages
-  make bash-completion
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/dist/init/systemd
-
-  for unit in *.service *.timer *.socket; do
-install -Dm644 $unit "$pkgdir"/usr/lib/systemd/system/$unit
-  done
-
-  for tmpfile in tmpfiles.d/*.conf; do
-install -Dm644 $tmpfile "$pkgdir"/usr/lib/$tmpfile
-  done
-
-  cd "$srcdir"/$pkgname-$pkgver
-  install -Dm644 "$srcdir"/rkt.sysusers "$pkgdir"/usr/lib/sysusers.d/rkt.conf
-  install -Dm644 dist/bash_completion/rkt.bash 
"$pkgdir"/usr/share/bash-completion/completions/rkt
-
-  cd dist/manpages
-  for f in *; do
-install -Dm644 "$f" "$pkgdir/usr/share/man/man1/$f"
-  done
-  cd ../..
-
-  cd build-$pkgname-$pkgver
-  install -dm755 "$pkgdir"/usr/bin "$pkgdir"/usr/lib/rkt/stage1-images
-  mv target/bin/rkt tools/actool "$pkgdir"/usr/bin
-  mv target/bin/stage1-*.aci "$pkgdir"/usr/lib/rkt/stage1-images/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rkt/repos/community-x86_64/PKGBUILD (from rev 208138, 
rkt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-20 

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

2017-01-20 Thread Massimiliano Torromeo
Date: Friday, January 20, 2017 @ 15:35:30
  Author: mtorromeo
Revision: 208138

upgpkg: rkt 1.23.0-1

Modified:
  rkt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 14:51:04 UTC (rev 208137)
+++ PKGBUILD2017-01-20 15:35:30 UTC (rev 208138)
@@ -7,8 +7,8 @@
 # Contributor: Carl George  PGP-Key: 4BA2F7E101D9F512
 
 pkgname=rkt
-pkgver=1.22.0
-pkgrel=2
+pkgver=1.23.0
+pkgrel=1
 pkgdesc="App container runtime"
 arch=('x86_64')
 url="https://github.com/coreos/rkt;
@@ -22,7 +22,7 @@
 CCN_SYSTEMD_VERSION=v231
 
 # stage1/usr_from_kvm/kernel.mk
-KERNEL_VERSION=4.8.6
+KERNEL_VERSION=4.9.2
 
 source=(https://github.com/coreos/rkt/archive/v$pkgver/$pkgname-$pkgver.tar.gz
 
coreos_production_pxe_image-$CCN_IMG_RELEASE.cpio.gz::http://alpha.release.core-os.net/amd64-usr/$CCN_IMG_RELEASE/coreos_production_pxe_image.cpio.gz
@@ -32,10 +32,10 @@
 noextract=(coreos_production_pxe_image.cpio.gz
linux-$KERNEL_VERSION.tar.xz)
 validpgpkeys=('04127D0BFABEC8871FFB2CCE50E0885593D2DCB4' '48F9B96A2E16137F')
-sha256sums=('49fda935e0ec628889b0c6ba22277354dbf9b89b4c09429c10800a562bbf1b7c'
+sha256sums=('5cb10a0646e5cc8dccbd099c40bc6b11264591b30fa8e4113bc9e392feffcb2b'
 '988e4ad8e044dd8bff54cb5e0a34a1ed25cf7bc8cc241f1a90e3fe7f1412f315'
 'SKIP'
-'74744e00420856cfc8049fa3b3a55e57a116994226a498ef56801bc9492df36b'
+'8dda9aedd17ae0bf1e06ebb4b79082f83fb3ade45cbcc3ca4c30bf3faf085738'
 '2aee4e8547843f4e6c032761b97cb723c1ecd384d508b86f44d16826bc34d6d6')
 
 prepare() {


[arch-commits] Commit in python-html5lib-7-9s/trunk (PKGBUILD)

2017-01-20 Thread Johannes Löthberg
Date: Friday, January 20, 2017 @ 14:48:27
  Author: demize
Revision: 208135

python-html5lib-7-9s: Don't provide python-html5lib

Modified:
  python-html5lib-7-9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 14:37:21 UTC (rev 208134)
+++ PKGBUILD2017-01-20 14:48:27 UTC (rev 208135)
@@ -6,7 +6,7 @@
 pkgbase=python-html5lib-7-9s
 pkgname=(python-html5lib-7-9s python2-html5lib-7-9s)
 pkgver=0.999
-pkgrel=2
+pkgrel=3
 
 pkgdesc="Python HTML parser/tokenizer based on the WHATWG HTML5 spec 
(v0.999)"
 url="https://github.com/html5lib;
@@ -35,7 +35,6 @@
 
 package_python-html5lib-7-9s() {
depends=('python-webencodings')
-   provides=("python-html5lib=$pkgver")
conflicts=("python-html5lib")
 
cd html5lib-python-$pkgver
@@ -45,7 +44,6 @@
 
 package_python2-html5lib-7-9s() {
depends=('python2-webencodings')
-   provides=("python2-html5lib=$pkgver")
conflicts=("python2-html5lib")
 
cd html5lib-python-$pkgver-python2


[arch-commits] Commit in python-html5lib-7-9s/repos/community-any (PKGBUILD PKGBUILD)

2017-01-20 Thread Johannes Löthberg
Date: Friday, January 20, 2017 @ 14:48:34
  Author: demize
Revision: 208136

archrelease: copy trunk to community-any

Added:
  python-html5lib-7-9s/repos/community-any/PKGBUILD
(from rev 208135, python-html5lib-7-9s/trunk/PKGBUILD)
Deleted:
  python-html5lib-7-9s/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-20 14:48:27 UTC (rev 208135)
+++ PKGBUILD2017-01-20 14:48:34 UTC (rev 208136)
@@ -1,54 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Erol V. Aktay 
-# Contributor: Daniel J Griffiths 
-# Contributor: Philipp A. 
-
-pkgbase=python-html5lib-7-9s
-pkgname=(python-html5lib-7-9s python2-html5lib-7-9s)
-pkgver=0.999
-pkgrel=2
-
-pkgdesc="Python HTML parser/tokenizer based on the WHATWG HTML5 spec 
(v0.999)"
-url="https://github.com/html5lib;
-arch=('any')
-license=('MIT')
-
-makedepends=('python'
- 'python-setuptools'
- 'python-webencodings'
- 'python2'
- 'python2-setuptools'
- 'python2-webencodings')
-checkdepends=('python-six'
-  'python-pytest'
-  'python-mock'
-  'python-lxml'
-  'python2-lxml')
-
-source=("python-html5lib-$pkgver.tar.gz::https://github.com/html5lib/html5lib-python/archive/$pkgver.tar.gz;)
-
-md5sums=('2ca78b1ec5852779bc121a97da6e8d4d')
-
-prepare() {
-   cp -a html5lib-python-$pkgver{,-python2}
-}
-
-package_python-html5lib-7-9s() {
-   depends=('python-webencodings')
-   provides=("python-html5lib=$pkgver")
-   conflicts=("python-html5lib")
-
-   cd html5lib-python-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1
-   install -Dm755 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-html5lib-7-9s() {
-   depends=('python2-webencodings')
-   provides=("python2-html5lib=$pkgver")
-   conflicts=("python2-html5lib")
-
-   cd html5lib-python-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1
-   install -Dm755 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-html5lib-7-9s/repos/community-any/PKGBUILD (from rev 208135, 
python-html5lib-7-9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-20 14:48:34 UTC (rev 208136)
@@ -0,0 +1,52 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Erol V. Aktay 
+# Contributor: Daniel J Griffiths 
+# Contributor: Philipp A. 
+
+pkgbase=python-html5lib-7-9s
+pkgname=(python-html5lib-7-9s python2-html5lib-7-9s)
+pkgver=0.999
+pkgrel=3
+
+pkgdesc="Python HTML parser/tokenizer based on the WHATWG HTML5 spec 
(v0.999)"
+url="https://github.com/html5lib;
+arch=('any')
+license=('MIT')
+
+makedepends=('python'
+ 'python-setuptools'
+ 'python-webencodings'
+ 'python2'
+ 'python2-setuptools'
+ 'python2-webencodings')
+checkdepends=('python-six'
+  'python-pytest'
+  'python-mock'
+  'python-lxml'
+  'python2-lxml')
+
+source=("python-html5lib-$pkgver.tar.gz::https://github.com/html5lib/html5lib-python/archive/$pkgver.tar.gz;)
+
+md5sums=('2ca78b1ec5852779bc121a97da6e8d4d')
+
+prepare() {
+   cp -a html5lib-python-$pkgver{,-python2}
+}
+
+package_python-html5lib-7-9s() {
+   depends=('python-webencodings')
+   conflicts=("python-html5lib")
+
+   cd html5lib-python-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1
+   install -Dm755 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-html5lib-7-9s() {
+   depends=('python2-webencodings')
+   conflicts=("python2-html5lib")
+
+   cd html5lib-python-$pkgver-python2
+   python2 setup.py install --root="$pkgdir" --optimize=1
+   install -Dm755 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-20 Thread Tobias Powalowski
Date: Friday, January 20, 2017 @ 14:52:13
  Author: tpowa
Revision: 287019

upgpkg: linux 4.9.5-1

bump to 4.9.5

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 13:19:48 UTC (rev 287018)
+++ PKGBUILD2017-01-20 14:52:13 UTC (rev 287019)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.9
-pkgver=4.9.4
+pkgver=4.9.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://www.kernel.org/;
@@ -28,7 +28,7 @@
 
 sha256sums=('029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a'
 'SKIP'
-'ce711beba69745c5203a9e50ae5147c8d97ef084679a67cbb39e0090d2dcffe2'
+'0dd71eceb373d1731d821b02435b6d8cf261267e5a7fe2d82d39b45370e263e1'
 'SKIP'
 '7ac7f28fce30becc44d975387b7299ac4a0150312de2279ac560ee4429689b0c'
 '6216595abd0426bdf2e07e2f17a7c7ad973b79b16d6d11e565d92ef44e81e5da'


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

2017-01-20 Thread Tobias Powalowski
Date: Friday, January 20, 2017 @ 14:52:50
  Author: tpowa
Revision: 287020

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  
linux/repos/testing-i686/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch
(from rev 287019, 
linux/trunk/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch)
  linux/repos/testing-i686/99-linux.hook
(from rev 287019, linux/trunk/99-linux.hook)
  linux/repos/testing-i686/PKGBUILD
(from rev 287019, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 287019, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 287019, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 287019, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 287019, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 287019, linux/trunk/linux.preset)
  
linux/repos/testing-x86_64/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch
(from rev 287019, 
linux/trunk/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch)
  linux/repos/testing-x86_64/99-linux.hook
(from rev 287019, linux/trunk/99-linux.hook)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 287019, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 287019, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 287019, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 287019, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 287019, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 287019, linux/trunk/linux.preset)
Deleted:
  
linux/repos/testing-i686/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch
  linux/repos/testing-i686/99-linux.hook
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  
linux/repos/testing-x86_64/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch
  linux/repos/testing-x86_64/99-linux.hook
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

-+
 /0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch   |  
130 
 /99-linux.hook  |  
 22 
 /PKGBUILD   |  
616 
 /change-default-console-loglevel.patch  |  
 22 
 /config 
|16546 ++
 /config.x86_64  
|16072 +
 /linux.install  |  
 54 
 /linux.preset   |  
 28 
 testing-i686/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch   |  
 65 
 testing-i686/99-linux.hook  |  
 11 
 testing-i686/PKGBUILD   |  
308 
 testing-i686/change-default-console-loglevel.patch  |  
 11 
 testing-i686/config | 
8273 -
 testing-i686/config.x86_64  | 
8036 
 testing-i686/linux.install  |  
 27 
 testing-i686/linux.preset   |  
 14 
 testing-x86_64/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch |  
 65 
 testing-x86_64/99-linux.hook|  
 11 
 testing-x86_64/PKGBUILD |  
308 
 testing-x86_64/change-default-console-loglevel.patch|  
 11 
 testing-x86_64/config   | 
8273 -
 testing-x86_64/config.x86_64| 
8036 
 testing-x86_64/linux.install|  
 27 
 testing-x86_64/linux.preset |  
 14 
 24 files changed, 33490 insertions(+), 33490 deletions(-)

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


[arch-commits] Commit in synfigstudio/trunk (PKGBUILD build-fix.patch)

2017-01-20 Thread Bartłomiej Piotrowski
Date: Friday, January 20, 2017 @ 14:51:04
  Author: bpiotrowski
Revision: 208137

upgpkg: synfigstudio 1.2.0-1

new upstream release

Modified:
  synfigstudio/trunk/PKGBUILD
Deleted:
  synfigstudio/trunk/build-fix.patch

-+
 PKGBUILD|   15 --
 build-fix.patch |  372 --
 2 files changed, 4 insertions(+), 383 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 14:48:34 UTC (rev 208136)
+++ PKGBUILD2017-01-20 14:51:04 UTC (rev 208137)
@@ -3,8 +3,8 @@
 # Contributor: Franco Iacomella 
 
 pkgname=synfigstudio
-pkgver=1.0.2
-pkgrel=5
+pkgver=1.2.0
+pkgrel=1
 pkgdesc="Professional vector animation program (GUI)"
 arch=(i686 x86_64)
 url="http://synfig.org;
@@ -13,16 +13,9 @@
 makedepends=('openexr' 'imagemagick' 'xorg-fonts-100dpi' 'xorg-fonts-75dpi'
 'xorg-fonts-misc' 'xorg-fonts-type1' 'intltool' 'etl')
 
#source=(http://download.tuxfamily.org/synfig/releases/$pkgver/synfigstudio-$pkgver.tar.gz)
-source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfigstudio-$pkgver.tar.gz
-   build-fix.patch)
-md5sums=('566eac351cd6f63d200be6fb6fe55767'
- '033d6ad90f2b2226ddf7cc930be41624')
+source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfigstudio-$pkgver.tar.gz)
+md5sums=('e7819c984656db7c7544bef78b81ec58')
 
-prepare() {
-  cd "$srcdir"/synfigstudio-$pkgver
-  patch -p1 <"$srcdir"/build-fix.patch
-}
-
 build() {
   cd "$srcdir"/synfigstudio-$pkgver
   export PKG_CONFIG_PATH=/usr/lib/ffmpeg0.10/pkgconfig:$PKG_CONFIG_PATH

Deleted: build-fix.patch
===
--- build-fix.patch 2017-01-20 14:48:34 UTC (rev 208136)
+++ build-fix.patch 2017-01-20 14:51:04 UTC (rev 208137)
@@ -1,372 +0,0 @@
-diff -wbBur synfigstudio-1.0.2/src/gui/canvasview.cpp 
synfigstudio-1.0.2.my/src/gui/canvasview.cpp
 synfigstudio-1.0.2/src/gui/canvasview.cpp  2015-07-21 13:01:51.0 
+0300
-+++ synfigstudio-1.0.2.my/src/gui/canvasview.cpp   2015-10-12 
14:54:47.342272650 +0300
-@@ -92,7 +92,7 @@
- //#include 
- 
- #include 
--#include 
-+//#include 
- //#include 
- 
- #include "canvasview.h"
-diff -wbBur synfigstudio-1.0.2/src/gui/compview.cpp 
synfigstudio-1.0.2.my/src/gui/compview.cpp
 synfigstudio-1.0.2/src/gui/compview.cpp2015-07-09 10:33:04.0 
+0300
-+++ synfigstudio-1.0.2.my/src/gui/compview.cpp 2015-10-12 14:56:56.132271169 
+0300
-@@ -39,7 +39,7 @@
- #include 
- #include "instance.h"
- #include 
--#include 
-+//#include 
- #include 
- #include "canvasview.h"
- #include 
-diff -wbBur synfigstudio-1.0.2/src/gui/docks/dockable.cpp 
synfigstudio-1.0.2.my/src/gui/docks/dockable.cpp
 synfigstudio-1.0.2/src/gui/docks/dockable.cpp  2015-07-09 
10:33:04.0 +0300
-+++ synfigstudio-1.0.2.my/src/gui/docks/dockable.cpp   2015-10-12 
14:57:19.102270906 +0300
-@@ -30,7 +30,7 @@
- #endif
- 
- #include "app.h"
--#include 
-+//#include 
- 
- #include "docks/dockable.h"
- #include "docks/dockmanager.h"
-diff -wbBur synfigstudio-1.0.2/src/gui/docks/dock_children.cpp 
synfigstudio-1.0.2.my/src/gui/docks/dock_children.cpp
 synfigstudio-1.0.2/src/gui/docks/dock_children.cpp 2015-07-09 
10:33:04.0 +0300
-+++ synfigstudio-1.0.2.my/src/gui/docks/dock_children.cpp  2015-10-12 
14:57:15.132270952 +0300
-@@ -37,7 +37,7 @@
- #include 
- #include "instance.h"
- #include 
--#include 
-+//#include 
- #include 
- #include 
- #include "trees/childrentreestore.h"
-diff -wbBur synfigstudio-1.0.2/src/gui/docks/dock_curves.cpp 
synfigstudio-1.0.2.my/src/gui/docks/dock_curves.cpp
 synfigstudio-1.0.2/src/gui/docks/dock_curves.cpp   2015-07-09 
10:33:04.0 +0300
-+++ synfigstudio-1.0.2.my/src/gui/docks/dock_curves.cpp2015-10-12 
14:57:09.835604346 +0300
-@@ -36,7 +36,7 @@
- #include 
- #include "instance.h"
- #include 
--#include 
-+//#include 
- #include 
- #include "canvasview.h"
- #include "trees/layerparamtreestore.h"
-diff -wbBur synfigstudio-1.0.2/src/gui/docks/dockdialog.cpp 
synfigstudio-1.0.2.my/src/gui/docks/dockdialog.cpp
 synfigstudio-1.0.2/src/gui/docks/dockdialog.cpp2015-07-09 
10:33:04.0 +0300
-+++ synfigstudio-1.0.2.my/src/gui/docks/dockdialog.cpp 2015-10-12 
14:57:12.995604310 +0300
-@@ -42,10 +42,10 @@
- #include 
- #include 
- #include 
--#include 
-+//#include 
- #include 
- #include 
--#include 
-+//#include 
- #include "canvasview.h"
- 

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

2017-01-20 Thread Bartłomiej Piotrowski
Date: Friday, January 20, 2017 @ 14:37:21
  Author: bpiotrowski
Revision: 208134

archrelease: copy trunk to community-i686, community-x86_64

Added:
  synfig/repos/community-i686/PKGBUILD
(from rev 208133, synfig/trunk/PKGBUILD)
  synfig/repos/community-i686/ffmpeg-3.0.patch
(from rev 208133, synfig/trunk/ffmpeg-3.0.patch)
  synfig/repos/community-x86_64/PKGBUILD
(from rev 208133, synfig/trunk/PKGBUILD)
  synfig/repos/community-x86_64/ffmpeg-3.0.patch
(from rev 208133, synfig/trunk/ffmpeg-3.0.patch)
Deleted:
  synfig/repos/community-i686/PKGBUILD
  synfig/repos/community-i686/build-fix.patch
  synfig/repos/community-i686/ffmpeg-0.8.patch
  synfig/repos/community-x86_64/PKGBUILD
  synfig/repos/community-x86_64/build-fix.patch
  synfig/repos/community-x86_64/ffmpeg-0.8.patch

---+
 /PKGBUILD |  100 +++
 community-i686/PKGBUILD   |   47 -
 community-i686/build-fix.patch|   56 --
 community-i686/ffmpeg-0.8.patch   |   60 --
 community-i686/ffmpeg-3.0.patch   |  323 
 community-x86_64/PKGBUILD |   47 -
 community-x86_64/build-fix.patch  |   56 --
 community-x86_64/ffmpeg-0.8.patch |   60 --
 community-x86_64/ffmpeg-3.0.patch |  323 
 9 files changed, 746 insertions(+), 326 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-20 14:37:13 UTC (rev 208133)
+++ community-i686/PKGBUILD 2017-01-20 14:37:21 UTC (rev 208134)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Franco Iacomella 
-
-pkgname=synfig
-pkgver=1.0.2
-pkgrel=8
-pkgdesc="Professional vector animation program (CLI renderer only)"
-arch=(i686 x86_64)
-url="http://synfig.org;
-license=('GPL2')
-depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg-compat' 
'fontconfig' 'libpng'
-'libtiff' 'libdv' 'libmng' 'cairo' 'pango' 'boost-libs' 'mlt')
-makedepends=('boost')
-optdepends=('openexr' 'libsigc++')
-conflicts=('synfig-core')
-replaces=('synfig-core')
-#source=(http://download.tuxfamily.org/synfig/releases/$pkgver/synfig-$pkgver.tar.gz
-source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfig-$pkgver.tar.gz
-   build-fix.patch
-   ffmpeg-0.8.patch)
-md5sums=('a7b19f9eb22f2bd82067ebc1401b8808'
- '16b852a3ff44765d8efd2ce597f5ca0e'
- 'ebf41046097cfd778dee9a9854561dae')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i "$srcdir/build-fix.patch"
-  patch -Np1 -i "$srcdir/ffmpeg-0.8.patch"
-  sed -i 's|.*set_remove_alpha.*||g' src/modules/mod_libavcodec/trgt_av.cpp
-}
-
-build() {
-  cd $pkgname-$pkgver
-  export PKG_CONFIG_PATH=/usr/lib/ffmpeg-compat/pkgconfig:$PKG_CONFIG_PATH
-  LDFLAGS="$LDFLAGS -Wl,-rpath -Wl,/usr/lib/ffmpeg-compat"
-  CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS"
-  CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS -std=gnu++11"
-  [ -f configure ] || { libtoolize --ltdl --copy --force && autoreconf 
--install --force; }
-  [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc 
--with-libavcodec --with-libdv
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: synfig/repos/community-i686/PKGBUILD (from rev 208133, 
synfig/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-20 14:37:21 UTC (rev 208134)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Franco Iacomella 
+
+pkgname=synfig
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Professional vector animation program (CLI renderer only)"
+arch=(i686 x86_64)
+url="http://synfig.org;
+license=('GPL2')
+depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg' 'fontconfig'
+ 'libpng' 'libtiff' 'libdv' 'libmng' 'cairo' 'pango' 'boost-libs' 'mlt'
+ 'fftw')
+makedepends=('boost')
+optdepends=('openexr' 'libsigc++')
+conflicts=('synfig-core')
+replaces=('synfig-core')
+#source=(http://download.tuxfamily.org/synfig/releases/$pkgver/synfig-$pkgver.tar.gz
+source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfig-$pkgver.tar.gz
+ffmpeg-3.0.patch)
+md5sums=('d44fea7a16572ec638f2ca9f765bdc39'
+ '62fb382cbf418f5e2f536ed73656cf89')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/ffmpeg-3.0.patch
+
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  CXXFLAGS="$CXXFLAGS -std=gnu++11"
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--disable-static \
+--with-imagemagick \
+--with-magickpp \
+--with-libavcodec \
+--with-libdv
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: 

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

2017-01-20 Thread Bartłomiej Piotrowski
Date: Friday, January 20, 2017 @ 14:37:13
  Author: bpiotrowski
Revision: 208133

upgpkg: synfig 1.2.0-1

use latest ffmpeg

Added:
  synfig/trunk/ffmpeg-3.0.patch
Modified:
  synfig/trunk/PKGBUILD
Deleted:
  synfig/trunk/build-fix.patch
  synfig/trunk/ffmpeg-0.8.patch

--+
 PKGBUILD |   39 +++---
 build-fix.patch  |   56 -
 ffmpeg-0.8.patch |   60 -
 ffmpeg-3.0.patch |  323 +
 4 files changed, 344 insertions(+), 134 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 14:36:27 UTC (rev 208132)
+++ PKGBUILD2017-01-20 14:37:13 UTC (rev 208133)
@@ -3,14 +3,15 @@
 # Contributor: Franco Iacomella 
 
 pkgname=synfig
-pkgver=1.0.2
-pkgrel=8
+pkgver=1.2.0
+pkgrel=1
 pkgdesc="Professional vector animation program (CLI renderer only)"
 arch=(i686 x86_64)
 url="http://synfig.org;
 license=('GPL2')
-depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg-compat' 
'fontconfig' 'libpng'
-'libtiff' 'libdv' 'libmng' 'cairo' 'pango' 'boost-libs' 'mlt')
+depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg' 'fontconfig'
+ 'libpng' 'libtiff' 'libdv' 'libmng' 'cairo' 'pango' 'boost-libs' 'mlt'
+ 'fftw')
 makedepends=('boost')
 optdepends=('openexr' 'libsigc++')
 conflicts=('synfig-core')
@@ -17,27 +18,29 @@
 replaces=('synfig-core')
 
#source=(http://download.tuxfamily.org/synfig/releases/$pkgver/synfig-$pkgver.tar.gz
 
source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfig-$pkgver.tar.gz
-   build-fix.patch
-   ffmpeg-0.8.patch)
-md5sums=('a7b19f9eb22f2bd82067ebc1401b8808'
- '16b852a3ff44765d8efd2ce597f5ca0e'
- 'ebf41046097cfd778dee9a9854561dae')
+ffmpeg-3.0.patch)
+md5sums=('d44fea7a16572ec638f2ca9f765bdc39'
+ '62fb382cbf418f5e2f536ed73656cf89')
 
 prepare() {
   cd $pkgname-$pkgver
-  patch -p1 -i "$srcdir/build-fix.patch"
-  patch -Np1 -i "$srcdir/ffmpeg-0.8.patch"
-  sed -i 's|.*set_remove_alpha.*||g' src/modules/mod_libavcodec/trgt_av.cpp
+  patch -p1 -i "$srcdir"/ffmpeg-3.0.patch
+
+  autoreconf -fi
 }
 
 build() {
   cd $pkgname-$pkgver
-  export PKG_CONFIG_PATH=/usr/lib/ffmpeg-compat/pkgconfig:$PKG_CONFIG_PATH
-  LDFLAGS="$LDFLAGS -Wl,-rpath -Wl,/usr/lib/ffmpeg-compat"
-  CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS"
-  CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS -std=gnu++11"
-  [ -f configure ] || { libtoolize --ltdl --copy --force && autoreconf 
--install --force; }
-  [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc 
--with-libavcodec --with-libdv
+
+  CXXFLAGS="$CXXFLAGS -std=gnu++11"
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--disable-static \
+--with-imagemagick \
+--with-magickpp \
+--with-libavcodec \
+--with-libdv
+
   make
 }
 

Deleted: build-fix.patch
===
--- build-fix.patch 2017-01-20 14:36:27 UTC (rev 208132)
+++ build-fix.patch 2017-01-20 14:37:13 UTC (rev 208133)
@@ -1,56 +0,0 @@
-diff -wbBur synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.cpp 
synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.cpp
 synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.cpp 2015-03-28 
13:15:00.0 +0300
-+++ synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.cpp  2015-04-28 
16:56:11.568749053 +0300
-@@ -56,8 +56,8 @@
- /* === M E T H O D S === 
*/
- 
- 
--Importer_LibAVCodec::Importer_LibAVCodec(const char *file):
--  filename(file)
-+Importer_LibAVCodec::Importer_LibAVCodec(const synfig::FileSystem::Identifier 
):
-+  Importer(identifier)
- {
- }
- 
-diff -wbBur synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.h 
synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.h
 synfig-1.0-RC5/src/modules/mod_libavcodec/mptr.h   2015-03-28 
13:15:00.0 +0300
-+++ synfig-1.0-RC5.my/src/modules/mod_libavcodec/mptr.h2015-04-28 
16:55:18.699192946 +0300
-@@ -46,7 +46,7 @@
-   synfig::String filename;
- 
- public:
--  Importer_LibAVCodec(const char *filename);
-+  Importer_LibAVCodec(const synfig::FileSystem::Identifier );
-   ~Importer_LibAVCodec();
- 
-   virtual bool get_frame(synfig::Surface , const synfig::RendDesc 
, synfig::Time time, synfig::ProgressCallback *callback);
-diff -wbBur synfig-1.0-RC5/src/modules/mod_libavcodec/trgt_av.cpp 
synfig-1.0-RC5.my/src/modules/mod_libavcodec/trgt_av.cpp
 synfig-1.0-RC5/src/modules/mod_libavcodec/trgt_av.cpp  2015-03-28 
13:15:00.0 +0300
-+++ synfig-1.0-RC5.my/src/modules/mod_libavcodec/trgt_av.cpp   2015-04-28 
16:46:54.720091106 +0300
-@@ -121,14 +121,14 @@
- picture = avcodec_alloc_frame();
- if (!picture)
- return NULL;
--size = avpicture_get_size(pix_fmt, width, height);
-+size = avpicture_get_size((::PixelFormat)pix_fmt, width, 

[arch-commits] Commit in (python-pymacaroons-pynacl)

2017-01-20 Thread Johannes Löthberg
Date: Friday, January 20, 2017 @ 14:36:27
  Author: demize
Revision: 208132

mkdir python-pymacaroons-pynacl

Added:
  python-pymacaroons-pynacl/


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

2017-01-20 Thread Johannes Löthberg
Date: Friday, January 20, 2017 @ 14:35:49
  Author: demize
Revision: 208131

archrelease: copy trunk to community-any

Added:
  python-pydenticon/repos/community-any/
  python-pydenticon/repos/community-any/PKGBUILD
(from rev 208130, python-pydenticon/trunk/PKGBUILD)

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

Copied: python-pydenticon/repos/community-any/PKGBUILD (from rev 208130, 
python-pydenticon/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-01-20 14:35:49 UTC (rev 208131)
@@ -0,0 +1,54 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgbase=python-pydenticon
+pkgname=(python-pydenticon python2-pydenticon)
+pkgver=0.3
+pkgrel=2
+
+pkgdesc='Library for generating identicons'
+url='https://pypi.python.org/pypi/pydenticon/'
+arch=('any')
+license=('BSD')
+
+makedepends=('python'
+ 'python-setuptools'
+ 'python2'
+ 'python2-setuptools')
+
+source=("https://pypi.org/packages/source/p/pydenticon/pydenticon-$pkgver.tar.gz;)
+
+md5sums=('597b52f1fab9b373239e040fccf2cd25')
+
+prepare() {
+   chmod -R go=u-w pydenticon-$pkgver # files in the source tarball have 
weird permissions
+   cp -a pydenticon-$pkgver{,-python2}
+}
+
+build() {
+   cd "$srcdir"/pydenticon-$pkgver
+   python setup.py build
+
+   cd "$srcdir"/pydenticon-$pkgver-python2
+   python2 setup.py build
+}
+
+package_python-pydenticon() {
+   depends=('python' 'python-pillow')
+
+   cd pydenticon-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pydenticon() {
+   depends=('python2' 'python2-pillow')
+
+   cd pydenticon-$pkgver-python2
+   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


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

2017-01-20 Thread Johannes Löthberg
Date: Friday, January 20, 2017 @ 14:34:42
  Author: demize
Revision: 208130

python-pydenticon: Import PKGBUILD

Added:
  python-pydenticon/repos/
  python-pydenticon/trunk/
  python-pydenticon/trunk/PKGBUILD

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

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2017-01-20 14:34:42 UTC (rev 208130)
@@ -0,0 +1,54 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgbase=python-pydenticon
+pkgname=(python-pydenticon python2-pydenticon)
+pkgver=0.3
+pkgrel=2
+
+pkgdesc='Library for generating identicons'
+url='https://pypi.python.org/pypi/pydenticon/'
+arch=('any')
+license=('BSD')
+
+makedepends=('python'
+ 'python-setuptools'
+ 'python2'
+ 'python2-setuptools')
+
+source=("https://pypi.org/packages/source/p/pydenticon/pydenticon-$pkgver.tar.gz;)
+
+md5sums=('597b52f1fab9b373239e040fccf2cd25')
+
+prepare() {
+   chmod -R go=u-w pydenticon-$pkgver # files in the source tarball have 
weird permissions
+   cp -a pydenticon-$pkgver{,-python2}
+}
+
+build() {
+   cd "$srcdir"/pydenticon-$pkgver
+   python setup.py build
+
+   cd "$srcdir"/pydenticon-$pkgver-python2
+   python2 setup.py build
+}
+
+package_python-pydenticon() {
+   depends=('python' 'python-pillow')
+
+   cd pydenticon-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pydenticon() {
+   depends=('python2' 'python2-pillow')
+
+   cd pydenticon-$pkgver-python2
+   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


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


[arch-commits] Commit in (python-pydenticon)

2017-01-20 Thread Johannes Löthberg
Date: Friday, January 20, 2017 @ 14:31:55
  Author: demize
Revision: 208129

mkdir python-pydenticon

Added:
  python-pydenticon/


  1   2   >