[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2023-11-08 Thread Sergey Popov
commit: c104794da495831ac6c1552091ec95e9a9ca
Author: Sergey Popov  gentoo  org>
AuthorDate: Wed Nov  8 10:54:09 2023 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Wed Nov  8 10:58:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c104794d

sys-cluster/crmsh-4.5.0: version bump

Signed-off-by: Christian Richter  gmail.com>
Signed-off-by: Sergey Popov  gentoo.org>
Bug: https://bugs.gentoo.org/765352
Closes: https://bugs.gentoo.org/864925
Closes: https://bugs.gentoo.org/897286
Closes: https://github.com/gentoo/gentoo/pull/27926

 sys-cluster/crmsh/Manifest   |  1 +
 sys-cluster/crmsh/crmsh-4.5.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/sys-cluster/crmsh/Manifest b/sys-cluster/crmsh/Manifest
index 0f9a946bfcca..b5544bcfcc67 100644
--- a/sys-cluster/crmsh/Manifest
+++ b/sys-cluster/crmsh/Manifest
@@ -1 +1,2 @@
 DIST crmsh-4.2.1.tar.gz 1058921 BLAKE2B 
84d1f8685e792d9f453b2d185ccda4e8c2c9566becd85ed8308c014bd18e1479f601f3e89e4a1c3464c0d5bb797d7ddf9ddff479cd8c4c0d2998fd528f8ecbd2
 SHA512 
df0945f1b977993a0aca89af7c9030bc798aac4397a9d448d47bf68331e8aec83fa6155f2897f3c84573bcdb20fa384a1489b4f1d69fd1a831ece2fdb2b5b321
+DIST crmsh-4.5.0.tar.gz 1210069 BLAKE2B 
078baa9b0c0cadb19f041ad48ffb9588f8c1eff634f115bc9ddd46be7e5c2555a1c493332f6cf01f08c683d39687f0e1e71854f6c56c3e1f30fe712ecb65c772
 SHA512 
f76e41ffc2fc9ac728350f551e658852015c4fd430f69f7a6d0882c265f65ae545f2ef1102bd20349790e46a0a3ec8222947eee6aef73d0afcaf13eb2b3c56a3

diff --git a/sys-cluster/crmsh/crmsh-4.5.0.ebuild 
b/sys-cluster/crmsh/crmsh-4.5.0.ebuild
new file mode 100644
index ..02b052288712
--- /dev/null
+++ b/sys-cluster/crmsh/crmsh-4.5.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10,11} )
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/crmsh/crmsh;
+   inherit git-r3
+   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-single-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-2.1.2"
+RDEPEND="${DEPEND}
+   $(python_gen_cond_dep '
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/parallax[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   ')
+"
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2022-11-25 Thread Sergey Popov
commit: 04a55eab4c4e4b9acc8d4200df1a61ab3da4ce31
Author: Sergey Popov  gentoo  org>
AuthorDate: Fri Nov 25 08:47:12 2022 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Fri Nov 25 08:56:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04a55eab

sys-cluster/crmsh: drop old revisions

Signed-off-by: Sergey Popov  gentoo.org>

 sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild | 45 -
 sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild | 43 ---
 2 files changed, 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..
--- 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} == * ]]; 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..
--- 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} == * ]]; 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
-}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2022-11-25 Thread Sergey Popov
commit: 5fcaa9133fd53f9c404042d284f9d71ebed9086a
Author: Sergey Popov  gentoo  org>
AuthorDate: Fri Nov 25 08:47:34 2022 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Fri Nov 25 08:56:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fcaa913

sys-cluster/crmsh: add support for Python 3.10

Signed-off-by: Sergey Popov  gentoo.org>

 sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild 
b/sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild
index 88ea25ce1490..8267d120dae2 100644
--- a/sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild
+++ b/sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/crmsh/crmsh;



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2022-08-09 Thread Sam James
commit: ef3d28b9ec4691891312c63b9e411d024b1c00ac
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 10 03:29:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 10 03:30:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef3d28b9

sys-cluster/crmsh: switch to python-single-r1

It doesn't support multiple Python implementations
right now but it wasn't using python-r1 correctly
anyway (missing python_setup) and was ignoring
the selected target, just going off /usr/bin/python3.

Closes: https://bugs.gentoo.org/864430
Closes: https://bugs.gentoo.org/863749
Closes: https://bugs.gentoo.org/728152
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild | 46 +
 1 file changed, 46 insertions(+)

diff --git a/sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild 
b/sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild
new file mode 100644
index ..88ea25ce1490
--- /dev/null
+++ b/sys-cluster/crmsh/crmsh-4.2.1-r3.ebuild
@@ -0,0 +1,46 @@
+# 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} == * ]]; then
+   EGIT_REPO_URI="https://github.com/crmsh/crmsh;
+   inherit git-r3
+   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-single-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}
+   $(python_gen_cond_dep '
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/parallax[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   ')
+"
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2022-03-12 Thread Sam James
commit: f2884cffd6f8b05d6324e9f63ed1c672b2b34be1
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 13 05:49:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar 13 05:49:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2884cff

sys-cluster/crmsh: [QA] use eautoreconf

- AUTOTOOLS_AUTORECONF was for autotools-utils.eclass, not autotools.eclass,
  but autotools-utils.eclass (which is gone) wasn't being inherited anyway.
- Use eautoreconf instead of autogen.sh (handles everything we need, plus
  inheriting autotools.eclass guarantees correct dependencies).

Signed-off-by: Sam James  gentoo.org>

 sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild | 43 +
 1 file changed, 43 insertions(+)

diff --git a/sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild 
b/sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild
new file mode 100644
index ..ffab4f2a9c1d
--- /dev/null
+++ b/sys-cluster/crmsh/crmsh-4.2.1-r2.ebuild
@@ -0,0 +1,43 @@
+# 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} == * ]]; 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
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2021-05-08 Thread Sergey Popov
commit: f8e6986ef82aa9c27b63637e655a13b69fcba177
Author: Sergey Popov  gentoo  org>
AuthorDate: Sat May  8 12:38:44 2021 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Sat May  8 12:40:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8e6986e

sys-cluster/crmsh: revision bump, drop old

Bump EAPI to 7
Add missing dependency on dev-python/parallax

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Sergey Popov  gentoo.org>

 sys-cluster/crmsh/{crmsh-4.2.1.ebuild => crmsh-4.2.1-r1.ebuild} | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/sys-cluster/crmsh/crmsh-4.2.1.ebuild 
b/sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild
similarity index 90%
rename from sys-cluster/crmsh/crmsh-4.2.1.ebuild
rename to sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild
index 5fb99ea3b34..6a30d2908fb 100644
--- a/sys-cluster/crmsh/crmsh-4.2.1.ebuild
+++ b/sys-cluster/crmsh/crmsh-4.2.1-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8,9} )
 
@@ -24,14 +24,15 @@ HOMEPAGE="https://crmsh.github.io/;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE=""
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 DEPEND="${PYTHON_DEPS}
>=sys-cluster/pacemaker-1.1.9"
 RDEPEND="${DEPEND}
-   dev-python/lxml[${PYTHON_USEDEP}]"
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/parallax[${PYTHON_USEDEP}]
+"
 
 src_configure() {
./autogen.sh || die



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2021-02-14 Thread Sam James
commit: bf18b3bae4e9d483da45023bb596d3b425a51670
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 14 23:25:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 15 00:32:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf18b3ba

sys-cluster/crmsh: fix double KEYWORDS

Double KEYWORDS lines break tools like ekeyword and Nattka.
As per PMS, blank/empty KEYWORDS is implied by not defining
the variable.

See: https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0105
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/crmsh/crmsh-4.2.1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-cluster/crmsh/crmsh-4.2.1.ebuild 
b/sys-cluster/crmsh/crmsh-4.2.1.ebuild
index 312f01a1ed1..9397c762c64 100644
--- a/sys-cluster/crmsh/crmsh-4.2.1.ebuild
+++ b/sys-cluster/crmsh/crmsh-4.2.1.ebuild
@@ -6,7 +6,6 @@ EAPI=6
 PYTHON_COMPAT=( python3_{7,8,9} )
 
 AUTOTOOLS_AUTORECONF=true
-KEYWORDS=""
 SRC_URI=""
 
 if [[ ${PV} == * ]]; then



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2021-02-08 Thread Alexys Jacob
commit: 032396b10b060a8f70ccef0db1ded63b6321bee5
Author: Alexys Jacob  gentoo  org>
AuthorDate: Mon Feb  8 09:25:06 2021 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Feb  8 09:25:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=032396b1

sys-cluster/crmsh: drop old, bump 4.2.1 fix #758401

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Alexys Jacob  gentoo.org>

 sys-cluster/crmsh/Manifest |  3 +-
 sys-cluster/crmsh/crmsh-3.0.3.ebuild   | 44 --
 .../{crmsh-4.1.0.ebuild => crmsh-4.2.1.ebuild} |  6 +--
 3 files changed, 4 insertions(+), 49 deletions(-)

diff --git a/sys-cluster/crmsh/Manifest b/sys-cluster/crmsh/Manifest
index 1f814bf16f9..0f9a946bfcc 100644
--- a/sys-cluster/crmsh/Manifest
+++ b/sys-cluster/crmsh/Manifest
@@ -1,2 +1 @@
-DIST crmsh-3.0.3.tar.gz 948573 BLAKE2B 
b4acb4420a7f447f0d50115ba449d506d2017e6f29221bd0b1ba45eb790e6472eadc62ff5ac6af367f4d5f2631cae162e770c0a6735dea42367248f2302cdcb4
 SHA512 
9dcb9560f8e23791340454e20f4e1ccd090230337357b93c2029f58ff9754756bc1eca5991c00290b937eeb3b42554989b5d6cc85a2eef5107f250d7acf570d3
-DIST crmsh-4.1.0.tar.gz 1002842 BLAKE2B 
02505d9f10e2ac9525692a727d40a925d99f0035d1e372f0840b3072c4c016b55fced7ccaea8dbad9e475d7868e483e62944dbe45e5533eb4028eeda08b99c58
 SHA512 
3522a28c86069216222eb2efbb258014d74ce838e49885cd527a69d890415ea0899632b4cec095d2fde802b26cd7e673b0e9ea20e8d023fc7c4df140be600ef9
+DIST crmsh-4.2.1.tar.gz 1058921 BLAKE2B 
84d1f8685e792d9f453b2d185ccda4e8c2c9566becd85ed8308c014bd18e1479f601f3e89e4a1c3464c0d5bb797d7ddf9ddff479cd8c4c0d2998fd528f8ecbd2
 SHA512 
df0945f1b977993a0aca89af7c9030bc798aac4397a9d448d47bf68331e8aec83fa6155f2897f3c84573bcdb20fa384a1489b4f1d69fd1a831ece2fdb2b5b321

diff --git a/sys-cluster/crmsh/crmsh-3.0.3.ebuild 
b/sys-cluster/crmsh/crmsh-3.0.3.ebuild
deleted file mode 100644
index 353961fc730..000
--- a/sys-cluster/crmsh/crmsh-3.0.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_7 )
-
-AUTOTOOLS_AUTORECONF=true
-KEYWORDS=""
-SRC_URI=""
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/crmsh/crmsh;
-   inherit git-2
-   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 eutils python-r1
-
-DESCRIPTION="Pacemaker command line interface for management and configuration"
-HOMEPAGE="https://crmsh.github.io/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-   >=sys-cluster/pacemaker-1.1.9"
-RDEPEND="${DEPEND}
-   dev-python/lxml[${PYTHON_USEDEP}]"
-
-src_configure() {
-   ./autogen.sh
-   econf
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-}

diff --git a/sys-cluster/crmsh/crmsh-4.1.0.ebuild 
b/sys-cluster/crmsh/crmsh-4.2.1.ebuild
similarity index 90%
rename from sys-cluster/crmsh/crmsh-4.1.0.ebuild
rename to sys-cluster/crmsh/crmsh-4.2.1.ebuild
index ca548d2da4a..312f01a1ed1 100644
--- a/sys-cluster/crmsh/crmsh-4.1.0.ebuild
+++ b/sys-cluster/crmsh/crmsh-4.2.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 AUTOTOOLS_AUTORECONF=true
 KEYWORDS=""
@@ -11,7 +11,7 @@ SRC_URI=""
 
 if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/crmsh/crmsh;
-   inherit git-2
+   inherit git-3
S="${WORKDIR}/${PN}-${MY_TREE}"
 else
SRC_URI="https://github.com/crmsh/crmsh/archive/${PV}.tar.gz -> 
${P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2020-09-19 Thread Michał Górny
commit: 9decaad483f4ecffb70bbfdc62e6f60f11a04fe6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep 19 11:54:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep 19 12:29:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9decaad4

sys-cluster/crmsh: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 sys-cluster/crmsh/Manifest   |  1 -
 sys-cluster/crmsh/crmsh-2.1.1.ebuild | 55 
 2 files changed, 56 deletions(-)

diff --git a/sys-cluster/crmsh/Manifest b/sys-cluster/crmsh/Manifest
index 5be72de14fa..1f814bf16f9 100644
--- a/sys-cluster/crmsh/Manifest
+++ b/sys-cluster/crmsh/Manifest
@@ -1,3 +1,2 @@
-DIST crmsh-2.1.1.tar.gz 733302 BLAKE2B 
6b6afdb1c3144eccf432e52a16910e7b427384458e720e042900e115d3e2986f2d08ec77acc9ad288e59070d55065e05c46770b0eeaad49a01b17bd93f593051
 SHA512 
556190e4e8da009d5f84f6356eeae2f5a18d8ca19d8c384c01d4d8526f7a20bb9545a08a6abe7cb6d9c33d9ae62ba0ea5df9ff0ae90341a53d9f7b201f5788ae
 DIST crmsh-3.0.3.tar.gz 948573 BLAKE2B 
b4acb4420a7f447f0d50115ba449d506d2017e6f29221bd0b1ba45eb790e6472eadc62ff5ac6af367f4d5f2631cae162e770c0a6735dea42367248f2302cdcb4
 SHA512 
9dcb9560f8e23791340454e20f4e1ccd090230337357b93c2029f58ff9754756bc1eca5991c00290b937eeb3b42554989b5d6cc85a2eef5107f250d7acf570d3
 DIST crmsh-4.1.0.tar.gz 1002842 BLAKE2B 
02505d9f10e2ac9525692a727d40a925d99f0035d1e372f0840b3072c4c016b55fced7ccaea8dbad9e475d7868e483e62944dbe45e5533eb4028eeda08b99c58
 SHA512 
3522a28c86069216222eb2efbb258014d74ce838e49885cd527a69d890415ea0899632b4cec095d2fde802b26cd7e673b0e9ea20e8d023fc7c4df140be600ef9

diff --git a/sys-cluster/crmsh/crmsh-2.1.1.ebuild 
b/sys-cluster/crmsh/crmsh-2.1.1.ebuild
deleted file mode 100644
index b47b5686681..000
--- a/sys-cluster/crmsh/crmsh-2.1.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-AUTOTOOLS_AUTORECONF=true
-KEYWORDS=""
-SRC_URI=""
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/crmsh/crmsh;
-   inherit git-2
-   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-utils python-r1
-
-DESCRIPTION="Pacemaker command line interface for management and configuration"
-HOMEPAGE="https://crmsh.github.io/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-   >=sys-cluster/pacemaker-1.1.8"
-RDEPEND="${DEPEND}
-   dev-python/lxml[${PYTHON_USEDEP}]"
-
-src_prepare() {
-   sed \
-   -e 
's@CRM_CACHE_DIR=${localstatedir}/cache/crm@CRM_CACHE_DIR=${localstatedir}/crmsh@g'
 \
-   -i configure.ac || die
-   autotools-utils_src_prepare
-}
-
-src_configure() {
-   python_foreach_impl autotools-utils_src_configure
-}
-
-src_compile() {
-   python_foreach_impl autotools-utils_src_compile
-}
-
-src_install() {
-   python_foreach_impl autotools-utils_src_install
-   python_replicate_script "${ED}"/usr/sbin/crm
-}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2019-12-12 Thread Alexys Jacob
commit: dae775967e700cfc6ff5700b6a2f3a205236cf4c
Author: Alexys Jacob  gentoo  org>
AuthorDate: Thu Dec 12 22:22:44 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Dec 12 22:23:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae77596

sys-cluster/crmsh: version bump, fix #669568

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Alexys Jacob  gentoo.org>

 sys-cluster/crmsh/Manifest   |  1 +
 sys-cluster/crmsh/crmsh-4.1.0.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/sys-cluster/crmsh/Manifest b/sys-cluster/crmsh/Manifest
index eb327039524..5be72de14fa 100644
--- a/sys-cluster/crmsh/Manifest
+++ b/sys-cluster/crmsh/Manifest
@@ -1,2 +1,3 @@
 DIST crmsh-2.1.1.tar.gz 733302 BLAKE2B 
6b6afdb1c3144eccf432e52a16910e7b427384458e720e042900e115d3e2986f2d08ec77acc9ad288e59070d55065e05c46770b0eeaad49a01b17bd93f593051
 SHA512 
556190e4e8da009d5f84f6356eeae2f5a18d8ca19d8c384c01d4d8526f7a20bb9545a08a6abe7cb6d9c33d9ae62ba0ea5df9ff0ae90341a53d9f7b201f5788ae
 DIST crmsh-3.0.3.tar.gz 948573 BLAKE2B 
b4acb4420a7f447f0d50115ba449d506d2017e6f29221bd0b1ba45eb790e6472eadc62ff5ac6af367f4d5f2631cae162e770c0a6735dea42367248f2302cdcb4
 SHA512 
9dcb9560f8e23791340454e20f4e1ccd090230337357b93c2029f58ff9754756bc1eca5991c00290b937eeb3b42554989b5d6cc85a2eef5107f250d7acf570d3
+DIST crmsh-4.1.0.tar.gz 1002842 BLAKE2B 
02505d9f10e2ac9525692a727d40a925d99f0035d1e372f0840b3072c4c016b55fced7ccaea8dbad9e475d7868e483e62944dbe45e5533eb4028eeda08b99c58
 SHA512 
3522a28c86069216222eb2efbb258014d74ce838e49885cd527a69d890415ea0899632b4cec095d2fde802b26cd7e673b0e9ea20e8d023fc7c4df140be600ef9

diff --git a/sys-cluster/crmsh/crmsh-4.1.0.ebuild 
b/sys-cluster/crmsh/crmsh-4.1.0.ebuild
new file mode 100644
index 000..493af7ad63b
--- /dev/null
+++ b/sys-cluster/crmsh/crmsh-4.1.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+AUTOTOOLS_AUTORECONF=true
+KEYWORDS=""
+SRC_URI=""
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/crmsh/crmsh;
+   inherit git-2
+   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 eutils python-r1
+
+DESCRIPTION="Pacemaker command line interface for management and configuration"
+HOMEPAGE="https://crmsh.github.io/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   >=sys-cluster/pacemaker-1.1.9"
+RDEPEND="${DEPEND}
+   dev-python/lxml[${PYTHON_USEDEP}]"
+
+src_configure() {
+   ./autogen.sh || die
+   econf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   python_foreach_impl python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2018-08-14 Thread Alexys Jacob
commit: 9d60b705cdfb4f0f1af9cb266e5fff56e476c68c
Author: Ultrabug  gentoo  org>
AuthorDate: Tue Aug 14 22:01:52 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Tue Aug 14 22:01:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d60b705

sys-cluster/crmsh: version bump, fixes #612198

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 sys-cluster/crmsh/Manifest   |  1 +
 sys-cluster/crmsh/crmsh-3.0.3.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/sys-cluster/crmsh/Manifest b/sys-cluster/crmsh/Manifest
index 40b85139d71..eb327039524 100644
--- a/sys-cluster/crmsh/Manifest
+++ b/sys-cluster/crmsh/Manifest
@@ -1 +1,2 @@
 DIST crmsh-2.1.1.tar.gz 733302 BLAKE2B 
6b6afdb1c3144eccf432e52a16910e7b427384458e720e042900e115d3e2986f2d08ec77acc9ad288e59070d55065e05c46770b0eeaad49a01b17bd93f593051
 SHA512 
556190e4e8da009d5f84f6356eeae2f5a18d8ca19d8c384c01d4d8526f7a20bb9545a08a6abe7cb6d9c33d9ae62ba0ea5df9ff0ae90341a53d9f7b201f5788ae
+DIST crmsh-3.0.3.tar.gz 948573 BLAKE2B 
b4acb4420a7f447f0d50115ba449d506d2017e6f29221bd0b1ba45eb790e6472eadc62ff5ac6af367f4d5f2631cae162e770c0a6735dea42367248f2302cdcb4
 SHA512 
9dcb9560f8e23791340454e20f4e1ccd090230337357b93c2029f58ff9754756bc1eca5991c00290b937eeb3b42554989b5d6cc85a2eef5107f250d7acf570d3

diff --git a/sys-cluster/crmsh/crmsh-3.0.3.ebuild 
b/sys-cluster/crmsh/crmsh-3.0.3.ebuild
new file mode 100644
index 000..ba5fa913ffa
--- /dev/null
+++ b/sys-cluster/crmsh/crmsh-3.0.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+AUTOTOOLS_AUTORECONF=true
+KEYWORDS=""
+SRC_URI=""
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/crmsh/crmsh;
+   inherit git-2
+   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 eutils python-r1
+
+DESCRIPTION="Pacemaker command line interface for management and configuration"
+HOMEPAGE="https://crmsh.github.io/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   >=sys-cluster/pacemaker-1.1.9"
+RDEPEND="${DEPEND}
+   dev-python/lxml[${PYTHON_USEDEP}]"
+
+src_configure() {
+   ./autogen.sh
+   econf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/crmsh/

2017-07-30 Thread Michał Górny
commit: 316990c9e8f1f572461b34b0e323e28bf04ff5c5
Author: David Hicks  hicks  id  au>
AuthorDate: Sat Jul 29 14:57:10 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 30 09:22:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=316990c9

sys-cluster/crmsh: use HTTPS for GitHub

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-cluster/crmsh/crmsh-2.1.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-cluster/crmsh/crmsh-2.1.1.ebuild 
b/sys-cluster/crmsh/crmsh-2.1.1.ebuild
index 8f5a4f76184..b47b5686681 100644
--- a/sys-cluster/crmsh/crmsh-2.1.1.ebuild
+++ b/sys-cluster/crmsh/crmsh-2.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ KEYWORDS=""
 SRC_URI=""
 
 if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="git://github.com/crmsh/crmsh"
+   EGIT_REPO_URI="https://github.com/crmsh/crmsh;
inherit git-2
S="${WORKDIR}/${PN}-${MY_TREE}"
 else
@@ -21,7 +21,7 @@ fi
 inherit autotools-utils python-r1
 
 DESCRIPTION="Pacemaker command line interface for management and configuration"
-HOMEPAGE="http://crmsh.github.io/;
+HOMEPAGE="https://crmsh.github.io/;
 
 LICENSE="GPL-2"
 SLOT="0"