commit:     fd276fc4214af79407f792b646ae9bc70714ac1f
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 27 00:41:23 2020 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Mar 27 01:09:15 2020 +0000
URL:        https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=fd276fc4

app-text/rinohtype: Remove due to dead PYTHON_COMPAT

Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>

 .../rinohtype/files/rinohtype-0.3.1-consent.patch  | 43 ---------------------
 app-text/rinohtype/metadata.xml                    | 10 -----
 app-text/rinohtype/rinohtype-0.3.1.ebuild          | 44 ----------------------
 ...rinoh-typeface-dejavuserif-0.1.1-circular.patch | 24 ------------
 dev-python/rinoh-typeface-dejavuserif/metadata.xml | 11 ------
 .../rinoh-typeface-dejavuserif-0.1.1.ebuild        | 26 -------------
 ...noh-typeface-texgyrecursor-0.1.1-circular.patch | 24 ------------
 .../rinoh-typeface-texgyrecursor/metadata.xml      | 11 ------
 .../rinoh-typeface-texgyrecursor-0.1.1.ebuild      | 26 -------------
 ...inoh-typeface-texgyreheros-0.1.1-circular.patch | 24 ------------
 .../rinoh-typeface-texgyreheros/metadata.xml       | 11 ------
 .../rinoh-typeface-texgyreheros-0.1.1.ebuild       | 26 -------------
 ...oh-typeface-texgyrepagella-0.1.1-circular.patch | 24 ------------
 .../rinoh-typeface-texgyrepagella/metadata.xml     | 11 ------
 .../rinoh-typeface-texgyrepagella-0.1.1.ebuild     | 26 -------------
 15 files changed, 341 deletions(-)

diff --git a/app-text/rinohtype/files/rinohtype-0.3.1-consent.patch 
b/app-text/rinohtype/files/rinohtype-0.3.1-consent.patch
deleted file mode 100644
index d217d2b..0000000
--- a/app-text/rinohtype/files/rinohtype-0.3.1-consent.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 2735b34d8450e30eca42a149398ae3ff55f79c5f Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebast...@pipping.org>
-Date: Sun, 19 Mar 2017 01:36:11 +0100
-Subject: [PATCH] Stop installing PyPI packages on the fly without consent
-
----
- src/rinoh/resource.py | 11 ++++++++++-
- 1 file changed, 10 insertions(+), 1 deletion(-)
-
-diff --git a/src/rinoh/resource.py b/src/rinoh/resource.py
-index 8415003..3fc541b 100644
---- a/src/rinoh/resource.py
-+++ b/src/rinoh/resource.py
-@@ -6,6 +6,7 @@
- # Public License v3. See the LICENSE file or http://www.gnu.org/licenses/.
- 
- 
-+import os
- import string
- from warnings import warn
- from xmlrpc.client import ServerProxy
-@@ -53,9 +54,17 @@ class Resource(AttributeType):
- 
-     @classmethod
-     def install_from_pypi(cls, entry_point_name):
-+        resource_id = entry_point_name_to_identifier(entry_point_name)
-+
-+        guard_file = os.path.expanduser('~/.config/rinoh-auto-pip-enabled')
-+        if not os.path.exists(guard_file):
-+            print("Not installing {} resource '{}' without consent; "
-+                  "touch file {} to enable auto-installation if desired."
-+                  .format(cls.resource_type, resource_id, guard_file))
-+            return False
-+
-         success = False
-         pypi = ServerProxy('https://pypi.python.org/pypi')
--        resource_id = entry_point_name_to_identifier(entry_point_name)
-         distribution_name_parts = ['rinoh', cls.resource_type, resource_id]
-         for pkg in pypi.search(dict(name=distribution_name_parts)):
-             if pkg['name'] == '-'.join(distribution_name_parts):
--- 
-2.12.0
-

diff --git a/app-text/rinohtype/metadata.xml b/app-text/rinohtype/metadata.xml
deleted file mode 100644
index 96223c9..0000000
--- a/app-text/rinohtype/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>sp...@gentoo.org</email>
-       </maintainer>
-       <upstream>
-               <remote-id type="github">brechtm/rinohtype</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/app-text/rinohtype/rinohtype-0.3.1.ebuild 
b/app-text/rinohtype/rinohtype-0.3.1.ebuild
deleted file mode 100644
index 88a2a33..0000000
--- a/app-text/rinohtype/rinohtype-0.3.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5} )
-PYTHON_REQ_USE="xml"
-
-inherit distutils-r1
-
-DESCRIPTION="Python document processor"
-HOMEPAGE="https://github.com/brechtm/rinohtype";
-SRC_URI="https://github.com/brechtm/rinohtype/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="AGPL-3 LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="${PYTHON_DEPS}
-       dev-python/docutils[${PYTHON_USEDEP}]
-       dev-python/pillow[${PYTHON_USEDEP}]
-       dev-python/pip[${PYTHON_USEDEP}]
-       >=dev-python/purepng-0.2.0[${PYTHON_USEDEP}]
-       dev-python/recommonmark[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/sphinx[${PYTHON_USEDEP}]
-       "
-RDEPEND="${DEPEND}
-       dev-python/rinoh-typeface-dejavuserif[${PYTHON_USEDEP}]
-       >=dev-python/rinoh-typeface-texgyrecursor-0.1.1[${PYTHON_USEDEP}]
-       >=dev-python/rinoh-typeface-texgyreheros-0.1.1[${PYTHON_USEDEP}]
-       >=dev-python/rinoh-typeface-texgyrepagella-0.1.1[${PYTHON_USEDEP}]
-       "
-
-DOCS=(
-       CHANGES.rst
-       README.rst
-       CONTRIBUTING.rst
-)
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.3.1-consent.patch
-)

diff --git 
a/dev-python/rinoh-typeface-dejavuserif/files/rinoh-typeface-dejavuserif-0.1.1-circular.patch
 
b/dev-python/rinoh-typeface-dejavuserif/files/rinoh-typeface-dejavuserif-0.1.1-circular.patch
deleted file mode 100644
index 372c1bc..0000000
--- 
a/dev-python/rinoh-typeface-dejavuserif/files/rinoh-typeface-dejavuserif-0.1.1-circular.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From b3a519e1d35cfb954d8af615aaf66427010c1dd7 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebast...@pipping.org>
-Date: Sun, 19 Mar 2017 02:54:45 +0100
-Subject: [PATCH] Remove circular dependency on rinohtype
-
----
- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 75f39a7..c2c8b89 100644
---- a/setup.py
-+++ b/setup.py
-@@ -24,7 +24,6 @@ setup(
-     packages=find_packages(),
-     package_data={PACKAGE_DIR: ['*.ttf', '*.txt', 'AUTHORS', 'BUGS', 
'LICENSE',
-                                 'NEWS', 'README.md']},
--    install_requires=['rinohtype'],
-     entry_points={
-         'rinoh.typefaces':
-             ['{} = {}:typeface'.format(ENTRY_POINT_NAME, PACKAGE_DIR)]
--- 
-2.12.0
-

diff --git a/dev-python/rinoh-typeface-dejavuserif/metadata.xml 
b/dev-python/rinoh-typeface-dejavuserif/metadata.xml
deleted file mode 100644
index a4a24ea..0000000
--- a/dev-python/rinoh-typeface-dejavuserif/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>sp...@gentoo.org</email>
-       </maintainer>
-       <upstream>
-               <remote-id 
type="github">brechtm/rinoh-typeface-dejavuserif</remote-id>
-               <remote-id type="pypi">rinoh-typeface-dejavuserif</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git 
a/dev-python/rinoh-typeface-dejavuserif/rinoh-typeface-dejavuserif-0.1.1.ebuild 
b/dev-python/rinoh-typeface-dejavuserif/rinoh-typeface-dejavuserif-0.1.1.ebuild
deleted file mode 100644
index bfb2dfb..0000000
--- 
a/dev-python/rinoh-typeface-dejavuserif/rinoh-typeface-dejavuserif-0.1.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-inherit distutils-r1
-
-DESCRIPTION="DejaVu Serif typeface for rinohtype"
-HOMEPAGE="https://github.com/brechtm/rinoh-typeface-dejavuserif";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BitstreamVera"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="${PYTHON_DEPS}"
-
-DOCS=(
-       README.rst
-)
-
-PATCHES=(
-       "${FILESDIR}"/${P}-circular.patch
-)

diff --git 
a/dev-python/rinoh-typeface-texgyrecursor/files/rinoh-typeface-texgyrecursor-0.1.1-circular.patch
 
b/dev-python/rinoh-typeface-texgyrecursor/files/rinoh-typeface-texgyrecursor-0.1.1-circular.patch
deleted file mode 100644
index 57fe2de..0000000
--- 
a/dev-python/rinoh-typeface-texgyrecursor/files/rinoh-typeface-texgyrecursor-0.1.1-circular.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From a675eb85f5cbed1ee1d1050885912f7738f11440 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebast...@pipping.org>
-Date: Sun, 19 Mar 2017 02:25:09 +0100
-Subject: [PATCH] Remove circular dependency on rinohtype
-
----
- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index cee6fba..dff3b0c 100644
---- a/setup.py
-+++ b/setup.py
-@@ -23,7 +23,6 @@ setup(
-     version='0.1.1',
-     packages=find_packages(),
-     package_data={PACKAGE_DIR: ['*.otf', '*.txt']},
--    install_requires=['rinohtype'],
-     entry_points={
-         'rinoh.typefaces':
-             ['{} = {}:typeface'.format(ENTRY_POINT_NAME, PACKAGE_DIR)]
--- 
-2.12.0
-

diff --git a/dev-python/rinoh-typeface-texgyrecursor/metadata.xml 
b/dev-python/rinoh-typeface-texgyrecursor/metadata.xml
deleted file mode 100644
index 1b5e70e..0000000
--- a/dev-python/rinoh-typeface-texgyrecursor/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>sp...@gentoo.org</email>
-       </maintainer>
-       <upstream>
-               <remote-id 
type="github">brechtm/rinoh-typeface-texgyrecursor</remote-id>
-               <remote-id type="pypi">rinoh-typeface-texgyrecursor</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git 
a/dev-python/rinoh-typeface-texgyrecursor/rinoh-typeface-texgyrecursor-0.1.1.ebuild
 
b/dev-python/rinoh-typeface-texgyrecursor/rinoh-typeface-texgyrecursor-0.1.1.ebuild
deleted file mode 100644
index 9b3d3e1..0000000
--- 
a/dev-python/rinoh-typeface-texgyrecursor/rinoh-typeface-texgyrecursor-0.1.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-inherit distutils-r1
-
-DESCRIPTION="TeX Gyre Cursor typeface for rinohtype"
-HOMEPAGE="https://github.com/brechtm/rinoh-typeface-texgyrecursor";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GUST-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="${PYTHON_DEPS}"
-
-DOCS=(
-       README.rst
-)
-
-PATCHES=(
-       "${FILESDIR}"/${P}-circular.patch
-)

diff --git 
a/dev-python/rinoh-typeface-texgyreheros/files/rinoh-typeface-texgyreheros-0.1.1-circular.patch
 
b/dev-python/rinoh-typeface-texgyreheros/files/rinoh-typeface-texgyreheros-0.1.1-circular.patch
deleted file mode 100644
index 57fe2de..0000000
--- 
a/dev-python/rinoh-typeface-texgyreheros/files/rinoh-typeface-texgyreheros-0.1.1-circular.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From a675eb85f5cbed1ee1d1050885912f7738f11440 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebast...@pipping.org>
-Date: Sun, 19 Mar 2017 02:25:09 +0100
-Subject: [PATCH] Remove circular dependency on rinohtype
-
----
- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index cee6fba..dff3b0c 100644
---- a/setup.py
-+++ b/setup.py
-@@ -23,7 +23,6 @@ setup(
-     version='0.1.1',
-     packages=find_packages(),
-     package_data={PACKAGE_DIR: ['*.otf', '*.txt']},
--    install_requires=['rinohtype'],
-     entry_points={
-         'rinoh.typefaces':
-             ['{} = {}:typeface'.format(ENTRY_POINT_NAME, PACKAGE_DIR)]
--- 
-2.12.0
-

diff --git a/dev-python/rinoh-typeface-texgyreheros/metadata.xml 
b/dev-python/rinoh-typeface-texgyreheros/metadata.xml
deleted file mode 100644
index 333fa37..0000000
--- a/dev-python/rinoh-typeface-texgyreheros/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>sp...@gentoo.org</email>
-       </maintainer>
-       <upstream>
-               <remote-id 
type="github">brechtm/rinoh-typeface-texgyreheros</remote-id>
-               <remote-id type="pypi">rinoh-typeface-texgyreheros</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git 
a/dev-python/rinoh-typeface-texgyreheros/rinoh-typeface-texgyreheros-0.1.1.ebuild
 
b/dev-python/rinoh-typeface-texgyreheros/rinoh-typeface-texgyreheros-0.1.1.ebuild
deleted file mode 100644
index 5b6fe5d..0000000
--- 
a/dev-python/rinoh-typeface-texgyreheros/rinoh-typeface-texgyreheros-0.1.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-inherit distutils-r1
-
-DESCRIPTION="TeX Gyre Heros typeface for rinohtype"
-HOMEPAGE="https://github.com/brechtm/rinoh-typeface-texgyreheros";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GUST-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="${PYTHON_DEPS}"
-
-DOCS=(
-       README.rst
-)
-
-PATCHES=(
-       "${FILESDIR}"/${P}-circular.patch
-)

diff --git 
a/dev-python/rinoh-typeface-texgyrepagella/files/rinoh-typeface-texgyrepagella-0.1.1-circular.patch
 
b/dev-python/rinoh-typeface-texgyrepagella/files/rinoh-typeface-texgyrepagella-0.1.1-circular.patch
deleted file mode 100644
index 57fe2de..0000000
--- 
a/dev-python/rinoh-typeface-texgyrepagella/files/rinoh-typeface-texgyrepagella-0.1.1-circular.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From a675eb85f5cbed1ee1d1050885912f7738f11440 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebast...@pipping.org>
-Date: Sun, 19 Mar 2017 02:25:09 +0100
-Subject: [PATCH] Remove circular dependency on rinohtype
-
----
- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index cee6fba..dff3b0c 100644
---- a/setup.py
-+++ b/setup.py
-@@ -23,7 +23,6 @@ setup(
-     version='0.1.1',
-     packages=find_packages(),
-     package_data={PACKAGE_DIR: ['*.otf', '*.txt']},
--    install_requires=['rinohtype'],
-     entry_points={
-         'rinoh.typefaces':
-             ['{} = {}:typeface'.format(ENTRY_POINT_NAME, PACKAGE_DIR)]
--- 
-2.12.0
-

diff --git a/dev-python/rinoh-typeface-texgyrepagella/metadata.xml 
b/dev-python/rinoh-typeface-texgyrepagella/metadata.xml
deleted file mode 100644
index 5ac2ea2..0000000
--- a/dev-python/rinoh-typeface-texgyrepagella/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>sp...@gentoo.org</email>
-       </maintainer>
-       <upstream>
-               <remote-id 
type="github">brechtm/rinoh-typeface-texgyrepagella</remote-id>
-               <remote-id type="pypi">rinoh-typeface-texgyrepagella</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git 
a/dev-python/rinoh-typeface-texgyrepagella/rinoh-typeface-texgyrepagella-0.1.1.ebuild
 
b/dev-python/rinoh-typeface-texgyrepagella/rinoh-typeface-texgyrepagella-0.1.1.ebuild
deleted file mode 100644
index 85def0c..0000000
--- 
a/dev-python/rinoh-typeface-texgyrepagella/rinoh-typeface-texgyrepagella-0.1.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-inherit distutils-r1
-
-DESCRIPTION="TeX Gyre Pagella typeface for rinohtype"
-HOMEPAGE="https://github.com/brechtm/rinoh-typeface-texgyrepagella";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GUST-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="${PYTHON_DEPS}"
-
-DOCS=(
-       README.rst
-)
-
-PATCHES=(
-       "${FILESDIR}"/${P}-circular.patch
-)

Reply via email to