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

2020-07-30 Thread Antonio Rojas via arch-commits
Date: Thursday, July 30, 2020 @ 07:06:30
  Author: arojas
Revision: 665873

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 665872, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 665872, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-ctrl-agent.service
(from rev 665872, kea/trunk/kea-ctrl-agent.service)
  kea/repos/community-staging-x86_64/kea-dhcp-ddns.service
(from rev 665872, kea/trunk/kea-dhcp-ddns.service)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 665872, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 665872, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 665872, kea/trunk/tmpfiles-kea.conf)

+
 PKGBUILD   |   81 +++
 fix-scripts-include-path.patch |  266 +++
 kea-ctrl-agent.service |   14 ++
 kea-dhcp-ddns.service  |   13 +
 kea-dhcp4.service  |   14 ++
 kea-dhcp6.service  |   14 ++
 tmpfiles-kea.conf  |1 
 7 files changed, 403 insertions(+)

Copied: kea/repos/community-staging-x86_64/PKGBUILD (from rev 665872, 
kea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-30 07:06:30 UTC (rev 665873)
@@ -0,0 +1,81 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: nfnty
+pkgname='kea'
+pkgver=1.5.0
+_upstreamver=1.5.0
+pkgrel=14
+pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
+arch=('x86_64')
+url='https://kea.isc.org'
+license=('MPL2')
+depends=('botan' 'boost-libs' 'log4cplus' 'mariadb-libs' 'postgresql-libs')
+makedepends=('boost'
+ 'postgresql' # Needed for some headers
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
+# Checks are disabled for now
+#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
+backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
+
+source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
+fix-scripts-include-path.patch
+tmpfiles-kea.conf
+kea-dhcp4.service
+kea-dhcp6.service
+kea-dhcp-ddns.service
+kea-ctrl-agent.service)
+sha512sums=('6d6b7407831311ebe37abce382ce77c664015ddbe3e73ec78153a00b301f98af5be52e26ad4febf5ca1e478d2c1844db4c988b241d2700d758e90b077f176ad8'
+'SKIP'
+
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
+
'702a5dc19d1ed8fbe21aa9a4c09297eff9c9a3f6f1b178af8101a655b18b70c9e1dafd032063e31b2592d276e80c9bd4d2d51d8e1f74f67931fd290be6c0'
+
'1b62dace9f9a955b21c5dd5b5466fb3a4f1d8057ad2a30ea89e222a769dc721ad2fe4913c41ec407e018b1b38ddde757e9b7b8fc12d4763ddde077a0abb0c971'
+
'8f0e8d059338c415ae322e971e243b259d9b2ef7d37b6be57b409bf5f0f3392e519c9bb94c5b548021d000b944a5da82096608cd9ff3ee58061059ad519b0068'
+
'9ab05b580f3b206d127514e158a445146a765ba4bf760daa93bcf29ec9d816dbdd08a497b5a4bba67645f4cc79b210fed8d1defa9daefc48175a654738927d31'
+
'db329fd83e458e4a77f6df8569074088bed152ffc1a188059d868d7178a6d3530efe368ce870a2e0be894f87fa0e5ba43562bdc3ad6372ddfcfedae37c90f491')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57'  # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+  'AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') # Internet Systems 
Consortium, Inc. (Signing key, 2019-2020) 
+prepare() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
+  # Also, it fallbacks to the absolute path inside the chrooted build dir,
+  # which will certainly not exist on the target system...
+  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var' \
+  --with-dhcp-mysql \
+  --with-dhcp-pgsql \
+  --enable-shell
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # Disable for now, some tests fail (for instance 

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

2020-01-27 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 28, 2020 @ 02:40:19
  Author: foutrelis
Revision: 557005

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 557004, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 557004, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-ctrl-agent.service
(from rev 557004, kea/trunk/kea-ctrl-agent.service)
  kea/repos/community-staging-x86_64/kea-dhcp-ddns.service
(from rev 557004, kea/trunk/kea-dhcp-ddns.service)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 557004, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 557004, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 557004, kea/trunk/tmpfiles-kea.conf)

+
 PKGBUILD   |   81 +++
 fix-scripts-include-path.patch |  266 +++
 kea-ctrl-agent.service |   14 ++
 kea-dhcp-ddns.service  |   13 +
 kea-dhcp4.service  |   14 ++
 kea-dhcp6.service  |   14 ++
 tmpfiles-kea.conf  |1 
 7 files changed, 403 insertions(+)

Copied: kea/repos/community-staging-x86_64/PKGBUILD (from rev 557004, 
kea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-28 02:40:19 UTC (rev 557005)
@@ -0,0 +1,81 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: nfnty
+pkgname='kea'
+pkgver=1.5.0
+_upstreamver=1.5.0
+pkgrel=13
+pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
+arch=('x86_64')
+url='https://kea.isc.org'
+license=('MPL2')
+depends=('botan' 'boost-libs' 'log4cplus' 'mariadb-libs' 'postgresql-libs')
+makedepends=('boost'
+ 'postgresql' # Needed for some headers
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
+# Checks are disabled for now
+#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
+backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
+
+source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
+fix-scripts-include-path.patch
+tmpfiles-kea.conf
+kea-dhcp4.service
+kea-dhcp6.service
+kea-dhcp-ddns.service
+kea-ctrl-agent.service)
+sha512sums=('6d6b7407831311ebe37abce382ce77c664015ddbe3e73ec78153a00b301f98af5be52e26ad4febf5ca1e478d2c1844db4c988b241d2700d758e90b077f176ad8'
+'SKIP'
+
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
+
'702a5dc19d1ed8fbe21aa9a4c09297eff9c9a3f6f1b178af8101a655b18b70c9e1dafd032063e31b2592d276e80c9bd4d2d51d8e1f74f67931fd290be6c0'
+
'1b62dace9f9a955b21c5dd5b5466fb3a4f1d8057ad2a30ea89e222a769dc721ad2fe4913c41ec407e018b1b38ddde757e9b7b8fc12d4763ddde077a0abb0c971'
+
'8f0e8d059338c415ae322e971e243b259d9b2ef7d37b6be57b409bf5f0f3392e519c9bb94c5b548021d000b944a5da82096608cd9ff3ee58061059ad519b0068'
+
'9ab05b580f3b206d127514e158a445146a765ba4bf760daa93bcf29ec9d816dbdd08a497b5a4bba67645f4cc79b210fed8d1defa9daefc48175a654738927d31'
+
'db329fd83e458e4a77f6df8569074088bed152ffc1a188059d868d7178a6d3530efe368ce870a2e0be894f87fa0e5ba43562bdc3ad6372ddfcfedae37c90f491')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57'  # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+  'AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') # Internet Systems 
Consortium, Inc. (Signing key, 2019-2020) 
+prepare() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
+  # Also, it fallbacks to the absolute path inside the chrooted build dir,
+  # which will certainly not exist on the target system...
+  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var' \
+  --with-dhcp-mysql \
+  --with-dhcp-pgsql \
+  --enable-shell
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # Disable for now, some tests fail (for 

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

2020-01-07 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 7, 2020 @ 18:14:00
  Author: arojas
Revision: 550043

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 550042, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 550042, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-ctrl-agent.service
(from rev 550042, kea/trunk/kea-ctrl-agent.service)
  kea/repos/community-staging-x86_64/kea-dhcp-ddns.service
(from rev 550042, kea/trunk/kea-dhcp-ddns.service)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 550042, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 550042, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 550042, kea/trunk/tmpfiles-kea.conf)

+
 PKGBUILD   |   81 +++
 fix-scripts-include-path.patch |  266 +++
 kea-ctrl-agent.service |   14 ++
 kea-dhcp-ddns.service  |   13 +
 kea-dhcp4.service  |   14 ++
 kea-dhcp6.service  |   14 ++
 tmpfiles-kea.conf  |1 
 7 files changed, 403 insertions(+)

Copied: kea/repos/community-staging-x86_64/PKGBUILD (from rev 550042, 
kea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-07 18:14:00 UTC (rev 550043)
@@ -0,0 +1,81 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: nfnty
+pkgname='kea'
+pkgver=1.5.0
+_upstreamver=1.5.0
+pkgrel=12
+pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
+arch=('x86_64')
+url='https://kea.isc.org'
+license=('MPL2')
+depends=('botan' 'boost-libs' 'log4cplus' 'mariadb-libs' 'postgresql-libs')
+makedepends=('boost'
+ 'postgresql' # Needed for some headers
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
+# Checks are disabled for now
+#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
+backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
+
+source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
+fix-scripts-include-path.patch
+tmpfiles-kea.conf
+kea-dhcp4.service
+kea-dhcp6.service
+kea-dhcp-ddns.service
+kea-ctrl-agent.service)
+sha512sums=('6d6b7407831311ebe37abce382ce77c664015ddbe3e73ec78153a00b301f98af5be52e26ad4febf5ca1e478d2c1844db4c988b241d2700d758e90b077f176ad8'
+'SKIP'
+
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
+
'702a5dc19d1ed8fbe21aa9a4c09297eff9c9a3f6f1b178af8101a655b18b70c9e1dafd032063e31b2592d276e80c9bd4d2d51d8e1f74f67931fd290be6c0'
+
'1b62dace9f9a955b21c5dd5b5466fb3a4f1d8057ad2a30ea89e222a769dc721ad2fe4913c41ec407e018b1b38ddde757e9b7b8fc12d4763ddde077a0abb0c971'
+
'8f0e8d059338c415ae322e971e243b259d9b2ef7d37b6be57b409bf5f0f3392e519c9bb94c5b548021d000b944a5da82096608cd9ff3ee58061059ad519b0068'
+
'9ab05b580f3b206d127514e158a445146a765ba4bf760daa93bcf29ec9d816dbdd08a497b5a4bba67645f4cc79b210fed8d1defa9daefc48175a654738927d31'
+
'db329fd83e458e4a77f6df8569074088bed152ffc1a188059d868d7178a6d3530efe368ce870a2e0be894f87fa0e5ba43562bdc3ad6372ddfcfedae37c90f491')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57'  # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+  'AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') # Internet Systems 
Consortium, Inc. (Signing key, 2019-2020) 
+prepare() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
+  # Also, it fallbacks to the absolute path inside the chrooted build dir,
+  # which will certainly not exist on the target system...
+  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var' \
+  --with-dhcp-mysql \
+  --with-dhcp-pgsql \
+  --enable-shell
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # Disable for now, some tests fail (for 

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

2019-11-03 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 07:48:18
  Author: felixonmars
Revision: 523577

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 523575, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 523575, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-ctrl-agent.service
(from rev 523575, kea/trunk/kea-ctrl-agent.service)
  kea/repos/community-staging-x86_64/kea-dhcp-ddns.service
(from rev 523575, kea/trunk/kea-dhcp-ddns.service)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 523576, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 523576, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 523576, kea/trunk/tmpfiles-kea.conf)

+
 PKGBUILD   |   79 +++
 fix-scripts-include-path.patch |  266 +++
 kea-ctrl-agent.service |   14 ++
 kea-dhcp-ddns.service  |   13 +
 kea-dhcp4.service  |   14 ++
 kea-dhcp6.service  |   14 ++
 tmpfiles-kea.conf  |1 
 7 files changed, 401 insertions(+)

Copied: kea/repos/community-staging-x86_64/PKGBUILD (from rev 523575, 
kea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-11-04 07:48:18 UTC (rev 523577)
@@ -0,0 +1,79 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: nfnty
+pkgname='kea'
+pkgver=1.5.0
+_upstreamver=1.5.0
+pkgrel=6
+pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
+arch=('x86_64')
+url='https://kea.isc.org'
+license=('MPL2')
+depends=('botan>=2.7.0' 'boost-libs' 'log4cplus' 'mariadb-libs' 
'postgresql-libs')
+makedepends=('boost'
+ 'postgresql' # Needed for some headers
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
+# Checks are disabled for now
+#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
+backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
+
+source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
+fix-scripts-include-path.patch
+tmpfiles-kea.conf
+kea-dhcp4.service
+kea-dhcp6.service
+kea-dhcp-ddns.service
+kea-ctrl-agent.service)
+sha512sums=('6d6b7407831311ebe37abce382ce77c664015ddbe3e73ec78153a00b301f98af5be52e26ad4febf5ca1e478d2c1844db4c988b241d2700d758e90b077f176ad8'
+'SKIP'
+
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
+
'702a5dc19d1ed8fbe21aa9a4c09297eff9c9a3f6f1b178af8101a655b18b70c9e1dafd032063e31b2592d276e80c9bd4d2d51d8e1f74f67931fd290be6c0'
+
'1b62dace9f9a955b21c5dd5b5466fb3a4f1d8057ad2a30ea89e222a769dc721ad2fe4913c41ec407e018b1b38ddde757e9b7b8fc12d4763ddde077a0abb0c971'
+
'8f0e8d059338c415ae322e971e243b259d9b2ef7d37b6be57b409bf5f0f3392e519c9bb94c5b548021d000b944a5da82096608cd9ff3ee58061059ad519b0068'
+
'9ab05b580f3b206d127514e158a445146a765ba4bf760daa93bcf29ec9d816dbdd08a497b5a4bba67645f4cc79b210fed8d1defa9daefc48175a654738927d31'
+
'db329fd83e458e4a77f6df8569074088bed152ffc1a188059d868d7178a6d3530efe368ce870a2e0be894f87fa0e5ba43562bdc3ad6372ddfcfedae37c90f491')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
+  # Also, it fallbacks to the absolute path inside the chrooted build dir,
+  # which will certainly not exist on the target system...
+  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var' \
+  --with-dhcp-mysql \
+  --with-dhcp-pgsql \
+  --enable-shell
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # Disable for now, some tests fail (for instance dhcp-ddns.sigterm_test)
+  #make check
+}
+
+package() {
+  cd "${srcdir}/kea-${_upstreamver}"
+  make 

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

2019-09-13 Thread Evangelos Foutras via arch-commits
Date: Friday, September 13, 2019 @ 09:52:17
  Author: foutrelis
Revision: 510106

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 510104, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 510104, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-ctrl-agent.service
(from rev 510104, kea/trunk/kea-ctrl-agent.service)
  kea/repos/community-staging-x86_64/kea-dhcp-ddns.service
(from rev 510104, kea/trunk/kea-dhcp-ddns.service)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 510104, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 510104, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 510104, kea/trunk/tmpfiles-kea.conf)

+
 PKGBUILD   |   79 +++
 fix-scripts-include-path.patch |  266 +++
 kea-ctrl-agent.service |   14 ++
 kea-dhcp-ddns.service  |   13 +
 kea-dhcp4.service  |   14 ++
 kea-dhcp6.service  |   14 ++
 tmpfiles-kea.conf  |1 
 7 files changed, 401 insertions(+)

Copied: kea/repos/community-staging-x86_64/PKGBUILD (from rev 510104, 
kea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-13 09:52:17 UTC (rev 510106)
@@ -0,0 +1,79 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: nfnty
+pkgname='kea'
+pkgver=1.5.0
+_upstreamver=1.5.0
+pkgrel=5
+pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
+arch=('x86_64')
+url='https://kea.isc.org'
+license=('MPL2')
+depends=('botan>=2.7.0' 'boost-libs' 'log4cplus' 'mariadb-libs' 
'postgresql-libs')
+makedepends=('boost'
+ 'postgresql' # Needed for some headers
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
+# Checks are disabled for now
+#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
+backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
+
+source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
+fix-scripts-include-path.patch
+tmpfiles-kea.conf
+kea-dhcp4.service
+kea-dhcp6.service
+kea-dhcp-ddns.service
+kea-ctrl-agent.service)
+sha512sums=('6d6b7407831311ebe37abce382ce77c664015ddbe3e73ec78153a00b301f98af5be52e26ad4febf5ca1e478d2c1844db4c988b241d2700d758e90b077f176ad8'
+'SKIP'
+
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
+
'702a5dc19d1ed8fbe21aa9a4c09297eff9c9a3f6f1b178af8101a655b18b70c9e1dafd032063e31b2592d276e80c9bd4d2d51d8e1f74f67931fd290be6c0'
+
'1b62dace9f9a955b21c5dd5b5466fb3a4f1d8057ad2a30ea89e222a769dc721ad2fe4913c41ec407e018b1b38ddde757e9b7b8fc12d4763ddde077a0abb0c971'
+
'8f0e8d059338c415ae322e971e243b259d9b2ef7d37b6be57b409bf5f0f3392e519c9bb94c5b548021d000b944a5da82096608cd9ff3ee58061059ad519b0068'
+
'9ab05b580f3b206d127514e158a445146a765ba4bf760daa93bcf29ec9d816dbdd08a497b5a4bba67645f4cc79b210fed8d1defa9daefc48175a654738927d31'
+
'db329fd83e458e4a77f6df8569074088bed152ffc1a188059d868d7178a6d3530efe368ce870a2e0be894f87fa0e5ba43562bdc3ad6372ddfcfedae37c90f491')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
+  # Also, it fallbacks to the absolute path inside the chrooted build dir,
+  # which will certainly not exist on the target system...
+  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var' \
+  --with-dhcp-mysql \
+  --with-dhcp-pgsql \
+  --enable-shell
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # Disable for now, some tests fail (for instance dhcp-ddns.sigterm_test)
+  #make check
+}
+
+package() {
+  cd "${srcdir}/kea-${_upstreamver}"
+  make 

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

2019-07-20 Thread Antonio Rojas via arch-commits
Date: Saturday, July 20, 2019 @ 09:19:03
  Author: arojas
Revision: 492265

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 492264, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 492264, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-ctrl-agent.service
(from rev 492264, kea/trunk/kea-ctrl-agent.service)
  kea/repos/community-staging-x86_64/kea-dhcp-ddns.service
(from rev 492264, kea/trunk/kea-dhcp-ddns.service)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 492264, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 492264, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 492264, kea/trunk/tmpfiles-kea.conf)

+
 PKGBUILD   |   79 +++
 fix-scripts-include-path.patch |  266 +++
 kea-ctrl-agent.service |   14 ++
 kea-dhcp-ddns.service  |   13 +
 kea-dhcp4.service  |   14 ++
 kea-dhcp6.service  |   14 ++
 tmpfiles-kea.conf  |1 
 7 files changed, 401 insertions(+)

Copied: kea/repos/community-staging-x86_64/PKGBUILD (from rev 492264, 
kea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-07-20 09:19:03 UTC (rev 492265)
@@ -0,0 +1,79 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: nfnty
+pkgname='kea'
+pkgver=1.5.0
+_upstreamver=1.5.0
+pkgrel=4
+pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
+arch=('x86_64')
+url='https://kea.isc.org'
+license=('MPL2')
+depends=('botan>=2.7.0' 'boost-libs' 'log4cplus' 'mariadb-libs' 
'postgresql-libs')
+makedepends=('boost'
+ 'postgresql' # Needed for some headers
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
+# Checks are disabled for now
+#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
+backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
+
+source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
+fix-scripts-include-path.patch
+tmpfiles-kea.conf
+kea-dhcp4.service
+kea-dhcp6.service
+kea-dhcp-ddns.service
+kea-ctrl-agent.service)
+sha512sums=('6d6b7407831311ebe37abce382ce77c664015ddbe3e73ec78153a00b301f98af5be52e26ad4febf5ca1e478d2c1844db4c988b241d2700d758e90b077f176ad8'
+'SKIP'
+
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
+
'702a5dc19d1ed8fbe21aa9a4c09297eff9c9a3f6f1b178af8101a655b18b70c9e1dafd032063e31b2592d276e80c9bd4d2d51d8e1f74f67931fd290be6c0'
+
'1b62dace9f9a955b21c5dd5b5466fb3a4f1d8057ad2a30ea89e222a769dc721ad2fe4913c41ec407e018b1b38ddde757e9b7b8fc12d4763ddde077a0abb0c971'
+
'8f0e8d059338c415ae322e971e243b259d9b2ef7d37b6be57b409bf5f0f3392e519c9bb94c5b548021d000b944a5da82096608cd9ff3ee58061059ad519b0068'
+
'9ab05b580f3b206d127514e158a445146a765ba4bf760daa93bcf29ec9d816dbdd08a497b5a4bba67645f4cc79b210fed8d1defa9daefc48175a654738927d31'
+
'db329fd83e458e4a77f6df8569074088bed152ffc1a188059d868d7178a6d3530efe368ce870a2e0be894f87fa0e5ba43562bdc3ad6372ddfcfedae37c90f491')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
+  # Also, it fallbacks to the absolute path inside the chrooted build dir,
+  # which will certainly not exist on the target system...
+  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var' \
+  --with-dhcp-mysql \
+  --with-dhcp-pgsql \
+  --enable-shell
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # Disable for now, some tests fail (for instance dhcp-ddns.sigterm_test)
+  #make check
+}
+
+package() {
+  cd "${srcdir}/kea-${_upstreamver}"
+  make 

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

2019-04-14 Thread Baptiste Jonglez via arch-commits
Date: Sunday, April 14, 2019 @ 22:10:47
  Author: zorun
Revision: 451662

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 451661, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 451661, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-ctrl-agent.service
(from rev 451661, kea/trunk/kea-ctrl-agent.service)
  kea/repos/community-staging-x86_64/kea-dhcp-ddns.service
(from rev 451661, kea/trunk/kea-dhcp-ddns.service)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 451661, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 451661, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 451661, kea/trunk/tmpfiles-kea.conf)

+
 PKGBUILD   |   79 +++
 fix-scripts-include-path.patch |  266 +++
 kea-ctrl-agent.service |   14 ++
 kea-dhcp-ddns.service  |   13 +
 kea-dhcp4.service  |   14 ++
 kea-dhcp6.service  |   14 ++
 tmpfiles-kea.conf  |1 
 7 files changed, 401 insertions(+)

Copied: kea/repos/community-staging-x86_64/PKGBUILD (from rev 451661, 
kea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-14 22:10:47 UTC (rev 451662)
@@ -0,0 +1,79 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: nfnty
+pkgname='kea'
+pkgver=1.5.0
+_upstreamver=1.5.0
+pkgrel=3
+pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
+arch=('x86_64')
+url='https://kea.isc.org'
+license=('MPL2')
+depends=('botan>=2.7.0' 'boost-libs' 'log4cplus' 'mariadb-libs' 
'postgresql-libs')
+makedepends=('boost'
+ 'postgresql' # Needed for some headers
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
+# Checks are disabled for now
+#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
+backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
+
+source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
+fix-scripts-include-path.patch
+tmpfiles-kea.conf
+kea-dhcp4.service
+kea-dhcp6.service
+kea-dhcp-ddns.service
+kea-ctrl-agent.service)
+sha512sums=('6d6b7407831311ebe37abce382ce77c664015ddbe3e73ec78153a00b301f98af5be52e26ad4febf5ca1e478d2c1844db4c988b241d2700d758e90b077f176ad8'
+'SKIP'
+
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
+
'702a5dc19d1ed8fbe21aa9a4c09297eff9c9a3f6f1b178af8101a655b18b70c9e1dafd032063e31b2592d276e80c9bd4d2d51d8e1f74f67931fd290be6c0'
+
'1b62dace9f9a955b21c5dd5b5466fb3a4f1d8057ad2a30ea89e222a769dc721ad2fe4913c41ec407e018b1b38ddde757e9b7b8fc12d4763ddde077a0abb0c971'
+
'8f0e8d059338c415ae322e971e243b259d9b2ef7d37b6be57b409bf5f0f3392e519c9bb94c5b548021d000b944a5da82096608cd9ff3ee58061059ad519b0068'
+
'9ab05b580f3b206d127514e158a445146a765ba4bf760daa93bcf29ec9d816dbdd08a497b5a4bba67645f4cc79b210fed8d1defa9daefc48175a654738927d31'
+
'db329fd83e458e4a77f6df8569074088bed152ffc1a188059d868d7178a6d3530efe368ce870a2e0be894f87fa0e5ba43562bdc3ad6372ddfcfedae37c90f491')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
+  # Also, it fallbacks to the absolute path inside the chrooted build dir,
+  # which will certainly not exist on the target system...
+  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var' \
+  --with-dhcp-mysql \
+  --with-dhcp-pgsql \
+  --enable-shell
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${_upstreamver}"
+  # Disable for now, some tests fail (for instance dhcp-ddns.sigterm_test)
+  #make check
+}
+
+package() {
+  cd "${srcdir}/kea-${_upstreamver}"
+  make 

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

2018-04-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, April 24, 2018 @ 00:56:51
  Author: svenstaro
Revision: 317475

archrelease: copy trunk to community-testing-x86_64

Added:
  kea/repos/community-testing-x86_64/
  
kea/repos/community-testing-x86_64/3c22fedef78c5391561dd66c0a0de6d593351f6c.patch
(from rev 317474, kea/trunk/3c22fedef78c5391561dd66c0a0de6d593351f6c.patch)
  kea/repos/community-testing-x86_64/PKGBUILD
(from rev 317474, kea/trunk/PKGBUILD)
  kea/repos/community-testing-x86_64/asiolink-fix-build-with-boost-1.66.patch
(from rev 317474, kea/trunk/asiolink-fix-build-with-boost-1.66.patch)
  kea/repos/community-testing-x86_64/fix-scripts-include-path.patch
(from rev 317474, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-testing-x86_64/kea-dhcp4.service
(from rev 317474, kea/trunk/kea-dhcp4.service)
  kea/repos/community-testing-x86_64/kea-dhcp6.service
(from rev 317474, kea/trunk/kea-dhcp6.service)
  kea/repos/community-testing-x86_64/tmpfiles-kea.conf
(from rev 317474, kea/trunk/tmpfiles-kea.conf)

+
 3c22fedef78c5391561dd66c0a0de6d593351f6c.patch |   65 +
 PKGBUILD   |   82 +++
 asiolink-fix-build-with-boost-1.66.patch   |   99 ++
 fix-scripts-include-path.patch |  162 +++
 kea-dhcp4.service  |   12 +
 kea-dhcp6.service  |   12 +
 tmpfiles-kea.conf  |1 
 7 files changed, 433 insertions(+)

Copied: 
kea/repos/community-testing-x86_64/3c22fedef78c5391561dd66c0a0de6d593351f6c.patch
 (from rev 317474, kea/trunk/3c22fedef78c5391561dd66c0a0de6d593351f6c.patch)
===
--- community-testing-x86_64/3c22fedef78c5391561dd66c0a0de6d593351f6c.patch 
(rev 0)
+++ community-testing-x86_64/3c22fedef78c5391561dd66c0a0de6d593351f6c.patch 
2018-04-24 00:56:51 UTC (rev 317475)
@@ -0,0 +1,65 @@
+From d6c31960033ff0f4aa05b4c2698cf456145ce6ff Mon Sep 17 00:00:00 2001
+From: Francis Dupont 
+Date: Sun, 8 Oct 2017 01:09:11 +0200
+Subject: [PATCH] [5380] Addressed another log4cplus 2.0.0 API change
+
+---
+ src/lib/log/logger_level_impl.cc | 10 --
+ src/lib/log/logger_level_impl.h  |  6 +-
+ 2 files changed, 13 insertions(+), 3 deletions(-)
+
+diff --git a/src/lib/log/logger_level_impl.cc 
b/src/lib/log/logger_level_impl.cc
+index 79ca4856f2..fdcc5d367f 100644
+--- a/src/lib/log/logger_level_impl.cc
 b/src/lib/log/logger_level_impl.cc
+@@ -177,20 +177,26 @@ LoggerLevelImpl::logLevelFromString(const 
log4cplus::tstring& level) {
+ 
+ // Convert logging level to string.  If the level is a valid debug level,
+ // return the string DEBUG, else return the empty string.
++#if LOG4CPLUS_VERSION < LOG4CPLUS_MAKE_VERSION(2, 0, 0)
+ LoggerLevelImpl::LogLevelString
++#else
++const LoggerLevelImpl::LogLevelString&
++#endif
+ LoggerLevelImpl::logLevelToString(log4cplus::LogLevel level) {
+ Level bindlevel = convertToBindLevel(level);
+ Severity& severity = bindlevel.severity;
+ int& dbglevel = bindlevel.dbglevel;
++static LoggerLevelImpl::LogLevelString debug_ = tstring("DEBUG");
++static LoggerLevelImpl::LogLevelString empty_ = tstring();
+ 
+ if ((severity == DEBUG) &&
+ ((dbglevel >= MIN_DEBUG_LEVEL) && (dbglevel <= MAX_DEBUG_LEVEL))) {
+-return (tstring("DEBUG"));
++return (debug_);
+ }
+ 
+ // Unknown, so return empty string for log4cplus to try other conversion
+ // functions.
+-return (tstring());
++return (empty_);
+ }
+ 
+ // Initialization.  Register the conversion functions with the 
LogLevelManager.
+diff --git a/src/lib/log/logger_level_impl.h b/src/lib/log/logger_level_impl.h
+index 96696c2b1f..77da5f7408 100644
+--- a/src/lib/log/logger_level_impl.h
 b/src/lib/log/logger_level_impl.h
+@@ -1,4 +1,4 @@
+-// Copyright (C) 2011-2016 Internet Systems Consortium, Inc. ("ISC")
++// Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC")
+ //
+ // This Source Code Form is subject to the terms of the Mozilla Public
+ // License, v. 2.0. If a copy of the MPL was not distributed with this
+@@ -107,7 +107,11 @@ typedef log4cplus::tstring LogLevelString;
+ /// \param level Extended logging level
+ ///
+ /// \return Equivalent string.
++#if LOG4CPLUS_VERSION < LOG4CPLUS_MAKE_VERSION(2, 0, 0)
+ static LogLevelString logLevelToString(log4cplus::LogLevel level);
++#else
++static const LogLevelString& logLevelToString(log4cplus::LogLevel level);
++#endif
+ 
+ /// \brief Initialize extended logging levels
+ ///

Copied: kea/repos/community-testing-x86_64/PKGBUILD (from rev 317474, 
kea/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++