diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-01-23 12:23:54 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-01-23 12:23:54 +0100 |
commit | 58535ab628a705399ffd2c1cbc5f11f7e3950e2c (patch) | |
tree | 9fd3ced37c165d3d5a068d044f792597bb811d7d /app-admin | |
parent | sci-electronics/klayout: Stable on amd64 (diff) | |
download | gentoo-58535ab628a705399ffd2c1cbc5f11f7e3950e2c.tar.gz gentoo-58535ab628a705399ffd2c1cbc5f11f7e3950e2c.tar.bz2 gentoo-58535ab628a705399ffd2c1cbc5f11f7e3950e2c.zip |
app-admin/cdist: Bump to 6.9.4
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/cdist/Manifest | 1 | ||||
-rw-r--r-- | app-admin/cdist/cdist-6.9.4.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/app-admin/cdist/Manifest b/app-admin/cdist/Manifest index d800a995554d..37892d3e044f 100644 --- a/app-admin/cdist/Manifest +++ b/app-admin/cdist/Manifest @@ -1 +1,2 @@ DIST cdist-6.9.3.tar.gz 1358492 BLAKE2B 04ec577629924b0a4356bfc44f0fbd3c7c8f0f15197b2fe8a62cde8e2089865a06c4d49366870be712bf0bc5d8f5c47f8c5ee3af602186ecef2c33e15af1b762 SHA512 3588cb7b98c78ff1671f1932474fd9c43e06ce075cfb0fa777903687f5ea84e7382da6014ea6230edad290de5175e3f000ea487831f1584b7efd4c97b8758dc2 +DIST cdist-6.9.4.tar.gz 1362226 BLAKE2B c9f9c85b586718e8cd1fe1a88bed5603b0e1c4ddbf398caab033b3adacc056349edb44f9a597f6810a08fef0598260c350d307eafd16c7be43e556a586294800 SHA512 ba139ab404e8167530cc36461bf83443a3b7d289a4cd7daee2286e9610846ac0b75737899defe08dafa873d1c1b369f9a412c828c98c8aae9130713bf5a7ec77 diff --git a/app-admin/cdist/cdist-6.9.4.ebuild b/app-admin/cdist/cdist-6.9.4.ebuild new file mode 100644 index 000000000000..7fb25712179a --- /dev/null +++ b/app-admin/cdist/cdist-6.9.4.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 + +DESCRIPTION="A usable configuration management system" +HOMEPAGE="https://www.cdi.st/ https://code.ungleich.ch/ungleich-public/cdist" +SRC_URI="https://code.ungleich.ch/ungleich-public/cdist/-/archive/${PV}/cdist-${PV}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_sphinx docs/src dev-python/sphinx_rtd_theme +distutils_enable_tests unittest + +python_prepare_all() { + echo "VERSION='${PV}'" > cdist/version.py || die + + distutils-r1_python_prepare_all +} |