diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-13 10:39:22 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-13 10:39:22 +0100 |
commit | 9452a6e87b6c2c70513bc47a2470bf9f1168920e (patch) | |
tree | 8ac67e26b45f34d71c5aab3621813b100a0d5f00 /dev-python/sphinxcontrib-googleanalytics | |
parent | f516638b7fe9592837389826a6152a7e1b251c54 (diff) |
gentoo resync : 13.06.2020
Diffstat (limited to 'dev-python/sphinxcontrib-googleanalytics')
4 files changed, 0 insertions, 59 deletions
diff --git a/dev-python/sphinxcontrib-googleanalytics/Manifest b/dev-python/sphinxcontrib-googleanalytics/Manifest deleted file mode 100644 index b305a8377516..000000000000 --- a/dev-python/sphinxcontrib-googleanalytics/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX setup.py.utf-8.patch 413 BLAKE2B 831b51cc5c0509a26fce8d078da208849936260bea42976642b943cd99974e2479281bb67d29ef234fae3cd96689c17be19ab3e03131b86a122b5fb17d5b1f6d SHA512 dcf01e5d306cf41c5092328de26d0d83d183c9a969898ae42e19025c45f8412f9c1bdc18ba7b247e10ac5d33e77b5211eac7fe4d36c69603ec6c6526f61a90d8 -DIST sphinxcontrib-googleanalytics-0.1.tar.gz 2892 BLAKE2B 22cd2ef55a619bd4a249c3d33a4c0d8a27d038c434f5f1668854cb494f134354cf654abd187da71e3aec10c7f0d422bc3abc310c8208a12a85848a5ef5cfa97f SHA512 fdec9108f9c1d86c6c59cd2bcfa55d82cd5cd48aca5b7aecec7734f3cd29b0f6c080aad7b7009148e3d95b7cf80af38ffb6ba230879495f3c1488ddb661fbf48 -EBUILD sphinxcontrib-googleanalytics-0.1-r2.ebuild 707 BLAKE2B bca9e9bc2cd44bd5e23904e6bdebc745231f6a1995f7ed2e9cf4b29a16db64f3a599f58e0910cbf666d515d4e6afc8b9e968862e838f8a7401896fb5777448cc SHA512 342eb7871f38a04517d7650acb67cc6578ce9fcf24ff488abfc8fa8c7f731629109c7f9d0dc056ea71bd5175c634179fab2a6d8e1736378af50d968b6f83732b -MISC metadata.xml 412 BLAKE2B adf7b6eaeebfecb34c4ca1facc156904cf70a26070b8203e159d715b3da57083a1358e424072bc84f24930d047ed887a105be26b13fa26b1a3e4ab3446e96dfd SHA512 46c62c4de72309bf938f9d91b89183968e51741b4ce25646c359de043ff463fa6690b4f91484388007b96fcff64b0c293907bc07ffe6160d29cb68c391b15afa diff --git a/dev-python/sphinxcontrib-googleanalytics/files/setup.py.utf-8.patch b/dev-python/sphinxcontrib-googleanalytics/files/setup.py.utf-8.patch deleted file mode 100644 index a45ae42b188a..000000000000 --- a/dev-python/sphinxcontrib-googleanalytics/files/setup.py.utf-8.patch +++ /dev/null @@ -1,16 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=429914 ---- a/setup.py -+++ b/setup.py -@@ -1,10 +1,11 @@ - # -*- coding: utf-8 -*- - -+import codecs - import os - from setuptools import setup, find_packages - - HERE = os.path.dirname(os.path.abspath(__file__)) --long_desc = open(os.path.join(HERE, 'README')).read() -+long_desc = codecs.open(os.path.join(HERE, 'README'), encoding='utf-8').read() - - requires = ['Sphinx>=0.6'] - diff --git a/dev-python/sphinxcontrib-googleanalytics/metadata.xml b/dev-python/sphinxcontrib-googleanalytics/metadata.xml deleted file mode 100644 index 59d4f18d4f76..000000000000 --- a/dev-python/sphinxcontrib-googleanalytics/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> - </maintainer> - <upstream> - <remote-id type="pypi">sphinxcontrib-googleanalytics</remote-id> - <remote-id type="bitbucket">birkenfeld/sphinx-contrib</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/sphinxcontrib-googleanalytics/sphinxcontrib-googleanalytics-0.1-r2.ebuild b/dev-python/sphinxcontrib-googleanalytics/sphinxcontrib-googleanalytics-0.1-r2.ebuild deleted file mode 100644 index 8e3ec3cf453e..000000000000 --- a/dev-python/sphinxcontrib-googleanalytics/sphinxcontrib-googleanalytics-0.1-r2.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="Sphinx extension googleanalytics" -HOMEPAGE="https://bitbucket.org/birkenfeld/sphinx-contrib" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -KEYWORDS="amd64 arm64 ~x86 ~amd64-linux ~x86-linux" -SLOT="0" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]" - -PATCHES=( "${FILESDIR}/setup.py.utf-8.patch" ) - -python_install_all() { - distutils-r1_python_install_all - find "${ED}" -name '*.pth' -delete || die -} |