Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/valtz/
Date: Fri, 06 Jul 2018 21:48:36
Message-Id: 1530913675.888941185b4a5a3ee95a1f3dd86c1093d7d18ef6.asturm@gentoo
1 commit: 888941185b4a5a3ee95a1f3dd86c1093d7d18ef6
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu Jun 28 18:40:44 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 6 21:47:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88894118
7
8 net-dns/valtz: add EAPI7 ebuild
9
10 net-dns/valtz/valtz-0.7-r1.ebuild | 20 ++++++++++++++++++++
11 1 file changed, 20 insertions(+)
12
13 diff --git a/net-dns/valtz/valtz-0.7-r1.ebuild b/net-dns/valtz/valtz-0.7-r1.ebuild
14 new file mode 100644
15 index 00000000000..4e9cc257f22
16 --- /dev/null
17 +++ b/net-dns/valtz/valtz-0.7-r1.ebuild
18 @@ -0,0 +1,20 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=7
23 +
24 +DESCRIPTION="Validation tool for tinydns-data zone files"
25 +SRC_URI="https://x42.com/software/valtz/${PN}.tgz"
26 +HOMEPAGE="https://x42.com/software/valtz/"
27 +IUSE=""
28 +
29 +SLOT="0"
30 +LICENSE="BSD"
31 +KEYWORDS="~amd64 ~x86"
32 +
33 +RDEPEND="dev-lang/perl"
34 +
35 +src_install() {
36 + dobin valtz
37 + dodoc README CHANGES
38 +}