diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2022-11-25 11:47:12 +0300 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2022-11-25 11:56:43 +0300 |
commit | 04a55eab4c4e4b9acc8d4200df1a61ab3da4ce31 (patch) | |
tree | 0047b025b639a7f6887512a53d25c06f2213523d /sys-cluster | |
parent | package.mask: unmask dev-python/parallax and sys-cluster/crmsh (diff) | |
download | gentoo-04a55eab4c4e4b9acc8d4200df1a61ab3da4ce31.tar.gz gentoo-04a55eab4c4e4b9acc8d4200df1a61ab3da4ce31.tar.bz2 gentoo-04a55eab4c4e4b9acc8d4200df1a61ab3da4ce31.zip |
sys-cluster/crmsh: drop old revisions
Signed-off-by: Sergey Popov <pinkbyte@gentoo.org>
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild | 45 | ||||
-rw-r--r-- | sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild | 43 |
2 files changed, 0 insertions, 88 deletions
diff --git a/sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild b/sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild deleted file mode 100644 index 6a30d2908fbe..000000000000 --- a/sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -AUTOTOOLS_AUTORECONF=true -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - EGIT_REPO_URI="https://github.com/crmsh/crmsh" - inherit git-3 - S="${WORKDIR}/${PN}-${MY_TREE}" -else - SRC_URI="https://github.com/crmsh/crmsh/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~hppa ~x86" -fi - -inherit python-r1 - -DESCRIPTION="Pacemaker command line interface for management and configuration" -HOMEPAGE="https://crmsh.github.io/" - -LICENSE="GPL-2" -SLOT="0" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="${PYTHON_DEPS} - >=sys-cluster/pacemaker-1.1.9" -RDEPEND="${DEPEND} - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/parallax[${PYTHON_USEDEP}] -" - -src_configure() { - ./autogen.sh || die - econf -} - -src_install() { - emake DESTDIR="${D}" install - python_foreach_impl python_optimize -} diff --git a/sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild b/sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild deleted file mode 100644 index ffab4f2a9c1d..000000000000 --- a/sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8,9} ) - -if [[ ${PV} == *9999 ]]; then - EGIT_REPO_URI="https://github.com/crmsh/crmsh" - inherit git-3 - S="${WORKDIR}/${PN}-${MY_TREE}" -else - SRC_URI="https://github.com/crmsh/crmsh/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~hppa ~x86" -fi - -inherit autotools python-r1 - -DESCRIPTION="Pacemaker command line interface for management and configuration" -HOMEPAGE="https://crmsh.github.io/" - -LICENSE="GPL-2" -SLOT="0" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="${PYTHON_DEPS} - >=sys-cluster/pacemaker-1.1.9" -RDEPEND="${DEPEND} - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/parallax[${PYTHON_USEDEP}] -" - -src_prepare() { - default - - eautoreconf -} - -src_install() { - emake DESTDIR="${D}" install - python_foreach_impl python_optimize -} |