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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 16:39:40
  Author: fyan
Revision: 164127

upgpkg: haskell-trifecta 1.5.2-8

rebuild with aeson-0.11.1.0, base-orphans-0.5.3, hlint-1.9.31, 
git-annex-6.20160229, hpack-0.10.0, stylish-haskell-0.5.15.2, wai-extra-3.0.14.1

Modified:
  haskell-trifecta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 15:34:26 UTC (rev 164126)
+++ PKGBUILD2016-03-02 15:39:40 UTC (rev 164127)
@@ -5,7 +5,7 @@
 _hkgname=trifecta
 pkgname=haskell-trifecta
 pkgver=1.5.2
-pkgrel=7
+pkgrel=8
 pkgdesc="A modern parser combinator library with convenient diagnostics"
 url="http://github.com/ekmett/trifecta/;
 license=("custom:BSD3")


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 17:43:46
  Author: fyan
Revision: 164146

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

Added:
  haskell-tasty-rerun/repos/community-staging-i686/
  haskell-tasty-rerun/repos/community-staging-i686/PKGBUILD
(from rev 164145, haskell-tasty-rerun/trunk/PKGBUILD)
  haskell-tasty-rerun/repos/community-staging-i686/haskell-tasty-rerun.install
(from rev 164145, haskell-tasty-rerun/trunk/haskell-tasty-rerun.install)
  haskell-tasty-rerun/repos/community-staging-x86_64/
  haskell-tasty-rerun/repos/community-staging-x86_64/PKGBUILD
(from rev 164145, haskell-tasty-rerun/trunk/PKGBUILD)
  haskell-tasty-rerun/repos/community-staging-x86_64/haskell-tasty-rerun.install
(from rev 164145, haskell-tasty-rerun/trunk/haskell-tasty-rerun.install)

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

Copied: haskell-tasty-rerun/repos/community-staging-i686/PKGBUILD (from rev 
164145, haskell-tasty-rerun/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 16:43:46 UTC (rev 164146)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-rerun
+pkgname=haskell-tasty-rerun
+pkgver=1.1.5
+pkgrel=7
+pkgdesc="Run tests by filtering the test tree depending on the result of 
previous test runs"
+url="http://github.com/ocharles/tasty-rerun;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-mtl" "haskell-optparse-applicative" 
"haskell-reducers"
+ "haskell-split" "haskell-stm" "haskell-tagged" "haskell-tasty")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9877de7602a231fb9cf772c47f9a15ef6764e159ddd96a350a7c16b1a158403e')
+
+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-tasty-rerun/repos/community-staging-i686/haskell-tasty-rerun.install 
(from rev 164145, haskell-tasty-rerun/trunk/haskell-tasty-rerun.install)
===
--- community-staging-i686/haskell-tasty-rerun.install  
(rev 0)
+++ community-staging-i686/haskell-tasty-rerun.install  2016-03-02 16:43:46 UTC 
(rev 164146)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-tasty-rerun
+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-tasty-rerun/repos/community-staging-x86_64/PKGBUILD (from rev 
164145, haskell-tasty-rerun/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 16:43:46 UTC (rev 164146)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-rerun
+pkgname=haskell-tasty-rerun
+pkgver=1.1.5
+pkgrel=7
+pkgdesc="Run tests by filtering the test tree depending on the result of 
previous test runs"

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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 17:44:15
  Author: fyan
Revision: 164147

upgpkg: haskell-binary-tagged 0.1.3.1-4

rebuild with aeson-0.11.1.0, base-orphans-0.5.3, hlint-1.9.31, 
git-annex-6.20160229, hpack-0.10.0, stylish-haskell-0.5.15.2, wai-extra-3.0.14.1

Modified:
  haskell-binary-tagged/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 16:43:46 UTC (rev 164146)
+++ PKGBUILD2016-03-02 16:44:15 UTC (rev 164147)
@@ -5,7 +5,7 @@
 _hkgname=binary-tagged
 pkgname=haskell-binary-tagged
 pkgver=0.1.3.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Tagged binary serialisation."
 url="https://github.com/phadej/binary-tagged#readme;
 license=("custom:BSD3")


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 17:43:24
  Author: fyan
Revision: 164145

upgpkg: haskell-tasty-rerun 1.1.5-7

rebuild with aeson-0.11.1.0, base-orphans-0.5.3, hlint-1.9.31, 
git-annex-6.20160229, hpack-0.10.0, stylish-haskell-0.5.15.2, wai-extra-3.0.14.1

Modified:
  haskell-tasty-rerun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 16:32:17 UTC (rev 164144)
+++ PKGBUILD2016-03-02 16:43:24 UTC (rev 164145)
@@ -5,7 +5,7 @@
 _hkgname=tasty-rerun
 pkgname=haskell-tasty-rerun
 pkgver=1.1.5
-pkgrel=6
+pkgrel=7
 pkgdesc="Run tests by filtering the test tree depending on the result of 
previous test runs"
 url="http://github.com/ocharles/tasty-rerun;
 license=("custom:BSD3")


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 17:44:40
  Author: fyan
Revision: 164148

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

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

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

Copied: haskell-binary-tagged/repos/community-staging-i686/PKGBUILD (from rev 
164147, haskell-binary-tagged/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 16:44:40 UTC (rev 164148)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=binary-tagged
+pkgname=haskell-binary-tagged
+pkgver=0.1.3.1
+pkgrel=4
+pkgdesc="Tagged binary serialisation."
+url="https://github.com/phadej/binary-tagged#readme;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-sha" "haskell-aeson" "haskell-generics-sop"
+ "haskell-hashable" "haskell-scientific" "haskell-tagged"
+ "haskell-text" "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('cdd99120148015a56d92ebc38380f9ea9254d6272e5d0952dae4e55eaf52252f')
+
+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-binary-tagged/repos/community-staging-i686/haskell-binary-tagged.install
 (from rev 164147, haskell-binary-tagged/trunk/haskell-binary-tagged.install)
===
--- community-staging-i686/haskell-binary-tagged.install
(rev 0)
+++ community-staging-i686/haskell-binary-tagged.install2016-03-02 
16:44:40 UTC (rev 164148)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-binary-tagged
+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-binary-tagged/repos/community-staging-x86_64/PKGBUILD (from rev 
164147, haskell-binary-tagged/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 16:44:40 UTC (rev 164148)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=binary-tagged
+pkgname=haskell-binary-tagged
+pkgver=0.1.3.1
+pkgrel=4
+pkgdesc="Tagged binary 

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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 17:55:25
  Author: fyan
Revision: 164150

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

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

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

Copied: haskell-esqueleto/repos/community-staging-i686/PKGBUILD (from rev 
164149, haskell-esqueleto/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 16:55:25 UTC (rev 164150)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=esqueleto
+pkgname=haskell-esqueleto
+pkgver=2.4.3
+pkgrel=5
+pkgdesc="Type-safe EDSL for SQL queries on persistent backends."
+url="https://github.com/prowdsponsor/esqueleto;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-html" "haskell-conduit" 
"haskell-monad-logger"
+ "haskell-persistent" "haskell-resourcet" "haskell-tagged" 
"haskell-text"
+ "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('bf555cfb40519ed1573f7bb90c65f693b9639dfa93fc230d3ded6e897434')
+
+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-mysql -f-postgresql
+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-esqueleto/repos/community-staging-i686/haskell-esqueleto.install (from 
rev 164149, haskell-esqueleto/trunk/haskell-esqueleto.install)
===
--- community-staging-i686/haskell-esqueleto.install
(rev 0)
+++ community-staging-i686/haskell-esqueleto.install2016-03-02 16:55:25 UTC 
(rev 164150)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-esqueleto
+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-esqueleto/repos/community-staging-x86_64/PKGBUILD (from rev 
164149, haskell-esqueleto/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 16:55:25 UTC (rev 164150)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=esqueleto
+pkgname=haskell-esqueleto
+pkgver=2.4.3
+pkgrel=5
+pkgdesc="Type-safe EDSL for SQL queries on persistent backends."

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

2016-03-02 Thread Gaetan Bisson
Date: Wednesday, March 2, 2016 @ 18:08:17
  Author: bisson
Revision: 164151

upstream update

Modified:
  unbound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 16:55:25 UTC (rev 164150)
+++ PKGBUILD2016-03-02 17:08:17 UTC (rev 164151)
@@ -4,7 +4,7 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=unbound
-pkgver=1.5.7
+pkgver=1.5.8
 pkgrel=1
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='http://unbound.net/'
@@ -18,7 +18,7 @@
 source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
 'service'
 'conf')
-sha1sums=('6306fec537f507a41b9c3a7e16e4aa1c10532510' 'SKIP'
+sha1sums=('1391888d2e3395d766545cd3dbdf0f1879c48080' 'SKIP'
   '63fcc187cec6f262d81600e66c6747285c72ad15'
   '98515708441cb831890a0b6d1986fd40649646c0')
 


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

2016-03-02 Thread Gaetan Bisson
Date: Wednesday, March 2, 2016 @ 18:09:24
  Author: bisson
Revision: 164152

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

Added:
  unbound/repos/community-i686/PKGBUILD
(from rev 164151, unbound/trunk/PKGBUILD)
  unbound/repos/community-i686/conf
(from rev 164151, unbound/trunk/conf)
  unbound/repos/community-i686/install
(from rev 164151, unbound/trunk/install)
  unbound/repos/community-i686/service
(from rev 164151, unbound/trunk/service)
  unbound/repos/community-x86_64/PKGBUILD
(from rev 164151, unbound/trunk/PKGBUILD)
  unbound/repos/community-x86_64/conf
(from rev 164151, unbound/trunk/conf)
  unbound/repos/community-x86_64/install
(from rev 164151, unbound/trunk/install)
  unbound/repos/community-x86_64/service
(from rev 164151, unbound/trunk/service)
Deleted:
  unbound/repos/community-i686/PKGBUILD
  unbound/repos/community-i686/conf
  unbound/repos/community-i686/install
  unbound/repos/community-i686/service
  unbound/repos/community-x86_64/PKGBUILD
  unbound/repos/community-x86_64/conf
  unbound/repos/community-x86_64/install
  unbound/repos/community-x86_64/service

---+
 /PKGBUILD |  104 
 /conf |   10 
 /install  |   20 
 /service  |   26 +++
 community-i686/PKGBUILD   |   52 --
 community-i686/conf   |5 --
 community-i686/install|   10 
 community-i686/service|   13 -
 community-x86_64/PKGBUILD |   52 --
 community-x86_64/conf |5 --
 community-x86_64/install  |   10 
 community-x86_64/service  |   13 -
 12 files changed, 160 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-02 17:08:17 UTC (rev 164151)
+++ community-i686/PKGBUILD 2016-03-02 17:09:24 UTC (rev 164152)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.5.7
-pkgrel=1
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='http://unbound.net/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('openssl' 'ldns' 'libevent' 'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'service'
-'conf')
-sha1sums=('6306fec537f507a41b9c3a7e16e4aa1c10532510' 'SKIP'
-  '63fcc187cec6f262d81600e66c6747285c72ad15'
-  '98515708441cb831890a0b6d1986fd40649646c0')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --with-libevent \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --enable-relro-now \
-   --enable-pie \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 doc/example.conf.in 
"${pkgdir}/etc/unbound/unbound.conf.example"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 ../conf "${pkgdir}/etc/unbound/unbound.conf"
-}

Copied: unbound/repos/community-i686/PKGBUILD (from rev 164151, 
unbound/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-02 17:09:24 UTC (rev 164152)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.5.8
+pkgrel=1
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='http://unbound.net/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('openssl' 'ldns' 'libevent' 'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
+source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'service'
+'conf')
+sha1sums=('1391888d2e3395d766545cd3dbdf0f1879c48080' 'SKIP'
+  '63fcc187cec6f262d81600e66c6747285c72ad15'
+  

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

2016-03-02 Thread Sergej Pupykin
Date: Wednesday, March 2, 2016 @ 17:31:18
  Author: spupykin
Revision: 164137

upgpkg: owncloud 9.0.0RC1-1

upd

Modified:
  owncloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 16:07:12 UTC (rev 164136)
+++ PKGBUILD2016-03-02 16:31:18 UTC (rev 164137)
@@ -4,7 +4,7 @@
 # Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
 
 pkgname=owncloud
-pkgver=9.0.0beta2
+pkgver=9.0.0RC1
 pkgrel=1
 pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
 arch=('any')
@@ -40,19 +40,17 @@
 #  
"$pkgname-files_locking-$pkgver.tar.gz::https://github.com/owncloud/files_locking/archive/v$pkgver.tar.gz;

"$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;

"$pkgname-activity-$pkgver.tar.gz::https://github.com/owncloud/activity/archive/v$pkgver.tar.gz;
-   'apache.example.conf'
-   
"https://github.com/owncloud/3rdparty/commit/c03c864a03729956eec97dded790883c93dbd2e0.patch;)
-md5sums=('d2dd99cf24c536c76bf7501c6f37d6ca'
- '3d02493b1906761f49b93e29e3239af7'
- '1b1e6832fa9bfdf6886060e96daf2ed2'
- '7793c2d51811792d8f89a6cacf7d'
- 'af951ef7f2a53fc0735f417c175f565b'
- '59491d8e2ad2e6bc448bd1d332430ce0'
- 'c4d9627209890f2cd55c4e75cbdea58a'
- 'dfaef496df56ee5b17b9a16ab3978d71'
- '7a9b0251062215e783f8e9f028674c4b'
- '825bc73b2b661f90308dd9d5b570e481'
- '77bad9c67c6b358b4fca1115115f7e1f')
+   'apache.example.conf')
+md5sums=('d75bc778e4f15200630ba9c85c78fe32'
+ '671f6d30d2b282c70fb41769ead699ec'
+ 'b58e70c9ec17a8b319062c9db9199aca'
+ '6df83fec79261ef58f084ef4e878a33c'
+ 'a9293f5a4c5d3581790818f8a357036a'
+ '447851bc4f03e75683988e9cd78ceeaf'
+ 'd3bcfcce734951428bdc37241be66d6b'
+ '1e57b1d17e8ee22fbc742f498eb6d30c'
+ '9b8e74697229e7e55421d04fe0d0e75b'
+ '825bc73b2b661f90308dd9d5b570e481')
 
 prepare() {
   cd $srcdir/core-$pkgver
@@ -61,9 +59,6 @@
   mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
   mv $srcdir/apps-$pkgver/* $srcdir/core-$pkgver/apps
 
-  # php7 fix
-#  (cd $srcdir/core-$pkgver/3rdparty && patch -p1 -i 
$srcdir/c03c864a03729956eec97dded790883c93dbd2e0.patch)
-
 #  for i in files_locking files_pdfviewer files_texteditor firstrunwizard \
   for i in files_pdfviewer files_texteditor firstrunwizard \
templateeditor updater activity; do


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

2016-03-02 Thread Sergej Pupykin
Date: Wednesday, March 2, 2016 @ 17:31:30
  Author: spupykin
Revision: 164138

archrelease: copy trunk to community-testing-any

Added:
  owncloud/repos/community-testing-any/PKGBUILD
(from rev 164137, owncloud/trunk/PKGBUILD)
  owncloud/repos/community-testing-any/apache.example.conf
(from rev 164137, owncloud/trunk/apache.example.conf)
Deleted:
  owncloud/repos/community-testing-any/PKGBUILD
  owncloud/repos/community-testing-any/apache.example.conf

-+
 PKGBUILD|  209 --
 apache.example.conf |   36 
 2 files changed, 120 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-02 16:31:18 UTC (rev 164137)
+++ PKGBUILD2016-03-02 16:31:30 UTC (rev 164138)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Antonio Rojas 
-# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
-
-pkgname=owncloud
-pkgver=9.0.0beta2
-pkgrel=1
-pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
-arch=('any')
-url="http://owncloud.org/;
-license=('GPL')
-depends=('php-gd')
-optdepends=('php-apache: to use the Apache web server'
-   'php-sqlite: to use the SQLite database backend'
-   'php-pgsql: to use the PostgreSQL database backend'
-   'php-ldap: LDAP authentication'
-   'php-intl'
-   'php-apcu'
-   'php-xcache'
-   'mariadb: to use the MySQL database backend'
-   'smbclient: to mount SAMBA shares'
-   'php-mcrypt'
-#  'php-imagick: file preview'
-   'ffmpeg: file preview'
-   'libreoffice: file preview')
-makedepends=()
-options=('!strip')
-backup=('etc/webapps/owncloud/apache.example.conf')
-validpgpkeys=('E3036906AD9F30807351FAC32D5D5E97F6978A26')
-_watch="https://owncloud.org/changelog/;
-#source=("http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2"{,.asc}
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/core/archive/v$pkgver.tar.gz;
-   
"$pkgname-3rdparty-$pkgver.tar.gz::https://github.com/owncloud/3rdparty/archive/v$pkgver.tar.gz;
-   
"$pkgname-apps-$pkgver.tar.gz::https://github.com/owncloud/apps/archive/v$pkgver.tar.gz;
-   
"$pkgname-updater-$pkgver.tar.gz::https://github.com/owncloud/updater/archive/v$pkgver.tar.gz;
-   
"$pkgname-templateeditor-$pkgver.tar.gz::https://github.com/owncloud/templateeditor/archive/v$pkgver.tar.gz;
-   
"$pkgname-firstrunwizard-$pkgver.tar.gz::https://github.com/owncloud/firstrunwizard/archive/v$pkgver.tar.gz;
-   
"$pkgname-files_texteditor-$pkgver.tar.gz::https://github.com/owncloud/files_texteditor/archive/v$pkgver.tar.gz;
-#  
"$pkgname-files_locking-$pkgver.tar.gz::https://github.com/owncloud/files_locking/archive/v$pkgver.tar.gz;
-   
"$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;
-   
"$pkgname-activity-$pkgver.tar.gz::https://github.com/owncloud/activity/archive/v$pkgver.tar.gz;
-   'apache.example.conf'
-   
"https://github.com/owncloud/3rdparty/commit/c03c864a03729956eec97dded790883c93dbd2e0.patch;)
-md5sums=('d2dd99cf24c536c76bf7501c6f37d6ca'
- '3d02493b1906761f49b93e29e3239af7'
- '1b1e6832fa9bfdf6886060e96daf2ed2'
- '7793c2d51811792d8f89a6cacf7d'
- 'af951ef7f2a53fc0735f417c175f565b'
- '59491d8e2ad2e6bc448bd1d332430ce0'
- 'c4d9627209890f2cd55c4e75cbdea58a'
- 'dfaef496df56ee5b17b9a16ab3978d71'
- '7a9b0251062215e783f8e9f028674c4b'
- '825bc73b2b661f90308dd9d5b570e481'
- '77bad9c67c6b358b4fca1115115f7e1f')
-
-prepare() {
-  cd $srcdir/core-$pkgver
-  sed -i "s|'appstoreenabled'.*|'appstoreenabled' => false,|" 
config/config.sample.php
-  rm -rf $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/apps-$pkgver/* $srcdir/core-$pkgver/apps
-
-  # php7 fix
-#  (cd $srcdir/core-$pkgver/3rdparty && patch -p1 -i 
$srcdir/c03c864a03729956eec97dded790883c93dbd2e0.patch)
-
-#  for i in files_locking files_pdfviewer files_texteditor firstrunwizard \
-  for i in files_pdfviewer files_texteditor firstrunwizard \
-   templateeditor updater activity; do
-mv $srcdir/$i-$pkgver $srcdir/core-$pkgver/apps/$i
-  done
-  find . -type f -name .gitattributes -delete
-  find . -type f -name .gitkeep -delete
-  find . -type f -name .gitignore -delete
-  find . -type f -name .gitmodules -delete
-  find . -type f -name .travis.yml -delete
-  find . -type d -name .git -exec rm -rf {} \;
-  find ./apps -maxdepth 1 -type f -delete
-}
-
-package() {
-  # install license
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  cp ${srcdir}/core-$pkgver/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
-
-  # install project
-  install -d 

[arch-commits] Commit in owncloud-app-calendar/trunk (PKGBUILD)

2016-03-02 Thread Sergej Pupykin
Date: Wednesday, March 2, 2016 @ 18:14:41
  Author: spupykin
Revision: 164153

upgpkg: owncloud-app-calendar 1:1.0alpha2git-1

upd

Modified:
  owncloud-app-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:09:24 UTC (rev 164152)
+++ PKGBUILD2016-03-02 17:14:41 UTC (rev 164153)
@@ -3,7 +3,7 @@
 
 pkgname=owncloud-app-calendar
 epoch=1
-pkgver=1.0alpha2
+pkgver=1.0alpha2git
 pkgrel=1
 pkgdesc="Calendar app for owncloud"
 arch=('any')
@@ -12,10 +12,12 @@
 depends=('owncloud')
 makedepends=()
 options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver/alpha/-alpha}.tar.gz;)
-md5sums=('30bb85cc3f8d18b12a1164d91868591d')
+#source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver/alpha/-alpha}.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/ded98e48fadf9ad231d7066dbced24f7248dc155.tar.gz;)
+md5sums=('60d22a0d5f95ec4b6133dfe3d2d0c787')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/calendar-rework-${pkgver/alpha/-alpha} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
+#  cp -a ${srcdir}/calendar-rework-${pkgver/alpha/-alpha} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
+  cp -a ${srcdir}/calendar-ded98e48fadf9ad231d7066dbced24f7248dc155 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
 }


[arch-commits] Commit in owncloud-app-calendar/repos/community-testing-any (2 files)

2016-03-02 Thread Sergej Pupykin
Date: Wednesday, March 2, 2016 @ 18:14:50
  Author: spupykin
Revision: 164154

archrelease: copy trunk to community-testing-any

Added:
  owncloud-app-calendar/repos/community-testing-any/PKGBUILD
(from rev 164153, owncloud-app-calendar/trunk/PKGBUILD)
Deleted:
  owncloud-app-calendar/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-02 17:14:41 UTC (rev 164153)
+++ PKGBUILD2016-03-02 17:14:50 UTC (rev 164154)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-calendar
-epoch=1
-pkgver=1.0alpha2
-pkgrel=1
-pkgdesc="Calendar app for owncloud"
-arch=('any')
-url="http://owncloud.org/;
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver/alpha/-alpha}.tar.gz;)
-md5sums=('30bb85cc3f8d18b12a1164d91868591d')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/calendar-rework-${pkgver/alpha/-alpha} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
-}

Copied: owncloud-app-calendar/repos/community-testing-any/PKGBUILD (from rev 
164153, owncloud-app-calendar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-02 17:14:50 UTC (rev 164154)
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-calendar
+epoch=1
+pkgver=1.0alpha2git
+pkgrel=1
+pkgdesc="Calendar app for owncloud"
+arch=('any')
+url="http://owncloud.org/;
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+#source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver/alpha/-alpha}.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/ded98e48fadf9ad231d7066dbced24f7248dc155.tar.gz;)
+md5sums=('60d22a0d5f95ec4b6133dfe3d2d0c787')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+#  cp -a ${srcdir}/calendar-rework-${pkgver/alpha/-alpha} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
+  cp -a ${srcdir}/calendar-ded98e48fadf9ad231d7066dbced24f7248dc155 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
+}


[arch-commits] Commit in owncloud-app-calendar/trunk (PKGBUILD)

2016-03-02 Thread Sergej Pupykin
Date: Wednesday, March 2, 2016 @ 18:22:39
  Author: spupykin
Revision: 164157

fix url

Modified:
  owncloud-app-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:18:58 UTC (rev 164156)
+++ PKGBUILD2016-03-02 17:22:39 UTC (rev 164157)
@@ -13,11 +13,11 @@
 makedepends=()
 options=('!strip')
 
#source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver/alpha/-alpha}.tar.gz;)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/ded98e48fadf9ad231d7066dbced24f7248dc155.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar/archive/ded98e48fadf9ad231d7066dbced24f7248dc155.tar.gz;)
 md5sums=('60d22a0d5f95ec4b6133dfe3d2d0c787')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-#  cp -a ${srcdir}/calendar-rework-${pkgver/alpha/-alpha} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
+#  cp -a ${srcdir}/calendar-${pkgver/alpha/-alpha} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
   cp -a ${srcdir}/calendar-ded98e48fadf9ad231d7066dbced24f7248dc155 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
 }


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 18:43:20
  Author: fyan
Revision: 164158

upgpkg: haskell-yesod 1.4.2-24

rebuild with aeson-0.11.1.0, base-orphans-0.5.3, hlint-1.9.31, 
git-annex-6.20160229, hpack-0.10.0, stylish-haskell-0.5.15.2, wai-extra-3.0.14.1

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:22:39 UTC (rev 164157)
+++ PKGBUILD2016-03-02 17:43:20 UTC (rev 164158)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.2
-pkgrel=23
+pkgrel=24
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in owncloud-app-contacts/repos/community-testing-any (2 files)

2016-03-02 Thread Sergej Pupykin
Date: Wednesday, March 2, 2016 @ 18:44:02
  Author: spupykin
Revision: 164161

archrelease: copy trunk to community-testing-any

Added:
  owncloud-app-contacts/repos/community-testing-any/PKGBUILD
(from rev 164160, owncloud-app-contacts/trunk/PKGBUILD)
Deleted:
  owncloud-app-contacts/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-02 17:43:52 UTC (rev 164160)
+++ PKGBUILD2016-03-02 17:44:02 UTC (rev 164161)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-contacts
-epoch=1
-pkgver=0.5.0.0
-pkgrel=2
-pkgdesc="Contacts app for owncloud"
-arch=('any')
-url="http://owncloud.org/;
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/bb83d080a32b682f07093d663cd37d26f68886b7.tar.gz;)
-md5sums=('234ce9387c45e8ed80432ca183582e39')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/contacts-master 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
-}

Copied: owncloud-app-contacts/repos/community-testing-any/PKGBUILD (from rev 
164160, owncloud-app-contacts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-02 17:44:02 UTC (rev 164161)
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-contacts
+epoch=2
+pkgver=0.0.0.1
+pkgrel=1
+pkgdesc="Contacts app for owncloud"
+arch=('any')
+url="http://owncloud.org/;
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz;)
+md5sums=('e2663626547ffa91db63a5ad1179a038')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+  cp -a ${srcdir}/contacts-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
+}


[arch-commits] Commit in lib32-openssl/repos (5 files)

2016-03-02 Thread Pierre Schmitz
Date: Wednesday, March 2, 2016 @ 18:55:42
  Author: pierre
Revision: 164163

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-openssl/repos/multilib-staging-x86_64/
  lib32-openssl/repos/multilib-staging-x86_64/PKGBUILD
(from rev 164162, lib32-openssl/trunk/PKGBUILD)
  lib32-openssl/repos/multilib-staging-x86_64/ca-dir.patch
(from rev 164162, lib32-openssl/trunk/ca-dir.patch)
  lib32-openssl/repos/multilib-staging-x86_64/no-rpath.patch
(from rev 164162, lib32-openssl/trunk/no-rpath.patch)
  lib32-openssl/repos/multilib-staging-x86_64/ssl3-test-failure.patch
(from rev 164162, lib32-openssl/trunk/ssl3-test-failure.patch)

-+
 PKGBUILD|   78 ++
 ca-dir.patch|   33 +++
 no-rpath.patch  |   11 ++
 ssl3-test-failure.patch |   26 +++
 4 files changed, 148 insertions(+)

Copied: lib32-openssl/repos/multilib-staging-x86_64/PKGBUILD (from rev 164162, 
lib32-openssl/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2016-03-02 17:55:42 UTC (rev 164163)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+_pkgbasename=openssl
+pkgname=lib32-$_pkgbasename
+_ver=1.0.2g
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+#pkgver=$_ver
+pkgrel=3
+epoch=1
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security (32-bit)'
+arch=('x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('lib32-glibc' "${_pkgbasename}")
+optdepends=('ca-certificates')
+makedepends=('gcc-multilib')
+options=('!makeflags')
+source=("https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz;
+"https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz.asc;
+'no-rpath.patch'
+'ssl3-test-failure.patch'
+'ca-dir.patch')
+validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
+md5sums=('f3c710c045cdee5fd114feb69feba7aa'
+ 'SKIP'
+ 'dc78d3d06baffc16217519242ce92478'
+ '62fc492252edd3283871632bb77fadbe'
+ '3bf51be3a1bbd262be46dc619f92aa90')
+
+prepare() {
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # remove rpath: http://bugs.archlinux.org/task/14367
+   patch -p0 -i $srcdir/no-rpath.patch
+
+   # disable a test that fails when ssl3 is disabled
+   patch -p1 -i $srcdir/ssl3-test-failure.patch
+
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+build() {
+   export CC="gcc -m32"
+   export CXX="g++ -m32"
+   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib32 \
+   shared no-ssl3-method \
+   linux-elf \
+   "-Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
+
+   make MAKEDEPPROG="${CC}" depend
+   make
+}
+
+check() {
+   cd $srcdir/$_pkgbasename-$_ver
+   # the test fails due to missing write permissions in /etc/ssl
+   # revert this patch for make test
+   patch -p0 -R -i $srcdir/ca-dir.patch
+   make test
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+package() {
+   cd $srcdir/$_pkgbasename-$_ver
+   make INSTALL_PREFIX=$pkgdir install_sw
+
+   rm -rf ${pkgdir}/{usr/{include,bin},etc}
+   mkdir -p $pkgdir/usr/share/licenses
+   ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}

Copied: lib32-openssl/repos/multilib-staging-x86_64/ca-dir.patch (from rev 
164162, lib32-openssl/trunk/ca-dir.patch)
===
--- multilib-staging-x86_64/ca-dir.patch(rev 0)
+++ multilib-staging-x86_64/ca-dir.patch2016-03-02 17:55:42 UTC (rev 
164163)
@@ -0,0 +1,33 @@
+--- apps/CA.pl.in  2006-04-28 02:30:49.0 +0200
 apps/CA.pl.in  2010-04-01 00:35:02.600553509 +0200
+@@ -53,7 +53,7 @@
+ $X509="$openssl x509";
+ $PKCS12="$openssl pkcs12";
+ 
+-$CATOP="./demoCA";
++$CATOP="/etc/ssl";
+ $CAKEY="cakey.pem";
+ $CAREQ="careq.pem";
+ $CACERT="cacert.pem";
+--- apps/CA.sh 2009-10-15 19:27:47.0 +0200
 apps/CA.sh 2010-04-01 00:35:02.600553509 +0200
+@@ -68,7 +68,7 @@
+ X509="$OPENSSL x509"
+ PKCS12="openssl pkcs12"
+ 
+-if [ -z "$CATOP" ] ; then CATOP=./demoCA ; fi
++if [ -z "$CATOP" ] ; then CATOP=/etc/ssl ; fi
+ CAKEY=./cakey.pem
+ CAREQ=./careq.pem
+ CACERT=./cacert.pem
+--- apps/openssl.cnf   2009-04-04 20:09:43.0 +0200
 apps/openssl.cnf   2010-04-01 00:35:02.607220681 +0200
+@@ -39,7 +39,7 @@
+ 
+ [ CA_default ]
+ 
+-dir   = 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:14:52
  Author: foutrelis
Revision: 260519

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

Added:
  nghttp2/repos/staging-i686/
  nghttp2/repos/staging-i686/PKGBUILD
(from rev 260518, nghttp2/trunk/PKGBUILD)
  nghttp2/repos/staging-x86_64/
  nghttp2/repos/staging-x86_64/PKGBUILD
(from rev 260518, nghttp2/trunk/PKGBUILD)

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

Copied: nghttp2/repos/staging-i686/PKGBUILD (from rev 260518, 
nghttp2/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:14:52 UTC (rev 260519)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.8.0
+pkgrel=2
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('04ab9e9a39629f860244cd6f3453a5d7166b9f3555ea730ce1193a05ef8af99f')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}

Copied: nghttp2/repos/staging-x86_64/PKGBUILD (from rev 260518, 
nghttp2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:14:52 UTC (rev 260519)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.8.0
+pkgrel=2
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('04ab9e9a39629f860244cd6f3453a5d7166b9f3555ea730ce1193a05ef8af99f')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:14:45
  Author: foutrelis
Revision: 260518

OpenSSL 1.0.2g rebuild

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:13:03 UTC (rev 260517)
+++ PKGBUILD2016-03-02 18:14:45 UTC (rev 260518)
@@ -4,7 +4,7 @@
 
 pkgname=nghttp2
 pkgver=1.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(i686 x86_64)
 url='https://nghttp2.org/'


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:14:26
  Author: fyan
Revision: 164174

OpenSSL 1.0.2g rebuild

Modified:
  webfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:13:42 UTC (rev 164173)
+++ PKGBUILD2016-03-02 18:14:26 UTC (rev 164174)
@@ -7,7 +7,7 @@
 
 pkgname=webfs
 pkgver=1.21
-pkgrel=11
+pkgrel=12
 pkgdesc="Simple and instant http server for mostly static content."
 arch=(i686 x86_64)
 url="http://linux.bytesex.org/misc/webfs.html;


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:15:04
  Author: fyan
Revision: 164177

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

Added:
  webfs/repos/community-staging-i686/
  webfs/repos/community-staging-i686/PKGBUILD
(from rev 164174, webfs/trunk/PKGBUILD)
  webfs/repos/community-staging-i686/webfs.patch
(from rev 164174, webfs/trunk/webfs.patch)
  webfs/repos/community-staging-i686/webfsd.conf
(from rev 164175, webfs/trunk/webfsd.conf)
  webfs/repos/community-staging-i686/webfsd.service
(from rev 164175, webfs/trunk/webfsd.service)
  webfs/repos/community-staging-x86_64/
  webfs/repos/community-staging-x86_64/PKGBUILD
(from rev 164176, webfs/trunk/PKGBUILD)
  webfs/repos/community-staging-x86_64/webfs.patch
(from rev 164176, webfs/trunk/webfs.patch)
  webfs/repos/community-staging-x86_64/webfsd.conf
(from rev 164176, webfs/trunk/webfsd.conf)
  webfs/repos/community-staging-x86_64/webfsd.service
(from rev 164176, webfs/trunk/webfsd.service)

-+
 community-staging-i686/PKGBUILD |   39 
 community-staging-i686/webfs.patch  |  250 ++
 community-staging-i686/webfsd.conf  |5 
 community-staging-i686/webfsd.service   |   11 +
 community-staging-x86_64/PKGBUILD   |   39 
 community-staging-x86_64/webfs.patch|  250 ++
 community-staging-x86_64/webfsd.conf|5 
 community-staging-x86_64/webfsd.service |   11 +
 8 files changed, 610 insertions(+)

Copied: webfs/repos/community-staging-i686/PKGBUILD (from rev 164174, 
webfs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:15:04 UTC (rev 164177)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Roman Kyrylych 
+# Contributor: Mark Rosenstand 
+# Contributor: Daniel J Griffiths 
+# Contributor: Chris Brannon 
+
+pkgname=webfs
+pkgver=1.21
+pkgrel=12
+pkgdesc="Simple and instant http server for mostly static content."
+arch=(i686 x86_64)
+url="http://linux.bytesex.org/misc/webfs.html;
+license=("GPL")
+depends=('mime-types' 'openssl')
+backup=('etc/conf.d/webfsd')
+source=(http://dl.bytesex.org/releases/webfs/webfs-${pkgver}.tar.gz
+webfsd.conf
+webfs.patch
+webfsd.service)
+md5sums=('6dc125fe160479404147e7bbfc781dbc'
+ 'b2c1ab041a82acd8391b06dc38d986be'
+ '7294edcec2589df04bb775270d56536e'
+ 'e1202dd915cba1a02e0016aa3a516b4a')
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   patch -i "$srcdir/webfs.patch"
+   make
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   make prefix=/usr DESTDIR="$pkgdir" install
+   install -Dm644 "$srcdir/webfsd.conf" "$pkgdir/etc/conf.d/webfsd"
+   install -Dm644 "$srcdir/webfsd.service"  
"$pkgdir/usr/lib/systemd/system/webfsd.service"
+}

Copied: webfs/repos/community-staging-i686/webfs.patch (from rev 164174, 
webfs/trunk/webfs.patch)
===
--- community-staging-i686/webfs.patch  (rev 0)
+++ community-staging-i686/webfs.patch  2016-03-02 18:15:04 UTC (rev 164177)
@@ -0,0 +1,250 @@
+# This patch performs the following:
+#
+# 1) user/group names my now be set to the system maximum using
+#sysconf(_SC_LOGIN_NAME_MAX). They were previously hardcoded to 16 chars.
+#
+# 2) supplementary groups are now set according to the user webfs is running 
as.
+#previously they were left as the calling user, which could be dangerous
+#ex: sudo webfsd -u nobody, would leave webfsd with all of root's groups!
+#
+# 3) the supplementary group list is no longer made empty when using -g
+#
+# 4) supplementary groups are now checked for read access when generating
+#directory listings
+#
+# 5) in ls.c/ls() changed type of uid and gid to uid_t and gid_t
+#
+# 6) in ls.c/ls() fixed a problem where the uid of the file was being compared
+#to the gid of the user to check for readability
+#
+# 7) added a -G option to ignore/remove all supplementary groups
+#
+# 8) updated man page to reflect -G option
+#
+# 9) when the uid is 0, all files are now displayed as readable.
+#
+
+diff -urp webfs-1.21-orig/httpd.h webfs-1.21/httpd.h
+--- webfs-1.21-orig/httpd.h2004-06-10 05:45:50.0 -0400
 webfs-1.21/httpd.h 2010-03-27 14:57:07.63154 -0400
+@@ -169,6 +169,8 @@ extern intlifespan;
+ extern intno_listing;
+ extern time_t now;
+ extern int have_tty;
++extern gid_t  *grp_list;
++extern intgrp_num;
+ 
+ #ifdef USE_SSL
+ extern int  with_ssl;
+diff -urp webfs-1.21-orig/ls.c webfs-1.21/ls.c
+--- webfs-1.21-orig/ls.c   2004-06-10 05:45:50.0 -0400
 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:15:55
  Author: foutrelis
Revision: 164178

OpenSSL 1.0.2g rebuild

Modified:
  ncrack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:15:04 UTC (rev 164177)
+++ PKGBUILD2016-03-02 18:15:55 UTC (rev 164178)
@@ -5,7 +5,7 @@
 pkgname=ncrack
 pkgver=0.4a
 _realver=0.4ALPHA
-pkgrel=4
+pkgrel=5
 pkgdesc='A high-speed network authentication cracking tool'
 arch=(i686 x86_64)
 url='http://nmap.org/ncrack/'


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:15:17
  Author: bluewind
Revision: 260520

OpenSSL 1.0.2g rebuild

Modified:
  nginx-mainline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:14:52 UTC (rev 260519)
+++ PKGBUILD2016-03-02 18:15:17 UTC (rev 260520)
@@ -5,7 +5,7 @@
 
 pkgname=nginx-mainline
 pkgver=1.9.12
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('i686' 'x86_64')
 url='http://nginx.org'


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:25:58
  Author: foutrelis
Revision: 260534

OpenSSL 1.0.2g rebuild

Modified:
  nginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:25:35 UTC (rev 260533)
+++ PKGBUILD2016-03-02 18:25:58 UTC (rev 260534)
@@ -7,7 +7,7 @@
 
 pkgname=nginx
 pkgver=1.8.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
 arch=('i686' 'x86_64')
 url='http://nginx.org'


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:26:20
  Author: foutrelis
Revision: 260535

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

Added:
  nginx/repos/staging-i686/
  nginx/repos/staging-i686/PKGBUILD
(from rev 260534, nginx/trunk/PKGBUILD)
  nginx/repos/staging-i686/logrotate
(from rev 260534, nginx/trunk/logrotate)
  nginx/repos/staging-i686/nginx.install
(from rev 260534, nginx/trunk/nginx.install)
  nginx/repos/staging-i686/service
(from rev 260534, nginx/trunk/service)
  nginx/repos/staging-x86_64/
  nginx/repos/staging-x86_64/PKGBUILD
(from rev 260534, nginx/trunk/PKGBUILD)
  nginx/repos/staging-x86_64/logrotate
(from rev 260534, nginx/trunk/logrotate)
  nginx/repos/staging-x86_64/nginx.install
(from rev 260534, nginx/trunk/nginx.install)
  nginx/repos/staging-x86_64/service
(from rev 260534, nginx/trunk/service)

--+
 staging-i686/PKGBUILD|  117 +
 staging-i686/logrotate   |   10 +++
 staging-i686/nginx.install   |   21 +++
 staging-i686/service |   17 +
 staging-x86_64/PKGBUILD  |  117 +
 staging-x86_64/logrotate |   10 +++
 staging-x86_64/nginx.install |   21 +++
 staging-x86_64/service   |   17 +
 8 files changed, 330 insertions(+)

Copied: nginx/repos/staging-i686/PKGBUILD (from rev 260534, 
nginx/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:26:20 UTC (rev 260535)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgname=nginx
+pkgver=1.8.1
+pkgrel=3
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=('i686' 'x86_64')
+url='http://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip')
+backup=('etc/nginx/fastcgi.conf'
+'etc/nginx/fastcgi_params'
+'etc/nginx/koi-win'
+'etc/nginx/koi-utf'
+'etc/nginx/mime.types'
+'etc/nginx/nginx.conf'
+'etc/nginx/scgi_params'
+'etc/nginx/uwsgi_params'
+'etc/nginx/win-utf'
+'etc/logrotate.d/nginx')
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz
+service
+logrotate)
+md5sums=('2e91695074dbdfbf1bcec0ada9fda462'
+ '5dd4d09914a4403b9df778ec1d66167c'
+ '19a26a61c8afe78defb8b4544f79a9a0')
+
+_common_flags=(
+  --with-imap 
+  --with-imap_ssl_module 
+  --with-ipv6 
+  --with-pcre-jit 
+  --with-file-aio 
+  --with-http_addition_module 
+  --with-http_auth_request_module 
+  --with-http_dav_module 
+  --with-http_degradation_module 
+  --with-http_flv_module 
+  --with-http_geoip_module 
+  --with-http_gunzip_module 
+  --with-http_gzip_static_module 
+  --with-http_mp4_module 
+  --with-http_realip_module 
+  --with-http_secure_link_module 
+  --with-http_ssl_module 
+  --with-http_stub_status_module 
+  --with-http_sub_module 
+)
+
+_stable_flags=(
+  --with-http_spdy_module
+)
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent syntax; do
+install -Dm644 contrib/vim/${i}/nginx.vim \
+  

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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:26:33
  Author: bluewind
Revision: 164205

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

Added:
  bip/repos/community-staging-i686/
  bip/repos/community-staging-i686/PKGBUILD
(from rev 164203, bip/trunk/PKGBUILD)
  bip/repos/community-staging-i686/bip.install
(from rev 164203, bip/trunk/bip.install)
  bip/repos/community-staging-i686/bip.service
(from rev 164203, bip/trunk/bip.service)
  bip/repos/community-staging-x86_64/
  bip/repos/community-staging-x86_64/PKGBUILD
(from rev 164204, bip/trunk/PKGBUILD)
  bip/repos/community-staging-x86_64/bip.install
(from rev 164204, bip/trunk/bip.install)
  bip/repos/community-staging-x86_64/bip.service
(from rev 164204, bip/trunk/bip.service)

--+
 community-staging-i686/PKGBUILD  |   40 +
 community-staging-i686/bip.install   |   21 +
 community-staging-i686/bip.service   |   12 +
 community-staging-x86_64/PKGBUILD|   40 +
 community-staging-x86_64/bip.install |   21 +
 community-staging-x86_64/bip.service |   12 +
 6 files changed, 146 insertions(+)

Copied: bip/repos/community-staging-i686/PKGBUILD (from rev 164203, 
bip/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:26:33 UTC (rev 164205)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Martin Wimpress 
+
+pkgname=bip
+pkgver=0.8.9
+pkgrel=6
+pkgdesc="Multiuser IRC proxy that supports replaying of logged conversations."
+arch=('i686' 'x86_64')
+url="http://bip.milkypond.org/;
+license=('GPL')
+depends=('openssl')
+source=("http://pkgs.fedoraproject.org/repo/pkgs/${pkgname}/${pkgname}-${pkgver}.tar.gz/04158ad020db221ed87cdc03660ef6c9/${pkgname}-${pkgver}.tar.gz;
+"${pkgname}.service")
+md5sums=('04158ad020db221ed87cdc03660ef6c9'
+ 'a716f77fc40573cd359d9984a9cc8a66')
+install=${pkgname}.install
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+# Don't treat warnings as errors.
+sed -i 's/-Werror//g' Makefile.in
+# Make the sample configuration reflect the PKGBUILD defaults
+sed -i 's:/var/proxy/logs:/var/log/bip:' samples/$pkgname.conf
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m755 ${srcdir}/${pkgname}-${pkgver}/scripts/bipgenconfig 
"${pkgdir}"/usr/bin/bipgenconfig
+install -D -m644 ${srcdir}/${pkgname}-${pkgver}/samples/$pkgname.conf 
"${pkgdir}"/usr/share/$pkgname/$pkgname.conf.sample
+install -D -m644 ${srcdir}/${pkgname}-${pkgver}/samples/$pkgname.vim 
"${pkgdir}"/usr/share/vim/syntax/$pkgname.vim
+install -D -m 0644 ${srcdir}/${pkgname}.service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+}

Copied: bip/repos/community-staging-i686/bip.install (from rev 164203, 
bip/trunk/bip.install)
===
--- community-staging-i686/bip.install  (rev 0)
+++ community-staging-i686/bip.install  2016-03-02 18:26:33 UTC (rev 164205)
@@ -0,0 +1,21 @@
+post_install() {
+if ! getent passwd bip > /dev/null; then
+echo "==> Creating bip user"
+/usr/bin/useradd --comment "Bip IRC Proxy" --shell /bin/sh --home 
/var/lib/bip --system --user-group bip
+fi
+mkdir -p /var/run/bip 2>/dev/null
+chown -R bip:bip /var/run/bip
+mkdir -p /var/lib/bip 2>/dev/null
+chown -R bip:bip /var/lib/bip
+mkdir -p /var/log/bip 2>/dev/null
+chown -R bip:bip /var/log/bip
+}
+
+post_upgrade() {
+post_install
+}
+
+pre_remove() {
+systemctl stop bip
+rm -rf /var/run/bip
+}

Copied: bip/repos/community-staging-i686/bip.service (from rev 164203, 
bip/trunk/bip.service)
===
--- community-staging-i686/bip.service  (rev 0)
+++ community-staging-i686/bip.service  2016-03-02 18:26:33 UTC (rev 164205)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Bip IRC Proxy Server
+After=network.target
+
+[Service]
+User=bip
+Type=forking
+PIDFile=/var/run/bip/bip.pid
+ExecStart=/usr/bin/bip -f /etc/bip.conf -s /var/lib/bip
+
+[Install]
+WantedBy=multi-user.target

Copied: bip/repos/community-staging-x86_64/PKGBUILD (from rev 164204, 
bip/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:26:33 UTC (rev 164205)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Martin Wimpress 
+
+pkgname=bip
+pkgver=0.8.9
+pkgrel=6
+pkgdesc="Multiuser IRC 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:25:51
  Author: foutrelis
Revision: 164198

OpenSSL 1.0.2g rebuild

Modified:
  nzbget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:23:33 UTC (rev 164197)
+++ PKGBUILD2016-03-02 18:25:51 UTC (rev 164198)
@@ -4,7 +4,7 @@
 
 pkgname=nzbget
 pkgver=16.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Download from Usenet using .nzb files"
 arch=('i686' 'x86_64')
 url="http://nzbget.net/;


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:26:00
  Author: foutrelis
Revision: 164200

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

Added:
  nzbget/repos/community-staging-i686/
  nzbget/repos/community-staging-i686/PKGBUILD
(from rev 164198, nzbget/trunk/PKGBUILD)
  nzbget/repos/community-staging-i686/nzbget.changelog
(from rev 164198, nzbget/trunk/nzbget.changelog)
  nzbget/repos/community-staging-x86_64/
  nzbget/repos/community-staging-x86_64/PKGBUILD
(from rev 164198, nzbget/trunk/PKGBUILD)
  nzbget/repos/community-staging-x86_64/nzbget.changelog
(from rev 164198, nzbget/trunk/nzbget.changelog)

---+
 community-staging-i686/PKGBUILD   |   32 +++
 community-staging-i686/nzbget.changelog   |   78 
 community-staging-x86_64/PKGBUILD |   32 +++
 community-staging-x86_64/nzbget.changelog |   78 
 4 files changed, 220 insertions(+)

Copied: nzbget/repos/community-staging-i686/PKGBUILD (from rev 164198, 
nzbget/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:26:00 UTC (rev 164200)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Alexander Rødseth 
+
+pkgname=nzbget
+pkgver=16.4
+pkgrel=3
+pkgdesc="Download from Usenet using .nzb files"
+arch=('i686' 'x86_64')
+url="http://nzbget.net/;
+license=('GPL')
+depends=('libxml2')
+optdepends=('python: to run included scripts')
+changelog=$pkgname.changelog
+source=(https://github.com/nzbget/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.gz)
+sha256sums=('8e9e3ee75d2d08a8e438b2809f504a627a9334ed239579a540b75fa97bff4d0f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix='/usr' --sbindir='/usr/bin' --enable-parcheck 
--with-tlslib=OpenSSL
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -d "${pkgdir}"/usr/share/$pkgname
+  install -m644 -t "${pkgdir}"/usr/share/$pkgname ChangeLog README
+}

Copied: nzbget/repos/community-staging-i686/nzbget.changelog (from rev 164198, 
nzbget/trunk/nzbget.changelog)
===
--- community-staging-i686/nzbget.changelog (rev 0)
+++ community-staging-i686/nzbget.changelog 2016-03-02 18:26:00 UTC (rev 
164200)
@@ -0,0 +1,78 @@
+2015-12-05 Jaroslav Lichtblau 
+  * nzbget 16.4-1
+
+2015-10-30 Jaroslav Lichtblau 
+  * nzbget 16.3-1
+
+2015-10-25 Jaroslav Lichtblau 
+  * nzbget 16.2-2 FS#46862 fix
+
+2015-10-24 Jaroslav Lichtblau 
+  * nzbget 16.2-1
+
+2015-10-20 Jaroslav Lichtblau 
+  * nzbget 16.1-1
+
+2015-10-12 Jaroslav Lichtblau 
+  * nzbget 16.0-1
+
+2015-05-20 Jaroslav Lichtblau 
+  * nzbget 15.0-1
+
+2015-03-08 Jaroslav Lichtblau 
+  * nzbget 14.2-1
+
+2014-11-28 Jaroslav Lichtblau 
+  * nzbget 14.1-1
+
+2014-11-10 Jaroslav Lichtblau 
+  * nzbget 14.0-1
+
+2014-07-18 Jaroslav Lichtblau 
+  * nzbget 13.0-1
+
+2014-05-25 Jaroslav Lichtblau 
+  * nzbget 12.0-2 FS#40075 implemented
+
+2014-01-14 Jaroslav Lichtblau 
+  * nzbget 12.0-1
+
+2013-09-03 Maxime Gauduin 
+  * Fixed FS#36250 - package built without system CXXFLAGS
+
+2013-07-14 Jaroslav Lichtblau 
+  * nzbget 11.0-1
+
+2013-04-20 Jaroslav Lichtblau 
+  * nzbget 10.2-1
+
+2013-01-30 Jaroslav Lichtblau 
+  * nzbget 9.1-1
+
+2013-01-05 Jaroslav Lichtblau 
+  * nzbget 9.0-1
+
+2012-05-05 Jaroslav Lichtblau 
+  * nzbget 0.8.0-1
+
+2012-03-18 Jaroslav Lichtblau 
+  * nzbget 0.7.0-4 package signed
+
+2010-05-12 Jaroslav Lichtblau 
+  * Fixed FS#19399 - missing postprocess-example.conf file
+
+2010-05-04 Jaroslav Lichtblau 
+  * Update to major release 0.7.0
+
+2009-10-11 Jaroslav Lichtblau 
+  * Dependency added (gnutls) in v0.6.0-2 
+
+2008-03-20 Jaroslav Lichtblau 
+  * Update to major release 0.6.0
+
+2008-09-25 Jaroslav Lichtblau 
+  * Update to major release 0.5.1
+
+2008-09-09 Jaroslav Lichtblau 
+  * Package moved to [community]
+  * Update to major release 0.5.0

Copied: 

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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:27:33
  Author: bluewind
Revision: 164206

OpenSSL 1.0.2g rebuild

Modified:
  encfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:26:33 UTC (rev 164205)
+++ PKGBUILD2016-03-02 18:27:33 UTC (rev 164206)
@@ -7,7 +7,7 @@
 
 pkgname=encfs
 pkgver=1.8.1
-pkgrel=5
+pkgrel=6
 pkgdesc='Encrypted filesystem in user-space'
 arch=('i686' 'x86_64')
 url='https://vgough.github.io/encfs/'


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:27:14
  Author: foutrelis
Revision: 260537

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

Added:
  perl-net-ssleay/repos/staging-i686/
  perl-net-ssleay/repos/staging-i686/PKGBUILD
(from rev 260536, perl-net-ssleay/trunk/PKGBUILD)
  perl-net-ssleay/repos/staging-x86_64/
  perl-net-ssleay/repos/staging-x86_64/PKGBUILD
(from rev 260536, perl-net-ssleay/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   52 ++
 staging-x86_64/PKGBUILD |   52 ++
 2 files changed, 104 insertions(+)

Copied: perl-net-ssleay/repos/staging-i686/PKGBUILD (from rev 260536, 
perl-net-ssleay/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:27:14 UTC (rev 260537)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Manolis Tzanidakis
+
+pkgname=perl-net-ssleay
+_cpanname=Net-SSLeay
+pkgver=1.72
+pkgrel=3
+pkgdesc="Perl extension for using OpenSSL"
+arch=('i686' 'x86_64')
+license=('custom:BSD')
+url="http://search.cpan.org/dist/${_cpanname}/;
+depends=('openssl')
+options=(!emptydirs)
+replaces=('net-ssleay')
+provides=('net-ssleay')
+source=("http://www.cpan.org/authors/id/M/MI/MIKEM/${_cpanname}-${pkgver}.tar.gz;)
+md5sums=('a740d7792dbac8ca8c4eb38d3b8fbd01')
+
+prepare() {
+  cd ${srcdir}/${_cpanname}-${pkgver}
+
+  sed -i \
+  -e "/\$opts->{optimize} = '-O2 -g';/d" \
+  inc/Module/Install/PRIVATE/Net/SSLeay.pm
+}
+
+build() {
+  cd ${srcdir}/${_cpanname}-${pkgver}
+
+  export OPTIMIZE="$CFLAGS"
+  export OPENSSL_PREFIX=/usr
+
+  # install module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL -- INSTALLDIRS=vendor 
+  make
+}
+
+package() {
+  cd ${srcdir}/${_cpanname}-${pkgver}
+
+  make install DESTDIR=${pkgdir} 
+  install -D -m644 README "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Copied: perl-net-ssleay/repos/staging-x86_64/PKGBUILD (from rev 260536, 
perl-net-ssleay/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:27:14 UTC (rev 260537)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Manolis Tzanidakis
+
+pkgname=perl-net-ssleay
+_cpanname=Net-SSLeay
+pkgver=1.72
+pkgrel=3
+pkgdesc="Perl extension for using OpenSSL"
+arch=('i686' 'x86_64')
+license=('custom:BSD')
+url="http://search.cpan.org/dist/${_cpanname}/;
+depends=('openssl')
+options=(!emptydirs)
+replaces=('net-ssleay')
+provides=('net-ssleay')
+source=("http://www.cpan.org/authors/id/M/MI/MIKEM/${_cpanname}-${pkgver}.tar.gz;)
+md5sums=('a740d7792dbac8ca8c4eb38d3b8fbd01')
+
+prepare() {
+  cd ${srcdir}/${_cpanname}-${pkgver}
+
+  sed -i \
+  -e "/\$opts->{optimize} = '-O2 -g';/d" \
+  inc/Module/Install/PRIVATE/Net/SSLeay.pm
+}
+
+build() {
+  cd ${srcdir}/${_cpanname}-${pkgver}
+
+  export OPTIMIZE="$CFLAGS"
+  export OPENSSL_PREFIX=/usr
+
+  # install module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL -- INSTALLDIRS=vendor 
+  make
+}
+
+package() {
+  cd ${srcdir}/${_cpanname}-${pkgver}
+
+  make install DESTDIR=${pkgdir} 
+  install -D -m644 README "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+# 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;
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:27:07
  Author: foutrelis
Revision: 260536

OpenSSL 1.0.2g rebuild

Modified:
  perl-net-ssleay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:26:20 UTC (rev 260535)
+++ PKGBUILD2016-03-02 18:27:07 UTC (rev 260536)
@@ -5,7 +5,7 @@
 pkgname=perl-net-ssleay
 _cpanname=Net-SSLeay
 pkgver=1.72
-pkgrel=2
+pkgrel=3
 pkgdesc="Perl extension for using OpenSSL"
 arch=('i686' 'x86_64')
 license=('custom:BSD')


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:38:16
  Author: fyan
Revision: 164225

OpenSSL 1.0.2g rebuild

Modified:
  pion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:36:07 UTC (rev 164224)
+++ PKGBUILD2016-03-02 18:38:16 UTC (rev 164225)
@@ -2,7 +2,7 @@
 # Maintainer: Lukas Jirkovsky 
 pkgname=pion
 pkgver=5.0.7
-pkgrel=4
+pkgrel=5
 pkgdesc="A C++ development library for implementing lightweight HTTP 
interfaces"
 url="https://github.com/cloudmeter/pion;
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:52:46
  Author: foutrelis
Revision: 164229

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

Added:
  proxytunnel/repos/community-staging-i686/
  proxytunnel/repos/community-staging-i686/PKGBUILD
(from rev 164228, proxytunnel/trunk/PKGBUILD)
  proxytunnel/repos/community-staging-i686/fix-Makefile-ssl-FTBFS.patch
(from rev 164228, proxytunnel/trunk/fix-Makefile-ssl-FTBFS.patch)
  proxytunnel/repos/community-staging-i686/migrate-from-SSLv3.patch
(from rev 164228, proxytunnel/trunk/migrate-from-SSLv3.patch)
  proxytunnel/repos/community-staging-x86_64/
  proxytunnel/repos/community-staging-x86_64/PKGBUILD
(from rev 164228, proxytunnel/trunk/PKGBUILD)
  proxytunnel/repos/community-staging-x86_64/fix-Makefile-ssl-FTBFS.patch
(from rev 164228, proxytunnel/trunk/fix-Makefile-ssl-FTBFS.patch)
  proxytunnel/repos/community-staging-x86_64/migrate-from-SSLv3.patch
(from rev 164228, proxytunnel/trunk/migrate-from-SSLv3.patch)

---+
 community-staging-i686/PKGBUILD   |   35 
 community-staging-i686/fix-Makefile-ssl-FTBFS.patch   |   17 +++
 community-staging-i686/migrate-from-SSLv3.patch   |   12 +
 community-staging-x86_64/PKGBUILD |   35 
 community-staging-x86_64/fix-Makefile-ssl-FTBFS.patch |   17 +++
 community-staging-x86_64/migrate-from-SSLv3.patch |   12 +
 6 files changed, 128 insertions(+)

Copied: proxytunnel/repos/community-staging-i686/PKGBUILD (from rev 164228, 
proxytunnel/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:52:46 UTC (rev 164229)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Georg Grabler (STiAT) 
+
+pkgname=proxytunnel
+pkgver=1.9.0
+pkgrel=5
+pkgdesc="a program that connects stdin and stdout to a server somewhere on the 
network, through a standard HTTPS proxy"
+arch=('i686' 'x86_64')
+url="http://proxytunnel.sourceforge.net;
+license=('GPL')
+depends=('openssl')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz
+fix-Makefile-ssl-FTBFS.patch
+migrate-from-SSLv3.patch)
+md5sums=('d74472b89c3f3b3b0abf6bd809ae34c2'
+ '2c6c2a4c37cd2f28ee09e92d00274334'
+ '502197e4f4b7530e54933733f02c4112')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|PREFIX =/usr/local|PREFIX =/usr|g' Makefile
+  patch -Np1 -i ../fix-Makefile-ssl-FTBFS.patch
+  patch -Np1 -i ../migrate-from-SSLv3.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: proxytunnel/repos/community-staging-i686/fix-Makefile-ssl-FTBFS.patch 
(from rev 164228, proxytunnel/trunk/fix-Makefile-ssl-FTBFS.patch)
===
--- community-staging-i686/fix-Makefile-ssl-FTBFS.patch 
(rev 0)
+++ community-staging-i686/fix-Makefile-ssl-FTBFS.patch 2016-03-02 18:52:46 UTC 
(rev 164229)
@@ -0,0 +1,17 @@
+--- a/Makefile
 b/Makefile
+@@ -48,10 +48,11 @@
+ 
+ # END system dependant block
+ 
+-SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null)
+-ifeq ($(SSL_LIBS),)
++# We're not using libssl, so comment out the following line
++# SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null)
++# ifeq ($(SSL_LIBS),)
+ SSL_LIBS := $(shell pkg-config --libs openssl 2>/dev/null)
+-endif
++# endif
+ ifeq ($(SSL_LIBS),)
+ SSL_LIBS := -lssl -lcrypto
+ endif

Copied: proxytunnel/repos/community-staging-i686/migrate-from-SSLv3.patch (from 
rev 164228, proxytunnel/trunk/migrate-from-SSLv3.patch)
===
--- community-staging-i686/migrate-from-SSLv3.patch 
(rev 0)
+++ community-staging-i686/migrate-from-SSLv3.patch 2016-03-02 18:52:46 UTC 
(rev 164229)
@@ -0,0 +1,12 @@
+diff -upr proxytunnel-1.9.0.orig/ptstream.c proxytunnel-1.9.0/ptstream.c
+--- proxytunnel-1.9.0.orig/ptstream.c  2008-02-27 01:27:27.0 +0200
 proxytunnel-1.9.0/ptstream.c   2016-03-02 20:43:32.909153946 +0200
+@@ -151,7 +151,7 @@ int stream_enable_ssl(PTSTREAM *pts) {
+   
+   /* Initialise the connection */
+   SSLeay_add_ssl_algorithms();
+-  meth = SSLv3_client_method();
++  meth = SSLv23_client_method();
+   SSL_load_error_strings();
+ 
+   ctx = SSL_CTX_new (meth);

Copied: proxytunnel/repos/community-staging-x86_64/PKGBUILD (from rev 164228, 
proxytunnel/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:52:46 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:52:13
  Author: foutrelis
Revision: 164227

Fix build with OpenSSL 1.0.2g

The 'fix-Makefile-ssl-FTBFS.patch' file was taken from Debian.

Added:
  proxytunnel/trunk/fix-Makefile-ssl-FTBFS.patch
  proxytunnel/trunk/migrate-from-SSLv3.patch
Modified:
  proxytunnel/trunk/PKGBUILD

--+
 PKGBUILD |   20 +++-
 fix-Makefile-ssl-FTBFS.patch |   17 +
 migrate-from-SSLv3.patch |   12 
 3 files changed, 44 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:38:39 UTC (rev 164226)
+++ PKGBUILD2016-03-02 18:52:13 UTC (rev 164227)
@@ -10,16 +10,26 @@
 url="http://proxytunnel.sourceforge.net;
 license=('GPL')
 depends=('openssl')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz)
-md5sums=('d74472b89c3f3b3b0abf6bd809ae34c2')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz
+fix-Makefile-ssl-FTBFS.patch
+migrate-from-SSLv3.patch)
+md5sums=('d74472b89c3f3b3b0abf6bd809ae34c2'
+ '2c6c2a4c37cd2f28ee09e92d00274334'
+ '502197e4f4b7530e54933733f02c4112')
 
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|PREFIX =/usr/local|PREFIX =/usr|g' Makefile
+  patch -Np1 -i ../fix-Makefile-ssl-FTBFS.patch
+  patch -Np1 -i ../migrate-from-SSLv3.patch
+}
+
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's|PREFIX =/usr/local|PREFIX =/usr|g' Makefile
+  cd $pkgname-$pkgver
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }

Added: fix-Makefile-ssl-FTBFS.patch
===
--- fix-Makefile-ssl-FTBFS.patch(rev 0)
+++ fix-Makefile-ssl-FTBFS.patch2016-03-02 18:52:13 UTC (rev 164227)
@@ -0,0 +1,17 @@
+--- a/Makefile
 b/Makefile
+@@ -48,10 +48,11 @@
+ 
+ # END system dependant block
+ 
+-SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null)
+-ifeq ($(SSL_LIBS),)
++# We're not using libssl, so comment out the following line
++# SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null)
++# ifeq ($(SSL_LIBS),)
+ SSL_LIBS := $(shell pkg-config --libs openssl 2>/dev/null)
+-endif
++# endif
+ ifeq ($(SSL_LIBS),)
+ SSL_LIBS := -lssl -lcrypto
+ endif

Added: migrate-from-SSLv3.patch
===
--- migrate-from-SSLv3.patch(rev 0)
+++ migrate-from-SSLv3.patch2016-03-02 18:52:13 UTC (rev 164227)
@@ -0,0 +1,12 @@
+diff -upr proxytunnel-1.9.0.orig/ptstream.c proxytunnel-1.9.0/ptstream.c
+--- proxytunnel-1.9.0.orig/ptstream.c  2008-02-27 01:27:27.0 +0200
 proxytunnel-1.9.0/ptstream.c   2016-03-02 20:43:32.909153946 +0200
+@@ -151,7 +151,7 @@ int stream_enable_ssl(PTSTREAM *pts) {
+   
+   /* Initialise the connection */
+   SSLeay_add_ssl_algorithms();
+-  meth = SSLv3_client_method();
++  meth = SSLv23_client_method();
+   SSL_load_error_strings();
+ 
+   ctx = SSL_CTX_new (meth);


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:52:37
  Author: foutrelis
Revision: 164228

OpenSSL 1.0.2g rebuild

Modified:
  proxytunnel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:52:13 UTC (rev 164227)
+++ PKGBUILD2016-03-02 18:52:37 UTC (rev 164228)
@@ -4,7 +4,7 @@
 
 pkgname=proxytunnel
 pkgver=1.9.0
-pkgrel=4
+pkgrel=5
 pkgdesc="a program that connects stdin and stdout to a server somewhere on the 
network, through a standard HTTPS proxy"
 arch=('i686' 'x86_64')
 url="http://proxytunnel.sourceforge.net;


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 20:14:04
  Author: foutrelis
Revision: 164231

OpenSSL 1.0.2g rebuild

Modified:
  httperf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 19:13:24 UTC (rev 164230)
+++ PKGBUILD2016-03-02 19:14:04 UTC (rev 164231)
@@ -5,7 +5,7 @@
 
 pkgname=httperf
 pkgver=0.9.0
-pkgrel=6
+pkgrel=7
 pkgdesc='A tool for measuring web server performance.'
 arch=('i686' 'x86_64')
 license=('GPL2')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 20:14:11
  Author: foutrelis
Revision: 164232

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

Added:
  httperf/repos/community-staging-i686/
  httperf/repos/community-staging-i686/PKGBUILD
(from rev 164231, httperf/trunk/PKGBUILD)
  httperf/repos/community-staging-i686/use-SSLv23_client_method.patch
(from rev 164231, httperf/trunk/use-SSLv23_client_method.patch)
  httperf/repos/community-staging-x86_64/
  httperf/repos/community-staging-x86_64/PKGBUILD
(from rev 164231, httperf/trunk/PKGBUILD)
  httperf/repos/community-staging-x86_64/use-SSLv23_client_method.patch
(from rev 164231, httperf/trunk/use-SSLv23_client_method.patch)

-+
 community-staging-i686/PKGBUILD |   36 ++
 community-staging-i686/use-SSLv23_client_method.patch   |   13 +
 community-staging-x86_64/PKGBUILD   |   36 ++
 community-staging-x86_64/use-SSLv23_client_method.patch |   13 +
 4 files changed, 98 insertions(+)

Copied: httperf/repos/community-staging-i686/PKGBUILD (from rev 164231, 
httperf/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 19:14:11 UTC (rev 164232)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Essien Ita Essien 
+# Contributor: Peter Baldwin 
+
+pkgname=httperf
+pkgver=0.9.0
+pkgrel=7
+pkgdesc='A tool for measuring web server performance.'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://code.google.com/p/httperf'
+depends=('openssl')
+source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz;
+'use-SSLv23_client_method.patch')
+md5sums=('2968c36b9ecf3d98fc1f2c1c9c0d9341'
+ '4b7cd4bd707c322f7e34f0302b76')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../use-SSLv23_client_method.patch
+}
+
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: httperf/repos/community-staging-i686/use-SSLv23_client_method.patch 
(from rev 164231, httperf/trunk/use-SSLv23_client_method.patch)
===
--- community-staging-i686/use-SSLv23_client_method.patch   
(rev 0)
+++ community-staging-i686/use-SSLv23_client_method.patch   2016-03-02 
19:14:11 UTC (rev 164232)
@@ -0,0 +1,13 @@
+diff -uprb httperf-0.9.0.orig/src/httperf.c httperf-0.9.0/src/httperf.c
+--- httperf-0.9.0.orig/src/httperf.c   2007-04-07 10:01:56.0 +0300
 httperf-0.9.0/src/httperf.c2016-03-02 21:09:57.376029451 +0200
+@@ -808,7 +808,8 @@ main (int argc, char **argv)
+   SSLeay_add_ssl_algorithms ();
+ 
+   /* for some strange reason, SSLv23_client_method () doesn't work here */
+-  ssl_ctx = SSL_CTX_new (SSLv3_client_method ());
++  /* hopefully the above comment is a lie */
++  ssl_ctx = SSL_CTX_new (SSLv23_client_method ());
+   if (!ssl_ctx)
+   {
+ ERR_print_errors_fp (stderr);

Copied: httperf/repos/community-staging-x86_64/PKGBUILD (from rev 164231, 
httperf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 19:14:11 UTC (rev 164232)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Essien Ita Essien 
+# Contributor: Peter Baldwin 
+
+pkgname=httperf
+pkgver=0.9.0
+pkgrel=7
+pkgdesc='A tool for measuring web server performance.'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://code.google.com/p/httperf'
+depends=('openssl')
+source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz;
+'use-SSLv23_client_method.patch')
+md5sums=('2968c36b9ecf3d98fc1f2c1c9c0d9341'
+ '4b7cd4bd707c322f7e34f0302b76')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../use-SSLv23_client_method.patch
+}
+
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: httperf/repos/community-staging-x86_64/use-SSLv23_client_method.patch 
(from rev 164231, httperf/trunk/use-SSLv23_client_method.patch)
===
--- community-staging-x86_64/use-SSLv23_client_method.patch 
(rev 0)
+++ community-staging-x86_64/use-SSLv23_client_method.patch 2016-03-02 
19:14:11 UTC (rev 164232)
@@ -0,0 +1,13 @@
+diff -uprb 

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

2016-03-02 Thread Pierre Schmitz
Date: Wednesday, March 2, 2016 @ 18:53:55
  Author: pierre
Revision: 260512

upgpkg: php 7.0.4-1

Modified:
  php/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:21:40 UTC (rev 260511)
+++ PKGBUILD2016-03-02 17:53:55 UTC (rev 260512)
@@ -21,7 +21,7 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=7.0.3
+pkgver=7.0.4
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('PHP')
@@ -31,7 +31,7 @@
 checkdepends=('procps-ng')
 source=("https://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
 'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
-sha256sums=('3af2b62617a0e46214500fc3e7f4a421067224913070844d3665d6cc925a1cca'
+sha256sums=('584e0e374e357a71b6e95175a2947d787453afc7f9ab7c55651c10491c4df532'
 'SKIP'
 'd7b8d14a6ecf956acbf70c11446800c4d0b36fcc578faa58a9c31cae7f6a36cd'
 'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'


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

2016-03-02 Thread Pierre Schmitz
Date: Wednesday, March 2, 2016 @ 18:54:29
  Author: pierre
Revision: 260513

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

Added:
  php/repos/extra-i686/PKGBUILD
(from rev 260512, php/trunk/PKGBUILD)
  php/repos/extra-i686/apache.conf
(from rev 260512, php/trunk/apache.conf)
  php/repos/extra-i686/apache.patch
(from rev 260512, php/trunk/apache.patch)
  php/repos/extra-i686/generate_patches
(from rev 260512, php/trunk/generate_patches)
  php/repos/extra-i686/php-fpm.install
(from rev 260512, php/trunk/php-fpm.install)
  php/repos/extra-i686/php-fpm.patch
(from rev 260512, php/trunk/php-fpm.patch)
  php/repos/extra-i686/php-fpm.tmpfiles
(from rev 260512, php/trunk/php-fpm.tmpfiles)
  php/repos/extra-i686/php.ini.patch
(from rev 260512, php/trunk/php.ini.patch)
  php/repos/extra-x86_64/PKGBUILD
(from rev 260512, php/trunk/PKGBUILD)
  php/repos/extra-x86_64/apache.conf
(from rev 260512, php/trunk/apache.conf)
  php/repos/extra-x86_64/apache.patch
(from rev 260512, php/trunk/apache.patch)
  php/repos/extra-x86_64/generate_patches
(from rev 260512, php/trunk/generate_patches)
  php/repos/extra-x86_64/php-fpm.install
(from rev 260512, php/trunk/php-fpm.install)
  php/repos/extra-x86_64/php-fpm.patch
(from rev 260512, php/trunk/php-fpm.patch)
  php/repos/extra-x86_64/php-fpm.tmpfiles
(from rev 260512, php/trunk/php-fpm.tmpfiles)
  php/repos/extra-x86_64/php.ini.patch
(from rev 260512, php/trunk/php.ini.patch)
Deleted:
  php/repos/extra-i686/PKGBUILD
  php/repos/extra-i686/apache.conf
  php/repos/extra-i686/apache.patch
  php/repos/extra-i686/generate_patches
  php/repos/extra-i686/php-fpm.install
  php/repos/extra-i686/php-fpm.patch
  php/repos/extra-i686/php-fpm.tmpfiles
  php/repos/extra-i686/php.ini.patch
  php/repos/extra-x86_64/PKGBUILD
  php/repos/extra-x86_64/apache.conf
  php/repos/extra-x86_64/apache.patch
  php/repos/extra-x86_64/generate_patches
  php/repos/extra-x86_64/php-fpm.install
  php/repos/extra-x86_64/php-fpm.patch
  php/repos/extra-x86_64/php-fpm.tmpfiles
  php/repos/extra-x86_64/php.ini.patch

---+
 /PKGBUILD |  668 
 /apache.conf  |   26 +
 /apache.patch |   40 ++
 /generate_patches |   96 +
 /php-fpm.install  |   18 +
 /php-fpm.patch|  148 
 /php-fpm.tmpfiles |2 
 /php.ini.patch|  192 +++
 extra-i686/PKGBUILD   |  334 
 extra-i686/apache.conf|   13 
 extra-i686/apache.patch   |   20 -
 extra-i686/generate_patches   |   48 --
 extra-i686/php-fpm.install|9 
 extra-i686/php-fpm.patch  |   74 
 extra-i686/php-fpm.tmpfiles   |1 
 extra-i686/php.ini.patch  |   96 -
 extra-x86_64/PKGBUILD |  334 
 extra-x86_64/apache.conf  |   13 
 extra-x86_64/apache.patch |   20 -
 extra-x86_64/generate_patches |   48 --
 extra-x86_64/php-fpm.install  |9 
 extra-x86_64/php-fpm.patch|   74 
 extra-x86_64/php-fpm.tmpfiles |1 
 extra-x86_64/php.ini.patch|   96 -
 24 files changed, 1190 insertions(+), 1190 deletions(-)

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


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:10:33
  Author: fyan
Revision: 164164

OpenSSL 1.0.2g rebuild

Modified:
  monit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:55:42 UTC (rev 164163)
+++ PKGBUILD2016-03-02 18:10:33 UTC (rev 164164)
@@ -5,7 +5,7 @@
 
 pkgname=monit
 pkgver=5.16
-pkgrel=1
+pkgrel=2
 pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
 arch=('i686' 'x86_64')
 url="http://mmonit.com/monit/;


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:10:56
  Author: fyan
Revision: 164167

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

Added:
  monit/repos/community-staging-i686/
  monit/repos/community-staging-i686/PKGBUILD
(from rev 164164, monit/trunk/PKGBUILD)
  monit/repos/community-staging-i686/monit.changelog
(from rev 164165, monit/trunk/monit.changelog)
  monit/repos/community-staging-x86_64/
  monit/repos/community-staging-x86_64/PKGBUILD
(from rev 164165, monit/trunk/PKGBUILD)
  monit/repos/community-staging-x86_64/monit.changelog
(from rev 164166, monit/trunk/monit.changelog)

--+
 community-staging-i686/PKGBUILD  |   33 
 community-staging-i686/monit.changelog   |   76 +
 community-staging-x86_64/PKGBUILD|   33 
 community-staging-x86_64/monit.changelog |   76 +
 4 files changed, 218 insertions(+)

Copied: monit/repos/community-staging-i686/PKGBUILD (from rev 164164, 
monit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:10:56 UTC (rev 164167)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Geoffroy Carrier 
+# Contributor: Marco Bartholomew 
+
+pkgname=monit
+pkgver=5.16
+pkgrel=2
+pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
+arch=('i686' 'x86_64')
+url="http://mmonit.com/monit/;
+license=('GPL3')
+depends=('openssl')
+backup=('etc/monitrc')
+changelog=$pkgname.changelog
+source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
+sha256sums=('5b998e796113ce244c8b575da09d3a62bac1b2765484fe6416f224b4ba8f391f')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm700 monitrc "${pkgdir}"/etc/monitrc
+  install -Dm644 system/startup/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/system/$pkgname.service
+}

Copied: monit/repos/community-staging-i686/monit.changelog (from rev 164165, 
monit/trunk/monit.changelog)
===
--- community-staging-i686/monit.changelog  (rev 0)
+++ community-staging-i686/monit.changelog  2016-03-02 18:10:56 UTC (rev 
164167)
@@ -0,0 +1,76 @@
+2016-02-05 Jaroslav Lichtblau 
+   * monit 5.16-1
+
+2015-10-26 Jaroslav Lichtblau 
+   * monit 5.15-1
+
+2015-06-15 Jaroslav Lichtblau 
+   * monit 5.14-1
+
+2015-05-16 Jaroslav Lichtblau 
+   * monit 5.13-1
+
+2015-03-28 Jaroslav Lichtblau 
+   * monit 5.12.2-1
+
+2015-01-27 Jaroslav Lichtblau 
+   * monit 5.11-1
+
+2014-10-30 Jaroslav Lichtblau 
+   * monit 5.10-1
+
+2014-10-16 Jaroslav Lichtblau 
+   * monit 5.9-1
+
+2014-05-14 Jaroslav Lichtblau 
+   * monit 5.8.1-1
+
+2014-04-02 Jaroslav Lichtblau 
+   * monit 5.8-1
+
+2014-03-01 Jaroslav Lichtblau 
+   * monit 5.7-1
+
+2013-09-28 Jaroslav Lichtblau 
+   * monit 5.6-1
+
+2012-10-28 Jaroslav Lichtblau 
+   * monit 5.5-2 systemd .service file added
+
+2012-10-02 Jaroslav Lichtblau 
+   * monit 5.5-1
+
+2012-05-20 Jaroslav Lichtblau 
+   * monit 5.4-1
+
+2012-03-18 Jaroslav Lichtblau 
+   * monit 5.3.2-1
+
+2011-11-20 Jaroslav Lichtblau 
+   * monit 5.3.1-1
+
+2011-10-09 Jaroslav Lichtblau 
+   * monit 5.3-1
+
+2011-07-19 Jaroslav Lichtblau 
+   * monit 5.2.5-1
+
+2011-03-21 Jaroslav Lichtblau 
+   * monit 5.2.4-1
+
+2010-11-24 Jaroslav Lichtblau 
+   * monit 5.2.3-1
+
+2010-09-26 Jaroslav Lichtblau 
+   * monit 5.2-1
+
+2010-08-30 Jaroslav Lichtblau 
+   * monit 5.1.1-2
+   * fixed FS#20666
+
+2010-08-29 Jaroslav Lichtblau 
+   * monit 5.1.1-1
+   * fixed FS#20559
+
+2009-12-21 Jaroslav Lichtblau 
+   * monit 5.0.3-1

Copied: monit/repos/community-staging-x86_64/PKGBUILD (from rev 164165, 
monit/trunk/PKGBUILD)

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:12:02
  Author: foutrelis
Revision: 164170

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

Added:
  keepalived/repos/community-staging-i686/
  keepalived/repos/community-staging-i686/PKGBUILD
(from rev 164168, keepalived/trunk/PKGBUILD)
  keepalived/repos/community-staging-i686/keepalived.service
(from rev 164168, keepalived/trunk/keepalived.service)
  keepalived/repos/community-staging-x86_64/
  keepalived/repos/community-staging-x86_64/PKGBUILD
(from rev 164168, keepalived/trunk/PKGBUILD)
  keepalived/repos/community-staging-x86_64/keepalived.service
(from rev 164168, keepalived/trunk/keepalived.service)

-+
 community-staging-i686/PKGBUILD |   38 ++
 community-staging-i686/keepalived.service   |9 ++
 community-staging-x86_64/PKGBUILD   |   38 ++
 community-staging-x86_64/keepalived.service |9 ++
 4 files changed, 94 insertions(+)

Copied: keepalived/repos/community-staging-i686/PKGBUILD (from rev 164168, 
keepalived/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:12:02 UTC (rev 164170)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=1.2.19
+pkgrel=2
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('i686' 'x86_64')
+url='http://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf')
+depends=('openssl' 'popt' 'libnl1')
+source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
+'keepalived.service')
+md5sums=('5c98b06639dd50a6bff76901b53febb6'
+ '0a5171f4298528315e8a8004b55befb7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # clean pacakge init scripts
+  rm -r "$pkgdir/etc/rc.d" "$pkgdir/etc/sysconfig"
+  # move examples to /usr/share
+  install -d -m 755 "$pkgdir/usr/share/$pkgname"
+  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
+  # systemd
+  install -D -m 644 "$srcdir/$pkgname.service" \
+"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: keepalived/repos/community-staging-i686/keepalived.service (from rev 
164168, keepalived/trunk/keepalived.service)
===
--- community-staging-i686/keepalived.service   (rev 0)
+++ community-staging-i686/keepalived.service   2016-03-02 18:12:02 UTC (rev 
164170)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Keepalive Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/keepalived --dont-fork
+
+[Install]
+WantedBy=multi-user.target

Copied: keepalived/repos/community-staging-x86_64/PKGBUILD (from rev 164168, 
keepalived/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:12:02 UTC (rev 164170)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=1.2.19
+pkgrel=2
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('i686' 'x86_64')
+url='http://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf')
+depends=('openssl' 'popt' 'libnl1')
+source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
+'keepalived.service')
+md5sums=('5c98b06639dd50a6bff76901b53febb6'
+ '0a5171f4298528315e8a8004b55befb7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # clean pacakge init scripts
+  rm -r "$pkgdir/etc/rc.d" "$pkgdir/etc/sysconfig"
+  # move examples to /usr/share
+  install -d -m 755 "$pkgdir/usr/share/$pkgname"
+  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
+  # systemd
+  install -D -m 644 "$srcdir/$pkgname.service" \
+"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: keepalived/repos/community-staging-x86_64/keepalived.service (from rev 
164168, keepalived/trunk/keepalived.service)
===
--- community-staging-x86_64/keepalived.service (rev 0)
+++ community-staging-x86_64/keepalived.service 2016-03-02 18:12:02 UTC (rev 
164170)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Keepalive Daemon
+After=network.target
+
+[Service]

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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:12:24
  Author: fyan
Revision: 164171

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

Added:
  uboot-tools/repos/community-staging-i686/
  uboot-tools/repos/community-staging-i686/PKGBUILD
(from rev 164170, uboot-tools/trunk/PKGBUILD)
  uboot-tools/repos/community-staging-x86_64/
  uboot-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 164170, uboot-tools/trunk/PKGBUILD)

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

Copied: uboot-tools/repos/community-staging-i686/PKGBUILD (from rev 164170, 
uboot-tools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:12:24 UTC (rev 164171)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Michael Lass 
+# Contributor: Philipp Schrader 
+
+pkgname=uboot-tools
+pkgver=2016.01
+pkgrel=2
+pkgdesc='U-Boot bootloader utility tools'
+arch=(i686 x86_64)
+url='http://www.denx.de/wiki/U-Boot/WebHome'
+license=(GPL)
+depends=(glibc openssl)
+source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2)
+sha1sums=('95bf7febe3bbcb9262a75f254677450e6dd57cb2')
+
+build() {
+  cd u-boot-$pkgver
+  make defconfig
+  make tools-all
+}
+
+package() {
+  install -m 755 -d "$pkgdir"/usr/bin
+  install -m 755 -t "$pkgdir"/usr/bin/ 
u-boot-$pkgver/tools/{mk{,env}image,env/fw_printenv,img2srec,dumpimage,netconsole,jtagconsole,ncb}
+  ln -s fw_printenv "$pkgdir"/usr/bin/fw_setenv
+  install -m 644 -D u-boot-$pkgver/doc/mkimage.1 
"$pkgdir"/usr/share/man/man1/mkimage.1
+}

Copied: uboot-tools/repos/community-staging-x86_64/PKGBUILD (from rev 164170, 
uboot-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:12:24 UTC (rev 164171)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Michael Lass 
+# Contributor: Philipp Schrader 
+
+pkgname=uboot-tools
+pkgver=2016.01
+pkgrel=2
+pkgdesc='U-Boot bootloader utility tools'
+arch=(i686 x86_64)
+url='http://www.denx.de/wiki/U-Boot/WebHome'
+license=(GPL)
+depends=(glibc openssl)
+source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2)
+sha1sums=('95bf7febe3bbcb9262a75f254677450e6dd57cb2')
+
+build() {
+  cd u-boot-$pkgver
+  make defconfig
+  make tools-all
+}
+
+package() {
+  install -m 755 -d "$pkgdir"/usr/bin
+  install -m 755 -t "$pkgdir"/usr/bin/ 
u-boot-$pkgver/tools/{mk{,env}image,env/fw_printenv,img2srec,dumpimage,netconsole,jtagconsole,ncb}
+  ln -s fw_printenv "$pkgdir"/usr/bin/fw_setenv
+  install -m 644 -D u-boot-$pkgver/doc/mkimage.1 
"$pkgdir"/usr/share/man/man1/mkimage.1
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:12:56
  Author: foutrelis
Revision: 260516

OpenSSL 1.0.2g rebuild

Modified:
  ldns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:11:25 UTC (rev 260515)
+++ PKGBUILD2016-03-02 18:12:56 UTC (rev 260516)
@@ -5,7 +5,7 @@
 
 pkgname=ldns
 pkgver=1.6.17
-pkgrel=3
+pkgrel=4
 pkgdesc='Fast DNS library supporting recent RFCs'
 url='http://www.nlnetlabs.nl/projects/ldns/'
 license=('custom:BSD')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:13:03
  Author: foutrelis
Revision: 260517

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

Added:
  ldns/repos/staging-i686/
  ldns/repos/staging-i686/PKGBUILD
(from rev 260516, ldns/trunk/PKGBUILD)
  ldns/repos/staging-i686/perl-recent.patch
(from rev 260516, ldns/trunk/perl-recent.patch)
  ldns/repos/staging-x86_64/
  ldns/repos/staging-x86_64/PKGBUILD
(from rev 260516, ldns/trunk/PKGBUILD)
  ldns/repos/staging-x86_64/perl-recent.patch
(from rev 260516, ldns/trunk/perl-recent.patch)

--+
 staging-i686/PKGBUILD|   44 +
 staging-i686/perl-recent.patch   |   12 ++
 staging-x86_64/PKGBUILD  |   44 +
 staging-x86_64/perl-recent.patch |   12 ++
 4 files changed, 112 insertions(+)

Copied: ldns/repos/staging-i686/PKGBUILD (from rev 260516, ldns/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:13:03 UTC (rev 260517)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=4
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'perl-recent.patch')
+sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4'
+  '026b276a360d29b3bd3690293a27178262a0b3dc')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../perl-recent.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+   --with-trust-anchor=/etc/trusted-key.key \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ldns/repos/staging-i686/perl-recent.patch (from rev 260516, 
ldns/trunk/perl-recent.patch)
===
--- staging-i686/perl-recent.patch  (rev 0)
+++ staging-i686/perl-recent.patch  2016-03-02 18:13:03 UTC (rev 260517)
@@ -0,0 +1,12 @@
+diff -Naur old/doc/doxyparse.pl new/doc/doxyparse.pl
+--- old/doc/doxyparse.pl   2014-01-11 06:04:41.0 +0900
 new/doc/doxyparse.pl   2015-08-08 22:29:34.216889652 +0900
+@@ -273,7 +273,7 @@
+ 
+   print MAN $MAN_MIDDLE;
+ 
+-  if (defined(@$also)) {
++  if (@$also) {
+   print MAN "\n.SH SEE ALSO\n\\fI";
+   print MAN join "\\fR, \\fI", @$also;
+   print MAN "\\fR.\nAnd ";

Copied: ldns/repos/staging-x86_64/PKGBUILD (from rev 260516, 
ldns/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:13:03 UTC (rev 260517)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=4
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'perl-recent.patch')
+sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4'
+  '026b276a360d29b3bd3690293a27178262a0b3dc')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../perl-recent.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+   --with-trust-anchor=/etc/trusted-key.key \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ldns/repos/staging-x86_64/perl-recent.patch (from rev 260516, 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:19:21
  Author: foutrelis
Revision: 164190

OpenSSL 1.0.2g rebuild

Modified:
  isync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:17:34 UTC (rev 164189)
+++ PKGBUILD2016-03-02 18:19:21 UTC (rev 164190)
@@ -6,7 +6,7 @@
 
 pkgname=isync
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="IMAP and MailDir mailbox synchronizer"
 arch=('i686' 'x86_64')
 url="http://isync.sourceforge.net;


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:18:52
  Author: foutrelis
Revision: 260523

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

Added:
  libvncserver/repos/staging-i686/
  libvncserver/repos/staging-i686/PKGBUILD
(from rev 260522, libvncserver/trunk/PKGBUILD)
  libvncserver/repos/staging-i686/initialize-libgcrypt.patch
(from rev 260522, libvncserver/trunk/initialize-libgcrypt.patch)
  libvncserver/repos/staging-x86_64/
  libvncserver/repos/staging-x86_64/PKGBUILD
(from rev 260522, libvncserver/trunk/PKGBUILD)
  libvncserver/repos/staging-x86_64/initialize-libgcrypt.patch
(from rev 260522, libvncserver/trunk/initialize-libgcrypt.patch)

---+
 staging-i686/PKGBUILD |   37 ++
 staging-i686/initialize-libgcrypt.patch   |   39 
 staging-x86_64/PKGBUILD   |   37 ++
 staging-x86_64/initialize-libgcrypt.patch |   39 
 4 files changed, 152 insertions(+)

Copied: libvncserver/repos/staging-i686/PKGBUILD (from rev 260522, 
libvncserver/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:18:52 UTC (rev 260523)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libvncserver
+pkgver=0.9.10
+pkgrel=4
+pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
+arch=('i686' 'x86_64')
+url="https://libvnc.github.io/;
+license=('GPL')
+depends=('libpng' 'libjpeg' 'gnutls' 'libgcrypt' 'openssl')
+makedepends=('sdl')
+source=("https://github.com/LibVNC/libvncserver/archive/LibVNCServer-${pkgver}.tar.gz;
+initialize-libgcrypt.patch)
+md5sums=('e1b888fae717b06896f8aec100163d27'
+ 'e22024d3a81c45129411e39e7d143835')
+
+prepare() {
+  cd ${pkgname}-LibVNCServer-${pkgver}
+  # Fix crashing when connecting to Mac hosts
+  # Suggested by upstream: 
https://github.com/LibVNC/libvncserver/pull/51#issuecomment-68884516
+  patch -p1 -i ../initialize-libgcrypt.patch
+}
+
+build() {
+  cd ${pkgname}-LibVNCServer-${pkgver}
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-LibVNCServer-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: libvncserver/repos/staging-i686/initialize-libgcrypt.patch (from rev 
260522, libvncserver/trunk/initialize-libgcrypt.patch)
===
--- staging-i686/initialize-libgcrypt.patch (rev 0)
+++ staging-i686/initialize-libgcrypt.patch 2016-03-02 18:18:52 UTC (rev 
260523)
@@ -0,0 +1,39 @@
+From 4674d4632b9ffc6779d9c9f79b8ebb53c12e29b2 Mon Sep 17 00:00:00 2001
+From: Floris Bos 
+Date: Fri, 2 Jan 2015 16:36:05 +0100
+Subject: [PATCH] Initialize libgcrypt before use
+
+https://www.gnupg.org/documentation/manuals/gcrypt/Initializing-the-library.html
+"Before the library can be used, it must initialize itself.
+This is achieved by invoking the function gcry_check_version"
+
+Closes issue #45
+Tested with krdc + libgcrypt 1.6.1 (libgcrypt20-dev Ubunutu package)
+connecting to a Mac Mini.
+
+Signed-off-by: Floris Bos 
+---
+ libvncclient/rfbproto.c | 10 ++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c
+index f653850..aa74c23 100644
+--- a/libvncclient/rfbproto.c
 b/libvncclient/rfbproto.c
+@@ -857,6 +857,16 @@ HandleARDAuth(rfbClient *client)
+   rfbCredential *cred = NULL;
+   rfbBool result = FALSE;
+ 
++  if (!gcry_control(GCRYCTL_INITIALIZATION_FINISHED_P))
++  {
++/* Application did not initialize gcrypt, so we should */
++if (!gcry_check_version(GCRYPT_VERSION))
++{
++  /* Older version of libgcrypt is installed on system than compiled 
against */
++  rfbClientLog("libgcrypt version mismatch.\n");
++}
++  }
++
+   while (1)
+   {
+ if (!ReadFromRFBServer(client, (char *)gen, 2))

Copied: libvncserver/repos/staging-x86_64/PKGBUILD (from rev 260522, 
libvncserver/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:18:52 UTC (rev 260523)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libvncserver
+pkgver=0.9.10
+pkgrel=4
+pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
+arch=('i686' 'x86_64')
+url="https://libvnc.github.io/;
+license=('GPL')
+depends=('libpng' 'libjpeg' 'gnutls' 

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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:17:23
  Author: bluewind
Revision: 164187

OpenSSL 1.0.2g rebuild

Modified:
  epic4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:17:10 UTC (rev 164186)
+++ PKGBUILD2016-03-02 18:17:23 UTC (rev 164187)
@@ -7,7 +7,7 @@
 
 pkgname=epic4
 pkgver=2.10.5
-pkgrel=2
+pkgrel=3
 pkgdesc="It's a new direction in ircII development"
 arch=('i686' 'x86_64')
 url="http://www.epicsol.org/;


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:25:35
  Author: bluewind
Revision: 260533

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

Added:
  libevent/repos/staging-i686/
  libevent/repos/staging-i686/PKGBUILD
(from rev 260532, libevent/trunk/PKGBUILD)
  libevent/repos/staging-x86_64/
  libevent/repos/staging-x86_64/PKGBUILD
(from rev 260532, libevent/trunk/PKGBUILD)

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

Copied: libevent/repos/staging-i686/PKGBUILD (from rev 260532, 
libevent/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:25:35 UTC (rev 260533)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Judd 
+
+pkgname=libevent
+pkgver=2.0.22
+pkgrel=2
+pkgdesc="An event notification library"
+arch=('i686' 'x86_64')
+url="http://libevent.org/;
+license=('BSD')
+depends=('openssl')
+optdepends=('python2: to use event_rpcgen.py')
+source=(https://github.com/libevent/libevent/archive/release-$pkgver-stable.zip)
+sha1sums=('710c0d1e070b8bf0da37189d218b811871d517d4')
+validpgpkeys=('B35BF85BF19489D04E28C33C21194EBB165733EA')
+
+build() {
+  cd ${pkgname}-release-${pkgver}-stable
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+check() {
+  cd ${pkgname}-release-${pkgver}-stable
+  make check
+}
+
+package() {
+  cd ${pkgname}-release-${pkgver}-stable
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE "${pkgdir}"/usr/share/licenses/libevent/LICENSE
+}

Copied: libevent/repos/staging-x86_64/PKGBUILD (from rev 260532, 
libevent/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:25:35 UTC (rev 260533)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Judd 
+
+pkgname=libevent
+pkgver=2.0.22
+pkgrel=2
+pkgdesc="An event notification library"
+arch=('i686' 'x86_64')
+url="http://libevent.org/;
+license=('BSD')
+depends=('openssl')
+optdepends=('python2: to use event_rpcgen.py')
+source=(https://github.com/libevent/libevent/archive/release-$pkgver-stable.zip)
+sha1sums=('710c0d1e070b8bf0da37189d218b811871d517d4')
+validpgpkeys=('B35BF85BF19489D04E28C33C21194EBB165733EA')
+
+build() {
+  cd ${pkgname}-release-${pkgver}-stable
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+check() {
+  cd ${pkgname}-release-${pkgver}-stable
+  make check
+}
+
+package() {
+  cd ${pkgname}-release-${pkgver}-stable
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE "${pkgdir}"/usr/share/licenses/libevent/LICENSE
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:25:13
  Author: foutrelis
Revision: 260531

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

Added:
  htdig/repos/staging-i686/
  htdig/repos/staging-i686/CVE-2007-6110.patch
(from rev 260530, htdig/trunk/CVE-2007-6110.patch)
  htdig/repos/staging-i686/PKGBUILD
(from rev 260530, htdig/trunk/PKGBUILD)
  htdig/repos/staging-i686/gcc4.3.patch
(from rev 260530, htdig/trunk/gcc4.3.patch)
  htdig/repos/staging-x86_64/
  htdig/repos/staging-x86_64/CVE-2007-6110.patch
(from rev 260530, htdig/trunk/CVE-2007-6110.patch)
  htdig/repos/staging-x86_64/PKGBUILD
(from rev 260530, htdig/trunk/PKGBUILD)
  htdig/repos/staging-x86_64/gcc4.3.patch
(from rev 260530, htdig/trunk/gcc4.3.patch)

+
 staging-i686/CVE-2007-6110.patch   |   26 +++
 staging-i686/PKGBUILD  |   47 +++
 staging-i686/gcc4.3.patch  |   15 +++
 staging-x86_64/CVE-2007-6110.patch |   26 +++
 staging-x86_64/PKGBUILD|   47 +++
 staging-x86_64/gcc4.3.patch|   15 +++
 6 files changed, 176 insertions(+)

Copied: htdig/repos/staging-i686/CVE-2007-6110.patch (from rev 260530, 
htdig/trunk/CVE-2007-6110.patch)
===
--- staging-i686/CVE-2007-6110.patch(rev 0)
+++ staging-i686/CVE-2007-6110.patch2016-03-02 18:25:13 UTC (rev 260531)
@@ -0,0 +1,26 @@
+Index: htdig-3.2.0b6/htsearch/Display.cc
+===
+--- htdig-3.2.0b6.orig/htsearch/Display.cc
 htdig-3.2.0b6/htsearch/Display.cc
+@@ -137,7 +137,7 @@ Display::display(int pageNumber)
+   // Must temporarily stash the message in a String, since
+   // displaySyntaxError will overwrite the static temp used in form.
+ 
+-  String s(form("No such sort method: `%s'", (const 
char*)config->Find("sort")));
++  String s("invalid sort method");
+ 
+   displaySyntaxError(s);
+   return;
+Index: htdig-3.2.0b6/libhtdig/ResultFetch.cc
+===
+--- htdig-3.2.0b6.orig/libhtdig/ResultFetch.cc
 htdig-3.2.0b6/libhtdig/ResultFetch.cc
+@@ -142,7 +142,7 @@ ResultFetch::fetch()
+ // Must temporarily stash the message in a String, since
+ // displaySyntaxError will overwrite the static temp used in form.
+ 
+-String s(form("No such sort method: `%s'", (const char *) 
config->Find("sort")));
++String s("invalid sort method");
+ 
+ displaySyntaxError(s);
+ //return;

Copied: htdig/repos/staging-i686/PKGBUILD (from rev 260530, 
htdig/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:25:13 UTC (rev 260531)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+
+pkgname=htdig
+pkgver=3.2.0b6
+pkgrel=11
+pkgdesc="Scripts and HTML code needed for using ht://Dig as a web search 
engine"
+url="http://www.htdig.org/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('openssl')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+'gcc4.3.patch'
+'CVE-2007-6110.patch')
+md5sums=('8b9b9587a411ac7dd278fa5413428960'
+ '2aeda683f95b58efc0978d7fe951de59'
+ '0d9099d3b5a32d322a8e0240f85a3578')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  patch -p1 -i "${srcdir}/gcc4.3.patch"
+  patch -p1 -i "${srcdir}/CVE-2007-6110.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--with-config-dir=/etc/htdig \
+--with-default-config-file=/etc/htdig/htdig.conf \
+--with-database-dir=/var/lib/htdig/db \
+--with-cgi-bin-dir=/usr/bin \
+--with-common-dir=/usr/share/doc/htdig \
+--with-search-dir=/usr/share/doc/htdig \
+--with-image-dir=/usr/share/doc/htdig \
+--localstatedir=/var/lib/htdig \
+--with-ssl
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: htdig/repos/staging-i686/gcc4.3.patch (from rev 260530, 
htdig/trunk/gcc4.3.patch)
===
--- staging-i686/gcc4.3.patch   (rev 0)
+++ staging-i686/gcc4.3.patch   2016-03-02 18:25:13 UTC (rev 260531)
@@ -0,0 +1,15 @@
+diff -Naurp htdig-3.2.0b6.orig/htsearch/Collection.h 
htdig-3.2.0b6/htsearch/Collection.h
+--- htdig-3.2.0b6.orig/htsearch/Collection.h   2004-05-28 06:15:24.0 
-0700
 htdig-3.2.0b6/htsearch/Collection.h2006-03-22 11:35:40.0 
-0800
+@@ -36,9 +36,9 @@ public:
+const char *docExcerpt);
+ ~Collection();
+ 
+-   

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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:25:30
  Author: bluewind
Revision: 260532

OpenSSL 1.0.2g rebuild

Modified:
  libevent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:25:13 UTC (rev 260531)
+++ PKGBUILD2016-03-02 18:25:30 UTC (rev 260532)
@@ -4,7 +4,7 @@
 
 pkgname=libevent
 pkgver=2.0.22
-pkgrel=1
+pkgrel=2
 pkgdesc="An event notification library"
 arch=('i686' 'x86_64')
 url="http://libevent.org/;


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:30:55
  Author: fyan
Revision: 164210

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

Added:
  hostapd/repos/community-staging-i686/
  hostapd/repos/community-staging-i686/PKGBUILD
(from rev 164205, hostapd/trunk/PKGBUILD)
  hostapd/repos/community-staging-i686/config
(from rev 164205, hostapd/trunk/config)
  hostapd/repos/community-staging-i686/hostapd-2.3-noscan.patch
(from rev 164207, hostapd/trunk/hostapd-2.3-noscan.patch)
  hostapd/repos/community-staging-i686/hostapd.install
(from rev 164207, hostapd/trunk/hostapd.install)
  hostapd/repos/community-staging-i686/hostapd.service
(from rev 164207, hostapd/trunk/hostapd.service)
  hostapd/repos/community-staging-i686/openvswitch.patch
(from rev 164207, hostapd/trunk/openvswitch.patch)
  hostapd/repos/community-staging-x86_64/
  hostapd/repos/community-staging-x86_64/PKGBUILD
(from rev 164209, hostapd/trunk/PKGBUILD)
  hostapd/repos/community-staging-x86_64/config
(from rev 164209, hostapd/trunk/config)
  hostapd/repos/community-staging-x86_64/hostapd-2.3-noscan.patch
(from rev 164209, hostapd/trunk/hostapd-2.3-noscan.patch)
  hostapd/repos/community-staging-x86_64/hostapd.install
(from rev 164209, hostapd/trunk/hostapd.install)
  hostapd/repos/community-staging-x86_64/hostapd.service
(from rev 164209, hostapd/trunk/hostapd.service)
  hostapd/repos/community-staging-x86_64/openvswitch.patch
(from rev 164209, hostapd/trunk/openvswitch.patch)

---+
 community-staging-i686/PKGBUILD   |   64 
 community-staging-i686/config |   98 
 community-staging-i686/hostapd-2.3-noscan.patch   |   54 +++
 community-staging-i686/hostapd.install|3 
 community-staging-i686/hostapd.service|   10 +
 community-staging-i686/openvswitch.patch  |  153 
 community-staging-x86_64/PKGBUILD |   64 
 community-staging-x86_64/config   |   98 
 community-staging-x86_64/hostapd-2.3-noscan.patch |   54 +++
 community-staging-x86_64/hostapd.install  |3 
 community-staging-x86_64/hostapd.service  |   10 +
 community-staging-x86_64/openvswitch.patch|  153 
 12 files changed, 764 insertions(+)

Copied: hostapd/repos/community-staging-i686/PKGBUILD (from rev 164205, 
hostapd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:30:55 UTC (rev 164210)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=hostapd
+pkgver=2.5
+pkgrel=2
+pkgdesc="IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator"
+arch=('i686' 'x86_64')
+url="http://w1.fi/hostapd/;
+license=('custom')
+depends=('openssl' 'libnl')
+install=hostapd.install
+options=(emptydirs)
+source=(http://w1.fi/releases/$pkgname-$pkgver.tar.gz
+   config
+   hostapd.service
+   hostapd-2.3-noscan.patch
+   openvswitch.patch)
+md5sums=('69f9cec3f76d74f402864a43e4f8624f'
+ '43c0ec1d8b4d4e46f468bc161bb05c4b'
+ '380042b9cf4950e34ed34b3093ab9e7f'
+ 'eaf8e48a9a63b5902fddadff2b8933fa'
+ 'a0802a604ed957078da0e14863df74f0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 <$srcdir/hostapd-2.3-noscan.patch
+  patch -p1 <$srcdir/openvswitch.patch
+}
+
+build() {
+  cd $pkgname-$pkgver/hostapd
+  cp ../../config .config
+  sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
+  export CFLAGS="$CFLAGS $(pkg-config --cflags libnl-3.0)"
+  make
+}
+
+package() {
+  # Systemd unit
+  install -Dm644 hostapd.service 
"$pkgdir/usr/lib/systemd/system/hostapd.service"
+
+  cd $pkgname-$pkgver
+
+  # License
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  cd hostapd
+
+  # Binaries
+  install -d "$pkgdir/usr/bin"
+  install -t "$pkgdir/usr/bin" hostapd hostapd_cli
+
+  # Configuration
+  install -d "$pkgdir/etc/hostapd"
+  install -d "$pkgdir/usr/share/doc/hostapd"
+  install -m644 -t "$pkgdir/usr/share/doc/hostapd" \
+hostapd.{accept,conf,deny,eap_user,radius_clients,sim_db,vlan,wpa_psk} \
+wired.conf hlr_auc_gw.milenage_db
+
+  # Man pages
+  install -Dm644 hostapd.8 "$pkgdir/usr/share/man/man8/hostapd.8"
+  install -Dm644 hostapd_cli.1 "$pkgdir/usr/share/man/man1/hostapd_cli.1"
+}

Copied: hostapd/repos/community-staging-i686/config (from rev 164205, 
hostapd/trunk/config)
===
--- community-staging-i686/config   (rev 0)
+++ community-staging-i686/config   2016-03-02 18:30:55 UTC (rev 164210)
@@ -0,0 +1,98 @@
+# Example hostapd build time configuration
+#
+# This file lists the configuration 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:30:47
  Author: foutrelis
Revision: 260541

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

Added:
  clamav/repos/staging-i686/
  clamav/repos/staging-i686/PKGBUILD
(from rev 260540, clamav/trunk/PKGBUILD)
  clamav/repos/staging-i686/clamd.conf
(from rev 260540, clamav/trunk/clamd.conf)
  clamav/repos/staging-i686/clamd.service
(from rev 260540, clamav/trunk/clamd.service)
  clamav/repos/staging-i686/freshclam.conf
(from rev 260540, clamav/trunk/freshclam.conf)
  clamav/repos/staging-i686/freshclamd.service
(from rev 260540, clamav/trunk/freshclamd.service)
  clamav/repos/staging-i686/install
(from rev 260540, clamav/trunk/install)
  clamav/repos/staging-i686/logrotate
(from rev 260540, clamav/trunk/logrotate)
  clamav/repos/staging-i686/tmpfiles.d
(from rev 260540, clamav/trunk/tmpfiles.d)
  clamav/repos/staging-x86_64/
  clamav/repos/staging-x86_64/PKGBUILD
(from rev 260540, clamav/trunk/PKGBUILD)
  clamav/repos/staging-x86_64/clamd.conf
(from rev 260540, clamav/trunk/clamd.conf)
  clamav/repos/staging-x86_64/clamd.service
(from rev 260540, clamav/trunk/clamd.service)
  clamav/repos/staging-x86_64/freshclam.conf
(from rev 260540, clamav/trunk/freshclam.conf)
  clamav/repos/staging-x86_64/freshclamd.service
(from rev 260540, clamav/trunk/freshclamd.service)
  clamav/repos/staging-x86_64/install
(from rev 260540, clamav/trunk/install)
  clamav/repos/staging-x86_64/logrotate
(from rev 260540, clamav/trunk/logrotate)
  clamav/repos/staging-x86_64/tmpfiles.d
(from rev 260540, clamav/trunk/tmpfiles.d)

---+
 staging-i686/PKGBUILD |   64 
 staging-i686/clamd.conf   |6 +++
 staging-i686/clamd.service|   11 ++
 staging-i686/freshclam.conf   |3 +
 staging-i686/freshclamd.service   |   10 +
 staging-i686/install  |   15 
 staging-i686/logrotate|   10 +
 staging-i686/tmpfiles.d   |1 
 staging-x86_64/PKGBUILD   |   64 
 staging-x86_64/clamd.conf |6 +++
 staging-x86_64/clamd.service  |   11 ++
 staging-x86_64/freshclam.conf |3 +
 staging-x86_64/freshclamd.service |   10 +
 staging-x86_64/install|   15 
 staging-x86_64/logrotate  |   10 +
 staging-x86_64/tmpfiles.d |1 
 16 files changed, 240 insertions(+)

Copied: clamav/repos/staging-i686/PKGBUILD (from rev 260540, 
clamav/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:30:47 UTC (rev 260541)
@@ -0,0 +1,64 @@
+# $Id$
+# Contributor: Dale Blount 
+# Contributor: Gregor Ibic 
+# Maintainer: Gaetan Bisson 
+
+pkgname=clamav
+pkgver=0.99
+pkgrel=3
+pkgdesc='Anti-virus toolkit for Unix'
+url='http://www.clamav.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('libmilter')
+depends=('bzip2' 'libltdl' 'gcc-libs')
+validpgpkeys=('B964E6D7BC7D7C82CCB8D45840B8EA2364221D53'
+  'F79FB2D08751574C5D3FDFFBB3D5342C260429A0')
+source=("http://www.clamav.net/downloads/production/${pkgname}-${pkgver}.tar.gz"{,.sig}
+'logrotate'
+'tmpfiles.d'
+'clamd.conf'
+'freshclam.conf'
+'clamd.service'
+'freshclamd.service')
+sha1sums=('7834baf3ce4898dd856e652c9d0301a8e14b4615' 'SKIP'
+  'bb488a56b0f6a0760446cde89c1e3321e2717b78'
+  'a224ea9b4d0f4f196827347d54bed51e11c197ea'
+  '887f624eb305f2446f55d8339e2972ad0cfe2b79'
+  'b767837d0279ad30b92c314cb762b73e5ad0415e'
+  '77899cce83f04cbe134b30da376f879d2841f769'
+  'cda9a087e5593992150cb456e34c5f6f589aca82')
+
+backup=('etc/clamav/clamd.conf'
+'etc/clamav/freshclam.conf'
+'etc/logrotate.d/clamav')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/clamav \
+   --with-dbdir=/var/lib/clamav \
+   --disable-clamav \
+   --enable-milter \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   install -Dm644 ../clamd.conf "${pkgdir}"/etc/clamav/clamd.conf
+   install -Dm644 ../freshclam.conf "${pkgdir}"/etc/clamav/freshclam.conf
+   install -Dm644 ../freshclamd.service 
"${pkgdir}"/usr/lib/systemd/system/freshclamd.service
+   install -Dm644 ../clamd.service 
"${pkgdir}"/usr/lib/systemd/system/clamd.service
+   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/clamav.conf
+   install -Dm644 ../logrotate "${pkgdir}"/etc/logrotate.d/clamav
+

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:31:22
  Author: foutrelis
Revision: 164211

OpenSSL 1.0.2g rebuild

Modified:
  p3scan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:30:55 UTC (rev 164210)
+++ PKGBUILD2016-03-02 18:31:22 UTC (rev 164211)
@@ -4,7 +4,7 @@
 
 pkgname=p3scan
 pkgver=2.3.2
-pkgrel=10
+pkgrel=11
 pkgdesc="Fully transparent POP3/SMTP proxy with Anti-Virus and SPAM protection"
 arch=('i686' 'x86_64')
 url="http://p3scan.sourceforge.net/;


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:31:38
  Author: foutrelis
Revision: 164213

OpenSSL 1.0.2g rebuild

Modified:
  slrn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:31:32 UTC (rev 164212)
+++ PKGBUILD2016-03-02 18:31:38 UTC (rev 164213)
@@ -4,7 +4,7 @@
 
 pkgname=slrn
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="An open source text-based news client"
 arch=('i686' 'x86_64')
 url="http://www.slrn.org/;


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:31:32
  Author: foutrelis
Revision: 164212

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

Added:
  p3scan/repos/community-staging-i686/
  p3scan/repos/community-staging-i686/PKGBUILD
(from rev 164211, p3scan/trunk/PKGBUILD)
  p3scan/repos/community-staging-i686/p3scan.install
(from rev 164211, p3scan/trunk/p3scan.install)
  p3scan/repos/community-staging-i686/p3scan.service
(from rev 164211, p3scan/trunk/p3scan.service)
  p3scan/repos/community-staging-i686/p3scan.tmpfiles
(from rev 164211, p3scan/trunk/p3scan.tmpfiles)
  p3scan/repos/community-staging-x86_64/
  p3scan/repos/community-staging-x86_64/PKGBUILD
(from rev 164211, p3scan/trunk/PKGBUILD)
  p3scan/repos/community-staging-x86_64/p3scan.install
(from rev 164211, p3scan/trunk/p3scan.install)
  p3scan/repos/community-staging-x86_64/p3scan.service
(from rev 164211, p3scan/trunk/p3scan.service)
  p3scan/repos/community-staging-x86_64/p3scan.tmpfiles
(from rev 164211, p3scan/trunk/p3scan.tmpfiles)

--+
 community-staging-i686/PKGBUILD  |   58 +
 community-staging-i686/p3scan.install|7 +++
 community-staging-i686/p3scan.service|   10 +
 community-staging-i686/p3scan.tmpfiles   |1 
 community-staging-x86_64/PKGBUILD|   58 +
 community-staging-x86_64/p3scan.install  |7 +++
 community-staging-x86_64/p3scan.service  |   10 +
 community-staging-x86_64/p3scan.tmpfiles |1 
 8 files changed, 152 insertions(+)

Copied: p3scan/repos/community-staging-i686/PKGBUILD (from rev 164211, 
p3scan/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:31:32 UTC (rev 164212)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: v01d 
+
+pkgname=p3scan
+pkgver=2.3.2
+pkgrel=11
+pkgdesc="Fully transparent POP3/SMTP proxy with Anti-Virus and SPAM protection"
+arch=('i686' 'x86_64')
+url="http://p3scan.sourceforge.net/;
+depends=('pcre' 'openssl')
+license=('GPL')
+install=p3scan.install
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
+   "p3scan.service"
+   "p3scan.tmpfiles")
+md5sums=('9f8decc7d4701228788e3c8717096ca0'
+ '74a3a5e52e6714ac5001985061248a34'
+ '265a730e20e3d8aaf0cd7816dc98ca71')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Fix CFLAGS and other options hardcoded in Makefiles
+  unset CFLAGS
+  sed -ri "s|^CFLAGS=-Wall( -g)? -O2|CFLAGS=-Wall $CFLAGS|" Makefile 
ripmime/Makefile ripmime/tnef/Makefile ripmime/ripOLE/Makefile
+  sed -ri 's|^LOCATION=.+$|LOCATION=/usr|' ripmime/Makefile
+  sed -ri 's|\$\(SYSINS\) -v -m 550 --strip p3scan 
\$\(PREFIX\)/sbin/|$(SYSINS) -D -v -m 550 --strip p3scan $(DESTDIR)/usr/bin/|' 
Makefile
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Create base dirs, the Makefile assumes they're there
+  install -d $pkgdir/usr/bin $pkgdir/usr/share/man/man8 $pkgdir/etc/rc.d
+
+  # install with root set on $pkgdir
+  make DESTDIR=$pkgdir install MANDIR=/usr/share/man/man8
+
+  # delete init script provided
+  rm -rf $pkgdir/etc/rc.d
+
+  # BUG?: make absolute link a relative one
+  (
+cd $pkgdir/etc/p3scan
+ln -sf p3scan-en.mail p3scan.mail
+  )
+
+  # BUG: fix .conf file (the license has C style comments, they should be 
conf-style comments)
+  sed -ri 's|^[/ ]\*/?|# |g' $pkgdir/etc/p3scan/p3scan.conf
+
+  mv $pkgdir/usr/doc $pkgdir/usr/share/
+  rm -rf $pkgdir/var/run
+
+  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+  install -Dm0644 $srcdir/$pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
+}

Copied: p3scan/repos/community-staging-i686/p3scan.install (from rev 164211, 
p3scan/trunk/p3scan.install)
===
--- community-staging-i686/p3scan.install   (rev 0)
+++ community-staging-i686/p3scan.install   2016-03-02 18:31:32 UTC (rev 
164212)
@@ -0,0 +1,7 @@
+post_install() {
+  echo "==> You may want an Anti-Virus program to use with p3scan. Installing 
clamav is recommended."
+}
+
+post_upgrade() {
+  post_install $1 $2
+}

Copied: p3scan/repos/community-staging-i686/p3scan.service (from rev 164211, 
p3scan/trunk/p3scan.service)
===
--- community-staging-i686/p3scan.service   (rev 0)
+++ community-staging-i686/p3scan.service   2016-03-02 18:31:32 UTC (rev 
164212)
@@ -0,0 +1,10 @@
+[Unit]
+Description=p3scan proxy
+
+[Service]
+Type=forking
+PIDFile=/run/p3scan/p3scan.pid
+ExecStart=/usr/bin/p3scan
+
+[Install]
+WantedBy=multi-user.target

Copied: 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:30:29
  Author: foutrelis
Revision: 260540

OpenSSL 1.0.2g rebuild

Modified:
  clamav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:28:14 UTC (rev 260539)
+++ PKGBUILD2016-03-02 18:30:29 UTC (rev 260540)
@@ -5,7 +5,7 @@
 
 pkgname=clamav
 pkgver=0.99
-pkgrel=2
+pkgrel=3
 pkgdesc='Anti-virus toolkit for Unix'
 url='http://www.clamav.net/'
 license=('GPL')


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:34:14
  Author: fyan
Revision: 260544

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

Added:
  sofia-sip/repos/staging-i686/
  sofia-sip/repos/staging-i686/PKGBUILD
(from rev 260543, sofia-sip/trunk/PKGBUILD)
  sofia-sip/repos/staging-x86_64/
  sofia-sip/repos/staging-x86_64/PKGBUILD
(from rev 260543, sofia-sip/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   25 +
 staging-x86_64/PKGBUILD |   25 +
 2 files changed, 50 insertions(+)

Copied: sofia-sip/repos/staging-i686/PKGBUILD (from rev 260543, 
sofia-sip/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:34:14 UTC (rev 260544)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Bjorn Lindeijer 
+pkgname=sofia-sip
+pkgver=1.12.11
+pkgrel=3
+pkgdesc="An open-source SIP User-Agent library"
+arch=('i686' 'x86_64')
+url="http://sofia-sip.sourceforge.net;
+options=('zipman')
+license=('LGPL')
+depends=('glib2' 'openssl')
+source=(http://downloads.sourceforge.net/sofia-sip/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f3582c62080eeecd3fa4cd5d4ccb4225')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-openssl
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: sofia-sip/repos/staging-x86_64/PKGBUILD (from rev 260543, 
sofia-sip/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:34:14 UTC (rev 260544)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Bjorn Lindeijer 
+pkgname=sofia-sip
+pkgver=1.12.11
+pkgrel=3
+pkgdesc="An open-source SIP User-Agent library"
+arch=('i686' 'x86_64')
+url="http://sofia-sip.sourceforge.net;
+options=('zipman')
+license=('LGPL')
+depends=('glib2' 'openssl')
+source=(http://downloads.sourceforge.net/sofia-sip/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f3582c62080eeecd3fa4cd5d4ccb4225')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-openssl
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:35:07
  Author: foutrelis
Revision: 260545

OpenSSL 1.0.2g rebuild

Modified:
  lynx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:34:14 UTC (rev 260544)
+++ PKGBUILD2016-03-02 18:35:07 UTC (rev 260545)
@@ -6,7 +6,7 @@
 pkgname=lynx
 pkgver=2.8.8
 _relver=${pkgver}rel.2
-pkgrel=3
+pkgrel=4
 pkgdesc="A text browser for the World Wide Web"
 url="http://lynx.isc.org/;
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:38:39
  Author: fyan
Revision: 164226

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

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

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

Copied: pion/repos/community-staging-i686/PKGBUILD (from rev 164225, 
pion/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:38:39 UTC (rev 164226)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=pion
+pkgver=5.0.7
+pkgrel=5
+pkgdesc="A C++ development library for implementing lightweight HTTP 
interfaces"
+url="https://github.com/cloudmeter/pion;
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=($pkgname-$pkgver.zip::https://github.com/cloudmeter/pion/archive/$pkgver.zip)
+md5sums=('76a96dd4d34d21e41cbb2328564cba1a')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i "s/ -ggdb//g" configure
+  # override Makefile bug
+  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
+
+  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins 
--disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # tests fail to compile with Boost 1.59.0
+  #make -k check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
+}

Copied: pion/repos/community-staging-x86_64/PKGBUILD (from rev 164225, 
pion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:38:39 UTC (rev 164226)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=pion
+pkgver=5.0.7
+pkgrel=5
+pkgdesc="A C++ development library for implementing lightweight HTTP 
interfaces"
+url="https://github.com/cloudmeter/pion;
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=($pkgname-$pkgver.zip::https://github.com/cloudmeter/pion/archive/$pkgver.zip)
+md5sums=('76a96dd4d34d21e41cbb2328564cba1a')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i "s/ -ggdb//g" configure
+  # override Makefile bug
+  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
+
+  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins 
--disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # tests fail to compile with Boost 1.59.0
+  #make -k check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
+}


[arch-commits] Commit in httperf/trunk (PKGBUILD use-SSLv23_client_method.patch)

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 20:13:24
  Author: foutrelis
Revision: 164230

Fix build with OpenSSL 1.0.2g

Added:
  httperf/trunk/use-SSLv23_client_method.patch
Modified:
  httperf/trunk/PKGBUILD

+
 PKGBUILD   |   12 ++--
 use-SSLv23_client_method.patch |   13 +
 2 files changed, 23 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:52:46 UTC (rev 164229)
+++ PKGBUILD2016-03-02 19:13:24 UTC (rev 164230)
@@ -11,9 +11,17 @@
 license=('GPL2')
 url='http://code.google.com/p/httperf'
 depends=('openssl')
-source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
-md5sums=('2968c36b9ecf3d98fc1f2c1c9c0d9341')
+source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz;
+'use-SSLv23_client_method.patch')
+md5sums=('2968c36b9ecf3d98fc1f2c1c9c0d9341'
+ '4b7cd4bd707c322f7e34f0302b76')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../use-SSLv23_client_method.patch
+}
+
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr

Added: use-SSLv23_client_method.patch
===
--- use-SSLv23_client_method.patch  (rev 0)
+++ use-SSLv23_client_method.patch  2016-03-02 19:13:24 UTC (rev 164230)
@@ -0,0 +1,13 @@
+diff -uprb httperf-0.9.0.orig/src/httperf.c httperf-0.9.0/src/httperf.c
+--- httperf-0.9.0.orig/src/httperf.c   2007-04-07 10:01:56.0 +0300
 httperf-0.9.0/src/httperf.c2016-03-02 21:09:57.376029451 +0200
+@@ -808,7 +808,8 @@ main (int argc, char **argv)
+   SSLeay_add_ssl_algorithms ();
+ 
+   /* for some strange reason, SSLv23_client_method () doesn't work here */
+-  ssl_ctx = SSL_CTX_new (SSLv3_client_method ());
++  /* hopefully the above comment is a lie */
++  ssl_ctx = SSL_CTX_new (SSLv23_client_method ());
+   if (!ssl_ctx)
+   {
+ ERR_print_errors_fp (stderr);


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 18:43:42
  Author: fyan
Revision: 164159

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

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

+
 community-staging-i686/PKGBUILD|   49 +++
 community-staging-i686/haskell-yesod.install   |   18 
 community-staging-x86_64/PKGBUILD  |   49 +++
 community-staging-x86_64/haskell-yesod.install |   18 
 4 files changed, 134 insertions(+)

Copied: haskell-yesod/repos/community-staging-i686/PKGBUILD (from rev 164158, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 17:43:42 UTC (rev 164159)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.2
+pkgrel=24
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default" "haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-safe"
+ "haskell-semigroups" "haskell-shakespeare" "haskell-streaming-commons"
+ "haskell-text" "haskell-unordered-containers" "haskell-wai"
+ "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" "haskell-yaml"
+ "haskell-yesod-auth" "haskell-yesod-core" "haskell-yesod-form"
+ "haskell-yesod-persistent")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d6d13e608af954de23721261b39ee79569907beb173477db8820acc5e9f45757')
+
+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-yesod/repos/community-staging-i686/haskell-yesod.install (from 
rev 164158, haskell-yesod/trunk/haskell-yesod.install)
===
--- community-staging-i686/haskell-yesod.install
(rev 0)
+++ community-staging-i686/haskell-yesod.install2016-03-02 17:43:42 UTC 
(rev 164159)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod
+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-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 164158, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 17:43:42 UTC (rev 164159)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 

[arch-commits] Commit in owncloud-app-contacts/trunk (PKGBUILD)

2016-03-02 Thread Sergej Pupykin
Date: Wednesday, March 2, 2016 @ 18:43:52
  Author: spupykin
Revision: 164160

upgpkg: owncloud-app-contacts 2:0.0.0.1-1

upd

Modified:
  owncloud-app-contacts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:43:42 UTC (rev 164159)
+++ PKGBUILD2016-03-02 17:43:52 UTC (rev 164160)
@@ -2,9 +2,9 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=owncloud-app-contacts
-epoch=1
-pkgver=0.5.0.0
-pkgrel=2
+epoch=2
+pkgver=0.0.0.1
+pkgrel=1
 pkgdesc="Contacts app for owncloud"
 arch=('any')
 url="http://owncloud.org/;
@@ -12,10 +12,10 @@
 depends=('owncloud')
 makedepends=()
 options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/bb83d080a32b682f07093d663cd37d26f68886b7.tar.gz;)
-md5sums=('234ce9387c45e8ed80432ca183582e39')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz;)
+md5sums=('e2663626547ffa91db63a5ad1179a038')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/contacts-master 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
+  cp -a ${srcdir}/contacts-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
 }


[arch-commits] Commit in lib32-openssl/trunk (PKGBUILD ssl3-test-failure.patch)

2016-03-02 Thread Pierre Schmitz
Date: Wednesday, March 2, 2016 @ 18:55:33
  Author: pierre
Revision: 164162

upgpkg: lib32-openssl 1:1.0.2.g-3

Added:
  lib32-openssl/trunk/ssl3-test-failure.patch
Modified:
  lib32-openssl/trunk/PKGBUILD

-+
 PKGBUILD|   16 +++-
 ssl3-test-failure.patch |   26 ++
 2 files changed, 37 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:44:02 UTC (rev 164161)
+++ PKGBUILD2016-03-02 17:55:33 UTC (rev 164162)
@@ -3,17 +3,17 @@
 
 _pkgbasename=openssl
 pkgname=lib32-$_pkgbasename
-_ver=1.0.2f
+_ver=1.0.2g
 # use a pacman compatible version scheme
 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
 #pkgver=$_ver
-pkgrel=1
+pkgrel=3
 epoch=1
 pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security (32-bit)'
 arch=('x86_64')
 url='https://www.openssl.org'
 license=('custom:BSD')
-depends=('lib32-zlib' "${_pkgbasename}")
+depends=('lib32-glibc' "${_pkgbasename}")
 optdepends=('ca-certificates')
 makedepends=('gcc-multilib')
 options=('!makeflags')
@@ -20,11 +20,13 @@
 source=("https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz;
 "https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz.asc;
 'no-rpath.patch'
+'ssl3-test-failure.patch'
 'ca-dir.patch')
 validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
-md5sums=('b3bf73f507172be9292ea2a8c28b659d'
+md5sums=('f3c710c045cdee5fd114feb69feba7aa'
  'SKIP'
  'dc78d3d06baffc16217519242ce92478'
+ '62fc492252edd3283871632bb77fadbe'
  '3bf51be3a1bbd262be46dc619f92aa90')
 
 prepare() {
@@ -32,6 +34,10 @@
 
# remove rpath: http://bugs.archlinux.org/task/14367
patch -p0 -i $srcdir/no-rpath.patch
+
+   # disable a test that fails when ssl3 is disabled
+   patch -p1 -i $srcdir/ssl3-test-failure.patch
+
# set ca dir to /etc/ssl by default
patch -p0 -i $srcdir/ca-dir.patch
 }
@@ -45,7 +51,7 @@
 
# mark stack as non-executable: http://bugs.archlinux.org/task/12434
./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib32 \
-   shared zlib \
+   shared no-ssl3-method \
linux-elf \
"-Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
 

Added: ssl3-test-failure.patch
===
--- ssl3-test-failure.patch (rev 0)
+++ ssl3-test-failure.patch 2016-03-02 17:55:33 UTC (rev 164162)
@@ -0,0 +1,26 @@
+From: Kurt Roeckx 
+Date: Sun, 6 Sep 2015 16:04:11 +0200
+Subject: Disable SSLv3 test in test suite
+
+When testing SSLv3 the test program returns 0 for skip.  The test for weak DH
+expects a failure, but gets success.
+
+It should probably be changed to return something other than 0 for a skipped
+test.
+---
+ test/testssl | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/test/testssl b/test/testssl
+index 747e4ba..1e4370b 100644
+--- a/test/testssl
 b/test/testssl
+@@ -160,7 +160,7 @@ test_cipher() {
+ }
+ 
+ echo "Testing ciphersuites"
+-for protocol in TLSv1.2 SSLv3; do
++for protocol in TLSv1.2; do
+   echo "Testing ciphersuites for $protocol"
+   for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers 
"RSA+$protocol" | tr ':' ' '`; do
+ test_cipher $cipher $protocol


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:15:24
  Author: bluewind
Revision: 260521

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

Added:
  nginx-mainline/repos/staging-i686/
  nginx-mainline/repos/staging-i686/PKGBUILD
(from rev 260520, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/staging-i686/logrotate
(from rev 260520, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/staging-i686/nginx.install
(from rev 260520, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/staging-i686/service
(from rev 260520, nginx-mainline/trunk/service)
  nginx-mainline/repos/staging-x86_64/
  nginx-mainline/repos/staging-x86_64/PKGBUILD
(from rev 260520, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/staging-x86_64/logrotate
(from rev 260520, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/staging-x86_64/nginx.install
(from rev 260520, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/staging-x86_64/service
(from rev 260520, nginx-mainline/trunk/service)

--+
 staging-i686/PKGBUILD|  121 +
 staging-i686/logrotate   |9 +++
 staging-i686/nginx.install   |   21 +++
 staging-i686/service |   14 
 staging-x86_64/PKGBUILD  |  121 +
 staging-x86_64/logrotate |9 +++
 staging-x86_64/nginx.install |   21 +++
 staging-x86_64/service   |   14 
 8 files changed, 330 insertions(+)

Copied: nginx-mainline/repos/staging-i686/PKGBUILD (from rev 260520, 
nginx-mainline/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:15:24 UTC (rev 260521)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer:  Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.9.12
+pkgrel=2
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('i686' 'x86_64')
+url='http://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip')
+backup=('etc/nginx/fastcgi.conf'
+'etc/nginx/fastcgi_params'
+'etc/nginx/koi-win'
+'etc/nginx/koi-utf'
+'etc/nginx/mime.types'
+'etc/nginx/nginx.conf'
+'etc/nginx/scgi_params'
+'etc/nginx/uwsgi_params'
+'etc/nginx/win-utf'
+'etc/logrotate.d/nginx')
+install=nginx.install
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz
+service
+logrotate)
+md5sums=('0afe4a7e589a0de43b7b54aa055a4351'
+ 'ce9a06bcaf66ec4a3c4eb59b636e0dfd'
+ '3441ce77cdd1aab6f0ab7e212698a8a7')
+
+_common_flags=(
+  --with-imap
+  --with-imap_ssl_module
+  --with-ipv6
+  --with-pcre-jit
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+)
+
+_mainline_flags=(
+  --with-http_v2_module
+  --with-threads
+  --with-stream
+)
+
+build() {
+  cd $provides-$pkgver
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+${_common_flags[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ 

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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:14:38
  Author: bluewind
Revision: 164176

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

Added:
  gsoap/repos/community-staging-i686/
  gsoap/repos/community-staging-i686/LICENSE
(from rev 164175, gsoap/trunk/LICENSE)
  gsoap/repos/community-staging-i686/PKGBUILD
(from rev 164175, gsoap/trunk/PKGBUILD)
  gsoap/repos/community-staging-x86_64/
  gsoap/repos/community-staging-x86_64/LICENSE
(from rev 164175, gsoap/trunk/LICENSE)
  gsoap/repos/community-staging-x86_64/PKGBUILD
(from rev 164175, gsoap/trunk/PKGBUILD)

---+
 community-staging-i686/LICENSE|  163 
 community-staging-i686/PKGBUILD   |   39 
 community-staging-x86_64/LICENSE  |  163 
 community-staging-x86_64/PKGBUILD |   39 
 4 files changed, 404 insertions(+)

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


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:21:22
  Author: foutrelis
Revision: 164192

OpenSSL 1.0.2g rebuild

Modified:
  haproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:19:28 UTC (rev 164191)
+++ PKGBUILD2016-03-02 18:21:22 UTC (rev 164192)
@@ -3,7 +3,7 @@
 
 pkgname=haproxy
 pkgver=1.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Reliable, high performance TCP/HTTP load balancer'
 arch=('i686' 'x86_64')
 url='http://haproxy.org/'


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:23:33
  Author: foutrelis
Revision: 164197

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

Added:
  ngircd/repos/community-staging-i686/
  ngircd/repos/community-staging-i686/PKGBUILD
(from rev 164196, ngircd/trunk/PKGBUILD)
  ngircd/repos/community-staging-i686/ngircd.service
(from rev 164196, ngircd/trunk/ngircd.service)
  ngircd/repos/community-staging-x86_64/
  ngircd/repos/community-staging-x86_64/PKGBUILD
(from rev 164196, ngircd/trunk/PKGBUILD)
  ngircd/repos/community-staging-x86_64/ngircd.service
(from rev 164196, ngircd/trunk/ngircd.service)

-+
 community-staging-i686/PKGBUILD |   40 ++
 community-staging-i686/ngircd.service   |   11 
 community-staging-x86_64/PKGBUILD   |   40 ++
 community-staging-x86_64/ngircd.service |   11 
 4 files changed, 102 insertions(+)

Copied: ngircd/repos/community-staging-i686/PKGBUILD (from rev 164196, 
ngircd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:23:33 UTC (rev 164197)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Mateusz Herych 
+# Contributor: Alexander Rødseth 
+
+pkgname=ngircd
+pkgver=23
+pkgrel=2
+pkgdesc="Next Generation IRC Daemon"
+arch=('x86_64' 'i686')
+backup=(etc/ngircd.conf)
+url="http://ngircd.barton.de/;
+license=('GPL')
+depends=('openssl' 'libident' 'zlib')
+source=("http://ngircd.barton.de/pub/ngircd/ngircd-$pkgver.tar.gz;
+ngircd.service)
+sha256sums=('99b8b67a975a9ae9b81c96bdee02133a10f515c718825d34cedcb64f1fc95e73'
+'f02e30f6864ba1130bcc85bedc44ad782687f572c06f10e0501b0ddcf532b404')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+   --with-ident \
+   --with-openssl \
+   --enable-ipv6
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../ngircd.service 
"$pkgdir/usr/lib/systemd/system/ngircd.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ngircd/repos/community-staging-i686/ngircd.service (from rev 164196, 
ngircd/trunk/ngircd.service)
===
--- community-staging-i686/ngircd.service   (rev 0)
+++ community-staging-i686/ngircd.service   2016-03-02 18:23:33 UTC (rev 
164197)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Next Generation IRC Daemon
+After=network.target
+
+[Service]
+# don't daemonize to simplify stuff
+ExecStart=/usr/bin/ngircd -n
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target

Copied: ngircd/repos/community-staging-x86_64/PKGBUILD (from rev 164196, 
ngircd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:23:33 UTC (rev 164197)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Mateusz Herych 
+# Contributor: Alexander Rødseth 
+
+pkgname=ngircd
+pkgver=23
+pkgrel=2
+pkgdesc="Next Generation IRC Daemon"
+arch=('x86_64' 'i686')
+backup=(etc/ngircd.conf)
+url="http://ngircd.barton.de/;
+license=('GPL')
+depends=('openssl' 'libident' 'zlib')
+source=("http://ngircd.barton.de/pub/ngircd/ngircd-$pkgver.tar.gz;
+ngircd.service)
+sha256sums=('99b8b67a975a9ae9b81c96bdee02133a10f515c718825d34cedcb64f1fc95e73'
+'f02e30f6864ba1130bcc85bedc44ad782687f572c06f10e0501b0ddcf532b404')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+   --with-ident \
+   --with-openssl \
+   --enable-ipv6
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../ngircd.service 
"$pkgdir/usr/lib/systemd/system/ngircd.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ngircd/repos/community-staging-x86_64/ngircd.service (from rev 164196, 
ngircd/trunk/ngircd.service)
===
--- community-staging-x86_64/ngircd.service (rev 0)
+++ community-staging-x86_64/ngircd.service 2016-03-02 18:23:33 UTC (rev 
164197)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Next Generation IRC Daemon
+After=network.target
+
+[Service]
+# don't daemonize to simplify stuff
+ExecStart=/usr/bin/ngircd -n
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:25:02
  Author: foutrelis
Revision: 260530

OpenSSL 1.0.2g rebuild

Modified:
  htdig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:24:44 UTC (rev 260529)
+++ PKGBUILD2016-03-02 18:25:02 UTC (rev 260530)
@@ -4,7 +4,7 @@
 
 pkgname=htdig
 pkgver=3.2.0b6
-pkgrel=10
+pkgrel=11
 pkgdesc="Scripts and HTML code needed for using ht://Dig as a web search 
engine"
 url="http://www.htdig.org/;
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:24:44
  Author: fyan
Revision: 260529

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

Added:
  libssh2/repos/staging-i686/
  libssh2/repos/staging-i686/PKGBUILD
(from rev 260528, libssh2/trunk/PKGBUILD)
  libssh2/repos/staging-x86_64/
  libssh2/repos/staging-x86_64/PKGBUILD
(from rev 260528, libssh2/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: libssh2/repos/staging-i686/PKGBUILD (from rev 260528, 
libssh2/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:24:44 UTC (rev 260529)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez  
+# Contributor: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+
+pkgname=libssh2
+pkgver=1.7.0
+pkgrel=2
+pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
+url="http://www.libssh2.org/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl')
+makedepends=('zlib')
+provides=('libssh2.so')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
+md5sums=('b01662a210e94cccf2f76094db7dac5c'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: libssh2/repos/staging-x86_64/PKGBUILD (from rev 260528, 
libssh2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:24:44 UTC (rev 260529)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez  
+# Contributor: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+
+pkgname=libssh2
+pkgver=1.7.0
+pkgrel=2
+pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
+url="http://www.libssh2.org/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl')
+makedepends=('zlib')
+provides=('libssh2.so')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
+md5sums=('b01662a210e94cccf2f76094db7dac5c'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:32:47
  Author: foutrelis
Revision: 164219

OpenSSL 1.0.2g rebuild

Modified:
  luasec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:32:44 UTC (rev 164218)
+++ PKGBUILD2016-03-02 18:32:47 UTC (rev 164219)
@@ -6,7 +6,7 @@
 pkgbase=luasec
 pkgname=(lua-sec lua51-sec lua52-sec)
 pkgver=0.5
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:32:44
  Author: fyan
Revision: 164218

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

Added:
  john/repos/community-staging-i686/
  john/repos/community-staging-i686/PKGBUILD
(from rev 164216, john/trunk/PKGBUILD)
  john/repos/community-staging-i686/john.install
(from rev 164216, john/trunk/john.install)
  john/repos/community-staging-i686/params.h.patch
(from rev 164216, john/trunk/params.h.patch)
  john/repos/community-staging-x86_64/
  john/repos/community-staging-x86_64/PKGBUILD
(from rev 164217, john/trunk/PKGBUILD)
  john/repos/community-staging-x86_64/john.install
(from rev 164217, john/trunk/john.install)
  john/repos/community-staging-x86_64/params.h.patch
(from rev 164217, john/trunk/params.h.patch)

-+
 community-staging-i686/PKGBUILD |  131 ++
 community-staging-i686/john.install |   10 ++
 community-staging-i686/params.h.patch   |   13 ++
 community-staging-x86_64/PKGBUILD   |  131 ++
 community-staging-x86_64/john.install   |   10 ++
 community-staging-x86_64/params.h.patch |   13 ++
 6 files changed, 308 insertions(+)

Copied: john/repos/community-staging-i686/PKGBUILD (from rev 164216, 
john/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:32:44 UTC (rev 164218)
@@ -0,0 +1,131 @@
+# Maintainer: Thorsten Töpper 
+# Contributor: Andrea Scarpino 
+# Contributor: Dale Blount 
+# Contributor: Tom Newsom 
+# Contributor: Michal Krenek 
+
+pkgname=john
+pkgver=1.7.9
+pkgrel=9
+_jumbover=7
+pkgdesc="John The Ripper - A fast password cracker (jumbo-$_jumbover included)"
+arch=('i686' 'x86_64')
+url="http://www.openwall.com/$pkgname/;
+license=('GPL2' 'custom')
+depends=('openssl')
+optdepends=("perl: for executing some of the scripts at /usr/share/john"
+"ruby: for executing some of the scripts at /usr/share/john"
+"python: for executing some of the scripts at /usr/share/john")
+backup=('etc/john/john.conf')
+install=john.install
+source=(http://www.openwall.com/$pkgname/g/$pkgname-$pkgver.tar.bz2
+http://www.openwall.com/john/g/john-$pkgver-jumbo-$_jumbover.diff.gz
+ftp://ftp.kfki.hu/pub/packages/security/ssh/ossh/libdes-4.04b.tar.gz
+params.h.patch)
+md5sums=('45f54fc59386ecd67daaef9f19781d93'
+ 'b953fcb7f743eeeb5f938a28c352b8ef'
+ 'c8d5c69f86c2eedb485583b0305284a1'
+ 'f69ed632eba8fb9e45847a4b4a323787')
+
+build() {
+   # jumbo patch
+   cd ${srcdir}/$pkgname-$pkgver
+   patch -p1 < ${srcdir}/$pkgname-$pkgver-jumbo-$_jumbover.diff
+   cd ${srcdir}/john-$pkgver/src/
+
+   # patch default params
+   patch -p0 < ${srcdir}/params.h.patch
+   if [ "$CARCH" == "x86_64" ]; then
+   sed -i 's|CFLAGS = -c -Wall -O2|CFLAGS = -c -Wall -O2 -march=x86-64 
-DJOHN_SYSTEMWIDE=1|' Makefile
+   sed -i 's|^LDFLAGS =\(.*\)|LDFLAGS =\1 -lm|' Makefile
+   sed -i -e 's|-m486||g' Makefile
+ else sed -i 's|CFLAGS = -c -Wall -O2|CFLAGS = -c -Wall -O2 
-march=i686 -DJOHN_SYSTEMWIDE=1|' Makefile
+   fi
+   sed -i 's|LIBS = -ldes|LIBS = -ldes -Ldes|' Makefile
+#  sed -i 's|#include |#include "des/des.h"|' KRB5_fmt.c
+   sed -i 's|#include |#include "des/des.h"|' KRB5_std.h
+
+   # enable OMP
+   sed -i 's|#OMPFLAGS = -fopenmp$|OMPFLAGS = -fopenmp|' Makefile
+
+   # build john
+   if [ "$CARCH" == "x86_64" ]; then
+   make linux-x86-64
+ else make linux-x86-mmx
+   fi
+}
+
+package() {
+   # config file
+   sed -i 's|$JOHN/john.local.conf|/etc/john/john.local.conf|g' 
${srcdir}/john-$pkgver/run/john.conf
+   sed -i 's|$JOHN|/usr/share/john|g' ${srcdir}/john-$pkgver/run/john.conf
+   install -Dm644 ${srcdir}/john-$pkgver/run/john.conf 
${pkgdir}/etc/john/john.conf
+
+   # docs
+   install -d ${pkgdir}/usr/share/doc/john
+   install -m644 ${srcdir}/john-$pkgver/doc/* ${pkgdir}/usr/share/doc/john/
+   install -Dm644 ${srcdir}/john-$pkgver/doc/LICENSE 
${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+
+   # install password list, charset files
+   install -d ${pkgdir}/usr/share/john/
+   install -m644 ${srcdir}/${pkgname}-${pkgver}/run/password.lst 
${pkgdir}/usr/share/john/
+   install -m644 ${srcdir}/${pkgname}-${pkgver}/run/dictionary.rfc2865 
${pkgdir}/usr/share/john/
+   install -m644 ${srcdir}/${pkgname}-${pkgver}/run/stats 
${pkgdir}/usr/share/john/
+   install -m644 
${srcdir}/${pkgname}-${pkgver}/run/{all,alnum,alpha,digits,lanman}.chr \
+   ${pkgdir}/usr/share/john/
+   install -m644 

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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:32:07
  Author: fyan
Revision: 164215

OpenSSL 1.0.2g rebuild

Modified:
  john/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:31:46 UTC (rev 164214)
+++ PKGBUILD2016-03-02 18:32:07 UTC (rev 164215)
@@ -6,7 +6,7 @@
 
 pkgname=john
 pkgver=1.7.9
-pkgrel=8
+pkgrel=9
 _jumbover=7
 pkgdesc="John The Ripper - A fast password cracker (jumbo-$_jumbover included)"
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Pierre Schmitz
Date: Wednesday, March 2, 2016 @ 19:32:06
  Author: pierre
Revision: 260542

Fix source location

Modified:
  lynx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:30:47 UTC (rev 260541)
+++ PKGBUILD2016-03-02 18:32:06 UTC (rev 260542)
@@ -13,8 +13,8 @@
 license=('GPL')
 depends=('openssl' 'libidn')
 backup=('etc/lynx.cfg')
-source=("http://lynx.isc.org/current/${pkgname}${_relver}.tar.bz2;
-"http://lynx.isc.org/current/${pkgname}${_relver}.tar.bz2.asc;)
+source=("http://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2;
+
"http://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2.asc;)
 md5sums=('b231c2aa34dfe7ca25681ef4e55ee7e8'
  'SKIP')
 validpgpkeys=('0AFD1FFEEA2EA063B959ACDA5DDF8FB7688E31A6')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:32:19
  Author: foutrelis
Revision: 164217

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

Added:
  stunnel/repos/community-staging-i686/
  stunnel/repos/community-staging-i686/Makefile.patch
(from rev 164216, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-staging-i686/PKGBUILD
(from rev 164216, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-staging-i686/stunnel.install
(from rev 164216, stunnel/trunk/stunnel.install)
  stunnel/repos/community-staging-i686/stunnel.tmpfiles.conf
(from rev 164216, stunnel/trunk/stunnel.tmpfiles.conf)
  stunnel/repos/community-staging-x86_64/
  stunnel/repos/community-staging-x86_64/Makefile.patch
(from rev 164216, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-staging-x86_64/PKGBUILD
(from rev 164216, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-staging-x86_64/stunnel.install
(from rev 164216, stunnel/trunk/stunnel.install)
  stunnel/repos/community-staging-x86_64/stunnel.tmpfiles.conf
(from rev 164216, stunnel/trunk/stunnel.tmpfiles.conf)

+
 community-staging-i686/Makefile.patch  |   12 +
 community-staging-i686/PKGBUILD|   52 +++
 community-staging-i686/stunnel.install |   20 
 community-staging-i686/stunnel.tmpfiles.conf   |1 
 community-staging-x86_64/Makefile.patch|   12 +
 community-staging-x86_64/PKGBUILD  |   52 +++
 community-staging-x86_64/stunnel.install   |   20 
 community-staging-x86_64/stunnel.tmpfiles.conf |1 
 8 files changed, 170 insertions(+)

Copied: stunnel/repos/community-staging-i686/Makefile.patch (from rev 164216, 
stunnel/trunk/Makefile.patch)
===
--- community-staging-i686/Makefile.patch   (rev 0)
+++ community-staging-i686/Makefile.patch   2016-03-02 18:32:19 UTC (rev 
164217)
@@ -0,0 +1,12 @@
+--- tools/Makefile.in  2010-03-31 04:45:09.0 -0500
 tools/Makefile.in  2010-04-11 17:17:41.0 -0500
+@@ -334,8 +334,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-confDATA install-data-local \
+-  install-examplesDATA
++install-data-am: install-confDATA install-examplesDATA
+ 
+ install-dvi: install-dvi-am
+ 

Copied: stunnel/repos/community-staging-i686/PKGBUILD (from rev 164216, 
stunnel/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:32:19 UTC (rev 164217)
@@ -0,0 +1,52 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Kaiting Chen 
+# Contributor: Daniel J Griffiths 
+# Contributor: Kevin Piche 
+
+pkgname=stunnel
+pkgver=5.30
+pkgrel=3
+pkgdesc="A program that allows you to encrypt arbitrary TCP connections inside 
SSL"
+arch=('i686' 'x86_64')
+url="https://www.stunnel.org/;
+license=('GPL')
+depends=('openssl')
+install=$pkgname.install
+source=("https://www.stunnel.org/downloads/archive/5.x/$pkgname-$pkgver.tar.gz"{,.asc}
+'Makefile.patch'
+'stunnel.tmpfiles.conf')
+md5sums=('7bbf27296a83c0b752f6bb6d1b750b19'
+ 'SKIP'
+ '579f198ecb90a42fcbfd8a4e48006264'
+ '2e065a39998e57727ee79887bbd1751e')
+validpgpkeys=('AC915EA30645D9D3D4DAE4FEB1048932DD33') # Michał Trojnara
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # don't create a certificate...
+  patch -p0 <"$srcdir/Makefile.patch"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-ipv6 \
+--disable-libwrap
+
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 tools/stunnel.conf 
"$pkgdir/etc/stunnel/stunnel-openssl.conf-sample"
+  install -Dm644 tools/stunnel.service 
"$pkgdir/usr/lib/systemd/system/stunnel.service"
+  install -Dm644 "$srcdir/stunnel.tmpfiles.conf" 
"$pkgdir/usr/lib/tmpfiles.d/stunnel.conf"
+
+  sed -e "s:/usr/var/lib/stunnel/:/var/run/stunnel:g" \
+  -e "s:/usr/etc/stunnel/:/etc/stunnel/:g" \
+  -e "s:no\(body\|group\):stunnel:g" \
+  -i "$pkgdir/etc/stunnel/stunnel.conf-sample"
+}

Copied: stunnel/repos/community-staging-i686/stunnel.install (from rev 164216, 
stunnel/trunk/stunnel.install)
===
--- community-staging-i686/stunnel.install  (rev 0)
+++ community-staging-i686/stunnel.install  2016-03-02 18:32:19 UTC (rev 
164217)
@@ -0,0 +1,20 @@
+post_install() {
+  # add stunnel group
+  if ! getent group stunnel >/dev/null 2>&1; then
+groupadd -g 16 stunnel
+  fi
+
+  # add stunnel user
+  if ! getent passwd stunnel >/dev/null 2>&1; then
+

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:11:18
  Author: foutrelis
Revision: 260514

OpenSSL 1.0.2g rebuild

Modified:
  libshout/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 17:54:29 UTC (rev 260513)
+++ PKGBUILD2016-03-02 18:11:18 UTC (rev 260514)
@@ -5,7 +5,7 @@
 
 pkgname=libshout
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Library for accessing a shoutcast/icecast server"
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:11:25
  Author: foutrelis
Revision: 260515

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

Added:
  libshout/repos/staging-i686/
  libshout/repos/staging-i686/PKGBUILD
(from rev 260514, libshout/trunk/PKGBUILD)
  libshout/repos/staging-x86_64/
  libshout/repos/staging-x86_64/PKGBUILD
(from rev 260514, libshout/trunk/PKGBUILD)

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

Copied: libshout/repos/staging-i686/PKGBUILD (from rev 260514, 
libshout/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:11:25 UTC (rev 260515)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: arjan 
+# Contributor: Jason Chu 
+
+pkgname=libshout
+pkgver=2.4.1
+pkgrel=2
+epoch=1
+pkgdesc="Library for accessing a shoutcast/icecast server"
+arch=('i686' 'x86_64')
+depends=('libvorbis' 'libtheora' 'speex' 'openssl')
+url="http://www.icecast.org/;
+options=('!emptydirs')
+license=('LGPL')
+source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('89cebf8cb0197f639cde69c95177fe47')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: libshout/repos/staging-x86_64/PKGBUILD (from rev 260514, 
libshout/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:11:25 UTC (rev 260515)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: arjan 
+# Contributor: Jason Chu 
+
+pkgname=libshout
+pkgver=2.4.1
+pkgrel=2
+epoch=1
+pkgdesc="Library for accessing a shoutcast/icecast server"
+arch=('i686' 'x86_64')
+depends=('libvorbis' 'libtheora' 'speex' 'openssl')
+url="http://www.icecast.org/;
+options=('!emptydirs')
+license=('LGPL')
+source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('89cebf8cb0197f639cde69c95177fe47')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:11:53
  Author: foutrelis
Revision: 164168

OpenSSL 1.0.2g rebuild

Modified:
  keepalived/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:10:56 UTC (rev 164167)
+++ PKGBUILD2016-03-02 18:11:53 UTC (rev 164168)
@@ -4,7 +4,7 @@
 
 pkgname=keepalived
 pkgver=1.2.19
-pkgrel=1
+pkgrel=2
 pkgdesc='Failover and monitoring daemon for LVS clusters'
 arch=('i686' 'x86_64')
 url='http://www.keepalived.org/'


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:12:01
  Author: fyan
Revision: 164169

OpenSSL 1.0.2g rebuild

Modified:
  uboot-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:11:53 UTC (rev 164168)
+++ PKGBUILD2016-03-02 18:12:01 UTC (rev 164169)
@@ -5,7 +5,7 @@
 
 pkgname=uboot-tools
 pkgver=2016.01
-pkgrel=1
+pkgrel=2
 pkgdesc='U-Boot bootloader utility tools'
 arch=(i686 x86_64)
 url='http://www.denx.de/wiki/U-Boot/WebHome'


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:19:28
  Author: foutrelis
Revision: 164191

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

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

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

Copied: isync/repos/community-staging-i686/PKGBUILD (from rev 164190, 
isync/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:19:28 UTC (rev 164191)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Mark Pustjens 
+# Contributor: Geoffroy Carrier 
+# Contributor: Giorgio Lando 
+# Contributor: Leslie P. Polzer 
+
+pkgname=isync
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="IMAP and MailDir mailbox synchronizer"
+arch=('i686' 'x86_64')
+url="http://isync.sourceforge.net;
+license=('GPL2')
+depends=('openssl' 'libsasl')
+source=(http://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz)
+md5sums=('7ba1a07c7b487a3ab5fef54d0071f1dd')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Copied: isync/repos/community-staging-x86_64/PKGBUILD (from rev 164190, 
isync/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:19:28 UTC (rev 164191)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Mark Pustjens 
+# Contributor: Geoffroy Carrier 
+# Contributor: Giorgio Lando 
+# Contributor: Leslie P. Polzer 
+
+pkgname=isync
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="IMAP and MailDir mailbox synchronizer"
+arch=('i686' 'x86_64')
+url="http://isync.sourceforge.net;
+license=('GPL2')
+depends=('openssl' 'libsasl')
+source=(http://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz)
+md5sums=('7ba1a07c7b487a3ab5fef54d0071f1dd')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:18:45
  Author: foutrelis
Revision: 260522

OpenSSL 1.0.2g rebuild

Modified:
  libvncserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:15:24 UTC (rev 260521)
+++ PKGBUILD2016-03-02 18:18:45 UTC (rev 260522)
@@ -5,7 +5,7 @@
 
 pkgname=libvncserver
 pkgver=0.9.10
-pkgrel=3
+pkgrel=4
 pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
 arch=('i686' 'x86_64')
 url="https://libvnc.github.io/;


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:20:00
  Author: foutrelis
Revision: 260524

OpenSSL 1.0.2g rebuild

Modified:
  x11vnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:18:52 UTC (rev 260523)
+++ PKGBUILD2016-03-02 18:20:00 UTC (rev 260524)
@@ -4,7 +4,7 @@
 
 pkgname=x11vnc
 pkgver=0.9.13
-pkgrel=6
+pkgrel=7
 pkgdesc='VNC server for real X displays'
 url='http://www.karlrunge.com/x11vnc/'
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:20:07
  Author: foutrelis
Revision: 260525

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

Added:
  x11vnc/repos/staging-i686/
  x11vnc/repos/staging-i686/PKGBUILD
(from rev 260524, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/staging-i686/service
(from rev 260524, x11vnc/trunk/service)
  x11vnc/repos/staging-x86_64/
  x11vnc/repos/staging-x86_64/PKGBUILD
(from rev 260524, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/staging-x86_64/service
(from rev 260524, x11vnc/trunk/service)

-+
 staging-i686/PKGBUILD   |   33 +
 staging-i686/service|7 +++
 staging-x86_64/PKGBUILD |   33 +
 staging-x86_64/service  |7 +++
 4 files changed, 80 insertions(+)

Copied: x11vnc/repos/staging-i686/PKGBUILD (from rev 260524, 
x11vnc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:20:07 UTC (rev 260525)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: damir 
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=7
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: GUI support'
+'net-tools: -auth guess'
+'xf86-video-dummy: Xdummy script')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+  '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install x11vnc/misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
+   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+   rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}

Copied: x11vnc/repos/staging-i686/service (from rev 260524, 
x11vnc/trunk/service)
===
--- staging-i686/service(rev 0)
+++ staging-i686/service2016-03-02 18:20:07 UTC (rev 260525)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc

Copied: x11vnc/repos/staging-x86_64/PKGBUILD (from rev 260524, 
x11vnc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:20:07 UTC (rev 260525)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: damir 
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=7
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: GUI support'
+'net-tools: -auth guess'
+'xf86-video-dummy: Xdummy script')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+  '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install x11vnc/misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
+   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+   rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}

Copied: x11vnc/repos/staging-x86_64/service (from rev 260524, 
x11vnc/trunk/service)
===
--- staging-x86_64/service  (rev 0)
+++ staging-x86_64/service  2016-03-02 18:20:07 UTC (rev 260525)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:23:26
  Author: foutrelis
Revision: 164196

OpenSSL 1.0.2g rebuild

Modified:
  ngircd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:22:21 UTC (rev 164195)
+++ PKGBUILD2016-03-02 18:23:26 UTC (rev 164196)
@@ -5,7 +5,7 @@
 
 pkgname=ngircd
 pkgver=23
-pkgrel=1
+pkgrel=2
 pkgdesc="Next Generation IRC Daemon"
 arch=('x86_64' 'i686')
 backup=(etc/ngircd.conf)


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:23:26
  Author: foutrelis
Revision: 260527

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

Added:
  freetds/repos/staging-i686/
  freetds/repos/staging-i686/PKGBUILD
(from rev 260526, freetds/trunk/PKGBUILD)
  freetds/repos/staging-x86_64/
  freetds/repos/staging-x86_64/PKGBUILD
(from rev 260526, freetds/trunk/PKGBUILD)

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

Copied: freetds/repos/staging-i686/PKGBUILD (from rev 260526, 
freetds/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:23:26 UTC (rev 260527)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:
+
+pkgname=freetds
+pkgver=0.95.79
+pkgrel=2
+pkgdesc='Library for accessing Sybase and MS SQL Server databases'
+url='http://www.freetds.org'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('openssl' 'unixodbc')
+backup=('etc/freetds/freetds.conf'
+'etc/freetds/locales.conf'
+'etc/freetds/pool.conf')
+source=("ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2;)
+md5sums=('bbc43cdbf1778dc354c191eda4c6ee70')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc/freetds --enable-msdblib \
+--with-tdsver=7.0 --with-unixodbc=/usr --with-openssl
+  make 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: freetds/repos/staging-x86_64/PKGBUILD (from rev 260526, 
freetds/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:23:26 UTC (rev 260527)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:
+
+pkgname=freetds
+pkgver=0.95.79
+pkgrel=2
+pkgdesc='Library for accessing Sybase and MS SQL Server databases'
+url='http://www.freetds.org'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('openssl' 'unixodbc')
+backup=('etc/freetds/freetds.conf'
+'etc/freetds/locales.conf'
+'etc/freetds/pool.conf')
+source=("ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2;)
+md5sums=('bbc43cdbf1778dc354c191eda4c6ee70')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc/freetds --enable-msdblib \
+--with-tdsver=7.0 --with-unixodbc=/usr --with-openssl
+  make 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-03-02 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 19:24:10
  Author: fyan
Revision: 260528

OpenSSL 1.0.2g rebuild

Modified:
  libssh2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:23:26 UTC (rev 260527)
+++ PKGBUILD2016-03-02 18:24:10 UTC (rev 260528)
@@ -7,7 +7,7 @@
 
 pkgname=libssh2
 pkgver=1.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
 url="http://www.libssh2.org/;
 arch=('i686' 'x86_64')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:28:27
  Author: foutrelis
Revision: 164209

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

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

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

Copied: fdm/repos/community-staging-i686/PKGBUILD (from rev 164208, 
fdm/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:28:27 UTC (rev 164209)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Gaetan Bisson 
+# Contributor: Jeff Mickey 
+# Contributor: Grigorios Bouzakis 
+
+pkgname=fdm
+pkgver=1.9
+pkgrel=2
+pkgdesc='Program to fetch and deliver mail'
+url='https://github.com/nicm/fdm'
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'tdb' 'zlib')
+source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz;)
+sha1sums=('ee48c31941bf237b0262c0170c90852514168a85')
+
+options=('!makeflags')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+   sed '3,17p;d' fdm.c > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+   install -d "${pkgdir}/usr/share/doc/${pkgname}"
+   cp -a examples "${pkgdir}/usr/share/doc/${pkgname}"
+}

Copied: fdm/repos/community-staging-x86_64/PKGBUILD (from rev 164208, 
fdm/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:28:27 UTC (rev 164209)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Gaetan Bisson 
+# Contributor: Jeff Mickey 
+# Contributor: Grigorios Bouzakis 
+
+pkgname=fdm
+pkgver=1.9
+pkgrel=2
+pkgdesc='Program to fetch and deliver mail'
+url='https://github.com/nicm/fdm'
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'tdb' 'zlib')
+source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz;)
+sha1sums=('ee48c31941bf237b0262c0170c90852514168a85')
+
+options=('!makeflags')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+   sed '3,17p;d' fdm.c > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+   install -d "${pkgdir}/usr/share/doc/${pkgname}"
+   cp -a examples "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:28:08
  Author: bluewind
Revision: 260538

OpenSSL 1.0.2g rebuild

Modified:
  wpa_supplicant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:27:14 UTC (rev 260537)
+++ PKGBUILD2016-03-02 18:28:08 UTC (rev 260538)
@@ -3,7 +3,7 @@
 
 pkgname=wpa_supplicant
 pkgver=2.5
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A utility providing key negotiation for WPA wireless networks"
 url="http://hostap.epitest.fi/wpa_supplicant;


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:28:14
  Author: bluewind
Revision: 260539

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

Added:
  wpa_supplicant/repos/staging-i686/
  
wpa_supplicant/repos/staging-i686/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
(from rev 260538, 
wpa_supplicant/trunk/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch)
  wpa_supplicant/repos/staging-i686/PKGBUILD
(from rev 260538, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-i686/config
(from rev 260538, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-x86_64/
  
wpa_supplicant/repos/staging-x86_64/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
(from rev 260538, 
wpa_supplicant/trunk/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch)
  wpa_supplicant/repos/staging-x86_64/PKGBUILD
(from rev 260538, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-x86_64/config
(from rev 260538, wpa_supplicant/trunk/config)

--+
 
staging-i686/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
   |   13 
 staging-i686/PKGBUILD  
  |   59 +
 staging-i686/config
  |  514 ++
 
staging-x86_64/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
 |   13 
 staging-x86_64/PKGBUILD
  |   59 +
 staging-x86_64/config  
  |  514 ++
 6 files changed, 1172 insertions(+)

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


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:27:38
  Author: bluewind
Revision: 164207

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

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

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

Copied: encfs/repos/community-staging-i686/PKGBUILD (from rev 164206, 
encfs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:27:38 UTC (rev 164207)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Sven Kauber, 
+# Contributor: Daniel J Griffiths 
+
+pkgname=encfs
+pkgver=1.8.1
+pkgrel=6
+pkgdesc='Encrypted filesystem in user-space'
+arch=('i686' 'x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('rlog' 'openssl' 'fuse' 'boost-libs')
+makedepends=('boost' 'autoconf')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
+
+build(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  autoreconf -if
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: encfs/repos/community-staging-x86_64/PKGBUILD (from rev 164206, 
encfs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:27:38 UTC (rev 164207)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Sven Kauber, 
+# Contributor: Daniel J Griffiths 
+
+pkgname=encfs
+pkgver=1.8.1
+pkgrel=6
+pkgdesc='Encrypted filesystem in user-space'
+arch=('i686' 'x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('rlog' 'openssl' 'fuse' 'boost-libs')
+makedepends=('boost' 'autoconf')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
+
+build(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  autoreconf -if
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:28:20
  Author: foutrelis
Revision: 164208

OpenSSL 1.0.2g rebuild

Modified:
  fdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:27:38 UTC (rev 164207)
+++ PKGBUILD2016-03-02 18:28:20 UTC (rev 164208)
@@ -6,7 +6,7 @@
 
 pkgname=fdm
 pkgver=1.9
-pkgrel=1
+pkgrel=2
 pkgdesc='Program to fetch and deliver mail'
 url='https://github.com/nicm/fdm'
 license=('BSD')


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:32:55
  Author: foutrelis
Revision: 164220

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

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

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

Copied: luasec/repos/community-staging-i686/PKGBUILD (from rev 164219, 
luasec/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:32:55 UTC (rev 164220)
@@ -0,0 +1,86 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Dwayne Bent 
+# Contributor: Paul-Sebastian Manole 
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec lua52-sec)
+pkgver=0.5
+pkgrel=5
+epoch=1
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
+options=('!buildflags')
+source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;
+
lua53_compat.patch::https://github.com/brunoos/luasec/commit/9cb5220759aabedc0b4639c1a169b9efc5994a57.patch)
+md5sums=('0518f4524f399f33424c6f450e1d06db'
+ 'dd4b2a579683d1084a94856b6505b95f')
+
+prepare() {
+  cd luasec-luasec-$pkgver
+  patch -p1 < ../lua53_compat.patch
+  cd ..
+
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
+}
+
+build() {
+  msg2 'Building with lua 5.3'
+  cd "$srcdir"/luasec-luasec-$pkgver
+  make linux
+
+  msg2 'Building with lua 5.1'
+  cd "$srcdir"/luasec-luasec-$pkgver-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include "lua5.1/lua.h"|g' \
+-e 's|include .lualib.h.|include "lua5.1/lualib.h"|g' \
+-e 's|include .luaconf.h.|include "lua5.1/luaconf.h"|g' \
+-e 's|include .lauxlib.h.|include "lua5.1/lauxlib.h"|g' \
+{} \;
+  make linux
+
+  msg2 'Building with lua 5.2'
+  cd "$srcdir"/luasec-luasec-$pkgver-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include "lua5.2/lua.h"|g' \
+-e 's|include .lualib.h.|include "lua5.2/lualib.h"|g' \
+-e 's|include .luaconf.h.|include "lua5.2/luaconf.h"|g' \
+-e 's|include .lauxlib.h.|include "lua5.2/lauxlib.h"|g' \
+{} \;
+  make linux
+}
+
+package_lua-sec() {
+  depends=('openssl' 'lua' 'lua-socket')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.3"
+  cd luasec-luasec-$pkgver
+  make LUACPATH="$pkgdir/usr/lib/lua/5.3" LUAPATH="$pkgdir/usr/share/lua/5.3" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-sec() {
+  depends=('openssl' 'lua51' 'lua51-socket')
+  conflicts=('luasec')
+  replaces=('luasec')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.1"
+  cd luasec-luasec-$pkgver-51
+  make LUACPATH="$pkgdir/usr/lib/lua/5.1" LUAPATH="$pkgdir/usr/share/lua/5.1" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-sec() {
+  depends=('openssl' 'lua52' 'lua52-socket')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.2"
+  cd luasec-luasec-$pkgver-52
+  make LUACPATH="$pkgdir/usr/lib/lua/5.2" LUAPATH="$pkgdir/usr/share/lua/5.2" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luasec/repos/community-staging-x86_64/PKGBUILD (from rev 164219, 
luasec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:32:55 UTC (rev 164220)
@@ -0,0 +1,86 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Dwayne Bent 
+# Contributor: Paul-Sebastian Manole 
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec lua52-sec)
+pkgver=0.5
+pkgrel=5
+epoch=1
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
+options=('!buildflags')
+source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;
+
lua53_compat.patch::https://github.com/brunoos/luasec/commit/9cb5220759aabedc0b4639c1a169b9efc5994a57.patch)

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:35:16
  Author: foutrelis
Revision: 260546

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

Added:
  lynx/repos/staging-i686/
  lynx/repos/staging-i686/PKGBUILD
(from rev 260545, lynx/trunk/PKGBUILD)
  lynx/repos/staging-x86_64/
  lynx/repos/staging-x86_64/PKGBUILD
(from rev 260545, lynx/trunk/PKGBUILD)

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

Copied: lynx/repos/staging-i686/PKGBUILD (from rev 260545, lynx/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:35:16 UTC (rev 260546)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Tom Newsom 
+
+pkgname=lynx
+pkgver=2.8.8
+_relver=${pkgver}rel.2
+pkgrel=4
+pkgdesc="A text browser for the World Wide Web"
+url="http://lynx.isc.org/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('openssl' 'libidn')
+backup=('etc/lynx.cfg')
+source=("http://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2;
+
"http://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2.asc;)
+md5sums=('b231c2aa34dfe7ca25681ef4e55ee7e8'
+ 'SKIP')
+validpgpkeys=('0AFD1FFEEA2EA063B959ACDA5DDF8FB7688E31A6')
+
+build() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-ssl=/usr \
+--enable-nls \
+--enable-ipv6 \
+--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  make DESTDIR=${pkgdir} install
+
+  # FS#20404 - points to local help
+  sed -i -e 
"s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|"
 ${pkgdir}/etc/lynx.cfg
+
+  install -d ${pkgdir}/usr/share/doc/lynx
+  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
+}

Copied: lynx/repos/staging-x86_64/PKGBUILD (from rev 260545, 
lynx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:35:16 UTC (rev 260546)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Tom Newsom 
+
+pkgname=lynx
+pkgver=2.8.8
+_relver=${pkgver}rel.2
+pkgrel=4
+pkgdesc="A text browser for the World Wide Web"
+url="http://lynx.isc.org/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('openssl' 'libidn')
+backup=('etc/lynx.cfg')
+source=("http://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2;
+
"http://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2.asc;)
+md5sums=('b231c2aa34dfe7ca25681ef4e55ee7e8'
+ 'SKIP')
+validpgpkeys=('0AFD1FFEEA2EA063B959ACDA5DDF8FB7688E31A6')
+
+build() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-ssl=/usr \
+--enable-nls \
+--enable-ipv6 \
+--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  make DESTDIR=${pkgdir} install
+
+  # FS#20404 - points to local help
+  sed -i -e 
"s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|"
 ${pkgdir}/etc/lynx.cfg
+
+  install -d ${pkgdir}/usr/share/doc/lynx
+  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:35:33
  Author: foutrelis
Revision: 164222

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

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

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

Copied: libesmtp/repos/community-staging-i686/PKGBUILD (from rev 164221, 
libesmtp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:35:33 UTC (rev 164222)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: Roman Kyrylych 
+# Contributor: Tom Newsom 
+
+pkgname=libesmtp
+pkgver=1.0.6
+pkgrel=4
+pkgdesc='A library to manage posting mail to a preconfigured MTA.'
+arch=('i686' 'x86_64')
+url='http://www.stafford.uklinux.net/libesmtp/'
+license=('LGPL')
+depends=('openssl')
+source=("http://www.stafford.uklinux.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('bf3915e627fd8f35524a8fdfeed979c8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: libesmtp/repos/community-staging-x86_64/PKGBUILD (from rev 164221, 
libesmtp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 18:35:33 UTC (rev 164222)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: Roman Kyrylych 
+# Contributor: Tom Newsom 
+
+pkgname=libesmtp
+pkgver=1.0.6
+pkgrel=4
+pkgdesc='A library to manage posting mail to a preconfigured MTA.'
+arch=('i686' 'x86_64')
+url='http://www.stafford.uklinux.net/libesmtp/'
+license=('LGPL')
+depends=('openssl')
+source=("http://www.stafford.uklinux.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('bf3915e627fd8f35524a8fdfeed979c8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:35:26
  Author: foutrelis
Revision: 164221

OpenSSL 1.0.2g rebuild

Modified:
  libesmtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:32:55 UTC (rev 164220)
+++ PKGBUILD2016-03-02 18:35:26 UTC (rev 164221)
@@ -5,7 +5,7 @@
 
 pkgname=libesmtp
 pkgver=1.0.6
-pkgrel=3
+pkgrel=4
 pkgdesc='A library to manage posting mail to a preconfigured MTA.'
 arch=('i686' 'x86_64')
 url='http://www.stafford.uklinux.net/libesmtp/'


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:36:00
  Author: bluewind
Revision: 164223

OpenSSL 1.0.2g rebuild

Modified:
  pound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:35:33 UTC (rev 164222)
+++ PKGBUILD2016-03-02 18:36:00 UTC (rev 164223)
@@ -5,7 +5,7 @@
 
 pkgname=pound
 pkgver=2.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A reverse proxy, load balancer, and SSL wrapper"
 arch=('i686' 'x86_64')
 url="http://www.apsis.ch/pound/index_html;


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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:36:07
  Author: bluewind
Revision: 164224

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

Added:
  pound/repos/community-staging-i686/
  pound/repos/community-staging-i686/ChangeLog
(from rev 164223, pound/trunk/ChangeLog)
  pound/repos/community-staging-i686/PKGBUILD
(from rev 164223, pound/trunk/PKGBUILD)
  pound/repos/community-staging-i686/pound.cfg
(from rev 164223, pound/trunk/pound.cfg)
  pound/repos/community-staging-i686/pound.runit
(from rev 164223, pound/trunk/pound.runit)
  pound/repos/community-staging-i686/pound.service
(from rev 164223, pound/trunk/pound.service)
  pound/repos/community-staging-x86_64/
  pound/repos/community-staging-x86_64/ChangeLog
(from rev 164223, pound/trunk/ChangeLog)
  pound/repos/community-staging-x86_64/PKGBUILD
(from rev 164223, pound/trunk/PKGBUILD)
  pound/repos/community-staging-x86_64/pound.cfg
(from rev 164223, pound/trunk/pound.cfg)
  pound/repos/community-staging-x86_64/pound.runit
(from rev 164223, pound/trunk/pound.runit)
  pound/repos/community-staging-x86_64/pound.service
(from rev 164223, pound/trunk/pound.service)

+
 community-staging-i686/ChangeLog   |   22 
 community-staging-i686/PKGBUILD|   41 ++
 community-staging-i686/pound.cfg   |   85 +++
 community-staging-i686/pound.runit |   23 
 community-staging-i686/pound.service   |   10 +++
 community-staging-x86_64/ChangeLog |   22 
 community-staging-x86_64/PKGBUILD  |   41 ++
 community-staging-x86_64/pound.cfg |   85 +++
 community-staging-x86_64/pound.runit   |   23 
 community-staging-x86_64/pound.service |   10 +++
 10 files changed, 362 insertions(+)

Copied: pound/repos/community-staging-i686/ChangeLog (from rev 164223, 
pound/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2016-03-02 18:36:07 UTC (rev 164224)
@@ -0,0 +1,22 @@
+
+2009-03-22  Douglas Soares de Andrade  
+
+   * Updated for i686: 2.4.4
+   * Fixed an issue with the rc.d pound script
+
+2008-06-22  Mateusz Herych 
+
+   * Adding for x86_64 community - 2.4.3
+
+2008-06-22  Douglas Soares de Andrade  
+
+   * Adding for i686 community - 2.4.3
+
+2008-05-22  Mateusz Herych 
+
+   * Adding to community for x86_64
+
+2008-05-21  Douglas Soares de Andrade  
+
+   * Adding to community for i686
+

Copied: pound/repos/community-staging-i686/PKGBUILD (from rev 164223, 
pound/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:36:07 UTC (rev 164224)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Douglas Soares de Andrade 
+# Contributor: Roberto Alsina 
+
+pkgname=pound
+pkgver=2.7
+pkgrel=2
+pkgdesc="A reverse proxy, load balancer, and SSL wrapper"
+arch=('i686' 'x86_64')
+url="http://www.apsis.ch/pound/index_html;
+license=('GPL')
+depends=('pcre' 'openssl')
+backup=(etc/pound/pound.cfg)
+source=(http://www.apsis.ch/pound/Pound-$pkgver.tgz
+   pound.runit
+   pound.service
+   pound.cfg)
+md5sums=('ec8298aa3e4aee3ffbecdc0639d7f14a'
+ '2a555ee5871a849cb1f6e6ba2ff054df'
+ 'c0d0726a96dfda0e83843362e401b3dc'
+ '8937808acd22c6391ebe4340af8df854')
+
+build() {
+  cd $srcdir/Pound-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc/pound --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $srcdir/Pound-$pkgver
+  install -d $pkgdir/usr/sbin
+  make DESTDIR=$pkgdir install 
+  chown root.root -R $pkgdir/usr
+  install -d $pkgdir/etc/sv
+  install -d $pkgdir/etc/sv/pound
+  install -m0755 $srcdir/pound.runit $pkgdir/etc/sv/pound/run
+  install -D -m0644 $srcdir/pound.cfg $pkgdir/etc/pound/pound.cfg
+  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+  rmdir $pkgdir/usr/sbin
+}

Copied: pound/repos/community-staging-i686/pound.cfg (from rev 164223, 
pound/trunk/pound.cfg)
===
--- community-staging-i686/pound.cfg(rev 0)
+++ community-staging-i686/pound.cfg2016-03-02 18:36:07 UTC (rev 164224)
@@ -0,0 +1,85 @@
+###
+## Pound configration file
+###
+##
+##
+## GLOBAL SETTINGS
+##
+## Specify the user and group Pound 

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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 20:01:48
  Author: foutrelis
Revision: 260548

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

Added:
  xmlsec/repos/staging-i686/
  xmlsec/repos/staging-i686/PKGBUILD
(from rev 260547, xmlsec/trunk/PKGBUILD)
  xmlsec/repos/staging-x86_64/
  xmlsec/repos/staging-x86_64/PKGBUILD
(from rev 260547, xmlsec/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   33 +
 staging-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: xmlsec/repos/staging-i686/PKGBUILD (from rev 260547, 
xmlsec/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 19:01:48 UTC (rev 260548)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Jan de Groot 
+# Contributor: Hussam Al-Tayeb 
+
+pkgname=xmlsec
+pkgver=1.2.20
+pkgrel=3
+pkgdesc="XML Security Library is a C library based on LibXML2"
+license=('custom')
+arch=('i686' 'x86_64')
+url="http://www.aleksey.com/xmlsec/index.html;
+depends=('libxslt' 'openssl' 'gnutls' 'nss' 'libltdl')
+source=(http://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.tar.gz)
+md5sums=('ce12af00283eb90d9281956524250d6e')
+
+build() {
+  cd ${pkgname}1-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${pkgname}1-$pkgver
+  make -k check
+}
+
+package() {
+  cd ${pkgname}1-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xmlsec/repos/staging-x86_64/PKGBUILD (from rev 260547, 
xmlsec/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 19:01:48 UTC (rev 260548)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Jan de Groot 
+# Contributor: Hussam Al-Tayeb 
+
+pkgname=xmlsec
+pkgver=1.2.20
+pkgrel=3
+pkgdesc="XML Security Library is a C library based on LibXML2"
+license=('custom')
+arch=('i686' 'x86_64')
+url="http://www.aleksey.com/xmlsec/index.html;
+depends=('libxslt' 'openssl' 'gnutls' 'nss' 'libltdl')
+source=(http://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.tar.gz)
+md5sums=('ce12af00283eb90d9281956524250d6e')
+
+build() {
+  cd ${pkgname}1-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${pkgname}1-$pkgver
+  make -k check
+}
+
+package() {
+  cd ${pkgname}1-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 20:18:34
  Author: foutrelis
Revision: 260549

OpenSSL 1.0.2g rebuild

Modified:
  irssi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 19:01:48 UTC (rev 260548)
+++ PKGBUILD2016-03-02 19:18:34 UTC (rev 260549)
@@ -4,7 +4,7 @@
 
 pkgname=irssi
 pkgver=0.8.17
-pkgrel=3
+pkgrel=4
 pkgdesc="Modular text mode IRC client with Perl scripting"
 arch=('i686' 'x86_64')
 url="http://irssi.org/;


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 20:18:42
  Author: foutrelis
Revision: 260550

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

Added:
  irssi/repos/staging-i686/
  irssi/repos/staging-i686/PKGBUILD
(from rev 260549, irssi/trunk/PKGBUILD)
  irssi/repos/staging-x86_64/
  irssi/repos/staging-x86_64/PKGBUILD
(from rev 260549, irssi/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   33 +
 staging-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: irssi/repos/staging-i686/PKGBUILD (from rev 260549, 
irssi/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 19:18:42 UTC (rev 260550)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Dan McGee 
+
+pkgname=irssi
+pkgver=0.8.17
+pkgrel=4
+pkgdesc="Modular text mode IRC client with Perl scripting"
+arch=('i686' 'x86_64')
+url="http://irssi.org/;
+license=('GPL')
+depends=('glib2' 'openssl')
+optdepends=('perl-libwww: for the scriptassist script')
+backup=('etc/irssi.conf')
+source=("http://irssi.org/files/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('ecf64be47978d89a742b435a81cb47db')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+ --with-proxy \
+ --sysconfdir=/etc \
+ --with-perl-lib=vendor
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install 
+}

Copied: irssi/repos/staging-x86_64/PKGBUILD (from rev 260549, 
irssi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 19:18:42 UTC (rev 260550)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Dan McGee 
+
+pkgname=irssi
+pkgver=0.8.17
+pkgrel=4
+pkgdesc="Modular text mode IRC client with Perl scripting"
+arch=('i686' 'x86_64')
+url="http://irssi.org/;
+license=('GPL')
+depends=('glib2' 'openssl')
+optdepends=('perl-libwww: for the scriptassist script')
+backup=('etc/irssi.conf')
+source=("http://irssi.org/files/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('ecf64be47978d89a742b435a81cb47db')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+ --with-proxy \
+ --sysconfdir=/etc \
+ --with-perl-lib=vendor
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install 
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:10:39
  Author: foutrelis
Revision: 164165

OpenSSL 1.0.2g rebuild

Modified:
  libexosip2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 18:10:33 UTC (rev 164164)
+++ PKGBUILD2016-03-02 18:10:39 UTC (rev 164165)
@@ -5,7 +5,7 @@
 pkgname=libexosip2
 epoch=1
 pkgver=4.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A library that hides the complexity of using SIP for multimedia 
session establishement"
 arch=('i686' 'x86_64')
 url="http://savannah.nongnu.org/projects/exosip/;


  1   2   3   4   >