public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/kea/
Date: Fri, 31 Jan 2020 14:00:17 +0000 (UTC)	[thread overview]
Message-ID: <1580479204.dc16a581c5551e98c0d1963ef32881c34611f1cb.polynomial-c@gentoo> (raw)

commit:     dc16a581c5551e98c0d1963ef32881c34611f1cb
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 31 13:56:02 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Jan 31 14:00:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc16a581

net-misc/kea: Bump to version 1.7.4

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 net-misc/kea/Manifest         |  1 +
 net-misc/kea/kea-1.7.4.ebuild | 76 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/net-misc/kea/Manifest b/net-misc/kea/Manifest
index 35cba53f6b3..e4cb99f2cb0 100644
--- a/net-misc/kea/Manifest
+++ b/net-misc/kea/Manifest
@@ -1,2 +1,3 @@
 DIST kea-1.7.2.tar.gz 7229506 BLAKE2B fd84bd69e4fd147b91af80bb9094476bda3a3de0253c6f1880adde33458168f2dc24b6b95ed7b4f0d65fe69b2304bfebe8359e1bd61c28c9ba070e03531ee531 SHA512 f84bed2e1dacd172c7aed8e4d6c11ec5e79f37ad2c7991963fc9c4a1761668f9f0e105ba5c4deed06264ab2ec13b1b5787350d823de12fd3782223192e3653f2
 DIST kea-1.7.3.tar.gz 7284882 BLAKE2B 9023d3f2df7a81d817b83cec9ea52d75e268d95e5337befa973cf8630b620f0454e8cf6fdfa40f02c6cc3fabf0671e2f18e974ff2412b757fad2081015fa1e21 SHA512 17720bd5f119e5fe1cea9ab3642630757fe645c662ab8efb1af0bd301786ccb950c7a7c5b147ad54a7a5aff6471fa84c6a11bf031030180e3080be02894d4812
+DIST kea-1.7.4.tar.gz 7322221 BLAKE2B 8042f0d0ecce90635d41aa07599c475adfd17ab8145d14fdd92b3c4442ddf44e4495c63d67c9e5bc30d81cf42eb4393a111762c6f308fcf597cd364360d05bd5 SHA512 ae2117b5add65abed1603be2393cc300fea181376c598c2facdd76cc868d53fabb5714d41f7a5647b0ae508d05e98b50fa101a7917503835928f274a157ed6ca

diff --git a/net-misc/kea/kea-1.7.4.ebuild b/net-misc/kea/kea-1.7.4.ebuild
new file mode 100644
index 00000000000..171da871a92
--- /dev/null
+++ b/net-misc/kea/kea-1.7.4.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs user
+
+MY_PV="${PV//_p/-P}"
+MY_PV="${MY_PV/_/-}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="High-performance production grade DHCPv4 & DHCPv6 server"
+HOMEPAGE="http://www.isc.org/kea/"
+if [[ ${PV} = 9999* ]] ; then
+	inherit autotools git-r3
+	EGIT_REPO_URI="https://github.com/isc-projects/kea.git"
+else
+	SRC_URI="ftp://ftp.isc.org/isc/kea/${MY_P}.tar.gz
+		ftp://ftp.isc.org/isc/kea/${MY_PV}/${MY_P}.tar.gz"
+	[[ "${PV}" == *_beta* ]] || [[ "${PV}" == *_rc* ]] || \
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="ISC BSD SSLeay GPL-2" # GPL-2 only for init script
+SLOT="0"
+IUSE="mysql +openssl postgres samples"
+
+DEPEND="
+	dev-libs/boost:=
+	dev-cpp/gtest
+	dev-libs/log4cplus
+	mysql? ( dev-db/mysql-connector-c )
+	!openssl? ( dev-libs/botan:2= )
+	openssl? ( dev-libs/openssl:0= )
+	postgres? ( dev-db/postgresql:* )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+	default
+	[[ ${PV} = *9999 ]] && eautoreconf
+	# Brand the version with Gentoo
+	sed -i \
+		-e "/VERSION=/s:'$: Gentoo-${PR}':" \
+		configure || die
+}
+
+src_configure() {
+	local myeconfargs=(
+		--disable-static
+		--enable-perfdhcp
+		--localstatedir="${EPREFIX}/var"
+		--without-werror
+		$(use_with mysql)
+		$(use_with openssl)
+		$(use_with postgres pgsql)
+		$(use_enable samples install-configurations)
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	newconfd "${FILESDIR}"/${PN}-confd ${PN}
+	newinitd "${FILESDIR}"/${PN}-initd ${PN}
+	keepdir /var/{lib,run}/${PN} /var/log
+	find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die
+}
+
+pkg_preinst() {
+	enewgroup dhcp
+	enewuser dhcp -1 -1 /var/lib/dhcp dhcp
+}


             reply	other threads:[~2020-01-31 14:00 UTC|newest]

Thread overview: 76+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-31 14:00 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-08 23:31 [gentoo-commits] repo/gentoo:master commit in: net-misc/kea/ Sam James
2024-02-29  5:44 Sam James
2024-01-25 20:31 Dennis Lamm
2023-09-30 11:14 Dennis Lamm
2023-09-30 11:14 Dennis Lamm
2022-10-19  4:48 Dennis Lamm
2022-10-19  4:48 Dennis Lamm
2022-05-18 12:27 Lars Wendler
2022-05-18 12:27 Lars Wendler
2022-05-18 12:27 Lars Wendler
2022-03-14  6:39 Dennis Lamm
2021-10-04 20:40 Sam James
2021-09-08  4:53 Dennis Lamm
2021-08-15  7:56 Lars Wendler
2021-08-15  7:28 Lars Wendler
2021-08-15  7:28 Lars Wendler
2021-08-08 13:15 Dennis Lamm
2021-08-08 13:15 Dennis Lamm
2021-07-08 17:09 Dennis Lamm
2021-07-03  9:43 Lars Wendler
2021-06-16 18:11 Lars Wendler
2021-05-14 10:04 David Seifert
2021-05-13 13:55 David Seifert
2021-02-15 15:14 Thomas Deutschmann
2020-12-19 16:06 Lars Wendler
2020-11-25  9:26 Lars Wendler
2020-07-30  8:05 Lars Wendler
2020-07-30  8:05 Lars Wendler
2020-06-29 14:27 Lars Wendler
2020-06-29 14:27 Lars Wendler
2020-05-27 12:01 Lars Wendler
2020-05-27 12:01 Lars Wendler
2020-04-30  8:21 Lars Wendler
2020-04-30  8:21 Lars Wendler
2020-03-27  8:58 Lars Wendler
2020-03-27  8:58 Lars Wendler
2020-02-27  8:59 Lars Wendler
2020-02-27  8:59 Lars Wendler
2020-02-27  8:59 Lars Wendler
2020-01-31 14:00 Lars Wendler
2019-12-19 15:37 Lars Wendler
2019-12-19 15:37 Lars Wendler
2019-11-28 12:23 Lars Wendler
2019-11-28 12:23 Lars Wendler
2019-10-31 12:05 Lars Wendler
2019-10-07 15:25 Lars Wendler
2019-10-07 15:25 Lars Wendler
2019-10-07 15:25 Lars Wendler
2019-09-12  6:09 Lars Wendler
2019-08-29 12:50 Lars Wendler
2019-08-29 12:50 Lars Wendler
2019-08-29 12:50 Lars Wendler
2018-12-18  0:51 Thomas Deutschmann
2018-12-10 11:45 Lars Wendler
2018-12-10  9:36 Lars Wendler
2018-12-03 15:07 Lars Wendler
2018-11-27  8:57 Lars Wendler
2018-11-27  8:57 Lars Wendler
2018-11-27  8:57 Lars Wendler
2018-07-12  9:33 Lars Wendler
2018-07-12  9:26 Lars Wendler
2018-07-12  8:06 Lars Wendler
2018-07-12  8:06 Lars Wendler
2018-06-16 21:10 Lars Wendler
2018-06-16 21:10 Lars Wendler
2018-02-14 13:55 Lars Wendler
2018-02-14 10:45 Lars Wendler
2018-02-05 13:46 Lars Wendler
2017-11-06  9:40 Lars Wendler
2017-11-06  9:40 Lars Wendler
2017-10-04  7:42 Alon Bar-Lev
2017-05-08 11:30 Tony Vroon
2016-10-21 12:46 Tony Vroon
2016-01-07 15:56 Tony Vroon
2016-01-07 15:53 Tony Vroon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1580479204.dc16a581c5551e98c0d1963ef32881c34611f1cb.polynomial-c@gentoo \
    --to=polynomial-c@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox