net-dns/hash-slinger: bump.

Package-Manager: portage-2.2.27
This commit is contained in:
Robin H. Johnson
2016-03-06 16:09:55 -08:00
parent 3c6c37cdbb
commit c7971638d6
2 changed files with 46 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST hash-slinger-2.6.tar.gz 34864 SHA256 121143efea136958ad6a42cb0a8fa80d95b1e4fc45632019d8f07a534d6efab2 SHA512 1e5d67ed2ef8eae910927fbd7419928d87ba31a91ca43a1c163b05f725da96a50d30e1539c4c55a68a22f0e2c9a2f7c7101fbdcfb5fc903e87fe4c22e20f33af WHIRLPOOL 7ff36bad9db31e6d8769a525fc60691cb6af3bd6970b9bbf55d56f7e3c08a6a97a35fd1363dbed012239432b7dfd2594d616dc4d0a80ae47c82b724e17183f41
DIST hash-slinger-2.7.tar.gz 37684 SHA256 cd888eaee222bbe994d60aab7bc638b6c3417f43b68d0e6a8f1802104f6d7b8d SHA512 b1b3e46c4cdd8b983b55156c9bcc58afc973c2503cde48283e98306e381753547f425bfaee68707ae10b2e31b71d01485b34e4a9841c9ce2048f9551f23d0976 WHIRLPOOL 91e232827c63a1c2ab92e691ce71c4d301b1dc34d410e583b53e58e83a1f77a712cd76627c15f812849b06689258b60305792adcbb779d544bd4f574010f9190

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit python-r1
DESCRIPTION="Various tools to generate special DNS records like SSHFP, TLSA, OPENPGPKEY, IPSECKEY"
HOMEPAGE="https://people.redhat.com/pwouters/hash-slinger/"
SRC_URI="https://people.redhat.com/pwouters/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ipsec +openpgp +ssh"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND=""
RDEPEND="
${PYTHON_DEPS}
dev-python/ipaddr[$PYTHON_USEDEP]
dev-python/m2crypto[$PYTHON_USEDEP]
net-dns/unbound[python,$PYTHON_USEDEP]
virtual/python-dnspython[$PYTHON_USEDEP]
ipsec? ( net-misc/libreswan[dnssec] )
openpgp? ( dev-python/python-gnupg[$PYTHON_USEDEP] )
ssh? ( net-misc/openssh )
"
src_install() {
local tools
tools="tlsa"
use ssh && tools+=" sshfp"
use openpgp && tools+=" openpgpkey"
use ipsec && tools+=" ipseckey"
for tool in $tools ; do
doman ${tool}.1
python_foreach_impl python_doscript ${tool}
done
dodoc BUGS CHANGES README
}