* [gentoo-commits] proj/sci:master commit in: dev-python/pyout/
@ 2022-03-27 5:40 Horea Christian
0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2022-03-27 5:40 UTC (permalink / raw
To: gentoo-commits
commit: 68ff89b3a469dc077d20eb6621b631631b341092
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Sun Mar 27 05:39:20 2022 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Sun Mar 27 05:39:20 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=68ff89b3
dev-python/pyout: new package (DANDI stack)
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/pyout/metadata.xml | 24 ++++++++++++++++++++++++
dev-python/pyout/pyout-0.7.1.ebuild | 32 ++++++++++++++++++++++++++++++++
dev-python/pyout/pyout-0.7.2.ebuild | 32 ++++++++++++++++++++++++++++++++
3 files changed, 88 insertions(+)
diff --git a/dev-python/pyout/metadata.xml b/dev-python/pyout/metadata.xml
new file mode 100644
index 000000000..712a48169
--- /dev/null
+++ b/dev-python/pyout/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@chymera.eu</email>
+ <name>Horea Christian</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
+ </maintainer>
+ <longdescription lang="en">
+ pyout is a Python package that defines an interface for writing
+ structured records as a table in a terminal. It is being developed to
+ replace custom code for displaying tabular data in in ReproMan and
+ DataLad. See the Examples folder for how to get started. A primary
+ goal of the interface is the separation of content from style and
+ presentation.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">pyout/pyout</remote-id>
+ <remote-id type="pypi">pyout</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/pyout/pyout-0.7.1.ebuild b/dev-python/pyout/pyout-0.7.1.ebuild
new file mode 100644
index 000000000..6cf80ec85
--- /dev/null
+++ b/dev-python/pyout/pyout-0.7.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Terminal styling for structured data"
+HOMEPAGE="https://github.com/pyout/pyout"
+SRC_URI="https://github.com/pyout/pyout/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-python/jsonschema[${PYTHON_USEDEP}]
+ dev-python/blessings[${PYTHON_USEDEP}]
+"
+DEPEND="
+ test? (
+ dev-python/pytest-timeout[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ sed -i -e '/pytest-runner/d' setup.py || die
+ distutils-r1_python_prepare_all
+}
diff --git a/dev-python/pyout/pyout-0.7.2.ebuild b/dev-python/pyout/pyout-0.7.2.ebuild
new file mode 100644
index 000000000..6cf80ec85
--- /dev/null
+++ b/dev-python/pyout/pyout-0.7.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Terminal styling for structured data"
+HOMEPAGE="https://github.com/pyout/pyout"
+SRC_URI="https://github.com/pyout/pyout/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-python/jsonschema[${PYTHON_USEDEP}]
+ dev-python/blessings[${PYTHON_USEDEP}]
+"
+DEPEND="
+ test? (
+ dev-python/pytest-timeout[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ sed -i -e '/pytest-runner/d' setup.py || die
+ distutils-r1_python_prepare_all
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pyout/
@ 2023-01-13 7:54 Horea Christian
0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2023-01-13 7:54 UTC (permalink / raw
To: gentoo-commits
commit: 788acfd7df891afac828164f705f11d7ec47b0e1
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Jan 13 07:53:22 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Jan 13 07:53:22 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=788acfd7
dev-python/pyout: corrected dependency error
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/pyout/pyout-0.7.1-r1.ebuild | 2 +-
dev-python/pyout/pyout-0.7.2-r1.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pyout/pyout-0.7.1-r1.ebuild b/dev-python/pyout/pyout-0.7.1-r1.ebuild
index 1cc8a074c..a3093d862 100644
--- a/dev-python/pyout/pyout-0.7.1-r1.ebuild
+++ b/dev-python/pyout/pyout-0.7.1-r1.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/jsonschema[${PYTHON_USEDEP}]
- dev-python/blessings[${PYTHON_USEDEP}]
+ dev-python/blessed[${PYTHON_USEDEP}]
"
DEPEND="
test? (
diff --git a/dev-python/pyout/pyout-0.7.2-r1.ebuild b/dev-python/pyout/pyout-0.7.2-r1.ebuild
index 0437e1baf..c67f67fb0 100644
--- a/dev-python/pyout/pyout-0.7.2-r1.ebuild
+++ b/dev-python/pyout/pyout-0.7.2-r1.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/jsonschema[${PYTHON_USEDEP}]
- dev-python/blessings[${PYTHON_USEDEP}]
+ dev-python/blessed[${PYTHON_USEDEP}]
"
DEPEND="
test? (
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pyout/
@ 2023-01-13 7:54 Horea Christian
0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2023-01-13 7:54 UTC (permalink / raw
To: gentoo-commits
commit: 6f1562a610673d8fd5f9dfa2e2bec0176ab1a802
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Jan 13 07:54:13 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Jan 13 07:54:13 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6f1562a6
dev-python/pyout: restricting tests
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/pyout/pyout-0.7.1-r1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/pyout/pyout-0.7.1-r1.ebuild b/dev-python/pyout/pyout-0.7.1-r1.ebuild
index a3093d862..c7456138d 100644
--- a/dev-python/pyout/pyout-0.7.1-r1.ebuild
+++ b/dev-python/pyout/pyout-0.7.1-r1.ebuild
@@ -13,6 +13,7 @@ SRC_URI="https://github.com/pyout/pyout/archive/refs/tags/v${PV}.tar.gz -> ${P}.
SLOT="0"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
+RESTRICT="test"
RDEPEND="
dev-python/jsonschema[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pyout/
@ 2023-01-13 7:56 Horea Christian
0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2023-01-13 7:56 UTC (permalink / raw
To: gentoo-commits
commit: 6d9769a9e9adeda8103e63911fefca69c1f4e317
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Jan 13 07:56:32 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Jan 13 07:56:32 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6d9769a9
dev-python/pyout: added py3.11
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/pyout/pyout-0.7.1-r1.ebuild | 2 +-
dev-python/pyout/pyout-0.7.2-r1.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pyout/pyout-0.7.1-r1.ebuild b/dev-python/pyout/pyout-0.7.1-r1.ebuild
index c7456138d..9cd796883 100644
--- a/dev-python/pyout/pyout-0.7.1-r1.ebuild
+++ b/dev-python/pyout/pyout-0.7.1-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
DESCRIPTION="Terminal styling for structured data"
diff --git a/dev-python/pyout/pyout-0.7.2-r1.ebuild b/dev-python/pyout/pyout-0.7.2-r1.ebuild
index c67f67fb0..7e262b158 100644
--- a/dev-python/pyout/pyout-0.7.2-r1.ebuild
+++ b/dev-python/pyout/pyout-0.7.2-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
DESCRIPTION="Terminal styling for structured data"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pyout/
@ 2023-12-11 18:15 Horea Christian
0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2023-12-11 18:15 UTC (permalink / raw
To: gentoo-commits
commit: 00cfb167ede281508ec284984092873d3f8e4232
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Dec 11 18:15:38 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Dec 11 18:15:38 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=00cfb167
dev-python/pyout: drop 0.7.1-r1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/pyout/pyout-0.7.1-r1.ebuild | 37 ----------------------------------
1 file changed, 37 deletions(-)
diff --git a/dev-python/pyout/pyout-0.7.1-r1.ebuild b/dev-python/pyout/pyout-0.7.1-r1.ebuild
deleted file mode 100644
index 9cd796883..000000000
--- a/dev-python/pyout/pyout-0.7.1-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
-
-DESCRIPTION="Terminal styling for structured data"
-HOMEPAGE="https://github.com/pyout/pyout"
-SRC_URI="https://github.com/pyout/pyout/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="test"
-
-RDEPEND="
- dev-python/jsonschema[${PYTHON_USEDEP}]
- dev-python/blessed[${PYTHON_USEDEP}]
-"
-DEPEND="
- test? (
- dev-python/pytest-timeout[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-
-PATCHES=( "${FILESDIR}/${PN}-0.7.2-blessed.patch" )
-
-
-python_prepare_all() {
- sed -i -e '/pytest-runner/d' setup.py || die
- distutils-r1_python_prepare_all
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pyout/
@ 2023-12-11 18:15 Horea Christian
0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2023-12-11 18:15 UTC (permalink / raw
To: gentoo-commits
commit: 8570d39f97a43cf127ca82418aa7d8ab53b53572
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Dec 11 18:15:16 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Dec 11 18:15:16 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8570d39f
dev-python/pyout: add 0.7.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/pyout/pyout-0.7.3.ebuild | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/dev-python/pyout/pyout-0.7.3.ebuild b/dev-python/pyout/pyout-0.7.3.ebuild
new file mode 100644
index 000000000..7246139ee
--- /dev/null
+++ b/dev-python/pyout/pyout-0.7.3.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+inherit distutils-r1 pypi
+
+DESCRIPTION="Terminal styling for structured data"
+HOMEPAGE="https://github.com/pyout/pyout"
+#SRC_URI="https://github.com/pyout/pyout/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-python/jsonschema[${PYTHON_USEDEP}]
+ dev-python/blessed[${PYTHON_USEDEP}]
+"
+DEPEND="
+ test? (
+ dev-python/pytest-timeout[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+#PATCHES=( "${FILESDIR}/${PN}-0.7.2-blessed.patch" )
+
+python_prepare_all() {
+ sed -i -e '/pytest-runner/d' setup.py || die
+ distutils-r1_python_prepare_all
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pyout/
@ 2024-09-23 14:22 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2024-09-23 14:22 UTC (permalink / raw
To: gentoo-commits
commit: 69a51d5bf79dbf05c818b8af235af7f187b78272
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 23 14:21:06 2024 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 14:21:06 2024 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=69a51d5b
dev-python/pyout: drop ~x86
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/pyout/pyout-0.7.2-r1.ebuild | 2 +-
dev-python/pyout/pyout-0.7.3.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pyout/pyout-0.7.2-r1.ebuild b/dev-python/pyout/pyout-0.7.2-r1.ebuild
index 7e262b158..724075c17 100644
--- a/dev-python/pyout/pyout-0.7.2-r1.ebuild
+++ b/dev-python/pyout/pyout-0.7.2-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/pyout/pyout/archive/refs/tags/v${PV}.tar.gz -> ${P}.
SLOT="0"
LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
RDEPEND="
dev-python/jsonschema[${PYTHON_USEDEP}]
diff --git a/dev-python/pyout/pyout-0.7.3.ebuild b/dev-python/pyout/pyout-0.7.3.ebuild
index 7246139ee..5dd6cd230 100644
--- a/dev-python/pyout/pyout-0.7.3.ebuild
+++ b/dev-python/pyout/pyout-0.7.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/pyout/pyout"
SLOT="0"
LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
RDEPEND="
dev-python/jsonschema[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-09-23 14:22 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-13 7:54 [gentoo-commits] proj/sci:master commit in: dev-python/pyout/ Horea Christian
-- strict thread matches above, loose matches on Subject: below --
2024-09-23 14:22 Andrew Ammerlaan
2023-12-11 18:15 Horea Christian
2023-12-11 18:15 Horea Christian
2023-01-13 7:56 Horea Christian
2023-01-13 7:54 Horea Christian
2022-03-27 5:40 Horea Christian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox