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.5.1.ebuild ChangeLog knot-1.4.6.ebuild
Date: Fri, 29 Aug 2014 09:04:09
Message-Id: 20140829090406.04A684274@oystercatcher.gentoo.org
1 scarabeus 14/08/29 09:04:06
2
3 Modified: ChangeLog
4 Added: knot-1.5.1.ebuild
5 Removed: knot-1.4.6.ebuild
6 Log:
7 Version bump to latest. Drop older.
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.28 net-dns/knot/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.28&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.28&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?r1=1.27&r2=1.28
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v
21 retrieving revision 1.27
22 retrieving revision 1.28
23 diff -u -r1.27 -r1.28
24 --- ChangeLog 27 May 2014 13:28:32 -0000 1.27
25 +++ ChangeLog 29 Aug 2014 09:04:05 -0000 1.28
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.27 2014/05/27 13:28:32 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.28 2014/08/29 09:04:05 scarabeus Exp $
31 +
32 +*knot-1.5.1 (29 Aug 2014)
33 +
34 + 29 Aug 2014; Tomáš Chvátal <scarabeus@g.o> +knot-1.5.1.ebuild,
35 + -knot-1.4.6.ebuild:
36 + Version bump to latest. Drop older.
37
38 *knot-1.4.6 (27 May 2014)
39
40
41
42
43 1.1 net-dns/knot/knot-1.5.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.5.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.5.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: knot-1.5.1.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.5.1.ebuild,v 1.1 2014/08/29 09:04:05 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="https://secure.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 idn"
69
70 RDEPEND="
71 dev-libs/openssl
72 dev-libs/userspace-rcu
73 caps? ( sys-libs/libcap-ng )
74 idn? ( net-dns/libidn )
75 "
76 # sys-libs/glibc
77 DEPEND="${RDEPEND}
78 virtual/pkgconfig
79 sys-devel/flex
80 virtual/yacc
81 fastparser? ( dev-util/ragel )
82 "
83
84 S="${WORKDIR}/${P/_/-}"
85
86 src_prepare() {
87 [[ ${PV} == 9999 ]] && eautoreconf
88 }
89
90 src_configure() {
91 econf \
92 --with-storage="${EPREFIX}/var/lib/${PN}" \
93 --with-rundir="${EPREFIX}/var/run/${PN}" \
94 --disable-lto \
95 --enable-recvmmsg \
96 $(use_enable fastparser) \
97 $(use_enable debug debug server,zones,xfr,packet,dname,rr,ns,hash,compiler) \
98 $(use_enable debug debuglevel details) \
99 $(use_with idn libidn)
100 }
101
102 src_install() {
103 default
104 newinitd "${FILESDIR}/knot.init" knot
105 }
106
107 pkg_postinst() {
108 enewgroup knot 53
109 enewuser knot 53 -1 /var/lib/knot knot
110 }