Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/knot: knot-1.4.4.ebuild ChangeLog knot-1.4.2.ebuild
Date: Mon, 31 Mar 2014 09:21:36
Message-Id: 20140331092131.A8D5D2005C@flycatcher.gentoo.org
1 scarabeus 14/03/31 09:21:31
2
3 Modified: ChangeLog
4 Added: knot-1.4.4.ebuild
5 Removed: knot-1.4.2.ebuild
6 Log:
7 Version bump to 1.4.4 remove older. Thanks to Ondrej Caletka.
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
10
11 Revision Changes Path
12 1.24 net-dns/knot/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 28 Jan 2014 09:22:20 -0000 1.23
25 +++ ChangeLog 31 Mar 2014 09:21:31 -0000 1.24
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-dns/knot
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.23 2014/01/28 09:22:20 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.24 2014/03/31 09:21:31 scarabeus Exp $
31 +
32 +*knot-1.4.4 (31 Mar 2014)
33 +
34 + 31 Mar 2014; Tomáš Chvátal <scarabeus@g.o> +knot-1.4.4.ebuild,
35 + -knot-1.4.2.ebuild, knot-9999.ebuild:
36 + Version bump to 1.4.4 remove older. Thanks to Ondrej Caletka.
37
38 *knot-1.4.2 (28 Jan 2014)
39
40
41
42
43 1.1 net-dns/knot/knot-1.4.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.4.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.4.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: knot-1.4.4.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-dns/knot/knot-1.4.4.ebuild,v 1.1 2014/03/31 09:21:31 scarabeus Exp $
53
54 EAPI=5
55
56 EGIT_REPO_URI="https://gitlab.labs.nic.cz/labs/${PN}.git"
57 [[ ${PV} == 9999 ]] && inherit autotools git-r3
58 inherit eutils user
59
60 DESCRIPTION="High-performance authoritative-only DNS server"
61 HOMEPAGE="http://www.knot-dns.cz/"
62 [[ ${PV} == 9999 ]] || SRC_URI="http://public.nic.cz/files/knot-dns/${P/_/-}.tar.gz"
63
64 LICENSE="GPL-3"
65 SLOT="0"
66 [[ ${PV} == 9999 ]] || \
67 KEYWORDS="~amd64 ~x86"
68 IUSE="debug caps +fastparser"
69
70 RDEPEND="
71 dev-libs/openssl
72 dev-libs/userspace-rcu
73 caps? ( sys-libs/libcap-ng )
74 "
75 # sys-libs/glibc
76 DEPEND="${RDEPEND}
77 virtual/pkgconfig
78 sys-devel/flex
79 virtual/yacc
80 fastparser? ( dev-util/ragel )
81 "
82
83 S="${WORKDIR}/${P/_/-}"
84
85 src_prepare() {
86 [[ ${PV} == 9999 ]] && eautoreconf
87 }
88
89 src_configure() {
90 econf \
91 --with-storage="${EPREFIX}/var/lib/${PN}" \
92 --with-rundir="${EPREFIX}/var/run/${PN}" \
93 --disable-lto \
94 --enable-recvmmsg \
95 $(use_enable fastparser) \
96 $(use_enable debug debug server,zones,xfr,packet,dname,rr,ns,hash,compiler) \
97 $(use_enable debug debuglevel details)
98 }
99
100 src_install() {
101 default
102 newinitd "${FILESDIR}/knot.init" knot
103 }
104
105 pkg_postinst() {
106 enewgroup knot 53
107 enewuser knot 53 -1 /var/lib/knot knot
108 }