diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-03-18 18:31:43 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-03-18 18:31:43 +0000 |
commit | cd0d9000770337b445051f1852fe3971ceb7a6e2 (patch) | |
tree | 49c82dbb14c2d960e04e7482bdefe6ed2d53a173 /dev-python/citeproc-py | |
parent | 12c505f7fcc9ddc89e96ed178df05aceec162d92 (diff) |
gentoo auto-resync : 18:03:2023 - 18:31:42
Diffstat (limited to 'dev-python/citeproc-py')
-rw-r--r-- | dev-python/citeproc-py/Manifest | 5 | ||||
-rw-r--r-- | dev-python/citeproc-py/citeproc-py-0.6.0.ebuild | 45 | ||||
-rw-r--r-- | dev-python/citeproc-py/files/stop_test_from_accessing_git-0.6.0.patch | 13 | ||||
-rw-r--r-- | dev-python/citeproc-py/metadata.xml | 12 |
4 files changed, 0 insertions, 75 deletions
diff --git a/dev-python/citeproc-py/Manifest b/dev-python/citeproc-py/Manifest deleted file mode 100644 index 50c443c867d3..000000000000 --- a/dev-python/citeproc-py/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX stop_test_from_accessing_git-0.6.0.patch 432 BLAKE2B c4b4696acf4619eb30ec3423743a0d3db76f4932c67afecca121f289fe2d144f0bf51e1c62847f09d083e741b4a586ca02adea8bde321edfe5ea3156c673d60b SHA512 79308abf6392436ce528e0a9713ee3d7af7345585e68510a7f5ecd8427e8f6c9a7bcebc7787935ae838e089c94a3f8b7cc472af99c735fb5c0f3626501c35f0e -DIST citeproc-py-0.6.0.tar.gz 140624 BLAKE2B 169129c6be29a5a5c4678ccc2e2dd0b9ef58248ae66339ac32c6fab887058c7bbd2884d2ce959ce52287a622be4abded7e1ab06cae9c0952be47352671f951c4 SHA512 901a62c59189a652b589e4aa12e489f72f5ea40db1349fcdc0e4ffd6f5be8d364dccdc23cfab1a9003fbc672d75c5bdf06c74b9b5e1fcfb2c12e84df39fe1fb1 -DIST citeproc-py-test-suite-c3db429ab7c6b9b9ccaaa6d3c6bb9e503f0d7b11.tar.gz 990340 BLAKE2B acf02bec956765d0bea794a96ce7b86104c98aa4c0f8620dbfaeb7f16f37fe07e5b45883c04a1c639fad9098e3733339c90deaf8cdd794fadb8db1456972d16b SHA512 8653ea8968fa108c0814f43744f6e569a0a32cf4e82addec667f75a28b9c1fd9c7714c0c75a85e0d6f7f579e554494925ba4ab05e21e4dcb6b727d00b6a16df7 -EBUILD citeproc-py-0.6.0.ebuild 1121 BLAKE2B 7a0647ede5ce76fd146147c843fe0d348b0a8c6fc53d0c9898274b1a8942150cbc297e92bcee58280783f217a93b716e7bc9e87fd2b6e9a2418e7d146bd7cf8f SHA512 2b6c315006c6be49d57b926bac4677c70f023d63516641840844d87c8f3c3d4c818d612cd0e8806676a9e4afc5bf7a53ea4f732f1644e4959c10e6aeaf7d4ef3 -MISC metadata.xml 382 BLAKE2B 2d84f4b9844043338b0eb9f737dfef0495445b91a66d4b4aed910e87d7742ff5889dcf55fb0beed2f09042ed44415f4587e34a011ce7e4ad424079da3a74fd4f SHA512 de145eb60b314cd6f502b9f9115b5b034f3b72f0d3209c8e368ffcff0f4105ce4a88511d6599d6472092761d6800508a911a0765937aeb9b8782b1621d9488e6 diff --git a/dev-python/citeproc-py/citeproc-py-0.6.0.ebuild b/dev-python/citeproc-py/citeproc-py-0.6.0.ebuild deleted file mode 100644 index b3938812ea05..000000000000 --- a/dev-python/citeproc-py/citeproc-py-0.6.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..10} ) - -# Keep synced with tests/citeproc-test.py -TEST_SUITE_COMMIT="c3db429ab7c6b9b9ccaaa6d3c6bb9e503f0d7b11" - -inherit distutils-r1 pypi - -DESCRIPTION="Yet another Python CSL Processor" -HOMEPAGE="https://pypi.org/project/citeproc-py/" -SRC_URI+=" - test? ( - https://github.com/citation-style-language/test-suite/archive/${TEST_SUITE_COMMIT}.tar.gz - -> ${PN}-test-suite-${TEST_SUITE_COMMIT}.tar.gz - ) -" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -BDEPEND=">=app-text/rnc2rng-2.6.3[${PYTHON_USEDEP}]" -RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]" - -PATCHES=( "${FILESDIR}/stop_test_from_accessing_git-${PV}.patch" ) - -distutils_enable_tests nose - -src_prepare() { - default - - if use test ; then - mv "${WORKDIR}/test-suite-${TEST_SUITE_COMMIT}" "${S}/tests/test-suite" || die - fi -} - -python_test() { - nosetests -v --ignore-files=citeproc-test.py || die "Tests failed with ${EPYTHON}" - ${EPYTHON} tests/citeproc-test.py -vs || die "Tests failed with ${EPYTHON}" -} diff --git a/dev-python/citeproc-py/files/stop_test_from_accessing_git-0.6.0.patch b/dev-python/citeproc-py/files/stop_test_from_accessing_git-0.6.0.patch deleted file mode 100644 index e04ff1be1b87..000000000000 --- a/dev-python/citeproc-py/files/stop_test_from_accessing_git-0.6.0.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/tests/citeproc-test.py b/tests/citeproc-test.py -index 11bd47d..8934700 100644 ---- a/tests/citeproc-test.py -+++ b/tests/citeproc-test.py -@@ -288,7 +288,7 @@ if __name__ == '__main__': - glob_pattern = '*' - run_all_tests = True - -- test_repo_has_updates = clone_test_suite() -+ test_repo_has_updates = False - - # import the text fixture parser included with citeproc-test - try: # Python 3.3+ diff --git a/dev-python/citeproc-py/metadata.xml b/dev-python/citeproc-py/metadata.xml deleted file mode 100644 index 38432292de71..000000000000 --- a/dev-python/citeproc-py/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>alexxy@gentoo.org</email> - <name>Alexey Shvetsov</name> - </maintainer> - <upstream> - <remote-id type="github">brechtm/citeproc-py</remote-id> - <remote-id type="pypi">citeproc-py</remote-id> - </upstream> -</pkgmetadata> |