From 1798c4aeca70ac8d0a243684d6a798fbc65735f8 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:57:42 +0100 Subject: gentoo resync : 14.07.2018 --- dev-python/testpath/Manifest | 4 -- .../testpath/files/testpath-0.2-setup.py.patch | 28 ------------- dev-python/testpath/metadata.xml | 17 -------- dev-python/testpath/testpath-0.3.1.ebuild | 49 ---------------------- 4 files changed, 98 deletions(-) delete mode 100644 dev-python/testpath/Manifest delete mode 100644 dev-python/testpath/files/testpath-0.2-setup.py.patch delete mode 100644 dev-python/testpath/metadata.xml delete mode 100644 dev-python/testpath/testpath-0.3.1.ebuild (limited to 'dev-python/testpath') diff --git a/dev-python/testpath/Manifest b/dev-python/testpath/Manifest deleted file mode 100644 index 0f334b058f5f..000000000000 --- a/dev-python/testpath/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX testpath-0.2-setup.py.patch 944 BLAKE2B 4a65d8a99fa04115e4e24f91be2b32a5f26a26b1b8fa795472622efea1afa6d5df717c10fbfbf106180d1f6d5f8822350d9605de41fc7db9e37a7b4c7b887df9 SHA512 c27c2dda320d2c16239eb498b2f59f85746745ce1875879a17f41235081983fd1015f0dfd182c6823b998f85aaf460486a3ac6d955be969487692ed50c5648aa -DIST testpath-0.3.1.tar.gz 91333 BLAKE2B 86787b9677e8baa6d45fb5e6f047f2ab448e385201f20af3a3a9f33d6edd6c67e4eec09c178e815626096ad77d417ef99ddee562bf0fd7947b3f7ae1862f8156 SHA512 ab826cfb76d9a3ed6f1b178240f6bf61439bd792be26b5ad407b5c3efaa455b48965ceaf17e4ca6a4bc706465a8ed1c6c31a1572df5beeea2bb8db7814dc04f0 -EBUILD testpath-0.3.1.ebuild 1075 BLAKE2B fc8afc03f456abd955fbf17acf7a650b239207e94ab1248ad2096af281f8e106ee690ff25c8be070285b059a815840f8b012ff1d7b9f58eb7ae2033427ce671d SHA512 144e4f1425e5da5274f9c05b27586beab55721087f81c55ccad1b32a32ad2f0d7c773449315bb05dc366ac77409c3e4f5bfce7737b38b6a1b2485ffa8139d42b -MISC metadata.xml 613 BLAKE2B 46ccd59fa5e42a573ba9fe1219a5e5a103876ef3e73363b3e003f76fce1138b7f6a9ef3a023be5b695bbbc1244c047d3f70b23b553b3412695a9791dac83c540 SHA512 c251993ded801317c638b460520800bc7fee9390a3c581c01a463da661eda3c7348117aa98c19efd7eb577666dfe580fc690e2f30d2001bd98e49f2baa33248e diff --git a/dev-python/testpath/files/testpath-0.2-setup.py.patch b/dev-python/testpath/files/testpath-0.2-setup.py.patch deleted file mode 100644 index a1bf41acd352..000000000000 --- a/dev-python/testpath/files/testpath-0.2-setup.py.patch +++ /dev/null @@ -1,28 +0,0 @@ -Patch to bring back setup.py from -https://github.com/jupyter/testpath/blob/086bd1bd1ec7da1b3dacfed1705c0c99fae231b3/setup.py ---- /dev/null -+++ b/setup.py -@@ -0,0 +1,22 @@ -+from distutils.core import setup -+ -+with open("README.rst", "r") as f: -+ readme = f.read() -+ -+setup(name='testpath', -+ version='0.1', -+ description='Test utilities for code working with files and commands', -+ long_description = readme, -+ author='Thomas Kluyver', -+ author_email='thomas@kluyver.me.uk', -+ url='https://github.com/takluyver/testpath', -+ packages=['testpath'], -+ classifiers=[ -+ 'Intended Audience :: Developers', -+ 'License :: OSI Approved :: MIT License', -+ 'Programming Language :: Python', -+ 'Programming Language :: Python :: 2', -+ 'Programming Language :: Python :: 3', -+ 'Topic :: Software Development :: Testing', -+ ] -+) -\ No newline at end of file diff --git a/dev-python/testpath/metadata.xml b/dev-python/testpath/metadata.xml deleted file mode 100644 index cba9cbf64b00..000000000000 --- a/dev-python/testpath/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - sci@gentoo.org - Gentoo Science Project - - - Testpath is a collection of utilities for Python code working with - files and commands. It contains functions to check things on the - filesystem, and tools for mocking system commands and recording - calls to those. - - - jupyter/testpath - - diff --git a/dev-python/testpath/testpath-0.3.1.ebuild b/dev-python/testpath/testpath-0.3.1.ebuild deleted file mode 100644 index bcdf26e59fa0..000000000000 --- a/dev-python/testpath/testpath-0.3.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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 ~ppc ppc64 x86" -IUSE="doc test" - -DEPEND=" - test? ( - dev-python/pathlib2[${PYTHON_USEDEP}] - dev-python/pytest[${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() { - if use doc; then - emake -C doc html - HTML_DOCS=( doc/_build/html/. ) - fi -} - -python_test() { - distutils_install_for_testing - cd "${TEST_DIR}"/lib || die - cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die - py.test || die -} -- cgit v1.2.3