From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 555951397E2 for ; Tue, 18 Aug 2015 07:30:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BDC2E07F5; Tue, 18 Aug 2015 07:30:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B20ADE07F5 for ; Tue, 18 Aug 2015 07:30:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87328340967 for ; Tue, 18 Aug 2015 07:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C9DE129 for ; Tue, 18 Aug 2015 07:29:55 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1439882956.a08106eb369824a08a40a4fffec872fc3dec253a.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/cdist/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/cdist/Manifest app-admin/cdist/cdist-3.1.13.ebuild X-VCS-Directories: app-admin/cdist/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: a08106eb369824a08a40a4fffec872fc3dec253a X-VCS-Branch: master Date: Tue, 18 Aug 2015 07:29:55 +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: 7553e5b1-b3db-4ab4-90fd-b8837f577019 X-Archives-Hash: 6538e5d76f93309c7dda155c5814b5f4 commit: a08106eb369824a08a40a4fffec872fc3dec253a Author: Ian Delaney gentoo org> AuthorDate: Tue Aug 18 07:29:16 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Tue Aug 18 07:29:16 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a08106eb app-admin/cdist: bump; fixes bug #555692 Package-Manager: portage-2.2.20 app-admin/cdist/Manifest | 1 + app-admin/cdist/cdist-3.1.13.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-admin/cdist/Manifest b/app-admin/cdist/Manifest index 2db64ac..4e11627 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 0000000..1e53a49 --- /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 +}