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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:07:38
  Author: fyan
Revision: 166630

upgpkg: haskell-persistent-sqlite 2.2.1-3

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-persistent-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 06:44:16 UTC (rev 166629)
+++ PKGBUILD2016-03-14 07:07:38 UTC (rev 166630)
@@ -5,7 +5,7 @@
 _hkgname=persistent-sqlite
 pkgname=haskell-persistent-sqlite
 pkgver=2.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Backend for the persistent library using sqlite3"
 url="http://www.yesodweb.com/book/persistent";
 license=("MIT")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:14:32
  Author: fyan
Revision: 166631

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

Added:
  haskell-persistent-sqlite/repos/community-staging-i686/
  haskell-persistent-sqlite/repos/community-staging-i686/PKGBUILD
(from rev 166630, haskell-persistent-sqlite/trunk/PKGBUILD)
  
haskell-persistent-sqlite/repos/community-staging-i686/haskell-persistent-sqlite.install
(from rev 166630, 
haskell-persistent-sqlite/trunk/haskell-persistent-sqlite.install)
  haskell-persistent-sqlite/repos/community-staging-x86_64/
  haskell-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD
(from rev 166630, haskell-persistent-sqlite/trunk/PKGBUILD)
  
haskell-persistent-sqlite/repos/community-staging-x86_64/haskell-persistent-sqlite.install
(from rev 166630, 
haskell-persistent-sqlite/trunk/haskell-persistent-sqlite.install)

+
 community-staging-i686/PKGBUILD|   45 +++
 community-staging-i686/haskell-persistent-sqlite.install   |   18 
 community-staging-x86_64/PKGBUILD  |   45 +++
 community-staging-x86_64/haskell-persistent-sqlite.install |   18 
 4 files changed, 126 insertions(+)

Copied: haskell-persistent-sqlite/repos/community-staging-i686/PKGBUILD (from 
rev 166630, haskell-persistent-sqlite/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 07:14:32 UTC (rev 166631)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-sqlite
+pkgname=haskell-persistent-sqlite
+pkgver=2.2.1
+pkgrel=3
+pkgdesc="Backend for the persistent library using sqlite3"
+url="http://www.yesodweb.com/book/persistent";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-conduit" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-old-locale" "haskell-persistent"
+ "haskell-resourcet" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('bac71080bb25ad20b9116e42df463bbe230bacb2d963a5b101a501cff7fffc5e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-build-sanity-exe -f-systemlib
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-persistent-sqlite/repos/community-staging-i686/haskell-persistent-sqlite.install
 (from rev 166630, 
haskell-persistent-sqlite/trunk/haskell-persistent-sqlite.install)
===
--- community-staging-i686/haskell-persistent-sqlite.install
(rev 0)
+++ community-staging-i686/haskell-persistent-sqlite.install2016-03-14 
07:14:32 UTC (rev 166631)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent-sqlite
+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-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD (from 
rev 166630, haskell-persistent-sqlite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 07:14:32 UTC (rev 166631)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-sqlite
+pkgname=haskell-persistent-sqlite
+p

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:30:44
  Author: fyan
Revision: 166632

upgpkg: pandoc-citeproc 0.9-37

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 07:14:32 UTC (rev 166631)
+++ PKGBUILD2016-03-14 07:30:44 UTC (rev 166632)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.9
-pkgrel=36
+pkgrel=37
 pkgdesc="Supports using pandoc with citeproc"
 url="http://hackage.haskell.org/package/${pkgbase}";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:31:07
  Author: fyan
Revision: 166633

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

Added:
  pandoc-citeproc/repos/community-staging-i686/
  pandoc-citeproc/repos/community-staging-i686/PKGBUILD
(from rev 166632, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-i686/haskell-pandoc-citeproc.install
(from rev 166632, pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 166632, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/haskell-pandoc-citeproc.install
(from rev 166632, pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)

--+
 community-staging-i686/PKGBUILD  |   64 +
 community-staging-i686/haskell-pandoc-citeproc.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   64 +
 community-staging-x86_64/haskell-pandoc-citeproc.install |   18 +++
 4 files changed, 164 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 166632, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 07:31:07 UTC (rev 166633)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.9
+pkgrel=37
+pkgdesc="Supports using pandoc with citeproc"
+url="http://hackage.haskell.org/package/${pkgbase}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz";)
+sha256sums=('ae880aa27b5fcaf93886844bd9473c764329dc96211482bf014f350335887fbd')
+
+prepare() {
+sed -e 's/aeson >= 0.7 && < 0.11/aeson >= 0.7 \&\& < 0.12/' \
+-i ${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-citeproc() {
+depends=('pandoc' 'icu')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_haskell-pandoc-citeproc() {
+pkgdesc="Supports using pandoc with citeproc (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-citeproc')
+install="haskell-pandoc-citeproc.install"
+
+cd "${srcdir}/${pkgbase}-${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/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
pandoc-citeproc/repos/community-staging-i686/haskell-pandoc-citeproc.install 
(from rev 166632, pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
===
--- community-staging-i686/haskell-pandoc-citeproc.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-citeproc.install  2016-03-14 
07:31:07 UTC (rev 166633)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-citeproc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_in

[arch-commits] Commit in haskell-vector-binary-instances/trunk (PKGBUILD)

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:39:43
  Author: fyan
Revision: 166634

upgpkg: haskell-vector-binary-instances 0.2.3.1-1

Modified:
  haskell-vector-binary-instances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 07:31:07 UTC (rev 166633)
+++ PKGBUILD2016-03-14 07:39:43 UTC (rev 166634)
@@ -4,7 +4,7 @@
 
 _hkgname=vector-binary-instances
 pkgname=haskell-vector-binary-instances
-pkgver=0.2.3.0
+pkgver=0.2.3.1
 pkgrel=1
 pkgdesc="Instances of Data.Binary and Data.Serialize for vector"
 url="https://github.com/bos/vector-binary-instances";
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 install="${pkgname}.install"
-sha256sums=('1f9c6821dbc1add7320eef7712d5a1c4e2b41ff5e6b369864f6b3aad9a3974b7')
+sha256sums=('49cde38d27cbc84a057b77b624336b8785f68c2f771dfec1c414f18162d6ba66')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in haskell-vector-binary-instances/repos (6 files)

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:40:35
  Author: fyan
Revision: 166635

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

Added:
  haskell-vector-binary-instances/repos/community-staging-i686/
  haskell-vector-binary-instances/repos/community-staging-i686/PKGBUILD
(from rev 166634, haskell-vector-binary-instances/trunk/PKGBUILD)
  
haskell-vector-binary-instances/repos/community-staging-i686/haskell-vector-binary-instances.install
(from rev 166634, 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install)
  haskell-vector-binary-instances/repos/community-staging-x86_64/
  haskell-vector-binary-instances/repos/community-staging-x86_64/PKGBUILD
(from rev 166634, haskell-vector-binary-instances/trunk/PKGBUILD)
  
haskell-vector-binary-instances/repos/community-staging-x86_64/haskell-vector-binary-instances.install
(from rev 166634, 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install)

--+
 community-staging-i686/PKGBUILD  |   42 
++
 community-staging-i686/haskell-vector-binary-instances.install   |   18 
 community-staging-x86_64/PKGBUILD|   42 
++
 community-staging-x86_64/haskell-vector-binary-instances.install |   18 
 4 files changed, 120 insertions(+)

Copied: haskell-vector-binary-instances/repos/community-staging-i686/PKGBUILD 
(from rev 166634, haskell-vector-binary-instances/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 07:40:35 UTC (rev 166635)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-binary-instances
+pkgname=haskell-vector-binary-instances
+pkgver=0.2.3.1
+pkgrel=1
+pkgdesc="Instances of Data.Binary and Data.Serialize for vector"
+url="https://github.com/bos/vector-binary-instances";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('49cde38d27cbc84a057b77b624336b8785f68c2f771dfec1c414f18162d6ba66')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-vector-binary-instances/repos/community-staging-i686/haskell-vector-binary-instances.install
 (from rev 166634, 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install)
===
--- community-staging-i686/haskell-vector-binary-instances.install  
(rev 0)
+++ community-staging-i686/haskell-vector-binary-instances.install  
2016-03-14 07:40:35 UTC (rev 166635)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vector-binary-instances
+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-vector-binary-instances/repos/community-staging-x86_64/PKGBUILD 
(from rev 166634, haskell-vector-binary-instances/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 07:40:35 UTC (rev 166635)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-binary-instances
+pkgname=haskell-vect

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:40:40
  Author: fyan
Revision: 166636

upgpkg: haskell-dav 1.2-26

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 07:40:35 UTC (rev 166635)
+++ PKGBUILD2016-03-14 07:40:40 UTC (rev 166636)
@@ -5,7 +5,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.2
-pkgrel=25
+pkgrel=26
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV";
 license=("GPL3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:41:02
  Author: fyan
Revision: 166637

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

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

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

Copied: haskell-dav/repos/community-staging-i686/PKGBUILD (from rev 166636, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 07:41:02 UTC (rev 166637)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.2
+pkgrel=26
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV";
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lens"
+ "haskell-mtl" "haskell-network" "haskell-network-uri" 
"haskell-optparse-applicative"
+ "haskell-transformers-base" "haskell-transformers-compat" 
"haskell-utf8-string"
+ "haskell-xml-conduit" "haskell-xml-hamlet")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('1a07c8ef17cd4207c6f889e7eb5c45d9f025374f2cdacc1e34e6d71fe103b746')
+
+prepare() {
+sed -i '/mtl-compat/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-dav/repos/community-staging-i686/haskell-dav.install (from rev 
166636, haskell-dav/trunk/haskell-dav.install)
===
--- community-staging-i686/haskell-dav.install  (rev 0)
+++ community-staging-i686/haskell-dav.install  2016-03-14 07:41:02 UTC (rev 
166637)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-dav
+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-dav/repos/community-staging-x86_64/PKGBUILD (from rev 166636, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 07:41:02 UTC (rev 166637)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.2
+pkgrel=26
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV";
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-case-insensitive" "haskell-d

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:41:46
  Author: fyan
Revision: 166638

upgpkg: haskell-cheapskate 0.1.0.4-14

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-cheapskate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 07:41:02 UTC (rev 166637)
+++ PKGBUILD2016-03-14 07:41:46 UTC (rev 166638)
@@ -5,7 +5,7 @@
 _hkgname=cheapskate
 pkgname=haskell-cheapskate
 pkgver=0.1.0.4
-pkgrel=13
+pkgrel=14
 pkgdesc="Experimental markdown processor."
 url="http://github.com/jgm/cheapskate";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:43:33
  Author: fyan
Revision: 166639

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

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

-+
 community-staging-i686/PKGBUILD |   45 ++
 community-staging-i686/haskell-cheapskate.install   |   18 +++
 community-staging-x86_64/PKGBUILD   |   45 ++
 community-staging-x86_64/haskell-cheapskate.install |   18 +++
 4 files changed, 126 insertions(+)

Copied: haskell-cheapskate/repos/community-staging-i686/PKGBUILD (from rev 
166638, haskell-cheapskate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 07:43:33 UTC (rev 166639)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cheapskate
+pkgname=haskell-cheapskate
+pkgver=0.1.0.4
+pkgrel=14
+pkgdesc="Experimental markdown processor."
+url="http://github.com/jgm/cheapskate";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-blaze-html" 
"haskell-data-default"
+ "haskell-http-types" "haskell-mtl" "haskell-syb" "haskell-text"
+ "haskell-uniplate" "haskell-wai" "haskell-wai-extra" 
"haskell-xss-sanitize")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('023243726dd26a381ae43c6cace5381533b7605f069f04888c99b58d290c3d37')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-dingus
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-cheapskate/repos/community-staging-i686/haskell-cheapskate.install 
(from rev 166638, haskell-cheapskate/trunk/haskell-cheapskate.install)
===
--- community-staging-i686/haskell-cheapskate.install   
(rev 0)
+++ community-staging-i686/haskell-cheapskate.install   2016-03-14 07:43:33 UTC 
(rev 166639)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cheapskate
+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-cheapskate/repos/community-staging-x86_64/PKGBUILD (from rev 
166638, haskell-cheapskate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 07:43:33 UTC (rev 166639)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cheapskate
+pkgname=haskell-cheapskate
+pkgver=0.1.0.4
+pkgrel=14
+pkgdesc="Experimental markdown processor."
+url="http://github.com/jgm/cheapskate";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-blaze-htm

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:45:58
  Author: fyan
Revision: 166640

upgpkg: haskell-hpack 0.11.0-1

Modified:
  haskell-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 07:43:33 UTC (rev 166639)
+++ PKGBUILD2016-03-14 07:45:58 UTC (rev 166640)
@@ -5,8 +5,8 @@
 
 pkgname=haskell-hpack
 _hkgname=hpack
-pkgver=0.10.0
-pkgrel=4
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="An alternative format for Haskell packages"
 url="https://github.com/sol/hpack#readme";
 license=("MIT")
@@ -17,7 +17,7 @@
 
source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz";)
 options=('staticlibs')
 install=$pkgname.install
-md5sums=('cdc1dd2d91ecab764ac4d306d7015658')
+md5sums=('6e8a5fd3937543e4152a71125596df23')
 
 build() {
   cd "$srcdir/$_hkgname-$pkgver"


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:46:22
  Author: fyan
Revision: 166641

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

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

+
 community-staging-i686/PKGBUILD|   43 +++
 community-staging-i686/haskell-hpack.install   |   23 
 community-staging-x86_64/PKGBUILD  |   43 +++
 community-staging-x86_64/haskell-hpack.install |   23 
 4 files changed, 132 insertions(+)

Copied: haskell-hpack/repos/community-staging-i686/PKGBUILD (from rev 166640, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 07:46:22 UTC (rev 166641)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="An alternative format for Haskell packages"
+url="https://github.com/sol/hpack#readme";
+license=("MIT")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-aeson' 'haskell-base-compat' 'haskell-glob' 
'haskell-text'
+ 'haskell-unordered-containers' 'haskell-yaml')
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz";)
+options=('staticlibs')
+install=$pkgname.install
+md5sums=('6e8a5fd3937543e4152a71125596df23')
+
+build() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  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 -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/$_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-hpack/repos/community-staging-i686/haskell-hpack.install (from 
rev 166640, haskell-hpack/trunk/haskell-hpack.install)
===
--- community-staging-i686/haskell-hpack.install
(rev 0)
+++ community-staging-i686/haskell-hpack.install2016-03-14 07:46:22 UTC 
(rev 166641)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-hpack
+
+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-hpack/repos/community-staging-x86_64/PKGBUILD (from rev 166640, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 07:46:22 UTC (rev 166641)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="An alternative format for Haskell packages"
+url="https://github.com/sol/hpack#readme";
+license=("MIT")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-aeson' 'haskell-base-compat' 'haskell-glob' 
'haskell-text'
+ 'haskell-unordered-containers' 'haskell-yaml')
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz";)
+options=('staticlibs')
+install=$pkgname.install
+md5sums=('6e8a5fd3937543e4152a71125596df23')
+
+build() {
+  cd "$srcd

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:54:42
  Author: fyan
Revision: 166642

upgpkg: haskell-descriptive 0.9.4-10

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-descriptive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 07:46:22 UTC (rev 166641)
+++ PKGBUILD2016-03-14 07:54:42 UTC (rev 166642)
@@ -5,7 +5,7 @@
 _hkgname=descriptive
 pkgname=haskell-descriptive
 pkgver=0.9.4
-pkgrel=9
+pkgrel=10
 pkgdesc="Self-describing consumers/parsers; forms, cmd-line args, JSON, etc."
 url="https://github.com/chrisdone/descriptive";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 08:55:04
  Author: fyan
Revision: 166643

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

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

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-descriptive.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-descriptive.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-descriptive/repos/community-staging-i686/PKGBUILD (from rev 
166642, haskell-descriptive/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 07:55:04 UTC (rev 166643)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=descriptive
+pkgname=haskell-descriptive
+pkgver=0.9.4
+pkgrel=10
+pkgdesc="Self-describing consumers/parsers; forms, cmd-line args, JSON, etc."
+url="https://github.com/chrisdone/descriptive";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-bifunctors" "haskell-mtl" 
"haskell-scientific"
+ "haskell-text" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('795ec65756bf87ec6ea4c92d85a25d0eb0d8cfa1df40685ddcf74b83099bba2f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-descriptive/repos/community-staging-i686/haskell-descriptive.install 
(from rev 166642, haskell-descriptive/trunk/haskell-descriptive.install)
===
--- community-staging-i686/haskell-descriptive.install  
(rev 0)
+++ community-staging-i686/haskell-descriptive.install  2016-03-14 07:55:04 UTC 
(rev 166643)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-descriptive
+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-descriptive/repos/community-staging-x86_64/PKGBUILD (from rev 
166642, haskell-descriptive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 07:55:04 UTC (rev 166643)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=descriptive
+pkgname=haskell-descriptive
+pkgver=0.9.4
+pkgrel=10
+pkgdesc="Self-describing consumers/parsers; forms, cmd-line args, JSON, etc."
+url="https://github.com/chrisdone/descriptive";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-bifunctors" "haskell-mtl" 
"h

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:47:22
  Author: fyan
Revision: 166645

upgpkg: stack 1.0.4.2-3

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 08:37:17 UTC (rev 166644)
+++ PKGBUILD2016-03-14 08:47:22 UTC (rev 166645)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.0.4.2
-pkgrel=2
+pkgrel=3
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("custom:BSD3")
@@ -34,7 +34,7 @@
 sha256sums=('3becd40f8886477a943e2feaed6b34d0ea283e770dc35379944e41cb770838d2')
 
 prepare() {
-sed -e 's/hpack >=0.9.0 && <0.10/hpack >=0.9.0 \&\& <0.11/' \
+sed -e 's/hpack >=0.9.0 && <0.10/hpack >=0.9.0 \&\& <0.12/' \
 -e 's/path-io >=0.3.1 && <1.1/path-io >=1.0.0 \&\& <2/' \
 -i ${pkgbase}-${pkgver}/${pkgbase}.cabal
 }


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:48:02
  Author: fyan
Revision: 166646

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

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

+
 community-staging-i686/PKGBUILD|   84 +++
 community-staging-i686/haskell-stack.install   |   18 
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   84 +++
 community-staging-x86_64/haskell-stack.install |   18 
 community-staging-x86_64/stack.install |4 +
 6 files changed, 212 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 166645, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 08:48:02 UTC (rev 166646)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.0.4.2
+pkgrel=3
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-async"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-base64-bytestring"
+ "haskell-binary-tagged" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-cryptohash"
+ "haskell-cryptohash-conduit" "haskell-edit-distance" 
"haskell-either"
+ "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-gitrev" "haskell-hashable" "haskell-hastache" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-hpack" "haskell-lifted-base" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" 
"haskell-optparse-applicative"
+ "haskell-optparse-simple" "haskell-path" "haskell-path-io"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-project-template" "haskell-resourcet" "haskell-retry" 
"haskell-safe"
+ "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-streaming-commons"
+ "haskell-tar" "haskell-temporary" "haskell-text" 
"haskell-text-binary"
+ "haskell-transformers-base" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-uuid" "haskell-vector" "haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz";)
+sha256sums=('3becd40f8886477a943e2feaed6b34d0ea283e770dc35379944e41cb770838d2')
+
+prepare() {
+sed -e 's/hpack >=0.9.0 && <0.10/hpack >=0.9.0 \&\& <0.12/' \
+-e 's/path-io >=0.3.1 && <1.1/path-io >=1.0.0 \&\& <2/' \
+-i ${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 stack_completion_script 

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:49:25
  Author: fyan
Revision: 166647

upgpkg: haskell-statistics 0.13.2.3-8

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-statistics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 08:48:02 UTC (rev 166646)
+++ PKGBUILD2016-03-14 08:49:25 UTC (rev 166647)
@@ -5,7 +5,7 @@
 _hkgname=statistics
 pkgname=haskell-statistics
 pkgver=0.13.2.3
-pkgrel=7
+pkgrel=8
 pkgdesc="A library of statistical types, data, and functions"
 url="https://github.com/bos/statistics";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:53:28
  Author: fyan
Revision: 166648

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

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

-+
 community-staging-i686/PKGBUILD |   44 ++
 community-staging-i686/haskell-statistics.install   |   18 +++
 community-staging-x86_64/PKGBUILD   |   44 ++
 community-staging-x86_64/haskell-statistics.install |   18 +++
 4 files changed, 124 insertions(+)

Copied: haskell-statistics/repos/community-staging-i686/PKGBUILD (from rev 
166647, haskell-statistics/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 08:53:28 UTC (rev 166648)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=statistics
+pkgname=haskell-statistics
+pkgver=0.13.2.3
+pkgrel=8
+pkgdesc="A library of statistical types, data, and functions"
+url="https://github.com/bos/statistics";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-erf" "haskell-math-functions"
+ "haskell-monad-par" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector"
+ "haskell-vector-algorithms" "haskell-vector-binary-instances")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=("d624b1494959d3c64cfd068c9566778a799d3e3f5d6b22ec3e353ba6d6876fbd")
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-statistics/repos/community-staging-i686/haskell-statistics.install 
(from rev 166647, haskell-statistics/trunk/haskell-statistics.install)
===
--- community-staging-i686/haskell-statistics.install   
(rev 0)
+++ community-staging-i686/haskell-statistics.install   2016-03-14 08:53:28 UTC 
(rev 166648)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-statistics
+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-statistics/repos/community-staging-x86_64/PKGBUILD (from rev 
166647, haskell-statistics/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 08:53:28 UTC (rev 166648)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=statistics
+pkgname=haskell-statistics
+pkgver=0.13.2.3
+pkgrel=8
+pkgdesc="A library of statistical types, data, and functions"
+url="https://github.com/bos/statistics";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:53:55
  Author: fyan
Revision: 166649

upgpkg: hoogle 4.2.43-19

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 08:53:28 UTC (rev 166648)
+++ PKGBUILD2016-03-14 08:53:55 UTC (rev 166649)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=4.2.43
-pkgrel=18
+pkgrel=19
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:55:42
  Author: fyan
Revision: 166650

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

Added:
  hoogle/repos/community-staging-i686/
  hoogle/repos/community-staging-i686/PKGBUILD
(from rev 166649, hoogle/trunk/PKGBUILD)
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 166649, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-i686/PKGBUILD (from rev 166649, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 08:55:42 UTC (rev 166650)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=4.2.43
+pkgrel=19
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-quickcheck" "haskell-aeson" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-cmdargs" "haskell-conduit"
+ "haskell-src-exts" "haskell-http-types" "haskell-old-locale" 
"haskell-parsec"
+ "haskell-random" "haskell-resourcet" "haskell-safe" 
"haskell-shake"
+ "haskell-tagsoup" "haskell-text" "haskell-uniplate" 
"haskell-vector"
+ "haskell-vector-algorithms" "haskell-wai" "haskell-warp")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('eb30df565d363cd5d98821c51b0daf93493dec3bfe95c016922c95a20efa7c17')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "docs/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 166649, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 08:55:42 UTC (rev 166650)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=4.2.43
+pkgrel=19
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-quickcheck" "haskell-aeson" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-cmdargs" "haskell-conduit"
+ "haskell-src-exts" "haskell-http-types" "haskell-old-locale" 
"haskell-parsec"
+ "haskell-random" "haskell-resourcet" "haskell-safe" 
"haskell-shake"
+ "haskell-tagsoup" "haskell-text" "haskell-uniplate" 
"haskell-vector"
+ "haskell-vector-algorithms" "haskell-wai" "haskell-warp")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('eb30df565d363cd5d98821c51b0daf93493dec3bfe95c016922c95a20efa7c17')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "docs/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:56:41
  Author: fyan
Revision: 166651

upgpkg: haskell-hakyll 4.7.5.1-37

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 08:55:42 UTC (rev 166650)
+++ PKGBUILD2016-03-14 08:56:41 UTC (rev 166651)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.7.5.1
-pkgrel=36
+pkgrel=37
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 09:57:01
  Author: fyan
Revision: 166652

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

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

-+
 community-staging-i686/PKGBUILD |   48 ++
 community-staging-i686/haskell-hakyll.install   |   18 
 community-staging-x86_64/PKGBUILD   |   48 ++
 community-staging-x86_64/haskell-hakyll.install |   18 
 4 files changed, 132 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 166651, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 08:57:01 UTC (rev 166652)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.7.5.1
+pkgrel=37
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cmdargs"
+ "haskell-cryptohash" "haskell-data-default" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lrucache" "haskell-mtl" 
"haskell-network"
+ "haskell-network-uri" "haskell-pandoc" "haskell-pandoc-citeproc"
+ "haskell-parsec" "haskell-random" "haskell-regex-base" 
"haskell-regex-tdfa"
+ "haskell-tagsoup" "haskell-text" "haskell-time-locale-compat")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('39efc15d8d9bce1f151587f1556be8daac58c1d3fe6596458f0e9122a659b310')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -f-watchserver -f-previewserver
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-hakyll/repos/community-staging-i686/haskell-hakyll.install 
(from rev 166651, haskell-hakyll/trunk/haskell-hakyll.install)
===
--- community-staging-i686/haskell-hakyll.install   
(rev 0)
+++ community-staging-i686/haskell-hakyll.install   2016-03-14 08:57:01 UTC 
(rev 166652)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hakyll
+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-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
166651, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 08:57:01 UTC (rev 166652)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.7.5.1
+pkgrel=37
+pkgdesc="A static website compiler librar

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

2016-03-14 Thread Jan Steffens
Date: Monday, March 14, 2016 @ 10:02:22
  Author: heftig
Revision: 261429

Use gnutls again

Modified:
  telepathy-gabble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 04:59:10 UTC (rev 261428)
+++ PKGBUILD2016-03-14 09:02:22 UTC (rev 261429)
@@ -4,7 +4,7 @@
 # Contributor: Rodrigo L. M. Flores 
 pkgname=telepathy-gabble
 pkgver=0.18.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A Jabber/XMPP connection manager for Telepathy"
 arch=('i686' 'x86_64')
 url="http://telepathy.freedesktop.org";
@@ -20,7 +20,7 @@
 build() {
   cd $pkgname-$pkgver
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-   --libexecdir=/usr/lib/telepathy --with-tls=openssl
+   --libexecdir=/usr/lib/telepathy
   make
 }
 


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

2016-03-14 Thread Jan Steffens
Date: Monday, March 14, 2016 @ 10:04:01
  Author: heftig
Revision: 261430

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

Added:
  telepathy-gabble/repos/testing-i686/
  telepathy-gabble/repos/testing-i686/PKGBUILD
(from rev 261429, telepathy-gabble/trunk/PKGBUILD)
  telepathy-gabble/repos/testing-i686/telepathy-gabble.install
(from rev 261429, telepathy-gabble/trunk/telepathy-gabble.install)
  telepathy-gabble/repos/testing-x86_64/
  telepathy-gabble/repos/testing-x86_64/PKGBUILD
(from rev 261429, telepathy-gabble/trunk/PKGBUILD)
  telepathy-gabble/repos/testing-x86_64/telepathy-gabble.install
(from rev 261429, telepathy-gabble/trunk/telepathy-gabble.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/telepathy-gabble.install   |   13 
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/telepathy-gabble.install |   13 
 4 files changed, 88 insertions(+)

Copied: telepathy-gabble/repos/testing-i686/PKGBUILD (from rev 261429, 
telepathy-gabble/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-14 09:04:01 UTC (rev 261430)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Daniel Balieiro 
+# Contributor: Rodrigo L. M. Flores 
+pkgname=telepathy-gabble
+pkgver=0.18.3
+pkgrel=3
+pkgdesc="A Jabber/XMPP connection manager for Telepathy"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org";
+groups=('telepathy')
+license=('LGPL2.1')
+depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite')
+makedepends=('libxslt' 'python2')
+options=('!emptydirs')
+source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+install=telepathy-gabble.install
+md5sums=('40f2fbabc4e6e147258c83ed697f2fcf')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/telepathy
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  sed -i "s|#!/usr/bin/env python|#!/usr/bin/env python2|" 
"$pkgdir/usr/bin/telepathy-gabble-xmpp-console"
+}

Copied: telepathy-gabble/repos/testing-i686/telepathy-gabble.install (from rev 
261429, telepathy-gabble/trunk/telepathy-gabble.install)
===
--- testing-i686/telepathy-gabble.install   (rev 0)
+++ testing-i686/telepathy-gabble.install   2016-03-14 09:04:01 UTC (rev 
261430)
@@ -0,0 +1,13 @@
+post_install() {
+  killall -HUP dbus-daemon 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: telepathy-gabble/repos/testing-x86_64/PKGBUILD (from rev 261429, 
telepathy-gabble/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-14 09:04:01 UTC (rev 261430)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Daniel Balieiro 
+# Contributor: Rodrigo L. M. Flores 
+pkgname=telepathy-gabble
+pkgver=0.18.3
+pkgrel=3
+pkgdesc="A Jabber/XMPP connection manager for Telepathy"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org";
+groups=('telepathy')
+license=('LGPL2.1')
+depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite')
+makedepends=('libxslt' 'python2')
+options=('!emptydirs')
+source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+install=telepathy-gabble.install
+md5sums=('40f2fbabc4e6e147258c83ed697f2fcf')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/telepathy
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  sed -i "s|#!/usr/bin/env python|#!/usr/bin/env python2|" 
"$pkgdir/usr/bin/telepathy-gabble-xmpp-console"
+}

Copied: telepathy-gabble/repos/testing-x86_64/telepathy-gabble.install (from 
rev 261429, telepathy-gabble/trunk/telepathy-gabble.install)
===
--- testing-x86_64/telepathy-gabble.install (rev 0)
+++ testing-x86_64/telepathy-gabble.install 2016-03-14 09:04:01 UTC (rev 
261430)
@@ -0,0 +1,13 @@
+post_install() {
+  killall -HUP dbus-daemon 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 10:06:12
  Author: fyan
Revision: 166653

upgpkg: pandoc-crossref 0.2.0.0-4

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 08:57:01 UTC (rev 166652)
+++ PKGBUILD2016-03-14 09:06:12 UTC (rev 166653)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.2.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Pandoc filter for cross-references"
 url="http://hackage.haskell.org/package/${pkgbase}";
 license=("GPL2")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 10:06:53
  Author: fyan
Revision: 166654

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

Added:
  pandoc-crossref/repos/community-staging-i686/
  pandoc-crossref/repos/community-staging-i686/PKGBUILD
(from rev 166653, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-i686/haskell-pandoc-crossref.install
(from rev 166653, pandoc-crossref/trunk/haskell-pandoc-crossref.install)
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 166653, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-x86_64/haskell-pandoc-crossref.install
(from rev 166653, pandoc-crossref/trunk/haskell-pandoc-crossref.install)

--+
 community-staging-i686/PKGBUILD  |   54 +
 community-staging-i686/haskell-pandoc-crossref.install   |   18 
 community-staging-x86_64/PKGBUILD|   54 +
 community-staging-x86_64/haskell-pandoc-crossref.install |   18 
 4 files changed, 144 insertions(+)

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 166653, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 09:06:53 UTC (rev 166654)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.0.0
+pkgrel=4
+pkgdesc="Pandoc filter for cross-references"
+url="http://hackage.haskell.org/package/${pkgbase}";
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz";)
+sha256sums=('e7039ced02eaaec80f0814d1d242dd06002d76dc3bed784fd18e50ddec77e3bd')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-crossref() {
+depends=('pandoc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}
+
+package_haskell-pandoc-crossref() {
+pkgdesc="Pandoc filter for cross-references (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-crossref')
+install="haskell-pandoc-crossref.install"
+
+cd "${srcdir}/${pkgbase}-${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/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: 
pandoc-crossref/repos/community-staging-i686/haskell-pandoc-crossref.install 
(from rev 166653, pandoc-crossref/trunk/haskell-pandoc-crossref.install)
===
--- community-staging-i686/haskell-pandoc-crossref.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-crossref.install  2016-03-14 
09:06:53 UTC (rev 166654)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-crossref
+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: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
166653, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 09:06:

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

2016-03-14 Thread Gaetan Bisson
Date: Monday, March 14, 2016 @ 10:22:30
  Author: bisson
Revision: 166655

db-move: moved picard from [community-testing] to [community] (i686, x86_64)

Added:
  picard/repos/community-i686/PKGBUILD
(from rev 166654, picard/repos/community-testing-i686/PKGBUILD)
  picard/repos/community-i686/install
(from rev 166654, picard/repos/community-testing-i686/install)
  picard/repos/community-x86_64/PKGBUILD
(from rev 166654, picard/repos/community-testing-x86_64/PKGBUILD)
  picard/repos/community-x86_64/install
(from rev 166654, picard/repos/community-testing-x86_64/install)
Deleted:
  picard/repos/community-i686/PKGBUILD
  picard/repos/community-i686/install
  picard/repos/community-testing-i686/
  picard/repos/community-testing-x86_64/
  picard/repos/community-x86_64/PKGBUILD
  picard/repos/community-x86_64/install

---+
 /PKGBUILD |   62 
 /install  |   24 +
 community-i686/PKGBUILD   |   29 
 community-i686/install|   12 
 community-x86_64/PKGBUILD |   29 
 community-x86_64/install  |   12 
 6 files changed, 86 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 09:06:53 UTC (rev 166654)
+++ community-i686/PKGBUILD 2016-03-14 09:22:30 UTC (rev 166655)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Mateusz Herych 
-# Contributor: sysrq
-
-pkgname=picard
-pkgver=1.3.2
-pkgrel=2
-pkgdesc='Official MusicBrainz tagger'
-url='http://picard.musicbrainz.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('python2-pyqt4' 'mutagen')
-optdepends=('chromaprint: fingerprinting')
-source=("http://ftp.musicbrainz.org/pub/musicbrainz/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('084fdb184cb1d970dce953dd6c684932d464bf54')
-
-install=install
-
-build() {
-   cd "${srcdir}/picard-release-${pkgver}"
-   python2 setup.py config
-}
-
-package() {
-   cd "${srcdir}/picard-release-${pkgver}"
-   python2 setup.py install --root="${pkgdir}"
-   cp -r contrib/plugins/* 
"${pkgdir}/usr/lib/python2.7/site-packages/picard/plugins/"
-}

Copied: picard/repos/community-i686/PKGBUILD (from rev 166654, 
picard/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 09:22:30 UTC (rev 166655)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Mateusz Herych 
+# Contributor: sysrq
+
+pkgname=picard
+pkgver=1.3.2
+pkgrel=3
+pkgdesc='Official MusicBrainz tagger'
+url='http://picard.musicbrainz.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('python2-pyqt4' 'mutagen')
+optdepends=('chromaprint: fingerprinting'
+'python2-discid: cd lookup')
+makedepends=('python2-discid')
+source=("http://ftp.musicbrainz.org/pub/musicbrainz/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('084fdb184cb1d970dce953dd6c684932d464bf54')
+
+install=install
+
+build() {
+   cd "${srcdir}/picard-release-${pkgver}"
+   python2 setup.py config
+}
+
+package() {
+   cd "${srcdir}/picard-release-${pkgver}"
+   python2 setup.py install --root="${pkgdir}"
+   cp -r contrib/plugins/* 
"${pkgdir}/usr/lib/python2.7/site-packages/picard/plugins/"
+}

Deleted: community-i686/install
===
--- community-i686/install  2016-03-14 09:06:53 UTC (rev 166654)
+++ community-i686/install  2016-03-14 09:22:30 UTC (rev 166655)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &>/dev/null
-   update-desktop-database -q &>/dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: picard/repos/community-i686/install (from rev 166654, 
picard/repos/community-testing-i686/install)
===
--- community-i686/install  (rev 0)
+++ community-i686/install  2016-03-14 09:22:30 UTC (rev 166655)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &>/dev/null
+   update-desktop-database -q &>/dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-14 09:06:53 UTC (rev 166654)
+++ community-x86_64/PKGBUILD   2016-03-14 09:22:30 UTC (rev 166655)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Mateusz Herych 
-# Contributor: sysrq
-
-pkgname=picard
-pkgver=1.3.2
-pkgrel=2
-pkgdesc='Official MusicBrainz tagger'
-url='http://

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

2016-03-14 Thread Gaetan Bisson
Date: Monday, March 14, 2016 @ 10:22:32
  Author: bisson
Revision: 166656

db-move: moved python-discid from [community-testing] to [community] (any)

Added:
  python-discid/repos/community-any/
  python-discid/repos/community-any/PKGBUILD
(from rev 166655, python-discid/repos/community-testing-any/PKGBUILD)
Deleted:
  python-discid/repos/community-testing-any/

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

Copied: python-discid/repos/community-any/PKGBUILD (from rev 166655, 
python-discid/repos/community-testing-any/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-03-14 09:22:32 UTC (rev 166656)
@@ -0,0 +1,34 @@
+# $Id$
+# Contributor: Johannes Dewenderarch at JonnyJD dot net
+# Maintainer: Gaetan Bisson 
+
+pkgbase=python-discid
+pkgver=1.1.0
+pkgrel=3
+_pkgname=discid
+pkgname=('python-discid' 'python2-discid')
+pkgdesc='Python binding of MusicBrainz libdiscid'
+url='https://python-discid.readthedocs.org/'
+license=('LGPL3')
+arch=('any')
+depends=('libdiscid')
+makedepends=('python' 'python2')
+source=("http://pypi.python.org/packages/source/d/$_pkgname/$_pkgname-$pkgver.tar.gz";)
+sha1sums=('de2d657e42d281dad593e0673af6ba6039ef58bc')
+
+check() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   python setup.py test
+}
+
+package_python-discid() {
+   depends+=('python')
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-discid() {
+   depends+=('python2')
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   python2 setup.py install --root="${pkgdir}" --optimize=1
+}


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

2016-03-14 Thread Florian Pritz
Date: Monday, March 14, 2016 @ 10:52:25
  Author: bluewind
Revision: 166658

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 09:52:21 UTC (rev 166657)
+++ PKGBUILD2016-03-14 09:52:25 UTC (rev 166658)
@@ -1,21 +0,0 @@
-# Maintainer: Florian Pritz 
-
-pkgname=python-ansi2html
-pkgver=1.1.0
-pkgrel=2
-pkgdesc="Convert text with ANSI color codes to HTML"
-arch=('any')
-url="http://pypi.python.org/pypi/ansi2html";
-license=('GPL')
-depends=('python-six')
-makedepends=('python-setuptools')
-source=("http://pypi.python.org/packages/source/a/ansi2html/ansi2html-${pkgver}.tar.gz"{,.asc})
-md5sums=('c4f75f58b8851c20645d235d8b8a3592'
- 'SKIP')
-validpgpkeys=(94504C3AE11DD197920058ABA90ED7DE971095FF)
-
-package() {
-  cd ansi2html-$pkgver
-
-  python setup.py install --root="$pkgdir"  --optimize=1
-}

Copied: python-ansi2html/repos/community-any/PKGBUILD (from rev 166657, 
python-ansi2html/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 09:52:25 UTC (rev 166658)
@@ -0,0 +1,21 @@
+# Maintainer: Florian Pritz 
+
+pkgname=python-ansi2html
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Convert text with ANSI color codes to HTML"
+arch=('any')
+url="http://pypi.python.org/pypi/ansi2html";
+license=('GPL')
+depends=('python-six')
+makedepends=('python-setuptools')
+source=("https://pypi.python.org/packages/source/a/ansi2html/ansi2html-${pkgver}.tar.gz"{,.asc})
+md5sums=('39c0454667def0f7e22d91d1001d8fc4'
+ 'SKIP')
+validpgpkeys=(94504C3AE11DD197920058ABA90ED7DE971095FF)
+
+package() {
+  cd ansi2html-$pkgver
+
+  python setup.py install --root="$pkgdir"  --optimize=1
+}


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

2016-03-14 Thread Florian Pritz
Date: Monday, March 14, 2016 @ 10:52:21
  Author: bluewind
Revision: 166657

upgpkg: python-ansi2html 1.1.1-1

upstream update

Modified:
  python-ansi2html/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 09:22:32 UTC (rev 166656)
+++ PKGBUILD2016-03-14 09:52:21 UTC (rev 166657)
@@ -1,8 +1,8 @@
 # Maintainer: Florian Pritz 
 
 pkgname=python-ansi2html
-pkgver=1.1.0
-pkgrel=2
+pkgver=1.1.1
+pkgrel=1
 pkgdesc="Convert text with ANSI color codes to HTML"
 arch=('any')
 url="http://pypi.python.org/pypi/ansi2html";
@@ -9,8 +9,8 @@
 license=('GPL')
 depends=('python-six')
 makedepends=('python-setuptools')
-source=("http://pypi.python.org/packages/source/a/ansi2html/ansi2html-${pkgver}.tar.gz"{,.asc})
-md5sums=('c4f75f58b8851c20645d235d8b8a3592'
+source=("https://pypi.python.org/packages/source/a/ansi2html/ansi2html-${pkgver}.tar.gz"{,.asc})
+md5sums=('39c0454667def0f7e22d91d1001d8fc4'
  'SKIP')
 validpgpkeys=(94504C3AE11DD197920058ABA90ED7DE971095FF)
 


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 10:57:58
  Author: fyan
Revision: 166659

upgpkg: hindent 4.6.1-12

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  hindent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 09:52:25 UTC (rev 166658)
+++ PKGBUILD2016-03-14 09:57:58 UTC (rev 166659)
@@ -4,7 +4,7 @@
 
 pkgname=hindent
 pkgver=4.6.1
-pkgrel=11
+pkgrel=12
 pkgdesc="Extensible Haskell pretty printer"
 url="http://www.github.com/chrisdone/hindent";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 10:58:31
  Author: fyan
Revision: 10

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

Added:
  hindent/repos/community-staging-i686/
  hindent/repos/community-staging-i686/PKGBUILD
(from rev 166659, hindent/trunk/PKGBUILD)
  hindent/repos/community-staging-x86_64/
  hindent/repos/community-staging-x86_64/PKGBUILD
(from rev 166659, hindent/trunk/PKGBUILD)

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

Copied: hindent/repos/community-staging-i686/PKGBUILD (from rev 166659, 
hindent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 09:58:31 UTC (rev 10)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=4.6.1
+pkgrel=12
+pkgdesc="Extensible Haskell pretty printer"
+url="http://www.github.com/chrisdone/hindent";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-data-default" "haskell-descriptive" 
"haskell-src-exts"
+ "haskell-monad-loops" "haskell-mtl" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: hindent/repos/community-staging-x86_64/PKGBUILD (from rev 166659, 
hindent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 09:58:31 UTC (rev 10)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=4.6.1
+pkgrel=12
+pkgdesc="Extensible Haskell pretty printer"
+url="http://www.github.com/chrisdone/hindent";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-data-default" "haskell-descriptive" 
"haskell-src-exts"
+ "haskell-monad-loops" "haskell-mtl" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:00:54
  Author: fyan
Revision: 11

upgpkg: idris 0.10.2-6

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 09:58:31 UTC (rev 10)
+++ PKGBUILD2016-03-14 10:00:54 UTC (rev 11)
@@ -4,7 +4,7 @@
 
 pkgname=idris
 pkgver=0.10.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:01:15
  Author: fyan
Revision: 12

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

Added:
  idris/repos/community-staging-i686/
  idris/repos/community-staging-i686/PKGBUILD
(from rev 11, idris/trunk/PKGBUILD)
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 11, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-i686/PKGBUILD (from rev 11, 
idris/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 10:01:15 UTC (rev 12)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=0.10.2
+pkgrel=6
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib' 'gcc')
+makedepends=("ghc=7.10.3" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal" "haskell-ansi-wl-pprint"
+ "haskell-async" "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cheapskate" "haskell-fingertree" "haskell-fsnotify" 
"haskell-mtl" "haskell-libffi"
+ "haskell-network" "haskell-optparse-applicative" 
"haskell-parsers" "haskell-safe"
+ "haskell-split" "haskell-text" "haskell-transformers-compat" 
"haskell-trifecta"
+ "haskell-uniplate" "haskell-unordered-containers" 
"haskell-utf8-string" "haskell-vector"
+ "haskell-vector-binary-instances" "haskell-zip-archive")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('797f848d073b14772e20b13507272a2bf490644e005a978423c4bf057d021d19')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP # -fcurses
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 11, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 10:01:15 UTC (rev 12)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=0.10.2
+pkgrel=6
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib' 'gcc')
+makedepends=("ghc=7.10.3" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal" "haskell-ansi-wl-pprint"
+ "haskell-async" "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cheapskate" "haskell-fingertree" "haskell-fsnotify" 
"haskell-mtl" "haskell-libffi"
+ "haskell-network" "haskell-optparse-applicative" 
"haskell-parsers" "haskell-safe"
+ "haskell-split" "haskell-text" "haskell-transformers-compat" 
"haskell-trifecta"
+ "haskell-uniplate" "haskell-unordered-containers" 
"haskell-utf8-string" "haskell-vector"
+ "haskell-vector-binary-instances" "haskell-zip-archive")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('797f848d073b14772e20b13507272a2bf490644e005a978423c4bf057d021d19')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP # -fcurses
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*un

[arch-commits] Commit in (5 files)

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:08:40
  Author: fyan
Revision: 13

addpkg: haskell-criterion 1.1.1.0-1

Added:
  haskell-criterion/
  haskell-criterion/repos/
  haskell-criterion/trunk/
  haskell-criterion/trunk/PKGBUILD
  haskell-criterion/trunk/haskell-criterion.install

---+
 PKGBUILD  |   45 
 haskell-criterion.install |   18 +
 2 files changed, 63 insertions(+)

Added: haskell-criterion/trunk/PKGBUILD
===
--- haskell-criterion/trunk/PKGBUILD(rev 0)
+++ haskell-criterion/trunk/PKGBUILD2016-03-14 10:08:40 UTC (rev 13)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.1.1.0
+pkgrel=1
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-glob" "haskell-aeson" "haskell-ansi-wl-pprint" 
"haskell-cassava"
+ "haskell-hastache" "haskell-mtl" "haskell-mwc-random" 
"haskell-optparse-applicative"
+ "haskell-parsec" "haskell-statistics" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-vector" "haskell-vector-algorithms")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('e71855a7a9cd946044b2137f31603e0578f6e517a2ed667a2b479990cc0949dd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+}


Property changes on: haskell-criterion/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-criterion/trunk/haskell-criterion.install
===
--- haskell-criterion/trunk/haskell-criterion.install   
(rev 0)
+++ haskell-criterion/trunk/haskell-criterion.install   2016-03-14 10:08:40 UTC 
(rev 13)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-criterion
+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)
+}


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:09:11
  Author: fyan
Revision: 14

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

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

+
 community-staging-i686/PKGBUILD|   45 +++
 community-staging-i686/haskell-criterion.install   |   18 +++
 community-staging-x86_64/PKGBUILD  |   45 +++
 community-staging-x86_64/haskell-criterion.install |   18 +++
 4 files changed, 126 insertions(+)

Copied: haskell-criterion/repos/community-staging-i686/PKGBUILD (from rev 
13, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 10:09:11 UTC (rev 14)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.1.1.0
+pkgrel=1
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-glob" "haskell-aeson" "haskell-ansi-wl-pprint" 
"haskell-cassava"
+ "haskell-hastache" "haskell-mtl" "haskell-mwc-random" 
"haskell-optparse-applicative"
+ "haskell-parsec" "haskell-statistics" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-vector" "haskell-vector-algorithms")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('e71855a7a9cd946044b2137f31603e0578f6e517a2ed667a2b479990cc0949dd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-criterion/repos/community-staging-i686/haskell-criterion.install (from 
rev 13, haskell-criterion/trunk/haskell-criterion.install)
===
--- community-staging-i686/haskell-criterion.install
(rev 0)
+++ community-staging-i686/haskell-criterion.install2016-03-14 10:09:11 UTC 
(rev 14)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-criterion
+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-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
13, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 10:09:11 UTC (rev 14)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.1.1.0
+pkgrel=1
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion";
+license=("custom

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:11:47
  Author: fyan
Revision: 15

upgpkg: stylish-haskell 0.5.15.2-7

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 10:09:11 UTC (rev 14)
+++ PKGBUILD2016-03-14 10:11:47 UTC (rev 15)
@@ -4,7 +4,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.5.15.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell";
 license=("custom:BSD3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:12:07
  Author: fyan
Revision: 16

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

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

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

Copied: stylish-haskell/repos/community-staging-i686/PKGBUILD (from rev 15, 
stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 10:12:07 UTC (rev 16)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.5.15.2
+pkgrel=7
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-cmdargs" "haskell-src-exts" 
"haskell-mtl"
+ "haskell-strict" "haskell-syb" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('cf391b582b00aa392a89c15e7542a43ad694661d00500356aa818fac84ebe759')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
15, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 10:12:07 UTC (rev 16)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.5.15.2
+pkgrel=7
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-cmdargs" "haskell-src-exts" 
"haskell-mtl"
+ "haskell-strict" "haskell-syb" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('cf391b582b00aa392a89c15e7542a43ad694661d00500356aa818fac84ebe759')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:16:03
  Author: fyan
Revision: 17

upgpkg: git-annex 6.20160229-6

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 10:12:07 UTC (rev 16)
+++ PKGBUILD2016-03-14 10:16:03 UTC (rev 17)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20160229
-pkgrel=5
+pkgrel=6
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/";
 license=("AGPL3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:16:24
  Author: fyan
Revision: 18

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

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

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

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 17, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 10:16:24 UTC (rev 18)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20160229
+pkgrel=6
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/";
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-crypto-api" "haskell-cryptonite"
+ "haskell-data-default" "haskell-dav" "haskell-dbus" 
"haskell-dlist" "haskell-dns"
+ "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions"
+ "haskell-fdo-notify" "haskell-feed" "haskell-gnutls" 
"haskell-hinotify"
+ "haskell-hslogger" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-ifelse" "haskell-json" 
"haskell-magic"
+ "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" 
"haskell-mtl"
+ "haskell-network" "haskell-network-info" 
"haskell-network-multicast"
+ "haskell-network-protocol-xmpp" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-path-pieces" 
"haskell-persistent"
+ "haskell-persistent-sqlite" "haskell-persistent-template" 
"haskell-quickcheck"
+ "haskell-random" "haskell-regex-tdfa" "haskell-resourcet" 
"haskell-safesemaphore"
+ "haskell-sandi" "haskell-securemem" "haskell-shakespeare" 
"haskell-stm"
+ "haskell-tasty" "haskell-tasty-hunit" "haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-utf8-string" "haskell-uuid" "haskell-wai" 
"haskell-wai-extra" "haskell-warp"
+ "haskell-warp-tls" "haskell-xml-types" "haskell-yesod" 
"haskell-yesod-core"
+ "haskell-yesod-default" "haskell-yesod-form" 
"haskell-yesod-static")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('1eac609eeedbf01cf088461577b478a3aa99f7ecefa668214308e3b5509c1506')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" \
+-fcryptonite -fnetwork-uri -f-ekg -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing 
-fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fxmpp -fmagicmime
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 bash-completion.bash 
"${pkgdir}/usr/share/bash-completion/completions/git-annex"
+
+rm "$pkgdir/usr/share/doc/git-annex/COPYRIGHT"
+rmdir "$pkgdir/usr/share/doc/git-annex" "$pkgdir/usr/share/doc"
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 17, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 10:16:24 UTC (rev 18)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20160229
+pkgrel=6
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/";
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insens

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:48:52
  Author: fyan
Revision: 166713

upgpkg: haskell-concurrent-output 1.7.4-1

Modified:
  haskell-concurrent-output/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 10:22:42 UTC (rev 166712)
+++ PKGBUILD2016-03-14 10:48:52 UTC (rev 166713)
@@ -4,8 +4,8 @@
 
 _hkgname=concurrent-output
 pkgname=haskell-concurrent-output
-pkgver=1.7.3
-pkgrel=5
+pkgver=1.7.4
+pkgrel=1
 pkgdesc="Ungarble output from several threads or commands"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=("custom:BSD2")
@@ -15,7 +15,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 install="${pkgname}.install"
-sha256sums=('9a510e7378ba9c6c637027074fa127fad832f9321144fdbe9ae3b1955cf40620')
+sha256sums=('d95827e051a7576820fd76e2eebe7c02185870c6bb63fb953fdec1e608414e9e')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 11:49:12
  Author: fyan
Revision: 166714

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

Added:
  haskell-concurrent-output/repos/community-staging-i686/
  haskell-concurrent-output/repos/community-staging-i686/PKGBUILD
(from rev 166713, haskell-concurrent-output/trunk/PKGBUILD)
  
haskell-concurrent-output/repos/community-staging-i686/haskell-concurrent-output.install
(from rev 166713, 
haskell-concurrent-output/trunk/haskell-concurrent-output.install)
  haskell-concurrent-output/repos/community-staging-x86_64/
  haskell-concurrent-output/repos/community-staging-x86_64/PKGBUILD
(from rev 166713, haskell-concurrent-output/trunk/PKGBUILD)
  
haskell-concurrent-output/repos/community-staging-x86_64/haskell-concurrent-output.install
(from rev 166713, 
haskell-concurrent-output/trunk/haskell-concurrent-output.install)

+
 community-staging-i686/PKGBUILD|   43 +++
 community-staging-i686/haskell-concurrent-output.install   |   18 
 community-staging-x86_64/PKGBUILD  |   43 +++
 community-staging-x86_64/haskell-concurrent-output.install |   18 
 4 files changed, 122 insertions(+)

Copied: haskell-concurrent-output/repos/community-staging-i686/PKGBUILD (from 
rev 166713, haskell-concurrent-output/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 10:49:12 UTC (rev 166714)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=concurrent-output
+pkgname=haskell-concurrent-output
+pkgver=1.7.4
+pkgrel=1
+pkgdesc="Ungarble output from several threads or commands"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD2")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-ansi-terminal" "haskell-async" 
"haskell-exceptions"
+ "haskell-stm" "haskell-terminal-size" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('d95827e051a7576820fd76e2eebe7c02185870c6bb63fb953fdec1e608414e9e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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-concurrent-output/repos/community-staging-i686/haskell-concurrent-output.install
 (from rev 166713, 
haskell-concurrent-output/trunk/haskell-concurrent-output.install)
===
--- community-staging-i686/haskell-concurrent-output.install
(rev 0)
+++ community-staging-i686/haskell-concurrent-output.install2016-03-14 
10:49:12 UTC (rev 166714)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-concurrent-output
+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-concurrent-output/repos/community-staging-x86_64/PKGBUILD (from 
rev 166713, haskell-concurrent-output/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 10:49:12 UTC (rev 166714)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=concurrent-output
+pkgname=haskell-concurrent-output
+pkgver=1.7.4
+pkgrel=1
+pkgdesc="Ungarble output from several threads or commands"
+url

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 11:55:01
  Author: bpiotrowski
Revision: 261431

upgpkg: iw 4.3-1

new upstream release

Modified:
  iw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 09:04:01 UTC (rev 261430)
+++ PKGBUILD2016-03-14 10:55:01 UTC (rev 261431)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=iw
-pkgver=4.1
+pkgver=4.3
 pkgrel=1
 pkgdesc="nl80211 based CLI configuration utility for wireless devices"
 arch=("i686" "x86_64")
@@ -11,7 +11,7 @@
 depends=("libnl")
 makedepends=("linux-api-headers")
 
source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
-sha256sums=('5164aaacd8e82501d84a2187af194e8285a5a5b76e200447eb58d4dd78d1a34b'
+sha256sums=('a6add81a51667649d8d7cfba783ab6a0f82e250a663a4065b13babdff3f6b220'
 'SKIP')
 validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
 


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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 11:55:14
  Author: bpiotrowski
Revision: 261432

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

Added:
  iw/repos/testing-i686/
  iw/repos/testing-i686/PKGBUILD
(from rev 261431, iw/trunk/PKGBUILD)
  iw/repos/testing-x86_64/
  iw/repos/testing-x86_64/PKGBUILD
(from rev 261431, iw/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   26 ++
 testing-x86_64/PKGBUILD |   26 ++
 2 files changed, 52 insertions(+)

Copied: iw/repos/testing-i686/PKGBUILD (from rev 261431, iw/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-14 10:55:14 UTC (rev 261432)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=iw
+pkgver=4.3
+pkgrel=1
+pkgdesc="nl80211 based CLI configuration utility for wireless devices"
+arch=("i686" "x86_64")
+url="http://wireless.kernel.org/en/users/Documentation/iw";
+license=("GPL")
+depends=("libnl")
+makedepends=("linux-api-headers")
+source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
+sha256sums=('a6add81a51667649d8d7cfba783ab6a0f82e250a663a4065b13babdff3f6b220'
+'SKIP')
+validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install
+}

Copied: iw/repos/testing-x86_64/PKGBUILD (from rev 261431, iw/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-14 10:55:14 UTC (rev 261432)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=iw
+pkgver=4.3
+pkgrel=1
+pkgdesc="nl80211 based CLI configuration utility for wireless devices"
+arch=("i686" "x86_64")
+url="http://wireless.kernel.org/en/users/Documentation/iw";
+license=("GPL")
+depends=("libnl")
+makedepends=("linux-api-headers")
+source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
+sha256sums=('a6add81a51667649d8d7cfba783ab6a0f82e250a663a4065b13babdff3f6b220'
+'SKIP')
+validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install
+}


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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 11:58:39
  Author: bpiotrowski
Revision: 261433

upgpkg: libnl 3.2.27-1

new upstream release

Modified:
  libnl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 10:55:14 UTC (rev 261432)
+++ PKGBUILD2016-03-14 10:58:39 UTC (rev 261433)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=libnl
-pkgver=3.2.26
+pkgver=3.2.27
 pkgrel=1
 pkgdesc="Library for applications dealing with netlink sockets"
 arch=(i686 x86_64)
@@ -10,8 +10,8 @@
 license=(GPL)
 depends=(glibc)
 backup=(etc/libnl/classid etc/libnl/pktloc)
-source=(https://github.com/thom311/libnl/releases/download/libnl$(echo 
${pkgver} | sed 's|\.|_|g')/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('1323ff6cea47efe9f988893b09840942a8c36131f472a9f3b96eb68d8f8d7555'
+source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('4bbbf92b3c78a90f423cf96260bf419a28b75db8cced47051217a56795f58ec6'
 'SKIP')
 validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
 


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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 11:58:50
  Author: bpiotrowski
Revision: 261434

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

Added:
  libnl/repos/testing-i686/
  libnl/repos/testing-i686/PKGBUILD
(from rev 261433, libnl/trunk/PKGBUILD)
  libnl/repos/testing-x86_64/
  libnl/repos/testing-x86_64/PKGBUILD
(from rev 261433, libnl/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   31 +++
 testing-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libnl/repos/testing-i686/PKGBUILD (from rev 261433, 
libnl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-14 10:58:50 UTC (rev 261434)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=libnl
+pkgver=3.2.27
+pkgrel=1
+pkgdesc="Library for applications dealing with netlink sockets"
+arch=(i686 x86_64)
+url="http://www.infradead.org/~tgr/libnl/";
+license=(GPL)
+depends=(glibc)
+backup=(etc/libnl/classid etc/libnl/pktloc)
+source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('4bbbf92b3c78a90f423cf96260bf419a28b75db8cced47051217a56795f58ec6'
+'SKIP')
+validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: libnl/repos/testing-x86_64/PKGBUILD (from rev 261433, 
libnl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-14 10:58:50 UTC (rev 261434)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=libnl
+pkgver=3.2.27
+pkgrel=1
+pkgdesc="Library for applications dealing with netlink sockets"
+arch=(i686 x86_64)
+url="http://www.infradead.org/~tgr/libnl/";
+license=(GPL)
+depends=(glibc)
+backup=(etc/libnl/classid etc/libnl/pktloc)
+source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('4bbbf92b3c78a90f423cf96260bf419a28b75db8cced47051217a56795f58ec6'
+'SKIP')
+validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 12:03:24
  Author: fyan
Revision: 166715

upgpkg: deepin-metacity 3.18.1.11-1

Modified:
  deepin-metacity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 10:49:12 UTC (rev 166714)
+++ PKGBUILD2016-03-14 11:03:24 UTC (rev 166715)
@@ -4,7 +4,7 @@
 # Contributor: Jan de Groot 
  
 pkgname=deepin-metacity
-pkgver=3.18.1.10
+pkgver=3.18.1.11
 pkgrel=1
 pkgdesc="2D window manager for Deepin"
 arch=('i686' 'x86_64')


[arch-commits] Commit in iproute2/trunk (PKGBUILD unwanted-link-help.patch)

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 12:03:59
  Author: bpiotrowski
Revision: 261435

upgpkg: iproute2 4.4.0-1

new upstream release

Modified:
  iproute2/trunk/PKGBUILD
Deleted:
  iproute2/trunk/unwanted-link-help.patch

--+
 PKGBUILD |   13 -
 unwanted-link-help.patch |   17 -
 2 files changed, 4 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 10:58:50 UTC (rev 261434)
+++ PKGBUILD2016-03-14 11:03:59 UTC (rev 261435)
@@ -3,7 +3,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=iproute2
-pkgver=4.1.1
+pkgver=4.4.0
 pkgrel=1
 pkgdesc="IP Routing Utilities"
 arch=('i686' 'x86_64')
@@ -21,12 +21,10 @@
'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 
'etc/iproute2/rt_tables')
 validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger
 
source=("http://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
-iproute2-fhs.patch
-unwanted-link-help.patch)
-sha1sums=('750c17e720b43041c23fed7b8cf0118c0e841036'
+iproute2-fhs.patch)
+sha1sums=('68372be70c5c0503196d03913f4b1e201956d1b6'
   'SKIP'
-  '2dc6d8f1a2495a0d51eaa303dcc78ecc0c477935'
-  '3b1335f4025f657f388fbf4e5a740871e3129c2a')
+  '2dc6d8f1a2495a0d51eaa303dcc78ecc0c477935')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -34,9 +32,6 @@
   # set correct fhs structure
   patch -Np1 -i "${srcdir}/iproute2-fhs.patch"
 
-  # allow operations on links called "h", "he", "hel", "help"
-  patch -Np1 -i "${srcdir}/unwanted-link-help.patch"
-
   # do not treat warnings as errors
   sed -i 's/-Werror//' Makefile
 

Deleted: unwanted-link-help.patch
===
--- unwanted-link-help.patch2016-03-14 10:58:50 UTC (rev 261434)
+++ unwanted-link-help.patch2016-03-14 11:03:59 UTC (rev 261435)
@@ -1,17 +0,0 @@
-diff -ru iproute2-3.10.0.orig/ip/iplink.c iproute2-3.10.0/ip/iplink.c
 iproute2-3.10.0.orig/ip/iplink.c   2013-08-08 13:53:33.0 -0700
-+++ iproute2-3.10.0/ip/iplink.c2013-08-08 13:55:03.179865309 -0700
-@@ -467,11 +467,11 @@
-   addattr_l(&req->n, sizeof(*req), IFLA_NUM_RX_QUEUES,
- &numrxqueues, 4);
-   } else {
-+  if (matches(*argv, "help") == 0)
-+  usage();
-   if (strcmp(*argv, "dev") == 0) {
-   NEXT_ARG();
-   }
--  if (matches(*argv, "help") == 0)
--  usage();
-   if (*dev)
-   duparg2("dev", *argv);
-   *dev = *argv;


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 12:03:52
  Author: fyan
Revision: 166716

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

Added:
  deepin-metacity/repos/community-i686/PKGBUILD
(from rev 166715, deepin-metacity/trunk/PKGBUILD)
  deepin-metacity/repos/community-i686/deepin-metacity.install
(from rev 166715, deepin-metacity/trunk/deepin-metacity.install)
  deepin-metacity/repos/community-x86_64/PKGBUILD
(from rev 166715, deepin-metacity/trunk/PKGBUILD)
  deepin-metacity/repos/community-x86_64/deepin-metacity.install
(from rev 166715, deepin-metacity/trunk/deepin-metacity.install)
Deleted:
  deepin-metacity/repos/community-i686/PKGBUILD
  deepin-metacity/repos/community-i686/deepin-metacity.install
  deepin-metacity/repos/community-x86_64/PKGBUILD
  deepin-metacity/repos/community-x86_64/deepin-metacity.install

--+
 /PKGBUILD|   66 +
 /deepin-metacity.install |   22 +
 community-i686/PKGBUILD  |   33 --
 community-i686/deepin-metacity.install   |   11 
 community-x86_64/PKGBUILD|   33 --
 community-x86_64/deepin-metacity.install |   11 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 11:03:24 UTC (rev 166715)
+++ community-i686/PKGBUILD 2016-03-14 11:03:52 UTC (rev 166716)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Balló György 
-# Contributor: Jan de Groot 
- 
-pkgname=deepin-metacity
-pkgver=3.18.1.10
-pkgrel=1
-pkgdesc="2D window manager for Deepin"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dconf' 'libcanberra' 'libgtop' 'libsm' 'deepin-desktop-schemas' 
'gtk3' 'startup-notification' 'zenity')
-makedepends=('intltool' 'itstool' 'autoconf-archive' 'yelp-tools' 'git')
-url="https://github.com/linuxdeepin/deepin-metacity";
-install=deepin-metacity.install
-source=("git+https://github.com/linuxdeepin/deepin-metacity.git#tag=$pkgver";)
-sha256sums=('SKIP')
- 
-prepare() {
-  cd $pkgname
-}
- 
-build() {
-  cd $pkgname
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-   --disable-static --disable-schemas-compile
-  make
-}
- 
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-metacity/repos/community-i686/PKGBUILD (from rev 166715, 
deepin-metacity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 11:03:52 UTC (rev 166716)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Balló György 
+# Contributor: Jan de Groot 
+ 
+pkgname=deepin-metacity
+pkgver=3.18.1.11
+pkgrel=1
+pkgdesc="2D window manager for Deepin"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dconf' 'libcanberra' 'libgtop' 'libsm' 'deepin-desktop-schemas' 
'gtk3' 'startup-notification' 'zenity')
+makedepends=('intltool' 'itstool' 'autoconf-archive' 'yelp-tools' 'git')
+url="https://github.com/linuxdeepin/deepin-metacity";
+install=deepin-metacity.install
+source=("git+https://github.com/linuxdeepin/deepin-metacity.git#tag=$pkgver";)
+sha256sums=('SKIP')
+ 
+prepare() {
+  cd $pkgname
+}
+ 
+build() {
+  cd $pkgname
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+   --disable-static --disable-schemas-compile
+  make
+}
+ 
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/deepin-metacity.install
===
--- community-i686/deepin-metacity.install  2016-03-14 11:03:24 UTC (rev 
166715)
+++ community-i686/deepin-metacity.install  2016-03-14 11:03:52 UTC (rev 
166716)
@@ -1,11 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: deepin-metacity/repos/community-i686/deepin-metacity.install (from rev 
166715, deepin-metacity/trunk/deepin-metacity.install)
===
--- community-i686/deepin-metacity.install  (rev 0)
+++ community-i686/deepin-metacity.install  2016-03-14 11:03:52 UTC (rev 
166716)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-14 11:03:24 UTC (rev 166715)
+++ community-x86_64/PKGBUILD   2016-03-14 11:03:52 UTC (rev 166716)
@@ -1,33 +0,0 @@
-# 

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 12:04:08
  Author: bpiotrowski
Revision: 261436

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

Added:
  iproute2/repos/testing-i686/
  iproute2/repos/testing-i686/PKGBUILD
(from rev 261435, iproute2/trunk/PKGBUILD)
  iproute2/repos/testing-i686/iproute2-fhs.patch
(from rev 261435, iproute2/trunk/iproute2-fhs.patch)
  iproute2/repos/testing-x86_64/
  iproute2/repos/testing-x86_64/PKGBUILD
(from rev 261435, iproute2/trunk/PKGBUILD)
  iproute2/repos/testing-x86_64/iproute2-fhs.patch
(from rev 261435, iproute2/trunk/iproute2-fhs.patch)

---+
 testing-i686/PKGBUILD |   60 
 testing-i686/iproute2-fhs.patch   |   87 
 testing-x86_64/PKGBUILD   |   60 
 testing-x86_64/iproute2-fhs.patch |   87 
 4 files changed, 294 insertions(+)

Copied: iproute2/repos/testing-i686/PKGBUILD (from rev 261435, 
iproute2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-14 11:04:08 UTC (rev 261436)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Judd Vinet 
+
+pkgname=iproute2
+pkgver=4.4.0
+pkgrel=1
+pkgdesc="IP Routing Utilities"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2";
+depends=('glibc' 'iptables')
+makedepends=('linux-atm')
+optdepends=('linux-atm: ATM support')
+groups=('base')
+provides=('iproute')
+conflicts=('iproute')
+replaces=('iproute')
+options=('staticlibs' '!makeflags')
+backup=('etc/iproute2/ematch_map' 'etc/iproute2/rt_dsfield' 
'etc/iproute2/rt_protos' \
+   'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 
'etc/iproute2/rt_tables')
+validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger
+source=("http://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
+iproute2-fhs.patch)
+sha1sums=('68372be70c5c0503196d03913f4b1e201956d1b6'
+  'SKIP'
+  '2dc6d8f1a2495a0d51eaa303dcc78ecc0c477935')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # set correct fhs structure
+  patch -Np1 -i "${srcdir}/iproute2-fhs.patch"
+
+  # do not treat warnings as errors
+  sed -i 's/-Werror//' Makefile
+
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # libnetlink isn't installed, install it FS#19385
+  install -Dm644 include/libnetlink.h "${pkgdir}/usr/include/libnetlink.h"
+  install -Dm644 lib/libnetlink.a "${pkgdir}/usr/lib/libnetlink.a"
+
+  # move binaries
+  cd "${pkgdir}"
+  mv sbin usr/bin
+
+}

Copied: iproute2/repos/testing-i686/iproute2-fhs.patch (from rev 261435, 
iproute2/trunk/iproute2-fhs.patch)
===
--- testing-i686/iproute2-fhs.patch (rev 0)
+++ testing-i686/iproute2-fhs.patch 2016-03-14 11:04:08 UTC (rev 261436)
@@ -0,0 +1,87 @@
+diff --git a/Makefile b/Makefile
+index 67176be..6549447 100644
+--- a/Makefile
 b/Makefile
+@@ -13,7 +13,7 @@ DBM_INCLUDE:=$(DESTDIR)/usr/include
+ 
+ SHARED_LIBS = y
+ 
+-DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\"
++DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\" -DDATADIR=\"$(DATADIR)\"
+ ifneq ($(SHARED_LIBS),y)
+ DEFINES+= -DNO_SHARED_LIBS
+ endif
+diff --git a/netem/Makefile b/netem/Makefile
+index e52e125..5b4d283 100644
+--- a/netem/Makefile
 b/netem/Makefile
+@@ -20,9 +20,9 @@ stats: stats.c
+   $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+ 
+ install: all
+-  mkdir -p $(DESTDIR)$(LIBDIR)/tc
++  mkdir -p $(DESTDIR)$(DATADIR)/tc
+   for i in $(DISTDATA); \
+-  do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
++  do install -m 644 $$i $(DESTDIR)$(DATADIR)/tc; \
+   done
+ 
+ clean:
+diff --git a/tc/q_netem.c b/tc/q_netem.c
+index cd990a0..7d4e71f 100644
+--- a/tc/q_netem.c
 b/tc/q_netem.c
+@@ -113,7 +113,7 @@ static int get_distribution(const char *type, __s16 *data, 
int maxdata)
+   char *line = NULL;
+   char name[128];
+ 
+-  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_lib(), type);
++  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_datadir(), type);
+   if ((f = fopen(name, "r")) == NULL) {
+   fprintf(stderr, "No distribution data for %s (%s: %s)\n",
+   type, name, strerror(errno));
+diff --git a/tc/tc_util.c b/tc/tc_util.c
+index aa6de24..22bb6d5 100644
+--- a/tc/tc_util.c
 b/tc/tc_util.c
+@@ -32,6 +32,10 @@
+ #define LIBDIR "/usr/lib"
+ #endif
+ 
++#ifndef DATADIR
++#define DATADIR "/usr/share"
++#endif
++
+ static struct db_names *cls_names = NULL;
+ 
+ #define NAMES_DB "/etc

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 12:18:30
  Author: bpiotrowski
Revision: 261437

upgpkg: openvpn 2.3.10-1

new upstream release

Modified:
  openvpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:04:08 UTC (rev 261436)
+++ PKGBUILD2016-03-14 11:18:30 UTC (rev 261437)
@@ -2,8 +2,8 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=openvpn
-pkgver=2.3.9
-pkgrel=2
+pkgver=2.3.10
+pkgrel=1
 pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private 
Network)"
 arch=(i686 x86_64)
 url="http://openvpn.net/index.php/open-source.html";
@@ -14,7 +14,7 @@
 source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz
 
http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc
 openvpn@.service)
-sha256sums=('2c12fe9ea641ac1291e70322cc500641c84e5903dd4f40bf2eda7e9f209b2f9c'
+sha256sums=('f8b0b5b92e35bbca1db1a7e6b49e04639e45634e9accd460459b40b2c99ec8f6'
 'SKIP'
 '860976d954bd1db95861b95f0ef42e4e80618aa23a9f2aed26d17ee3d09110df')
 validpgpkeys=('03300E11FED16F59715F9996C29D97ED198D22A3')  # Samuli Seppänen


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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 12:18:47
  Author: bpiotrowski
Revision: 261438

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

Added:
  openvpn/repos/testing-i686/
  openvpn/repos/testing-i686/PKGBUILD
(from rev 261437, openvpn/trunk/PKGBUILD)
  openvpn/repos/testing-i686/openvpn.install
(from rev 261437, openvpn/trunk/openvpn.install)
  openvpn/repos/testing-i686/openvpn@.service
(from rev 261437, openvpn/trunk/openvpn@.service)
  openvpn/repos/testing-x86_64/
  openvpn/repos/testing-x86_64/PKGBUILD
(from rev 261437, openvpn/trunk/PKGBUILD)
  openvpn/repos/testing-x86_64/openvpn.install
(from rev 261437, openvpn/trunk/openvpn.install)
  openvpn/repos/testing-x86_64/openvpn@.service
(from rev 261437, openvpn/trunk/openvpn@.service)

-+
 testing-i686/PKGBUILD   |   50 ++
 testing-i686/openvpn.install|8 ++
 testing-i686/openvpn@.service   |   10 +++
 testing-x86_64/PKGBUILD |   50 ++
 testing-x86_64/openvpn.install  |8 ++
 testing-x86_64/openvpn@.service |   10 +++
 6 files changed, 136 insertions(+)

Copied: openvpn/repos/testing-i686/PKGBUILD (from rev 261437, 
openvpn/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-14 11:18:47 UTC (rev 261438)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=openvpn
+pkgver=2.3.10
+pkgrel=1
+pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private 
Network)"
+arch=(i686 x86_64)
+url="http://openvpn.net/index.php/open-source.html";
+depends=('openssl' 'lzo' 'iproute2' 'libsystemd')
+makedepends=('systemd')
+license=('custom')
+install=openvpn.install
+source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz
+
http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc
+openvpn@.service)
+sha256sums=('f8b0b5b92e35bbca1db1a7e6b49e04639e45634e9accd460459b40b2c99ec8f6'
+'SKIP'
+'860976d954bd1db95861b95f0ef42e4e80618aa23a9f2aed26d17ee3d09110df')
+validpgpkeys=('03300E11FED16F59715F9996C29D97ED198D22A3')  # Samuli Seppänen
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  CFLAGS="$CFLAGS -DPLUGIN_LIBDIR=\\\"/usr/lib/openvpn\\\"" ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--enable-password-save \
+--mandir=/usr/share/man \
+--enable-iproute2 \
+--enable-systemd
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  # Install openvpn
+  make DESTDIR="${pkgdir}" install
+  install -d -m755 "${pkgdir}"/etc/openvpn
+  # Install examples
+  install -d -m755 "${pkgdir}"/usr/share/openvpn
+  cp -r sample/sample-config-files "${pkgdir}"/usr/share/openvpn/examples
+  # Install license
+  install -d -m755 "${pkgdir}"/usr/share/licenses/${pkgname}/
+  ln -sf /usr/share/doc/${pkgname}/{COPYING,COPYRIGHT.GPL} 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+  # Install contrib
+  install -d -m755 "${pkgdir}"/usr/share/openvpn/contrib
+  cp -r contrib "${pkgdir}"/usr/share/openvpn
+  # Install systemd service
+  install -D -m644 "${srcdir}"/openvpn@.service 
"${pkgdir}"/usr/lib/systemd/system/openvpn@.service
+}

Copied: openvpn/repos/testing-i686/openvpn.install (from rev 261437, 
openvpn/trunk/openvpn.install)
===
--- testing-i686/openvpn.install(rev 0)
+++ testing-i686/openvpn.install2016-03-14 11:18:47 UTC (rev 261438)
@@ -0,0 +1,8 @@
+## arg 1:  the new package version
+## arg 2:  the old package version
+post_upgrade() {
+  if [ $(vercmp 2.3.2-1 $2) -ge 0 ]; then
+echo ">>> easy-rsa has moved into its own package. Run:"
+echo ">>>  # pacman -S easy-rsa"
+  fi
+}

Copied: openvpn/repos/testing-i686/openvpn@.service (from rev 261437, 
openvpn/trunk/openvpn@.service)
===
--- testing-i686/openvpn@.service   (rev 0)
+++ testing-i686/openvpn@.service   2016-03-14 11:18:47 UTC (rev 261438)
@@ -0,0 +1,10 @@
+[Unit]
+Description=OpenVPN connection to %i
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/openvpn --cd /etc/openvpn --config /etc/openvpn/%i.conf 
--daemon openvpn@%i --writepid /run/openvpn@%i.pid
+PIDFile=/run/openvpn@%i.pid
+
+[Install]
+WantedBy=multi-user.target

Copied: openvpn/repos/testing-x86_64/PKGBUILD (from rev 261437, 
openvpn/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-14 11:18:47 UTC (rev 261438)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=openvpn
+pkgver=2.3.10
+pkgrel=1
+pkgdesc="An easy-to-use, robust, and highly configurable VP

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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 12:20:13
  Author: fyan
Revision: 166717

upgpkg: git-annex 6.20160229-7

rebuild again (last run was missing dep)

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:03:52 UTC (rev 166716)
+++ PKGBUILD2016-03-14 11:20:13 UTC (rev 166717)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20160229
-pkgrel=6
+pkgrel=7
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/";
 license=("AGPL3")


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 12:20:34
  Author: fyan
Revision: 166718

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

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

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

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 166717, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 11:20:34 UTC (rev 166718)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20160229
+pkgrel=7
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/";
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-crypto-api" "haskell-cryptonite"
+ "haskell-data-default" "haskell-dav" "haskell-dbus" 
"haskell-dlist" "haskell-dns"
+ "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions"
+ "haskell-fdo-notify" "haskell-feed" "haskell-gnutls" 
"haskell-hinotify"
+ "haskell-hslogger" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-ifelse" "haskell-json" 
"haskell-magic"
+ "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" 
"haskell-mtl"
+ "haskell-network" "haskell-network-info" 
"haskell-network-multicast"
+ "haskell-network-protocol-xmpp" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-path-pieces" 
"haskell-persistent"
+ "haskell-persistent-sqlite" "haskell-persistent-template" 
"haskell-quickcheck"
+ "haskell-random" "haskell-regex-tdfa" "haskell-resourcet" 
"haskell-safesemaphore"
+ "haskell-sandi" "haskell-securemem" "haskell-shakespeare" 
"haskell-stm"
+ "haskell-tasty" "haskell-tasty-hunit" "haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-utf8-string" "haskell-uuid" "haskell-wai" 
"haskell-wai-extra" "haskell-warp"
+ "haskell-warp-tls" "haskell-xml-types" "haskell-yesod" 
"haskell-yesod-core"
+ "haskell-yesod-default" "haskell-yesod-form" 
"haskell-yesod-static")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('1eac609eeedbf01cf088461577b478a3aa99f7ecefa668214308e3b5509c1506')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" \
+-fcryptonite -fnetwork-uri -f-ekg -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing 
-fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fxmpp -fmagicmime
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 bash-completion.bash 
"${pkgdir}/usr/share/bash-completion/completions/git-annex"
+
+rm "$pkgdir/usr/share/doc/git-annex/COPYRIGHT"
+rmdir "$pkgdir/usr/share/doc/git-annex" "$pkgdir/usr/share/doc"
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 166717, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 11:20:34 UTC (rev 166718)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20160229
+pkgrel=7
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/";
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insens

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 12:24:50
  Author: bpiotrowski
Revision: 261440

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

Added:
  krb5/repos/testing-i686/
  krb5/repos/testing-i686/PKGBUILD
(from rev 261439, krb5/trunk/PKGBUILD)
  krb5/repos/testing-i686/krb5-config_LDFLAGS.patch
(from rev 261439, krb5/trunk/krb5-config_LDFLAGS.patch)
  krb5/repos/testing-i686/krb5-kadmind.service
(from rev 261439, krb5/trunk/krb5-kadmind.service)
  krb5/repos/testing-i686/krb5-kdc.service
(from rev 261439, krb5/trunk/krb5-kdc.service)
  krb5/repos/testing-i686/krb5-kpropd.service
(from rev 261439, krb5/trunk/krb5-kpropd.service)
  krb5/repos/testing-i686/krb5-kpropd.socket
(from rev 261439, krb5/trunk/krb5-kpropd.socket)
  krb5/repos/testing-i686/krb5-kpropd@.service
(from rev 261439, krb5/trunk/krb5-kpropd@.service)
  krb5/repos/testing-x86_64/
  krb5/repos/testing-x86_64/PKGBUILD
(from rev 261439, krb5/trunk/PKGBUILD)
  krb5/repos/testing-x86_64/krb5-config_LDFLAGS.patch
(from rev 261439, krb5/trunk/krb5-config_LDFLAGS.patch)
  krb5/repos/testing-x86_64/krb5-kadmind.service
(from rev 261439, krb5/trunk/krb5-kadmind.service)
  krb5/repos/testing-x86_64/krb5-kdc.service
(from rev 261439, krb5/trunk/krb5-kdc.service)
  krb5/repos/testing-x86_64/krb5-kpropd.service
(from rev 261439, krb5/trunk/krb5-kpropd.service)
  krb5/repos/testing-x86_64/krb5-kpropd.socket
(from rev 261439, krb5/trunk/krb5-kpropd.socket)
  krb5/repos/testing-x86_64/krb5-kpropd@.service
(from rev 261439, krb5/trunk/krb5-kpropd@.service)

--+
 testing-i686/PKGBUILD|   83 +
 testing-i686/krb5-config_LDFLAGS.patch   |   12 
 testing-i686/krb5-kadmind.service|8 ++
 testing-i686/krb5-kdc.service|9 +++
 testing-i686/krb5-kpropd.service |8 ++
 testing-i686/krb5-kpropd.socket  |9 +++
 testing-i686/krb5-kpropd@.service|8 ++
 testing-x86_64/PKGBUILD  |   83 +
 testing-x86_64/krb5-config_LDFLAGS.patch |   12 
 testing-x86_64/krb5-kadmind.service  |8 ++
 testing-x86_64/krb5-kdc.service  |9 +++
 testing-x86_64/krb5-kpropd.service   |8 ++
 testing-x86_64/krb5-kpropd.socket|9 +++
 testing-x86_64/krb5-kpropd@.service  |8 ++
 14 files changed, 274 insertions(+)

Copied: krb5/repos/testing-i686/PKGBUILD (from rev 261439, krb5/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-14 11:24:50 UTC (rev 261440)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer:
+
+pkgname=krb5
+pkgver=1.13.4
+pkgrel=1
+pkgdesc="The Kerberos network authentication system"
+arch=('i686' 'x86_64')
+url="http://web.mit.edu/kerberos/";
+license=('custom')
+depends=('e2fsprogs' 'libldap' 'keyutils')
+makedepends=('perl')
+backup=('etc/krb5.conf' 'var/lib/krb5kdc/kdc.conf')
+options=('!emptydirs')
+source=(http://web.mit.edu/kerberos/dist/krb5/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz
+krb5-config_LDFLAGS.patch
+krb5-kadmind.service
+krb5-kdc.service
+krb5-kpropd.service
+krb5-kpropd@.service
+krb5-kpropd.socket)
+sha1sums=('1ea46d5226467dac5303ee43a6ce1472dfaa6706'
+  'f125824ed37f31e6fd2fdb6a437be8ff1c3700ab'
+  '59bbc7e686cbb4bcefddf0f134d928d7bd5e7722'
+  '2ef2476a8673b3b702e829d8f451c839c2273b02'
+  '74d66aefd291f22dd80799f0437cc03d83083ed5'
+  '6787c6ce2783b3f980c423e2dd4abf5236af670b'
+  'f3677d30dbbd7106c581379c2c6ebb1bf7738912')
+
+prepare() {
+  tar -xf ${pkgname}-${pkgver}.tar.gz
+  cd ${pkgname}-${pkgver}
+  # cf https://bugs.gentoo.org/show_bug.cgi?id=448778
+  patch -p1 -i "${srcdir}"/krb5-config_LDFLAGS.patch
+
+  # FS#25384
+  sed -i "/KRB5ROOT=/s/\/local//" src/util/ac_check_krb5.m4
+}
+
+build() {
+   cd ${pkgname}-${pkgver}/src
+   export CFLAGS+=" -fPIC -fno-strict-aliasing -fstack-protector-all"
+   export CPPFLAGS+=" -I/usr/include/et"
+   ./configure --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc \
+   --localstatedir=/var/lib \
+   --enable-shared \
+   --with-system-et \
+   --with-system-ss \
+   --disable-rpath \
+   --without-tcl \
+   --enable-dns-for-realm \
+   --with-ldap \
+   --without-system-verto
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}/src
+   make DESTDIR="${pkgdir}" EXAMPLEDIR=/usr/share/doc/${pkgname}/examples 
install
+
+   # Fix FS#29889
+   install -m 644 plugins/kdb/ldap/libkdb_ldap/kerberos.{ldif,schema} 
"${pkgdir}"/usr/share/doc/${pkgname}/examples
+
+   # Sample KDC config file
+   install -dm 755 "${pkgdir}"/var/lib/krb5kdc
+   install -pm 644 config-files/

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 12:24:27
  Author: bpiotrowski
Revision: 261439

upgpkg: krb5 1.13.4-1

new upstream release

Modified:
  krb5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:18:47 UTC (rev 261438)
+++ PKGBUILD2016-03-14 11:24:27 UTC (rev 261439)
@@ -2,8 +2,8 @@
 # Maintainer:
 
 pkgname=krb5
-pkgver=1.13.2
-pkgrel=3
+pkgver=1.13.4
+pkgrel=1
 pkgdesc="The Kerberos network authentication system"
 arch=('i686' 'x86_64')
 url="http://web.mit.edu/kerberos/";
@@ -12,7 +12,7 @@
 makedepends=('perl')
 backup=('etc/krb5.conf' 'var/lib/krb5kdc/kdc.conf')
 options=('!emptydirs')
-source=(http://web.mit.edu/kerberos/dist/krb5/${pkgver%.*}/${pkgname}-${pkgver}-signed.tar
+source=(http://web.mit.edu/kerberos/dist/krb5/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz
 krb5-config_LDFLAGS.patch
 krb5-kadmind.service
 krb5-kdc.service
@@ -19,7 +19,7 @@
 krb5-kpropd.service
 krb5-kpropd@.service
 krb5-kpropd.socket)
-sha1sums=('ea824badb2d600745dcbbdfe58ccb84cba8509f0'
+sha1sums=('1ea46d5226467dac5303ee43a6ce1472dfaa6706'
   'f125824ed37f31e6fd2fdb6a437be8ff1c3700ab'
   '59bbc7e686cbb4bcefddf0f134d928d7bd5e7722'
   '2ef2476a8673b3b702e829d8f451c839c2273b02'


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

2016-03-14 Thread Dave Reisner
Date: Monday, March 14, 2016 @ 12:40:37
  Author: dreisner
Revision: 261441

upgpkg: varnish 4.1.2-1

- good luck to i686 users

Modified:
  varnish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:24:50 UTC (rev 261440)
+++ PKGBUILD2016-03-14 11:40:37 UTC (rev 261441)
@@ -5,7 +5,7 @@
 # Contributor: Roberto Alsina 
 
 pkgname=varnish
-pkgver=4.1.1
+pkgver=4.1.2
 pkgrel=1
 pkgdesc="High-performance HTTP accelerator"
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 varnish-vcl-reload
 varnish.service
 varnish.sysusers)
-md5sums=('b53ce8ba828a2ea1623d4efa7c4886d1'
+md5sums=('51d446c0193dd773f5a881f7c0beb304'
  'b494b41b2a605f406abe63ed02dc117f'
  '8334d2e108695c121c41833b53838a05'
  'da8263571f450e3c25fdd3c3b4a1e259')
@@ -28,6 +28,9 @@
 build() {
   cd "$pkgname-$pkgver"
 
+  # https://github.com/varnish/Varnish-Cache/pull/88
+  [[ $CARCH == i686 ]] && CFLAGS+=' -ffloat-store -fexcess-precision=standard'
+
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc \
@@ -37,6 +40,14 @@
   make
 }
 
+check() {
+  cd "$pkgname-$pkgver"
+
+  # Sometimes fails on i686 in address remapping test. Not sure if flaky
+  # test or otherwise...
+  make check
+}
+
 package() {
   cd "$pkgname-$pkgver"
 


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

2016-03-14 Thread Dave Reisner
Date: Monday, March 14, 2016 @ 12:41:21
  Author: dreisner
Revision: 261442

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

Added:
  varnish/repos/extra-i686/PKGBUILD
(from rev 261441, varnish/trunk/PKGBUILD)
  varnish/repos/extra-i686/varnish-vcl-reload
(from rev 261441, varnish/trunk/varnish-vcl-reload)
  varnish/repos/extra-i686/varnish.install
(from rev 261441, varnish/trunk/varnish.install)
  varnish/repos/extra-i686/varnish.service
(from rev 261441, varnish/trunk/varnish.service)
  varnish/repos/extra-i686/varnish.sysusers
(from rev 261441, varnish/trunk/varnish.sysusers)
  varnish/repos/extra-x86_64/PKGBUILD
(from rev 261441, varnish/trunk/PKGBUILD)
  varnish/repos/extra-x86_64/varnish-vcl-reload
(from rev 261441, varnish/trunk/varnish-vcl-reload)
  varnish/repos/extra-x86_64/varnish.install
(from rev 261441, varnish/trunk/varnish.install)
  varnish/repos/extra-x86_64/varnish.service
(from rev 261441, varnish/trunk/varnish.service)
  varnish/repos/extra-x86_64/varnish.sysusers
(from rev 261441, varnish/trunk/varnish.sysusers)
Deleted:
  varnish/repos/extra-i686/PKGBUILD
  varnish/repos/extra-i686/varnish-vcl-reload
  varnish/repos/extra-i686/varnish.install
  varnish/repos/extra-i686/varnish.service
  varnish/repos/extra-i686/varnish.sysusers
  varnish/repos/extra-x86_64/PKGBUILD
  varnish/repos/extra-x86_64/varnish-vcl-reload
  varnish/repos/extra-x86_64/varnish.install
  varnish/repos/extra-x86_64/varnish.service
  varnish/repos/extra-x86_64/varnish.sysusers

-+
 /PKGBUILD   |  136 ++
 /varnish-vcl-reload |   40 +++
 /varnish.install|   44 
 /varnish.service|   30 
 /varnish.sysusers   |4 +
 extra-i686/PKGBUILD |   57 ---
 extra-i686/varnish-vcl-reload   |   20 -
 extra-i686/varnish.install  |   22 --
 extra-i686/varnish.service  |   15 
 extra-i686/varnish.sysusers |2 
 extra-x86_64/PKGBUILD   |   57 ---
 extra-x86_64/varnish-vcl-reload |   20 -
 extra-x86_64/varnish.install|   22 --
 extra-x86_64/varnish.service|   15 
 extra-x86_64/varnish.sysusers   |2 
 15 files changed, 254 insertions(+), 232 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-14 11:40:37 UTC (rev 261441)
+++ extra-i686/PKGBUILD 2016-03-14 11:41:21 UTC (rev 261442)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Douglas Soares de Andrade
-# Contributor: Roberto Alsina 
-
-pkgname=varnish
-pkgver=4.1.1
-pkgrel=1
-pkgdesc="High-performance HTTP accelerator"
-arch=('i686' 'x86_64')
-url="http://www.varnish-cache.org/";
-license=('BSD')
-depends=('gcc' 'libedit' 'pcre')
-makedepends=('python-docutils')
-optdepends=('python: needed for vmod development')
-backup=('etc/varnish/default.vcl')
-install=$pkgname.install
-source=("http://repo.varnish-cache.org/source/$pkgname-$pkgver.tar.gz";
-varnish-vcl-reload
-varnish.service
-varnish.sysusers)
-md5sums=('b53ce8ba828a2ea1623d4efa7c4886d1'
- 'b494b41b2a605f406abe63ed02dc117f'
- '8334d2e108695c121c41833b53838a05'
- 'da8263571f450e3c25fdd3c3b4a1e259')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---sbindir=/usr/bin
-
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -m755 "$srcdir/varnish-vcl-reload" "$pkgdir/usr/bin"
-  install -Dm644 "$srcdir/$pkgname.service" 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-
-  # create varnish:varnish user/group
-  install -Dm644 "$srcdir/$pkgname.sysusers" 
"$pkgdir/usr/lib/sysusers.d/varnish.conf"
-
-  # config
-  install -Dm644 "etc/example.vcl" "$pkgdir/etc/varnish/default.vcl"
-  install -Dm644 "etc/builtin.vcl" "$pkgdir/usr/share/doc/varnish/builtin.vcl"
-
-  # license
-  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: varnish/repos/extra-i686/PKGBUILD (from rev 261441, 
varnish/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-14 11:41:21 UTC (rev 261442)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Douglas Soares de Andrade
+# Contributor: Roberto Alsina 
+
+pkgname=varnish
+pkgver=4.1.2
+pkgrel=1
+pkgdesc="High-performance HTTP accelerator"
+arch=('i686' 'x86_64')
+url="http://www.varnish-cache.org/";
+license=('BSD')
+depends=('gcc' 'libedit' 'pcre')
+makedepends=('python-docutils')
+optdepends=('python: needed for vmod development')
+backup=('etc/varnish/default.vcl')
+i

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

2016-03-14 Thread Christian Hesse
Date: Monday, March 14, 2016 @ 12:46:36
  Author: eworm
Revision: 166721

upgpkg: libu2f-host 1.1.1-1

new upstream release

Modified:
  libu2f-host/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:22:33 UTC (rev 166720)
+++ PKGBUILD2016-03-14 11:46:36 UTC (rev 166721)
@@ -2,7 +2,7 @@
 # Maintainer: Christian Hesse 
 
 pkgname=libu2f-host
-pkgver=1.0.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc="Yubico Universal 2nd Factor (U2F) Host C Library"
 arch=('i686' 'x86_64')


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

2016-03-14 Thread Christian Hesse
Date: Monday, March 14, 2016 @ 12:46:44
  Author: eworm
Revision: 166722

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

Added:
  libu2f-host/repos/community-i686/PKGBUILD
(from rev 166721, libu2f-host/trunk/PKGBUILD)
  libu2f-host/repos/community-i686/libu2f-host.install
(from rev 166721, libu2f-host/trunk/libu2f-host.install)
  libu2f-host/repos/community-i686/makefile.patch
(from rev 166721, libu2f-host/trunk/makefile.patch)
  libu2f-host/repos/community-x86_64/PKGBUILD
(from rev 166721, libu2f-host/trunk/PKGBUILD)
  libu2f-host/repos/community-x86_64/libu2f-host.install
(from rev 166721, libu2f-host/trunk/libu2f-host.install)
  libu2f-host/repos/community-x86_64/makefile.patch
(from rev 166721, libu2f-host/trunk/makefile.patch)
Deleted:
  libu2f-host/repos/community-i686/PKGBUILD
  libu2f-host/repos/community-i686/libu2f-host.install
  libu2f-host/repos/community-i686/makefile.patch
  libu2f-host/repos/community-x86_64/PKGBUILD
  libu2f-host/repos/community-x86_64/libu2f-host.install
  libu2f-host/repos/community-x86_64/makefile.patch

--+
 /PKGBUILD|  100 +
 /libu2f-host.install |   30 +
 /makefile.patch  |   52 +
 community-i686/PKGBUILD  |   50 
 community-i686/libu2f-host.install   |   15 
 community-i686/makefile.patch|   26 
 community-x86_64/PKGBUILD|   50 
 community-x86_64/libu2f-host.install |   15 
 community-x86_64/makefile.patch  |   26 
 9 files changed, 182 insertions(+), 182 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 11:46:36 UTC (rev 166721)
+++ community-i686/PKGBUILD 2016-03-14 11:46:44 UTC (rev 166722)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-
-pkgname=libu2f-host
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="Yubico Universal 2nd Factor (U2F) Host C Library"
-arch=('i686' 'x86_64')
-url='https://github.com/Yubico/libu2f-host'
-license=('BSD')
-depends=('json-c' 'hidapi')
-makedepends=('git' 'help2man' 'gtk-doc' 'gengetopt')
-install=libu2f-host.install
-source=("git://github.com/Yubico/libu2f-host.git#tag=libu2f-host-${pkgver}"
-   'makefile.patch')
-sha256sums=('SKIP'
-'15355aade08033f8373d85017534297ebceb4e2874334109a24e368aea7ac2c0')
-
-prepare() {
-   cd libu2f-host/
-
-   patch -Np1 < "${srcdir}/makefile.patch"
-}
-
-build() {
-   cd libu2f-host/
-
-   autoreconf -fi
-   ./configure \
-   --prefix=/usr \
-   --enable-gtk-doc \
-   --with-udevrulesdir=/usr/lib/udev/rules.d/
-   make
-}
-
-
-check() {
-   cd libu2f-host/
-
-   make check
-}
-
-package() {
-   cd libu2f-host/
-
-   make DESTDIR="${pkgdir}/" install
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-

Copied: libu2f-host/repos/community-i686/PKGBUILD (from rev 166721, 
libu2f-host/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 11:46:44 UTC (rev 166722)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Christian Hesse 
+
+pkgname=libu2f-host
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Yubico Universal 2nd Factor (U2F) Host C Library"
+arch=('i686' 'x86_64')
+url='https://github.com/Yubico/libu2f-host'
+license=('BSD')
+depends=('json-c' 'hidapi')
+makedepends=('git' 'help2man' 'gtk-doc' 'gengetopt')
+install=libu2f-host.install
+source=("git://github.com/Yubico/libu2f-host.git#tag=libu2f-host-${pkgver}"
+   'makefile.patch')
+sha256sums=('SKIP'
+'15355aade08033f8373d85017534297ebceb4e2874334109a24e368aea7ac2c0')
+
+prepare() {
+   cd libu2f-host/
+
+   patch -Np1 < "${srcdir}/makefile.patch"
+}
+
+build() {
+   cd libu2f-host/
+
+   autoreconf -fi
+   ./configure \
+   --prefix=/usr \
+   --enable-gtk-doc \
+   --with-udevrulesdir=/usr/lib/udev/rules.d/
+   make
+}
+
+
+check() {
+   cd libu2f-host/
+
+   make check
+}
+
+package() {
+   cd libu2f-host/
+
+   make DESTDIR="${pkgdir}/" install
+
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+

Deleted: community-i686/libu2f-host.install
===
--- community-i686/libu2f-host.install  2016-03-14 11:46:36 UTC (rev 166721)
+++ community-i686/libu2f-host.install  2016-03-14 11:46:44 UTC (rev 166722)
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-post_upgrade() {
-   if systemctl -q is-active systemd-udevd; then
-   udevadm control --reload-rules
-   fi
-}
-
-post_install() {
-   post_upgrade
-}
-
-post_remove() {
- 

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

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 12:58:53
  Author: spupykin
Revision: 166723

upgpkg: bmake 20160307-1

upd

Modified:
  bmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:46:44 UTC (rev 166722)
+++ PKGBUILD2016-03-14 11:58:53 UTC (rev 166723)
@@ -3,7 +3,7 @@
 # Contributor: Imanol Celaya 
 
 pkgname=bmake
-pkgver=20160220
+pkgver=20160307
 pkgrel=1
 pkgdesc="Portable version of the NetBSD 'make' build tool"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 url="http://www.crufty.net/help/sjg/bmake.html";
 license=('BSD')
 source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz";)
-md5sums=('dee8fe78482c0b1cfb12b6f6ab9270a6')
+md5sums=('1a9fa614fc1919f4a8be6deab28ed777')
 
 prepare() {
 cd "$srcdir/$pkgname"


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

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 12:59:10
  Author: spupykin
Revision: 166724

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 11:58:53 UTC (rev 166723)
+++ community-i686/PKGBUILD 2016-03-14 11:59:10 UTC (rev 166724)
@@ -1,38 +0,0 @@
-# Maintainer: Alex Szczuczko 
-# Contributor: Devin Cofer 
-# Contributor: Imanol Celaya 
-
-pkgname=bmake
-pkgver=20160220
-pkgrel=1
-pkgdesc="Portable version of the NetBSD 'make' build tool"
-arch=('i686' 'x86_64')
-url="http://www.crufty.net/help/sjg/bmake.html";
-license=('BSD')
-source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz";)
-md5sums=('dee8fe78482c0b1cfb12b6f6ab9270a6')
-
-prepare() {
-cd "$srcdir/$pkgname"
-# Add missing bsd.*.mk symlinks
-_links_orig="dep doc init lib links man nls obj own prog subdir"
-_links_new="dep doc inc init lib links man nls obj own prog subdir"
-sed -i -e "s/$_links_orig/$_links_new/" mk/install-mk
-}
-
-build() {
-cd "$srcdir"
-mkdir -p bmake-build
-cd bmake-build
-sh ../bmake/boot-strap --prefix=/usr
-}
-
-package() {
-cd "$srcdir/bmake-build"
-# Fix directory permissions on install
-install -dm0755 "$pkgdir/usr/bin"
-install -dm0755 "$pkgdir/usr/share/man/cat1"
-install -dm0755 "$pkgdir/usr/share/licenses/$pkgname"
-sh ../bmake/boot-strap --prefix=/usr --install-destdir="$pkgdir" op=install
-head -n70 ../bmake/main.c >$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: bmake/repos/community-i686/PKGBUILD (from rev 166723, 
bmake/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 11:59:10 UTC (rev 166724)
@@ -0,0 +1,38 @@
+# Maintainer: Alex Szczuczko 
+# Contributor: Devin Cofer 
+# Contributor: Imanol Celaya 
+
+pkgname=bmake
+pkgver=20160307
+pkgrel=1
+pkgdesc="Portable version of the NetBSD 'make' build tool"
+arch=('i686' 'x86_64')
+url="http://www.crufty.net/help/sjg/bmake.html";
+license=('BSD')
+source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz";)
+md5sums=('1a9fa614fc1919f4a8be6deab28ed777')
+
+prepare() {
+cd "$srcdir/$pkgname"
+# Add missing bsd.*.mk symlinks
+_links_orig="dep doc init lib links man nls obj own prog subdir"
+_links_new="dep doc inc init lib links man nls obj own prog subdir"
+sed -i -e "s/$_links_orig/$_links_new/" mk/install-mk
+}
+
+build() {
+cd "$srcdir"
+mkdir -p bmake-build
+cd bmake-build
+sh ../bmake/boot-strap --prefix=/usr
+}
+
+package() {
+cd "$srcdir/bmake-build"
+# Fix directory permissions on install
+install -dm0755 "$pkgdir/usr/bin"
+install -dm0755 "$pkgdir/usr/share/man/cat1"
+install -dm0755 "$pkgdir/usr/share/licenses/$pkgname"
+sh ../bmake/boot-strap --prefix=/usr --install-destdir="$pkgdir" op=install
+head -n70 ../bmake/main.c >$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-14 11:58:53 UTC (rev 166723)
+++ community-x86_64/PKGBUILD   2016-03-14 11:59:10 UTC (rev 166724)
@@ -1,38 +0,0 @@
-# Maintainer: Alex Szczuczko 
-# Contributor: Devin Cofer 
-# Contributor: Imanol Celaya 
-
-pkgname=bmake
-pkgver=20160220
-pkgrel=1
-pkgdesc="Portable version of the NetBSD 'make' build tool"
-arch=('i686' 'x86_64')
-url="http://www.crufty.net/help/sjg/bmake.html";
-license=('BSD')
-source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz";)
-md5sums=('dee8fe78482c0b1cfb12b6f6ab9270a6')
-
-prepare() {
-cd "$srcdir/$pkgname"
-# Add missing bsd.*.mk symlinks
-_links_orig="dep doc init lib links man nls obj own prog subdir"
-_links_new="dep doc inc init lib links man nls obj own prog subdir"
-sed -i -e "s/$_links_orig/$_links_new/" mk/install-mk
-}
-
-build() {
-cd "$srcdir"
-mkdir -p bmake-build
-cd bmake-build
-sh ../bmake/boot-strap --prefix=/usr
-}
-
-package() {
-cd "$srcdir/bmake-build"
-# Fix directory permissions on install
-install -dm0755 "$pkgdir/usr/bin"
-install -dm0755 "$pkgdir/usr/share/man/cat1"
-install -dm0755 "$pkgdir/usr/share/licenses/$pkgname"
-sh ../bmake/boot-strap --prefix=/usr --install-d

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

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 12:59:23
  Author: spupykin
Revision: 166726

archrelease: copy trunk to community-any

Added:
  devede/repos/community-any/PKGBUILD
(from rev 166725, devede/trunk/PKGBUILD)
  devede/repos/community-any/locale.patch
(from rev 166725, devede/trunk/locale.patch)
Deleted:
  devede/repos/community-any/PKGBUILD
  devede/repos/community-any/help.patch

--+
 PKGBUILD |   60 -
 help.patch   |   33 ---
 locale.patch |   57 ++
 3 files changed, 87 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 11:59:14 UTC (rev 166725)
+++ PKGBUILD2016-03-14 11:59:23 UTC (rev 166726)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Javier 'Phrodo_00' Aravena 
-# Maintainer: Daniel J Griffiths 
-
-pkgname=devede
-pkgver=4.5.0
-pkgrel=1
-pkgdesc="A program to create VideoDVDs and CDs"
-arch=('any')
-url="http://www.rastersoft.com/programas/devede.html";
-license=('GPL3')
-depends=('mplayer' 'mencoder' 'ffmpeg' 'dvdauthor' 'vcdimager'
-'cdrkit' 'ttf-dejavu'
-'gtk3' 'python-cairo' 'python-gobject' 'python-setuptools')
-source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz
-help.patch)
-md5sums=('f53b5067025d7f0e355f9aa09c933d6f'
- '91c510680c6809367e0a318ec2777c54')
-
-prepare() {
-  cd ${srcdir}/${pkgname}ng-$pkgver
-#  patch -Np1 -i ${srcdir}/help.patch
-}
-
-package() {
-  cd ${srcdir}/${pkgname}ng-$pkgver
-  python setup.py install --root=${pkgdir}
-}

Copied: devede/repos/community-any/PKGBUILD (from rev 166725, 
devede/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 11:59:23 UTC (rev 166726)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Javier 'Phrodo_00' Aravena 
+# Maintainer: Daniel J Griffiths 
+
+pkgname=devede
+pkgver=4.6.0
+pkgrel=1
+pkgdesc="A program to create VideoDVDs and CDs"
+arch=('any')
+url="http://www.rastersoft.com/programas/devede.html";
+license=('GPL3')
+depends=('mplayer' 'mencoder' 'ffmpeg' 'dvdauthor' 'vcdimager'
+'cdrkit' 'ttf-dejavu'
+'gtk3' 'python-cairo' 'python-gobject' 'python-setuptools')
+source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz
+   locale.patch)
+md5sums=('8a910b3b5f4741a1d27b0244b33523ca'
+ 'f59565a12684b80583ca12ebe12aa624')
+
+prepare() {
+  cd ${srcdir}/${pkgname}ng-$pkgver
+  patch -p1 <$srcdir/locale.patch
+}
+
+package() {
+  cd ${srcdir}/${pkgname}ng-$pkgver
+  python setup.py install --root=${pkgdir}
+}

Deleted: help.patch
===
--- help.patch  2016-03-14 11:59:14 UTC (rev 166725)
+++ help.patch  2016-03-14 11:59:23 UTC (rev 166726)
@@ -1,33 +0,0 @@
-From 58776ef1b6d88a79b03892b72bac625a60e293b8 Mon Sep 17 00:00:00 2001
-From: Sergio Costas 
-Date: Wed, 28 Oct 2015 16:28:53 +0100
-Subject: [PATCH] Added forgoten file help.py
-

- src/devedeng/help.py | 17 +
- 1 file changed, 17 insertions(+)
- create mode 100644 src/devedeng/help.py
-
-diff --git a/src/devedeng/help.py b/src/devedeng/help.py
-new file mode 100644
-index 000..796bd9e
 /dev/null
-+++ b/src/devedeng/help.py
-@@ -0,0 +1,17 @@
-+#!/usr/bin/env python3
-+
-+from gi.repository import Gtk,Gdk
-+import devedeng.configuration_data
-+import os
-+
-+class help:
-+
-+def __init__(self,help_page):
-+
-+self.config = devedeng.configuration_data.configuration.get_config()
-+
-+file="file://"+os.path.join(self.config.help_path,"html",help_page)
-+
-+retval = Gtk.show_uri(None,file,Gdk.CURRENT_TIME)
-+if retval == False:
-+msg=devede_dialogs.show_error(gladefile,_("Can't open the help 
files."))

Copied: devede/repos/community-any/locale.patch (from rev 166725, 
devede/trunk/locale.patch)
===
--- locale.patch(rev 0)
+++ locale.patch2016-03-14 11:59:23 UTC (rev 166726)
@@ -0,0 +1,57 @@
+diff -wbBur devedeng-4.6.0/po/es.po devedeng-4.6.0.q/po/es.po
+--- devedeng-4.6.0/po/es.po2016-03-13 22:00:16.0 +0300
 devedeng-4.6.0.q/po/es.po  2016-03-14 14:54:52.127234097 +0300
+@@ -1027,10 +1027,6 @@
+ "Matroska / H.264\n"
+ "Crea ficheros H.264 en un contenedor MKV"
+ 
+-#: ../data/interface/wselect_disk.ui.h:15
+-msgid "Programs needed by Devede NG"
+-msgstr "Programas necesarios para Devede NG"
+-
+ #: ../data/interface/wsettings.ui.h:1
+ msgid "Multicore CPUs"
+ msgstr "CPUs multinúcleo"
+Only in devedeng-4.6.0.q/po: es.po~
+d

[arch-commits] Commit in devede/trunk (PKGBUILD help.patch locale.patch)

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 12:59:14
  Author: spupykin
Revision: 166725

upgpkg: devede 4.6.0-1

upd

Added:
  devede/trunk/locale.patch
Modified:
  devede/trunk/PKGBUILD
Deleted:
  devede/trunk/help.patch

--+
 PKGBUILD |   10 +-
 help.patch   |   33 -
 locale.patch |   57 +
 3 files changed, 62 insertions(+), 38 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:59:10 UTC (rev 166724)
+++ PKGBUILD2016-03-14 11:59:14 UTC (rev 166725)
@@ -5,7 +5,7 @@
 # Maintainer: Daniel J Griffiths 
 
 pkgname=devede
-pkgver=4.5.0
+pkgver=4.6.0
 pkgrel=1
 pkgdesc="A program to create VideoDVDs and CDs"
 arch=('any')
@@ -15,13 +15,13 @@
 'cdrkit' 'ttf-dejavu'
 'gtk3' 'python-cairo' 'python-gobject' 'python-setuptools')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz
-help.patch)
-md5sums=('f53b5067025d7f0e355f9aa09c933d6f'
- '91c510680c6809367e0a318ec2777c54')
+   locale.patch)
+md5sums=('8a910b3b5f4741a1d27b0244b33523ca'
+ 'f59565a12684b80583ca12ebe12aa624')
 
 prepare() {
   cd ${srcdir}/${pkgname}ng-$pkgver
-#  patch -Np1 -i ${srcdir}/help.patch
+  patch -p1 <$srcdir/locale.patch
 }
 
 package() {

Deleted: help.patch
===
--- help.patch  2016-03-14 11:59:10 UTC (rev 166724)
+++ help.patch  2016-03-14 11:59:14 UTC (rev 166725)
@@ -1,33 +0,0 @@
-From 58776ef1b6d88a79b03892b72bac625a60e293b8 Mon Sep 17 00:00:00 2001
-From: Sergio Costas 
-Date: Wed, 28 Oct 2015 16:28:53 +0100
-Subject: [PATCH] Added forgoten file help.py
-

- src/devedeng/help.py | 17 +
- 1 file changed, 17 insertions(+)
- create mode 100644 src/devedeng/help.py
-
-diff --git a/src/devedeng/help.py b/src/devedeng/help.py
-new file mode 100644
-index 000..796bd9e
 /dev/null
-+++ b/src/devedeng/help.py
-@@ -0,0 +1,17 @@
-+#!/usr/bin/env python3
-+
-+from gi.repository import Gtk,Gdk
-+import devedeng.configuration_data
-+import os
-+
-+class help:
-+
-+def __init__(self,help_page):
-+
-+self.config = devedeng.configuration_data.configuration.get_config()
-+
-+file="file://"+os.path.join(self.config.help_path,"html",help_page)
-+
-+retval = Gtk.show_uri(None,file,Gdk.CURRENT_TIME)
-+if retval == False:
-+msg=devede_dialogs.show_error(gladefile,_("Can't open the help 
files."))

Added: locale.patch
===
--- locale.patch(rev 0)
+++ locale.patch2016-03-14 11:59:14 UTC (rev 166725)
@@ -0,0 +1,57 @@
+diff -wbBur devedeng-4.6.0/po/es.po devedeng-4.6.0.q/po/es.po
+--- devedeng-4.6.0/po/es.po2016-03-13 22:00:16.0 +0300
 devedeng-4.6.0.q/po/es.po  2016-03-14 14:54:52.127234097 +0300
+@@ -1027,10 +1027,6 @@
+ "Matroska / H.264\n"
+ "Crea ficheros H.264 en un contenedor MKV"
+ 
+-#: ../data/interface/wselect_disk.ui.h:15
+-msgid "Programs needed by Devede NG"
+-msgstr "Programas necesarios para Devede NG"
+-
+ #: ../data/interface/wsettings.ui.h:1
+ msgid "Multicore CPUs"
+ msgstr "CPUs multinúcleo"
+Only in devedeng-4.6.0.q/po: es.po~
+diff -wbBur devedeng-4.6.0/po/gl.po devedeng-4.6.0.q/po/gl.po
+--- devedeng-4.6.0/po/gl.po2016-03-13 22:00:16.0 +0300
 devedeng-4.6.0.q/po/gl.po  2016-03-14 14:54:36.563900382 +0300
+@@ -1026,10 +1026,6 @@
+ "Matroska / H.264\n"
+ "Crea ficheiros H.264 nun contedor MKV"
+ 
+-#: ../data/interface/wselect_disk.ui.h:15
+-msgid "Programs needed by Devede NG"
+-msgstr "Programas necesarios para Devede NG"
+-
+ #: ../data/interface/wsettings.ui.h:1
+ msgid "Multicore CPUs"
+ msgstr "CPU multinúcleo"
+diff -wbBur devedeng-4.6.0/po/it_IT.po devedeng-4.6.0.q/po/it_IT.po
+--- devedeng-4.6.0/po/it_IT.po 2016-03-13 22:00:16.0 +0300
 devedeng-4.6.0.q/po/it_IT.po   2016-03-14 14:54:45.310567263 +0300
+@@ -1024,10 +1024,6 @@
+ "Matroska / H.264\n"
+ "Crea file H.264 in un contenitore MKV"
+ 
+-#: ../data/interface/wselect_disk.ui.h:15
+-msgid "Programs needed by Devede NG"
+-msgstr "Programmi necessari a Devede NG"
+-
+ #: ../data/interface/wsettings.ui.h:1
+ msgid "Multicore CPUs"
+ msgstr "CPU multicore"
+diff -wbBur devedeng-4.6.0/po/sk.po devedeng-4.6.0.q/po/sk.po
+--- devedeng-4.6.0/po/sk.po2016-03-13 22:00:16.0 +0300
 devedeng-4.6.0.q/po/sk.po  2016-03-14 14:54:10.133899737 +0300
+@@ -1026,10 +1026,6 @@
+ "Matroska / H.264\n"
+ "Vytvorí súbory vo formáte H.264 v kontajneri MKV"
+ 
+-#: ../data/interface/wselect_disk.ui.h:15
+-msgid "Programs needed by Devede NG"
+-msgstr "Programy vyžadované aplikáciou Devede NG"
+-
+ #: ../data/interface/wsettings.ui.h:1
+ msgid "Multicore CPUs"
+ msgstr "Viacjadrové procesory"


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

2016-03-14 Thread Jan de Groot
Date: Monday, March 14, 2016 @ 12:59:54
  Author: jgc
Revision: 261443

upgpkg: glib-perl 1.321-1

Modified:
  glib-perl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:41:21 UTC (rev 261442)
+++ PKGBUILD2016-03-14 11:59:54 UTC (rev 261443)
@@ -3,7 +3,7 @@
 # Contributor: Sarah Hay 
 
 pkgname=glib-perl
-pkgver=1.308
+pkgver=1.321
 pkgrel=1
 pkgdesc="Perl wrappers for glib 2.x, including GObject"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=('glib2' 'perl')
 makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
 
source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Glib-${pkgver}.tar.gz)
-md5sums=('5ddcfc49058f6fec128f106943b19ff5')
+md5sums=('a3b09b64dd838dc22c53270aa79b851a')
 
 build() {
   cd Glib-$pkgver


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

2016-03-14 Thread Jan de Groot
Date: Monday, March 14, 2016 @ 13:00:01
  Author: jgc
Revision: 261444

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

Added:
  glib-perl/repos/extra-i686/PKGBUILD
(from rev 261443, glib-perl/trunk/PKGBUILD)
  glib-perl/repos/extra-x86_64/PKGBUILD
(from rev 261443, glib-perl/trunk/PKGBUILD)
Deleted:
  glib-perl/repos/extra-i686/PKGBUILD
  glib-perl/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-14 11:59:54 UTC (rev 261443)
+++ extra-i686/PKGBUILD 2016-03-14 12:00:01 UTC (rev 261444)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Sarah Hay 
-
-pkgname=glib-perl
-pkgver=1.308
-pkgrel=1
-pkgdesc="Perl wrappers for glib 2.x, including GObject"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://gtk2-perl.sourceforge.net/";
-options=('!emptydirs')
-depends=('glib2' 'perl')
-makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Glib-${pkgver}.tar.gz)
-md5sums=('5ddcfc49058f6fec128f106943b19ff5')
-
-build() {
-  cd Glib-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Glib-$pkgver
-  make test
-}
-
-package() {
-  cd Glib-$pkgver
-  make DESTDIR="${pkgdir}" install
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: glib-perl/repos/extra-i686/PKGBUILD (from rev 261443, 
glib-perl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-14 12:00:01 UTC (rev 261444)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sarah Hay 
+
+pkgname=glib-perl
+pkgver=1.321
+pkgrel=1
+pkgdesc="Perl wrappers for glib 2.x, including GObject"
+arch=(i686 x86_64)
+license=('LGPL')
+url="http://gtk2-perl.sourceforge.net/";
+options=('!emptydirs')
+depends=('glib2' 'perl')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Glib-${pkgver}.tar.gz)
+md5sums=('a3b09b64dd838dc22c53270aa79b851a')
+
+build() {
+  cd Glib-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Glib-$pkgver
+  make test
+}
+
+package() {
+  cd Glib-$pkgver
+  make DESTDIR="${pkgdir}" install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-03-14 11:59:54 UTC (rev 261443)
+++ extra-x86_64/PKGBUILD   2016-03-14 12:00:01 UTC (rev 261444)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Sarah Hay 
-
-pkgname=glib-perl
-pkgver=1.308
-pkgrel=1
-pkgdesc="Perl wrappers for glib 2.x, including GObject"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://gtk2-perl.sourceforge.net/";
-options=('!emptydirs')
-depends=('glib2' 'perl')
-makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Glib-${pkgver}.tar.gz)
-md5sums=('5ddcfc49058f6fec128f106943b19ff5')
-
-build() {
-  cd Glib-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Glib-$pkgver
-  make test
-}
-
-package() {
-  cd Glib-$pkgver
-  make DESTDIR="${pkgdir}" install
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: glib-perl/repos/extra-x86_64/PKGBUILD (from rev 261443, 
glib-perl/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-03-14 12:00:01 UTC (rev 261444)
@@ -0,0 +1,4

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

2016-03-14 Thread Jan de Groot
Date: Monday, March 14, 2016 @ 13:04:31
  Author: jgc
Revision: 261445

upgpkg: pango-perl 1.227-1

Modified:
  pango-perl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 12:00:01 UTC (rev 261444)
+++ PKGBUILD2016-03-14 12:04:31 UTC (rev 261445)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=pango-perl
-pkgver=1.226
-pkgrel=2
+pkgver=1.227
+pkgrel=1
 pkgdesc="Perl bindings for Pango"
 arch=(i686 x86_64)
 license=('LGPL')
@@ -13,7 +13,7 @@
 depends=('pango' 'glib-perl' 'cairo-perl')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
-md5sums=('9ff2dee3cc1d37563ea98b91a45e6ba1')
+md5sums=('cc5d7ca7780adcc5cee7cc41f2fc0440')
 
 build() {
   cd Pango-$pkgver


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

2016-03-14 Thread Jan de Groot
Date: Monday, March 14, 2016 @ 13:04:39
  Author: jgc
Revision: 261446

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

Added:
  pango-perl/repos/extra-i686/PKGBUILD
(from rev 261445, pango-perl/trunk/PKGBUILD)
  pango-perl/repos/extra-x86_64/PKGBUILD
(from rev 261445, pango-perl/trunk/PKGBUILD)
Deleted:
  pango-perl/repos/extra-i686/PKGBUILD
  pango-perl/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-14 12:04:31 UTC (rev 261445)
+++ extra-i686/PKGBUILD 2016-03-14 12:04:39 UTC (rev 261446)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=pango-perl
-pkgver=1.226
-pkgrel=2
-pkgdesc="Perl bindings for Pango"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://gtk2-perl.sourceforge.net/";
-makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
-checkdepends=('gtk2-perl' 'xorg-server-xvfb')
-depends=('pango' 'glib-perl' 'cairo-perl')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
-md5sums=('9ff2dee3cc1d37563ea98b91a45e6ba1')
-
-build() {
-  cd Pango-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Pango-$pkgver
-  xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" make test
-}
-
-package() {
-  cd Pango-$pkgver
-  make install DESTDIR="${pkgdir}"
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: pango-perl/repos/extra-i686/PKGBUILD (from rev 261445, 
pango-perl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-14 12:04:39 UTC (rev 261446)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=pango-perl
+pkgver=1.227
+pkgrel=1
+pkgdesc="Perl bindings for Pango"
+arch=(i686 x86_64)
+license=('LGPL')
+url="http://gtk2-perl.sourceforge.net/";
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+checkdepends=('gtk2-perl' 'xorg-server-xvfb')
+depends=('pango' 'glib-perl' 'cairo-perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
+md5sums=('cc5d7ca7780adcc5cee7cc41f2fc0440')
+
+build() {
+  cd Pango-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Pango-$pkgver
+  xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" make test
+}
+
+package() {
+  cd Pango-$pkgver
+  make install DESTDIR="${pkgdir}"
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-03-14 12:04:31 UTC (rev 261445)
+++ extra-x86_64/PKGBUILD   2016-03-14 12:04:39 UTC (rev 261446)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=pango-perl
-pkgver=1.226
-pkgrel=2
-pkgdesc="Perl bindings for Pango"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://gtk2-perl.sourceforge.net/";
-makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
-checkdepends=('gtk2-perl' 'xorg-server-xvfb')
-depends=('pango' 'glib-perl' 'cairo-perl')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
-md5sums=('9ff2dee3cc1d37563ea98b91a45e6ba1')
-
-build() {
-  cd Pango-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Pango-$pkgver
-  xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" make test
-}
-
-package() {
-  cd Pango-$pkgver
-  make install DESTDIR="${pkgdir}"
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: 

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

2016-03-14 Thread Jan de Groot
Date: Monday, March 14, 2016 @ 13:09:49
  Author: jgc
Revision: 261447

upgpkg: gtk2-perl 1.2498-1

Modified:
  gtk2-perl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 12:04:39 UTC (rev 261446)
+++ PKGBUILD2016-03-14 12:09:49 UTC (rev 261447)
@@ -3,7 +3,7 @@
 # Contributor: Sarah Hay 
 
 pkgname=gtk2-perl
-pkgver=1.2497
+pkgver=1.2498
 pkgrel=1
 pkgdesc="Perl bindings for GTK+ 2.x"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 checkdepends=('ttf-dejavu' 'xorg-server-xvfb')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gtk2-${pkgver}.tar.gz)
-md5sums=('4c723b34d3dffbffd5415f1242a04324')
+md5sums=('6283be729ae8a45cfba26eedb62fa582')
 
 prepare() {
   cd Gtk2-$pkgver


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

2016-03-14 Thread Jan de Groot
Date: Monday, March 14, 2016 @ 13:09:57
  Author: jgc
Revision: 261448

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

Added:
  gtk2-perl/repos/extra-i686/PKGBUILD
(from rev 261447, gtk2-perl/trunk/PKGBUILD)
  gtk2-perl/repos/extra-x86_64/PKGBUILD
(from rev 261447, gtk2-perl/trunk/PKGBUILD)
Deleted:
  gtk2-perl/repos/extra-i686/PKGBUILD
  gtk2-perl/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-14 12:09:49 UTC (rev 261447)
+++ extra-i686/PKGBUILD 2016-03-14 12:09:57 UTC (rev 261448)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Sarah Hay 
-
-pkgname=gtk2-perl
-pkgver=1.2497
-pkgrel=1
-pkgdesc="Perl bindings for GTK+ 2.x"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://gtk2-perl.sourceforge.net/";
-makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
-depends=('gtk2' 'pango-perl')
-checkdepends=('ttf-dejavu' 'xorg-server-xvfb')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gtk2-${pkgver}.tar.gz)
-md5sums=('4c723b34d3dffbffd5415f1242a04324')
-
-prepare() {
-  cd Gtk2-$pkgver
-  # Disable failing test. Doesn't work for several versions, might be related 
to Xvfb too
-  #sed -e 's/gnome-foot.png/gnome-foot2.png/' -i t/GdkPixbufLoader.t
-}
-
-build() {
-  cd Gtk2-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-#check() {
-#  cd Gtk2-$pkgver
-#  xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" make test
-#}
-
-package() {
-  cd Gtk2-$pkgver
-  make install DESTDIR="${pkgdir}"
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: gtk2-perl/repos/extra-i686/PKGBUILD (from rev 261447, 
gtk2-perl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-14 12:09:57 UTC (rev 261448)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sarah Hay 
+
+pkgname=gtk2-perl
+pkgver=1.2498
+pkgrel=1
+pkgdesc="Perl bindings for GTK+ 2.x"
+arch=(i686 x86_64)
+license=('LGPL')
+url="http://gtk2-perl.sourceforge.net/";
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gtk2' 'pango-perl')
+checkdepends=('ttf-dejavu' 'xorg-server-xvfb')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gtk2-${pkgver}.tar.gz)
+md5sums=('6283be729ae8a45cfba26eedb62fa582')
+
+prepare() {
+  cd Gtk2-$pkgver
+  # Disable failing test. Doesn't work for several versions, might be related 
to Xvfb too
+  #sed -e 's/gnome-foot.png/gnome-foot2.png/' -i t/GdkPixbufLoader.t
+}
+
+build() {
+  cd Gtk2-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+#check() {
+#  cd Gtk2-$pkgver
+#  xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" make test
+#}
+
+package() {
+  cd Gtk2-$pkgver
+  make install DESTDIR="${pkgdir}"
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-03-14 12:09:49 UTC (rev 261447)
+++ extra-x86_64/PKGBUILD   2016-03-14 12:09:57 UTC (rev 261448)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Sarah Hay 
-
-pkgname=gtk2-perl
-pkgver=1.2497
-pkgrel=1
-pkgdesc="Perl bindings for GTK+ 2.x"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://gtk2-perl.sourceforge.net/";
-makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
-depends=('gtk2' 'pango-perl')
-checkdepends=('ttf-dejavu' 'xorg-server-xvfb')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gtk2-${pkgver}.tar.gz)
-md5sums=('4c723b34d3dffbffd5415f1242a04324')
-
-prepare() {
-  cd Gtk2-$pkgver
-  # Disable failing test. Doesn't work for several versions, might be related 
to Xvfb too
-  #sed -e 's/gnome-foot.png/gnome-foot2.png/' -i t/GdkPixbufLoader.t
-}
-
-build() {
-  cd Gtk2-$pkgver
-

[arch-commits] Commit in iptables/trunk (PKGBUILD iptables_upstream940.patch)

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 13:39:46
  Author: bpiotrowski
Revision: 261449

upgpkg: iptables 1.6.0-1

new upstream release

Modified:
  iptables/trunk/PKGBUILD
Deleted:
  iptables/trunk/iptables_upstream940.patch

+
 PKGBUILD   |   15 ++--
 iptables_upstream940.patch |   79 ---
 2 files changed, 5 insertions(+), 89 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 12:09:57 UTC (rev 261448)
+++ PKGBUILD2016-03-14 12:39:46 UTC (rev 261449)
@@ -3,16 +3,15 @@
 # Contributor: Thomas Baechler 
 
 pkgname=iptables
-pkgver=1.4.21
-pkgrel=3
+pkgver=1.6.0
+pkgrel=1
 pkgdesc='Linux kernel packet control tool'
 arch=('i686' 'x86_64')
 license=('GPL2')
 url='http://www.netfilter.org/projects/iptables/index.html'
-depends=('glibc' 'bash')
+depends=('glibc' 'bash' 'libnftnl')
 makedepends=('linux-api-headers')
 
source=(http://www.netfilter.org/projects/iptables/files/${pkgname}-${pkgver}.tar.bz2{,.sig}
 \
-iptables_upstream940.patch
 empty.rules
 simple_firewall.rules
 empty-filter.rules
@@ -23,9 +22,8 @@
 iptables.service
 ip6tables.service
 iptables-flush)
-sha1sums=('85d4160537546a23a7e42bc26dd7ee62a0ede4c8'
+sha1sums=('21a694e75b0d6863cc001f85fb15915d12b8cc22'
   'SKIP'
-  '4914485dd940840849a9ddbefef0aa87e1505019'
   '83b3363878e3660ce23b2ad325b53cbd6c796ecf'
   'f085a71f467e4d7cb2cf094d9369b0bcc4bab6ec'
   'd9f9f06b46b4187648e860afa0552335aafe3ce4'
@@ -36,7 +34,7 @@
   '49be9443fc302dd0fda78b63d64e884cadb61603'
   '635ba179aeed0c06af0c8b0dba3935f6267e608b'
   'e7abda09c61142121b6695928d3b71ccd8fdf73a')
-validpgpkeys=('57FF5E9C9AA67A860B557AF7A4111F89BB5F58CC') # Netfilter Core Team
+validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -43,9 +41,6 @@
 
   # use system one
   rm include/linux/types.h
-  
-  # https://bugzilla.netfilter.org/show_bug.cgi?id=940
-  patch -Np1 -i "${srcdir}/iptables_upstream940.patch"
 }
 
 build() {

Deleted: iptables_upstream940.patch
===
--- iptables_upstream940.patch  2016-03-14 12:09:57 UTC (rev 261448)
+++ iptables_upstream940.patch  2016-03-14 12:39:46 UTC (rev 261449)
@@ -1,79 +0,0 @@
-From 2192c3a37a6470d353def75fb9c7c6593c3b9aec Mon Sep 17 00:00:00 2001
-From: Florian Westphal 
-Date: Thu, 19 Feb 2015 12:28:18 +0100
-Subject: [PATCH] extensions: SNPT,DNPT: fix save/print output
-
-wrong placement of ' ', i.e. we get
--j SNPT--src-pfx dead::/64 --dst-pfx 1c3::/64
-
-Signed-off-by: Florian Westphal 

- extensions/libip6t_DNPT.c | 8 
- extensions/libip6t_SNPT.c | 8 
- 2 files changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/extensions/libip6t_DNPT.c b/extensions/libip6t_DNPT.c
-index a442de6..d045e44 100644
 a/extensions/libip6t_DNPT.c
-+++ b/extensions/libip6t_DNPT.c
-@@ -52,9 +52,9 @@ static void DNPT_print(const void *ip, const struct 
xt_entry_target *target,
- {
-   const struct ip6t_npt_tginfo *npt = (const void *)target->data;
- 
--  printf("src-pfx %s/%u ", xtables_ip6addr_to_numeric(&npt->src_pfx.in6),
-+  printf(" DNPT src-pfx %s/%u", 
xtables_ip6addr_to_numeric(&npt->src_pfx.in6),
-npt->src_pfx_len);
--  printf("dst-pfx %s/%u ", xtables_ip6addr_to_numeric(&npt->dst_pfx.in6),
-+  printf(" dst-pfx %s/%u", xtables_ip6addr_to_numeric(&npt->dst_pfx.in6),
-npt->dst_pfx_len);
- }
- 
-@@ -65,12 +65,12 @@ static void DNPT_save(const void *ip, const struct 
xt_entry_target *target)
- 
-   if (memcmp(&info->src_pfx.in6, &zero_addr, sizeof(zero_addr)) != 0 ||
-   info->src_pfx_len != 0)
--  printf("--src-pfx %s/%u ",
-+  printf(" --src-pfx %s/%u",
-  xtables_ip6addr_to_numeric(&info->src_pfx.in6),
-  info->src_pfx_len);
-   if (memcmp(&info->dst_pfx.in6, &zero_addr, sizeof(zero_addr)) != 0 ||
-   info->dst_pfx_len != 0)
--  printf("--dst-pfx %s/%u ",
-+  printf(" --dst-pfx %s/%u",
-  xtables_ip6addr_to_numeric(&info->dst_pfx.in6),
-  info->dst_pfx_len);
- }
-diff --git a/extensions/libip6t_SNPT.c b/extensions/libip6t_SNPT.c
-index 4f10de0..65f787d 100644
 a/extensions/libip6t_SNPT.c
-+++ b/extensions/libip6t_SNPT.c
-@@ -52,9 +52,9 @@ static void SNPT_print(const void *ip, const struct 
xt_entry_target *target,
- {
-   const struct ip6t_npt_tginfo *npt = (const void *)target->data;
- 
--  printf("src-pfx %s/%u ", xtables_ip6addr_to_numeric(&npt->src_pfx.in6),
-+  printf(" SNPT src-pfx %s/%u", 
xtables_ip6addr_to_numeric(&npt->src_pfx.in6),
- 

[arch-commits] Commit in iptables/repos (24 files)

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 13:42:08
  Author: bpiotrowski
Revision: 261450

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

Added:
  iptables/repos/staging-i686/
  iptables/repos/staging-i686/PKGBUILD
(from rev 261449, iptables/trunk/PKGBUILD)
  iptables/repos/staging-i686/empty-filter.rules
(from rev 261449, iptables/trunk/empty-filter.rules)
  iptables/repos/staging-i686/empty-mangle.rules
(from rev 261449, iptables/trunk/empty-mangle.rules)
  iptables/repos/staging-i686/empty-nat.rules
(from rev 261449, iptables/trunk/empty-nat.rules)
  iptables/repos/staging-i686/empty-raw.rules
(from rev 261449, iptables/trunk/empty-raw.rules)
  iptables/repos/staging-i686/empty-security.rules
(from rev 261449, iptables/trunk/empty-security.rules)
  iptables/repos/staging-i686/empty.rules
(from rev 261449, iptables/trunk/empty.rules)
  iptables/repos/staging-i686/ip6tables.service
(from rev 261449, iptables/trunk/ip6tables.service)
  iptables/repos/staging-i686/iptables-flush
(from rev 261449, iptables/trunk/iptables-flush)
  iptables/repos/staging-i686/iptables.service
(from rev 261449, iptables/trunk/iptables.service)
  iptables/repos/staging-i686/simple_firewall.rules
(from rev 261449, iptables/trunk/simple_firewall.rules)
  iptables/repos/staging-x86_64/
  iptables/repos/staging-x86_64/PKGBUILD
(from rev 261449, iptables/trunk/PKGBUILD)
  iptables/repos/staging-x86_64/empty-filter.rules
(from rev 261449, iptables/trunk/empty-filter.rules)
  iptables/repos/staging-x86_64/empty-mangle.rules
(from rev 261449, iptables/trunk/empty-mangle.rules)
  iptables/repos/staging-x86_64/empty-nat.rules
(from rev 261449, iptables/trunk/empty-nat.rules)
  iptables/repos/staging-x86_64/empty-raw.rules
(from rev 261449, iptables/trunk/empty-raw.rules)
  iptables/repos/staging-x86_64/empty-security.rules
(from rev 261449, iptables/trunk/empty-security.rules)
  iptables/repos/staging-x86_64/empty.rules
(from rev 261449, iptables/trunk/empty.rules)
  iptables/repos/staging-x86_64/ip6tables.service
(from rev 261449, iptables/trunk/ip6tables.service)
  iptables/repos/staging-x86_64/iptables-flush
(from rev 261449, iptables/trunk/iptables-flush)
  iptables/repos/staging-x86_64/iptables.service
(from rev 261449, iptables/trunk/iptables.service)
  iptables/repos/staging-x86_64/simple_firewall.rules
(from rev 261449, iptables/trunk/simple_firewall.rules)

--+
 staging-i686/PKGBUILD|   75 +
 staging-i686/empty-filter.rules  |6 ++
 staging-i686/empty-mangle.rules  |8 +++
 staging-i686/empty-nat.rules |7 +++
 staging-i686/empty-raw.rules |5 ++
 staging-i686/empty-security.rules|6 ++
 staging-i686/empty.rules |6 ++
 staging-i686/ip6tables.service   |   14 ++
 staging-i686/iptables-flush  |   18 +++
 staging-i686/iptables.service|   14 ++
 staging-i686/simple_firewall.rules   |   11 
 staging-x86_64/PKGBUILD  |   75 +
 staging-x86_64/empty-filter.rules|6 ++
 staging-x86_64/empty-mangle.rules|8 +++
 staging-x86_64/empty-nat.rules   |7 +++
 staging-x86_64/empty-raw.rules   |5 ++
 staging-x86_64/empty-security.rules  |6 ++
 staging-x86_64/empty.rules   |6 ++
 staging-x86_64/ip6tables.service |   14 ++
 staging-x86_64/iptables-flush|   18 +++
 staging-x86_64/iptables.service  |   14 ++
 staging-x86_64/simple_firewall.rules |   11 
 22 files changed, 340 insertions(+)

Copied: iptables/repos/staging-i686/PKGBUILD (from rev 261449, 
iptables/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-14 12:42:08 UTC (rev 261450)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Thomas Baechler 
+
+pkgname=iptables
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='Linux kernel packet control tool'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://www.netfilter.org/projects/iptables/index.html'
+depends=('glibc' 'bash' 'libnftnl')
+makedepends=('linux-api-headers')
+source=(http://www.netfilter.org/projects/iptables/files/${pkgname}-${pkgver}.tar.bz2{,.sig}
 \
+empty.rules
+simple_firewall.rules
+empty-filter.rules
+empty-mangle.rules
+empty-nat.rules
+empty-raw.rules
+empty-security.rules
+iptables.service
+ip6tables.service
+iptables-flush)
+sha1sums=('21a694e75b0d6863cc001f85fb15915d12b8cc22'
+  'SKIP'
+  '83b3363878e3660ce23b2ad325b53cbd6c796ecf'
+  'f085a71f467e4d7cb2cf094d9369b0bcc4bab6ec'
+  'd9f9f06b46b4187648e860afa0552335aafe3ce4'
+  'c45b738b5ec4cfb11611b984c21a83b91a2d58f3'
+  

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 13:45:12
  Author: bpiotrowski
Revision: 261452

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

Added:
  iproute2/repos/staging-i686/
  iproute2/repos/staging-i686/PKGBUILD
(from rev 261451, iproute2/trunk/PKGBUILD)
  iproute2/repos/staging-i686/iproute2-fhs.patch
(from rev 261451, iproute2/trunk/iproute2-fhs.patch)
  iproute2/repos/staging-x86_64/
  iproute2/repos/staging-x86_64/PKGBUILD
(from rev 261451, iproute2/trunk/PKGBUILD)
  iproute2/repos/staging-x86_64/iproute2-fhs.patch
(from rev 261451, iproute2/trunk/iproute2-fhs.patch)

---+
 staging-i686/PKGBUILD |   60 
 staging-i686/iproute2-fhs.patch   |   87 
 staging-x86_64/PKGBUILD   |   60 
 staging-x86_64/iproute2-fhs.patch |   87 
 4 files changed, 294 insertions(+)

Copied: iproute2/repos/staging-i686/PKGBUILD (from rev 261451, 
iproute2/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-14 12:45:12 UTC (rev 261452)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Judd Vinet 
+
+pkgname=iproute2
+pkgver=4.4.0
+pkgrel=2
+pkgdesc="IP Routing Utilities"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2";
+depends=('glibc' 'iptables')
+makedepends=('linux-atm')
+optdepends=('linux-atm: ATM support')
+groups=('base')
+provides=('iproute')
+conflicts=('iproute')
+replaces=('iproute')
+options=('staticlibs' '!makeflags')
+backup=('etc/iproute2/ematch_map' 'etc/iproute2/rt_dsfield' 
'etc/iproute2/rt_protos' \
+   'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 
'etc/iproute2/rt_tables')
+validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger
+source=("http://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
+iproute2-fhs.patch)
+sha1sums=('68372be70c5c0503196d03913f4b1e201956d1b6'
+  'SKIP'
+  '2dc6d8f1a2495a0d51eaa303dcc78ecc0c477935')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # set correct fhs structure
+  patch -Np1 -i "${srcdir}/iproute2-fhs.patch"
+
+  # do not treat warnings as errors
+  sed -i 's/-Werror//' Makefile
+
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # libnetlink isn't installed, install it FS#19385
+  install -Dm644 include/libnetlink.h "${pkgdir}/usr/include/libnetlink.h"
+  install -Dm644 lib/libnetlink.a "${pkgdir}/usr/lib/libnetlink.a"
+
+  # move binaries
+  cd "${pkgdir}"
+  mv sbin usr/bin
+
+}

Copied: iproute2/repos/staging-i686/iproute2-fhs.patch (from rev 261451, 
iproute2/trunk/iproute2-fhs.patch)
===
--- staging-i686/iproute2-fhs.patch (rev 0)
+++ staging-i686/iproute2-fhs.patch 2016-03-14 12:45:12 UTC (rev 261452)
@@ -0,0 +1,87 @@
+diff --git a/Makefile b/Makefile
+index 67176be..6549447 100644
+--- a/Makefile
 b/Makefile
+@@ -13,7 +13,7 @@ DBM_INCLUDE:=$(DESTDIR)/usr/include
+ 
+ SHARED_LIBS = y
+ 
+-DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\"
++DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\" -DDATADIR=\"$(DATADIR)\"
+ ifneq ($(SHARED_LIBS),y)
+ DEFINES+= -DNO_SHARED_LIBS
+ endif
+diff --git a/netem/Makefile b/netem/Makefile
+index e52e125..5b4d283 100644
+--- a/netem/Makefile
 b/netem/Makefile
+@@ -20,9 +20,9 @@ stats: stats.c
+   $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+ 
+ install: all
+-  mkdir -p $(DESTDIR)$(LIBDIR)/tc
++  mkdir -p $(DESTDIR)$(DATADIR)/tc
+   for i in $(DISTDATA); \
+-  do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
++  do install -m 644 $$i $(DESTDIR)$(DATADIR)/tc; \
+   done
+ 
+ clean:
+diff --git a/tc/q_netem.c b/tc/q_netem.c
+index cd990a0..7d4e71f 100644
+--- a/tc/q_netem.c
 b/tc/q_netem.c
+@@ -113,7 +113,7 @@ static int get_distribution(const char *type, __s16 *data, 
int maxdata)
+   char *line = NULL;
+   char name[128];
+ 
+-  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_lib(), type);
++  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_datadir(), type);
+   if ((f = fopen(name, "r")) == NULL) {
+   fprintf(stderr, "No distribution data for %s (%s: %s)\n",
+   type, name, strerror(errno));
+diff --git a/tc/tc_util.c b/tc/tc_util.c
+index aa6de24..22bb6d5 100644
+--- a/tc/tc_util.c
 b/tc/tc_util.c
+@@ -32,6 +32,10 @@
+ #define LIBDIR "/usr/lib"
+ #endif
+ 
++#ifndef DATADIR
++#define DATADIR "/usr/share"
++#endif
++
+ static struct db_names *cls_names = NULL;
+ 
+ #define NAMES_DB "/etc

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 13:45:01
  Author: bpiotrowski
Revision: 261451

upgpkg: iproute2 4.4.0-2

rebuild against iptables 1.6.0-

Modified:
  iproute2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 12:42:08 UTC (rev 261450)
+++ PKGBUILD2016-03-14 12:45:01 UTC (rev 261451)
@@ -4,7 +4,7 @@
 
 pkgname=iproute2
 pkgver=4.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="IP Routing Utilities"
 arch=('i686' 'x86_64')
 license=('GPL2')


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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 13:48:35
  Author: bpiotrowski
Revision: 166728

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

Added:
  connman/repos/community-staging-i686/
  connman/repos/community-staging-i686/PKGBUILD
(from rev 166727, connman/trunk/PKGBUILD)
  connman/repos/community-staging-i686/allow_group_network.diff
(from rev 166727, connman/trunk/allow_group_network.diff)
  connman/repos/community-staging-x86_64/
  connman/repos/community-staging-x86_64/PKGBUILD
(from rev 166727, connman/trunk/PKGBUILD)
  connman/repos/community-staging-x86_64/allow_group_network.diff
(from rev 166727, connman/trunk/allow_group_network.diff)

---+
 community-staging-i686/PKGBUILD   |   51 
 community-staging-i686/allow_group_network.diff   |   12 
 community-staging-x86_64/PKGBUILD |   51 
 community-staging-x86_64/allow_group_network.diff |   12 
 4 files changed, 126 insertions(+)

Copied: connman/repos/community-staging-i686/PKGBUILD (from rev 166727, 
connman/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 12:48:35 UTC (rev 166728)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer:
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi 
+
+pkgname=connman
+pkgver=1.31
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman";
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz";
+'allow_group_network.diff')
+md5sums=('cb1c413fcc4f49430294bbd7a92f5f3c'
+ 'a8d22ee089fb0ed725130d16ad393047')
+
+prepare(){
+  cd $pkgname-$pkgver
+  patch -Np1 -i "$srcdir/allow_group_network.diff"
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --bindir=/usr/bin \
+  --sbindir=/usr/bin \
+  --with-systemdunitdir=/usr/lib/systemd/system \
+  --enable-pptp \
+  --enable-openconnect \
+  --enable-vpnc \
+  --enable-openvpn \
+  --enable-polkit \
+  --enable-client
+
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  install -Dm755 "$srcdir/$pkgname-$pkgver/client/${pkgname}ctl" 
"$pkgdir/usr/bin/${pkgname}ctl"
+  find "$pkgdir/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
+# See FS#48044
+  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"$pkgdir"/usr/lib/systemd/system/connman.service
+}

Copied: connman/repos/community-staging-i686/allow_group_network.diff (from rev 
166727, connman/trunk/allow_group_network.diff)
===
--- community-staging-i686/allow_group_network.diff 
(rev 0)
+++ community-staging-i686/allow_group_network.diff 2016-03-14 12:48:35 UTC 
(rev 166728)
@@ -0,0 +1,12 @@
+--- a/src/connman-polkit.conf  2010-11-05 12:09:04.285423955 -0200
 b/src/connman-polkit.conf  2010-11-05 12:10:53.041423934 -0200
+@@ -5,6 +5,9 @@
+ 
+ 
+ 
++
++   
++
+ 
+ 
+ 

Copied: connman/repos/community-staging-x86_64/PKGBUILD (from rev 166727, 
connman/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 12:48:35 UTC (rev 166728)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer:
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi 
+
+pkgname=connman
+pkgver=1.31
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman";
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz";
+'allow_group_network.diff')
+md5sums=('cb1c413fcc4f49430294bbd7a92f5f3c'
+ 'a8d22ee089fb0ed725130d16ad393047')
+
+prepare(){
+  cd $pkgname-$pkgver
+  patch -Np1 -i "$srcdir/allow_group_network.diff"
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --bindir=/usr/bin \
+  --sbindir=/usr/bin \
+  --with-systemdunitdir=/usr/lib/systemd/system \
+  --enable-pptp \
+  --enable-openconn

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 13:48:25
  Author: bpiotrowski
Revision: 166727

upgpkg: connman 1.31-4

rebuild against iptables 1.6.0-

Modified:
  connman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 11:59:23 UTC (rev 166726)
+++ PKGBUILD2016-03-14 12:48:25 UTC (rev 166727)
@@ -5,7 +5,7 @@
 
 pkgname=connman
 pkgver=1.31
-pkgrel=3
+pkgrel=4
 pkgdesc="Wireless LAN network manager"
 url="https://01.org/connman";
 arch=('i686' 'x86_64')


[arch-commits] Commit in mkinitcpio-busybox/trunk (PKGBUILD config)

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 14:15:41
  Author: bpiotrowski
Revision: 261453

upgpkg: mkinitcpio-busybox 1.24.1-1

new upstream release

Modified:
  mkinitcpio-busybox/trunk/PKGBUILD
  mkinitcpio-busybox/trunk/config

--+
 PKGBUILD |8 +--
 config   |  153 ++---
 2 files changed, 100 insertions(+), 61 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 12:45:12 UTC (rev 261452)
+++ PKGBUILD2016-03-14 13:15:41 UTC (rev 261453)
@@ -3,8 +3,8 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=mkinitcpio-busybox
-pkgver=1.21.1
-pkgrel=2
+pkgver=1.24.1
+pkgrel=1
 pkgdesc="base initramfs tools"
 arch=('i686' 'x86_64')
 url="http://www.busybox.net/";
@@ -14,9 +14,9 @@
 source=("http://busybox.net/downloads/busybox-$pkgver.tar.bz2";
 'glibc-2.16.patch'
 'config')
-sha256sums=('cd5be0912ec856110ae12c76c3ec9cd5cba1df45b5a9da2b095b8284d1481303'
+sha256sums=('37d03132cc078937360b392170b7a1d0e5b322eee9f57c0b82292a8b1f0afe3d'
 'fb5b6e2a0de4db5401322e5c2474ad8ce6a58615dad45b7109cfe045baf2c88d'
-'240c9ab805fbf5eb3347b2a42f62d840f160c4999d0f172b28ba50dadad09ada')
+'fd4e5571d9bdde368e01d601a9e05df05001827bffb2f574187b4f47db4cec55')
 
 prepare() {
   cd "busybox-$pkgver"

Modified: config
===
--- config  2016-03-14 12:45:12 UTC (rev 261452)
+++ config  2016-03-14 13:15:41 UTC (rev 261453)
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
-# Busybox version: 1.21.0
-# Tue Jan 22 09:04:09 2013
+# Busybox version: 1.24.1
+# Mon Mar 14 14:00:13 2016
 #
 CONFIG_HAVE_DOT_CONFIG=y
 
@@ -36,6 +36,8 @@
 # CONFIG_UNICODE_BIDI_SUPPORT is not set
 # CONFIG_UNICODE_NEUTRAL_TABLE is not set
 # CONFIG_UNICODE_PRESERVE_BROKEN is not set
+# CONFIG_PAM is not set
+CONFIG_FEATURE_USE_SENDFILE=y
 CONFIG_LONG_OPTS=y
 CONFIG_FEATURE_DEVPTS=y
 # CONFIG_FEATURE_CLEAN_UP is not set
@@ -73,6 +75,7 @@
 #
 # CONFIG_DEBUG is not set
 # CONFIG_DEBUG_PESSIMIZE is not set
+# CONFIG_UNIT_TEST is not set
 # CONFIG_WERROR is not set
 CONFIG_NO_DEBUG_LIB=y
 # CONFIG_DMALLOC is not set
@@ -135,7 +138,14 @@
 # CONFIG_AR is not set
 # CONFIG_FEATURE_AR_LONG_FILENAMES is not set
 # CONFIG_FEATURE_AR_CREATE is not set
+# CONFIG_UNCOMPRESS is not set
+# CONFIG_GUNZIP is not set
 # CONFIG_BUNZIP2 is not set
+# CONFIG_UNLZMA is not set
+# CONFIG_FEATURE_LZMA_FAST is not set
+# CONFIG_LZMA is not set
+# CONFIG_UNXZ is not set
+# CONFIG_XZ is not set
 # CONFIG_BZIP2 is not set
 # CONFIG_CPIO is not set
 # CONFIG_FEATURE_CPIO_O is not set
@@ -143,10 +153,10 @@
 # CONFIG_DPKG is not set
 # CONFIG_DPKG_DEB is not set
 # CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set
-# CONFIG_GUNZIP is not set
 # CONFIG_GZIP is not set
 # CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set
 CONFIG_GZIP_FAST=0
+# CONFIG_FEATURE_GZIP_LEVELS is not set
 # CONFIG_LZOP is not set
 # CONFIG_LZOP_COMPR_HIGH is not set
 # CONFIG_RPM2CPIO is not set
@@ -163,12 +173,6 @@
 # CONFIG_FEATURE_TAR_UNAME_GNAME is not set
 # CONFIG_FEATURE_TAR_NOPRESERVE_TIME is not set
 # CONFIG_FEATURE_TAR_SELINUX is not set
-# CONFIG_UNCOMPRESS is not set
-# CONFIG_UNLZMA is not set
-# CONFIG_FEATURE_LZMA_FAST is not set
-# CONFIG_LZMA is not set
-# CONFIG_UNXZ is not set
-# CONFIG_XZ is not set
 # CONFIG_UNZIP is not set
 
 #
@@ -180,16 +184,27 @@
 # CONFIG_FEATURE_DATE_ISOFMT is not set
 # CONFIG_FEATURE_DATE_NANO is not set
 # CONFIG_FEATURE_DATE_COMPAT is not set
+CONFIG_DD=y
+# CONFIG_FEATURE_DD_SIGNAL_HANDLING is not set
+# CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set
+# CONFIG_FEATURE_DD_IBS_OBS is not set
+CONFIG_FEATURE_DD_STATUS=y
 # CONFIG_HOSTID is not set
 # CONFIG_ID is not set
 # CONFIG_GROUPS is not set
+CONFIG_SHUF=y
+CONFIG_SYNC=y
+CONFIG_FEATURE_SYNC_FANCY=y
 CONFIG_TEST=y
 CONFIG_FEATURE_TEST_64=y
 CONFIG_TOUCH=y
+CONFIG_FEATURE_TOUCH_NODEREF=y
 # CONFIG_FEATURE_TOUCH_SUSV3 is not set
 # CONFIG_TR is not set
 # CONFIG_FEATURE_TR_CLASSES is not set
 # CONFIG_FEATURE_TR_EQUIV is not set
+CONFIG_TRUNCATE=y
+CONFIG_UNLINK=y
 # CONFIG_BASE64 is not set
 # CONFIG_WHO is not set
 # CONFIG_USERS is not set
@@ -205,10 +220,6 @@
 CONFIG_CP=y
 # CONFIG_FEATURE_CP_LONG_OPTIONS is not set
 CONFIG_CUT=y
-CONFIG_DD=y
-# CONFIG_FEATURE_DD_SIGNAL_HANDLING is not set
-# CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set
-# CONFIG_FEATURE_DD_IBS_OBS is not set
 CONFIG_DF=y
 # CONFIG_FEATURE_DF_FANCY is not set
 CONFIG_DIRNAME=y
@@ -277,7 +288,6 @@
 CONFIG_FEATURE_STAT_FORMAT=y
 # CONFIG_STTY is not set
 # CONFIG_SUM is not set
-CONFIG_SYNC=y
 CONFIG_TAC=y
 CONFIG_TAIL=y
 CONFIG_FEATURE_FANCY_TAIL=y
@@ -286,6 +296,7 @@
 CONFIG_TRUE=y
 # CONFIG_TTY is not set
 CONFIG_UNAME=y
+CONFIG_UNAME_OSNAME="GNU/Linux"
 # CONFIG_UNEXPAND is not set
 # CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set
 CONFIG_UNIQ=y
@@ -298,6 +309,11 @@
 CONFIG_YES=y
 
 #
+# C

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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 14:17:11
  Author: bpiotrowski
Revision: 261454

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

Added:
  mkinitcpio-busybox/repos/testing-i686/
  mkinitcpio-busybox/repos/testing-i686/PKGBUILD
(from rev 261453, mkinitcpio-busybox/trunk/PKGBUILD)
  mkinitcpio-busybox/repos/testing-i686/config
(from rev 261453, mkinitcpio-busybox/trunk/config)
  mkinitcpio-busybox/repos/testing-i686/glibc-2.16.patch
(from rev 261453, mkinitcpio-busybox/trunk/glibc-2.16.patch)
  mkinitcpio-busybox/repos/testing-x86_64/
  mkinitcpio-busybox/repos/testing-x86_64/PKGBUILD
(from rev 261453, mkinitcpio-busybox/trunk/PKGBUILD)
  mkinitcpio-busybox/repos/testing-x86_64/config
(from rev 261453, mkinitcpio-busybox/trunk/config)
  mkinitcpio-busybox/repos/testing-x86_64/glibc-2.16.patch
(from rev 261453, mkinitcpio-busybox/trunk/glibc-2.16.patch)

-+
 testing-i686/PKGBUILD   |   39 +
 testing-i686/config | 1065 ++
 testing-i686/glibc-2.16.patch   |   10 
 testing-x86_64/PKGBUILD |   39 +
 testing-x86_64/config   | 1065 ++
 testing-x86_64/glibc-2.16.patch |   10 
 6 files changed, 2228 insertions(+)

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


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

2016-03-14 Thread Bartłomiej Piotrowski
Date: Monday, March 14, 2016 @ 14:17:41
  Author: bpiotrowski
Revision: 261455

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

Added:
  mkinitcpio-busybox/repos/testing-i686/PKGBUILD
(from rev 261454, mkinitcpio-busybox/trunk/PKGBUILD)
  mkinitcpio-busybox/repos/testing-i686/config
(from rev 261454, mkinitcpio-busybox/trunk/config)
  mkinitcpio-busybox/repos/testing-i686/glibc-2.16.patch
(from rev 261454, mkinitcpio-busybox/trunk/glibc-2.16.patch)
  mkinitcpio-busybox/repos/testing-x86_64/PKGBUILD
(from rev 261454, mkinitcpio-busybox/trunk/PKGBUILD)
  mkinitcpio-busybox/repos/testing-x86_64/config
(from rev 261454, mkinitcpio-busybox/trunk/config)
  mkinitcpio-busybox/repos/testing-x86_64/glibc-2.16.patch
(from rev 261454, mkinitcpio-busybox/trunk/glibc-2.16.patch)
Deleted:
  mkinitcpio-busybox/repos/testing-i686/PKGBUILD
  mkinitcpio-busybox/repos/testing-i686/config
  mkinitcpio-busybox/repos/testing-i686/glibc-2.16.patch
  mkinitcpio-busybox/repos/testing-x86_64/PKGBUILD
  mkinitcpio-busybox/repos/testing-x86_64/config
  mkinitcpio-busybox/repos/testing-x86_64/glibc-2.16.patch

-+
 /PKGBUILD   |   78 +
 /config | 2130 ++
 /glibc-2.16.patch   |   20 
 testing-i686/PKGBUILD   |   39 
 testing-i686/config | 1065 ---
 testing-i686/glibc-2.16.patch   |   10 
 testing-x86_64/PKGBUILD |   39 
 testing-x86_64/config   | 1065 ---
 testing-x86_64/glibc-2.16.patch |   10 
 9 files changed, 2228 insertions(+), 2228 deletions(-)

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


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 15:44:52
  Author: fyan
Revision: 166730

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 14:44:37 UTC (rev 166729)
+++ PKGBUILD2016-03-14 14:44:52 UTC (rev 166730)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-benchmark
-pkgname=('python-pytest-benchmark' 'python2-pytest-benchmark')
-_pypiname=pytest-benchmark
-pkgver=3.0.0rc1
-pkgrel=1
-pkgdesc='A py.test fixture for benchmarking code'
-arch=('any')
-license=('BSD')
-url='https://github.com/ionelmc/pytest-benchmark'
-makedepends=('python-pytest' 'python2-pytest' 'python2-statistics' 'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-pygal' 
'python2-pygal'
-  'python-freezegun' 'python2-freezegun' 'mercurial' 
'python-aspectlib'
-  'python2-aspectlib' 'python-pytest-xdist' 'python2-pytest-xdist')
-source=("git+https://github.com/ionelmc/pytest-benchmark.git#tag=v$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a "${srcdir}/${_pypiname}"{,-py2}
-}
-
-build() {
-  cd "$srcdir/$_pypiname"
-  python setup.py build
-
-  cd "$srcdir/$_pypiname-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir/$_pypiname"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test tests/
-
-  cd "$srcdir/$_pypiname-py2"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 tests/
-}
-
-package_python-pytest-benchmark() {
-  depends=('python-pytest')
-
-  cd "$srcdir/$_pypiname"
-  python setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pytest-benchmark() {
-  depends=('python2-pytest' 'python2-statistics')
-
-  cd "$srcdir/$_pypiname-py2"
-  python2 setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-benchmark/repos/community-any/PKGBUILD (from rev 166729, 
python-pytest-benchmark/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 14:44:52 UTC (rev 166730)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-benchmark
+pkgname=('python-pytest-benchmark' 'python2-pytest-benchmark')
+pkgver=3.0.0
+pkgrel=1
+pkgdesc='A py.test fixture for benchmarking code'
+arch=('any')
+license=('BSD')
+url='https://github.com/ionelmc/pytest-benchmark'
+makedepends=('python-pytest' 'python2-pytest' 'python2-statistics' 
'python2-pathlib' 'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-pygal' 
'python2-pygal'
+  'python-freezegun' 'python2-freezegun' 'mercurial' 
'python-aspectlib'
+  'python2-aspectlib' 'python-pytest-xdist' 'python2-pytest-xdist')
+source=("git+https://github.com/ionelmc/pytest-benchmark.git#tag=v$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a pytest-benchmark{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-benchmark
+  python setup.py build
+
+  cd "$srcdir"/pytest-benchmark-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+  # Test should be related to pytest 2.9
+
+  cd "$srcdir"/pytest-benchmark
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test tests/ || warning "Tests failed"
+
+  cd "$srcdir"/pytest-benchmark-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 tests/ || warning "Tests failed"
+}
+
+package_python-pytest-benchmark() {
+  depends=('python-pytest')
+
+  cd "$srcdir"/pytest-benchmark
+  python setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-benchmark() {
+  depends=('python2-pytest' 'python2-statistics' 'python2-pathlib')
+
+  cd "$srcdir"/pytest-benchmark-py2
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-03-14 Thread Felix Yan
Date: Monday, March 14, 2016 @ 15:44:37
  Author: fyan
Revision: 166729

upgpkg: python-pytest-benchmark 3.0.0-1

Modified:
  python-pytest-benchmark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 12:48:35 UTC (rev 166728)
+++ PKGBUILD2016-03-14 14:44:37 UTC (rev 166729)
@@ -3,14 +3,13 @@
 
 pkgbase=python-pytest-benchmark
 pkgname=('python-pytest-benchmark' 'python2-pytest-benchmark')
-_pypiname=pytest-benchmark
-pkgver=3.0.0rc1
+pkgver=3.0.0
 pkgrel=1
 pkgdesc='A py.test fixture for benchmarking code'
 arch=('any')
 license=('BSD')
 url='https://github.com/ionelmc/pytest-benchmark'
-makedepends=('python-pytest' 'python2-pytest' 'python2-statistics' 'git')
+makedepends=('python-pytest' 'python2-pytest' 'python2-statistics' 
'python2-pathlib' 'git')
 checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-pygal' 
'python2-pygal'
   'python-freezegun' 'python2-freezegun' 'mercurial' 
'python-aspectlib'
   'python2-aspectlib' 'python-pytest-xdist' 'python2-pytest-xdist')
@@ -18,43 +17,44 @@
 md5sums=('SKIP')
 
 prepare() {
-  cp -a "${srcdir}/${_pypiname}"{,-py2}
+  cp -a pytest-benchmark{,-py2}
 }
 
 build() {
-  cd "$srcdir/$_pypiname"
+  cd "$srcdir"/pytest-benchmark
   python setup.py build
 
-  cd "$srcdir/$_pypiname-py2"
+  cd "$srcdir"/pytest-benchmark-py2
   python2 setup.py build
 }
 
 check() {
   # Hack entry points by installing it
+  # Test should be related to pytest 2.9
 
-  cd "$srcdir/$_pypiname"
+  cd "$srcdir"/pytest-benchmark
   python setup.py install --root="$PWD/tmp_install" --optimize=1
-  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test tests/
+  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test tests/ || warning "Tests failed"
 
-  cd "$srcdir/$_pypiname-py2"
+  cd "$srcdir"/pytest-benchmark-py2
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 tests/
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 tests/ || warning "Tests failed"
 }
 
 package_python-pytest-benchmark() {
   depends=('python-pytest')
 
-  cd "$srcdir/$_pypiname"
+  cd "$srcdir"/pytest-benchmark
   python setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-pytest-benchmark() {
-  depends=('python2-pytest' 'python2-statistics')
+  depends=('python2-pytest' 'python2-statistics' 'python2-pathlib')
 
-  cd "$srcdir/$_pypiname-py2"
+  cd "$srcdir"/pytest-benchmark-py2
   python2 setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in xplanet/trunk (PKGBUILD giflib6.patch)

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 15:45:36
  Author: spupykin
Revision: 166731

upgpkg: xplanet 1.3.1-1

upd

Modified:
  xplanet/trunk/PKGBUILD
  xplanet/trunk/giflib6.patch

---+
 PKGBUILD  |8 +-
 giflib6.patch |  153 +++-
 2 files changed, 25 insertions(+), 136 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 14:44:52 UTC (rev 166730)
+++ PKGBUILD2016-03-14 14:45:36 UTC (rev 166731)
@@ -4,8 +4,8 @@
 # Committer: Judd Vinet 
 
 pkgname=xplanet
-pkgver=1.3.0
-pkgrel=6
+pkgver=1.3.1
+pkgrel=1
 pkgdesc="An Xearth wannabe"
 arch=(i686 x86_64)
 url="http://xplanet.sourceforge.net/";
@@ -13,8 +13,8 @@
 depends=('pango' 'giflib' 'libtiff' 'libxss')
 
source=(http://downloads.sourceforge.net/project/xplanet/xplanet/$pkgver/xplanet-$pkgver.tar.gz
giflib6.patch)
-md5sums=('41f7db2ccd1d8b4b989cacaf9adfe692'
- '027342e9a912e8eaee3a913d6c710050')
+md5sums=('9797dbd9697d10205ca1671f728ea30d'
+ '4ccddbd3edfae97a8d4cf36ea571282f')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver

Modified: giflib6.patch
===
--- giflib6.patch   2016-03-14 14:44:52 UTC (rev 166730)
+++ giflib6.patch   2016-03-14 14:45:36 UTC (rev 166731)
@@ -1,141 +1,30 @@
-diff -wbBur xplanet-1.3.0/src/libimage/gif.c 
xplanet-1.3.0.my/src/libimage/gif.c
 xplanet-1.3.0/src/libimage/gif.c   2006-03-26 01:50:51.0 +0300
-+++ xplanet-1.3.0.my/src/libimage/gif.c2014-05-29 18:59:14.830652716 
+0400
-@@ -20,7 +20,7 @@
- 
- #include 
- #include 
--
-+#define FALSE 0
- #include 
- 
- /*
-@@ -42,11 +42,11 @@
- int color_index;
- unsigned char *ptr = NULL;
- 
--infile = DGifOpenFileName(filename);
-+infile = DGifOpenFileName(filename, NULL);
- 
- if (infile == NULL)
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
+diff -wbBur xplanet-1.3.1/src/libimage/gif.c xplanet-1.3.1.q/src/libimage/gif.c
+--- xplanet-1.3.1/src/libimage/gif.c   2013-02-16 23:37:47.0 +0400
 xplanet-1.3.1.q/src/libimage/gif.c 2016-03-14 17:41:14.244144734 +0300
+@@ -179,7 +179,7 @@
+   }
  }
- 
-@@ -54,7 +54,7 @@
- {
- if (DGifGetRecordType(infile, &record_type) == GIF_ERROR) 
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- 
-@@ -63,7 +63,7 @@
- case IMAGE_DESC_RECORD_TYPE:
- if (DGifGetImageDesc(infile) == GIF_ERROR)
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- 
-@@ -107,14 +107,14 @@
- GifByteType *ext;
- if (DGifGetExtension(infile, &ext_code, &ext) == GIF_ERROR) 
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- while (ext != NULL) 
- {
- if (DGifGetExtensionNext(infile, &ext) == GIF_ERROR) 
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- }
-@@ -154,7 +154,7 @@
  
- free(buffer);
+-if (DGifCloseFile(GifFile) == GIF_ERROR) {
++if (DGifCloseFile(GifFile, NULL) == GIF_ERROR) {
+   return(0);
+ }
  
--DGifCloseFile(infile);
-+DGifCloseFile(infile, NULL);
- return(1);
+@@ -493,7 +493,7 @@
+ static void QuitGifError(GifFileType *GifFile)
+ {
+ fprintf(stderr, "Error writing GIF file\n");
+-if (GifFile != NULL) EGifCloseFile(GifFile);
++if (GifFile != NULL) EGifCloseFile(GifFile, NULL);
  }
  
-@@ -178,7 +178,7 @@
- return(0);
+ int 
+@@ -589,7 +589,7 @@
+   Ptr += width;
  }
  
--colormap = MakeMapObject(colormap_size, NULL);
-+colormap = GifMakeMapObject(colormap_size, NULL);
+-if (EGifCloseFile(GifFile) == GIF_ERROR)
++if (EGifCloseFile(GifFile, NULL) == GIF_ERROR)
  
- for (i = 0; i < width * height; i++)
  {
-@@ -187,10 +187,10 @@
- blue[i]  = (GifByteType) rgb[3*i+2];
- }
-   
--if (QuantizeBuffer(width, height, &colormap_size, red, green, blue,   
-+if (GifQuantizeBuffer(width, height, &colormap_size, red, green, blue,   
-buffer, colormap->Colors) == GIF_ERROR)
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- 
-@@ -198,24 +198,24 @@
- free(green);
- free(blue);
- 
--outfile = EGifOpenFileName((char *) filename, FALSE);
-+outfile = EGifOpenFileName((char *) filename, FALSE, NULL);
- if (outfile == NULL)
- {
--PrintGifError();
-+printf("%s\n", GifError

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

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 15:45:53
  Author: spupykin
Revision: 166732

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

Added:
  xplanet/repos/community-i686/PKGBUILD
(from rev 166731, xplanet/trunk/PKGBUILD)
  xplanet/repos/community-i686/giflib6.patch
(from rev 166731, xplanet/trunk/giflib6.patch)
  xplanet/repos/community-x86_64/PKGBUILD
(from rev 166731, xplanet/trunk/PKGBUILD)
  xplanet/repos/community-x86_64/giflib6.patch
(from rev 166731, xplanet/trunk/giflib6.patch)
Deleted:
  xplanet/repos/community-i686/PKGBUILD
  xplanet/repos/community-i686/giflib6.patch
  xplanet/repos/community-x86_64/PKGBUILD
  xplanet/repos/community-x86_64/giflib6.patch

+
 /PKGBUILD  |   66 ++
 /giflib6.patch |   60 
 community-i686/PKGBUILD|   33 -
 community-i686/giflib6.patch   |  141 ---
 community-x86_64/PKGBUILD  |   33 -
 community-x86_64/giflib6.patch |  141 ---
 6 files changed, 126 insertions(+), 348 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 14:45:36 UTC (rev 166731)
+++ community-i686/PKGBUILD 2016-03-14 14:45:53 UTC (rev 166732)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: dorphell 
-# Committer: Judd Vinet 
-
-pkgname=xplanet
-pkgver=1.3.0
-pkgrel=6
-pkgdesc="An Xearth wannabe"
-arch=(i686 x86_64)
-url="http://xplanet.sourceforge.net/";
-license=('GPL')
-depends=('pango' 'giflib' 'libtiff' 'libxss')
-source=(http://downloads.sourceforge.net/project/xplanet/xplanet/$pkgver/xplanet-$pkgver.tar.gz
-   giflib6.patch)
-md5sums=('41f7db2ccd1d8b4b989cacaf9adfe692'
- '027342e9a912e8eaee3a913d6c710050')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -p1 <$srcdir/giflib6.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-freetype
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=$pkgdir/usr install
-}

Copied: xplanet/repos/community-i686/PKGBUILD (from rev 166731, 
xplanet/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 14:45:53 UTC (rev 166732)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: dorphell 
+# Committer: Judd Vinet 
+
+pkgname=xplanet
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="An Xearth wannabe"
+arch=(i686 x86_64)
+url="http://xplanet.sourceforge.net/";
+license=('GPL')
+depends=('pango' 'giflib' 'libtiff' 'libxss')
+source=(http://downloads.sourceforge.net/project/xplanet/xplanet/$pkgver/xplanet-$pkgver.tar.gz
+   giflib6.patch)
+md5sums=('9797dbd9697d10205ca1671f728ea30d'
+ '4ccddbd3edfae97a8d4cf36ea571282f')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 <$srcdir/giflib6.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-freetype
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}

Deleted: community-i686/giflib6.patch
===
--- community-i686/giflib6.patch2016-03-14 14:45:36 UTC (rev 166731)
+++ community-i686/giflib6.patch2016-03-14 14:45:53 UTC (rev 166732)
@@ -1,141 +0,0 @@
-diff -wbBur xplanet-1.3.0/src/libimage/gif.c 
xplanet-1.3.0.my/src/libimage/gif.c
 xplanet-1.3.0/src/libimage/gif.c   2006-03-26 01:50:51.0 +0300
-+++ xplanet-1.3.0.my/src/libimage/gif.c2014-05-29 18:59:14.830652716 
+0400
-@@ -20,7 +20,7 @@
- 
- #include 
- #include 
--
-+#define FALSE 0
- #include 
- 
- /*
-@@ -42,11 +42,11 @@
- int color_index;
- unsigned char *ptr = NULL;
- 
--infile = DGifOpenFileName(filename);
-+infile = DGifOpenFileName(filename, NULL);
- 
- if (infile == NULL)
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- 
-@@ -54,7 +54,7 @@
- {
- if (DGifGetRecordType(infile, &record_type) == GIF_ERROR) 
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- 
-@@ -63,7 +63,7 @@
- case IMAGE_DESC_RECORD_TYPE:
- if (DGifGetImageDesc(infile) == GIF_ERROR)
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- 
-@@ -107,14 +107,14 @@
- GifByteType *ext;
- if (DGifGetExtension(infile, &ext_code, &ext) == GIF_ERROR) 
- {
--PrintGifError();
-+printf("%s\n", GifErrorString(GIF_ERROR));
- return(0);
- }
- 

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

2016-03-14 Thread Jiachen Yang
Date: Monday, March 14, 2016 @ 16:04:14
  Author: farseerfc
Revision: 166733

upgpkg: skk-jisyo 20160313-1

update 20160313

Modified:
  skk-jisyo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 14:45:53 UTC (rev 166732)
+++ PKGBUILD2016-03-14 15:04:14 UTC (rev 166733)
@@ -3,7 +3,7 @@
 # Contributor: jeneshicc 
 
 pkgname=skk-jisyo
-pkgver=20160306
+pkgver=20160313
 pkgrel=1
 pkgdesc="Dictionaries for the SKK Japanese input method"
 arch=('any')
@@ -16,7 +16,7 @@
 
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
 
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
 
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('5c0343006ea1d33bc0762e693555eb80'
+md5sums=('45b2d7db53214bd0ef7f7d01677574e5'
  'e24063430ffc2b7bc85ea297ee134f5d'
  '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
  '53407c1d74036759a7db1fa07dd8e5d4'


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

2016-03-14 Thread Jiachen Yang
Date: Monday, March 14, 2016 @ 16:04:58
  Author: farseerfc
Revision: 166734

archrelease: copy trunk to community-any

Added:
  skk-jisyo/repos/community-any/PKGBUILD
(from rev 166733, skk-jisyo/trunk/PKGBUILD)
  skk-jisyo/repos/community-any/skk-jisyo.install
(from rev 166733, skk-jisyo/trunk/skk-jisyo.install)
Deleted:
  skk-jisyo/repos/community-any/PKGBUILD
  skk-jisyo/repos/community-any/skk-jisyo.install

---+
 PKGBUILD  |   62 ++--
 skk-jisyo.install |   20 
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 15:04:14 UTC (rev 166733)
+++ PKGBUILD2016-03-14 15:04:58 UTC (rev 166734)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: jeneshicc 
-
-pkgname=skk-jisyo
-pkgver=20160306
-pkgrel=1
-pkgdesc="Dictionaries for the SKK Japanese input method"
-arch=('any')
-url="http://openlab.ring.gr.jp/skk/";
-optdepends=('skktools: Dictionary maintenabce tools')
-license=('GPL')
-install=${pkgname}.install
-source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
-
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
-
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
-
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
-
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('5c0343006ea1d33bc0762e693555eb80'
- 'e24063430ffc2b7bc85ea297ee134f5d'
- '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
- '53407c1d74036759a7db1fa07dd8e5d4'
- 'efb7f415213e6bdcdffc3a9a2e262f19')
-
-package() {
-  cd "$srcdir"
-
-  for t in L jinmei geo propernoun station; do
-install -D -m 644 "$srcdir/SKK-JISYO.$t.$pkgver" 
"$pkgdir/usr/share/skk/SKK-JISYO.$t"
-  done
-}

Copied: skk-jisyo/repos/community-any/PKGBUILD (from rev 166733, 
skk-jisyo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 15:04:58 UTC (rev 166734)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: jeneshicc 
+
+pkgname=skk-jisyo
+pkgver=20160313
+pkgrel=1
+pkgdesc="Dictionaries for the SKK Japanese input method"
+arch=('any')
+url="http://openlab.ring.gr.jp/skk/";
+optdepends=('skktools: Dictionary maintenabce tools')
+license=('GPL')
+install=${pkgname}.install
+source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
+
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
+
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
+
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
+
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
+md5sums=('45b2d7db53214bd0ef7f7d01677574e5'
+ 'e24063430ffc2b7bc85ea297ee134f5d'
+ '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
+ '53407c1d74036759a7db1fa07dd8e5d4'
+ 'efb7f415213e6bdcdffc3a9a2e262f19')
+
+package() {
+  cd "$srcdir"
+
+  for t in L jinmei geo propernoun station; do
+install -D -m 644 "$srcdir/SKK-JISYO.$t.$pkgver" 
"$pkgdir/usr/share/skk/SKK-JISYO.$t"
+  done
+}

Deleted: skk-jisyo.install
===
--- skk-jisyo.install   2016-03-14 15:04:14 UTC (rev 166733)
+++ skk-jisyo.install   2016-03-14 15:04:58 UTC (rev 166734)
@@ -1,10 +0,0 @@
-post_install() {
-  echo ">>> If you want to merge dictionaries, use skktools"
-  echo ">>> For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:"
-  echo ">>> % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo > SKK-JISYO.XL"
-}
-
-post_upgrade() {
-  post_install $1
-}
-# vim:set ts=2 sw=2 et:

Copied: skk-jisyo/repos/community-any/skk-jisyo.install (from rev 166733, 
skk-jisyo/trunk/skk-jisyo.install)
===
--- skk-jisyo.install   (rev 0)
+++ skk-jisyo.install   2016-03-14 15:04:58 UTC (rev 166734)
@@ -0,0 +1,10 @@
+post_install() {
+  echo ">>> If you want to merge dictionaries, use skktools"
+  echo ">>> For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:"
+  echo ">>> % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo > SKK-JISYO.XL"
+}
+
+post_upgrade() {
+  post_install $1
+}
+# vim:set ts=2 sw=2 et:


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

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 16:07:33
  Author: spupykin
Revision: 166735

upgpkg: unrealircd 4.0.2-1

upd

Modified:
  unrealircd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 15:04:58 UTC (rev 166734)
+++ PKGBUILD2016-03-14 15:07:33 UTC (rev 166735)
@@ -3,8 +3,8 @@
 # Contributor: Zerial 
 
 pkgname=unrealircd
-pkgver=4.0.1
-pkgrel=3
+pkgver=4.0.2
+pkgrel=1
 pkgdesc="Open Source IRC Server"
 arch=('i686' 'x86_64')
 url="http://unrealircd.com";
@@ -18,7 +18,7 @@
unrealircd.service
unrealircd.tmpfiles.d
install.pl)
-md5sums=('f513a190d5549f00ab030373b912e861'
+md5sums=('030873697275470d21dc8192597cdaf6'
  '677d8de0bae770488a2c1730f9475a51'
  '3ec519ea7dbe99696eb6c51dfc0d382a'
  '3a23792b03420fc578cf6688b1574ae3')


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

2016-03-14 Thread Sergej Pupykin
Date: Monday, March 14, 2016 @ 16:07:55
  Author: spupykin
Revision: 166736

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

Added:
  unrealircd/repos/community-i686/PKGBUILD
(from rev 166735, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-i686/install.pl
(from rev 166735, unrealircd/trunk/install.pl)
  unrealircd/repos/community-i686/unrealircd.install
(from rev 166735, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-i686/unrealircd.service
(from rev 166735, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-i686/unrealircd.tmpfiles.d
(from rev 166735, unrealircd/trunk/unrealircd.tmpfiles.d)
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 166735, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/install.pl
(from rev 166735, unrealircd/trunk/install.pl)
  unrealircd/repos/community-x86_64/unrealircd.install
(from rev 166735, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 166735, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d
(from rev 166735, unrealircd/trunk/unrealircd.tmpfiles.d)
Deleted:
  unrealircd/repos/community-i686/PKGBUILD
  unrealircd/repos/community-i686/install.pl
  unrealircd/repos/community-i686/unrealircd.install
  unrealircd/repos/community-i686/unrealircd.service
  unrealircd/repos/community-i686/unrealircd.tmpfiles.d
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/install.pl
  unrealircd/repos/community-x86_64/unrealircd.install
  unrealircd/repos/community-x86_64/unrealircd.service
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d

+
 /PKGBUILD  |  136 +++
 /install.pl|   10 ++
 /unrealircd.install|   24 +
 /unrealircd.service|   24 +
 /unrealircd.tmpfiles.d |2 
 community-i686/PKGBUILD|   68 ---
 community-i686/install.pl  |5 -
 community-i686/unrealircd.install  |   12 --
 community-i686/unrealircd.service  |   12 --
 community-i686/unrealircd.tmpfiles.d   |1 
 community-x86_64/PKGBUILD  |   68 ---
 community-x86_64/install.pl|5 -
 community-x86_64/unrealircd.install|   12 --
 community-x86_64/unrealircd.service|   12 --
 community-x86_64/unrealircd.tmpfiles.d |1 
 15 files changed, 196 insertions(+), 196 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 15:07:33 UTC (rev 166735)
+++ community-i686/PKGBUILD 2016-03-14 15:07:55 UTC (rev 166736)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Zerial 
-
-pkgname=unrealircd
-pkgver=4.0.1
-pkgrel=3
-pkgdesc="Open Source IRC Server"
-arch=('i686' 'x86_64')
-url="http://unrealircd.com";
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf')
-install=unrealircd.install
-source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
-   unrealircd.service
-   unrealircd.tmpfiles.d
-   install.pl)
-md5sums=('f513a190d5549f00ab030373b912e861'
- '677d8de0bae770488a2c1730f9475a51'
- '3ec519ea7dbe99696eb6c51dfc0d382a'
- '3a23792b03420fc578cf6688b1574ae3')
-
-prepare() {
-  cd $srcdir/unrealircd-$pkgver
-  sed -i \
--e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
--e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
-Makefile.in
-}
-
-build() {
-  cd $srcdir/unrealircd-$pkgver
-  ./configure \
---with-pidfile=/run/unrealircd/ircd.pid \
---with-showlistmodes \
---enable-ssl=/usr \
---with-bindir=/usr/bin \
---with-datadir=/var/lib/unrealircd \
---with-confdir=/etc/unrealircd \
---with-modulesdir=/usr/lib/unrealircd \
---with-logdir=/var/log/unrealircd \
---with-cachedir=/var/cache/unrealircd \
---with-docdir=/usr/share/doc/unrealircd \
---with-tmpdir=/tmp \
---with-scriptdir=/usr \
---with-nick-history=2000 \
---with-sendq=300 \
---with-permissions=0644 \
---with-fd-setsize=1024 \
---enable-dynamic-linking
-  make
-}
-
-package() {
-  cd $srcdir/unrealircd-$pkgver
-
-  export pkgdir
-  make INSTALL=$srcdir/install.pl install
-  mv $pkgdir/usr/unrealircd $pkgdir/etc/unrealircd/unrealircd
-  cp $pkgdir/etc/unrealircd/examples/example.conf 
$pkgdir/etc/unrealircd/unrealircd.conf
-  rm -rf $pkgdir/tmp
-
-  install -Dm0644 $srcdir/unrealircd.service 
$pkgdir/usr/lib/systemd/system/unrealircd.service
-  install -Dm0644 $srcdir/unrealircd.tmpfiles.d 
$pkgdir/usr/lib/tmpfiles.d/unrealircd.conf
-}

Copied: unrealircd/repos/community-i686/PKGBUILD (from rev 166735, 
unr

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

2016-03-14 Thread Timothy Redaelli
Date: Monday, March 14, 2016 @ 18:40:08
  Author: tredaelli
Revision: 166737

upgpkg: qbittorrent 3.3.3-2

Add qbittorrent-nox package

Added:
  qbittorrent/trunk/qbittorrent.service
  qbittorrent/trunk/qbittorrent@.service
Modified:
  qbittorrent/trunk/PKGBUILD

--+
 PKGBUILD |   55 -
 qbittorrent.service  |   11 +
 qbittorrent@.service |   12 ++
 3 files changed, 64 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 15:07:55 UTC (rev 166736)
+++ PKGBUILD2016-03-14 17:40:08 UTC (rev 166737)
@@ -6,30 +6,57 @@
 # Contributor: Daniel J Griffiths 
 # Contributor: Geoffroy Carrier 
 
-pkgname=qbittorrent
+pkgbase=qbittorrent
+pkgname=(qbittorrent qbittorrent-nox)
 pkgver=3.3.3
-pkgrel=1
-pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt toolkit 
and libtorrent-rasterbar."
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://www.qbittorrent.org";
 license=('custom' 'GPL')
-depends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils')
-makedepends=('boost' 'qt5-tools')
-optdepends=('python: needed for torrent search tab')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz";)
-sha256sums=('9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53')
+makedepends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils' 'boost' 'qt5-tools')
+source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz";
+'qbittorrent.service'
+   'qbittorrent@.service')
+sha256sums=('9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53'
+'8c5879673c66368ada97f6d70a1d8fe3b6a4995f79aab4fc6bf54fbdcbe811d0'
+'12dfd06104eaf302b79328c8096248c051208f69348e33f7fb2e4a2fb49caa29')
 
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgbase-$pkgver
 
-  ./configure --prefix=/usr
+  mkdir $pkgbase
+  pushd $pkgbase
+  ../configure --prefix=/usr
   make
+
+  # Build nox variant
+  popd
+  mkdir "$pkgbase-nox"
+  pushd "$pkgbase-nox"
+  ../configure --prefix=/usr --disable-gui
 }
 
-package() {
-  cd $pkgname-$pkgver
+package_qbittorrent() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
+  depends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils')
+  optdepends=('python: needed for torrent search tab')
+  install=$pkgname.install
 
+  cd $pkgbase-$pkgver/$pkgbase
+
   make INSTALL_ROOT="$pkgdir/" install
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 "$srcdir/$pkgbase-$pkgver/COPYING" 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
 }
+
+package_qbittorrent-nox() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
+  depends=('libtorrent-rasterbar' 'qt5-base')
+
+  cd $pkgbase-$pkgver/$pkgbase-nox
+
+  make INSTALL_ROOT="$pkgdir/" install
+  install -Dm644 "$srcdir/$pkgbase-$pkgver/COPYING" 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+
+  install -Dm755 "$srcdir/qbittorrent.service" 
"$pkgdir/usr/lib/systemd/user/qbittorrent.service"
+  install -Dm755 "$srcdir/qbittorrent@.service" 
"$pkgdir/usr/lib/systemd/system/qbittorrent@.service"
+}

Added: qbittorrent.service
===
--- qbittorrent.service (rev 0)
+++ qbittorrent.service 2016-03-14 17:40:08 UTC (rev 166737)
@@ -0,0 +1,11 @@
+[Unit]
+Description=qbittorrent-nox Daemon
+Documentation=https://github.com/qbittorrent/qBittorrent/wiki
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/qbittorrent-nox --daemon --webui-port=8080
+
+[Install]
+WantedBy=default.target

Added: qbittorrent@.service
===
--- qbittorrent@.service(rev 0)
+++ qbittorrent@.service2016-03-14 17:40:08 UTC (rev 166737)
@@ -0,0 +1,12 @@
+[Unit]
+Description=qbittorrent-nox Daemon
+Documentation=https://github.com/qbittorrent/qBittorrent/wiki
+After=network.target
+
+[Service]
+User=%i
+Type=forking
+ExecStart=/usr/bin/qbittorrent-nox --daemon --webui-port=8080
+
+[Install]
+WantedBy=multi-user.target


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

2016-03-14 Thread Timothy Redaelli
Date: Monday, March 14, 2016 @ 18:40:23
  Author: tredaelli
Revision: 166738

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

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

---+
 /PKGBUILD |  124 
 /qbittorrent.install  |   26 ++
 community-i686/PKGBUILD   |   35 -
 community-i686/qbittorrent.install|   13 ---
 community-i686/qbittorrent.service|   11 ++
 community-i686/qbittorrent@.service   |   12 +++
 community-x86_64/PKGBUILD |   35 -
 community-x86_64/qbittorrent.install  |   13 ---
 community-x86_64/qbittorrent.service  |   11 ++
 community-x86_64/qbittorrent@.service |   12 +++
 10 files changed, 196 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 17:40:08 UTC (rev 166737)
+++ community-i686/PKGBUILD 2016-03-14 17:40:23 UTC (rev 166738)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Jkkyll Wu 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Daniel J Griffiths 
-# Contributor: Geoffroy Carrier 
-
-pkgname=qbittorrent
-pkgver=3.3.3
-pkgrel=1
-pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt toolkit 
and libtorrent-rasterbar."
-arch=('i686' 'x86_64')
-url="http://www.qbittorrent.org";
-license=('custom' 'GPL')
-depends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils')
-makedepends=('boost' 'qt5-tools')
-optdepends=('python: needed for torrent search tab')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz";)
-sha256sums=('9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make INSTALL_ROOT="$pkgdir/" install
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: qbittorrent/repos/community-i686/PKGBUILD (from rev 166737, 
qbittorrent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 17:40:23 UTC (rev 166738)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=qbittorrent
+pkgname=(qbittorrent qbittorrent-nox)
+pkgver=3.3.3
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://www.qbittorrent.org";
+license=('custom' 'GPL')
+makedepends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils' 'boost' 'qt5-tools')
+source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz";
+'qbittorrent.service'
+   'qbittorrent@.service')
+sha256sums=('9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53'
+'8c5879673c66368ada97f6d70a1d8fe3b6a4995f79aab4fc6bf54fbdcbe811d0'
+'12dfd06104eaf302b79328c8096248c051208f69348e33f7fb2e4a2fb49caa29')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir $pkgbase
+  pushd $pkgbase
+  ../configure --prefix=/usr
+  make
+
+  # Build nox variant
+  popd
+  mkdir "$pkgbase-nox"
+  pushd "$pkgbase-nox"
+  ../configure --prefix=/usr --disable-gui
+}
+
+package_qbittorrent() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
+  depends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils')
+  optdepends=('p

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

2016-03-14 Thread Anatol Pomozov
Date: Monday, March 14, 2016 @ 18:47:57
  Author: anatolik
Revision: 166739

upgpkg: meson 0.30.0-1

Modified:
  meson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 17:40:23 UTC (rev 166738)
+++ PKGBUILD2016-03-14 17:47:57 UTC (rev 166739)
@@ -1,8 +1,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.29.0
-pkgrel=2
+pkgver=0.30.0
+pkgrel=1
 pkgdesc='SCons-like build system that use python as a front-end language and 
Ninja as a building backend'
 url='http://mesonbuild.com/'
 arch=(any)
@@ -11,7 +11,7 @@
 #checkdepends=(gcc-objc gnustep-make vala rust gcc-fortran mono boost 
qt5-base) #gtest or googletest
 license=(Apache)
 source=(https://pypi.python.org/packages/source/m/meson/meson-$pkgver.tar.gz)
-sha1sums=('8d8329106f7fdcefbd70d32159e34fcc46f97d05')
+sha1sums=('ef63c08ce54de106ce7aa9c67c980b78136fb74f')
 
 check() {
   cd meson-$pkgver


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

2016-03-14 Thread Anatol Pomozov
Date: Monday, March 14, 2016 @ 18:48:19
  Author: anatolik
Revision: 166740

archrelease: copy trunk to community-any

Added:
  meson/repos/community-any/PKGBUILD
(from rev 166739, meson/trunk/PKGBUILD)
Deleted:
  meson/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 17:47:57 UTC (rev 166739)
+++ PKGBUILD2016-03-14 17:48:19 UTC (rev 166740)
@@ -1,25 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-pkgname=meson
-pkgver=0.29.0
-pkgrel=2
-pkgdesc='SCons-like build system that use python as a front-end language and 
Ninja as a building backend'
-url='http://mesonbuild.com/'
-arch=(any)
-depends=(python ninja)
-#checkdepends=(gcc-objc gnustep-make vala rust gcc-fortran mono boost gtest 
qt5-base)
-license=(Apache)
-source=(https://pypi.python.org/packages/source/m/meson/meson-$pkgver.tar.gz)
-sha1sums=('8d8329106f7fdcefbd70d32159e34fcc46f97d05')
-
-check() {
-  cd meson-$pkgver
-#  tests require a lot of dependencies
-#  ./run_tests.py
-}
-
-package() {
-  cd meson-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: meson/repos/community-any/PKGBUILD (from rev 166739, 
meson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 17:48:19 UTC (rev 166740)
@@ -0,0 +1,26 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.30.0
+pkgrel=1
+pkgdesc='SCons-like build system that use python as a front-end language and 
Ninja as a building backend'
+url='http://mesonbuild.com/'
+arch=(any)
+depends=(python ninja)
+optdepends=('python-pyqt5: GUI support')
+#checkdepends=(gcc-objc gnustep-make vala rust gcc-fortran mono boost 
qt5-base) #gtest or googletest
+license=(Apache)
+source=(https://pypi.python.org/packages/source/m/meson/meson-$pkgver.tar.gz)
+sha1sums=('ef63c08ce54de106ce7aa9c67c980b78136fb74f')
+
+check() {
+  cd meson-$pkgver
+#  tests require a lot of dependencies
+#  ./run_tests.py
+}
+
+package() {
+  cd meson-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}


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

2016-03-14 Thread Timothy Redaelli
Date: Monday, March 14, 2016 @ 18:50:59
  Author: tredaelli
Revision: 166742

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

Added:
  dropbear/repos/community-i686/PKGBUILD
(from rev 166741, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-i686/dropbear.service
(from rev 166741, dropbear/trunk/dropbear.service)
  dropbear/repos/community-x86_64/PKGBUILD
(from rev 166741, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-x86_64/dropbear.service
(from rev 166741, dropbear/trunk/dropbear.service)
Deleted:
  dropbear/repos/community-i686/PKGBUILD
  dropbear/repos/community-i686/dropbear.service
  dropbear/repos/community-x86_64/PKGBUILD
  dropbear/repos/community-x86_64/dropbear.service

---+
 /PKGBUILD |   92 
 /dropbear.service |   20 +++
 community-i686/PKGBUILD   |   46 --
 community-i686/dropbear.service   |   10 ---
 community-x86_64/PKGBUILD |   46 --
 community-x86_64/dropbear.service |   10 ---
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 17:50:47 UTC (rev 166741)
+++ community-i686/PKGBUILD 2016-03-14 17:50:59 UTC (rev 166742)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Simon Perry 
-# Contributor: Bartlomiej Piotrowski 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
-# Contributor: Jeremy Cowgar 
-# Contributor: Simon Perry 
-
-pkgname=dropbear
-pkgver=2015.71
-pkgrel=1
-pkgdesc="Lightweight replacement for sshd"
-arch=('i686' 'x86_64')
-url="http://matt.ucc.asn.au/dropbear/dropbear.html";
-license=('MIT')
-depends=('zlib')
-source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
-$pkgname.service)
-sha256sums=('376214169c0e187ee9f48ae1a99b3f835016ad5b98ede4bfd1cf581deba783af'
-'1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
-
-prepare() {
-  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install DESTDIR="${pkgdir}/"
-
-  # Configuration files
-  install -d "${pkgdir}/etc/$pkgname"
-  install -D -m644 "${srcdir}/$pkgname.service" 
"${pkgdir}/usr/lib/systemd/system/$pkgname.service"
-
-  # License file
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: dropbear/repos/community-i686/PKGBUILD (from rev 166741, 
dropbear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 17:50:59 UTC (rev 166742)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Simon Perry 
+# Contributor: Bartlomiej Piotrowski 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
+# Contributor: Jeremy Cowgar 
+# Contributor: Simon Perry 
+
+pkgname=dropbear
+pkgver=2016.72
+pkgrel=1
+pkgdesc="Lightweight replacement for sshd"
+arch=('i686' 'x86_64')
+url="http://matt.ucc.asn.au/dropbear/dropbear.html";
+license=('MIT')
+depends=('zlib')
+source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
+$pkgname.service)
+sha256sums=('9323766d3257699fd7d6e7b282c5a65790864ab32fd09ac73ea3d46c9ca2d681'
+'1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
+
+prepare() {
+  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR="${pkgdir}/"
+
+  # Configuration files
+  install -d "${pkgdir}/etc/$pkgname"
+  install -D -m644 "${srcdir}/$pkgname.service" 
"${pkgdir}/usr/lib/systemd/system/$pkgname.service"
+
+  # License file
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}
+

Deleted: community-i686/dropbear.service
===
--- community-i686/dropbear.service 2016-03-14 17:50:47 UTC (rev 166741)
+++ community-i686/dropbear.service 2016-03-14 17:50:59 UTC (rev 166742)
@@ -1,10 +0,0 @@
-[Unit]
-Description=Dropbear SSH Daemon
-After=network.target
-
-[Service]
-Type=simple
-ExecStart=/usr/bin/dropbear -F -P /run/dropbear.pid
-
-[Install]
-WantedBy=multi-user.target

Copied: dropbear/repos/community-i686/dropbear.service (from rev 166741, 
dropbear/trunk/dropbear.service)
===
--- community-

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

2016-03-14 Thread Timothy Redaelli
Date: Monday, March 14, 2016 @ 18:50:47
  Author: tredaelli
Revision: 166741

upgpkg: dropbear 2016.72-1

CVE-2016-3116

Modified:
  dropbear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 17:48:19 UTC (rev 166740)
+++ PKGBUILD2016-03-14 17:50:47 UTC (rev 166741)
@@ -8,7 +8,7 @@
 # Contributor: Simon Perry 
 
 pkgname=dropbear
-pkgver=2015.71
+pkgver=2016.72
 pkgrel=1
 pkgdesc="Lightweight replacement for sshd"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 depends=('zlib')
 source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
 $pkgname.service)
-sha256sums=('376214169c0e187ee9f48ae1a99b3f835016ad5b98ede4bfd1cf581deba783af'
+sha256sums=('9323766d3257699fd7d6e7b282c5a65790864ab32fd09ac73ea3d46c9ca2d681'
 '1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
 
 prepare() {


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

2016-03-14 Thread Kyle Keen
Date: Monday, March 14, 2016 @ 18:56:06
  Author: kkeen
Revision: 166743

upgpkg: seamonkey 2.40-1

Modified:
  seamonkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 17:50:59 UTC (rev 166742)
+++ PKGBUILD2016-03-14 17:56:06 UTC (rev 166743)
@@ -2,8 +2,8 @@
 # Maintainer: Kyle Keen 
 
 pkgname=seamonkey
-pkgver=2.39
-pkgrel=3
+pkgver=2.40
+pkgrel=1
 pkgdesc="SeaMonkey internet suite"
 arch=('i686' 'x86_64')
 license=('MPL')
@@ -19,7 +19,7 @@
 mozconfig
 seamonkey-2.0-lang.patch
 rhbz-966424.patch)
-md5sums=('eb571346b1ad00d3197d48aa0a906102'
+md5sums=('5789df8f96e14577c275f10fdf8462f3'
  '9b6d65e9b77acf9fd7c6e3578a5d2acd'
  '25b6fe16ac24cd5c852213e5c1adb272'
  '8c1578232b7a60fa1caa9a0b322d1e2b')


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

2016-03-14 Thread Kyle Keen
Date: Monday, March 14, 2016 @ 18:56:46
  Author: kkeen
Revision: 166744

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

Added:
  seamonkey/repos/community-i686/PKGBUILD
(from rev 166743, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-i686/mozconfig
(from rev 166743, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-i686/rhbz-966424.patch
(from rev 166743, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
(from rev 166743, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-i686/seamonkey.install
(from rev 166743, seamonkey/trunk/seamonkey.install)
  seamonkey/repos/community-x86_64/PKGBUILD
(from rev 166743, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-x86_64/mozconfig
(from rev 166743, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-x86_64/rhbz-966424.patch
(from rev 166743, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
(from rev 166743, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-x86_64/seamonkey.install
(from rev 166743, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/community-i686/PKGBUILD
  seamonkey/repos/community-i686/mozconfig
  seamonkey/repos/community-i686/rhbz-966424.patch
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
  seamonkey/repos/community-i686/seamonkey.install
  seamonkey/repos/community-x86_64/PKGBUILD
  seamonkey/repos/community-x86_64/mozconfig
  seamonkey/repos/community-x86_64/rhbz-966424.patch
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
  seamonkey/repos/community-x86_64/seamonkey.install

---+
 /PKGBUILD |  162 
 /mozconfig|   72 
 /rhbz-966424.patch|   46 +++
 /seamonkey-2.0-lang.patch |   22 +++
 /seamonkey.install|   24 
 community-i686/PKGBUILD   |   81 --
 community-i686/mozconfig  |   36 --
 community-i686/rhbz-966424.patch  |   23 ---
 community-i686/seamonkey-2.0-lang.patch   |   11 -
 community-i686/seamonkey.install  |   12 --
 community-x86_64/PKGBUILD |   81 --
 community-x86_64/mozconfig|   36 --
 community-x86_64/rhbz-966424.patch|   23 ---
 community-x86_64/seamonkey-2.0-lang.patch |   11 -
 community-x86_64/seamonkey.install|   12 --
 15 files changed, 326 insertions(+), 326 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 17:56:06 UTC (rev 166743)
+++ community-i686/PKGBUILD 2016-03-14 17:56:46 UTC (rev 166744)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgname=seamonkey
-pkgver=2.39
-pkgrel=3
-pkgdesc="SeaMonkey internet suite"
-arch=('i686' 'x86_64')
-license=('MPL')
-depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  
'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  
'nss'  'sqlite'  'startup-notification' 'libpulse' 'icu' 'gconf')
-makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 
'mesa' 'autoconf2.13' 'imake' 'python3' 'gst-plugins-base')
-optdepends=('gst-plugins-base: vorbis decoding, ogg demuxing'
-'gst-plugins-bad: aac, vp8 and opus decoding'
-'gst-plugins-good: webm and mp4 demuxing'
-'gst-plugins-ugly: h.264 decoding')
-install=$pkgname.install
-url="http://www.seamonkey-project.org/";
-source=(https://archive.mozilla.org/pub/mozilla.org/seamonkey/releases/$pkgver/source/seamonkey-$pkgver.source.tar.xz
-mozconfig
-seamonkey-2.0-lang.patch
-rhbz-966424.patch)
-md5sums=('eb571346b1ad00d3197d48aa0a906102'
- '9b6d65e9b77acf9fd7c6e3578a5d2acd'
- '25b6fe16ac24cd5c852213e5c1adb272'
- '8c1578232b7a60fa1caa9a0b322d1e2b')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cp ../mozconfig .mozconfig
-  #patch -Np1 -i ../seamonkey-2.0-lang.patch
-
-  # FS#48404
-  echo "ac_add_options --enable-gstreamer=1.0" >> .mozconfig
-
-  # https://bugs.archlinux.org/task/41689
-  patch -Np1 -d mozilla -i ../../rhbz-966424.patch
-
-  # Don't exit with error when some libs are missing which we have in
-  # system.
-  sed -i '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' suite/installer/Makefile.in
-
-  # configure script misdetects the preprocessor without an optimization level
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-
-  # 2.26 build fix from wgnie (blfs ch 37)
-  sed -i 's/$(MOZ_ZLIB_CFLAGS)/& $(MOZ_PIXMAN_CFLAGS)/' config/config.mk
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver"
-  export MOZ_MAKE_FLAGS="$MAKEFLAGS"
-  unset MAKEFLAGS
-  unse

[arch-commits] Commit in keepass/repos/community-any (12 files)

2016-03-14 Thread Timothy Redaelli
Date: Monday, March 14, 2016 @ 18:57:21
  Author: tredaelli
Revision: 166746

archrelease: copy trunk to community-any

Added:
  keepass/repos/community-any/PKGBUILD
(from rev 166745, keepass/trunk/PKGBUILD)
  keepass/repos/community-any/keepass
(from rev 166745, keepass/trunk/keepass)
  keepass/repos/community-any/keepass.1
(from rev 166745, keepass/trunk/keepass.1)
  keepass/repos/community-any/keepass.desktop
(from rev 166745, keepass/trunk/keepass.desktop)
  keepass/repos/community-any/keepass.install
(from rev 166745, keepass/trunk/keepass.install)
  keepass/repos/community-any/keepass.xml
(from rev 166745, keepass/trunk/keepass.xml)
Deleted:
  keepass/repos/community-any/PKGBUILD
  keepass/repos/community-any/keepass
  keepass/repos/community-any/keepass.1
  keepass/repos/community-any/keepass.desktop
  keepass/repos/community-any/keepass.install
  keepass/repos/community-any/keepass.xml

-+
 PKGBUILD|  152 +++---
 keepass |4 -
 keepass.1   |   46 
 keepass.desktop |   24 
 keepass.install |   32 +--
 5 files changed, 129 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 17:57:10 UTC (rev 166745)
+++ PKGBUILD2016-03-14 17:57:21 UTC (rev 166746)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Kirill "reflexing" Churin 
-# Contributor: Andrej Gelenberg 
-
-pkgname=keepass
-pkgver=2.31
-pkgrel=1
-pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
-arch=('any')
-url='http://keepass.info/'
-license=('GPL')
-depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'gtk-update-icon-cache')
-makedepends=('icoutils')
-optdepends=('xdotool: if you want to use auto-type'
-'xsel: clipboard operations in order to work around Mono clipboard 
bugs')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip";
-"http://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc";
-'keepass'
-'keepass.1'
-'keepass.desktop'
-'keepass.xml')
-
-sha256sums=('555b1a30f374f7077bf15906b09ab36b40fd3fc5753673a3c0ee3f30f0ed7881'
-'SKIP'
-'7547f2af38771b66c8c2f3d7900b051b37214af49de3dfa27a5d383bf847d582'
-'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
-'1d5420e8babce5f4bbb3c68bdffe3bc0d3c3be25ad689138cd02fa14edd89140'
-'3d017c17a8788166c644e2460ba3596fd503f300342561921201fe5f69e5d194')
-validpgpkeys=('2171BEEAD0DD92A180655626DCCAA5B3FEB7C7BC')
-
-prepare() {
-  # "Convert" to mono 4.0
-  sed -i '1s/ 10.00/ 11.00/' KeePass.sln
-  find . -name "*.csproj" -exec sed -i '1s/"3.5"/"4.0"/' {} +
-
-  # Extract icons
-  icotool -x KeePass/KeePass.ico
-
-  pushd Build &>/dev/null
-  LANG=en_US.UTF-8 bash PrepMonoDev.sh
-  popd &>/dev/null
-}
-
-build() {
-  xbuild /target:KeePass /property:Configuration=Release
-  cp Ext/KeePass.exe.config Build/KeePass/Release/
-}
-
-package() {
-  install -dm755 "$pkgdir"/usr/bin
-  install -dm755 "$pkgdir"/usr/share/keepass/XSL
-
-  install -Dm755 keepass "$pkgdir"/usr/bin/keepass
-  install -Dm755 Build/KeePass/Release/KeePass.exe 
"$pkgdir"/usr/share/keepass/KeePass.exe
-  install -Dm755 Ext/KeePass.config.xml 
"$pkgdir"/usr/share/keepass/KeePass.config.xml
-  install -Dm755 Ext/KeePass.exe.config 
"$pkgdir"/usr/share/keepass/KeePass.exe.config
-
-  install -m644 Ext/XSL/* "$pkgdir"/usr/share/keepass/XSL
-
-  install -Dm644 keepass.1 "$pkgdir"/usr/share/man/man1/keepass.1
-
-  # Proper installation of .desktop file
-  desktop-file-install -m 644 --dir "$pkgdir"/usr/share/applications/ 
keepass.desktop
-
-  # Install icons
-  for size in 16 32 48 256; do
-install -Dm644 \
-KeePass_*_${size}x${size}x32.png \
-"$pkgdir"/usr/share/icons/hicolor/${size}x${size}/apps/keepass.png
-  done
-
-  # Needed for postinst with xdg-utils
-  install -Dm644 keepass.xml "$pkgdir"/usr/share/mime/packages/keepass.xml
-}

Copied: keepass/repos/community-any/PKGBUILD (from rev 166745, 
keepass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 17:57:21 UTC (rev 166746)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Kirill "reflexing" Churin 
+# Contributor: Andrej Gelenberg 
+
+pkgname=keepass
+pkgver=2.32
+pkgrel=1
+pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
+arch=('any')
+url='http://keepass.info/'
+license=('GPL')
+depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'gtk-update-icon-cache')
+makedepends=('icoutils')
+optdepends=('xdotool: if you want to use auto-type'
+'xsel: clipboard operations in order t

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

2016-03-14 Thread Timothy Redaelli
Date: Monday, March 14, 2016 @ 18:57:10
  Author: tredaelli
Revision: 166745

upgpkg: keepass 2.32-1

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 17:56:46 UTC (rev 166744)
+++ PKGBUILD2016-03-14 17:57:10 UTC (rev 166745)
@@ -4,7 +4,7 @@
 # Contributor: Andrej Gelenberg 
 
 pkgname=keepass
-pkgver=2.31
+pkgver=2.32
 pkgrel=1
 pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
 arch=('any')
@@ -22,7 +22,7 @@
 'keepass.desktop'
 'keepass.xml')
 
-sha256sums=('555b1a30f374f7077bf15906b09ab36b40fd3fc5753673a3c0ee3f30f0ed7881'
+sha256sums=('7c49b62c8de758dee7e9c2d6108c169d468b4e65f21e297649d3dd8c2b757385'
 'SKIP'
 '7547f2af38771b66c8c2f3d7900b051b37214af49de3dfa27a5d383bf847d582'
 'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'


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

2016-03-14 Thread Maxime Gauduin
Date: Monday, March 14, 2016 @ 19:23:36
  Author: alucryd
Revision: 166747

upgpkg: plank 0.11.0-1

Modified:
  plank/trunk/PKGBUILD
  plank/trunk/plank.install

---+
 PKGBUILD  |6 +++---
 plank.install |3 ++-
 2 files changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 17:57:21 UTC (rev 166746)
+++ PKGBUILD2016-03-14 18:23:36 UTC (rev 166747)
@@ -4,8 +4,8 @@
 # Contributor: dcelasun 
 
 pkgname=plank
-pkgver=0.10.1
-pkgrel=2
+pkgver=0.11.0
+pkgrel=1
 pkgdesc='Elegant, simple, clean dock'
 arch=('i686' 'x86_64')
 url='https://launchpad.net/plank'
@@ -15,7 +15,7 @@
 makedepends=('gnome-common' 'intltool' 'vala')
 install='plank.install'
 
source=("https://launchpad.net/plank/1.0/${pkgver}/+download/plank-${pkgver}.tar.xz";)
-sha256sums=('04cf4205fb7fce035bf537395fbfc3cf79aea9692fb4186345fe6a06ce2ebf36')
+sha256sums=('4d841deb46c071393541d5abec9d6c46f61434027d3426fdd130768444995ea3')
 
 build() {
   cd plank-${pkgver}

Modified: plank.install
===
--- plank.install   2016-03-14 17:57:21 UTC (rev 166746)
+++ plank.install   2016-03-14 18:23:36 UTC (rev 166747)
@@ -1,5 +1,6 @@
 post_install() {
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -fqt usr/share/icons/hicolor
 }
 
 post_upgrade()


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

2016-03-14 Thread Maxime Gauduin
Date: Monday, March 14, 2016 @ 19:23:53
  Author: alucryd
Revision: 166748

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

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

+
 /PKGBUILD  |   72 +++
 /plank.install |   32 +
 community-i686/PKGBUILD|   36 ---
 community-i686/plank.install   |   15 
 community-x86_64/PKGBUILD  |   36 ---
 community-x86_64/plank.install |   15 
 6 files changed, 104 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 18:23:36 UTC (rev 166747)
+++ community-i686/PKGBUILD 2016-03-14 18:23:53 UTC (rev 166748)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ner0 
-# Contributor: dcelasun 
-
-pkgname=plank
-pkgver=0.10.1
-pkgrel=2
-pkgdesc='Elegant, simple, clean dock'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/plank'
-license=('GPL3')
-depends=('atk' 'bamf' 'cairo' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3'
- 'libgee' 'libwnck3' 'libx11' 'libxfixes' 'libxi' 'pango')
-makedepends=('gnome-common' 'intltool' 'vala')
-install='plank.install'
-source=("https://launchpad.net/plank/1.0/${pkgver}/+download/plank-${pkgver}.tar.xz";)
-sha256sums=('04cf4205fb7fce035bf537395fbfc3cf79aea9692fb4186345fe6a06ce2ebf36')
-
-build() {
-  cd plank-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---sysconfdir='/etc' \
---disable-apport
-  make
-}
-
-package() {
-  cd plank-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: plank/repos/community-i686/PKGBUILD (from rev 166747, 
plank/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 18:23:53 UTC (rev 166748)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Ner0 
+# Contributor: dcelasun 
+
+pkgname=plank
+pkgver=0.11.0
+pkgrel=1
+pkgdesc='Elegant, simple, clean dock'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/plank'
+license=('GPL3')
+depends=('atk' 'bamf' 'cairo' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3'
+ 'libgee' 'libwnck3' 'libx11' 'libxfixes' 'libxi' 'pango')
+makedepends=('gnome-common' 'intltool' 'vala')
+install='plank.install'
+source=("https://launchpad.net/plank/1.0/${pkgver}/+download/plank-${pkgver}.tar.xz";)
+sha256sums=('4d841deb46c071393541d5abec9d6c46f61434027d3426fdd130768444995ea3')
+
+build() {
+  cd plank-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--sysconfdir='/etc' \
+--disable-apport
+  make
+}
+
+package() {
+  cd plank-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/plank.install
===
--- community-i686/plank.install2016-03-14 18:23:36 UTC (rev 166747)
+++ community-i686/plank.install2016-03-14 18:23:53 UTC (rev 166748)
@@ -1,15 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-}
-
-post_upgrade()
-{
-  post_install
-}
-
-post_remove()
-{
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: plank/repos/community-i686/plank.install (from rev 166747, 
plank/trunk/plank.install)
===
--- community-i686/plank.install(rev 0)
+++ community-i686/plank.install2016-03-14 18:23:53 UTC (rev 166748)
@@ -0,0 +1,16 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -fqt usr/share/icons/hicolor
+}
+
+post_upgrade()
+{
+  post_install
+}
+
+post_remove()
+{
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-14 18:23:36 UTC (rev 166747)
+++ community-x86_64/PKGBUILD   2016-03-14 18:23:53 UTC (rev 166748)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ner0 
-# Contributor: dcelasun 
-
-pkgname=plank
-pkgver=0.10.1
-pkgrel=2
-pkgdesc='Elegant, simple, clean dock'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/plank'
-license=('GPL3')
-depends=('atk' 'bamf' 'cairo' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3'
- 'li

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

2016-03-14 Thread Florian Pritz
Date: Monday, March 14, 2016 @ 19:32:00
  Author: bluewind
Revision: 261457

upgpkg: pacman-mirrorlist 20160314-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |8 
 mirrorlist |3 ++-
 2 files changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 17:48:27 UTC (rev 261456)
+++ PKGBUILD2016-03-14 18:32:00 UTC (rev 261457)
@@ -2,8 +2,8 @@
 # Maintainer: Dan McGee 
 
 pkgname=pacman-mirrorlist
-pkgver=20160310
-pkgrel=5
+pkgver=20160314
+pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
 url="https://www.archlinux.org/mirrorlist/";
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('961cf4cc74401b80ef4eccbc7e9b6da9')
-sha256sums=('6645fd42d51782d2297693866463be73d5447941d20fb1d539b56b3c9211026c')
+md5sums=('4409d2cd7ae7822f42440b136a6b57e4')
+sha256sums=('320148f55fd7885d359128949ba9408ede7f7015d3d2e34fc716990bdff87bbd')

Modified: mirrorlist
===
--- mirrorlist  2016-03-14 17:48:27 UTC (rev 261456)
+++ mirrorlist  2016-03-14 18:32:00 UTC (rev 261457)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2016-03-10
+## Generated on 2016-03-14
 ##
 
 ## Worldwide
@@ -305,6 +305,7 @@
 ## South Africa
 #Server = http://archlinux-za.mirror.host1plus.com/$repo/os/$arch
 #Server = http://ftp.wa.co.za/pub/archlinux/$repo/os/$arch
+#Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch
 #Server = http://mirror.wbs.co.za/archlinux/$repo/os/$arch
 
 ## South Korea


  1   2   >