From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A9C8E138334 for ; Fri, 6 Jul 2018 21:48:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62141E09BD; Fri, 6 Jul 2018 21:48:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBEEFE0997 for ; Fri, 6 Jul 2018 21:48:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC3F5335CA5 for ; Fri, 6 Jul 2018 21:48:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F627368 for ; Fri, 6 Jul 2018 21:48:25 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1530913675.888941185b4a5a3ee95a1f3dd86c1093d7d18ef6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/valtz/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/valtz/valtz-0.7-r1.ebuild X-VCS-Directories: net-dns/valtz/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 888941185b4a5a3ee95a1f3dd86c1093d7d18ef6 X-VCS-Branch: master Date: Fri, 6 Jul 2018 21:48:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 97cd4427-cbbf-403d-aed4-57378eeacd55 X-Archives-Hash: 2e6f195b43faf3d0f322dab5d600c805 commit: 888941185b4a5a3ee95a1f3dd86c1093d7d18ef6 Author: Michael Mair-Keimberger gmail com> AuthorDate: Thu Jun 28 18:40:44 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jul 6 21:47:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88894118 net-dns/valtz: add EAPI7 ebuild net-dns/valtz/valtz-0.7-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/net-dns/valtz/valtz-0.7-r1.ebuild b/net-dns/valtz/valtz-0.7-r1.ebuild new file mode 100644 index 00000000000..4e9cc257f22 --- /dev/null +++ b/net-dns/valtz/valtz-0.7-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Validation tool for tinydns-data zone files" +SRC_URI="https://x42.com/software/valtz/${PN}.tgz" +HOMEPAGE="https://x42.com/software/valtz/" +IUSE="" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-lang/perl" + +src_install() { + dobin valtz + dodoc README CHANGES +}