public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/parallax/
@ 2021-05-08 12:43 Sergey Popov
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov @ 2021-05-08 12:43 UTC (permalink / raw
  To: gentoo-commits

commit:     4fb84943692d2841cfbf6618a4110e67d7bcc5b8
Author:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Sat May  8 12:35:35 2021 +0000
Commit:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Sat May  8 12:36:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fb84943

dev-python/parallax: new package

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

 dev-python/parallax/Manifest              |  1 +
 dev-python/parallax/metadata.xml          | 17 +++++++++++++++++
 dev-python/parallax/parallax-1.0.6.ebuild | 15 +++++++++++++++
 3 files changed, 33 insertions(+)

diff --git a/dev-python/parallax/Manifest b/dev-python/parallax/Manifest
new file mode 100644
index 00000000000..38fb9661bf7
--- /dev/null
+++ b/dev-python/parallax/Manifest
@@ -0,0 +1 @@
+DIST parallax-1.0.6.tar.gz 17371 BLAKE2B 7540b7248ddeecbef79bf6d302043c48e5aa228a9c217aa0df3161d399d326d8e5da7e06906ac1bd715976dd65d5282302c73df84d00d64de525e4e16a37ffdd SHA512 01f45d5fd801b5525adec12655e620219f8c2ccb9390b82ca78f19a7489278121dd45de6be387034da3691d9ccb1e8f912859c31e85a82bccd1a789da830349e

diff --git a/dev-python/parallax/metadata.xml b/dev-python/parallax/metadata.xml
new file mode 100644
index 00000000000..2e1f379a2b4
--- /dev/null
+++ b/dev-python/parallax/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>pinkbyte@gentoo.org</email>
+		<name>Sergey Popov</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>cluster@gentoo.org</email>
+		<name>Gentoo Cluster Project</name>
+	</maintainer>
+	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="github">krig/parallax</remote-id>
+		<remote-id type="pypi">parallax</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/parallax/parallax-1.0.6.ebuild b/dev-python/parallax/parallax-1.0.6.ebuild
new file mode 100644
index 00000000000..fb448516f78
--- /dev/null
+++ b/dev-python/parallax/parallax-1.0.6.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="Execute commands and copy files over SSH to multiple machines at once"
+HOMEPAGE="https://github.com/krig/parallax/"
+SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/parallax/
@ 2022-11-25  8:56 Sergey Popov
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov @ 2022-11-25  8:56 UTC (permalink / raw
  To: gentoo-commits

commit:     be682d8b592c3bac026b7c05e10666181574ce51
Author:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 25 08:54:50 2022 +0000
Commit:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 08:56:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be682d8b

dev-python/parallax: restrict tests, cause they requires SSH connection to prepared test hosts

Closes: https://bugs.gentoo.org/798165
Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>

 dev-python/parallax/parallax-1.0.6.ebuild | 5 ++++-
 dev-python/parallax/parallax-1.0.8.ebuild | 3 +++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/parallax/parallax-1.0.6.ebuild b/dev-python/parallax/parallax-1.0.6.ebuild
index fb448516f786..7bec7df007d0 100644
--- a/dev-python/parallax/parallax-1.0.6.ebuild
+++ b/dev-python/parallax/parallax-1.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,3 +13,6 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 LICENSE="all-rights-reserved"
 SLOT="0"
 KEYWORDS="~amd64 ~hppa ~x86"
+
+# Requires SSH connection to hosts for testing
+RESTRICT="test"

diff --git a/dev-python/parallax/parallax-1.0.8.ebuild b/dev-python/parallax/parallax-1.0.8.ebuild
index 000f4bdd83b1..bb2624bfdb96 100644
--- a/dev-python/parallax/parallax-1.0.8.ebuild
+++ b/dev-python/parallax/parallax-1.0.8.ebuild
@@ -13,3 +13,6 @@ SRC_URI="https://github.com/krig/parallax/archive/refs/tags/${PV}.tar.gz -> ${P}
 LICENSE="all-rights-reserved"
 SLOT="0"
 KEYWORDS="~amd64 ~hppa ~x86"
+
+# Requires SSH connection to hosts for testing
+RESTRICT="test"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/parallax/
@ 2022-11-25  8:56 Sergey Popov
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov @ 2022-11-25  8:56 UTC (permalink / raw
  To: gentoo-commits

commit:     ad3734c428f0438153f7faf4aa066d27db20cbf1
Author:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 25 08:38:49 2022 +0000
Commit:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 08:56:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad3734c4

dev-python/parallax: version bump

Closes: https://bugs.gentoo.org/845771
Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>

 dev-python/parallax/Manifest              |  1 +
 dev-python/parallax/parallax-1.0.8.ebuild | 15 +++++++++++++++
 2 files changed, 16 insertions(+)

diff --git a/dev-python/parallax/Manifest b/dev-python/parallax/Manifest
index 38fb9661bf72..38ad05317506 100644
--- a/dev-python/parallax/Manifest
+++ b/dev-python/parallax/Manifest
@@ -1 +1,2 @@
 DIST parallax-1.0.6.tar.gz 17371 BLAKE2B 7540b7248ddeecbef79bf6d302043c48e5aa228a9c217aa0df3161d399d326d8e5da7e06906ac1bd715976dd65d5282302c73df84d00d64de525e4e16a37ffdd SHA512 01f45d5fd801b5525adec12655e620219f8c2ccb9390b82ca78f19a7489278121dd45de6be387034da3691d9ccb1e8f912859c31e85a82bccd1a789da830349e
+DIST parallax-1.0.8.gh.tar.gz 15921 BLAKE2B af82ef5ab0d74f3df242e53385c646fc0fb9e43883f64854245922d443161259b53bfbc069f24081be0dbf4a9f2fac023c34b889041b88e0abfb9fe5a607eb5b SHA512 8b8d16d84af374691ba77714246545da661c73ac6f4f53f4b8221085e0f3d64e18f2a986749f5d98f5285e89da792d4600d05681fc0267242656bfed0b9da621

diff --git a/dev-python/parallax/parallax-1.0.8.ebuild b/dev-python/parallax/parallax-1.0.8.ebuild
new file mode 100644
index 000000000000..000f4bdd83b1
--- /dev/null
+++ b/dev-python/parallax/parallax-1.0.8.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+inherit distutils-r1
+
+DESCRIPTION="Execute commands and copy files over SSH to multiple machines at once"
+HOMEPAGE="https://github.com/krig/parallax/"
+SRC_URI="https://github.com/krig/parallax/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/parallax/
@ 2023-02-09 18:04 Sergey Popov
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov @ 2023-02-09 18:04 UTC (permalink / raw
  To: gentoo-commits

commit:     da1fb599a19523e2929aedfd1eeade925c36405f
Author:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  9 18:04:22 2023 +0000
Commit:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Thu Feb  9 18:04:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da1fb599

dev-python/parallax: remove myself from maintainers

Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>

 dev-python/parallax/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dev-python/parallax/metadata.xml b/dev-python/parallax/metadata.xml
index 17ba73f46621..cbc70ccfc33d 100644
--- a/dev-python/parallax/metadata.xml
+++ b/dev-python/parallax/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>pinkbyte@gentoo.org</email>
-		<name>Sergey Popov</name>
-	</maintainer>
 	<maintainer type="project">
 		<email>cluster@gentoo.org</email>
 		<name>Gentoo Cluster Project</name>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/parallax/
@ 2024-07-30  8:00 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2024-07-30  8:00 UTC (permalink / raw
  To: gentoo-commits

commit:     c0a714ecaa8fbf47fb70a182159c31b89ea11337
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 30 07:49:50 2024 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jul 30 07:59:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a714ec

dev-python/parallax: enable py3.12

Closes: https://bugs.gentoo.org/929476
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 dev-python/parallax/parallax-1.0.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/parallax/parallax-1.0.8.ebuild b/dev-python/parallax/parallax-1.0.8.ebuild
index 2500aac1398d..03bf3021e511 100644
--- a/dev-python/parallax/parallax-1.0.8.ebuild
+++ b/dev-python/parallax/parallax-1.0.8.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit distutils-r1
 
 DESCRIPTION="Execute commands and copy files over SSH to multiple machines at once"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-07-30  8:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-30  8:00 [gentoo-commits] repo/gentoo:master commit in: dev-python/parallax/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2023-02-09 18:04 Sergey Popov
2022-11-25  8:56 Sergey Popov
2022-11-25  8:56 Sergey Popov
2021-05-08 12:43 Sergey Popov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox