diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-08-18 15:29:16 +0800 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-08-18 15:29:16 +0800 |
commit | a08106eb369824a08a40a4fffec872fc3dec253a (patch) | |
tree | ea29bcb13170f86783411d61cdfbdff360e4f56d /app-admin/cdist | |
parent | dev-python/asset: dev-python/asset: Version Bump (diff) | |
download | gentoo-a08106eb369824a08a40a4fffec872fc3dec253a.tar.gz gentoo-a08106eb369824a08a40a4fffec872fc3dec253a.tar.bz2 gentoo-a08106eb369824a08a40a4fffec872fc3dec253a.zip |
app-admin/cdist: bump; fixes bug #555692
Package-Manager: portage-2.2.20
Diffstat (limited to 'app-admin/cdist')
-rw-r--r-- | app-admin/cdist/Manifest | 1 | ||||
-rw-r--r-- | app-admin/cdist/cdist-3.1.13.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/app-admin/cdist/Manifest b/app-admin/cdist/Manifest index 2db64ac15fb9..4e1162754e31 100644 --- a/app-admin/cdist/Manifest +++ b/app-admin/cdist/Manifest @@ -1 +1,2 @@ +DIST cdist-3.1.13.tar.gz 303245 SHA256 9363b25d3119ca6266a3066fcae145009e00253745bd81987d92ebcb9e10f987 SHA512 df6562dda7b4fcedcc8e651f33f5ce59a7d6c297a32f7685529865a4d965b9111f352ddd38a15ba28dc5cc53385a483ec87cc43b235ef9eee02512b7fabc6f41 WHIRLPOOL d0b7ad0955d6a16018a9dd1d452afd714e819a0427dc685e20745847658a0c0a3323dd1f5d03967547bb879e448f09ea84ba69a11fa00ea6dcd06ce3180ef6c5 DIST cdist-3.1.9.tar.gz 260817 SHA256 37eb340a83f52f035468b817d9f1218c5954ba2910fb7a800dfe04cf8abae85b SHA512 e2cc40a38961fa5cbb6f51fc5ea2f6a8a1f86cd5b42d85204f2f71e2aba8393d5041a63e756d7c5666cc30c9ab528a9e0e5bccaea8c5a9ed079453cc87d76d06 WHIRLPOOL 41f9d06401149e06969f3d799c7b812e6a992ade3892c6de9f0723bf2a697d45a6c4d1fc46805ee81c340d1f8cb5ffead32d45e7e5bb8b46cbf6aca8a53dd7fa diff --git a/app-admin/cdist/cdist-3.1.13.ebuild b/app-admin/cdist/cdist-3.1.13.ebuild new file mode 100644 index 000000000000..1e53a499d257 --- /dev/null +++ b/app-admin/cdist/cdist-3.1.13.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{3_3,3_4} ) +inherit distutils-r1 + +DESCRIPTION="A usable configuration management system" +HOMEPAGE="http://www.nico.schottelius.org/software/cdist/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DOCS=( README ) + +python_install_all() { + if use doc; then + HTML_DOCS=( docs/man/man1/*.html docs/man/man7/*.html ) + fi + distutils-r1_python_install_all + doman docs/man/man1/*.1 docs/man/man7/*.7 +} |