From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/testpath/
Date: Wed, 16 May 2018 15:58:17 +0000 (UTC) [thread overview]
Message-ID: <1526486217.4edfca6c7b2111b778b86084e1d3be8ce44f362f.asturm@gentoo> (raw)
commit: 4edfca6c7b2111b778b86084e1d3be8ce44f362f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 13:42:36 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May 16 15:56:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4edfca6c
dev-python/testpath: Drop old
Package-Manager: Portage-2.3.36, Repoman-2.3.9
dev-python/testpath/Manifest | 2 --
dev-python/testpath/testpath-0.2.ebuild | 54 ---------------------------------
dev-python/testpath/testpath-0.3.ebuild | 54 ---------------------------------
3 files changed, 110 deletions(-)
diff --git a/dev-python/testpath/Manifest b/dev-python/testpath/Manifest
index b56b846a333..631cb2c9ded 100644
--- a/dev-python/testpath/Manifest
+++ b/dev-python/testpath/Manifest
@@ -1,3 +1 @@
-DIST testpath-0.2.tar.gz 13732 BLAKE2B e7a20fdbef3dff25d8e2072167d4eb078832c7b55057dbd6fa5f38dbbc3a84304eeb817b9a5294fc4215df56563906da0288ef2c349f14c9afb72ac5561337b2 SHA512 cc211bdc8f31ff4c286324e37bbce7fd84e19447d9735f396ce67f7568dd1d133be732c1fd7a08928c94566279d0f293a0caeed6a58ae6cd3dc293035fe164ea
DIST testpath-0.3.1.tar.gz 91333 BLAKE2B 86787b9677e8baa6d45fb5e6f047f2ab448e385201f20af3a3a9f33d6edd6c67e4eec09c178e815626096ad77d417ef99ddee562bf0fd7947b3f7ae1862f8156 SHA512 ab826cfb76d9a3ed6f1b178240f6bf61439bd792be26b5ad407b5c3efaa455b48965ceaf17e4ca6a4bc706465a8ed1c6c31a1572df5beeea2bb8db7814dc04f0
-DIST testpath-0.3.tar.gz 91250 BLAKE2B 88ea7ad9c67eef9aaa49e435a4d56d86b8c87818a416f3630f8d34aecd85f478aff778b1fc3c13f1ad0aafb524dc649393a73ebfb6f74dd3391548f36f1c2e4d SHA512 71a3266e17616c4df4a4c465151e9d48b89f573e4562132e85982b62446396884a270a32b5d4956aac1f0be1a00096cab9d0dc1718ae8b6312b0436eca683bdf
diff --git a/dev-python/testpath/testpath-0.2.ebuild b/dev-python/testpath/testpath-0.2.ebuild
deleted file mode 100644
index 8200f6e2480..00000000000
--- a/dev-python/testpath/testpath-0.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{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"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-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
-}
diff --git a/dev-python/testpath/testpath-0.3.ebuild b/dev-python/testpath/testpath-0.3.ebuild
deleted file mode 100644
index efa5591fab2..00000000000
--- a/dev-python/testpath/testpath-0.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-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"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc test"
-
-DEPEND="
- test? (
- dev-python/pytest[${PYTHON_USEDEP}]
- virtual/python-pathlib[${PYTHON_USEDEP}]
- )
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- "
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.2-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
-}
next reply other threads:[~2018-05-16 15:58 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-16 15:58 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-15 7:12 [gentoo-commits] repo/gentoo:master commit in: dev-python/testpath/ Michał Górny
2024-10-14 12:42 Michał Górny
2024-05-08 18:31 Michał Górny
2023-05-23 15:42 Michał Górny
2023-05-23 15:42 Michał Górny
2022-09-19 6:42 Michał Górny
2022-05-09 20:38 Michał Górny
2022-03-15 14:26 Michał Górny
2022-03-15 13:31 Jakov Smolić
2022-02-23 21:30 Michał Górny
2022-01-27 10:02 Michał Górny
2021-09-28 21:29 James Le Cuirot
2021-06-29 5:53 Yixun Lan
2021-06-24 8:20 Michał Górny
2021-06-24 4:26 Agostino Sarubbo
2021-05-22 10:52 Michał Górny
2021-05-17 18:06 Michał Górny
2020-11-28 15:26 Sam James
2020-11-28 15:26 Sam James
2020-08-01 8:53 Sergei Trofimovich
2020-07-28 17:28 Sergei Trofimovich
2020-07-25 14:08 Sam James
2020-07-11 22:43 Sam James
2020-06-10 8:11 Michał Górny
2020-06-04 6:35 Agostino Sarubbo
2020-06-04 6:23 Agostino Sarubbo
2020-06-03 15:17 Agostino Sarubbo
2020-06-01 11:12 Michał Górny
2020-05-31 10:04 Sergei Trofimovich
2020-05-27 6:11 Michał Górny
2020-05-17 18:01 Sergei Trofimovich
2020-03-17 2:09 Matt Turner
2020-03-04 5:01 Michał Górny
2020-03-02 11:30 Sergei Trofimovich
2020-03-02 11:10 Sergei Trofimovich
2020-02-22 14:19 Sergei Trofimovich
2020-02-20 9:42 Michał Górny
2020-02-07 7:28 Sergei Trofimovich
2020-02-06 21:11 Sergei Trofimovich
2020-02-06 6:38 Michał Górny
2019-12-06 22:41 Sergei Trofimovich
2019-12-04 20:05 Patrick McLean
2019-12-04 3:14 Patrick McLean
2019-03-23 19:58 Matthew Thode
2018-09-06 22:41 Louis Sautier
2018-08-31 22:01 Louis Sautier
2018-05-16 12:28 Agostino Sarubbo
2018-04-22 1:35 Thomas Deutschmann
2018-03-12 0:51 Matt Turner
2018-03-04 22:40 Sergei Trofimovich
2017-06-19 11:13 Alexis Ballier
2017-03-11 3:43 Zac Medico
2016-02-05 19:45 Justin Lecher
2015-11-28 17:33 Justin Lecher
2015-11-28 17:33 Justin Lecher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1526486217.4edfca6c7b2111b778b86084e1d3be8ce44f362f.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox