public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/scikits_video/
@ 2020-01-22 17:05 Horea Christian
  0 siblings, 0 replies; 5+ messages in thread
From: Horea Christian @ 2020-01-22 17:05 UTC (permalink / raw
  To: gentoo-commits

commit:     ba986337c26256d1c44280ba5c79b1ef572010f9
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Wed Jan 22 17:05:31 2020 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Wed Jan 22 17:05:31 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ba986337

sci-libs/scikits_video: new package

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

 sci-libs/scikits_video/ChangeLog                   |  5 +++
 sci-libs/scikits_video/metadata.xml                | 18 ++++++++++
 .../scikits_video-1.1.11_p20200114.ebuild          | 39 ++++++++++++++++++++++
 3 files changed, 62 insertions(+)

diff --git a/sci-libs/scikits_video/ChangeLog b/sci-libs/scikits_video/ChangeLog
new file mode 100644
index 000000000..596bd05b6
--- /dev/null
+++ b/sci-libs/scikits_video/ChangeLog
@@ -0,0 +1,5 @@
+*scikits_video-1.1.11_p20200114 (20 Jan 2020)
+
+  20 Jan 2020;  <chymera@gentoo.org> +metadata.xml,
+  +scikits_video-1.1.11_p20200114.ebuild:
+  sci-libs/scikits_video: new package

diff --git a/sci-libs/scikits_video/metadata.xml b/sci-libs/scikits_video/metadata.xml
new file mode 100644
index 000000000..186bb5c9c
--- /dev/null
+++ b/sci-libs/scikits_video/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>sci@gentoo.org</email>
+		<name>Gentoo Science Project</name>
+	</maintainer>
+	<longdescription lang="en">
+		Scikit-video is designed for easy video processing using Python. It is
+		modeled in the spirit of other successful scikits such as scikit-learn
+		and scikit-image. This project aims to provide an all-in-one solution to
+		make video algorithms easy to access for students, engineers,
+		instructors, and researchers.
+	</longdescription>
+	<upstream>
+		<remote-id type="pypi">scikit-video</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/sci-libs/scikits_video/scikits_video-1.1.11_p20200114.ebuild b/sci-libs/scikits_video/scikits_video-1.1.11_p20200114.ebuild
new file mode 100644
index 000000000..f3ed6952f
--- /dev/null
+++ b/sci-libs/scikits_video/scikits_video-1.1.11_p20200114.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1 eutils virtualx
+
+MY_PN="scikit-video"
+MY_HASH="66919e0828410938a4d52f37987b07f7f5de96af"
+
+DESCRIPTION="Video processing in Python"
+HOMEPAGE="https://scikit-image.org/"
+SRC_URI="https://github.com/scikit-video/scikit-video/archive/${MY_HASH}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	|| ( media-video/ffmpeg media-video/libav )
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	sci-libs/scikits_learn[${PYTHON_USEDEP}]
+	media-video/mediainfo
+"
+DEPEND="${RDEPEND}
+	test? (	dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}/${MY_PN}-${MY_HASH}"
+
+python_test() {
+	nosetests -v || die
+}


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/scikits_video/
@ 2020-12-31 13:51 Aisha Tammy
  0 siblings, 0 replies; 5+ messages in thread
From: Aisha Tammy @ 2020-12-31 13:51 UTC (permalink / raw
  To: gentoo-commits

commit:     b66d862be70911b9031becfa49e2e693831e5596
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Dec 31 13:49:58 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Dec 31 13:49:58 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=b66d862b

sci-libs/scikits_video: also add python3.9

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild b/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
index 379c4588a..82bcca8d5 100644
--- a/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
+++ b/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1 eutils
 


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/scikits_video/
@ 2020-12-31 13:51 Aisha Tammy
  0 siblings, 0 replies; 5+ messages in thread
From: Aisha Tammy @ 2020-12-31 13:51 UTC (permalink / raw
  To: gentoo-commits

commit:     099efdd601fac560d245ad3b1c58aff9395ad7ff
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Dec 31 12:50:34 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Dec 31 13:42:06 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=099efdd6

sci-libs/scikits_video: remove dep on libav, bump py targets

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
Closes: https://github.com/gentoo/sci/pull/1018
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 ...4.ebuild => scikits_video-1.1.11_p20200115.ebuild} | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

diff --git a/sci-libs/scikits_video/scikits_video-1.1.11_p20200114.ebuild b/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
similarity index 60%
rename from sci-libs/scikits_video/scikits_video-1.1.11_p20200114.ebuild
rename to sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
index b79acdf18..379c4588a 100644
--- a/sci-libs/scikits_video/scikits_video-1.1.11_p20200114.ebuild
+++ b/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
@@ -3,12 +3,12 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{7,8} )
 
-inherit distutils-r1 eutils virtualx
+inherit distutils-r1 eutils
 
 MY_PN="scikit-video"
-MY_HASH="66919e0828410938a4d52f37987b07f7f5de96af"
+MY_HASH="87c7113a84b50679d9853ba81ba34b557f516b05"
 
 DESCRIPTION="Video processing in Python"
 HOMEPAGE="https://scikit-image.org/"
@@ -16,24 +16,17 @@ SRC_URI="https://github.com/scikit-video/scikit-video/archive/${MY_HASH}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
+KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
-	|| ( media-video/ffmpeg media-video/libav )
+	media-video/ffmpeg
 	dev-python/numpy[${PYTHON_USEDEP}]
 	dev-python/scipy[${PYTHON_USEDEP}]
 	dev-python/pillow[${PYTHON_USEDEP}]
 	sci-libs/scikit-learn[${PYTHON_USEDEP}]
 	media-video/mediainfo
 "
-DEPEND="${RDEPEND}
-	test? (	dev-python/pytest[${PYTHON_USEDEP}] )
-"
 
 S="${WORKDIR}/${MY_PN}-${MY_HASH}"
 
-python_test() {
-	nosetests -v || die
-}
+distutils_enable_tests pytest


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/scikits_video/
@ 2021-05-08 14:30 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2021-05-08 14:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ab84a67f93c565f6e64e1ce12e234bf52c8ae5b3
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat May  8 14:27:40 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat May  8 14:27:40 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ab84a67f

sci-libs/scikits_video: drop eutils

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild b/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
index 82bcca8d5..bb8efaa24 100644
--- a/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
+++ b/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8,9} )
 
-inherit distutils-r1 eutils
+inherit distutils-r1
 
 MY_PN="scikit-video"
 MY_HASH="87c7113a84b50679d9853ba81ba34b557f516b05"


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/scikits_video/
@ 2023-05-02 12:15 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2023-05-02 12:15 UTC (permalink / raw
  To: gentoo-commits

commit:     7673453f6db5296bc8372a25b475de2176a4aa61
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue May  2 12:13:36 2023 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue May  2 12:15:27 2023 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=7673453f

sci-libs/scikits_video: treeclean

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-libs/scikits_video/metadata.xml                | 19 -------------
 .../scikits_video-1.1.11_p20200115.ebuild          | 32 ----------------------
 2 files changed, 51 deletions(-)

diff --git a/sci-libs/scikits_video/metadata.xml b/sci-libs/scikits_video/metadata.xml
deleted file mode 100644
index bdfe14284..000000000
--- a/sci-libs/scikits_video/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sci@gentoo.org</email>
-		<name>Gentoo Science Project</name>
-	</maintainer>
-	<longdescription lang="en">
-		Scikit-video is designed for easy video processing using Python. It is
-		modeled in the spirit of other successful scikits such as scikit-learn
-		and scikit-image. This project aims to provide an all-in-one solution to
-		make video algorithms easy to access for students, engineers,
-		instructors, and researchers.
-	</longdescription>
-	<upstream>
-		<remote-id type="pypi">scikit-video</remote-id>
-		<remote-id type="github">scikit-video/scikit-video</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild b/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
deleted file mode 100644
index bb8efaa24..000000000
--- a/sci-libs/scikits_video/scikits_video-1.1.11_p20200115.ebuild
+++ /dev/null
@@ -1,32 +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} )
-
-inherit distutils-r1
-
-MY_PN="scikit-video"
-MY_HASH="87c7113a84b50679d9853ba81ba34b557f516b05"
-
-DESCRIPTION="Video processing in Python"
-HOMEPAGE="https://scikit-image.org/"
-SRC_URI="https://github.com/scikit-video/scikit-video/archive/${MY_HASH}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	media-video/ffmpeg
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/scipy[${PYTHON_USEDEP}]
-	dev-python/pillow[${PYTHON_USEDEP}]
-	sci-libs/scikit-learn[${PYTHON_USEDEP}]
-	media-video/mediainfo
-"
-
-S="${WORKDIR}/${MY_PN}-${MY_HASH}"
-
-distutils_enable_tests pytest


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

end of thread, other threads:[~2023-05-02 12:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-02 12:15 [gentoo-commits] proj/sci:master commit in: sci-libs/scikits_video/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2021-05-08 14:30 Andrew Ammerlaan
2020-12-31 13:51 Aisha Tammy
2020-12-31 13:51 Aisha Tammy
2020-01-22 17:05 Horea Christian

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