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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:27:50
  Author: foutrelis
Revision: 139830

ncurses 6.0 rebuild.

Modified:
  haskell-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:21:26 UTC (rev 139829)
+++ PKGBUILD2015-09-10 20:27:50 UTC (rev 139830)
@@ -3,7 +3,7 @@
 _hkgname=text
 pkgname=haskell-text
 pkgver=1.2.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="An efficient packed Unicode text type."
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=('custom:BSD3')


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:21:26
  Author: foutrelis
Revision: 139829

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

Added:
  haskell-stm/repos/community-staging-i686/
  haskell-stm/repos/community-staging-i686/PKGBUILD
(from rev 139828, haskell-stm/trunk/PKGBUILD)
  haskell-stm/repos/community-staging-i686/haskell-stm.install
(from rev 139828, haskell-stm/trunk/haskell-stm.install)
  haskell-stm/repos/community-staging-x86_64/
  haskell-stm/repos/community-staging-x86_64/PKGBUILD
(from rev 139828, haskell-stm/trunk/PKGBUILD)
  haskell-stm/repos/community-staging-x86_64/haskell-stm.install
(from rev 139828, haskell-stm/trunk/haskell-stm.install)

--+
 community-staging-i686/PKGBUILD  |   38 +
 community-staging-i686/haskell-stm.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   38 +
 community-staging-x86_64/haskell-stm.install |   18 +++
 4 files changed, 112 insertions(+)

Copied: haskell-stm/repos/community-staging-i686/PKGBUILD (from rev 139828, 
haskell-stm/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:21:26 UTC (rev 139829)
@@ -0,0 +1,38 @@
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+# Package generated by cabal2arch 0.7.5
+_hkgname=stm
+pkgname=haskell-stm
+pkgver=2.4.4
+pkgrel=3
+pkgdesc="A modular composable concurrency abstraction."
+url="http://hackage.haskell.org/package/stm";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.10.1' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz)
+install=${pkgname}.install
+options=('staticlibs')
+md5sums=('3acbbfc1e95d0939728f12673bdd2bae')
+
+build() {
+cd ${srcdir}/${_hkgname}-$pkgver
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr \
+  --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+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/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-stm/repos/community-staging-i686/haskell-stm.install (from rev 
139828, haskell-stm/trunk/haskell-stm.install)
===
--- community-staging-i686/haskell-stm.install  (rev 0)
+++ community-staging-i686/haskell-stm.install  2015-09-10 20:21:26 UTC (rev 
139829)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-stm
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-stm/repos/community-staging-x86_64/PKGBUILD (from rev 139828, 
haskell-stm/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:21:26 UTC (rev 139829)
@@ -0,0 +1,38 @@
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+# Package generated by cabal2arch 0.7.5
+_hkgname=stm
+pkgname=haskell-stm
+pkgver=2.4.4
+pkgrel=3
+pkgdesc="A modular composable concurrency abstraction."
+url="http://hackage.haskell.org/package/stm";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.10.1' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz)
+install=${pkgname}.install
+options=('staticlibs')
+md5sums=('3acbbfc1e95d0939728f12673bdd2bae')
+
+build() {
+cd ${srcdir}/${_hkgname}-$pkgver
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr \
+  --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:21:19
  Author: foutrelis
Revision: 139828

ncurses 6.0 rebuild.

Modified:
  haskell-stm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:19:16 UTC (rev 139827)
+++ PKGBUILD2015-09-10 20:21:19 UTC (rev 139828)
@@ -4,7 +4,7 @@
 _hkgname=stm
 pkgname=haskell-stm
 pkgver=2.4.4
-pkgrel=2
+pkgrel=3
 pkgdesc="A modular composable concurrency abstraction."
 url="http://hackage.haskell.org/package/stm";
 license=('custom:BSD3')


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:19:09
  Author: foutrelis
Revision: 139826

ncurses 6.0 rebuild.

Modified:
  haskell-old-locale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:17:40 UTC (rev 139825)
+++ PKGBUILD2015-09-10 20:19:09 UTC (rev 139826)
@@ -2,7 +2,7 @@
 _hkgname=old-locale
 pkgname=haskell-old-locale
 pkgver=1.0.0.7
-pkgrel=4
+pkgrel=5
 pkgdesc="This package provides the ability to adapt to locale conventions such 
as date and time formats."
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=('custom:BSD3')


[arch-commits] Commit in haskell-old-locale/repos (6 files)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:19:16
  Author: foutrelis
Revision: 139827

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

Added:
  haskell-old-locale/repos/community-staging-i686/
  haskell-old-locale/repos/community-staging-i686/PKGBUILD
(from rev 139826, haskell-old-locale/trunk/PKGBUILD)
  haskell-old-locale/repos/community-staging-i686/haskell-old-locale.install
(from rev 139826, haskell-old-locale/trunk/haskell-old-locale.install)
  haskell-old-locale/repos/community-staging-x86_64/
  haskell-old-locale/repos/community-staging-x86_64/PKGBUILD
(from rev 139826, haskell-old-locale/trunk/PKGBUILD)
  haskell-old-locale/repos/community-staging-x86_64/haskell-old-locale.install
(from rev 139826, haskell-old-locale/trunk/haskell-old-locale.install)

-+
 community-staging-i686/PKGBUILD |   37 ++
 community-staging-i686/haskell-old-locale.install   |   18 
 community-staging-x86_64/PKGBUILD   |   37 ++
 community-staging-x86_64/haskell-old-locale.install |   18 
 4 files changed, 110 insertions(+)

Copied: haskell-old-locale/repos/community-staging-i686/PKGBUILD (from rev 
139826, haskell-old-locale/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:19:16 UTC (rev 139827)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+_hkgname=old-locale
+pkgname=haskell-old-locale
+pkgver=1.0.0.7
+pkgrel=5
+pkgdesc="This package provides the ability to adapt to locale conventions such 
as date and time formats."
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.10.1')
+options=('strip')
+source=(https://hackage.haskell.org/package/${_hkgname}-${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('507bd2d3ce2407403e2a2d1136c3d149')
+options=('staticlibs')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+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/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-old-locale/repos/community-staging-i686/haskell-old-locale.install 
(from rev 139826, haskell-old-locale/trunk/haskell-old-locale.install)
===
--- community-staging-i686/haskell-old-locale.install   
(rev 0)
+++ community-staging-i686/haskell-old-locale.install   2015-09-10 20:19:16 UTC 
(rev 139827)
@@ -0,0 +1,18 @@
+HS_DIR=/usr/share/haskell/haskell-old-locale
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-old-locale/repos/community-staging-x86_64/PKGBUILD (from rev 
139826, haskell-old-locale/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:19:16 UTC (rev 139827)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+_hkgname=old-locale
+pkgname=haskell-old-locale
+pkgver=1.0.0.7
+pkgrel=5
+pkgdesc="This package provides the ability to adapt to locale conventions such 
as date and time formats."
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.10.1')
+options=('strip')
+source=(https://hackage.haskell.org/package/${_hkgname}-${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('507bd2d3ce2407403e2a2d1136c3d149')
+options=('staticlibs')
+
+build() {
+cd ${srcdir}/${_hkg

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:17:40
  Author: foutrelis
Revision: 139825

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

Added:
  haskell-entropy/repos/community-staging-i686/
  haskell-entropy/repos/community-staging-i686/PKGBUILD
(from rev 139824, haskell-entropy/trunk/PKGBUILD)
  haskell-entropy/repos/community-staging-i686/haskell-entropy.install
(from rev 139824, haskell-entropy/trunk/haskell-entropy.install)
  haskell-entropy/repos/community-staging-x86_64/
  haskell-entropy/repos/community-staging-x86_64/PKGBUILD
(from rev 139824, haskell-entropy/trunk/PKGBUILD)
  haskell-entropy/repos/community-staging-x86_64/haskell-entropy.install
(from rev 139824, haskell-entropy/trunk/haskell-entropy.install)

--+
 community-staging-i686/PKGBUILD  |   39 +
 community-staging-i686/haskell-entropy.install   |   18 +
 community-staging-x86_64/PKGBUILD|   39 +
 community-staging-x86_64/haskell-entropy.install |   18 +
 4 files changed, 114 insertions(+)

Copied: haskell-entropy/repos/community-staging-i686/PKGBUILD (from rev 139824, 
haskell-entropy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:17:40 UTC (rev 139825)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Daniel Nagy 
+
+pkgname=haskell-entropy
+pkgver=0.3.6
+pkgrel=2
+pkgdesc="A platform independent method to obtain cryptographically strong 
entropy"
+url="http://hackage.haskell.org/package/entropy";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc')
+options=('strip' 'staticlibs')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/entropy/${pkgver}/entropy-${pkgver}.tar.gz)
+md5sums=('690b98c330ae8da7bf62f350a16f251a')
+
+build() {
+cd ${srcdir}/entropy-${pkgver}
+runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd ${srcdir}/entropy-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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/entropy
+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-entropy/repos/community-staging-i686/haskell-entropy.install 
(from rev 139824, haskell-entropy/trunk/haskell-entropy.install)
===
--- community-staging-i686/haskell-entropy.install  
(rev 0)
+++ community-staging-i686/haskell-entropy.install  2015-09-10 20:17:40 UTC 
(rev 139825)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-entropy
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-entropy/repos/community-staging-x86_64/PKGBUILD (from rev 
139824, haskell-entropy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:17:40 UTC (rev 139825)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Daniel Nagy 
+
+pkgname=haskell-entropy
+pkgver=0.3.6
+pkgrel=2
+pkgdesc="A platform independent method to obtain cryptographically strong 
entropy"
+url="http://hackage.haskell.org/package/entropy";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc')
+options=('strip' 'staticlibs')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/entropy/${pkgver}/entropy-${pkgver}.tar.gz)
+md5sums=('690b98c330ae8da7bf62f350a16f251a')
+
+build() {
+cd ${srcdir}/entropy-${pkgver}
+runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-s

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:17:32
  Author: foutrelis
Revision: 139824

ncurses 6.0 rebuild.

Modified:
  haskell-entropy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:16:38 UTC (rev 139823)
+++ PKGBUILD2015-09-10 20:17:32 UTC (rev 139824)
@@ -4,7 +4,7 @@
 
 pkgname=haskell-entropy
 pkgver=0.3.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A platform independent method to obtain cryptographically strong 
entropy"
 url="http://hackage.haskell.org/package/entropy";
 license=('custom:BSD3')


[arch-commits] Commit in haskell-data-default-class/trunk (PKGBUILD)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:16:31
  Author: foutrelis
Revision: 139822

ncurses 6.0 rebuild.

Modified:
  haskell-data-default-class/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:15:47 UTC (rev 139821)
+++ PKGBUILD2015-09-10 20:16:31 UTC (rev 139822)
@@ -2,7 +2,7 @@
 _hkgname=data-default-class
 pkgname=haskell-data-default-class
 pkgver=0.0.1
-pkgrel=6
+pkgrel=7
 pkgdesc="A class for types with a default value"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=('custom:BSD3')


[arch-commits] Commit in haskell-data-default-class/repos (6 files)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:16:38
  Author: foutrelis
Revision: 139823

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

Added:
  haskell-data-default-class/repos/community-staging-i686/
  haskell-data-default-class/repos/community-staging-i686/PKGBUILD
(from rev 139822, haskell-data-default-class/trunk/PKGBUILD)
  
haskell-data-default-class/repos/community-staging-i686/haskell-data-default-class.install
(from rev 139822, 
haskell-data-default-class/trunk/haskell-data-default-class.install)
  haskell-data-default-class/repos/community-staging-x86_64/
  haskell-data-default-class/repos/community-staging-x86_64/PKGBUILD
(from rev 139822, haskell-data-default-class/trunk/PKGBUILD)
  
haskell-data-default-class/repos/community-staging-x86_64/haskell-data-default-class.install
(from rev 139822, 
haskell-data-default-class/trunk/haskell-data-default-class.install)

-+
 community-staging-i686/PKGBUILD |   37 ++
 community-staging-i686/haskell-data-default-class.install   |   18 
 community-staging-x86_64/PKGBUILD   |   37 ++
 community-staging-x86_64/haskell-data-default-class.install |   18 
 4 files changed, 110 insertions(+)

Copied: haskell-data-default-class/repos/community-staging-i686/PKGBUILD (from 
rev 139822, haskell-data-default-class/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:16:38 UTC (rev 139823)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+_hkgname=data-default-class
+pkgname=haskell-data-default-class
+pkgver=0.0.1
+pkgrel=7
+pkgdesc="A class for types with a default value"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.10.1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('abfd756bcc6d92e47436992c80ccdb80')
+options=('staticlibs')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+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/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-data-default-class/repos/community-staging-i686/haskell-data-default-class.install
 (from rev 139822, 
haskell-data-default-class/trunk/haskell-data-default-class.install)
===
--- community-staging-i686/haskell-data-default-class.install   
(rev 0)
+++ community-staging-i686/haskell-data-default-class.install   2015-09-10 
20:16:38 UTC (rev 139823)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default-class
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-data-default-class/repos/community-staging-x86_64/PKGBUILD 
(from rev 139822, haskell-data-default-class/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:16:38 UTC (rev 139823)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+_hkgname=data-default-class
+pkgname=haskell-data-default-class
+pkgver=0.0.1
+pkgrel=7
+pkgdesc="A class for types with a default value"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.10.1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:15:40
  Author: foutrelis
Revision: 139820

ncurses 6.0 rebuild.

Modified:
  haskell-bytestring-show/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:14:18 UTC (rev 139819)
+++ PKGBUILD2015-09-10 20:15:40 UTC (rev 139820)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-bytestring-show
 pkgver=0.3.5.6
-pkgrel=4
+pkgrel=5
 pkgdesc="Efficient conversion of values into readable byte strings."
 url="http://hackage.haskell.org/package/bytestring-show";
 license=('BSD')


[arch-commits] Commit in haskell-bytestring-show/repos (6 files)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:15:47
  Author: foutrelis
Revision: 139821

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

Added:
  haskell-bytestring-show/repos/community-staging-i686/
  haskell-bytestring-show/repos/community-staging-i686/PKGBUILD
(from rev 139820, haskell-bytestring-show/trunk/PKGBUILD)
  
haskell-bytestring-show/repos/community-staging-i686/haskell-bytestring-show.install
(from rev 139820, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)
  haskell-bytestring-show/repos/community-staging-x86_64/
  haskell-bytestring-show/repos/community-staging-x86_64/PKGBUILD
(from rev 139820, haskell-bytestring-show/trunk/PKGBUILD)
  
haskell-bytestring-show/repos/community-staging-x86_64/haskell-bytestring-show.install
(from rev 139820, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)

--+
 community-staging-i686/PKGBUILD  |   44 +
 community-staging-i686/haskell-bytestring-show.install   |   24 +++
 community-staging-x86_64/PKGBUILD|   44 +
 community-staging-x86_64/haskell-bytestring-show.install |   24 +++
 4 files changed, 136 insertions(+)

Copied: haskell-bytestring-show/repos/community-staging-i686/PKGBUILD (from rev 
139820, haskell-bytestring-show/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:15:47 UTC (rev 139821)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.6
+pkgrel=5
+pkgdesc="Efficient conversion of values into readable byte strings."
+url="http://hackage.haskell.org/package/bytestring-show";
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=("ghc")
+options=('staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz";)
+md5sums=('c9041eed86a52e17e6b53a415967f7cb')
+
+build() {
+  cd ${srcdir}/bytestring-show-${pkgver}
+
+  # update outdated dependency
+  sed 's/build-depends: integer-gmp >= 0.2 && < 0.5/build-depends: integer-gmp 
>= 0.2 \&\& < 0.6/' -i bytestring-show.cabal
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+   --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  depends=("ghc=`pacman -Q ghc | cut -f2 -d\ |cut -f1 -d-`")
+
+  cd ${srcdir}/bytestring-show-${pkgver}
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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/bytestring-show
+  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-bytestring-show/repos/community-staging-i686/haskell-bytestring-show.install
 (from rev 139820, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)
===
--- community-staging-i686/haskell-bytestring-show.install  
(rev 0)
+++ community-staging-i686/haskell-bytestring-show.install  2015-09-10 
20:15:47 UTC (rev 139821)
@@ -0,0 +1,24 @@
+pkgname=haskell-bytestring-show
+HS_DIR=usr/share/haskell/${pkgname}
+
+post_install() {
+${HS_DIR}/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-bytestring-show/repos/community-staging-x86_64/PKGBUILD (from 
rev 139820, haskell-bytestring-show/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:15:47 UTC (rev 139821)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.6
+pkgrel=5
+pkgdesc="Efficient conversion of values into readable byte strings."
+url="http://hackage.haskell.org/package/bytestring-show";
+license=('BSD')
+arch=('i686' 'x86_64')
+depe

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:14:11
  Author: foutrelis
Revision: 139818

ncurses 6.0 rebuild.

Modified:
  haskell-ghc-paths/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:13:22 UTC (rev 139817)
+++ PKGBUILD2015-09-10 20:14:11 UTC (rev 139818)
@@ -4,7 +4,7 @@
 
 pkgname=haskell-ghc-paths
 pkgver=0.1.0.9
-pkgrel=8
+pkgrel=9
 pkgdesc="Knowledge of GHC's installation directories"
 url='http://hackage.haskell.org/package/ghc-paths'
 license=('custom:BSD3')


[arch-commits] Commit in haskell-ghc-paths/repos (6 files)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:14:18
  Author: foutrelis
Revision: 139819

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

Added:
  haskell-ghc-paths/repos/community-staging-i686/
  haskell-ghc-paths/repos/community-staging-i686/PKGBUILD
(from rev 139818, haskell-ghc-paths/trunk/PKGBUILD)
  haskell-ghc-paths/repos/community-staging-i686/haskell-ghc-paths.install
(from rev 139818, haskell-ghc-paths/trunk/haskell-ghc-paths.install)
  haskell-ghc-paths/repos/community-staging-x86_64/
  haskell-ghc-paths/repos/community-staging-x86_64/PKGBUILD
(from rev 139818, haskell-ghc-paths/trunk/PKGBUILD)
  haskell-ghc-paths/repos/community-staging-x86_64/haskell-ghc-paths.install
(from rev 139818, haskell-ghc-paths/trunk/haskell-ghc-paths.install)

+
 community-staging-i686/PKGBUILD|   46 +++
 community-staging-i686/haskell-ghc-paths.install   |   18 +++
 community-staging-x86_64/PKGBUILD  |   46 +++
 community-staging-x86_64/haskell-ghc-paths.install |   18 +++
 4 files changed, 128 insertions(+)

Copied: haskell-ghc-paths/repos/community-staging-i686/PKGBUILD (from rev 
139818, haskell-ghc-paths/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:14:18 UTC (rev 139819)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Arch Haskell Team 
+
+pkgname=haskell-ghc-paths
+pkgver=0.1.0.9
+pkgrel=9
+pkgdesc="Knowledge of GHC's installation directories"
+url='http://hackage.haskell.org/package/ghc-paths'
+license=('custom:BSD3')
+arch=('x86_64' 'i686')
+depends=('ghc=7.10.1')
+source=("http://hackage.haskell.org/packages/archive/ghc-paths/$pkgver/ghc-paths-$pkgver.tar.gz";)
+install="$pkgname.install"
+options=('staticlibs')
+sha256sums=('afa68fb86123004c37c1dc354286af2d87a9dcfb12ddcb80e8bd0cd55bc87945')
+
+build() {
+  cd "ghc-paths-$pkgver"
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+ --prefix=/usr --docdir="/usr/share/doc/$pkgname" \
+ --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "ghc-paths-$pkgver"
+
+  install -Dm 744 register.sh \
+"$pkgdir/usr/share/haskell/$pkgname/register.sh"
+  install -m 744 unregister.sh \
+"$pkgdir/usr/share/haskell/$pkgname/unregister.sh"
+  install -dm 755 "$pkgdir/usr/share/doc/ghc/html/libraries"
+  ln -s "/usr/share/doc/$pkgname/html" \
+"$pkgdir/usr/share/doc/ghc/html/libraries/ghc-paths"
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
haskell-ghc-paths/repos/community-staging-i686/haskell-ghc-paths.install (from 
rev 139818, haskell-ghc-paths/trunk/haskell-ghc-paths.install)
===
--- community-staging-i686/haskell-ghc-paths.install
(rev 0)
+++ community-staging-i686/haskell-ghc-paths.install2015-09-10 20:14:18 UTC 
(rev 139819)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-ghc-paths
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-ghc-paths/repos/community-staging-x86_64/PKGBUILD (from rev 
139818, haskell-ghc-paths/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:14:18 UTC (rev 139819)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Arch Haskell Team 
+
+pkgname=haskell-ghc-paths
+pkgver=0.1.0.9
+pkgrel=9
+pkgdesc="Knowledge of GHC's installation directories"
+url='http://hackage.haskell.org/package/ghc-paths'
+license=('custom:BSD3')
+arch=('x86_64' 'i686')
+depends=('ghc=7.10.1')
+source=("http://hackage.haskell.org/packages/archive/ghc-paths/$pkgver/ghc-paths-$pkgver.tar.gz";)
+install="$pkgname.install"
+options=('staticlibs')
+sha256sums=('afa68fb86123004c37c1dc354286af2d87a9dcfb12ddcb80e8bd0cd55bc87945')
+
+build() {
+  cd "ghc-paths-$pkgver"
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+ --prefix=/usr --docdi

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:13:22
  Author: foutrelis
Revision: 139817

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

Added:
  haskell-mtl/repos/community-staging-i686/
  haskell-mtl/repos/community-staging-i686/PKGBUILD
(from rev 139816, haskell-mtl/trunk/PKGBUILD)
  haskell-mtl/repos/community-staging-i686/haskell-mtl.install
(from rev 139816, haskell-mtl/trunk/haskell-mtl.install)
  haskell-mtl/repos/community-staging-x86_64/
  haskell-mtl/repos/community-staging-x86_64/PKGBUILD
(from rev 139816, haskell-mtl/trunk/PKGBUILD)
  haskell-mtl/repos/community-staging-x86_64/haskell-mtl.install
(from rev 139816, haskell-mtl/trunk/haskell-mtl.install)

--+
 community-staging-i686/PKGBUILD  |   61 +
 community-staging-i686/haskell-mtl.install   |   35 ++
 community-staging-x86_64/PKGBUILD|   61 +
 community-staging-x86_64/haskell-mtl.install |   35 ++
 4 files changed, 192 insertions(+)

Copied: haskell-mtl/repos/community-staging-i686/PKGBUILD (from rev 139816, 
haskell-mtl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:13:22 UTC (rev 139817)
@@ -0,0 +1,61 @@
+# Maintainer: Thomas Dziedzic 
+
+_hkgname=mtl
+pkgname=haskell-mtl
+pkgver=2.2.1
+pkgrel=3
+pkgdesc="Monad classes, using functional dependencies"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc' 'sh')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install=${pkgname}.install
+md5sums=('96a2f12b94ea8d7cb0aea999cd2e3802')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+_update_deps() {
+_ver=`pacman -Q $1 | cut -f2 -d\  | cut -f1 -d-`
+for i in `seq 0 $(expr ${#depends[@]} - 1)`; do
+if [ ${depends[$i]} == $1 ]; then
+depends[$i]="$1=${_ver}"
+fi
+done
+}
+
+package() {
+  _update_deps ghc
+
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-mtl/repos/community-staging-i686/haskell-mtl.install (from rev 
139816, haskell-mtl/trunk/haskell-mtl.install)
===
--- community-staging-i686/haskell-mtl.install  (rev 0)
+++ community-staging-i686/haskell-mtl.install  2015-09-10 20:13:22 UTC (rev 
139817)
@@ -0,0 +1,35 @@
+pkgname=haskell-mtl
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}

Copied: haskell-mtl/repos/community-staging-x86_64/PKGBUILD (from rev 139816, 
haskell-mtl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:13:22 UTC (rev 139817)
@@ -0,0 +1,61 @@
+# Maintainer: Thomas Dziedzic 
+
+_hkgname=mtl
+pkgname=haskell-mtl
+pkgver=2.2.1
+pkgrel=3
+pkgdesc="Monad classes, using functional dependencies"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc' 'sh')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install=${pkgname}.install
+md5sums=('96a2f12b94ea8d7cb0aea999cd2e3802')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--p

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:13:15
  Author: foutrelis
Revision: 139816

ncurses 6.0 rebuild.

Modified:
  haskell-mtl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:07:27 UTC (rev 139815)
+++ PKGBUILD2015-09-10 20:13:15 UTC (rev 139816)
@@ -3,7 +3,7 @@
 _hkgname=mtl
 pkgname=haskell-mtl
 pkgver=2.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Monad classes, using functional dependencies"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=('custom:BSD3')


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:12:12
  Author: foutrelis
Revision: 245756

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

Added:
  cabal-install/repos/staging-i686/
  cabal-install/repos/staging-i686/PKGBUILD
(from rev 245755, cabal-install/trunk/PKGBUILD)
  cabal-install/repos/staging-x86_64/
  cabal-install/repos/staging-x86_64/PKGBUILD
(from rev 245755, cabal-install/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   47 ++
 staging-x86_64/PKGBUILD |   47 ++
 2 files changed, 94 insertions(+)

Copied: cabal-install/repos/staging-i686/PKGBUILD (from rev 245755, 
cabal-install/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-10 20:12:12 UTC (rev 245756)
@@ -0,0 +1,47 @@
+# Maintainer: Thomas Dziedzic 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=1.22.2.0
+pkgrel=2
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="http://hackage.haskell.org/package/cabal-install";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=('ghc' 'cabal-install')
+depends=('gmp' 'zlib')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz";)
+md5sums=('bad431378bec8a0005fb1a3f5a92cd1b')
+
+# the bootstrap script was broken on several releases
+# build with a cabal sandbox to avoid unnecessary patching & headaches
+build() {
+  cd cabal-install-${pkgver}
+
+  cabal update
+
+  cabal sandbox init
+
+  cabal install --only-dependencies
+
+  cabal build
+}
+
+package() {
+  cd cabal-install-${pkgver}
+
+  install -d ${pkgdir}/usr/bin
+  install -m755 dist/build/cabal/cabal \
+${pkgdir}/usr/bin
+
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 LICENSE \
+${pkgdir}/usr/share/licenses/${pkgname}
+
+  # add bash completion
+  install -d ${pkgdir}/usr/share/bash-completion/completions
+  install -m644 bash-completion/cabal \
+${pkgdir}/usr/share/bash-completion/completions
+}

Copied: cabal-install/repos/staging-x86_64/PKGBUILD (from rev 245755, 
cabal-install/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-10 20:12:12 UTC (rev 245756)
@@ -0,0 +1,47 @@
+# Maintainer: Thomas Dziedzic 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=1.22.2.0
+pkgrel=2
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="http://hackage.haskell.org/package/cabal-install";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=('ghc' 'cabal-install')
+depends=('gmp' 'zlib')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz";)
+md5sums=('bad431378bec8a0005fb1a3f5a92cd1b')
+
+# the bootstrap script was broken on several releases
+# build with a cabal sandbox to avoid unnecessary patching & headaches
+build() {
+  cd cabal-install-${pkgver}
+
+  cabal update
+
+  cabal sandbox init
+
+  cabal install --only-dependencies
+
+  cabal build
+}
+
+package() {
+  cd cabal-install-${pkgver}
+
+  install -d ${pkgdir}/usr/bin
+  install -m755 dist/build/cabal/cabal \
+${pkgdir}/usr/bin
+
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 LICENSE \
+${pkgdir}/usr/share/licenses/${pkgname}
+
+  # add bash completion
+  install -d ${pkgdir}/usr/share/bash-completion/completions
+  install -m644 bash-completion/cabal \
+${pkgdir}/usr/share/bash-completion/completions
+}


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:12:05
  Author: foutrelis
Revision: 245755

ncurses 6.0 rebuild.

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 19:24:34 UTC (rev 245754)
+++ PKGBUILD2015-09-10 20:12:05 UTC (rev 245755)
@@ -4,7 +4,7 @@
 
 pkgname=cabal-install
 pkgver=1.22.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="http://hackage.haskell.org/package/cabal-install";
 license=('custom:BSD3')


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:07:19
  Author: foutrelis
Revision: 139814

ncurses 6.0 rebuild.

Modified:
  haskell-haddock-library/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:05:36 UTC (rev 139813)
+++ PKGBUILD2015-09-10 20:07:19 UTC (rev 139814)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-haddock-library
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A documentation-generation tool for Haskell libraries"
 url="http://www.haskell.org/haddock/";
 license=("BSD3")


[arch-commits] Commit in haskell-haddock-library/repos (6 files)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:07:27
  Author: foutrelis
Revision: 139815

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

Added:
  haskell-haddock-library/repos/community-staging-i686/
  haskell-haddock-library/repos/community-staging-i686/PKGBUILD
(from rev 139814, haskell-haddock-library/trunk/PKGBUILD)
  
haskell-haddock-library/repos/community-staging-i686/haskell-haddock-library.install
(from rev 139814, 
haskell-haddock-library/trunk/haskell-haddock-library.install)
  haskell-haddock-library/repos/community-staging-x86_64/
  haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD
(from rev 139814, haskell-haddock-library/trunk/PKGBUILD)
  
haskell-haddock-library/repos/community-staging-x86_64/haskell-haddock-library.install
(from rev 139814, 
haskell-haddock-library/trunk/haskell-haddock-library.install)

--+
 community-staging-i686/PKGBUILD  |   40 +
 community-staging-i686/haskell-haddock-library.install   |   20 ++
 community-staging-x86_64/PKGBUILD|   40 +
 community-staging-x86_64/haskell-haddock-library.install |   20 ++
 4 files changed, 120 insertions(+)

Copied: haskell-haddock-library/repos/community-staging-i686/PKGBUILD (from rev 
139814, haskell-haddock-library/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:07:27 UTC (rev 139815)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 124882 2014-12-29 22:07:40Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-haddock-library
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A documentation-generation tool for Haskell libraries"
+url="http://www.haskell.org/haddock/";
+license=("BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+depends=("ghc=7.10.1")
+options=('strip' 'staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/haddock-library/${pkgver}/haddock-library-${pkgver}.tar.gz";)
+sha256sums=('a62848b4c291eec9cbdff3031cc71b454b880d8e742cfb15bc06ed3e61c4c84d')
+
+build() {
+cd "${srcdir}/haddock-library-${pkgver}"
+
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+  --prefix=/usr --docdir=/usr/share/doc/$pkgname \
+  --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/haddock-library-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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/haddock-library"
+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-haddock-library/repos/community-staging-i686/haskell-haddock-library.install
 (from rev 139814, 
haskell-haddock-library/trunk/haskell-haddock-library.install)
===
--- community-staging-i686/haskell-haddock-library.install  
(rev 0)
+++ community-staging-i686/haskell-haddock-library.install  2015-09-10 
20:07:27 UTC (rev 139815)
@@ -0,0 +1,20 @@
+# custom variables
+pkgname=haskell-haddock-library
+HS_DIR=usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+${HS_DIR}/register.sh
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}

Copied: haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD (from 
rev 139814, haskell-haddock-library/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:07:27 UTC (rev 139815)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 124882 2014-12-29 22:07:40Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-haddock-library
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A documentation-generation tool for Haskell libraries"
+url="http://www.haskell.org/haddock/";
+license=("BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+depends=("ghc=7.10.1")
+options=('strip' 'staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/haddock-library/${pkgver}/haddock-library-${pkgver}.tar.gz";)
+sha256sums=('a62848b4c291eec9cbdff3031cc71b454b880d8e742cfb15bc

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:04:25
  Author: foutrelis
Revision: 139810

ncurses 6.0 rebuild.

Modified:
  haskell-dlist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:03:35 UTC (rev 139809)
+++ PKGBUILD2015-09-10 20:04:25 UTC (rev 139810)
@@ -7,7 +7,7 @@
 pkgver=0.7.1.1
 _hkgname=dlist
 _licensefile=LICENSE
-pkgrel=1
+pkgrel=2
 pkgdesc="Differences lists"
 url=" https://hackage.haskell.org/package/dlist";
 license=('BSD')


[arch-commits] Commit in haskell-utf8-string/repos (6 files)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:05:36
  Author: foutrelis
Revision: 139813

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

Added:
  haskell-utf8-string/repos/community-staging-i686/
  haskell-utf8-string/repos/community-staging-i686/PKGBUILD
(from rev 139812, haskell-utf8-string/trunk/PKGBUILD)
  haskell-utf8-string/repos/community-staging-i686/haskell-utf8-string.install
(from rev 139812, haskell-utf8-string/trunk/haskell-utf8-string.install)
  haskell-utf8-string/repos/community-staging-x86_64/
  haskell-utf8-string/repos/community-staging-x86_64/PKGBUILD
(from rev 139812, haskell-utf8-string/trunk/PKGBUILD)
  haskell-utf8-string/repos/community-staging-x86_64/haskell-utf8-string.install
(from rev 139812, haskell-utf8-string/trunk/haskell-utf8-string.install)

--+
 community-staging-i686/PKGBUILD  |   51 +
 community-staging-i686/haskell-utf8-string.install   |   18 ++
 community-staging-x86_64/PKGBUILD|   51 +
 community-staging-x86_64/haskell-utf8-string.install |   18 ++
 4 files changed, 138 insertions(+)

Copied: haskell-utf8-string/repos/community-staging-i686/PKGBUILD (from rev 
139812, haskell-utf8-string/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:05:36 UTC (rev 139813)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+# Package generated by cabal2arch 0.7.6
+_hkgname=utf8-string
+pkgname=haskell-utf8-string
+pkgver=1
+pkgrel=2
+pkgdesc="Support for reading and writing UTF8 Strings"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'sh')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+options=('staticlibs')
+md5sums=('ba089498bf478266ce25d21eb00236aa')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+  --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+  --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+_update_deps() {
+_ver=`pacman -Q $1 | cut -f2 -d\  | cut -f1 -d-`
+for i in `seq 0 $(expr ${#depends[@]} - 1)`; do
+if [ ${depends[$i]} == $1 ]; then
+depends[$i]="$1=${_ver}"
+fi
+done
+}
+
+package() {
+_update_deps ghc
+
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-utf8-string/repos/community-staging-i686/haskell-utf8-string.install 
(from rev 139812, haskell-utf8-string/trunk/haskell-utf8-string.install)
===
--- community-staging-i686/haskell-utf8-string.install  
(rev 0)
+++ community-staging-i686/haskell-utf8-string.install  2015-09-10 20:05:36 UTC 
(rev 139813)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-utf8-string
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-utf8-string/repos/community-staging-x86_64/PKGBUILD (from rev 
139812, haskell-utf8-string/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:05:36 UTC (rev 139813)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+# Package generated by cabal2arch 0.7.6
+_hkgname=utf8-string
+pkgname=haskell-utf8-string
+pkgver=1
+pkgrel=2
+pkgdesc="Support for reading and writing UTF8 Strings"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+ar

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:05:28
  Author: foutrelis
Revision: 139812

ncurses 6.0 rebuild.

Modified:
  haskell-utf8-string/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:04:33 UTC (rev 139811)
+++ PKGBUILD2015-09-10 20:05:28 UTC (rev 139812)
@@ -5,7 +5,7 @@
 _hkgname=utf8-string
 pkgname=haskell-utf8-string
 pkgver=1
-pkgrel=1
+pkgrel=2
 pkgdesc="Support for reading and writing UTF8 Strings"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=('custom:BSD3')


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:04:33
  Author: foutrelis
Revision: 139811

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

Added:
  haskell-dlist/repos/community-staging-i686/
  haskell-dlist/repos/community-staging-i686/PKGBUILD
(from rev 139810, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-staging-i686/haskell-dlist.install
(from rev 139810, haskell-dlist/trunk/haskell-dlist.install)
  haskell-dlist/repos/community-staging-x86_64/
  haskell-dlist/repos/community-staging-x86_64/PKGBUILD
(from rev 139810, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-staging-x86_64/haskell-dlist.install
(from rev 139810, haskell-dlist/trunk/haskell-dlist.install)

+
 community-staging-i686/PKGBUILD|   44 +++
 community-staging-i686/haskell-dlist.install   |   26 +
 community-staging-x86_64/PKGBUILD  |   44 +++
 community-staging-x86_64/haskell-dlist.install |   26 +
 4 files changed, 140 insertions(+)

Copied: haskell-dlist/repos/community-staging-i686/PKGBUILD (from rev 139810, 
haskell-dlist/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:04:33 UTC (rev 139811)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Daniel Wallace 
+# Contributor: Don Stewart 
+# Contributor: Lex Black 
+
+pkgname=haskell-dlist
+pkgver=0.7.1.1
+_hkgname=dlist
+_licensefile=LICENSE
+pkgrel=2
+pkgdesc="Differences lists"
+url=" https://hackage.haskell.org/package/dlist";
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=('ghc=7.10.1')
+options=('strip')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha256sums=('08b07f28e01f4a7e17239c33b37fbef0bf6073712337a97a145a583577df5efd')
+install="${pkgname}.install"
+options=('staticlibs')
+
+build() {
+cd ${_hkgname}-${pkgver}
+
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd ${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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 ${_licensefile} 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}
+}

Copied: haskell-dlist/repos/community-staging-i686/haskell-dlist.install (from 
rev 139810, haskell-dlist/trunk/haskell-dlist.install)
===
--- community-staging-i686/haskell-dlist.install
(rev 0)
+++ community-staging-i686/haskell-dlist.install2015-09-10 20:04:33 UTC 
(rev 139811)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-dlist
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-dlist/repos/community-staging-x86_64/PKGBUILD (from rev 139810, 
haskell-dlist/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:04:33 UTC (rev 139811)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Daniel Wallace 
+# Contributor: Don Stewart 
+# Contributor: Lex Black 
+
+pkgname=haskell-dlist
+pkgver=0.7.1.1
+_hkgname=dlist
+_licensefile=LICENSE
+pkgrel=2
+pkgdesc="Differences lists"
+url=" https://hackage.haskell.org/package/dlist";
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=('ghc=7.10.1')
+options=('strip')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha256sums=('08b07f28e01f4a7e17239c33b37fbef0bf6073712337a97a145a583577df5efd')
+install="${pkgname}.install"
+options=('staticlibs')
+
+build() {
+cd ${_hkgname}

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:03:35
  Author: foutrelis
Revision: 139809

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

Added:
  haskell-sha/repos/community-staging-i686/
  haskell-sha/repos/community-staging-i686/PKGBUILD
(from rev 139808, haskell-sha/trunk/PKGBUILD)
  haskell-sha/repos/community-staging-i686/haskell-sha.install
(from rev 139808, haskell-sha/trunk/haskell-sha.install)
  haskell-sha/repos/community-staging-x86_64/
  haskell-sha/repos/community-staging-x86_64/PKGBUILD
(from rev 139808, haskell-sha/trunk/PKGBUILD)
  haskell-sha/repos/community-staging-x86_64/haskell-sha.install
(from rev 139808, haskell-sha/trunk/haskell-sha.install)

--+
 community-staging-i686/PKGBUILD  |   40 +
 community-staging-i686/haskell-sha.install   |   26 
 community-staging-x86_64/PKGBUILD|   40 +
 community-staging-x86_64/haskell-sha.install |   26 
 4 files changed, 132 insertions(+)

Copied: haskell-sha/repos/community-staging-i686/PKGBUILD (from rev 139808, 
haskell-sha/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:03:35 UTC (rev 139809)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Lex Black 
+# Contributor: Arch Haskell Team <>
+
+pkgname=haskell-sha
+pkgver=1.6.4.2
+pkgrel=2
+pkgdesc="Implementations of the SHA suite of message digest functions"
+url="http://hackage.haskell.org/package/SHA";
+license=('BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc')
+options=('strip')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/SHA/${pkgver}/SHA-${pkgver}.tar.gz";)
+sha256sums=('c470176f63cbe49fd0502a1b32ef22bc01b1af42385583b8be94547750958a8c')
+
+build() {
+cd ${srcdir}/SHA-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd ${srcdir}/SHA-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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/SHA
+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-sha/repos/community-staging-i686/haskell-sha.install (from rev 
139808, haskell-sha/trunk/haskell-sha.install)
===
--- community-staging-i686/haskell-sha.install  (rev 0)
+++ community-staging-i686/haskell-sha.install  2015-09-10 20:03:35 UTC (rev 
139809)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-sha
+HS_DIR=usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+${HS_DIR}/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-sha/repos/community-staging-x86_64/PKGBUILD (from rev 139808, 
haskell-sha/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:03:35 UTC (rev 139809)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Lex Black 
+# Contributor: Arch Haskell Team <>
+
+pkgname=haskell-sha
+pkgver=1.6.4.2
+pkgrel=2
+pkgdesc="Implementations of the SHA suite of message digest functions"
+url="http://hackage.haskell.org/package/SHA";
+license=('BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc')
+options=('strip')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/SHA/${pkgver}/SHA-${pkgver}.tar.gz";)
+sha256sums=('c470176f63cbe49fd0502a1b32ef22bc01b1af42385583b8be94547750958a8c')
+
+build() {
+cd ${srcdir}/SHA-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:03:28
  Author: foutrelis
Revision: 139808

ncurses 6.0 rebuild.

Modified:
  haskell-sha/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 20:00:19 UTC (rev 139807)
+++ PKGBUILD2015-09-10 20:03:28 UTC (rev 139808)
@@ -5,7 +5,7 @@
 
 pkgname=haskell-sha
 pkgver=1.6.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Implementations of the SHA suite of message digest functions"
 url="http://hackage.haskell.org/package/SHA";
 license=('BSD3')


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:00:19
  Author: foutrelis
Revision: 139807

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

Added:
  haskell-zlib/repos/community-staging-i686/
  haskell-zlib/repos/community-staging-i686/PKGBUILD
(from rev 139806, haskell-zlib/trunk/PKGBUILD)
  haskell-zlib/repos/community-staging-i686/haskell-zlib.install
(from rev 139806, haskell-zlib/trunk/haskell-zlib.install)
  haskell-zlib/repos/community-staging-x86_64/
  haskell-zlib/repos/community-staging-x86_64/PKGBUILD
(from rev 139806, haskell-zlib/trunk/PKGBUILD)
  haskell-zlib/repos/community-staging-x86_64/haskell-zlib.install
(from rev 139806, haskell-zlib/trunk/haskell-zlib.install)

---+
 community-staging-i686/PKGBUILD   |   39 
 community-staging-i686/haskell-zlib.install   |   18 +++
 community-staging-x86_64/PKGBUILD |   39 
 community-staging-x86_64/haskell-zlib.install |   18 +++
 4 files changed, 114 insertions(+)

Copied: haskell-zlib/repos/community-staging-i686/PKGBUILD (from rev 139806, 
haskell-zlib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:00:19 UTC (rev 139807)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Colin Woodbury 
+
+pkgname=haskell-zlib
+pkgver=0.5.4.2
+pkgrel=2
+pkgdesc="Compression and decompression in the gzip and zlib formats"
+url="http://hackage.haskell.org/package/zlib";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc' 'zlib')
+options=('strip' 'staticlibs')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/zlib/${pkgver}/zlib-${pkgver}.tar.gz)
+md5sums=('79f01f01f859b0ef68d5787756d181c1')
+
+build() {
+cd ${srcdir}/zlib-${pkgver}
+runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd ${srcdir}/zlib-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.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/zlib
+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-zlib/repos/community-staging-i686/haskell-zlib.install (from 
rev 139806, haskell-zlib/trunk/haskell-zlib.install)
===
--- community-staging-i686/haskell-zlib.install (rev 0)
+++ community-staging-i686/haskell-zlib.install 2015-09-10 20:00:19 UTC (rev 
139807)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-zlib
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-zlib/repos/community-staging-x86_64/PKGBUILD (from rev 139806, 
haskell-zlib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 20:00:19 UTC (rev 139807)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Colin Woodbury 
+
+pkgname=haskell-zlib
+pkgver=0.5.4.2
+pkgrel=2
+pkgdesc="Compression and decompression in the gzip and zlib formats"
+url="http://hackage.haskell.org/package/zlib";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc' 'zlib')
+options=('strip' 'staticlibs')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/zlib/${pkgver}/zlib-${pkgver}.tar.gz)
+md5sums=('79f01f01f859b0ef68d5787756d181c1')
+
+build() {
+cd ${srcdir}/zlib-${pkgver}
+runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup bui

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 22:00:12
  Author: foutrelis
Revision: 139806

ncurses 6.0 rebuild.

Modified:
  haskell-zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 19:59:19 UTC (rev 139805)
+++ PKGBUILD2015-09-10 20:00:12 UTC (rev 139806)
@@ -4,7 +4,7 @@
 
 pkgname=haskell-zlib
 pkgver=0.5.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Compression and decompression in the gzip and zlib formats"
 url="http://hackage.haskell.org/package/zlib";
 license=('custom:BSD3')


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 21:59:19
  Author: foutrelis
Revision: 139805

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

Added:
  haskell-primitive/repos/community-staging-i686/
  haskell-primitive/repos/community-staging-i686/PKGBUILD
(from rev 139804, haskell-primitive/trunk/PKGBUILD)
  haskell-primitive/repos/community-staging-i686/haskell-primitive.install
(from rev 139804, haskell-primitive/trunk/haskell-primitive.install)
  haskell-primitive/repos/community-staging-x86_64/
  haskell-primitive/repos/community-staging-x86_64/PKGBUILD
(from rev 139804, haskell-primitive/trunk/PKGBUILD)
  haskell-primitive/repos/community-staging-x86_64/haskell-primitive.install
(from rev 139804, haskell-primitive/trunk/haskell-primitive.install)

+
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/haskell-primitive.install   |   26 +++
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/haskell-primitive.install |   26 +++
 4 files changed, 136 insertions(+)

Copied: haskell-primitive/repos/community-staging-i686/PKGBUILD (from rev 
139804, haskell-primitive/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 19:59:19 UTC (rev 139805)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-primitive
+pkgver=0.6
+pkgrel=2
+pkgdesc="Wrappers for primitive operations"
+url="http://hackage.haskell.org/package/primitive";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+depends=("ghc")
+options=('strip' 'staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz";)
+sha256sums=('34a5f39213c68369e7edc2a3ea175d3f4edbf89e9f084710eff6f2d69722')
+
+build() {
+  cd ${srcdir}/primitive-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  _ghcver=`pacman -Q ghc | cut -f2 -d\  | cut -f1 -d-`
+  depends=("ghc=${_ghcver}")
+
+  cd ${srcdir}/primitive-${pkgver}
+  install -Dm744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install -m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/primitive
+  runhaskell Setup copy --destdir=${pkgdir}
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: 
haskell-primitive/repos/community-staging-i686/haskell-primitive.install (from 
rev 139804, haskell-primitive/trunk/haskell-primitive.install)
===
--- community-staging-i686/haskell-primitive.install
(rev 0)
+++ community-staging-i686/haskell-primitive.install2015-09-10 19:59:19 UTC 
(rev 139805)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-primitive
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-primitive/repos/community-staging-x86_64/PKGBUILD (from rev 
139804, haskell-primitive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 19:59:19 UTC (rev 139805)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-primitive
+pkgver=0.6
+pkgrel=2
+pkgdesc="Wrappers for primitive operations"
+url="http://hackage.haskell.org/package/primitive";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+depends=("ghc")
+options=('strip' 'staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz";)
+sha256sums=('34a5f39213c68369e7edc2a3ea175d3f4edbf89e9f084710eff6f2d69722')
+
+build() {
+  cd ${srcdir}/primitive-${pkgver

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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 21:59:07
  Author: foutrelis
Revision: 139804

ncurses 6.0 rebuild.

Modified:
  haskell-primitive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 19:11:05 UTC (rev 139803)
+++ PKGBUILD2015-09-10 19:59:07 UTC (rev 139804)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-primitive
 pkgver=0.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Wrappers for primitive operations"
 url="http://hackage.haskell.org/package/primitive";
 license=("custom:BSD3")


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

2015-09-10 Thread Andreas Radke
Date: Thursday, September 10, 2015 @ 21:20:45
  Author: andyrtr
Revision: 245752

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

Added:
  man-db/repos/testing-i686/
  man-db/repos/testing-i686/PKGBUILD
(from rev 245751, man-db/trunk/PKGBUILD)
  man-db/repos/testing-i686/convert-mans
(from rev 245751, man-db/trunk/convert-mans)
  man-db/repos/testing-i686/man-db.install
(from rev 245751, man-db/trunk/man-db.install)
  man-db/repos/testing-i686/man-db.service
(from rev 245751, man-db/trunk/man-db.service)
  man-db/repos/testing-i686/man-db.timer
(from rev 245751, man-db/trunk/man-db.timer)
  man-db/repos/testing-x86_64/
  man-db/repos/testing-x86_64/PKGBUILD
(from rev 245751, man-db/trunk/PKGBUILD)
  man-db/repos/testing-x86_64/convert-mans
(from rev 245751, man-db/trunk/convert-mans)
  man-db/repos/testing-x86_64/man-db.install
(from rev 245751, man-db/trunk/man-db.install)
  man-db/repos/testing-x86_64/man-db.service
(from rev 245751, man-db/trunk/man-db.service)
  man-db/repos/testing-x86_64/man-db.timer
(from rev 245751, man-db/trunk/man-db.timer)

---+
 testing-i686/PKGBUILD |   68 
 testing-i686/convert-mans |   11 ++
 testing-i686/man-db.install   |   17 ++
 testing-i686/man-db.service   |   11 ++
 testing-i686/man-db.timer |7 
 testing-x86_64/PKGBUILD   |   68 
 testing-x86_64/convert-mans   |   11 ++
 testing-x86_64/man-db.install |   17 ++
 testing-x86_64/man-db.service |   11 ++
 testing-x86_64/man-db.timer   |7 
 10 files changed, 228 insertions(+)

Copied: man-db/repos/testing-i686/PKGBUILD (from rev 245751, 
man-db/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 19:20:45 UTC (rev 245752)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Sergej Pupykin 
+
+pkgname=man-db
+pkgver=2.7.3
+pkgrel=1
+pkgdesc="A utility for reading man pages"
+arch=('i686' 'x86_64')
+url="http://www.nongnu.org/man-db/";
+license=('GPL' 'LGPL')
+groups=('base')
+depends=( 'bash' 'gdbm' 'zlib' 'groff' 'libpipeline' 'less')
+optdepends=('gzip')
+backup=('etc/man_db.conf')
+conflicts=('man')
+provides=('man')
+replaces=('man')
+install=${pkgname}.install
+source=(http://download-mirror.savannah.gnu.org/releases/man-db/$pkgname-$pkgver.tar.xz{,.sig}
+convert-mans
+man-db.{timer,service})
+md5sums=('df898c82d766dad6492a5a96d5a26647'
+ 'SKIP'
+ '2b7662a7d5b33fe91f9f3e034361a2f6'
+ 'df6d4f432e3e16c255c785fca1447346'
+ '36fb3f616e42a0e23cf7a4d284e640cd')
+validpgpkeys=('AC0A4FF12611B6FCCF01C111393587D97D86500B') # Colin Watson 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  
+  # fix group in systemd tempfile
+  sed -i 's/man\ root/root\ root/' init/systemd/man-db.conf
+
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+   --with-db=gdbm \
+   --disable-setuid \
+   --enable-mandirs=GNU \
+   --with-sections="1 n l 8 3 0 2 5 4 9 6 7"
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # part of groff pkg
+  rm -f ${pkgdir}/usr/bin/zsoelim
+
+  # script from LFS to convert manpages, see
+  # http://www.linuxfromscratch.org/lfs/view/6.4/chapter06/man-db.html
+  install -D -m755 ${srcdir}/convert-mans  ${pkgdir}/usr/bin/convert-mans 
+
+  # install man-db update timer
+  install -D -m644 ${srcdir}/man-db.timer 
${pkgdir}/usr/lib/systemd/system/man-db.timer
+  install -D -m644 ${srcdir}/man-db.service 
${pkgdir}/usr/lib/systemd/system/man-db.service
+  install -d -m755 ${pkgdir}/usr/lib/systemd/system/multi-user.target.wants
+  ln -s ../man-db.timer 
${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/man-db.timer
+}

Copied: man-db/repos/testing-i686/convert-mans (from rev 245751, 
man-db/trunk/convert-mans)
===
--- testing-i686/convert-mans   (rev 0)
+++ testing-i686/convert-mans   2015-09-10 19:20:45 UTC (rev 245752)
@@ -0,0 +1,11 @@
+#!/bin/sh -e
+FROM="$1"
+TO="$2"
+shift ; shift
+while [ $# -gt 0 ]
+do
+FILE="$1"
+shift
+iconv -f "$FROM" -t "$TO" "$FILE" >.tmp.iconv
+mv .tmp.iconv "$FILE"
+done

Copied: man-db/repos/testing-i686/man-db.install (from rev 245751, 
man-db/trunk/man-db.install)
===
--- testing-i686/man-db.install (rev 0)
+++ testing-i686/man-db.install 2015-09-10 19:20:45 UTC (rev 245752)
@@ -0,0 +1,17 @@
+post_install() {
+  echo "it's recommended to create an initial"
+  echo "database running 

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

2015-09-10 Thread Andreas Radke
Date: Thursday, September 10, 2015 @ 21:20:28
  Author: andyrtr
Revision: 245751

upgpkg: man-db 2.7.3-1

upstream update 2.7.3

Modified:
  man-db/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 19:06:36 UTC (rev 245750)
+++ PKGBUILD2015-09-10 19:20:28 UTC (rev 245751)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=man-db
-pkgver=2.7.2
+pkgver=2.7.3
 pkgrel=1
 pkgdesc="A utility for reading man pages"
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 
source=(http://download-mirror.savannah.gnu.org/releases/man-db/$pkgname-$pkgver.tar.xz{,.sig}
 convert-mans
 man-db.{timer,service})
-md5sums=('4b9480e4f1da04abb22ae7a9345ace6b'
+md5sums=('df898c82d766dad6492a5a96d5a26647'
  'SKIP'
  '2b7662a7d5b33fe91f9f3e034361a2f6'
  'df6d4f432e3e16c255c785fca1447346'


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

2015-09-10 Thread Ike Devolder
Date: Thursday, September 10, 2015 @ 21:11:05
  Author: idevolder
Revision: 139803

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

Added:
  kodi/repos/community-i686/PKGBUILD
(from rev 139802, kodi/trunk/PKGBUILD)
  kodi/repos/community-i686/kodi.install
(from rev 139802, kodi/trunk/kodi.install)
  kodi/repos/community-x86_64/PKGBUILD
(from rev 139802, kodi/trunk/PKGBUILD)
  kodi/repos/community-x86_64/kodi.install
(from rev 139802, kodi/trunk/kodi.install)
Deleted:
  kodi/repos/community-i686/PKGBUILD
  kodi/repos/community-i686/kodi.install
  kodi/repos/community-x86_64/PKGBUILD
  kodi/repos/community-x86_64/kodi.install

---+
 /PKGBUILD |  256 
 /kodi.install |   34 +
 community-i686/PKGBUILD   |  130 
 community-i686/kodi.install   |   17 --
 community-x86_64/PKGBUILD |  130 
 community-x86_64/kodi.install |   17 --
 6 files changed, 290 insertions(+), 294 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-10 19:10:55 UTC (rev 139802)
+++ community-i686/PKGBUILD 2015-09-10 19:11:05 UTC (rev 139803)
@@ -1,130 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Brad Fanella 
-# Contributor: [vEX] 
-# Contributor: Zeqadious 
-# Contributor: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Maxime Gauduin 
-
-_prefix=/usr
-
-pkgbase=kodi
-pkgname=('kodi' 'kodi-eventclients')
-pkgver=15.1
-_codename=Isengard
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://kodi.tv";
-license=('GPL2')
-makedepends=(
-  'afpfs-ng' 'bluez-libs' 'boost' 'cmake' 'curl' 'cwiid' 'doxygen' 'git' 'glew'
-  'gperf' 'hicolor-icon-theme' 'jasper' 'java-runtime' 'libaacs' 'libass'
-  'libbluray' 'libcdio' 'libcec' 'libgl' 'libmariadbclient' 'libmicrohttpd'
-  'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libssh' 'libva'
-  'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'mesa' 'nasm' 'nss-mdns'
-  'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2'
-  'sdl_image' 'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 
'upower'
-  'yajl' 'zip'
-)
-source=(
-  
"$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz";
-)
-sha256sums=('72b2610d8fbff807128d74429f25bf6716ba880c27c2c5d9fad012ec7fc70705')
-
-prepare() {
-  cd "$srcdir/xbmc-$pkgver-$_codename"
-
-  find -type f -name *.py -exec sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
"{}" +
-  sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
tools/depends/native/rpl-native/rpl
-   sed 's/python/python2/' -i tools/Linux/kodi.sh.in
-  sed 's/shell python/shell python2/' -i tools/EventClients/Makefile.in
-}
-
-build() {
-  cd "$srcdir/xbmc-$pkgver-$_codename"
-
-   # Bootstrapping
-  MAKEFLAGS=-j1 ./bootstrap
-
-  #./configure --help
-  #return 1
-
-  # Configuring XBMC
-  export PYTHON_VERSION=2  # external python v2
-  ./configure --prefix=$_prefix --exec-prefix=$_prefix \
---disable-debug \
---enable-optimizations \
---enable-libbluray \
---enable-shared-libraries \
---with-lirc-device=/run/lirc/lircd \
-ac_cv_type__Bool=yes
-
-  # Now (finally) build
-  make
-}
-
-package_kodi() {
-  pkgdesc="A software media player and entertainment hub for digital media"
-
-  # depends expected for kodi plugins:
-  # 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
-  # depends expeced in FEH.py
-  # 'mesa-demos' 'xorg-xdpyinfo'
-  depends=(
-'python2-pillow' 'python2-pybluez' 'python2-simplejson'
-'mesa-demos' 'xorg-xdpyinfo'
-'bluez-libs' 'fribidi' 'glew' 'hicolor-icon-theme' 'libcdio'
-'libjpeg-turbo' 'libmariadbclient' 'libmicrohttpd' 'libpulse' 'libssh'
-'libva' 'libxrandr' 'libxslt' 'lzo' 'sdl2' 'smbclient' 'taglib' 'tinyxml'
-'yajl'
-  )
-  optdepends=(
-'afpfs-ng: Apple shares support'
-'bluez: Blutooth support'
-'libnfs: NFS shares support'
-'libplist: AirPlay support'
-'libcec: Pulse-Eight USB-CEC adapter support'
-'lirc: Remote controller support'
-'pulseaudio: PulseAudio support'
-'shairplay: AirPlay support'
-'udisks: Automount external drives'
-'unrar: Archives support'
-'unzip: Archives support'
-'upower: Display battery level'
-'lsb-release: log distro information in crashlog'
-  )
-  install="kodi.install"
-  provides=('xbmc')
-  conflicts=('xbmc')
-  replaces=('xbmc')
-
-  cd "$srcdir/xbmc-$pkgver-$_codename"
-  # Running make install
-  make DESTDIR="$pkgdir" install
-
-  # We will no longer support the xbmc name
-  rm "$pkgdir/usr/share/xsessions/xbmc.desktop"
-  rm "$pkgdir/usr/bin/"xbmc{,-standalone}
-  # we will leave /usr/{include,lib,share}/xbmc for now

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

2015-09-10 Thread Ike Devolder
Date: Thursday, September 10, 2015 @ 21:10:55
  Author: idevolder
Revision: 139802

upgpkg: kodi 15.1-2

Modified:
  kodi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 19:10:25 UTC (rev 139801)
+++ PKGBUILD2015-09-10 19:10:55 UTC (rev 139802)
@@ -9,13 +9,11 @@
 # Contributor: Bartłomiej Piotrowski 
 # Contributor: Maxime Gauduin 
 
-_prefix=/usr
-
 pkgbase=kodi
 pkgname=('kodi' 'kodi-eventclients')
 pkgver=15.1
 _codename=Isengard
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://kodi.tv";
 license=('GPL2')
@@ -54,7 +52,7 @@
 
   # Configuring XBMC
   export PYTHON_VERSION=2  # external python v2
-  ./configure --prefix=$_prefix --exec-prefix=$_prefix \
+  ./configure --prefix=/usr --exec-prefix=/usr \
 --disable-debug \
 --enable-optimizations \
 --enable-libbluray \
@@ -76,7 +74,7 @@
   depends=(
 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
 'mesa-demos' 'xorg-xdpyinfo'
-'bluez-libs' 'fribidi' 'glew' 'hicolor-icon-theme' 'libcdio'
+'bluez-libs' 'fribidi' 'glew' 'hicolor-icon-theme' 'libass' 'libcdio'
 'libjpeg-turbo' 'libmariadbclient' 'libmicrohttpd' 'libpulse' 'libssh'
 'libva' 'libxrandr' 'libxslt' 'lzo' 'sdl2' 'smbclient' 'taglib' 'tinyxml'
 'yajl'
@@ -111,10 +109,10 @@
   # we will leave /usr/{include,lib,share}/xbmc for now
 
   # Licenses
-   install -dm755 ${pkgdir}${_prefix}/share/licenses/${pkgname}
+   install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
   for licensef in LICENSE.GPL copying.txt; do
-   mv ${pkgdir}${_prefix}/share/doc/kodi/${licensef} \
-   ${pkgdir}${_prefix}/share/licenses/${pkgname}
+   mv ${pkgdir}/usr/share/doc/kodi/${licensef} \
+   ${pkgdir}/usr/share/licenses/${pkgname}
   done
 }
 


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

2015-09-10 Thread Ike Devolder
Date: Thursday, September 10, 2015 @ 21:10:19
  Author: idevolder
Revision: 139800

upgpkg: closure-compiler 20150901-1

Modified:
  closure-compiler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 13:27:09 UTC (rev 139799)
+++ PKGBUILD2015-09-10 19:10:19 UTC (rev 139800)
@@ -2,7 +2,7 @@
 # Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
 # Contributor: Bram Schoenmakers 
 pkgname=closure-compiler
-pkgver=20150729
+pkgver=20150901
 pkgrel=1
 pkgdesc="Performs checking, instrumentation and optimizations on Javascript 
code."
 arch=('any')
@@ -36,4 +36,4 @@
chmod +x "$pkgdir/usr/bin/closure"
 }
 
-sha256sums=('6853912a62fd794b63331073add7b15810748b571b2f85704d0153d4c721cd41')
+sha256sums=('540a26730e655ba495a0f768f76755728aa6e7c3cd78f390f1ab89a4ce24a513')


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

2015-09-10 Thread Ike Devolder
Date: Thursday, September 10, 2015 @ 21:10:25
  Author: idevolder
Revision: 139801

archrelease: copy trunk to community-any

Added:
  closure-compiler/repos/community-any/PKGBUILD
(from rev 139800, closure-compiler/trunk/PKGBUILD)
Deleted:
  closure-compiler/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-10 19:10:19 UTC (rev 139800)
+++ PKGBUILD2015-09-10 19:10:25 UTC (rev 139801)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Bram Schoenmakers 
-pkgname=closure-compiler
-pkgver=20150729
-pkgrel=1
-pkgdesc="Performs checking, instrumentation and optimizations on Javascript 
code."
-arch=('any')
-url="https://developers.google.com/closure/compiler/";
-license=('APACHE')
-depends=('java-runtime')
-makedepends=('apache-ant' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/google/$pkgname/archive/v$pkgver.tar.gz";)
-
-LANG='en_US.UTF-8'
-
-build() {
-   cd "$pkgname-$pkgver"
-
-   ant jar
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-
-   ant test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-
-   install -m755 -D build/compiler.jar 
"$pkgdir/usr/share/java/closure-compiler/closure-compiler.jar"
-   mkdir $pkgdir/usr/bin
-   echo '#!/bin/sh
-   "$JAVA_HOME/bin/java" -jar 
/usr/share/java/closure-compiler/closure-compiler.jar $@' > 
"$pkgdir/usr/bin/closure"
-   chmod +x "$pkgdir/usr/bin/closure"
-}
-
-sha256sums=('6853912a62fd794b63331073add7b15810748b571b2f85704d0153d4c721cd41')

Copied: closure-compiler/repos/community-any/PKGBUILD (from rev 139800, 
closure-compiler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-10 19:10:25 UTC (rev 139801)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Bram Schoenmakers 
+pkgname=closure-compiler
+pkgver=20150901
+pkgrel=1
+pkgdesc="Performs checking, instrumentation and optimizations on Javascript 
code."
+arch=('any')
+url="https://developers.google.com/closure/compiler/";
+license=('APACHE')
+depends=('java-runtime')
+makedepends=('apache-ant' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/google/$pkgname/archive/v$pkgver.tar.gz";)
+
+LANG='en_US.UTF-8'
+
+build() {
+   cd "$pkgname-$pkgver"
+
+   ant jar
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+
+   ant test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+
+   install -m755 -D build/compiler.jar 
"$pkgdir/usr/share/java/closure-compiler/closure-compiler.jar"
+   mkdir $pkgdir/usr/bin
+   echo '#!/bin/sh
+   "$JAVA_HOME/bin/java" -jar 
/usr/share/java/closure-compiler/closure-compiler.jar $@' > 
"$pkgdir/usr/bin/closure"
+   chmod +x "$pkgdir/usr/bin/closure"
+}
+
+sha256sums=('540a26730e655ba495a0f768f76755728aa6e7c3cd78f390f1ab89a4ce24a513')


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

2015-09-10 Thread Andreas Radke
Date: Thursday, September 10, 2015 @ 21:06:15
  Author: andyrtr
Revision: 245749

upgpkg: cups-filters 1.0.75-1

upstream update 1.0.75

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 17:36:44 UTC (rev 245748)
+++ PKGBUILD2015-09-10 19:06:15 UTC (rev 245749)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=cups-filters
-pkgver=1.0.74
+pkgver=1.0.75
 pkgrel=1
 pkgdesc="OpenPrinting CUPS Filters"
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 provides=('foomatic-filters')
 replaces=('foomatic-filters')
 conflicts=('foomatic-filters')
-md5sums=('14862048b4a9a87abfeeae07531dd020')
+md5sums=('928b349db6b310fa14a4cabacabbdb55')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-10 Thread Andreas Radke
Date: Thursday, September 10, 2015 @ 21:06:36
  Author: andyrtr
Revision: 245750

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

Added:
  cups-filters/repos/extra-i686/PKGBUILD
(from rev 245749, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/extra-x86_64/PKGBUILD
(from rev 245749, cups-filters/trunk/PKGBUILD)
Deleted:
  cups-filters/repos/extra-i686/PKGBUILD
  cups-filters/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 19:06:15 UTC (rev 245749)
+++ extra-i686/PKGBUILD 2015-09-10 19:06:36 UTC (rev 245750)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgname=cups-filters
-pkgver=1.0.74
-pkgrel=1
-pkgdesc="OpenPrinting CUPS Filters"
-arch=('i686' 'x86_64')
-url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting";
-license=('GPL')
-depends=('lcms2' 'poppler' 'qpdf')
-makedepends=('ghostscript' 'ttf-dejavu' 'python2') # ttf-dejavu for make check
-optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
-   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
-   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
-   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
-backup=(etc/fonts/conf.d/99pdftoopvp.conf
-etc/cups/cups-browsed.conf)
-source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
-provides=('foomatic-filters')
-replaces=('foomatic-filters')
-conflicts=('foomatic-filters')
-md5sums=('14862048b4a9a87abfeeae07531dd020')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr  \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---with-rcdir=no \
---enable-avahi \
---with-browseremoteprotocols=DNSSD,CUPS \
---with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-  
-  # add upstream systemd support file
-  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i "s|cups.service|org.cups.cupsd.service|g" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  
-  # use lp group from cups pkg FS#36769
-  chgrp -R lp ${pkgdir}/etc/cups
-}

Copied: cups-filters/repos/extra-i686/PKGBUILD (from rev 245749, 
cups-filters/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 19:06:36 UTC (rev 245750)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.0.75
+pkgrel=1
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting";
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu' 'python2') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('928b349db6b310fa14a4cabacabbdb55')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-bro

[arch-commits] Commit in perl-http-message/repos/extra-any (PKGBUILD PKGBUILD)

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 19:36:44
  Author: fyan
Revision: 245748

archrelease: copy trunk to extra-any

Added:
  perl-http-message/repos/extra-any/PKGBUILD
(from rev 245747, perl-http-message/trunk/PKGBUILD)
Deleted:
  perl-http-message/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-10 17:36:29 UTC (rev 245747)
+++ PKGBUILD2015-09-10 17:36:44 UTC (rev 245748)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Justin "juster" Davis 
-# Generator : pbjam 0.01
-
-pkgname=perl-http-message
-pkgver=6.10
-pkgrel=1
-pkgdesc="HTTP style messages"
-arch=('any')
-url='http://search.cpan.org/dist/HTTP-Message'
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl' 'perl-encode-locale' 'perl-html-parser'
- 'perl-http-date' 'perl-lwp-mediatypes' 'perl-uri')
-checkdepends=('perl-io-html')
-conflicts=('perl-libwww<6')
-source=("http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/HTTP-Message-$pkgver.tar.gz";)
-md5sums=('b8a68ce1898691c536714eeae3f963d4')
-
-build() {
-  cd HTTP-Message-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd HTTP-Message-$pkgver
-  make test
-}
-
-package() {
-  cd HTTP-Message-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: perl-http-message/repos/extra-any/PKGBUILD (from rev 245747, 
perl-http-message/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-10 17:36:44 UTC (rev 245748)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Justin "juster" Davis 
+# Generator : pbjam 0.01
+
+pkgname=perl-http-message
+pkgver=6.11
+pkgrel=1
+pkgdesc="HTTP style messages"
+arch=('any')
+url='http://search.cpan.org/dist/HTTP-Message'
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl' 'perl-encode-locale' 'perl-html-parser'
+ 'perl-http-date' 'perl-lwp-mediatypes' 'perl-uri')
+checkdepends=('perl-io-html')
+conflicts=('perl-libwww<6')
+source=("http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/HTTP-Message-$pkgver.tar.gz";)
+md5sums=('4ed7add10daea3ab30abfeab6d03872f')
+
+build() {
+  cd HTTP-Message-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd HTTP-Message-$pkgver
+  make test
+}
+
+package() {
+  cd HTTP-Message-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-http-message/trunk (PKGBUILD)

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 19:36:29
  Author: fyan
Revision: 245747

upgpkg: perl-http-message 6.11-1

Modified:
  perl-http-message/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 16:49:19 UTC (rev 245746)
+++ PKGBUILD2015-09-10 17:36:29 UTC (rev 245747)
@@ -4,7 +4,7 @@
 # Generator : pbjam 0.01
 
 pkgname=perl-http-message
-pkgver=6.10
+pkgver=6.11
 pkgrel=1
 pkgdesc="HTTP style messages"
 arch=('any')
@@ -16,7 +16,7 @@
 checkdepends=('perl-io-html')
 conflicts=('perl-libwww<6')
 
source=("http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/HTTP-Message-$pkgver.tar.gz";)
-md5sums=('b8a68ce1898691c536714eeae3f963d4')
+md5sums=('4ed7add10daea3ab30abfeab6d03872f')
 
 build() {
   cd HTTP-Message-$pkgver


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

2015-09-10 Thread Tobias Powalowski
Date: Thursday, September 10, 2015 @ 18:49:19
  Author: tpowa
Revision: 245746

archrelease: copy trunk to extra-any

Added:
  
ovmf/repos/extra-any/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch
(from rev 245745, 
ovmf/trunk/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch)
  ovmf/repos/extra-any/PKGBUILD
(from rev 245745, ovmf/trunk/PKGBUILD)
Deleted:
  
ovmf/repos/extra-any/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch
  ovmf/repos/extra-any/PKGBUILD

---+
 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch |   74 +++---
 PKGBUILD  |  114 +-
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch
===
--- 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch   
2015-09-10 16:49:13 UTC (rev 245745)
+++ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch   
2015-09-10 16:49:19 UTC (rev 245746)
@@ -1,37 +0,0 @@
-From ab9435c71d894018c88c8f5ff89f654f2029d3ed Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Thomas=20B=C3=A4chler?= 
-Date: Sat, 1 Mar 2014 20:30:57 +0100
-Subject: [PATCH] Fix uninitialized value in VfrCompiler constructor.
-

- BaseTools/Source/C/VfrCompile/VfrCompiler.cpp | 1 +
- BaseTools/Source/C/VfrCompile/VfrCompiler.h   | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp 
b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp
-index dd34a1b..77b2cab 100644
 a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp
-+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp
-@@ -371,6 +371,7 @@ CVfrCompiler::CVfrCompiler (
- {
-   mPreProcessCmd = (CHAR8 *) PREPROCESSOR_COMMAND;
-   mPreProcessOpt = (CHAR8 *) PREPROCESSOR_OPTIONS;
-+  SET_RUN_STATUS(STATUS_UNKNOWN);
- 
-   OptionInitialization(Argc, Argv);
- 
-diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.h 
b/BaseTools/Source/C/VfrCompile/VfrCompiler.h
-index ea20bbc..1603961 100644
 a/BaseTools/Source/C/VfrCompile/VfrCompiler.h
-+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.h
-@@ -60,6 +60,7 @@ typedef struct {
- } OPTIONS;
- 
- typedef enum {
-+  STATUS_UNKNOWN = 0,
-   STATUS_INITIALIZED = 1,
-   STATUS_PREPROCESSED,
-   STATUS_COMPILEED,
--- 
-1.9.0
-

Copied: 
ovmf/repos/extra-any/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch
 (from rev 245745, 
ovmf/trunk/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch)
===
--- 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch   
(rev 0)
+++ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch   
2015-09-10 16:49:19 UTC (rev 245746)
@@ -0,0 +1,37 @@
+From ab9435c71d894018c88c8f5ff89f654f2029d3ed Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Thomas=20B=C3=A4chler?= 
+Date: Sat, 1 Mar 2014 20:30:57 +0100
+Subject: [PATCH] Fix uninitialized value in VfrCompiler constructor.
+
+---
+ BaseTools/Source/C/VfrCompile/VfrCompiler.cpp | 1 +
+ BaseTools/Source/C/VfrCompile/VfrCompiler.h   | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp 
b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp
+index dd34a1b..77b2cab 100644
+--- a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp
 b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp
+@@ -371,6 +371,7 @@ CVfrCompiler::CVfrCompiler (
+ {
+   mPreProcessCmd = (CHAR8 *) PREPROCESSOR_COMMAND;
+   mPreProcessOpt = (CHAR8 *) PREPROCESSOR_OPTIONS;
++  SET_RUN_STATUS(STATUS_UNKNOWN);
+ 
+   OptionInitialization(Argc, Argv);
+ 
+diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.h 
b/BaseTools/Source/C/VfrCompile/VfrCompiler.h
+index ea20bbc..1603961 100644
+--- a/BaseTools/Source/C/VfrCompile/VfrCompiler.h
 b/BaseTools/Source/C/VfrCompile/VfrCompiler.h
+@@ -60,6 +60,7 @@ typedef struct {
+ } OPTIONS;
+ 
+ typedef enum {
++  STATUS_UNKNOWN = 0,
+   STATUS_INITIALIZED = 1,
+   STATUS_PREPROCESSED,
+   STATUS_COMPILEED,
+-- 
+1.9.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-10 16:49:13 UTC (rev 245745)
+++ PKGBUILD2015-09-10 16:49:19 UTC (rev 245746)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler 
-pkgname=ovmf
-pkgver=16229
-pkgrel=1
-arch=('any')
-pkgdesc="Tianocore UEFI firmware for qemu."
-url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2";
-license=('custom')
-makedepends=('git' 'python2' 'iasl' 'nasm')
-source=('edk2::git+https://github.com/tianocore/edk2#commit=956f71b611b7677bc0605b95c4e67af413aaab86')
-sha256sums=('SKIP')
-options=(!makeflags)
-_toolchain_opt=GCC49
-
-pkgver() {
-  cd "${srcdir}"/edk2
-  git svn find-rev HEAD
-}
-
-prepare() {
-  cd "${srcdir}"
-  # edk2 uses python everywhe

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

2015-09-10 Thread Tobias Powalowski
Date: Thursday, September 10, 2015 @ 18:49:13
  Author: tpowa
Revision: 245745

upgpkg: ovmf 18419-1

bump to latest version

Modified:
  ovmf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 16:45:18 UTC (rev 245744)
+++ PKGBUILD2015-09-10 16:49:13 UTC (rev 245745)
@@ -1,14 +1,14 @@
 # $Id$
 # Maintainer: Thomas Bächler 
 pkgname=ovmf
-pkgver=16229
+pkgver=18419
 pkgrel=1
 arch=('any')
 pkgdesc="Tianocore UEFI firmware for qemu."
 url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2";
 license=('custom')
-makedepends=('git' 'python2' 'iasl' 'nasm')
-source=('edk2::git+https://github.com/tianocore/edk2#commit=956f71b611b7677bc0605b95c4e67af413aaab86')
+makedepends=('git' 'python2' 'iasl' 'nasm' 'subversion' 'perl-libwww')
+source=('edk2::git+https://github.com/tianocore/edk2#commit=ddd097e33f6e6829dc0413820e9971f3bf025f87')
 sha256sums=('SKIP')
 options=(!makeflags)
 _toolchain_opt=GCC49


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

2015-09-10 Thread Anatol Pomozov
Date: Thursday, September 10, 2015 @ 18:45:18
  Author: anatolik
Revision: 245744

Add gpg key validation back

Modified:
  dhcp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 16:05:05 UTC (rev 245743)
+++ PKGBUILD2015-09-10 16:45:18 UTC (rev 245744)
@@ -13,7 +13,7 @@
 license=('custom:isc-dhcp')
 url="https://www.isc.org/software/dhcp";
 makedepends=('bash' 'iproute2')
-source=(ftp://ftp.isc.org/isc/${pkgbase}/${_pkgver}/${pkgbase}-${_pkgver}.tar.gz
+source=(ftp://ftp.isc.org/isc/${pkgbase}/${_pkgver}/${pkgbase}-${_pkgver}.tar.gz{,.asc}
 dhcpd4.service
 dhcpd6.service
 dhcp-4.3.1-client_script-1.patch
@@ -20,11 +20,13 @@
 dhcp-4.3.1-missing_ipv6-1.patch
 arch_patch_over_lfs.patch)
 md5sums=('c5577b09c9017cdd319a11ff6364268e'
+ 'SKIP'
  '33cceed7056fdceda845eef26934f30f'
  '4db26ed8335b908ef8cdee55172a84ed'
  'c02bddb6c6c33c5885e3dd072ee2ee40'
  'da655f02f1cf4d95b4708e84e69edbc8'
  'ea45057374098b8ff7e140ecedf7696a')
+validpgpkeys=('ADBE9446286C794905F1E0756FA6EBC9911A4C02') # Internet Systems 
Consortium, Inc. 
 
 prepare() {
   cd "${srcdir}/${pkgbase}-${_pkgver}"


[arch-commits] Commit in php-composer/repos/extra-any (4 files)

2015-09-10 Thread Pierre Schmitz
Date: Thursday, September 10, 2015 @ 18:05:05
  Author: pierre
Revision: 245743

archrelease: copy trunk to extra-any

Added:
  php-composer/repos/extra-any/PKGBUILD
(from rev 245742, php-composer/trunk/PKGBUILD)
  php-composer/repos/extra-any/php.ini
(from rev 245742, php-composer/trunk/php.ini)
Deleted:
  php-composer/repos/extra-any/PKGBUILD
  php-composer/repos/extra-any/php.ini

--+
 PKGBUILD |  120 ++---
 php.ini  |   24 ++--
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-10 16:04:55 UTC (rev 245742)
+++ PKGBUILD2015-09-10 16:05:05 UTC (rev 245743)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=php-composer
-pkgver=1.0.0.alpha10.460
-pkgrel=1
-pkgdesc="Dependency Manager for PHP"
-arch=('any')
-license=('MIT')
-url='http://getcomposer.org/'
-depends=('php' 'php-intl')
-makedepends=('git')
-checkdepends=('mercurial')
-source=("${pkgname}::git+https://github.com/composer/composer.git";
-"composer-${pkgver}.phar::https://getcomposer.org/composer.phar";
-'php.ini')
-backup=('usr/share/php-composer/php.ini')
-md5sums=('SKIP'
- '4984cb6ddc0a3fa25117bfe7199a9986'
- 'b31326c352763328dca0a567a67609ab')
-
-pkgver() {
-   cd ${srcdir}/${pkgname}
-
-   local _tag=$(git tag -l --sort -version:refname | head -1)
-   echo "${_tag}.$(git rev-list ${_tag}.. --count)" | sed 's/-/./g'
-}
-
-prepare() {
-   cd ${srcdir}/${pkgname}
-
-   sed "s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g" -i src/Composer/Compiler.php
-   sed "s~php bin/composer~php -nc/usr/share/${pkgname}/php.ini 
bin/composer~g" -i bin/compile
-   /usr/bin/php -nc ${srcdir}/php.ini ${srcdir}/composer-${pkgver}.phar -n 
install --no-dev
-}
-
-build() {
-   cd ${srcdir}/${pkgname}
-
-   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
-}
-
-check() {
-   cd ${srcdir}/${pkgname}
-
-   git config --global user.email "${USER}@${HOST}"
-   git config --global user.name "${USER}"
-
-   # install the dev dependencies to run the unit tests
-   /usr/bin/php -nc ${srcdir}/php.ini bin/composer install
-   /usr/bin/php -nc ${srcdir}/php.ini vendor/bin/phpunit
-}
-
-package() {
-   cd ${srcdir}/${pkgname}
-
-   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
-   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
-}

Copied: php-composer/repos/extra-any/PKGBUILD (from rev 245742, 
php-composer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-10 16:05:05 UTC (rev 245743)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=php-composer
+pkgver=1.0.0.alpha10.465
+pkgrel=1
+pkgdesc="Dependency Manager for PHP"
+arch=('any')
+license=('MIT')
+url='http://getcomposer.org/'
+depends=('php' 'php-intl')
+makedepends=('git')
+checkdepends=('mercurial')
+source=("${pkgname}::git+https://github.com/composer/composer.git";
+"composer-${pkgver}.phar::https://getcomposer.org/composer.phar";
+'php.ini')
+backup=('usr/share/php-composer/php.ini')
+md5sums=('SKIP'
+ 'bc7ca705316637ca93b49860926eed98'
+ 'b31326c352763328dca0a567a67609ab')
+
+pkgver() {
+   cd ${srcdir}/${pkgname}
+
+   local _tag=$(git tag -l --sort -version:refname | head -1)
+   echo "${_tag}.$(git rev-list ${_tag}.. --count)" | sed 's/-/./g'
+}
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+
+   sed "s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g" -i src/Composer/Compiler.php
+   sed "s~php bin/composer~php -nc/usr/share/${pkgname}/php.ini 
bin/composer~g" -i bin/compile
+   /usr/bin/php -nc ${srcdir}/php.ini ${srcdir}/composer-${pkgver}.phar -n 
install --no-dev
+}
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
+}
+
+check() {
+   cd ${srcdir}/${pkgname}
+
+   git config --global user.email "${USER}@${HOST}"
+   git config --global user.name "${USER}"
+
+   # install the dev dependencies to run the unit tests
+   /usr/bin/php -nc ${srcdir}/php.ini bin/composer install
+   /usr/bin/php -nc ${srcdir}/php.ini vendor/bin/phpunit
+}
+
+package() {
+   cd ${srcdir}/${pkgname}
+
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
+   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
+}

Deleted: php.ini
===
--- php.ini 2015-09-10 16:04:55 UTC (rev 245742)
+++ php.ini 2015-09-10 16:05:05 UTC (rev 

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

2015-09-10 Thread Pierre Schmitz
Date: Thursday, September 10, 2015 @ 18:04:55
  Author: pierre
Revision: 245742

upgpkg: php-composer 1.0.0.alpha10.465-1

Modified:
  php-composer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 15:37:42 UTC (rev 245741)
+++ PKGBUILD2015-09-10 16:04:55 UTC (rev 245742)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=php-composer
-pkgver=1.0.0.alpha10.460
+pkgver=1.0.0.alpha10.465
 pkgrel=1
 pkgdesc="Dependency Manager for PHP"
 arch=('any')
@@ -16,7 +16,7 @@
 'php.ini')
 backup=('usr/share/php-composer/php.ini')
 md5sums=('SKIP'
- '4984cb6ddc0a3fa25117bfe7199a9986'
+ 'bc7ca705316637ca93b49860926eed98'
  'b31326c352763328dca0a567a67609ab')
 
 pkgver() {


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 17:37:42
  Author: heftig
Revision: 245741

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

Added:
  gegl/repos/testing-i686/PKGBUILD
(from rev 245740, gegl/trunk/PKGBUILD)
  gegl/repos/testing-x86_64/PKGBUILD
(from rev 245740, gegl/trunk/PKGBUILD)
Deleted:
  gegl/repos/testing-i686/PKGBUILD
  gegl/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  102 ++
 testing-i686/PKGBUILD   |   51 ---
 testing-x86_64/PKGBUILD |   51 ---
 3 files changed, 102 insertions(+), 102 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-09-10 15:36:30 UTC (rev 245740)
+++ testing-i686/PKGBUILD   2015-09-10 15:37:42 UTC (rev 245741)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann 
-
-pkgname=gegl
-pkgver=0.3.0
-pkgrel=1
-pkgdesc="Graph based image processing framework"
-arch=('i686' 'x86_64')
-url="http://www.gegl.org/";
-license=('GPL3' 'LGPL3')
-depends=('babl' 'libspiro' 'json-glib')
-makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala' 'python2' 'suitesparse')
-optdepends=('libopenraw: openraw plugin'
-'openexr: openexr plugin'
-'ffmpeg: ffmpeg plugin'
-'suitessparse: matting-levin plugin'
-'librsvg: svg plugin'
-'jasper: jasper plugin')
-source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('f0fec8f2e7b8835979d3cf4e38b05d41bb79f68dc80cf899a846484da693bbf7')
-
-prepare() {
-  mkdir path
-  ln -s /usr/bin/python2 path/python
-
-  cd ${pkgname}-${pkgver}
-}
-
-build() {
-  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
-  cd ${pkgname}-${pkgver}
-  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
---with-libavformat --with-jasper --disable-docs
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
-  cd ${pkgname}-${pkgver}
-  make -k check || :
-}
-
-package() {
-  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: gegl/repos/testing-i686/PKGBUILD (from rev 245740, gegl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 15:37:42 UTC (rev 245741)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=gegl
+pkgver=0.3.0
+pkgrel=2
+pkgdesc="Graph based image processing framework"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro' 'json-glib')
+makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala' 'python2' 'suitesparse')
+optdepends=('libopenraw: openraw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'suitesparse: matting-levin plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin')
+source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f0fec8f2e7b8835979d3cf4e38b05d41bb79f68dc80cf899a846484da693bbf7')
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --disable-docs
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  make -k check || :
+}
+
+package() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2015-09-10 15:36:30 UTC (rev 245740)
+++ testing-x86_64/PKGBUILD 2015-09-10 15:37:42 UTC (rev 245741)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann 
-
-pkgname=gegl
-pkgver=0.3.0
-pkgrel=1
-pkgdesc="Graph based image processing framework"
-arch=('i686' 'x86_64')
-url="http://www.gegl.org/";
-license=('GPL3' 'LGPL3')
-depends=('babl' 'libspiro' 'json-glib')
-makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala' 'python2' 'suitesparse')
-optdepends=('libopenraw: openraw plugin'
-'openexr: openexr plugin'
-'ffmpeg: ffmpeg plugin'

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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 17:36:30
  Author: heftig
Revision: 245740

optdep typo

Modified:
  gegl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 13:27:43 UTC (rev 245739)
+++ PKGBUILD2015-09-10 15:36:30 UTC (rev 245740)
@@ -3,7 +3,7 @@
 
 pkgname=gegl
 pkgver=0.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Graph based image processing framework"
 arch=('i686' 'x86_64')
 url="http://www.gegl.org/";
@@ -13,7 +13,7 @@
 optdepends=('libopenraw: openraw plugin'
 'openexr: openexr plugin'
 'ffmpeg: ffmpeg plugin'
-'suitessparse: matting-levin plugin'
+'suitesparse: matting-levin plugin'
 'librsvg: svg plugin'
 'jasper: jasper plugin')
 
source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)


[arch-commits] Commit in libva-intel-driver/repos (4 files)

2015-09-10 Thread Bartłomiej Piotrowski
Date: Thursday, September 10, 2015 @ 15:26:08
  Author: bpiotrowski
Revision: 245736

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

Added:
  libva-intel-driver/repos/extra-i686/PKGBUILD
(from rev 245735, libva-intel-driver/trunk/PKGBUILD)
  libva-intel-driver/repos/extra-x86_64/PKGBUILD
(from rev 245735, libva-intel-driver/trunk/PKGBUILD)
Deleted:
  libva-intel-driver/repos/extra-i686/PKGBUILD
  libva-intel-driver/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 2015-09-10 13:25:54 UTC (rev 245735)
+++ extra-i686/PKGBUILD 2015-09-10 13:26:08 UTC (rev 245736)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=libva-intel-driver
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libva')
-replaces=('libva-driver-intel')
-source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('d7678f7c66cbb135cced82ee2af6d8e8')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Only relevant if intel-gpu-tools is installed,
-  # since then the shaders will be recompiled
-  sed -i '1s/python$/&2/' src/shaders/gpp.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva-intel-driver/repos/extra-i686/PKGBUILD (from rev 245735, 
libva-intel-driver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 13:26:08 UTC (rev 245736)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=libva-intel-driver
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libva')
+replaces=('libva-driver-intel')
+source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('ed1b04c1a3c029ad389b7e23822a2762')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Only relevant if intel-gpu-tools is installed,
+  # since then the shaders will be recompiled
+  sed -i '1s/python$/&2/' src/shaders/gpp.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-10 13:25:54 UTC (rev 245735)
+++ extra-x86_64/PKGBUILD   2015-09-10 13:26:08 UTC (rev 245736)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=libva-intel-driver
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libva')
-replaces=('libva-driver-intel')
-source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('d7678f7c66cbb135cced82ee2af6d8e8')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Only relevant if intel-gpu-tools is installed,
-  # since then the shaders will be recompiled
-  sed -i '1s/python$/&2/' src/shaders/gpp.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva-intel-driver/repos/extra-x86_64/PKGBUILD (from rev 245735, 
libva-intel-driver/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-10 13:26:08 UTC (rev 245736)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=libva-intel-driver
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libva')
+replaces=('libva-driver-intel')
+source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('ed1b04c1a3c029ad389b7e23822a276

[arch-commits] Commit in libva-intel-driver/trunk (PKGBUILD)

2015-09-10 Thread Bartłomiej Piotrowski
Date: Thursday, September 10, 2015 @ 15:25:54
  Author: bpiotrowski
Revision: 245735

upgpkg: libva-intel-driver 1.6.1-1

new upstream release

Modified:
  libva-intel-driver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 13:22:13 UTC (rev 245734)
+++ PKGBUILD2015-09-10 13:25:54 UTC (rev 245735)
@@ -3,7 +3,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=libva-intel-driver
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libva')
 replaces=('libva-driver-intel')
 
source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('d7678f7c66cbb135cced82ee2af6d8e8')
+md5sums=('ed1b04c1a3c029ad389b7e23822a2762')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-09-10 Thread Bartłomiej Piotrowski
Date: Thursday, September 10, 2015 @ 15:21:55
  Author: bpiotrowski
Revision: 245733

upgpkg: libva 1.6.1-1

new upstream release

Modified:
  libva/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 12:54:47 UTC (rev 245732)
+++ PKGBUILD2015-09-10 13:21:55 UTC (rev 245733)
@@ -3,7 +3,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=libva
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='Video Acceleration (VA) API for Linux'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards'
 'libva-intel-driver: backend for Intel cards')
 
source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('3f1241b4080db53c120325932f393f33')
+md5sums=('7a5eb1fdf531f987211b7228a6a46428')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-10 Thread Bartłomiej Piotrowski
Date: Thursday, September 10, 2015 @ 15:22:13
  Author: bpiotrowski
Revision: 245734

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 13:21:55 UTC (rev 245733)
+++ extra-i686/PKGBUILD 2015-09-10 13:22:13 UTC (rev 245734)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=libva
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='Video Acceleration (VA) API for Linux'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libgl' 'libdrm' 'libxfixes')
-makedepends=('mesa')
-optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards'
-'libva-intel-driver: backend for Intel cards')
-source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('3f1241b4080db53c120325932f393f33')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva/repos/extra-i686/PKGBUILD (from rev 245733, libva/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 13:22:13 UTC (rev 245734)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=libva
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Video Acceleration (VA) API for Linux'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libgl' 'libdrm' 'libxfixes')
+makedepends=('mesa')
+optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards'
+'libva-intel-driver: backend for Intel cards')
+source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('7a5eb1fdf531f987211b7228a6a46428')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-10 13:21:55 UTC (rev 245733)
+++ extra-x86_64/PKGBUILD   2015-09-10 13:22:13 UTC (rev 245734)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=libva
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='Video Acceleration (VA) API for Linux'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libgl' 'libdrm' 'libxfixes')
-makedepends=('mesa')
-optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards'
-'libva-intel-driver: backend for Intel cards')
-source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('3f1241b4080db53c120325932f393f33')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva/repos/extra-x86_64/PKGBUILD (from rev 245733, 
libva/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-10 13:22:13 UTC (rev 245734)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=libva
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Video Acceleration (VA) API for Linux'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libgl' 'libdrm' 'libxfixes')
+makedepends=('mesa')
+optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards'
+'libva-intel-driver: backend for Intel cards')
+source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('7a5eb1fdf531f987211b7228a6a46428')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}


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

2015-09-10 Thread Gaetan Bisson
Date: Thursday, September 10, 2015 @ 14:54:47
  Author: bisson
Revision: 245732

fix FS#46239

Modified:
  libjpeg-turbo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 12:39:14 UTC (rev 245731)
+++ PKGBUILD2015-09-10 12:54:47 UTC (rev 245732)
@@ -8,8 +8,8 @@
 pkgrel=1
 pkgdesc='JPEG image codec with accelerated baseline compression and 
decompression'
 url='http://libjpeg-turbo.virtualgl.org/'
-license=('GPL' 'custom')
 arch=('i686' 'x86_64')
+license=('custom')
 makedepends=('nasm')
 
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
 sha1sums=('363a149f644211462c45138a19674f38100036d3')


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:38:42
  Author: heftig
Revision: 245730

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

Added:
  gegl/repos/testing-i686/
  gegl/repos/testing-i686/PKGBUILD
(from rev 245729, gegl/trunk/PKGBUILD)
  gegl/repos/testing-x86_64/
  gegl/repos/testing-x86_64/PKGBUILD
(from rev 245729, gegl/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   51 ++
 testing-x86_64/PKGBUILD |   51 ++
 2 files changed, 102 insertions(+)

Copied: gegl/repos/testing-i686/PKGBUILD (from rev 245729, gegl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 12:38:42 UTC (rev 245730)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=gegl
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="Graph based image processing framework"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro' 'json-glib')
+makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala' 'python2' 'suitesparse')
+optdepends=('libopenraw: openraw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'suitessparse: matting-levin plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin')
+source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f0fec8f2e7b8835979d3cf4e38b05d41bb79f68dc80cf899a846484da693bbf7')
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --disable-docs
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  make -k check || :
+}
+
+package() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: gegl/repos/testing-x86_64/PKGBUILD (from rev 245729, 
gegl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-10 12:38:42 UTC (rev 245730)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=gegl
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="Graph based image processing framework"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro' 'json-glib')
+makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala' 'python2' 'suitesparse')
+optdepends=('libopenraw: openraw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'suitessparse: matting-levin plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin')
+source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f0fec8f2e7b8835979d3cf4e38b05d41bb79f68dc80cf899a846484da693bbf7')
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --disable-docs
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  make -k check || :
+}
+
+package() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:39:14
  Author: heftig
Revision: 245731

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

Added:
  gnome-photos/repos/testing-i686/
  gnome-photos/repos/testing-i686/PKGBUILD
(from rev 245730, gnome-photos/trunk/PKGBUILD)
  gnome-photos/repos/testing-i686/gnome-photos.install
(from rev 245730, gnome-photos/trunk/gnome-photos.install)
  gnome-photos/repos/testing-x86_64/
  gnome-photos/repos/testing-x86_64/PKGBUILD
(from rev 245730, gnome-photos/trunk/PKGBUILD)
  gnome-photos/repos/testing-x86_64/gnome-photos.install
(from rev 245730, gnome-photos/trunk/gnome-photos.install)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-i686/gnome-photos.install   |   12 
 testing-x86_64/PKGBUILD |   34 ++
 testing-x86_64/gnome-photos.install |   12 
 4 files changed, 92 insertions(+)

Copied: gnome-photos/repos/testing-i686/PKGBUILD (from rev 245730, 
gnome-photos/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 12:39:14 UTC (rev 245731)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-photos
+pkgver=3.16.2
+pkgrel=1
+pkgdesc="Access, organize, and share your photos on GNOME"
+arch=(i686 x86_64)
+url="https://www.gnome.org/";
+license=(GPL)
+depends=(exempi gtk3 libexif librsvg babl gegl gnome-desktop 
gnome-online-accounts lcms2 tracker
+ hicolor-icon-theme grilo gfbgraph libgdata gnome-online-miners 
dleyna-server dleyna-renderer)
+makedepends=(intltool itstool)
+groups=(gnome-extra)
+install=gnome-photos.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('9eb6a08a1d198f174f006b1c4e60a7db4f2e05cce7776e3f989470638cda2e20')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/gnome-photos
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled: needs dogtail which we don't have
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-photos/repos/testing-i686/gnome-photos.install (from rev 245730, 
gnome-photos/trunk/gnome-photos.install)
===
--- testing-i686/gnome-photos.install   (rev 0)
+++ testing-i686/gnome-photos.install   2015-09-10 12:39:14 UTC (rev 245731)
@@ -0,0 +1,12 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnome-photos/repos/testing-x86_64/PKGBUILD (from rev 245730, 
gnome-photos/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-10 12:39:14 UTC (rev 245731)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-photos
+pkgver=3.16.2
+pkgrel=1
+pkgdesc="Access, organize, and share your photos on GNOME"
+arch=(i686 x86_64)
+url="https://www.gnome.org/";
+license=(GPL)
+depends=(exempi gtk3 libexif librsvg babl gegl gnome-desktop 
gnome-online-accounts lcms2 tracker
+ hicolor-icon-theme grilo gfbgraph libgdata gnome-online-miners 
dleyna-server dleyna-renderer)
+makedepends=(intltool itstool)
+groups=(gnome-extra)
+install=gnome-photos.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('9eb6a08a1d198f174f006b1c4e60a7db4f2e05cce7776e3f989470638cda2e20')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/gnome-photos
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled: needs dogtail which we don't have
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-photos/repos/testing-x86_64/gnome-photos.install (from rev 
245730, gnome-photos/trunk/gnome-photos.install)
===
--- testing-x86_64/gnome-photos.install (rev 0)
+++ testing-x86_64/gnome-photos.install 2015-09-10 12:39:14 UTC (rev 245731)
@@ -0,0 +1,12 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:37:54
  Author: heftig
Revision: 245729

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

Added:
  gimp/repos/testing-i686/
  gimp/repos/testing-i686/PKGBUILD
(from rev 245728, gimp/trunk/PKGBUILD)
  gimp/repos/testing-i686/freetype_location.patch
(from rev 245728, gimp/trunk/freetype_location.patch)
  gimp/repos/testing-i686/gimp.install
(from rev 245728, gimp/trunk/gimp.install)
  gimp/repos/testing-i686/linux.gpl
(from rev 245728, gimp/trunk/linux.gpl)
  gimp/repos/testing-i686/patch_CVE1913.patch
(from rev 245728, gimp/trunk/patch_CVE1913.patch)
  gimp/repos/testing-i686/patch_CVE197.patch
(from rev 245728, gimp/trunk/patch_CVE197.patch)
  gimp/repos/testing-i686/uri-backend-libcurl.patch
(from rev 245728, gimp/trunk/uri-backend-libcurl.patch)
  gimp/repos/testing-x86_64/
  gimp/repos/testing-x86_64/PKGBUILD
(from rev 245728, gimp/trunk/PKGBUILD)
  gimp/repos/testing-x86_64/freetype_location.patch
(from rev 245728, gimp/trunk/freetype_location.patch)
  gimp/repos/testing-x86_64/gimp.install
(from rev 245728, gimp/trunk/gimp.install)
  gimp/repos/testing-x86_64/linux.gpl
(from rev 245728, gimp/trunk/linux.gpl)
  gimp/repos/testing-x86_64/patch_CVE1913.patch
(from rev 245728, gimp/trunk/patch_CVE1913.patch)
  gimp/repos/testing-x86_64/patch_CVE197.patch
(from rev 245728, gimp/trunk/patch_CVE197.patch)
  gimp/repos/testing-x86_64/uri-backend-libcurl.patch
(from rev 245728, gimp/trunk/uri-backend-libcurl.patch)

--+
 testing-i686/PKGBUILD|   50 +
 testing-i686/freetype_location.patch |   25 
 testing-i686/gimp.install|   12 ++
 testing-i686/linux.gpl   |   19 +++
 testing-i686/patch_CVE1913.patch |   30 +
 testing-i686/patch_CVE197.patch  |  150 +
 testing-i686/uri-backend-libcurl.patch   |   77 ++
 testing-x86_64/PKGBUILD  |   50 +
 testing-x86_64/freetype_location.patch   |   25 
 testing-x86_64/gimp.install  |   12 ++
 testing-x86_64/linux.gpl |   19 +++
 testing-x86_64/patch_CVE1913.patch   |   30 +
 testing-x86_64/patch_CVE197.patch|  150 +
 testing-x86_64/uri-backend-libcurl.patch |   77 ++
 14 files changed, 726 insertions(+)

Copied: gimp/repos/testing-i686/PKGBUILD (from rev 245728, gimp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 12:37:54 UTC (rev 245729)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=gimp
+pkgver=2.8.14
+pkgrel=4
+pkgdesc="GNU Image Manipulation Program"
+arch=('i686' 'x86_64')
+url="http://www.gimp.org/";
+license=('GPL' 'LGPL')
+depends=('pygtk' 'lcms' 'libxpm' 'libwmf' 'libxmu' 'librsvg' 'libmng' 
'dbus-glib'
+ 'libexif' 'gegl02' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme' 
'babl'
+ 'openexr' 'libgudev')
+makedepends=('intltool' 'webkitgtk2' 'poppler-glib' 'alsa-lib' 'iso-codes' 
'curl' 'ghostscript')
+optdepends=('gutenprint: for sophisticated printing only as gimp has built-in 
cups print support'
+'webkitgtk2: for the help browser'
+'poppler-glib: for pdf support'
+'alsa-lib: for MIDI event controller module'
+'curl: for URI support'
+'ghostscript: for postscript support')
+options=('!makeflags')
+conflicts=('gimp-devel')
+install=gimp.install
+source=(http://download.gimp.org/pub/gimp/v${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
 linux.gpl 
+uri-backend-libcurl.patch)
+md5sums=('233c948203383fa078434cc3f8f925cb'
+ 'bb27bc214261d36484093e857f015f38'
+ 'e894f4b2ffa92c71448fdd350e9b78c6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+--enable-mp --enable-gimp-console --enable-gimp-remote \
+--enable-python --with-gif-compression=lzw --with-libcurl \
+--without-aa --without-hal --without-gvfs --without-gnomevfs
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/lib/gimp/2.0/plug-ins/*.py
+  install -D -m644 "${srcdir}/linux.gpl" 
"${pkgdir}/usr/share/gimp/2.0/palettes/Linux.gpl"
+
+  rm "${pkgdir}/usr/share/man/man1/gimp-console.1"
+  ln -s gimp-console-${pkgver%.*}.1.gz 
"${pkgdir}/usr/share/man/man1/gimp-console.1.gz"
+  ln -s gimptool-2.0 "${pkgdir}/usr/bin/gimptool"
+  ln -sf gimptool-2.0.1.gz "${pkgdir}/usr/share/man/man1/gimptool.1.gz"
+}
+

Copied: gimp/repos/testing-i686/freetype_location.patch (from rev 245728, 
gimp/trunk/freetype_location.patch)
=

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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:32:36
  Author: heftig
Revision: 245728

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

Added:
  gegl02/repos/testing-i686/
  gegl02/repos/testing-i686/PKGBUILD
(from rev 245727, gegl02/trunk/PKGBUILD)
  gegl02/repos/testing-i686/gegl-0.2.0-CVE-2012-4433.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-CVE-2012-4433.patch)
  gegl02/repos/testing-i686/gegl-0.2.0-ffmpeg-0.11.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-ffmpeg-0.11.patch)
  gegl02/repos/testing-i686/gegl-0.2.0-lua-5.2.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-lua-5.2.patch)
  gegl02/repos/testing-i686/gegl-0.2.0-remove-src-over-op.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-remove-src-over-op.patch)
  gegl02/repos/testing-x86_64/
  gegl02/repos/testing-x86_64/PKGBUILD
(from rev 245727, gegl02/trunk/PKGBUILD)
  gegl02/repos/testing-x86_64/gegl-0.2.0-CVE-2012-4433.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-CVE-2012-4433.patch)
  gegl02/repos/testing-x86_64/gegl-0.2.0-ffmpeg-0.11.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-ffmpeg-0.11.patch)
  gegl02/repos/testing-x86_64/gegl-0.2.0-lua-5.2.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-lua-5.2.patch)
  gegl02/repos/testing-x86_64/gegl-0.2.0-remove-src-over-op.patch
(from rev 245727, gegl02/trunk/gegl-0.2.0-remove-src-over-op.patch)

+
 testing-i686/PKGBUILD  |   59 +
 testing-i686/gegl-0.2.0-CVE-2012-4433.patch|  159 +++
 testing-i686/gegl-0.2.0-ffmpeg-0.11.patch  |   47 
 testing-i686/gegl-0.2.0-lua-5.2.patch  |   53 +
 testing-i686/gegl-0.2.0-remove-src-over-op.patch   |  195 +++
 testing-x86_64/PKGBUILD|   59 +
 testing-x86_64/gegl-0.2.0-CVE-2012-4433.patch  |  159 +++
 testing-x86_64/gegl-0.2.0-ffmpeg-0.11.patch|   47 
 testing-x86_64/gegl-0.2.0-lua-5.2.patch|   53 +
 testing-x86_64/gegl-0.2.0-remove-src-over-op.patch |  195 +++
 10 files changed, 1026 insertions(+)

Copied: gegl02/repos/testing-i686/PKGBUILD (from rev 245727, 
gegl02/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 12:32:36 UTC (rev 245728)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Isenmann 
+
+pkgname=gegl02
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Graph based image processing framework (v0.2)"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro')
+makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala')
+optdepends=('libopenraw: openraw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin')
+options=(!makeflags)
+source=(http://ftp.gimp.org/pub/gegl/${pkgver%.*}/gegl-${pkgver}.tar.bz2
+gegl-0.2.0-ffmpeg-0.11.patch
+gegl-0.2.0-CVE-2012-4433.patch
+gegl-0.2.0-lua-5.2.patch
+gegl-0.2.0-remove-src-over-op.patch)
+sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
+  'f5e4c0edd32e088f768e303081f1ed2d80588d4c'
+  '44d48bd9ad008703de9f8eb683d557bac39a02c8'
+  'c78a092b880874ba7784b652bcd9c532e2b9975d'
+  'dc9ae21cc5ba0fb47ef05793f0cb169572dfab74')
+
+prepare() {
+  cd gegl-${pkgver}
+  patch -Np1 -i ../gegl-0.2.0-ffmpeg-0.11.patch
+  patch -Np1 -i ../gegl-0.2.0-CVE-2012-4433.patch
+  patch -Np1 -i ../gegl-0.2.0-lua-5.2.patch
+  patch -Np1 -i ../gegl-0.2.0-remove-src-over-op.patch
+}
+
+build() {
+  cd gegl-${pkgver}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --without-umfpack --disable-docs
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd gegl-${pkgver}
+  make -k check || :
+}
+
+package() {
+  cd gegl-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}/usr/bin"
+}

Copied: gegl02/repos/testing-i686/gegl-0.2.0-CVE-2012-4433.patch (from rev 
245727, gegl02/trunk/gegl-0.2.0-CVE-2012-4433.patch)
===
--- testing-i686/gegl-0.2.0-CVE-2012-4433.patch (rev 0)
+++ testing-i686/gegl-0.2.0-CVE-2012-4433.patch 2015-09-10 12:32:36 UTC (rev 
245728)
@@ -0,0 +1,159 @@
+From ffa77a246652c7e706d690682fe659f50fbe5656 Mon Sep 17 00:00:00 2001
+From: Nils Philippsen 
+Date: Mon, 1 Jul 2013 12:03:51 +0200
+Subject: [PATCH] patch: CVE-2012-4433
+
+Squashed commit of the following:
+
+commit 2a9071e2dc4cfe1aaa7a726805985281936f9874
+Author: Nils Philippsen 
+Date:   Tue Oct 16 16:57:37 2

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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:31:34
  Author: heftig
Revision: 245727

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

Added:
  babl/repos/testing-i686/
  babl/repos/testing-i686/PKGBUILD
(from rev 245726, babl/trunk/PKGBUILD)
  babl/repos/testing-x86_64/
  babl/repos/testing-x86_64/PKGBUILD
(from rev 245726, babl/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: babl/repos/testing-i686/PKGBUILD (from rev 245726, babl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 12:31:34 UTC (rev 245727)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=babl
+pkgver=0.1.12
+pkgrel=1
+pkgdesc="Dynamic, any to any, pixel format conversion library"
+arch=('i686' 'x86_64')
+url="http://gegl.org/babl/";
+license=('LGPL3')
+depends=('glibc')
+options=('!makeflags')
+source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('b9a811d9d05717d66bc107a18447fbd74cff7eea')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: babl/repos/testing-x86_64/PKGBUILD (from rev 245726, 
babl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-10 12:31:34 UTC (rev 245727)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=babl
+pkgver=0.1.12
+pkgrel=1
+pkgdesc="Dynamic, any to any, pixel format conversion library"
+arch=('i686' 'x86_64')
+url="http://gegl.org/babl/";
+license=('LGPL3')
+depends=('glibc')
+options=('!makeflags')
+source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('b9a811d9d05717d66bc107a18447fbd74cff7eea')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:30:02
  Author: heftig
Revision: 245724

0.2.0-1

Added:
  gegl02/trunk/PKGBUILD
  gegl02/trunk/gegl-0.2.0-CVE-2012-4433.patch
  gegl02/trunk/gegl-0.2.0-ffmpeg-0.11.patch
  gegl02/trunk/gegl-0.2.0-lua-5.2.patch
  gegl02/trunk/gegl-0.2.0-remove-src-over-op.patch

-+
 PKGBUILD|   59 ++
 gegl-0.2.0-CVE-2012-4433.patch  |  159 +++
 gegl-0.2.0-ffmpeg-0.11.patch|   47 
 gegl-0.2.0-lua-5.2.patch|   53 +
 gegl-0.2.0-remove-src-over-op.patch |  195 ++
 5 files changed, 513 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-10 12:30:02 UTC (rev 245724)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Isenmann 
+
+pkgname=gegl02
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Graph based image processing framework (v0.2)"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro')
+makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala')
+optdepends=('libopenraw: openraw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin')
+options=(!makeflags)
+source=(http://ftp.gimp.org/pub/gegl/${pkgver%.*}/gegl-${pkgver}.tar.bz2
+gegl-0.2.0-ffmpeg-0.11.patch
+gegl-0.2.0-CVE-2012-4433.patch
+gegl-0.2.0-lua-5.2.patch
+gegl-0.2.0-remove-src-over-op.patch)
+sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
+  'f5e4c0edd32e088f768e303081f1ed2d80588d4c'
+  '44d48bd9ad008703de9f8eb683d557bac39a02c8'
+  'c78a092b880874ba7784b652bcd9c532e2b9975d'
+  'dc9ae21cc5ba0fb47ef05793f0cb169572dfab74')
+
+prepare() {
+  cd gegl-${pkgver}
+  patch -Np1 -i ../gegl-0.2.0-ffmpeg-0.11.patch
+  patch -Np1 -i ../gegl-0.2.0-CVE-2012-4433.patch
+  patch -Np1 -i ../gegl-0.2.0-lua-5.2.patch
+  patch -Np1 -i ../gegl-0.2.0-remove-src-over-op.patch
+}
+
+build() {
+  cd gegl-${pkgver}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --without-umfpack --disable-docs
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd gegl-${pkgver}
+  make -k check || :
+}
+
+package() {
+  cd gegl-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}/usr/bin"
+}


Property changes on: gegl02/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gegl-0.2.0-CVE-2012-4433.patch
===
--- gegl-0.2.0-CVE-2012-4433.patch  (rev 0)
+++ gegl-0.2.0-CVE-2012-4433.patch  2015-09-10 12:30:02 UTC (rev 245724)
@@ -0,0 +1,159 @@
+From ffa77a246652c7e706d690682fe659f50fbe5656 Mon Sep 17 00:00:00 2001
+From: Nils Philippsen 
+Date: Mon, 1 Jul 2013 12:03:51 +0200
+Subject: [PATCH] patch: CVE-2012-4433
+
+Squashed commit of the following:
+
+commit 2a9071e2dc4cfe1aaa7a726805985281936f9874
+Author: Nils Philippsen 
+Date:   Tue Oct 16 16:57:37 2012 +0200
+
+ppm-load: bring comment in line with reality
+
+(cherry picked from commit 6975a9cfeaf0698b42ac81b1c2f00d13c8755453)
+
+commit 8bb88ebf78e54837322d3be74688f98800e9f33a
+Author: Nils Philippsen 
+Date:   Tue Oct 16 16:56:40 2012 +0200
+
+ppm-load: CVE-2012-4433: add plausibility checks for header fields
+
+Refuse values that are non-decimal, negative or overflow the target
+type.
+
+(cherry picked from commit 4757cdf73d3675478d645a3ec8250ba02168a230)
+
+commit 2b099886969bf055a8635d06a4d89f20fed1ee42
+Author: Nils Philippsen 
+Date:   Tue Oct 16 16:58:27 2012 +0200
+
+ppm-load: CVE-2012-4433: don't overflow memory allocation
+
+Carefully selected width/height values could cause the size of a later
+allocation to overflow, resulting in a buffer much too small to store
+the data which would then written beyond its end.
+
+(cherry picked from commit 1e92e5235ded0415d555aa86066b8e4041ee5a53)
+---
+ operations/external/ppm-load.c | 64 +++---
+ 1 file changed, 54 insertions(+), 10 deletions(-)
+
+diff --git a/operations/external/ppm-load.c b/operations/external/ppm-load.c
+index efe6d56..e22521c 100644
+--- a/operations/external/ppm-load.c
 b/operations/external/ppm-load.c
+@@ -36,6 +36,7 @@ gegl_chant_file_path (path, _("File"), "", _("Path of file 
to load."))
+ #include "gegl-chant.h"
+ #include 
+ #include 
++#include 
+ 
+ typedef enum {
+   PIXMAP_ASCII  = 51,
+@@ -44,8 +45,8 @@ ty

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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:30:44
  Author: heftig
Revision: 245726

3.16.2

Modified:
  gnome-photos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 12:30:26 UTC (rev 245725)
+++ PKGBUILD2015-09-10 12:30:44 UTC (rev 245726)
@@ -2,8 +2,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-photos
-pkgver=3.14.2
-pkgrel=2
+pkgver=3.16.2
+pkgrel=1
 pkgdesc="Access, organize, and share your photos on GNOME"
 arch=(i686 x86_64)
 url="https://www.gnome.org/";
@@ -14,7 +14,7 @@
 groups=(gnome-extra)
 install=gnome-photos.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('1bce84bd0467647decf26f81e03535940ab65a7774f44e1395a2b87d88c0be96')
+sha256sums=('9eb6a08a1d198f174f006b1c4e60a7db4f2e05cce7776e3f989470638cda2e20')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:30:26
  Author: heftig
Revision: 245725

gegl02

Modified:
  gimp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 12:30:02 UTC (rev 245724)
+++ PKGBUILD2015-09-10 12:30:26 UTC (rev 245725)
@@ -3,13 +3,13 @@
 
 pkgname=gimp
 pkgver=2.8.14
-pkgrel=3
+pkgrel=4
 pkgdesc="GNU Image Manipulation Program"
 arch=('i686' 'x86_64')
 url="http://www.gimp.org/";
 license=('GPL' 'LGPL')
 depends=('pygtk' 'lcms' 'libxpm' 'libwmf' 'libxmu' 'librsvg' 'libmng' 
'dbus-glib'
- 'libexif' 'gegl' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme' 
'babl'
+ 'libexif' 'gegl02' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme' 
'babl'
  'openexr' 'libgudev')
 makedepends=('intltool' 'webkitgtk2' 'poppler-glib' 'alsa-lib' 'iso-codes' 
'curl' 'ghostscript')
 optdepends=('gutenprint: for sophisticated printing only as gimp has built-in 
cups print support'


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:29:40
  Author: heftig
Revision: 245723

0.3.0

Modified:
  gegl/trunk/PKGBUILD
Deleted:
  gegl/trunk/gegl-0.2.0-CVE-2012-4433.patch
  gegl/trunk/gegl-0.2.0-ffmpeg-0.11.patch
  gegl/trunk/gegl-0.2.0-lua-5.2.patch
  gegl/trunk/gegl-0.2.0-remove-src-over-op.patch

-+
 PKGBUILD|   45 +++
 gegl-0.2.0-CVE-2012-4433.patch  |  159 ---
 gegl-0.2.0-ffmpeg-0.11.patch|   47 
 gegl-0.2.0-lua-5.2.patch|   53 -
 gegl-0.2.0-remove-src-over-op.patch |  195 --
 5 files changed, 20 insertions(+), 479 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 12:29:16 UTC (rev 245722)
+++ PKGBUILD2015-09-10 12:29:40 UTC (rev 245723)
@@ -2,41 +2,34 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=gegl
-pkgver=0.2.0
-pkgrel=15
+pkgver=0.3.0
+pkgrel=1
 pkgdesc="Graph based image processing framework"
 arch=('i686' 'x86_64')
 url="http://www.gegl.org/";
 license=('GPL3' 'LGPL3')
-depends=('babl' 'libspiro')
-makedepends=('intltool' 'ruby' 'lua' 'openexr' 'ffmpeg' 'librsvg' 'jasper' 
'exiv2')
-optdepends=('openexr: for using the openexr plugin'
-'ffmpeg: for using the ffmpeg plugin'
-'librsvg: for using the svg plugin'
-'jasper: for using the jasper plugin')
-source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
-gegl-0.2.0-ffmpeg-0.11.patch
-gegl-0.2.0-CVE-2012-4433.patch
-gegl-0.2.0-lua-5.2.patch
-gegl-0.2.0-remove-src-over-op.patch)
-options=(!makeflags)
-sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
-  'f5e4c0edd32e088f768e303081f1ed2d80588d4c'
-  '44d48bd9ad008703de9f8eb683d557bac39a02c8'
-  'c78a092b880874ba7784b652bcd9c532e2b9975d'
-  'dc9ae21cc5ba0fb47ef05793f0cb169572dfab74')
+depends=('babl' 'libspiro' 'json-glib')
+makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala' 'python2' 'suitesparse')
+optdepends=('libopenraw: openraw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'suitessparse: matting-levin plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin')
+source=(http://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f0fec8f2e7b8835979d3cf4e38b05d41bb79f68dc80cf899a846484da693bbf7')
 
 prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
   cd ${pkgname}-${pkgver}
-  patch -Np1 -i ../gegl-0.2.0-ffmpeg-0.11.patch
-  patch -Np1 -i ../gegl-0.2.0-CVE-2012-4433.patch
-  patch -Np1 -i ../gegl-0.2.0-lua-5.2.patch
-  patch -Np1 -i ../gegl-0.2.0-remove-src-over-op.patch
 }
 
 build() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
   cd ${pkgname}-${pkgver}
-  ./configure  --prefix=/usr  --with-sdl --with-openexr --with-librsvg \
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
 --with-libavformat --with-jasper --disable-docs
 
   # https://bugzilla.gnome.org/show_bug.cgi?id=655517
@@ -46,11 +39,13 @@
 }
 
 check() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
   cd ${pkgname}-${pkgver}
-  make check
+  make -k check || :
 }
 
 package() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
 }

Deleted: gegl-0.2.0-CVE-2012-4433.patch
===
--- gegl-0.2.0-CVE-2012-4433.patch  2015-09-10 12:29:16 UTC (rev 245722)
+++ gegl-0.2.0-CVE-2012-4433.patch  2015-09-10 12:29:40 UTC (rev 245723)
@@ -1,159 +0,0 @@
-From ffa77a246652c7e706d690682fe659f50fbe5656 Mon Sep 17 00:00:00 2001
-From: Nils Philippsen 
-Date: Mon, 1 Jul 2013 12:03:51 +0200
-Subject: [PATCH] patch: CVE-2012-4433
-
-Squashed commit of the following:
-
-commit 2a9071e2dc4cfe1aaa7a726805985281936f9874
-Author: Nils Philippsen 
-Date:   Tue Oct 16 16:57:37 2012 +0200
-
-ppm-load: bring comment in line with reality
-
-(cherry picked from commit 6975a9cfeaf0698b42ac81b1c2f00d13c8755453)
-
-commit 8bb88ebf78e54837322d3be74688f98800e9f33a
-Author: Nils Philippsen 
-Date:   Tue Oct 16 16:56:40 2012 +0200
-
-ppm-load: CVE-2012-4433: add plausibility checks for header fields
-
-Refuse values that are non-decimal, negative or overflow the target
-type.
-
-(cherry picked from commit 4757cdf73d3675478d645a3ec8250ba02168a230)
-
-commit 2b099886969bf055a8635d06a4d89f20fed1ee42
-Author: Nils Philippsen 
-Date:   Tue Oct 16 16:58:27 2012 +0200
-
-ppm-load: CVE-2012-4433: don't overflow memory allocation
-
-Carefully selected width/height values could cause the size of a later
-allocation to overflow, resulting in a buffer much too small to store
-the data which would then w

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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 14:29:16
  Author: heftig
Revision: 245722

0.1.12

Modified:
  babl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 11:31:03 UTC (rev 245721)
+++ PKGBUILD2015-09-10 12:29:16 UTC (rev 245722)
@@ -2,8 +2,8 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=babl
-pkgver=0.1.10
-pkgrel=2
+pkgver=0.1.12
+pkgrel=1
 pkgdesc="Dynamic, any to any, pixel format conversion library"
 arch=('i686' 'x86_64')
 url="http://gegl.org/babl/";
@@ -11,7 +11,7 @@
 depends=('glibc')
 options=('!makeflags')
 source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('ee60089e8e9d9390e730d3ae5e41074549928b7a')
+sha1sums=('b9a811d9d05717d66bc107a18447fbd74cff7eea')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2015-09-10 Thread Jan Steffens
Date: Thursday, September 10, 2015 @ 13:31:03
  Author: heftig
Revision: 245721

Add gegl02

Added:
  gegl02/
  gegl02/repos/
  gegl02/trunk/


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

2015-09-10 Thread Sergej Pupykin
Date: Thursday, September 10, 2015 @ 13:22:42
  Author: spupykin
Revision: 139796

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-10 11:22:27 UTC (rev 139795)
+++ community-i686/PKGBUILD 2015-09-10 11:22:42 UTC (rev 139796)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=vile
-pkgver=9.8_p
-_basever=9.8
-pkgrel=1
-pkgdesc="vi like emacs"
-arch=('i686' 'x86_64')
-url="http://invisible-island.net/vile/vile.html";
-depends=('ncurses')
-license=('custom')
-source=("ftp://invisible-island.net/vile/vile-${_basever}.tgz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}a.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}b.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}c.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}d.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}e.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}f.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}g.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}h.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}i.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}j.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}k.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}l.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}m.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}n.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}o.patch.gz";
-   "ftp://invisible-island.net/vile/patches/vile-${_basever}p.patch.gz";)
-md5sums=('b5a0d89165f633a662cdb4b5c57f2e2f'
- '685cb681943e9315a1689a6a6f4734cb'
- 'f3842ea427c635d0ee96f6da8566fa56'
- '69cfdbb0b84a51802455bbe44a5ce32e'
- '5d675193bc02ac4cab72452bf0051489'
- '1e6317a15d7b2cd99f921f3af312b977'
- '7f8a38272395f07e1377cc1943d37e7f'
- '26ab76a7305b7ec97b22855810911ceb'
- '6ea4cf22e29f5418f26ba6632985c70e'
- '908e8f9cf3c9a681c3ef76a3cd04a0c3'
- '66f4136ab1ce33f491080c0fb3c87b06'
- 'e4a60ed7e3959269201c5a937b206272'
- '6dcca45518004247ff9e11a791a054c9'
- '34ea7ba67a31685827c71d88d4be851b'
- 'a820b20d9032e3021c1b4fdd5f01492b'
- '55b726a610737bd3203a4478e352b6b9'
- '6b0ad7123f74c6bb58f18fa0cfb50173')
-
-prepare() {
-  cd $srcdir/$pkgname-${_basever}
-  for i in $srcdir/vile-${_basever}?.patch; do
-patch -p1 <$i
-  done
-  sed -i 's|FLEX_BETA|FLEX_NOBETA|g' filters/filters.h
-}
-
-build() {
-  cd $srcdir/$pkgname-${_basever}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-${_basever}
-  mkdir -p $pkgdir/usr/lib/vile
-  make install DESTDIR=$pkgdir
-  mkdir -p $pkgdir/usr/share/licenses/$pkgname
-  cat <$pkgdir/usr/share/licenses/$pkgname/license
-Copyright
-
-Vile is copyrighted by Paul G. Fox, Thomas E. Dickey and Kevin Buettner with 
some
-files (e.g., visvile) copyright by Clark Morgan.
-We distribute it under the terms of the GNU Public License, Version 2.
-EOF
-}

Copied: vile/repos/community-i686/PKGBUILD (from rev 139795, 
vile/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-10 11:22:42 UTC (rev 139796)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=vile
+pkgver=9.8_q
+_basever=9.8
+pkgrel=1
+pkgdesc="vi like emacs"
+arch=('i686' 'x86_64')
+url="http://invisible-island.net/vile/vile.html";
+depends=('ncurses')
+license=('custom')
+source=("ftp://invisible-island.net/vile/vile-${_basever}.tgz";
+   "ftp://invisible-island.net/vile/patches/vile-${_basever}a.patch.gz";
+   "ftp://invisible-island.net/vile/patches/vile-${_basever}b.patch.gz";
+   "ftp://invisible-island.net/vile/patches/vile-${_basever}c.patch.gz";
+   "ftp://invisible-island.net/vile/patches/vile-${_basever}d.patch.gz";
+   "ftp://invisible-island.net/vile/patches/vile-${_basever}e.patch.gz";
+   "ftp://invisible-island.net/vile/pat

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

2015-09-10 Thread Sergej Pupykin
Date: Thursday, September 10, 2015 @ 13:22:18
  Author: spupykin
Revision: 139794

archrelease: copy trunk to community-any

Added:
  phpmyadmin/repos/community-any/PKGBUILD
(from rev 139793, phpmyadmin/trunk/PKGBUILD)
Deleted:
  phpmyadmin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-10 11:22:06 UTC (rev 139793)
+++ PKGBUILD2015-09-10 11:22:18 UTC (rev 139794)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Sergej Pupykin 
-# Contributor: tobias 
-# Contributor: Manolis Tzanidakis 
-# Contributor: Simon Lackerbauer 
-
-pkgname=phpmyadmin
-pkgver=4.4.14
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url='http://www.phpmyadmin.net'
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
-backup=(etc/webapps/phpmyadmin/config.inc.php)
-source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
-md5sums=('f069992869d4c901c4265b232be762dd')
-
-package() {
-  _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin
-  mkdir -p "$_instdir" "$pkgdir"/etc/webapps/phpmyadmin
-  cd "$_instdir"
-
-  cp -ra "$srcdir"/phpMyAdmin-$pkgver-all-languages/* .
-
-  ln -s /etc/webapps/phpmyadmin/config.inc.php "$_instdir"/config.inc.php
-  cp "$_instdir"/config.sample.inc.php 
"$pkgdir"/etc/webapps/phpmyadmin/config.inc.php
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 139793, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-10 11:22:18 UTC (rev 139794)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sergej Pupykin 
+# Contributor: tobias 
+# Contributor: Manolis Tzanidakis 
+# Contributor: Simon Lackerbauer 
+
+pkgname=phpmyadmin
+pkgver=4.4.14.1
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url='http://www.phpmyadmin.net'
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
+backup=(etc/webapps/phpmyadmin/config.inc.php)
+source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
+md5sums=('b0b9fe05b09d07a4577c91d0d9b61093')
+
+package() {
+  _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin
+  mkdir -p "$_instdir" "$pkgdir"/etc/webapps/phpmyadmin
+  cd "$_instdir"
+
+  cp -ra "$srcdir"/phpMyAdmin-$pkgver-all-languages/* .
+
+  ln -s /etc/webapps/phpmyadmin/config.inc.php "$_instdir"/config.inc.php
+  cp "$_instdir"/config.sample.inc.php 
"$pkgdir"/etc/webapps/phpmyadmin/config.inc.php
+}


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

2015-09-10 Thread Sergej Pupykin
Date: Thursday, September 10, 2015 @ 13:22:27
  Author: spupykin
Revision: 139795

upgpkg: vile 9.8_q-1

upd

Modified:
  vile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 11:22:18 UTC (rev 139794)
+++ PKGBUILD2015-09-10 11:22:27 UTC (rev 139795)
@@ -2,9 +2,9 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=vile
-pkgver=9.8_p
+pkgver=9.8_q
 _basever=9.8
-pkgrel=2
+pkgrel=1
 pkgdesc="vi like emacs"
 arch=('i686' 'x86_64')
 url="http://invisible-island.net/vile/vile.html";


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

2015-09-10 Thread Sergej Pupykin
Date: Thursday, September 10, 2015 @ 13:22:06
  Author: spupykin
Revision: 139793

upgpkg: phpmyadmin 4.4.14.1-1

upd

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 11:05:56 UTC (rev 139792)
+++ PKGBUILD2015-09-10 11:22:06 UTC (rev 139793)
@@ -7,7 +7,7 @@
 # Contributor: Simon Lackerbauer 
 
 pkgname=phpmyadmin
-pkgver=4.4.14
+pkgver=4.4.14.1
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -17,7 +17,7 @@
 optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 
source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
-md5sums=('f069992869d4c901c4265b232be762dd')
+md5sums=('b0b9fe05b09d07a4577c91d0d9b61093')
 
 package() {
   _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin


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

2015-09-10 Thread Jakob Gruber
Date: Thursday, September 10, 2015 @ 13:05:50
  Author: schuay
Revision: 139791

archrelease: copy trunk to community-staging-i686

Added:
  dolphin-emu/repos/community-staging-i686/
  dolphin-emu/repos/community-staging-i686/PKGBUILD
(from rev 139790, dolphin-emu/trunk/PKGBUILD)
  dolphin-emu/repos/community-staging-i686/dolphin-emu-findx11.patch
(from rev 139790, dolphin-emu/trunk/dolphin-emu-findx11.patch)
  dolphin-emu/repos/community-staging-i686/dolphin-emu-gcc49.patch
(from rev 139790, dolphin-emu/trunk/dolphin-emu-gcc49.patch)

---+
 PKGBUILD  |   55 
 dolphin-emu-findx11.patch |   11 
 dolphin-emu-gcc49.patch   |   17 +
 3 files changed, 83 insertions(+)

Copied: dolphin-emu/repos/community-staging-i686/PKGBUILD (from rev 139790, 
dolphin-emu/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 11:05:50 UTC (rev 139791)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: schuay 
+# Maintainer: Maxime Gauduin 
+# Contributor: Jeremy Newton (Mystro256) 
+
+pkgname=dolphin-emu
+pkgver=4.0.2
+pkgrel=9
+epoch=1
+pkgdesc='A Gamecube / Wii / Triforce emulator'
+arch=('i686' 'x86_64')
+url='http://dolphin-emu.org'
+license=('GPL2')
+
+makedepends=('cmake' 'opencl-headers')
+depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'miniupnpc' 'openal' 'portaudio'
+ 'sdl2' 'soundtouch' 'wxgtk')
+optdepends=('pulseaudio: PulseAudio backend')
+
+options=('!emptydirs')
+
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dolphin-emu/dolphin/archive/${pkgver}.tar.gz";
+'dolphin-emu-findx11.patch'
+'dolphin-emu-gcc49.patch')
+md5sums=('95436ade64fc8ed2fe4b2ed5306dc879'
+ 'f9a692b76263f3efae9793c4879bc2c5'
+ '5fead49fc3a0ff9a9d1435368b5df1f9')
+
+prepare() {
+  cd dolphin-${pkgver}
+
+  patch -Np1 -i ../dolphin-emu-findx11.patch
+  patch -Np1 -i ../dolphin-emu-gcc49.patch
+
+  # Compatibility with miniupnpc 1.9.20150730, which requires a new ttl 
argument.
+  sed -i 's:upnpDiscover(2000, NULL, NULL, 0, 0, 
&upnperror);:upnpDiscover(2000, NULL, NULL, 0, 0, 2, \&upnperror);:' \
+  Source/Core/Core/Src/NetPlayServer.cpp
+}
+
+build() {
+  cd dolphin-${pkgver}
+
+  mkdir build && cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_CXX_FLAGS='-fno-inline-functions -fpermissive'
+  make
+}
+
+package() {
+  cd dolphin-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}/usr/lib/libpolarssl.a"
+}

Copied: dolphin-emu/repos/community-staging-i686/dolphin-emu-findx11.patch 
(from rev 139790, dolphin-emu/trunk/dolphin-emu-findx11.patch)
===
--- community-staging-i686/dolphin-emu-findx11.patch
(rev 0)
+++ community-staging-i686/dolphin-emu-findx11.patch2015-09-10 11:05:50 UTC 
(rev 139791)
@@ -0,0 +1,11 @@
+diff -rupN dolphin-4.0.2.orig/CMakeLists.txt dolphin-4.0.2/CMakeLists.txt
+--- dolphin-4.0.2.orig/CMakeLists.txt  2015-03-31 15:05:43.953995860 +0200
 dolphin-4.0.2/CMakeLists.txt   2015-03-31 15:06:53.379078333 +0200
+@@ -417,6 +417,7 @@ if(NOT ANDROID)
+ 
+   # Note: We do not need to explicitly check for X11 as it is 
done in the cmake
+   # FindOpenGL module on linux.
++  include(FindX11)
+   if(USE_X11 AND X11_FOUND)
+   set(USE_X11 1)
+   add_definitions(-DHAVE_X11=1)

Copied: dolphin-emu/repos/community-staging-i686/dolphin-emu-gcc49.patch (from 
rev 139790, dolphin-emu/trunk/dolphin-emu-gcc49.patch)
===
--- community-staging-i686/dolphin-emu-gcc49.patch  
(rev 0)
+++ community-staging-i686/dolphin-emu-gcc49.patch  2015-09-10 11:05:50 UTC 
(rev 139791)
@@ -0,0 +1,17 @@
+diff -rupN dolphin.orig/Source/Core/Common/Src/CommonFuncs.h 
dolphin/Source/Core/Common/Src/CommonFuncs.h
+--- dolphin.orig/Source/Core/Common/Src/CommonFuncs.h  2014-08-19 
02:36:05.555642000 +0200
 dolphin/Source/Core/Common/Src/CommonFuncs.h   2014-08-19 
02:38:44.301036700 +0200
+@@ -30,7 +30,12 @@ struct ArraySizeImpl : public std::exten
+ #define b32(x)  (b16(x) | (b16(x) >>16) )
+ #define ROUND_UP_POW2(x)  (b32(x - 1) + 1)
+ 
+-#if defined __GNUC__ && !defined __SSSE3__ && !defined _M_GENERIC
++#ifndef __GNUC_PREREQ
++  #define __GNUC_PREREQ(a, b) 0
++#endif
++
++#if (defined __GNUC__ && !__GNUC_PREREQ(4,9)) && \
++  !defined __SSSE3__ && defined _M_X86
+ #include 
+ static __inline __m128i __attribute__((__always_inline__))
+ _mm_shuffle_epi8(__m128i a, __m128i mask)


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

2015-09-10 Thread Jakob Gruber
Date: Thursday, September 10, 2015 @ 13:05:56
  Author: schuay
Revision: 139792

archrelease: copy trunk to community-staging-x86_64

Added:
  dolphin-emu/repos/community-staging-x86_64/
  dolphin-emu/repos/community-staging-x86_64/PKGBUILD
(from rev 139791, dolphin-emu/trunk/PKGBUILD)
  dolphin-emu/repos/community-staging-x86_64/dolphin-emu-findx11.patch
(from rev 139791, dolphin-emu/trunk/dolphin-emu-findx11.patch)
  dolphin-emu/repos/community-staging-x86_64/dolphin-emu-gcc49.patch
(from rev 139791, dolphin-emu/trunk/dolphin-emu-gcc49.patch)

---+
 PKGBUILD  |   55 
 dolphin-emu-findx11.patch |   11 
 dolphin-emu-gcc49.patch   |   17 +
 3 files changed, 83 insertions(+)

Copied: dolphin-emu/repos/community-staging-x86_64/PKGBUILD (from rev 139791, 
dolphin-emu/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 11:05:56 UTC (rev 139792)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: schuay 
+# Maintainer: Maxime Gauduin 
+# Contributor: Jeremy Newton (Mystro256) 
+
+pkgname=dolphin-emu
+pkgver=4.0.2
+pkgrel=9
+epoch=1
+pkgdesc='A Gamecube / Wii / Triforce emulator'
+arch=('i686' 'x86_64')
+url='http://dolphin-emu.org'
+license=('GPL2')
+
+makedepends=('cmake' 'opencl-headers')
+depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'miniupnpc' 'openal' 'portaudio'
+ 'sdl2' 'soundtouch' 'wxgtk')
+optdepends=('pulseaudio: PulseAudio backend')
+
+options=('!emptydirs')
+
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dolphin-emu/dolphin/archive/${pkgver}.tar.gz";
+'dolphin-emu-findx11.patch'
+'dolphin-emu-gcc49.patch')
+md5sums=('95436ade64fc8ed2fe4b2ed5306dc879'
+ 'f9a692b76263f3efae9793c4879bc2c5'
+ '5fead49fc3a0ff9a9d1435368b5df1f9')
+
+prepare() {
+  cd dolphin-${pkgver}
+
+  patch -Np1 -i ../dolphin-emu-findx11.patch
+  patch -Np1 -i ../dolphin-emu-gcc49.patch
+
+  # Compatibility with miniupnpc 1.9.20150730, which requires a new ttl 
argument.
+  sed -i 's:upnpDiscover(2000, NULL, NULL, 0, 0, 
&upnperror);:upnpDiscover(2000, NULL, NULL, 0, 0, 2, \&upnperror);:' \
+  Source/Core/Core/Src/NetPlayServer.cpp
+}
+
+build() {
+  cd dolphin-${pkgver}
+
+  mkdir build && cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_CXX_FLAGS='-fno-inline-functions -fpermissive'
+  make
+}
+
+package() {
+  cd dolphin-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}/usr/lib/libpolarssl.a"
+}

Copied: dolphin-emu/repos/community-staging-x86_64/dolphin-emu-findx11.patch 
(from rev 139791, dolphin-emu/trunk/dolphin-emu-findx11.patch)
===
--- community-staging-x86_64/dolphin-emu-findx11.patch  
(rev 0)
+++ community-staging-x86_64/dolphin-emu-findx11.patch  2015-09-10 11:05:56 UTC 
(rev 139792)
@@ -0,0 +1,11 @@
+diff -rupN dolphin-4.0.2.orig/CMakeLists.txt dolphin-4.0.2/CMakeLists.txt
+--- dolphin-4.0.2.orig/CMakeLists.txt  2015-03-31 15:05:43.953995860 +0200
 dolphin-4.0.2/CMakeLists.txt   2015-03-31 15:06:53.379078333 +0200
+@@ -417,6 +417,7 @@ if(NOT ANDROID)
+ 
+   # Note: We do not need to explicitly check for X11 as it is 
done in the cmake
+   # FindOpenGL module on linux.
++  include(FindX11)
+   if(USE_X11 AND X11_FOUND)
+   set(USE_X11 1)
+   add_definitions(-DHAVE_X11=1)

Copied: dolphin-emu/repos/community-staging-x86_64/dolphin-emu-gcc49.patch 
(from rev 139791, dolphin-emu/trunk/dolphin-emu-gcc49.patch)
===
--- community-staging-x86_64/dolphin-emu-gcc49.patch
(rev 0)
+++ community-staging-x86_64/dolphin-emu-gcc49.patch2015-09-10 11:05:56 UTC 
(rev 139792)
@@ -0,0 +1,17 @@
+diff -rupN dolphin.orig/Source/Core/Common/Src/CommonFuncs.h 
dolphin/Source/Core/Common/Src/CommonFuncs.h
+--- dolphin.orig/Source/Core/Common/Src/CommonFuncs.h  2014-08-19 
02:36:05.555642000 +0200
 dolphin/Source/Core/Common/Src/CommonFuncs.h   2014-08-19 
02:38:44.301036700 +0200
+@@ -30,7 +30,12 @@ struct ArraySizeImpl : public std::exten
+ #define b32(x)  (b16(x) | (b16(x) >>16) )
+ #define ROUND_UP_POW2(x)  (b32(x - 1) + 1)
+ 
+-#if defined __GNUC__ && !defined __SSSE3__ && !defined _M_GENERIC
++#ifndef __GNUC_PREREQ
++  #define __GNUC_PREREQ(a, b) 0
++#endif
++
++#if (defined __GNUC__ && !__GNUC_PREREQ(4,9)) && \
++  !defined __SSSE3__ && defined _M_X86
+ #include 
+ static __inline __m128i __attribute__((__always_inline__))
+ _mm_shuffle_epi8(__m128i a, __m128i mask)


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

2015-09-10 Thread Jakob Gruber
Date: Thursday, September 10, 2015 @ 13:05:39
  Author: schuay
Revision: 139790

dolphin-emu-1:4.0.2-9 rebuild

Modified:
  dolphin-emu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 10:51:25 UTC (rev 139789)
+++ PKGBUILD2015-09-10 11:05:39 UTC (rev 139790)
@@ -5,7 +5,7 @@
 
 pkgname=dolphin-emu
 pkgver=4.0.2
-pkgrel=8
+pkgrel=9
 epoch=1
 pkgdesc='A Gamecube / Wii / Triforce emulator'
 arch=('i686' 'x86_64')
@@ -31,6 +31,10 @@
 
   patch -Np1 -i ../dolphin-emu-findx11.patch
   patch -Np1 -i ../dolphin-emu-gcc49.patch
+
+  # Compatibility with miniupnpc 1.9.20150730, which requires a new ttl 
argument.
+  sed -i 's:upnpDiscover(2000, NULL, NULL, 0, 0, 
&upnperror);:upnpDiscover(2000, NULL, NULL, 0, 0, 2, \&upnperror);:' \
+  Source/Core/Core/Src/NetPlayServer.cpp
 }
 
 build() {


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 13:02:07
  Author: jgc
Revision: 245719

upgpkg: caribou 0.4.18.1-2

Build with python 3.x

Modified:
  caribou/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 10:08:03 UTC (rev 245718)
+++ PKGBUILD2015-09-10 11:02:07 UTC (rev 245719)
@@ -4,26 +4,20 @@
 
 pkgname=caribou
 pkgver=0.4.18.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
 arch=('i686' 'x86_64')
 url="http://live.gnome.org/Caribou";
 license=(LGPL)
-depends=(at-spi2-atk python2-atspi python2-gobject gtk3 libxklavier libgee 
clutter dconf)
-makedepends=(intltool docbook-xsl gtk2 gobject-introspection)
+depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
+makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala)
 install=caribou.install
 options=(!emptydirs)
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
 sha256sums=('aefadf125a647fc68696f4134e99ee43dca121da5de8e1edf6eab5664a9f3150')
 
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i s'|#!/usr/bin/python|#!/usr/bin/python2|'g 
tools/{fix_gir,make_schema}.py
-}
-
 build() {
   cd $pkgname-$pkgver
-  export PYTHON=/usr/bin/python2
   ./configure --prefix=/usr --sysconfdir=/etc \
 --libexecdir=/usr/lib/$pkgname \
 --disable-static \


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 13:02:14
  Author: jgc
Revision: 245720

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

Added:
  caribou/repos/extra-i686/PKGBUILD
(from rev 245719, caribou/trunk/PKGBUILD)
  caribou/repos/extra-i686/caribou.install
(from rev 245719, caribou/trunk/caribou.install)
  caribou/repos/extra-x86_64/PKGBUILD
(from rev 245719, caribou/trunk/PKGBUILD)
  caribou/repos/extra-x86_64/caribou.install
(from rev 245719, caribou/trunk/caribou.install)
Deleted:
  caribou/repos/extra-i686/PKGBUILD
  caribou/repos/extra-i686/caribou.install
  caribou/repos/extra-x86_64/PKGBUILD
  caribou/repos/extra-x86_64/caribou.install

--+
 /PKGBUILD|   84 +
 /caribou.install |   26 
 extra-i686/PKGBUILD  |   48 ---
 extra-i686/caribou.install   |   13 --
 extra-x86_64/PKGBUILD|   48 ---
 extra-x86_64/caribou.install |   13 --
 6 files changed, 110 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 11:02:07 UTC (rev 245719)
+++ extra-i686/PKGBUILD 2015-09-10 11:02:14 UTC (rev 245720)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Adam Hani Schakaki 
-
-pkgname=caribou
-pkgver=0.4.18.1
-pkgrel=1
-pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
-arch=('i686' 'x86_64')
-url="http://live.gnome.org/Caribou";
-license=(LGPL)
-depends=(at-spi2-atk python2-atspi python2-gobject gtk3 libxklavier libgee 
clutter dconf)
-makedepends=(intltool docbook-xsl gtk2 gobject-introspection)
-install=caribou.install
-options=(!emptydirs)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('aefadf125a647fc68696f4134e99ee43dca121da5de8e1edf6eab5664a9f3150')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i s'|#!/usr/bin/python|#!/usr/bin/python2|'g 
tools/{fix_gir,make_schema}.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-  export PYTHON=/usr/bin/python2
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
---disable-static \
---disable-schemas-compile
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: caribou/repos/extra-i686/PKGBUILD (from rev 245719, 
caribou/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 11:02:14 UTC (rev 245720)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Adam Hani Schakaki 
+
+pkgname=caribou
+pkgver=0.4.18.1
+pkgrel=2
+pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/Caribou";
+license=(LGPL)
+depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
+makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala)
+install=caribou.install
+options=(!emptydirs)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('aefadf125a647fc68696f4134e99ee43dca121da5de8e1edf6eab5664a9f3150')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--disable-schemas-compile
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/caribou.install
===
--- extra-i686/caribou.install  2015-09-10 11:02:07 UTC (rev 245719)
+++ extra-i686/caribou.install  2015-09-10 11:02:14 UTC (rev 245720)
@@ -1,13 +0,0 @@
-pkgname=caribou
-
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}

Copied: caribou/repos/extra-i686/caribou.install (from rev 245719, 
caribou/trunk/caribou.install)
===
--- extra-i686/caribou.install  (rev 0)
+++ extra-i686/caribou.install  2015-09-10 11:02:14 UTC (rev 245720)
@@ -0,0 +1,13 @@
+pkgname=caribou
+
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  glib-compile-schemas usr/share/glib-2.0/s

[arch-commits] Commit in gnome-screensaver/repos (38 files)

2015-09-10 Thread Balló György
Date: Thursday, September 10, 2015 @ 12:51:25
  Author: bgyorgy
Revision: 139789

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

Added:
  gnome-screensaver/repos/community-i686/PKGBUILD
(from rev 139788, gnome-screensaver/trunk/PKGBUILD)
  gnome-screensaver/repos/community-i686/fix-autoconf.patch
(from rev 139788, gnome-screensaver/trunk/fix-autoconf.patch)
  gnome-screensaver/repos/community-i686/fix-systemd-support.patch
(from rev 139788, gnome-screensaver/trunk/fix-systemd-support.patch)
  gnome-screensaver/repos/community-i686/gnome-screensaver.pam
(from rev 139788, gnome-screensaver/trunk/gnome-screensaver.pam)
  gnome-screensaver/repos/community-i686/lightdm_switch_user.patch
(from rev 139788, gnome-screensaver/trunk/lightdm_switch_user.patch)
  gnome-screensaver/repos/community-i686/lock_screen_on_suspend.patch
(from rev 139788, gnome-screensaver/trunk/lock_screen_on_suspend.patch)
  gnome-screensaver/repos/community-i686/move-desktop-file.patch
(from rev 139788, gnome-screensaver/trunk/move-desktop-file.patch)
  gnome-screensaver/repos/community-i686/recenter.patch
(from rev 139788, gnome-screensaver/trunk/recenter.patch)
  gnome-screensaver/repos/community-i686/use-screensaver-background.patch
(from rev 139788, gnome-screensaver/trunk/use-screensaver-background.patch)
  gnome-screensaver/repos/community-x86_64/PKGBUILD
(from rev 139788, gnome-screensaver/trunk/PKGBUILD)
  gnome-screensaver/repos/community-x86_64/fix-autoconf.patch
(from rev 139788, gnome-screensaver/trunk/fix-autoconf.patch)
  gnome-screensaver/repos/community-x86_64/fix-systemd-support.patch
(from rev 139788, gnome-screensaver/trunk/fix-systemd-support.patch)
  gnome-screensaver/repos/community-x86_64/gnome-screensaver.pam
(from rev 139788, gnome-screensaver/trunk/gnome-screensaver.pam)
  gnome-screensaver/repos/community-x86_64/lightdm_switch_user.patch
(from rev 139788, gnome-screensaver/trunk/lightdm_switch_user.patch)
  gnome-screensaver/repos/community-x86_64/lock_screen_on_suspend.patch
(from rev 139788, gnome-screensaver/trunk/lock_screen_on_suspend.patch)
  gnome-screensaver/repos/community-x86_64/move-desktop-file.patch
(from rev 139788, gnome-screensaver/trunk/move-desktop-file.patch)
  gnome-screensaver/repos/community-x86_64/recenter.patch
(from rev 139788, gnome-screensaver/trunk/recenter.patch)
  gnome-screensaver/repos/community-x86_64/use-screensaver-background.patch
(from rev 139788, gnome-screensaver/trunk/use-screensaver-background.patch)
Deleted:
  gnome-screensaver/repos/community-i686/PKGBUILD
  gnome-screensaver/repos/community-i686/fix-autoconf.patch
  gnome-screensaver/repos/community-i686/fix-systemd-support.patch
  gnome-screensaver/repos/community-i686/flashback-autostart.patch
  gnome-screensaver/repos/community-i686/gnome-screensaver.pam
  gnome-screensaver/repos/community-i686/lightdm_switch_user.patch
  gnome-screensaver/repos/community-i686/lock_screen_on_suspend.patch
  gnome-screensaver/repos/community-i686/move-desktop-file.patch
  gnome-screensaver/repos/community-i686/recenter.patch
  gnome-screensaver/repos/community-i686/use-screensaver-background.patch
  gnome-screensaver/repos/community-x86_64/PKGBUILD
  gnome-screensaver/repos/community-x86_64/fix-autoconf.patch
  gnome-screensaver/repos/community-x86_64/fix-systemd-support.patch
  gnome-screensaver/repos/community-x86_64/flashback-autostart.patch
  gnome-screensaver/repos/community-x86_64/gnome-screensaver.pam
  gnome-screensaver/repos/community-x86_64/lightdm_switch_user.patch
  gnome-screensaver/repos/community-x86_64/lock_screen_on_suspend.patch
  gnome-screensaver/repos/community-x86_64/move-desktop-file.patch
  gnome-screensaver/repos/community-x86_64/recenter.patch
  gnome-screensaver/repos/community-x86_64/use-screensaver-background.patch

---+
 /PKGBUILD |  146 ++
 /fix-autoconf.patch   |   24 ++
 /fix-systemd-support.patch|  182 ++
 /gnome-screensaver.pam|6 
 /lightdm_switch_user.patch|  200 
 /lock_screen_on_suspend.patch |  102 ++
 /move-desktop-file.patch  |   68 ++
 /recenter.patch   |   32 +++
 /use-screensaver-background.patch |  106 ++
 community-i686/PKGBUILD   |   78 ---
 community-i686/fix-autoconf.patch |   12 -
 community-i686/fix-systemd-support.patch  |   91 -
 community-i686/flashback-autostart.patch  |   97 -
 community-i686/gnome-screensaver.pam  |3 
 community-i686/lightdm_switch_user.patch  |  100 --
 community-i686/lock_screen_on_suspend.patch   |   51 -
 c

[arch-commits] Commit in gnome-screensaver/trunk (PKGBUILD flashback-autostart.patch)

2015-09-10 Thread Balló György
Date: Thursday, September 10, 2015 @ 12:51:08
  Author: bgyorgy
Revision: 139788

upgpkg: gnome-screensaver 3.6.1-12

Remove autostart file for GNOME Flashback, added to gnome-flashback package

Modified:
  gnome-screensaver/trunk/PKGBUILD
Deleted:
  gnome-screensaver/trunk/flashback-autostart.patch

---+
 PKGBUILD  |7 ---
 flashback-autostart.patch |   97 
 2 files changed, 1 insertion(+), 103 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 10:34:45 UTC (rev 139787)
+++ PKGBUILD2015-09-10 10:51:08 UTC (rev 139788)
@@ -5,7 +5,7 @@
 
 pkgname=gnome-screensaver
 pkgver=3.6.1
-pkgrel=11
+pkgrel=12
 pkgdesc="Legacy GNOME screensaver"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -22,7 +22,6 @@
lock_screen_on_suspend.patch
lightdm_switch_user.patch
use-screensaver-background.patch
-   flashback-autostart.patch
recenter.patch)
 sha256sums=('f39b78d4f7fed748c7f0a31d694112fb907c6d3c4e63db22eb858df07e962cd0'
 'b6ea9e2eb586d94bcabb617a8f1c2958111df87afdbb51f645882bccdc15cbda'
@@ -32,7 +31,6 @@
 '516c479558576c6c5a2509abfcbf4fdafb5953d252e7a4ab972f9db6137daca8'
 '5d40bd6e1843150912dc52932eaa94c0f6d57931fd45a3769ef40e2335fe3c6f'
 '7161ff962801d9e34ea564c372de4b5f93b30180b83c13aadbc9a8a1cd73ff65'
-'73b78723696fac36b409ce10fe58ac2e03ed558f812a7b82cfd4d2386dfdaa03'
 '6c428b9296376e4b5e2aaf503a754a1ba58333aab50c82279b7c5615d8dd9e69')
 
 prepare() {
@@ -56,9 +54,6 @@
   # Honour background setting of the lock screen
   patch -Np1 -i "$srcdir/use-screensaver-background.patch"
 
-  # Add autostart file for GNOME Flashback
-  patch -Np1 -i "$srcdir/flashback-autostart.patch"
-
   # Restore the original position after shake
   patch -Np1 -i "$srcdir/recenter.patch"
 }

Deleted: flashback-autostart.patch
===
--- flashback-autostart.patch   2015-09-10 10:34:45 UTC (rev 139787)
+++ flashback-autostart.patch   2015-09-10 10:51:08 UTC (rev 139788)
@@ -1,97 +0,0 @@
-diff -Naur gnome-screensaver-3.6.1.orig/configure.ac 
gnome-screensaver-3.6.1/configure.ac
 gnome-screensaver-3.6.1.orig/configure.ac  2014-12-05 20:38:42.386401000 
+0100
-+++ gnome-screensaver-3.6.1/configure.ac   2014-12-05 20:42:07.474443655 
+0100
-@@ -761,6 +761,7 @@
- po/Makefile.in
- src/Makefile
- src/gnome-screensaver.desktop.in
-+src/gnome-screensaver-autostart.desktop.in
- data/Makefile
- doc/Makefile
- doc/gnome-screensaver.xml
-diff -Naur gnome-screensaver-3.6.1.orig/po/POTFILES.in 
gnome-screensaver-3.6.1/po/POTFILES.in
 gnome-screensaver-3.6.1.orig/po/POTFILES.in2012-06-11 
17:05:23.0 +0200
-+++ gnome-screensaver-3.6.1/po/POTFILES.in 2014-12-05 20:39:45.921183441 
+0100
-@@ -4,6 +4,7 @@
- src/gnome-screensaver-dialog.c
- src/gnome-screensaver.c
- src/gnome-screensaver.desktop.in.in
-+src/gnome-screensaver-autostart.desktop.in.in
- src/gs-auth-pam.c
- src/gs-listener-dbus.c
- src/gs-lock-plug.c
-diff -Naur gnome-screensaver-3.6.1.orig/po/POTFILES.skip 
gnome-screensaver-3.6.1/po/POTFILES.skip
 gnome-screensaver-3.6.1.orig/po/POTFILES.skip  2012-06-11 
17:05:23.0 +0200
-+++ gnome-screensaver-3.6.1/po/POTFILES.skip   2014-12-05 20:39:47.271214330 
+0100
-@@ -1 +1,2 @@
- src/gnome-screensaver.desktop.in
-+src/gnome-screensaver-autostart.desktop.in
-diff -Naur 
gnome-screensaver-3.6.1.orig/src/gnome-screensaver-autostart.desktop.in.in 
gnome-screensaver-3.6.1/src/gnome-screensaver-autostart.desktop.in.in
 gnome-screensaver-3.6.1.orig/src/gnome-screensaver-autostart.desktop.in.in 
1970-01-01 01:00:00.0 +0100
-+++ gnome-screensaver-3.6.1/src/gnome-screensaver-autostart.desktop.in.in  
2014-12-05 20:41:04.679658977 +0100
-@@ -0,0 +1,14 @@
-+[Desktop Entry]
-+Type=Application
-+_Name=Screensaver
-+_Comment=Launch screensaver and locker program
-+Icon=preferences-desktop-screensaver
-+Exec=gnome-screensaver
-+OnlyShowIn=GNOME-Flashback;
-+NoDisplay=true
-+X-GNOME-Autostart-Phase=Application
-+X-GNOME-Autostart-Notify=true
-+X-GNOME-Bugzilla-Bugzilla=GNOME
-+X-GNOME-Bugzilla-Product=gnome-screensaver
-+X-GNOME-Bugzilla-Component=general
-+X-GNOME-Bugzilla-Version=@VERSION@
-diff -Naur gnome-screensaver-3.6.1.orig/src/gnome-screensaver.desktop.in.in 
gnome-screensaver-3.6.1/src/gnome-screensaver.desktop.in.in
 gnome-screensaver-3.6.1.orig/src/gnome-screensaver.desktop.in.in   
2014-12-05 20:38:42.383068000 +0100
-+++ gnome-screensaver-3.6.1/src/gnome-screensaver.desktop.in.in
2014-12-05 20:41:22.556738056 +0100
-@@ -4,7 +4,6 @@
- _Comment=Launch screensaver and locker program
- Icon=preferences-desktop-screensaver
- Exec=gnome-screensaver
--OnlyShowIn=GNOME;
- NoDisplay=true
- X-GNOME-Autostart-Phase=Application
- X-GNOME-Autostart-Notify=true
-diff -Na

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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 12:34:45
  Author: fyan
Revision: 139787

clean up PKGBUILD

Modified:
  ndiswrapper-dkms/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 10:33:50 UTC (rev 139786)
+++ PKGBUILD2015-09-10 10:34:45 UTC (rev 139787)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Felix Yan 
 # Contributor: maz-1 
 
@@ -23,18 +24,22 @@
  'be8400a7ad805f68146032412b1e763e'
  'd8c1c66ef19e6222e66274c0cdfb481a')
 
-build() {
-   cd "$srcdir/${_pkgname}-${pkgver}"
-   patch -p1 -i ../kernel-3.14.patch
+prepare() {
+cd "$srcdir/${_pkgname}-${pkgver}"
+patch -p1 -i ../kernel-3.14.patch
 patch -p1 -i ../kernel-4.0.patch
 patch -p1 -i ../kernel-4.2.patch
-   make -C utils
 }
 
+build() {
+cd "$srcdir/${_pkgname}-${pkgver}"
+make -C utils
+}
+
 package() {
-   cd "$srcdir/${_pkgname}-${pkgver}"
-   mkdir -p "${pkgdir}/usr/src"
-   cp -RL ./driver "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
-   cp "$srcdir/dkms.conf" "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
-   make -C utils sbindir=/usr/bin usrsbindir=/usr/bin DESTDIR="${pkgdir}" 
install
+cd "$srcdir/${_pkgname}-${pkgver}"
+mkdir -p "${pkgdir}/usr/src"
+cp -RL ./driver "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
+cp "$srcdir/dkms.conf" "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
+make -C utils sbindir=/usr/bin usrsbindir=/usr/bin DESTDIR="${pkgdir}" 
install
 }


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


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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 12:33:50
  Author: fyan
Revision: 139786

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

Added:
  ndiswrapper-dkms/repos/community-i686/
  ndiswrapper-dkms/repos/community-i686/PKGBUILD
(from rev 139785, ndiswrapper-dkms/trunk/PKGBUILD)
  ndiswrapper-dkms/repos/community-i686/dkms.conf
(from rev 139785, ndiswrapper-dkms/trunk/dkms.conf)
  ndiswrapper-dkms/repos/community-i686/kernel-3.14.patch
(from rev 139785, ndiswrapper-dkms/trunk/kernel-3.14.patch)
  ndiswrapper-dkms/repos/community-i686/kernel-4.0.patch
(from rev 139785, ndiswrapper-dkms/trunk/kernel-4.0.patch)
  ndiswrapper-dkms/repos/community-i686/kernel-4.2.patch
(from rev 139785, ndiswrapper-dkms/trunk/kernel-4.2.patch)
  ndiswrapper-dkms/repos/community-i686/ndiswrapper-dkms.install
(from rev 139785, ndiswrapper-dkms/trunk/ndiswrapper-dkms.install)
  ndiswrapper-dkms/repos/community-x86_64/
  ndiswrapper-dkms/repos/community-x86_64/PKGBUILD
(from rev 139785, ndiswrapper-dkms/trunk/PKGBUILD)
  ndiswrapper-dkms/repos/community-x86_64/dkms.conf
(from rev 139785, ndiswrapper-dkms/trunk/dkms.conf)
  ndiswrapper-dkms/repos/community-x86_64/kernel-3.14.patch
(from rev 139785, ndiswrapper-dkms/trunk/kernel-3.14.patch)
  ndiswrapper-dkms/repos/community-x86_64/kernel-4.0.patch
(from rev 139785, ndiswrapper-dkms/trunk/kernel-4.0.patch)
  ndiswrapper-dkms/repos/community-x86_64/kernel-4.2.patch
(from rev 139785, ndiswrapper-dkms/trunk/kernel-4.2.patch)
  ndiswrapper-dkms/repos/community-x86_64/ndiswrapper-dkms.install
(from rev 139785, ndiswrapper-dkms/trunk/ndiswrapper-dkms.install)

---+
 community-i686/PKGBUILD   |   40 +
 community-i686/dkms.conf  |   24 
 community-i686/kernel-3.14.patch  |   53 
 community-i686/kernel-4.0.patch   |   41 +
 community-i686/kernel-4.2.patch   |   22 +++
 community-i686/ndiswrapper-dkms.install   |   30 +++
 community-x86_64/PKGBUILD |   40 +
 community-x86_64/dkms.conf|   24 
 community-x86_64/kernel-3.14.patch|   53 
 community-x86_64/kernel-4.0.patch |   41 +
 community-x86_64/kernel-4.2.patch |   22 +++
 community-x86_64/ndiswrapper-dkms.install |   30 +++
 12 files changed, 420 insertions(+)

Copied: ndiswrapper-dkms/repos/community-i686/PKGBUILD (from rev 139785, 
ndiswrapper-dkms/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-10 10:33:50 UTC (rev 139786)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+_pkgname=ndiswrapper
+pkgname=${_pkgname}-dkms
+pkgver=1.59
+pkgrel=6
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors.Use with DKMS"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/ndiswrapper/";
+license=('GPL')
+depends=('dkms')
+#optdepends=('ndisgtk: GTK+ based frontend for ndiswrapper.')
+provides=('ndiswrapper')
+conflicts=('ndiswrapper')
+install=ndiswrapper-dkms.install
+source=("http://download.sourceforge.net/ndiswrapper/${_pkgname}-${pkgver}.tar.gz";
+   "kernel-3.14.patch" "kernel-4.0.patch" "kernel-4.2.patch"
+   "dkms.conf")
+md5sums=('e26a7213468ccd6b0bb4c211c7aadeaa'
+ '5f5c98aac6a41cffe298b5a1484ea523'
+ 'd6a1e42ae98f61a85c814b48732f1b52'
+ 'be8400a7ad805f68146032412b1e763e'
+ 'd8c1c66ef19e6222e66274c0cdfb481a')
+
+build() {
+   cd "$srcdir/${_pkgname}-${pkgver}"
+   patch -p1 -i ../kernel-3.14.patch
+patch -p1 -i ../kernel-4.0.patch
+patch -p1 -i ../kernel-4.2.patch
+   make -C utils
+}
+
+package() {
+   cd "$srcdir/${_pkgname}-${pkgver}"
+   mkdir -p "${pkgdir}/usr/src"
+   cp -RL ./driver "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
+   cp "$srcdir/dkms.conf" "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
+   make -C utils sbindir=/usr/bin usrsbindir=/usr/bin DESTDIR="${pkgdir}" 
install
+}

Copied: ndiswrapper-dkms/repos/community-i686/dkms.conf (from rev 139785, 
ndiswrapper-dkms/trunk/dkms.conf)
===
--- community-i686/dkms.conf(rev 0)
+++ community-i686/dkms.conf2015-09-10 10:33:50 UTC (rev 139786)
@@ -0,0 +1,24 @@
+## @file
+# Linux DKMS config script for the VirtualBox guest kernel modules
+#
+
+#
+# Copyright (C) 2006-2010 Oracle Corporation
+#
+# This file is part of VirtualBox Open Source Edition (OSE), as
+# available from http://www.virtualbox.org. This file is free software;
+# you can redistribute it and/or modify it under the terms of the GNU
+# General Public License

[arch-commits] Commit in (9 files)

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 12:32:23
  Author: fyan
Revision: 139785

addpkg: ndiswrapper-dkms 1.59-6

Added:
  ndiswrapper-dkms/
  ndiswrapper-dkms/repos/
  ndiswrapper-dkms/trunk/
  ndiswrapper-dkms/trunk/PKGBUILD
  ndiswrapper-dkms/trunk/dkms.conf
  ndiswrapper-dkms/trunk/kernel-3.14.patch
  ndiswrapper-dkms/trunk/kernel-4.0.patch
  ndiswrapper-dkms/trunk/kernel-4.2.patch
  ndiswrapper-dkms/trunk/ndiswrapper-dkms.install

--+
 PKGBUILD |   40 +
 dkms.conf|   24 
 kernel-3.14.patch|   53 +
 kernel-4.0.patch |   41 ++
 kernel-4.2.patch |   22 ++
 ndiswrapper-dkms.install |   30 +
 6 files changed, 210 insertions(+)

Added: ndiswrapper-dkms/trunk/PKGBUILD
===
--- ndiswrapper-dkms/trunk/PKGBUILD (rev 0)
+++ ndiswrapper-dkms/trunk/PKGBUILD 2015-09-10 10:32:23 UTC (rev 139785)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+_pkgname=ndiswrapper
+pkgname=${_pkgname}-dkms
+pkgver=1.59
+pkgrel=6
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors.Use with DKMS"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/ndiswrapper/";
+license=('GPL')
+depends=('dkms')
+#optdepends=('ndisgtk: GTK+ based frontend for ndiswrapper.')
+provides=('ndiswrapper')
+conflicts=('ndiswrapper')
+install=ndiswrapper-dkms.install
+source=("http://download.sourceforge.net/ndiswrapper/${_pkgname}-${pkgver}.tar.gz";
+   "kernel-3.14.patch" "kernel-4.0.patch" "kernel-4.2.patch"
+   "dkms.conf")
+md5sums=('e26a7213468ccd6b0bb4c211c7aadeaa'
+ '5f5c98aac6a41cffe298b5a1484ea523'
+ 'd6a1e42ae98f61a85c814b48732f1b52'
+ 'be8400a7ad805f68146032412b1e763e'
+ 'd8c1c66ef19e6222e66274c0cdfb481a')
+
+build() {
+   cd "$srcdir/${_pkgname}-${pkgver}"
+   patch -p1 -i ../kernel-3.14.patch
+patch -p1 -i ../kernel-4.0.patch
+patch -p1 -i ../kernel-4.2.patch
+   make -C utils
+}
+
+package() {
+   cd "$srcdir/${_pkgname}-${pkgver}"
+   mkdir -p "${pkgdir}/usr/src"
+   cp -RL ./driver "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
+   cp "$srcdir/dkms.conf" "${pkgdir}/usr/src/${_pkgname}-${pkgver}"
+   make -C utils sbindir=/usr/bin usrsbindir=/usr/bin DESTDIR="${pkgdir}" 
install
+}

Added: ndiswrapper-dkms/trunk/dkms.conf
===
--- ndiswrapper-dkms/trunk/dkms.conf(rev 0)
+++ ndiswrapper-dkms/trunk/dkms.conf2015-09-10 10:32:23 UTC (rev 139785)
@@ -0,0 +1,24 @@
+## @file
+# Linux DKMS config script for the VirtualBox guest kernel modules
+#
+
+#
+# Copyright (C) 2006-2010 Oracle Corporation
+#
+# This file is part of VirtualBox Open Source Edition (OSE), as
+# available from http://www.virtualbox.org. This file is free software;
+# you can redistribute it and/or modify it under the terms of the GNU
+# General Public License (GPL) as published by the Free Software
+# Foundation, in version 2 as it comes in the "COPYING" file of the
+# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
+# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
+#
+
+PACKAGE_NAME="ndiswrapper"
+PACKAGE_VERSION=1.59
+AUTOINSTALL=yes
+
+BUILT_MODULE_NAME[0]="ndiswrapper"
+DEST_MODULE_LOCATION[0]="/kernel/net/ndiswrapper"
+MAKE[0]="make KVERS_UNAME=${kernelver}" 
+

Added: ndiswrapper-dkms/trunk/kernel-3.14.patch
===
--- ndiswrapper-dkms/trunk/kernel-3.14.patch(rev 0)
+++ ndiswrapper-dkms/trunk/kernel-3.14.patch2015-09-10 10:32:23 UTC (rev 
139785)
@@ -0,0 +1,53 @@
+Description: Kernel 3.14 changes
+
+This is a diff consisting of upstream revisions 3199, 3201, 3203.
+
+* Use prandom_seed() instead of net_srandom() on Linux 3.8+
+net_srandom() is going away.
+
+* Avoid preempt_enable_no_resched(), it's no longer available for modules
+Use preempt_enable() instead. This makes nt_spin_unlock_irqrestore()
+fully complementary to nt_spin_lock_irqsave().
+
+* Define reinit_completion() based on the kernel version
+Checking for INIT_COMPLETION was a temporary hack needed before Linux
+3.13-rc1 was released.
+
+The last patch might not be really related to kernel 3.14, but is included
+as well.
+
+Origin: upstream, http://sourceforge.net/p/ndiswrapper/code/
+
+--- a/driver/crt.c
 b/driver/crt.c
+@@ -467,7 +467,7 @@ noregparm int WIN_FUNC(_win_memcmp,3)
+ noregparm void WIN_FUNC(_win_srand,1)
+   (UINT seed)
+ {
+-  net_srandom(seed);
++  prandom_seed((__force u32)(seed));
+ }
+ 
+ noregparm int WIN_FUNC(rand,0)
+--- a/driver/ntoskernel.h
 b/driver/ntoskernel.h
+@@ -347,7 +3

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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 12:08:03
  Author: fyan
Revision: 245718

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

Added:
  nvidia/repos/testing-i686/PKGBUILD
(from rev 245717, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia-dkms.install
(from rev 245717, nvidia/trunk/nvidia-dkms.install)
  nvidia/repos/testing-i686/nvidia.install
(from rev 245717, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 245717, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia-dkms.install
(from rev 245717, nvidia/trunk/nvidia-dkms.install)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 245717, nvidia/trunk/nvidia.install)
Deleted:
  nvidia/repos/testing-i686/PKGBUILD
  nvidia/repos/testing-i686/nv-drm-343.36.patch
  nvidia/repos/testing-i686/nvidia-dkms.install
  nvidia/repos/testing-i686/nvidia.install
  nvidia/repos/testing-x86_64/PKGBUILD
  nvidia/repos/testing-x86_64/nv-drm-343.36.patch
  nvidia/repos/testing-x86_64/nvidia-dkms.install
  nvidia/repos/testing-x86_64/nvidia.install

+
 /PKGBUILD  |  156 +++
 /nvidia-dkms.install   |   60 +
 /nvidia.install|   26 +
 testing-i686/PKGBUILD  |   78 -
 testing-i686/nv-drm-343.36.patch   |   14 ---
 testing-i686/nvidia-dkms.install   |   30 --
 testing-i686/nvidia.install|   13 --
 testing-x86_64/PKGBUILD|   78 -
 testing-x86_64/nv-drm-343.36.patch |   14 ---
 testing-x86_64/nvidia-dkms.install |   30 --
 testing-x86_64/nvidia.install  |   13 --
 11 files changed, 242 insertions(+), 270 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-09-10 10:07:29 UTC (rev 245717)
+++ testing-i686/PKGBUILD   2015-09-10 10:08:03 UTC (rev 245718)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Thomas Baechler 
-
-pkgbase=nvidia
-pkgname=(nvidia nvidia-dkms)
-pkgver=355.11
-_extramodules=extramodules-4.2-ARCH
-pkgrel=1
-pkgdesc="NVIDIA drivers for linux"
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/";
-makedepends=('libgl' "nvidia-utils=${pkgver}" 'linux' 'linux-headers>=4.2' 
'linux-headers<4.3')
-license=('custom')
-options=(!strip)
-source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";
-
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
-md5sums=('16d143ccafe99328a2ca8e5a396fd4bc'
- '30133d89690f4683c4e289ec6c0247dc')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() { 
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-# patches here
-
-cp -a kernel kernel-dkms
-cd kernel-dkms
-eval "sed -i 's/__VERSION_STRING/${pkgver}/' dkms.conf"
-sed -i 's/__JOBS/${&}/' dkms.conf
-sed -i '4iBUILT_MODULE_NAME[0]="nvidia"\
-DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-__JOBS=`nproc`' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia() {
-pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.2' 'linux<4.3' "nvidia-utils=${pkgver}" 'libgl')
-install=nvidia.install
-
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-
-if [[ "$CARCH" = "x86_64" ]]; then
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
-fi
-
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}
-
-package_nvidia-dkms() {
-pkgdesc="NVIDIA driver sources for linux"
-depends=('dkms' "nvidia-utils=$pkgver")
-optdepends=('linux-headers: Build the module for Arch kernel'
-'linux-lts-headers: Build the module for LTS Arch kernel')
-conflict+=('nvidia')
-install=nvidia-dkms.install
-
-cd ${_pkg}
-install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
-cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
-echo 'blacklist nouveau' > "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}

Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 245717, 
nvidia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   

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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 12:07:29
  Author: fyan
Revision: 245717

upgpkg: nvidia 355.11-2

update dkms.conf and use arch-specific source (FS#46223)

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 09:59:13 UTC (rev 245716)
+++ PKGBUILD2015-09-10 10:07:29 UTC (rev 245717)
@@ -1,22 +1,23 @@
 # $Id$
 # Maintainer: Sven-Hendrik Haase 
-# Maintainer: Thomas Baechler 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
 
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
 pkgver=355.11
 _extramodules=extramodules-4.2-ARCH
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA drivers for linux"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-makedepends=('libgl' "nvidia-utils=${pkgver}" 'linux' 'linux-headers>=4.2' 
'linux-headers<4.3')
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.2' 'linux-headers<4.3')
 license=('custom')
 options=(!strip)
-source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";
-
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
-md5sums=('16d143ccafe99328a2ca8e5a396fd4bc'
- '30133d89690f4683c4e289ec6c0247dc')
+source_i686="ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";
+source_x86_64="ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";
+md5sums_i686='16d143ccafe99328a2ca8e5a396fd4bc'
+md5sums_x86_64='30133d89690f4683c4e289ec6c0247dc'
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
@@ -28,14 +29,13 @@
 
 cp -a kernel kernel-dkms
 cd kernel-dkms
-eval "sed -i 's/__VERSION_STRING/${pkgver}/' dkms.conf"
-sed -i 's/__JOBS/${&}/' dkms.conf
-sed -i '4iBUILT_MODULE_NAME[0]="nvidia"\
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
 DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
 BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-__JOBS=`nproc`' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"' dkms.conf
 }
 
 build() {


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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 11:59:13
  Author: fyan
Revision: 245716

use arch-specific source

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 09:29:46 UTC (rev 245715)
+++ PKGBUILD2015-09-10 09:59:13 UTC (rev 245716)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer : Thomas Baechler 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
 
 pkgbase=nvidia-340xx
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
@@ -12,12 +13,12 @@
 conflicts=('nvidia')
 license=('custom')
 options=(!strip)
-source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";
-
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";
-nv-drm.patch)
-md5sums=('4a7edf6838a80c77a57fb6f6ec7f0437'
- 'cb80e3f1cb6f2fb6e6eab35fad0884e4'
- '79671a27131da619a33eb02ed0c2c031')
+source=(nv-drm.patch)
+source_i686+=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
+source_x86_64+=("ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+md5sums=('79671a27131da619a33eb02ed0c2c031')
+md5sums_i686=('4a7edf6838a80c77a57fb6f6ec7f0437')
+md5sums_x86_64=('cb80e3f1cb6f2fb6e6eab35fad0884e4')
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"


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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 11:29:46
  Author: fyan
Revision: 245715

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

Added:
  sddm/repos/testing-i686/PKGBUILD
(from rev 245714, sddm/trunk/PKGBUILD)
  sddm/repos/testing-i686/sddm.install
(from rev 245714, sddm/trunk/sddm.install)
  sddm/repos/testing-x86_64/PKGBUILD
(from rev 245714, sddm/trunk/PKGBUILD)
  sddm/repos/testing-x86_64/sddm.install
(from rev 245714, sddm/trunk/sddm.install)
Deleted:
  sddm/repos/testing-i686/PKGBUILD
  sddm/repos/testing-i686/sddm.install
  sddm/repos/testing-x86_64/PKGBUILD
  sddm/repos/testing-x86_64/sddm.install

-+
 /PKGBUILD   |   78 ++
 /sddm.install   |   48 +
 testing-i686/PKGBUILD   |   38 
 testing-i686/sddm.install   |   24 
 testing-x86_64/PKGBUILD |   38 
 testing-x86_64/sddm.install |   24 
 6 files changed, 126 insertions(+), 124 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-09-10 09:29:14 UTC (rev 245714)
+++ testing-i686/PKGBUILD   2015-09-10 09:29:46 UTC (rev 245715)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=sddm
-pkgver=0.12.0
-pkgrel=1
-pkgdesc='QML based X11 display manager'
-arch=('i686' 'x86_64')
-url='http://github.com/sddm/sddm'
-license=('GPL')
-depends=('qt5-declarative')
-makedepends=('cmake' 'python-docutils' 'qt5-tools')
-install="${pkgname}.install"
-backup=('usr/share/sddm/scripts/Xsetup')
-provides=('display-manager')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz";)
-md5sums=('e3261ac93a50c71c973cc79b85387765')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/sddm \
--DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
--DBUILD_MAN_PAGES=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: sddm/repos/testing-i686/PKGBUILD (from rev 245714, sddm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 09:29:46 UTC (rev 245715)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=sddm
+pkgver=0.12.0
+pkgrel=2
+pkgdesc='QML based X11 display manager'
+arch=('i686' 'x86_64')
+url='http://github.com/sddm/sddm'
+license=('GPL')
+depends=('qt5-declarative')
+makedepends=('cmake' 'python-docutils' 'qt5-tools')
+install="${pkgname}.install"
+backup=('usr/share/sddm/scripts/Xsetup'
+'etc/pam.d/sddm')
+provides=('display-manager')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz";)
+md5sums=('e3261ac93a50c71c973cc79b85387765')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/sddm \
+-DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
+-DBUILD_MAN_PAGES=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: testing-i686/sddm.install
===
--- testing-i686/sddm.install   2015-09-10 09:29:14 UTC (rev 245714)
+++ testing-i686/sddm.install   2015-09-10 09:29:46 UTC (rev 245715)
@@ -1,24 +0,0 @@
-post_install() {
-   if ! getent group sddm > /dev/null; then
-   groupadd --system sddm
-   fi
-   if ! getent passwd sddm > /dev/null; then
-   useradd -c "Simple Desktop Display Manager" --system -d 
/var/lib/sddm -s /usr/bin/nologin -g sddm sddm
-   passwd -l sddm > /dev/null
-   fi
-   mkdir -p /var/lib/sddm
-   chown -R sddm:sddm /var/lib/sddm > /dev/null
-}
-
-post_upgrade() {
-   post_install $1
-}
-
-post_remove() {
-   if getent passwd sddm >/dev/null; then
-   userdel sddm
-   fi
-   if getent group sddm >/dev/null; then
-   groupdel sddm
-   fi
-}

Copied: sddm/repos/testing-i686/sddm.install (from rev 245714, 
sddm/trunk/sddm.install)
===
--- testing-i686/sddm.install   (rev 0)
+++ testing-i686/sddm.install   2015-09-10 09:29:46 UTC (rev 245715)
@@ -0,0 +1,24 @@
+post_install() {
+   if ! getent group sddm > /dev/null; then
+   groupadd --system sddm
+   fi
+   if ! getent passwd sddm > /dev/null

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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 11:29:14
  Author: fyan
Revision: 245714

upgpkg: sddm 0.12.0-2

add pam.d/sddm to backup array (FS#46140)

Modified:
  sddm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 08:33:36 UTC (rev 245713)
+++ PKGBUILD2015-09-10 09:29:14 UTC (rev 245714)
@@ -4,7 +4,7 @@
 
 pkgname=sddm
 pkgver=0.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc='QML based X11 display manager'
 arch=('i686' 'x86_64')
 url='http://github.com/sddm/sddm'
@@ -12,7 +12,8 @@
 depends=('qt5-declarative')
 makedepends=('cmake' 'python-docutils' 'qt5-tools')
 install="${pkgname}.install"
-backup=('usr/share/sddm/scripts/Xsetup')
+backup=('usr/share/sddm/scripts/Xsetup'
+'etc/pam.d/sddm')
 provides=('display-manager')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz";)
 md5sums=('e3261ac93a50c71c973cc79b85387765')


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

2015-09-10 Thread Antonio Rojas
Date: Thursday, September 10, 2015 @ 10:33:36
  Author: arojas
Revision: 245713

Add ffmpegthumbs optdepend

Modified:
  dolphin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 08:23:53 UTC (rev 245712)
+++ PKGBUILD2015-09-10 08:33:36 UTC (rev 245713)
@@ -13,7 +13,7 @@
 license=(LGPL)
 depends=(baloo-widgets knewstuff kio-extras ktexteditor kactivities-frameworks 
kde-templates)
 makedepends=(extra-cmake-modules kdoctools python)
-optdepends=('kde-cli-tools: For editing file type options')
+optdepends=('kde-cli-tools: For editing file type options' 'ffmpegthumbs: 
Video thumbnails')
 conflicts=('kdebase-dolphin<15.08')
 replaces=(kdebase-dolphin)
 groups=(kde-applications kdebase)


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 10:23:53
  Author: jgc
Revision: 245712

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 08:23:43 UTC (rev 245711)
+++ extra-i686/PKGBUILD 2015-09-10 08:23:53 UTC (rev 245712)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgname=libxi
-pkgver=1.7.4
-pkgrel=1
-pkgdesc="X11 Input extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org";
-depends=('libxext' 'inputproto')
-makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake')
-license=('custom')
-source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
-sha256sums=('2cffc2686618dc1803725636cd92b36342c512dc60a7a35cba34bf7192a42244')
-
-build() {
-  cd libXi-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd libXi-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxi/repos/extra-i686/PKGBUILD (from rev 245711, libxi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 08:23:53 UTC (rev 245712)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=libxi
+pkgver=1.7.5
+pkgrel=1
+pkgdesc="X11 Input extension library"
+arch=('i686' 'x86_64')
+url="http://xorg.freedesktop.org";
+depends=('libxext' 'inputproto')
+makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake')
+license=('custom')
+source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig})
+sha256sums=('d964d7deb5d8f7d6b9c358969c625073d7ab273dbda94693130b3540bc0ca229'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer
+
+build() {
+  cd libXi-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXi-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-10 08:23:43 UTC (rev 245711)
+++ extra-x86_64/PKGBUILD   2015-09-10 08:23:53 UTC (rev 245712)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgname=libxi
-pkgver=1.7.4
-pkgrel=1
-pkgdesc="X11 Input extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org";
-depends=('libxext' 'inputproto')
-makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake')
-license=('custom')
-source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
-sha256sums=('2cffc2686618dc1803725636cd92b36342c512dc60a7a35cba34bf7192a42244')
-
-build() {
-  cd libXi-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd libXi-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxi/repos/extra-x86_64/PKGBUILD (from rev 245711, 
libxi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-10 08:23:53 UTC (rev 245712)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=libxi
+pkgver=1.7.5
+pkgrel=1
+pkgdesc="X11 Input extension library"
+arch=('i686' 'x86_64')
+url="http://xorg.freedesktop.org";
+depends=('libxext' 'inputproto')
+makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake')
+license=('custom')
+source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig})
+sha256sums=('d964d7deb5d8f7d6b9c358969c625073d7ab273dbda94693130b3540bc0ca229'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer
+
+build() {
+  cd libXi-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXi-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkg

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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 10:23:43
  Author: jgc
Revision: 245711

upgpkg: libxi 1.7.5-1

Modified:
  libxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 08:09:35 UTC (rev 245710)
+++ PKGBUILD2015-09-10 08:23:43 UTC (rev 245711)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libxi
-pkgver=1.7.4
+pkgver=1.7.5
 pkgrel=1
 pkgdesc="X11 Input extension library"
 arch=('i686' 'x86_64')
@@ -11,8 +11,10 @@
 depends=('libxext' 'inputproto')
 makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake')
 license=('custom')
-source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
-sha256sums=('2cffc2686618dc1803725636cd92b36342c512dc60a7a35cba34bf7192a42244')
+source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig})
+sha256sums=('d964d7deb5d8f7d6b9c358969c625073d7ab273dbda94693130b3540bc0ca229'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer
 
 build() {
   cd libXi-${pkgver}


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 10:09:35
  Author: jgc
Revision: 245710

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

Added:
  totem-plparser/repos/extra-i686/PKGBUILD
(from rev 245709, totem-plparser/trunk/PKGBUILD)
  totem-plparser/repos/extra-x86_64/PKGBUILD
(from rev 245709, totem-plparser/trunk/PKGBUILD)
Deleted:
  totem-plparser/repos/extra-i686/PKGBUILD
  totem-plparser/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 08:09:28 UTC (rev 245709)
+++ extra-i686/PKGBUILD 2015-09-10 08:09:35 UTC (rev 245710)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=totem-plparser
-pkgver=3.10.4
-pkgrel=1
-url="http://www.gnome.org";
-pkgdesc="Totem playlist parser library"
-license=('LGPL')
-arch=(i686 x86_64)
-depends=('gmime' 'libsoup' 'libarchive' 'libquvi')
-makedepends=('intltool' 'gobject-introspection' 'python2')
-source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver:0:4}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('482353f8466b1cab06d99c0a112a4adc414bf43b9c8f3bd636570d20d1f4e265')
-
-build() {
-  cd totem-pl-parser-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-package(){
-  cd totem-pl-parser-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: totem-plparser/repos/extra-i686/PKGBUILD (from rev 245709, 
totem-plparser/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 08:09:35 UTC (rev 245710)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.10.5
+pkgrel=1
+url="http://www.gnome.org";
+pkgdesc="Totem playlist parser library"
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup' 'libarchive' 'libquvi')
+makedepends=('intltool' 'gobject-introspection')
+source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver:0:4}/totem-pl-parser-$pkgver.tar.xz)
+sha256sums=('a746580f61b678029dadaa824a6923445afd944d12c40c5fccb27159799c8137')
+
+build() {
+  cd totem-pl-parser-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package(){
+  cd totem-pl-parser-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-10 08:09:28 UTC (rev 245709)
+++ extra-x86_64/PKGBUILD   2015-09-10 08:09:35 UTC (rev 245710)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=totem-plparser
-pkgver=3.10.4
-pkgrel=1
-url="http://www.gnome.org";
-pkgdesc="Totem playlist parser library"
-license=('LGPL')
-arch=(i686 x86_64)
-depends=('gmime' 'libsoup' 'libarchive' 'libquvi')
-makedepends=('intltool' 'gobject-introspection' 'python2')
-source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver:0:4}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('482353f8466b1cab06d99c0a112a4adc414bf43b9c8f3bd636570d20d1f4e265')
-
-build() {
-  cd totem-pl-parser-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-package(){
-  cd totem-pl-parser-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: totem-plparser/repos/extra-x86_64/PKGBUILD (from rev 245709, 
totem-plparser/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-10 08:09:35 UTC (rev 245710)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.10.5
+pkgrel=1
+url="http://www.gnome.org";
+pkgdesc="Totem playlist parser library"
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup' 'libarchive' 'libquvi')
+makedepends=('intltool' 'gobject-introspection')
+source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver:0:4}/totem-pl-parser-$pkgver.tar.xz)
+sha256sums=('a746580f61b678029dadaa824a6923445afd944d12c40c5fccb27159799c8137')
+
+build() {
+  cd totem-pl-parser-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package(){
+  cd totem-pl-parser-$pkgver
+  make DE

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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 10:09:28
  Author: jgc
Revision: 245709

upgpkg: totem-plparser 3.10.5-1

Modified:
  totem-plparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 07:52:23 UTC (rev 245708)
+++ PKGBUILD2015-09-10 08:09:28 UTC (rev 245709)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=totem-plparser
-pkgver=3.10.4
+pkgver=3.10.5
 pkgrel=1
 url="http://www.gnome.org";
 pkgdesc="Totem playlist parser library"
@@ -10,9 +10,9 @@
 license=('LGPL')
 arch=(i686 x86_64)
 depends=('gmime' 'libsoup' 'libarchive' 'libquvi')
-makedepends=('intltool' 'gobject-introspection' 'python2')
+makedepends=('intltool' 'gobject-introspection')
 
source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver:0:4}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('482353f8466b1cab06d99c0a112a4adc414bf43b9c8f3bd636570d20d1f4e265')
+sha256sums=('a746580f61b678029dadaa824a6923445afd944d12c40c5fccb27159799c8137')
 
 build() {
   cd totem-pl-parser-$pkgver


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:52:23
  Author: jgc
Revision: 245708

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 07:52:16 UTC (rev 245707)
+++ extra-i686/PKGBUILD 2015-09-10 07:52:23 UTC (rev 245708)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libgdata
-pkgver=0.17.1
-pkgrel=1
-pkgdesc="GLib-based library for accessing online service APIs using the GData 
protocol"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
-makedepends=('intltool' 'gobject-introspection' 'vala' 'python2')
-url="http://www.gnome.org";
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ef1c0f246f60812c43e3a7d077442afc872913a03f3a5eb789698dc2319bd95')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --disable-static --disable-tests
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: libgdata/repos/extra-i686/PKGBUILD (from rev 245707, 
libgdata/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 07:52:23 UTC (rev 245708)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libgdata
+pkgver=0.17.2
+pkgrel=1
+pkgdesc="GLib-based library for accessing online service APIs using the GData 
protocol"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
+makedepends=('intltool' 'gobject-introspection' 'vala' 'uhttpmock')
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9b9b4f68bef86ee2926ea14f182baf7ddaa6717dd138b5ff670f07d126176fe0')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static --disable-tests
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-10 07:52:16 UTC (rev 245707)
+++ extra-x86_64/PKGBUILD   2015-09-10 07:52:23 UTC (rev 245708)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libgdata
-pkgver=0.17.1
-pkgrel=1
-pkgdesc="GLib-based library for accessing online service APIs using the GData 
protocol"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
-makedepends=('intltool' 'gobject-introspection' 'vala' 'python2')
-url="http://www.gnome.org";
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ef1c0f246f60812c43e3a7d077442afc872913a03f3a5eb789698dc2319bd95')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --disable-static --disable-tests
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: libgdata/repos/extra-x86_64/PKGBUILD (from rev 245707, 
libgdata/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-10 07:52:23 UTC (rev 245708)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libgdata
+pkgver=0.17.2
+pkgrel=1
+pkgdesc="GLib-based library for accessing online service APIs using the GData 
protocol"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
+makedepends=('intltool' 'gobject-introspection' 'vala' 'uhttpmock')
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9b9b4f68bef86ee2926ea14f182baf7ddaa6717dd138b5ff670f07d126176fe0')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static --disable-tests
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:52:16
  Author: jgc
Revision: 245707

upgpkg: libgdata 0.17.2-1

Modified:
  libgdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 07:46:25 UTC (rev 245706)
+++ PKGBUILD2015-09-10 07:52:16 UTC (rev 245707)
@@ -2,16 +2,16 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libgdata
-pkgver=0.17.1
+pkgver=0.17.2
 pkgrel=1
 pkgdesc="GLib-based library for accessing online service APIs using the GData 
protocol"
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
-makedepends=('intltool' 'gobject-introspection' 'vala' 'python2')
+makedepends=('intltool' 'gobject-introspection' 'vala' 'uhttpmock')
 url="http://www.gnome.org";
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ef1c0f246f60812c43e3a7d077442afc872913a03f3a5eb789698dc2319bd95')
+sha256sums=('9b9b4f68bef86ee2926ea14f182baf7ddaa6717dd138b5ff670f07d126176fe0')
 
 build() {
   cd "$pkgname-$pkgver"


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:46:25
  Author: jgc
Revision: 245706

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 07:46:18 UTC (rev 245705)
+++ extra-i686/PKGBUILD 2015-09-10 07:46:25 UTC (rev 245706)
@@ -1,24 +0,0 @@
-# $Id: PKGBUILD 206275 2014-02-23 13:44:21Z jgc $
-# Maintainer: Jan de Groot 
-
-pkgname=uhttpmock
-pkgver=0.3.3
-pkgrel=1
-pkgdesc="HTTP web service mocking project for projects which use libsoup"
-url="https://gitorious.org/uhttpmock/pages/Home";
-depends=('glib2' 'libsoup')
-license=('LGPL2.1')
-arch=(i686 x86_64)
-source=(http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$pkgver.tar.xz)
-md5sums=('d28b1429eadf3825c8a1f3096bb9d01d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}

Copied: uhttpmock/repos/extra-i686/PKGBUILD (from rev 245705, 
uhttpmock/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 07:46:25 UTC (rev 245706)
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 206275 2014-02-23 13:44:21Z jgc $
+# Maintainer: Jan de Groot 
+
+pkgname=uhttpmock
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="HTTP web service mocking project for projects which use libsoup"
+url="https://gitorious.org/uhttpmock/pages/Home";
+depends=('glib2' 'libsoup')
+license=('LGPL2.1')
+arch=(i686 x86_64)
+source=(http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$pkgver.tar.xz)
+md5sums=('ebc54cbbe9b6695282a179af223fe374')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-10 07:46:18 UTC (rev 245705)
+++ extra-x86_64/PKGBUILD   2015-09-10 07:46:25 UTC (rev 245706)
@@ -1,24 +0,0 @@
-# $Id: PKGBUILD 206275 2014-02-23 13:44:21Z jgc $
-# Maintainer: Jan de Groot 
-
-pkgname=uhttpmock
-pkgver=0.3.3
-pkgrel=1
-pkgdesc="HTTP web service mocking project for projects which use libsoup"
-url="https://gitorious.org/uhttpmock/pages/Home";
-depends=('glib2' 'libsoup')
-license=('LGPL2.1')
-arch=(i686 x86_64)
-source=(http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$pkgver.tar.xz)
-md5sums=('d28b1429eadf3825c8a1f3096bb9d01d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}

Copied: uhttpmock/repos/extra-x86_64/PKGBUILD (from rev 245705, 
uhttpmock/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-10 07:46:25 UTC (rev 245706)
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 206275 2014-02-23 13:44:21Z jgc $
+# Maintainer: Jan de Groot 
+
+pkgname=uhttpmock
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="HTTP web service mocking project for projects which use libsoup"
+url="https://gitorious.org/uhttpmock/pages/Home";
+depends=('glib2' 'libsoup')
+license=('LGPL2.1')
+arch=(i686 x86_64)
+source=(http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$pkgver.tar.xz)
+md5sums=('ebc54cbbe9b6695282a179af223fe374')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:46:18
  Author: jgc
Revision: 245705

upgpkg: uhttpmock 0.5.0-1

Modified:
  uhttpmock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 07:43:26 UTC (rev 245704)
+++ PKGBUILD2015-09-10 07:46:18 UTC (rev 245705)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=uhttpmock
-pkgver=0.3.3
+pkgver=0.5.0
 pkgrel=1
 pkgdesc="HTTP web service mocking project for projects which use libsoup"
 url="https://gitorious.org/uhttpmock/pages/Home";
@@ -10,7 +10,7 @@
 license=('LGPL2.1')
 arch=(i686 x86_64)
 source=(http://tecnocode.co.uk/downloads/uhttpmock/$pkgname-$pkgver.tar.xz)
-md5sums=('d28b1429eadf3825c8a1f3096bb9d01d')
+md5sums=('ebc54cbbe9b6695282a179af223fe374')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:43:26
  Author: jgc
Revision: 245704

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

Added:
  libdvdnav/repos/extra-i686/PKGBUILD
(from rev 245703, libdvdnav/trunk/PKGBUILD)
  libdvdnav/repos/extra-i686/fix-crash-describe_title.patch
(from rev 245703, libdvdnav/trunk/fix-crash-describe_title.patch)
  libdvdnav/repos/extra-x86_64/PKGBUILD
(from rev 245703, libdvdnav/trunk/PKGBUILD)
  libdvdnav/repos/extra-x86_64/fix-crash-describe_title.patch
(from rev 245703, libdvdnav/trunk/fix-crash-describe_title.patch)
Deleted:
  libdvdnav/repos/extra-i686/Fix-reading-DVD-label.patch
  libdvdnav/repos/extra-i686/PKGBUILD
  libdvdnav/repos/extra-x86_64/Fix-reading-DVD-label.patch
  libdvdnav/repos/extra-x86_64/PKGBUILD

-+
 /PKGBUILD   |   70 ++
 extra-i686/Fix-reading-DVD-label.patch  |   27 --
 extra-i686/PKGBUILD |   35 -
 extra-i686/fix-crash-describe_title.patch   |   29 ++
 extra-x86_64/Fix-reading-DVD-label.patch|   27 --
 extra-x86_64/PKGBUILD   |   35 -
 extra-x86_64/fix-crash-describe_title.patch |   29 ++
 7 files changed, 128 insertions(+), 124 deletions(-)

Deleted: extra-i686/Fix-reading-DVD-label.patch
===
--- extra-i686/Fix-reading-DVD-label.patch  2015-09-10 07:43:19 UTC (rev 
245703)
+++ extra-i686/Fix-reading-DVD-label.patch  2015-09-10 07:43:26 UTC (rev 
245704)
@@ -1,27 +0,0 @@
-From 1cdbd6909097cf36f3357a92de482ec9980ae7ed Mon Sep 17 00:00:00 2001
-From: John Stebbins 
-Date: Tue, 13 Jan 2015 11:07:03 -0700
-Subject: [PATCH] Fix reading DVD label
-
-This was inadvertently removed with REMAP

- src/vm/vm.c |3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/src/vm/vm.c b/src/vm/vm.c
-index 7e4d594..1e87376 100644
 a/src/vm/vm.c
-+++ b/src/vm/vm.c
-@@ -402,6 +402,9 @@ int vm_reset(vm_t *vm, const char *dvdroot) {
-   /* return 0; Not really used for now.. */
- }
- /* ifoRead_TXTDT_MGI(vmgi); Not implemented yet */
-+if(dvd_read_name(vm->dvd_name, vm->dvd_serial, dvdroot) != 1) {
-+  fprintf(MSG_OUT, "libdvdnav: vm: dvd_read_name failed\n");
-+}
-   }
-   if (vm->vmgi) {
- int i, mask;
--- 
-1.7.10.4
-

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 07:43:19 UTC (rev 245703)
+++ extra-i686/PKGBUILD 2015-09-10 07:43:26 UTC (rev 245704)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Arjan 
-# contributor Sarah Hay 
-
-pkgname=libdvdnav
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="The library for xine-dvdnav plugin."
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://dvdnav.mplayerhq.hu/";
-depends=('libdvdread')
-makedepends=('git')
-source=(git://git.videolan.org/libdvdnav.git#tag=$pkgver
-Fix-reading-DVD-label.patch)
-sha256sums=('SKIP'
-'f4300e3f38cdcb985c8f3c765ad0503350a96b91496c3cd63c7de5a5cb937119')
-
-prepare() {
-  cd $pkgname
-  patch -Np1 -i ../Fix-reading-DVD-label.patch
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: libdvdnav/repos/extra-i686/PKGBUILD (from rev 245703, 
libdvdnav/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 07:43:26 UTC (rev 245704)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Arjan 
+# contributor Sarah Hay 
+
+pkgname=libdvdnav
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="The library for xine-dvdnav plugin."
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://dvdnav.mplayerhq.hu/";
+depends=('libdvdread')
+makedepends=('git')
+source=(git://git.videolan.org/libdvdnav.git#tag=$pkgver
+fix-crash-describe_title.patch)
+sha256sums=('SKIP'
+'6a8e9c777dd9dbfa8a7f981796bd7a60412e3a5c7a8400253c567d956412c64b')
+
+prepare() {
+  cd $pkgname
+  patch -Np1 -i ../fix-crash-describe_title.patch
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}

Copied: libdvdnav/repos/extra-i686/fix-crash-describe_title.patch (from rev 
245703, libdvdnav/trunk/fix-crash-describe_title.patch)
===
--- extra-i686/fix-crash-describe_title.patch   (rev 0)
+++ extra-i686/fix-crash-describe_title.patch   2015-09-10 07:43:26 UTC (rev 
245704)
@@ -0,0 +1,29 @@
+From 8a270d6dd40ac43c98c948fe9d10e5bcb4aa3d41 Mon Sep 17 00:00:00 2001
+From: Jean-Baptiste Kempf 
+Date: Tue, 1 Sep 2015 16:00:59 +0200
+Subject: [PATCH] Fix crashes with some D

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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:43:19
  Author: jgc
Revision: 245703

upgpkg: libdvdnav 5.0.3-1

Added:
  libdvdnav/trunk/fix-crash-describe_title.patch
Modified:
  libdvdnav/trunk/PKGBUILD
Deleted:
  libdvdnav/trunk/Fix-reading-DVD-label.patch

+
 Fix-reading-DVD-label.patch|   27 ---
 PKGBUILD   |8 
 fix-crash-describe_title.patch |   29 +
 3 files changed, 33 insertions(+), 31 deletions(-)

Deleted: Fix-reading-DVD-label.patch
===
--- Fix-reading-DVD-label.patch 2015-09-10 07:37:04 UTC (rev 245702)
+++ Fix-reading-DVD-label.patch 2015-09-10 07:43:19 UTC (rev 245703)
@@ -1,27 +0,0 @@
-From 1cdbd6909097cf36f3357a92de482ec9980ae7ed Mon Sep 17 00:00:00 2001
-From: John Stebbins 
-Date: Tue, 13 Jan 2015 11:07:03 -0700
-Subject: [PATCH] Fix reading DVD label
-
-This was inadvertently removed with REMAP

- src/vm/vm.c |3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/src/vm/vm.c b/src/vm/vm.c
-index 7e4d594..1e87376 100644
 a/src/vm/vm.c
-+++ b/src/vm/vm.c
-@@ -402,6 +402,9 @@ int vm_reset(vm_t *vm, const char *dvdroot) {
-   /* return 0; Not really used for now.. */
- }
- /* ifoRead_TXTDT_MGI(vmgi); Not implemented yet */
-+if(dvd_read_name(vm->dvd_name, vm->dvd_serial, dvdroot) != 1) {
-+  fprintf(MSG_OUT, "libdvdnav: vm: dvd_read_name failed\n");
-+}
-   }
-   if (vm->vmgi) {
- int i, mask;
--- 
-1.7.10.4
-

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 07:37:04 UTC (rev 245702)
+++ PKGBUILD2015-09-10 07:43:19 UTC (rev 245703)
@@ -4,7 +4,7 @@
 # contributor Sarah Hay 
 
 pkgname=libdvdnav
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="The library for xine-dvdnav plugin."
 arch=('i686' 'x86_64')
@@ -13,13 +13,13 @@
 depends=('libdvdread')
 makedepends=('git')
 source=(git://git.videolan.org/libdvdnav.git#tag=$pkgver
-Fix-reading-DVD-label.patch)
+fix-crash-describe_title.patch)
 sha256sums=('SKIP'
-'f4300e3f38cdcb985c8f3c765ad0503350a96b91496c3cd63c7de5a5cb937119')
+'6a8e9c777dd9dbfa8a7f981796bd7a60412e3a5c7a8400253c567d956412c64b')
 
 prepare() {
   cd $pkgname
-  patch -Np1 -i ../Fix-reading-DVD-label.patch
+  patch -Np1 -i ../fix-crash-describe_title.patch
   autoreconf -fi
 }
 

Added: fix-crash-describe_title.patch
===
--- fix-crash-describe_title.patch  (rev 0)
+++ fix-crash-describe_title.patch  2015-09-10 07:43:19 UTC (rev 245703)
@@ -0,0 +1,29 @@
+From 8a270d6dd40ac43c98c948fe9d10e5bcb4aa3d41 Mon Sep 17 00:00:00 2001
+From: Jean-Baptiste Kempf 
+Date: Tue, 1 Sep 2015 16:00:59 +0200
+Subject: [PATCH] Fix crashes with some DVDs on describe_title
+
+This is a stop-over, but the actual issue is not fixed
+---
+ src/searching.c |5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git a/src/searching.c b/src/searching.c
+index 70c0f85..f638b61 100644
+--- a/src/searching.c
 b/src/searching.c
+@@ -644,6 +644,11 @@ uint32_t dvdnav_describe_title_chapters(dvdnav_t *this, 
int32_t title, uint64_t
+   if(!tmp)
+ goto fail;
+ 
++  if(!ptt) {
++  printerr("ptt NULL");
++  goto fail;
++  }
++
+   length = 0;
+   for(i=0; i

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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:37:04
  Author: jgc
Revision: 245702

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 07:36:57 UTC (rev 245701)
+++ extra-i686/PKGBUILD 2015-09-10 07:37:04 UTC (rev 245702)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Thomas Baechler 
-# Contributor: Tom Newsom 
-
-pkgname=libdvdread
-pkgver=5.0.3
-pkgrel=1
-pkgdesc="Provides a simple foundation for reading DVD video disks"
-arch=(i686 x86_64)
-url="http://dvdnav.mplayerhq.hu";
-license=('GPL')
-depends=('glibc')
-makedepends=('libdvdcss' 'git')
-optdepends=('libdvdcss: for decoding encrypted DVDs')
-source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
-sha256sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: libdvdread/repos/extra-i686/PKGBUILD (from rev 245701, 
libdvdread/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-10 07:37:04 UTC (rev 245702)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Thomas Baechler 
+# Contributor: Tom Newsom 
+
+pkgname=libdvdread
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Provides a simple foundation for reading DVD video disks"
+arch=(i686 x86_64)
+url="http://dvdnav.mplayerhq.hu";
+license=('GPL')
+depends=('glibc')
+makedepends=('libdvdcss' 'git')
+optdepends=('libdvdcss: for decoding encrypted DVDs')
+_gitver=511ac9c8199d7b604d6a65193fd2777b74fad776
+source=(git://git.videolan.org/libdvdread.git#commit=$_gitver)
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-10 07:36:57 UTC (rev 245701)
+++ extra-x86_64/PKGBUILD   2015-09-10 07:37:04 UTC (rev 245702)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Thomas Baechler 
-# Contributor: Tom Newsom 
-
-pkgname=libdvdread
-pkgver=5.0.3
-pkgrel=1
-pkgdesc="Provides a simple foundation for reading DVD video disks"
-arch=(i686 x86_64)
-url="http://dvdnav.mplayerhq.hu";
-license=('GPL')
-depends=('glibc')
-makedepends=('libdvdcss' 'git')
-optdepends=('libdvdcss: for decoding encrypted DVDs')
-source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
-sha256sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: libdvdread/repos/extra-x86_64/PKGBUILD (from rev 245701, 
libdvdread/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-10 07:37:04 UTC (rev 245702)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Thomas Baechler 
+# Contributor: Tom Newsom 
+
+pkgname=libdvdread
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Provides a simple foundation for reading DVD video disks"
+arch=(i686 x86_64)
+url="http://dvdnav.mplayerhq.hu";
+license=('GPL')
+depends=('glibc')
+makedepends=('libdvdcss' 'git')
+optdepends=('libdvdcss: for decoding encrypted DVDs')
+_gitver=511ac9c8199d7b604d6a65193fd2777b74fad776
+source=(git://git.videolan.org/libdvdread.git#commit=$_gitver)
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


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

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:36:57
  Author: jgc
Revision: 245701

upgpkg: libdvdread 5.0.4-1

Modified:
  libdvdread/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 07:23:55 UTC (rev 245700)
+++ PKGBUILD2015-09-10 07:36:57 UTC (rev 245701)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=libdvdread
-pkgver=5.0.3
+pkgver=5.0.4
 pkgrel=1
 pkgdesc="Provides a simple foundation for reading DVD video disks"
 arch=(i686 x86_64)
@@ -13,7 +13,8 @@
 depends=('glibc')
 makedepends=('libdvdcss' 'git')
 optdepends=('libdvdcss: for decoding encrypted DVDs')
-source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
+_gitver=511ac9c8199d7b604d6a65193fd2777b74fad776
+source=(git://git.videolan.org/libdvdread.git#commit=$_gitver)
 sha256sums=('SKIP')
 
 prepare() {


[arch-commits] Commit in freetype2/repos (26 files)

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:22:22
  Author: jgc
Revision: 245698

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

Added:
  freetype2/repos/extra-i686/PKGBUILD
(from rev 245697, freetype2/trunk/PKGBUILD)
  freetype2/repos/extra-i686/env_FT2_SUBPIXEL_HINTING.diff
(from rev 245697, freetype2/trunk/env_FT2_SUBPIXEL_HINTING.diff)
  freetype2/repos/extra-i686/fix-clipping.patch
(from rev 245697, freetype2/trunk/fix-clipping.patch)
  freetype2/repos/extra-i686/freetype-2.2.1-enable-valid.patch
(from rev 245697, freetype2/trunk/freetype-2.2.1-enable-valid.patch)
  freetype2/repos/extra-i686/freetype-2.5.1-enable-sph.patch
(from rev 245697, freetype2/trunk/freetype-2.5.1-enable-sph.patch)
  freetype2/repos/extra-i686/freetype-2.5.1-enable-spr.patch
(from rev 245697, freetype2/trunk/freetype-2.5.1-enable-spr.patch)
  freetype2/repos/extra-i686/freetype2.install
(from rev 245697, freetype2/trunk/freetype2.install)
  freetype2/repos/extra-x86_64/PKGBUILD
(from rev 245697, freetype2/trunk/PKGBUILD)
  freetype2/repos/extra-x86_64/env_FT2_SUBPIXEL_HINTING.diff
(from rev 245697, freetype2/trunk/env_FT2_SUBPIXEL_HINTING.diff)
  freetype2/repos/extra-x86_64/fix-clipping.patch
(from rev 245697, freetype2/trunk/fix-clipping.patch)
  freetype2/repos/extra-x86_64/freetype-2.2.1-enable-valid.patch
(from rev 245697, freetype2/trunk/freetype-2.2.1-enable-valid.patch)
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-sph.patch
(from rev 245697, freetype2/trunk/freetype-2.5.1-enable-sph.patch)
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-spr.patch
(from rev 245697, freetype2/trunk/freetype-2.5.1-enable-spr.patch)
  freetype2/repos/extra-x86_64/freetype2.install
(from rev 245697, freetype2/trunk/freetype2.install)
Deleted:
  freetype2/repos/extra-i686/PKGBUILD
  freetype2/repos/extra-i686/env_FT2_SUBPIXEL_HINTING.diff
  freetype2/repos/extra-i686/freetype-2.2.1-enable-valid.patch
  freetype2/repos/extra-i686/freetype-2.5.1-enable-sph.patch
  freetype2/repos/extra-i686/freetype-2.5.1-enable-spr.patch
  freetype2/repos/extra-i686/freetype2.install
  freetype2/repos/extra-x86_64/PKGBUILD
  freetype2/repos/extra-x86_64/env_FT2_SUBPIXEL_HINTING.diff
  freetype2/repos/extra-x86_64/freetype-2.2.1-enable-valid.patch
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-sph.patch
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-spr.patch
  freetype2/repos/extra-x86_64/freetype2.install

+
 /PKGBUILD  |  120 +++
 /env_FT2_SUBPIXEL_HINTING.diff |   36 ++
 /freetype-2.2.1-enable-valid.patch |   40 +++
 /freetype-2.5.1-enable-sph.patch   |   26 
 /freetype-2.5.1-enable-spr.patch   |   26 
 /freetype2.install |   16 +++
 extra-i686/PKGBUILD|   55 --
 extra-i686/env_FT2_SUBPIXEL_HINTING.diff   |   18 ---
 extra-i686/fix-clipping.patch  |   25 
 extra-i686/freetype-2.2.1-enable-valid.patch   |   20 ---
 extra-i686/freetype-2.5.1-enable-sph.patch |   13 --
 extra-i686/freetype-2.5.1-enable-spr.patch |   13 --
 extra-i686/freetype2.install   |8 -
 extra-x86_64/PKGBUILD  |   55 --
 extra-x86_64/env_FT2_SUBPIXEL_HINTING.diff |   18 ---
 extra-x86_64/fix-clipping.patch|   25 
 extra-x86_64/freetype-2.2.1-enable-valid.patch |   20 ---
 extra-x86_64/freetype-2.5.1-enable-sph.patch   |   13 --
 extra-x86_64/freetype-2.5.1-enable-spr.patch   |   13 --
 extra-x86_64/freetype2.install |8 -
 20 files changed, 314 insertions(+), 254 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-10 07:22:09 UTC (rev 245697)
+++ extra-i686/PKGBUILD 2015-09-10 07:22:22 UTC (rev 245698)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=freetype2
-pkgver=2.6
-pkgrel=1
-pkgdesc="TrueType font rendering library"
-arch=(i686 x86_64)
-license=('GPL')
-url="http://freetype.sourceforge.net";
-# adding harfbuzz for improved OpenType features auto-hinting 
-# introduces a cycle dep to harfbuzz depending on freetype wanted by upstream
-depends=('zlib' 'bzip2' 'sh' 'libpng' 'harfbuzz')
-install=freetype2.install
-source=(http://download.savannah.gnu.org/releases/freetype/freetype-${pkgver}.tar.bz2{,.sig}
-freetype-2.2.1-enable-valid.patch
-freetype-2.5.1-enable-spr.patch
-freetype-2.5.1-enable-sph.patch
-env_FT2_SUBPIXEL_HINTING.diff)
-sha1sums=('cd2b144205dd2c61693e2d861069367aa3dde1bc'
-  'SKIP'
-  'f279d922a873d62a8af50bfc873051839d194dca'
-  '13ee8d558593db991ad29fa090b461f914536104'
-  'c31fa3d342ead56f3acfa1f267b474a7686d0014'
-  '78322bee05f013cd76487439ddac0c

[arch-commits] Commit in freetype2/trunk (PKGBUILD fix-clipping.patch)

2015-09-10 Thread Jan de Groot
Date: Thursday, September 10, 2015 @ 09:22:09
  Author: jgc
Revision: 245697

upgpkg: freetype2 2.6-2

Added:
  freetype2/trunk/fix-clipping.patch
Modified:
  freetype2/trunk/PKGBUILD

+
 PKGBUILD   |   11 ---
 fix-clipping.patch |   25 +
 2 files changed, 33 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 07:08:43 UTC (rev 245696)
+++ PKGBUILD2015-09-10 07:22:09 UTC (rev 245697)
@@ -3,7 +3,7 @@
 
 pkgname=freetype2
 pkgver=2.6
-pkgrel=1
+pkgrel=2
 pkgdesc="TrueType font rendering library"
 arch=(i686 x86_64)
 license=('GPL')
@@ -16,13 +16,15 @@
 freetype-2.2.1-enable-valid.patch
 freetype-2.5.1-enable-spr.patch
 freetype-2.5.1-enable-sph.patch
-env_FT2_SUBPIXEL_HINTING.diff)
+env_FT2_SUBPIXEL_HINTING.diff
+fix-clipping.patch)
 sha1sums=('cd2b144205dd2c61693e2d861069367aa3dde1bc'
   'SKIP'
   'f279d922a873d62a8af50bfc873051839d194dca'
   '13ee8d558593db991ad29fa090b461f914536104'
   'c31fa3d342ead56f3acfa1f267b474a7686d0014'
-  '78322bee05f013cd76487439ddac0cae50596db4')
+  '78322bee05f013cd76487439ddac0cae50596db4'
+  '55eaf96bd1b68b27ca4278352171f4ae82292744')
 validpgpkeys=('58E0C111E39F5408C5D3EC76C1A60EACE707FDA5')
 
 prepare() {
@@ -36,6 +38,9 @@
   # Hopefully just a temporary measure until fontconfig picks up
   # the necessary configurables.
   patch -Np1 -i "${srcdir}/env_FT2_SUBPIXEL_HINTING.diff"
+
+  # FS#45584
+  patch -Np1 -i ../fix-clipping.patch
 }
 
 build() {

Added: fix-clipping.patch
===
--- fix-clipping.patch  (rev 0)
+++ fix-clipping.patch  2015-09-10 07:22:09 UTC (rev 245697)
@@ -0,0 +1,25 @@
+From b650dfbb0b0700440cc88da31f97cec45b4140de Mon Sep 17 00:00:00 2001
+From: Matthias Clasen 
+Date: Sun, 26 Jul 2015 19:08:34 +
+Subject: [cff] Don't use `hmtx' table for LSB (#45520).
+
+* src/cff/cffgload.c (cff_slot_load): Use `htmx' table for advance
+width only.  Bug introduced 2015-04-10.
+---
+diff --git a/src/cff/cffgload.c b/src/cff/cffgload.c
+index 43054f8..a075ddc 100644
+--- a/src/cff/cffgload.c
 b/src/cff/cffgload.c
+@@ -3064,9 +3064,7 @@
+ metrics->width  = cbox.xMax - cbox.xMin;
+ metrics->height = cbox.yMax - cbox.yMin;
+ 
+-if ( !face->horizontal.number_Of_HMetrics )
+-  metrics->horiBearingX = cbox.xMin;
+-
++metrics->horiBearingX = cbox.xMin;
+ metrics->horiBearingY = cbox.yMax;
+ 
+ if ( has_vertical_info )
+--
+cgit v0.9.0.2


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 09:12:01
  Author: foutrelis
Revision: 139784

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

Added:
  gambas3/repos/community-staging-i686/
  gambas3/repos/community-staging-i686/PKGBUILD
(from rev 139783, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-i686/gambas3-runtime.install
(from rev 139783, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-i686/gambas3-script.install
(from rev 139783, gambas3/trunk/gambas3-script.install)
  gambas3/repos/community-staging-x86_64/
  gambas3/repos/community-staging-x86_64/PKGBUILD
(from rev 139783, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
(from rev 139783, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-x86_64/gambas3-script.install
(from rev 139783, gambas3/trunk/gambas3-script.install)

--+
 community-staging-i686/PKGBUILD  | 1039 +
 community-staging-i686/gambas3-runtime.install   |   10 
 community-staging-i686/gambas3-script.install|   15 
 community-staging-x86_64/PKGBUILD| 1039 +
 community-staging-x86_64/gambas3-runtime.install |   10 
 community-staging-x86_64/gambas3-script.install  |   15 
 6 files changed, 2128 insertions(+)

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


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

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 09:11:28
  Author: foutrelis
Revision: 139783

ncurses 6.0 rebuild.

Modified:
  gambas3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 06:59:15 UTC (rev 139782)
+++ PKGBUILD2015-09-10 07:11:28 UTC (rev 139783)
@@ -16,7 +16,7 @@
  'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml' 'gambas3-gb-web'
  'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 'gambas3-script')
 pkgver=3.7.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A free development environment based on a Basic interpreter."
 arch=('i686' 'x86_64')
 url="http://gambas.sourceforge.net/";


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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 09:08:43
  Author: fyan
Revision: 245696

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

Added:
  dhcp/repos/testing-i686/
  dhcp/repos/testing-i686/PKGBUILD
(from rev 245695, dhcp/trunk/PKGBUILD)
  dhcp/repos/testing-i686/arch_patch_over_lfs.patch
(from rev 245695, dhcp/trunk/arch_patch_over_lfs.patch)
  dhcp/repos/testing-i686/dhcp-4.3.1-client_script-1.patch
(from rev 245695, dhcp/trunk/dhcp-4.3.1-client_script-1.patch)
  dhcp/repos/testing-i686/dhcp-4.3.1-missing_ipv6-1.patch
(from rev 245695, dhcp/trunk/dhcp-4.3.1-missing_ipv6-1.patch)
  dhcp/repos/testing-i686/dhcp.install
(from rev 245695, dhcp/trunk/dhcp.install)
  dhcp/repos/testing-i686/dhcpd4.service
(from rev 245695, dhcp/trunk/dhcpd4.service)
  dhcp/repos/testing-i686/dhcpd6.service
(from rev 245695, dhcp/trunk/dhcpd6.service)
  dhcp/repos/testing-x86_64/
  dhcp/repos/testing-x86_64/PKGBUILD
(from rev 245695, dhcp/trunk/PKGBUILD)
  dhcp/repos/testing-x86_64/arch_patch_over_lfs.patch
(from rev 245695, dhcp/trunk/arch_patch_over_lfs.patch)
  dhcp/repos/testing-x86_64/dhcp-4.3.1-client_script-1.patch
(from rev 245695, dhcp/trunk/dhcp-4.3.1-client_script-1.patch)
  dhcp/repos/testing-x86_64/dhcp-4.3.1-missing_ipv6-1.patch
(from rev 245695, dhcp/trunk/dhcp-4.3.1-missing_ipv6-1.patch)
  dhcp/repos/testing-x86_64/dhcp.install
(from rev 245695, dhcp/trunk/dhcp.install)
  dhcp/repos/testing-x86_64/dhcpd4.service
(from rev 245695, dhcp/trunk/dhcpd4.service)
  dhcp/repos/testing-x86_64/dhcpd6.service
(from rev 245695, dhcp/trunk/dhcpd6.service)

-+
 testing-i686/PKGBUILD   |   99 +++
 testing-i686/arch_patch_over_lfs.patch  |   27 
 testing-i686/dhcp-4.3.1-client_script-1.patch   |  645 ++
 testing-i686/dhcp-4.3.1-missing_ipv6-1.patch|   48 +
 testing-i686/dhcp.install   |   14 
 testing-i686/dhcpd4.service |   12 
 testing-i686/dhcpd6.service |   12 
 testing-x86_64/PKGBUILD |   99 +++
 testing-x86_64/arch_patch_over_lfs.patch|   27 
 testing-x86_64/dhcp-4.3.1-client_script-1.patch |  645 ++
 testing-x86_64/dhcp-4.3.1-missing_ipv6-1.patch  |   48 +
 testing-x86_64/dhcp.install |   14 
 testing-x86_64/dhcpd4.service   |   12 
 testing-x86_64/dhcpd6.service   |   12 
 14 files changed, 1714 insertions(+)

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


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

2015-09-10 Thread Felix Yan
Date: Thursday, September 10, 2015 @ 09:07:18
  Author: fyan
Revision: 245695

upgpkg: dhcp 4.3.3-1

Modified:
  dhcp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 06:50:06 UTC (rev 245694)
+++ PKGBUILD2015-09-10 07:07:18 UTC (rev 245695)
@@ -1,13 +1,14 @@
 # $Id$
-# Maintainer: Daniel Isenmann 
+# Maintainer: Felix Yan 
+# Contributor: Daniel Isenmann 
 
 pkgbase=dhcp
 pkgname=('dhcp' 'dhclient')
 
 # separate patch levels with a period to maintain proper versioning.
-pkgver=4.3.2
-_pkgver=4.3.2
-pkgrel=2
+pkgver=4.3.3
+_pkgver=4.3.3
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('custom:isc-dhcp')
 url="https://www.isc.org/software/dhcp";
@@ -18,7 +19,7 @@
 dhcp-4.3.1-client_script-1.patch
 dhcp-4.3.1-missing_ipv6-1.patch
 arch_patch_over_lfs.patch)
-md5sums=('5a284875dd2c12ddd388416d69156a67'
+md5sums=('c5577b09c9017cdd319a11ff6364268e'
  '33cceed7056fdceda845eef26934f30f'
  '4db26ed8335b908ef8cdee55172a84ed'
  'c02bddb6c6c33c5885e3dd072ee2ee40'
@@ -49,7 +50,7 @@
   --with-cli-lease-file=/var/lib/dhclient/dhclient.leases \
   --with-cli6-lease-file=/var/lib/dhclient/dhclient6.leases
 
-  make
+  make -j1
 }
 
 package_dhcp(){


<    1   2   3   >