* [gentoo-commits] proj/sci:master commit in: dev-python/testpath/
@ 2015-09-01 7:57 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-09-01 7:57 UTC (permalink / raw
To: gentoo-commits
commit: a21c9e2f638536a6b51c4be653061bcfcb26a396
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Thu Aug 27 07:44:23 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Aug 27 07:44:23 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a21c9e2f
dev-python/testpath: Make it readable
Package-Manager: portage-2.2.20.1
dev-python/testpath/testpath-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-python/testpath/testpath-9999.ebuild b/dev-python/testpath/testpath-9999.ebuild
index d39a519..2fcac43 100644
--- a/dev-python/testpath/testpath-9999.ebuild
+++ b/dev-python/testpath/testpath-9999.ebuild
@@ -22,4 +22,5 @@ LICENSE="BSD"
SLOT="0"
PATCHES=(
- "${FILESDIR}/${P}"-setup.py.patch)
+ "${FILESDIR}/${P}"-setup.py.patch
+ )
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/testpath/
@ 2015-09-07 6:49 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-09-07 6:49 UTC (permalink / raw
To: gentoo-commits
commit: 748694d00ff85b1b05b545fd46d29e9eaa55483f
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Sep 5 13:17:55 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Sep 5 13:17:55 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=748694d0
dev-python/testpath: Add test and doc use flag
Package-Manager: portage-2.2.20.1
dev-python/testpath/ChangeLog | 3 +++
dev-python/testpath/testpath-9999.ebuild | 34 ++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/dev-python/testpath/ChangeLog b/dev-python/testpath/ChangeLog
index ca3f481..4d8f730 100644
--- a/dev-python/testpath/ChangeLog
+++ b/dev-python/testpath/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 05 Sep 2015; Marius Brehler <marbre@linux.sungazer.de> testpath-9999.ebuild:
+ dev-python/testpath: Add test and doc use flag
+
*testpath-0.2 (12 Aug 2015)
*testpath-9999 (12 Aug 2015)
diff --git a/dev-python/testpath/testpath-9999.ebuild b/dev-python/testpath/testpath-9999.ebuild
index 2fcac43..7253698 100644
--- a/dev-python/testpath/testpath-9999.ebuild
+++ b/dev-python/testpath/testpath-9999.ebuild
@@ -20,7 +20,41 @@ fi
LICENSE="BSD"
SLOT="0"
+IUSE="doc test"
+
+DEPEND="
+ test? (
+ dev-python/pathlib[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ )
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ "
PATCHES=(
"${FILESDIR}/${P}"-setup.py.patch
)
+
+python_prepare_all() {
+ # Prevent un-needed download during build
+ if use doc; then
+ sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/conf.py || die
+ fi
+
+distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C doc html
+}
+
+python_install_all() {
+ use doc && HTML_DOCS=( doc/_build/html/. )
+ distutils-r1_python_install_all
+ }
+
+python_test() {
+ distutils_install_for_testing
+ cd "${TEST_DIR}"/lib || die
+ cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
+ py.test || die
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/testpath/
@ 2015-09-21 19:05 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-09-21 19:05 UTC (permalink / raw
To: gentoo-commits
commit: 2ef42b95962e2c95fe0fb2e5de84c07c074b9b92
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Sep 21 18:07:59 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 18:07:59 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2ef42b95
dev-python/testpath: Add ~x86 to KEYWORDS
Package-Manager: portage-2.2.20.1
dev-python/testpath/ChangeLog | 3 +++
dev-python/testpath/testpath-9999.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-python/testpath/ChangeLog b/dev-python/testpath/ChangeLog
index 4d8f730..1a53cdd 100644
--- a/dev-python/testpath/ChangeLog
+++ b/dev-python/testpath/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 21 Sep 2015; Marius Brehler <marbre@linux.sungazer.de> testpath-9999.ebuild:
+ dev-python/testpath: Add ~x86 to KEYWORDS
+
05 Sep 2015; Marius Brehler <marbre@linux.sungazer.de> testpath-9999.ebuild:
dev-python/testpath: Add test and doc use flag
diff --git a/dev-python/testpath/testpath-9999.ebuild b/dev-python/testpath/testpath-9999.ebuild
index 7253698..395bfd7 100644
--- a/dev-python/testpath/testpath-9999.ebuild
+++ b/dev-python/testpath/testpath-9999.ebuild
@@ -15,7 +15,7 @@ if [ ${PV} == "9999" ] ; then
EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
else
SRC_URI="https://github.com/jupyter/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/testpath/
@ 2015-09-23 10:19 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-09-23 10:19 UTC (permalink / raw
To: gentoo-commits
commit: 78cbe3b4245289371362ac9bb909e491ad27ca75
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Sep 23 06:44:44 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 06:44:44 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=78cbe3b4
dev-python/testpath: Replace symlink
dev-python/testpath/testpath-0.2.ebuild | 55 +++++++++++++++++++++++++++++++-
dev-python/testpath/testpath-9999.ebuild | 13 ++------
2 files changed, 57 insertions(+), 11 deletions(-)
diff --git a/dev-python/testpath/testpath-0.2.ebuild b/dev-python/testpath/testpath-0.2.ebuild
deleted file mode 120000
index 07bd68e..0000000
--- a/dev-python/testpath/testpath-0.2.ebuild
+++ /dev/null
@@ -1 +0,0 @@
-testpath-9999.ebuild
\ No newline at end of file
diff --git a/dev-python/testpath/testpath-0.2.ebuild b/dev-python/testpath/testpath-0.2.ebuild
new file mode 100644
index 0000000..df61d95
--- /dev/null
+++ b/dev-python/testpath/testpath-0.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Test utilities for code working with files and commands"
+HOMEPAGE="http://jupyter.org"
+SRC_URI="https://github.com/jupyter/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="doc test"
+
+DEPEND="
+ test? (
+ dev-python/pathlib[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ )
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ "
+
+PATCHES=(
+ "${FILESDIR}/${P}"-setup.py.patch
+ )
+
+python_prepare_all() {
+ # Prevent un-needed download during build
+ if use doc; then
+ sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/conf.py || die
+ fi
+
+distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C doc html
+}
+
+python_install_all() {
+ use doc && HTML_DOCS=( doc/_build/html/. )
+ distutils-r1_python_install_all
+ }
+
+python_test() {
+ distutils_install_for_testing
+ cd "${TEST_DIR}"/lib || die
+ cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
+ py.test || die
+}
diff --git a/dev-python/testpath/testpath-9999.ebuild b/dev-python/testpath/testpath-9999.ebuild
index 395bfd7..61ceb0c 100644
--- a/dev-python/testpath/testpath-9999.ebuild
+++ b/dev-python/testpath/testpath-9999.ebuild
@@ -5,18 +5,11 @@
EAPI=5
PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
-inherit distutils-r1
+inherit distutils-r1 git-r3
DESCRIPTION="Test utilities for code working with files and commands"
HOMEPAGE="http://jupyter.org"
-
-if [ ${PV} == "9999" ] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
-else
- SRC_URI="https://github.com/jupyter/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
+EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
LICENSE="BSD"
SLOT="0"
@@ -31,7 +24,7 @@ DEPEND="
"
PATCHES=(
- "${FILESDIR}/${P}"-setup.py.patch
+ "${FILESDIR}/${PN}"-0.2-setup.py.patch
)
python_prepare_all() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/testpath/
@ 2015-10-21 13:44 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-10-21 13:44 UTC (permalink / raw
To: gentoo-commits
commit: effea706c224c2a4d9904dbeb99553ffe32ac99f
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 21 12:29:05 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Oct 21 12:29:05 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=effea706
dev-python/testpath: Add python3.5 support
Use virtual package for pathlib support
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/testpath/testpath-0.2.ebuild | 5 +++--
dev-python/testpath/testpath-9999.ebuild | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/dev-python/testpath/testpath-0.2.ebuild b/dev-python/testpath/testpath-0.2.ebuild
index df61d95..a3ee765 100644
--- a/dev-python/testpath/testpath-0.2.ebuild
+++ b/dev-python/testpath/testpath-0.2.ebuild
@@ -3,7 +3,8 @@
# $Id$
EAPI=5
-PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
inherit distutils-r1
@@ -18,8 +19,8 @@ IUSE="doc test"
DEPEND="
test? (
- dev-python/pathlib[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
+ virtual/python-pathlib[${PYTHON_USEDEP}]
)
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
"
diff --git a/dev-python/testpath/testpath-9999.ebuild b/dev-python/testpath/testpath-9999.ebuild
index 61ceb0c..90b4b70 100644
--- a/dev-python/testpath/testpath-9999.ebuild
+++ b/dev-python/testpath/testpath-9999.ebuild
@@ -3,7 +3,8 @@
# $Id$
EAPI=5
-PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
inherit distutils-r1 git-r3
@@ -17,8 +18,8 @@ IUSE="doc test"
DEPEND="
test? (
- dev-python/pathlib[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
+ virtual/python-pathlib[${PYTHON_USEDEP}]
)
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/testpath/
@ 2015-11-28 17:58 Marius Brehler
0 siblings, 0 replies; 7+ messages in thread
From: Marius Brehler @ 2015-11-28 17:58 UTC (permalink / raw
To: gentoo-commits
commit: 708ddd341f8315b32ab21aac63ab2b16a4743bb1
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Nov 28 17:49:33 2015 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Sat Nov 28 17:49:33 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=708ddd34
dev-python/testpath: Moved to tree
Package-Manager: portage-2.2.20.1
dev-python/testpath/ChangeLog | 4 +++
dev-python/testpath/testpath-0.2.ebuild | 55 ---------------------------------
2 files changed, 4 insertions(+), 55 deletions(-)
diff --git a/dev-python/testpath/ChangeLog b/dev-python/testpath/ChangeLog
index 1a53cdd..edc631f 100644
--- a/dev-python/testpath/ChangeLog
+++ b/dev-python/testpath/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 28 Nov 2015; Marius Brehler <marbre@linux.sungazer.de> -Manifest,
+ -testpath-0.2.ebuild:
+ dev-python/testpath: Moved to tree
+
21 Sep 2015; Marius Brehler <marbre@linux.sungazer.de> testpath-9999.ebuild:
dev-python/testpath: Add ~x86 to KEYWORDS
diff --git a/dev-python/testpath/testpath-0.2.ebuild b/dev-python/testpath/testpath-0.2.ebuild
deleted file mode 100644
index a3ee765..0000000
--- a/dev-python/testpath/testpath-0.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Test utilities for code working with files and commands"
-HOMEPAGE="http://jupyter.org"
-SRC_URI="https://github.com/jupyter/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-
-DEPEND="
- test? (
- dev-python/pytest[${PYTHON_USEDEP}]
- virtual/python-pathlib[${PYTHON_USEDEP}]
- )
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- "
-
-PATCHES=(
- "${FILESDIR}/${P}"-setup.py.patch
- )
-
-python_prepare_all() {
- # Prevent un-needed download during build
- if use doc; then
- sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/conf.py || die
- fi
-
-distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C doc html
-}
-
-python_install_all() {
- use doc && HTML_DOCS=( doc/_build/html/. )
- distutils-r1_python_install_all
- }
-
-python_test() {
- distutils_install_for_testing
- cd "${TEST_DIR}"/lib || die
- cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
- py.test || die
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/testpath/
@ 2017-01-03 10:30 Marius Brehler
0 siblings, 0 replies; 7+ messages in thread
From: Marius Brehler @ 2017-01-03 10:30 UTC (permalink / raw
To: gentoo-commits
commit: a88c9d8405be4813a16e26a861f3abf47693ac45
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jan 3 10:22:54 2017 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jan 3 10:22:54 2017 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a88c9d84
dev-python/testpath: Drop python3_3
Package-Manager: portage-2.3.0
dev-python/testpath/testpath-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/testpath/testpath-9999.ebuild b/dev-python/testpath/testpath-9999.ebuild
index a09e256..6eb6da8 100644
--- a/dev-python/testpath/testpath-9999.ebuild
+++ b/dev-python/testpath/testpath-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
inherit distutils-r1 git-r3
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2017-01-03 10:31 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-21 19:05 [gentoo-commits] proj/sci:master commit in: dev-python/testpath/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2017-01-03 10:30 Marius Brehler
2015-11-28 17:58 Marius Brehler
2015-10-21 13:44 Justin Lecher
2015-09-23 10:19 Justin Lecher
2015-09-07 6:49 Justin Lecher
2015-09-01 7:57 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox