public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-biology/behaviopy/
@ 2019-04-08  3:22 Horea Christian
  0 siblings, 0 replies; 5+ messages in thread
From: Horea Christian @ 2019-04-08  3:22 UTC (permalink / raw
  To: gentoo-commits

commit:     7acf6c633d2afbe2ddf796ca0920a6dacdf72fcb
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Mon Apr  8 03:22:33 2019 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Apr  8 03:22:33 2019 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=7acf6c63

sci-biology/behaviopy: new package

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>

 sci-biology/behaviopy/behaviopy-0.1.ebuild  | 43 +++++++++++++++++++++++++++
 sci-biology/behaviopy/behaviopy-9999.ebuild | 45 +++++++++++++++++++++++++++++
 sci-biology/behaviopy/metadata.xml          | 26 +++++++++++++++++
 3 files changed, 114 insertions(+)

diff --git a/sci-biology/behaviopy/behaviopy-0.1.ebuild b/sci-biology/behaviopy/behaviopy-0.1.ebuild
new file mode 100644
index 000000000..bbbdd78fb
--- /dev/null
+++ b/sci-biology/behaviopy/behaviopy-0.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Neuroimaging tools for Python"
+HOMEPAGE="https://github.com/TheChymera/behaviopy"
+SRC_URI="https://github.com/TheChymera/behaviopy/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="evaluation test"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="
+	dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/pandas[${PYTHON_USEDEP}]
+	dev-python/seaborn[${PYTHON_USEDEP}]
+	dev-python/statsmodels[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	"
+
+src_prepare() {
+	if ! use evaluation; then
+		rm behaviopy/evaluation.py || die
+	fi
+	default
+}
+
+python_test() {
+	cd behaviopy/examples
+	echo "backend : Agg" > matplotlibrc || die
+	for i in *py; do
+		echo "Executing $i"
+		${EPYTHON} $i || die
+	done
+}

diff --git a/sci-biology/behaviopy/behaviopy-9999.ebuild b/sci-biology/behaviopy/behaviopy-9999.ebuild
new file mode 100644
index 000000000..2aee7c999
--- /dev/null
+++ b/sci-biology/behaviopy/behaviopy-9999.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+
+inherit distutils-r1 git-r3
+
+DESCRIPTION="Neuroimaging tools for Python"
+HOMEPAGE="https://github.com/TheChymera/behaviopy"
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/TheChymera/behaviopy"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="evaluation test"
+KEYWORDS=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="
+	dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/pandas[${PYTHON_USEDEP}]
+	dev-python/seaborn[${PYTHON_USEDEP}]
+	dev-python/statsmodels[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	"
+	#evaluation? ( sci-biology/psychopy[${PYTHON_USEDEP}] )
+
+src_prepare() {
+	if ! use evaluation; then
+		rm behaviopy/evaluation.py || die
+	fi
+	default
+}
+
+python_test() {
+	cd behaviopy/examples
+	echo "backend : Agg" > matplotlibrc || die
+	for i in *py; do
+		echo "Executing $i"
+		${EPYTHON} $i || die
+	done
+}

diff --git a/sci-biology/behaviopy/metadata.xml b/sci-biology/behaviopy/metadata.xml
new file mode 100644
index 000000000..1009f09d0
--- /dev/null
+++ b/sci-biology/behaviopy/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>horea.christ@gmail.com</email>
+		<name>Horea Christian</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>sci@gentoo.org</email>
+		<name>Gentoo Science Project</name>
+	</maintainer>
+	<longdescription lang="en">
+		BehavioPy is a Python toolkit providing evaluation (e.g. event
+		tracking) and plotting functions for behavioural data. Manual event
+		tracking is done via a simple and configurable PsychoPy-based
+		interface. Plotting functions are designed to work with preformatted
+		data in CSV format (e.g. as exported by pandas), and use Seaborn and
+		custom BehavioPy styles for maximum beautification.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">TheChymera/behaviopy</remote-id>
+	</upstream>
+	<use>
+		<flag name="evaluation">Installs evaluation submodule.</flag>
+	</use>
+</pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/behaviopy/
@ 2020-09-25  9:10 Horea Christian
  0 siblings, 0 replies; 5+ messages in thread
From: Horea Christian @ 2020-09-25  9:10 UTC (permalink / raw
  To: gentoo-commits

commit:     942bd2901a8d1513034b68931ca6d884cc759938
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Sep 25 09:10:25 2020 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Sep 25 09:10:25 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=942bd290

sci-biology/behaviopy: PYTHON_COMPAT update

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>

 sci-biology/behaviopy/behaviopy-0.1.ebuild  | 4 ++--
 sci-biology/behaviopy/behaviopy-9999.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-biology/behaviopy/behaviopy-0.1.ebuild b/sci-biology/behaviopy/behaviopy-0.1.ebuild
index 7e42bd9b5..f0fe0ecc0 100644
--- a/sci-biology/behaviopy/behaviopy-0.1.ebuild
+++ b/sci-biology/behaviopy/behaviopy-0.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 

diff --git a/sci-biology/behaviopy/behaviopy-9999.ebuild b/sci-biology/behaviopy/behaviopy-9999.ebuild
index 949372370..41278f431 100644
--- a/sci-biology/behaviopy/behaviopy-9999.ebuild
+++ b/sci-biology/behaviopy/behaviopy-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1 git-r3
 


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/behaviopy/
@ 2020-12-24 11:00 Horea Christian
  0 siblings, 0 replies; 5+ messages in thread
From: Horea Christian @ 2020-12-24 11:00 UTC (permalink / raw
  To: gentoo-commits

commit:     0f10f96bd44edd9eaed4f196f497426cfcbb6aaa
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Dec 24 10:53:14 2020 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Dec 24 10:53:14 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=0f10f96b

sci-biology/behaviopy: conditional test restriction

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian <chr <AT> chymera.eu>

 sci-biology/behaviopy/behaviopy-0.1.ebuild  | 1 +
 sci-biology/behaviopy/behaviopy-9999.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sci-biology/behaviopy/behaviopy-0.1.ebuild b/sci-biology/behaviopy/behaviopy-0.1.ebuild
index f0fe0ecc0..e956a42bd 100644
--- a/sci-biology/behaviopy/behaviopy-0.1.ebuild
+++ b/sci-biology/behaviopy/behaviopy-0.1.ebuild
@@ -15,6 +15,7 @@ LICENSE="GPL-3"
 SLOT="0"
 IUSE="evaluation test"
 KEYWORDS="~amd64 ~x86"
+RESTRICT="!test? ( test )"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="

diff --git a/sci-biology/behaviopy/behaviopy-9999.ebuild b/sci-biology/behaviopy/behaviopy-9999.ebuild
index 41278f431..4fd0132e4 100644
--- a/sci-biology/behaviopy/behaviopy-9999.ebuild
+++ b/sci-biology/behaviopy/behaviopy-9999.ebuild
@@ -16,6 +16,7 @@ LICENSE="GPL-3"
 SLOT="0"
 IUSE="evaluation test"
 KEYWORDS=""
+RESTRICT="!test? ( test )"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/behaviopy/
@ 2022-01-26 17:48 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2022-01-26 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ebf592643df86690bf487221f05b0da15791e9b0
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 26 11:36:52 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Jan 26 11:36:52 2022 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ebf59264

sci-biology/behaviopy: bump to 0.2

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 .../{behaviopy-0.1.ebuild => behaviopy-0.2.ebuild} | 18 ++++-----
 sci-biology/behaviopy/behaviopy-9999.ebuild        | 46 ----------------------
 2 files changed, 8 insertions(+), 56 deletions(-)

diff --git a/sci-biology/behaviopy/behaviopy-0.1.ebuild b/sci-biology/behaviopy/behaviopy-0.2.ebuild
similarity index 77%
rename from sci-biology/behaviopy/behaviopy-0.1.ebuild
rename to sci-biology/behaviopy/behaviopy-0.2.ebuild
index 35bcaab6b..ca6700729 100644
--- a/sci-biology/behaviopy/behaviopy-0.1.ebuild
+++ b/sci-biology/behaviopy/behaviopy-0.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 
@@ -13,11 +13,9 @@ SRC_URI="https://github.com/TheChymera/behaviopy/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="evaluation test"
+IUSE="evaluation"
 KEYWORDS="~amd64 ~x86"
-RESTRICT="!test? ( test )"
 
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
 	dev-python/matplotlib[${PYTHON_USEDEP}]
 	dev-python/numpy[${PYTHON_USEDEP}]
@@ -25,17 +23,17 @@ RDEPEND="
 	dev-python/seaborn[${PYTHON_USEDEP}]
 	dev-python/statsmodels[${PYTHON_USEDEP}]
 	dev-python/scipy[${PYTHON_USEDEP}]
-	"
+"
 
-src_prepare() {
+python_prepare_all() {
 	if ! use evaluation; then
 		rm behaviopy/evaluation.py || die
 	fi
-	default
+	distutils-r1_python_prepare_all
 }
 
 python_test() {
-	cd behaviopy/examples
+	cd behaviopy/examples || die
 	echo "backend : Agg" > matplotlibrc || die
 	for i in *py; do
 		echo "Executing $i"

diff --git a/sci-biology/behaviopy/behaviopy-9999.ebuild b/sci-biology/behaviopy/behaviopy-9999.ebuild
deleted file mode 100644
index a4c087764..000000000
--- a/sci-biology/behaviopy/behaviopy-9999.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Neuroimaging tools for Python"
-HOMEPAGE="https://github.com/TheChymera/behaviopy"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/TheChymera/behaviopy"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="evaluation test"
-KEYWORDS=""
-RESTRICT="!test? ( test )"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-	dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/pandas[${PYTHON_USEDEP}]
-	dev-python/seaborn[${PYTHON_USEDEP}]
-	dev-python/statsmodels[${PYTHON_USEDEP}]
-	dev-python/scipy[${PYTHON_USEDEP}]
-	"
-	#evaluation? ( sci-biology/psychopy[${PYTHON_USEDEP}] )
-
-src_prepare() {
-	if ! use evaluation; then
-		rm behaviopy/evaluation.py || die
-	fi
-	default
-}
-
-python_test() {
-	cd behaviopy/examples
-	echo "backend : Agg" > matplotlibrc || die
-	for i in *py; do
-		echo "Executing $i"
-		${EPYTHON} $i || die
-	done
-}


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/behaviopy/
@ 2024-02-29  2:06 Horea Christian
  0 siblings, 0 replies; 5+ messages in thread
From: Horea Christian @ 2024-02-29  2:06 UTC (permalink / raw
  To: gentoo-commits

commit:     13b5f620d3c2bb529a52a878dec2d91f9f3a732d
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Feb 29 02:03:56 2024 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Feb 29 02:03:56 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=13b5f620

sci-biology/behaviopy: treeclean

Signed-off-by: Horea Christian <chr <AT> chymera.eu>

 sci-biology/behaviopy/behaviopy-0.2.ebuild | 42 ------------------------------
 sci-biology/behaviopy/metadata.xml         | 26 ------------------
 2 files changed, 68 deletions(-)

diff --git a/sci-biology/behaviopy/behaviopy-0.2.ebuild b/sci-biology/behaviopy/behaviopy-0.2.ebuild
deleted file mode 100644
index dc875e7a5..000000000
--- a/sci-biology/behaviopy/behaviopy-0.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_10 )
-
-inherit distutils-r1
-
-DESCRIPTION="Neuroimaging tools for Python"
-HOMEPAGE="https://github.com/TheChymera/behaviopy"
-SRC_URI="https://github.com/TheChymera/behaviopy/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="evaluation"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-python/matplotlib[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/pandas[${PYTHON_USEDEP}]
-	dev-python/seaborn[${PYTHON_USEDEP}]
-	dev-python/statsmodels[${PYTHON_USEDEP}]
-	dev-python/scipy[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-	if ! use evaluation; then
-		rm behaviopy/evaluation.py || die
-	fi
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	cd behaviopy/examples || die
-	echo "backend : Agg" > matplotlibrc || die
-	for i in *py; do
-		echo "Executing $i"
-		${EPYTHON} $i || die
-	done
-}

diff --git a/sci-biology/behaviopy/metadata.xml b/sci-biology/behaviopy/metadata.xml
deleted file mode 100644
index a33886a68..000000000
--- a/sci-biology/behaviopy/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?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">
-		BehavioPy is a Python toolkit providing evaluation (e.g. event
-		tracking) and plotting functions for behavioural data. Manual event
-		tracking is done via a simple and configurable PsychoPy-based
-		interface. Plotting functions are designed to work with preformatted
-		data in CSV format (e.g. as exported by pandas), and use Seaborn and
-		custom BehavioPy styles for maximum beautification.
-	</longdescription>
-	<upstream>
-		<remote-id type="github">TheChymera/behaviopy</remote-id>
-	</upstream>
-	<use>
-		<flag name="evaluation">Installs evaluation submodule.</flag>
-	</use>
-</pkgmetadata>


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

end of thread, other threads:[~2024-02-29  2:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-26 17:48 [gentoo-commits] proj/sci:master commit in: sci-biology/behaviopy/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2024-02-29  2:06 Horea Christian
2020-12-24 11:00 Horea Christian
2020-09-25  9:10 Horea Christian
2019-04-08  3:22 Horea Christian

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