diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-06-02 21:45:28 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-06-02 21:45:28 +0100 |
commit | 2018227e9344edb9da15fc6a4a8298086cc2aa77 (patch) | |
tree | c18e1c09e605e94e2a1e93345ad25746cc9e14b9 /dev-python/yapps | |
parent | 6f8038813c460b4f0572d5ef595cdfa94af3a94d (diff) |
gentoo resync : 02.06.2019
Diffstat (limited to 'dev-python/yapps')
5 files changed, 0 insertions, 123 deletions
diff --git a/dev-python/yapps/Manifest b/dev-python/yapps/Manifest deleted file mode 100644 index 1e64967e36ba..000000000000 --- a/dev-python/yapps/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX yapps-Convert-print-statements-to-python3-style-print-func.patch 1572 BLAKE2B c1375ca4ad6a6d7430044f3bc3c29a7f62f06404d64f689a83cd4ff10781f51d4d0dc287c466a622933af7f360c6ce81ddafbddffc62c57d73ac7bc3008a2eb4 SHA512 36ab43698fc637cd52287c6649be064b04374a22b9e459a53f3e04850d0cf8276e042e45994a3d2e0d0c97e57478321631475170dfe3e8efa8debd3d32ea80a3 -AUX yapps-Don-t-capture-sys.stderr-at-import-time.patch 1088 BLAKE2B c00fd5b4834b600127f7eedfbc4a7f65716a412cb1a2011ce36ecfde10bb54d171028c47ea04be2065b7cafa9e612e16e633ac701166506690613e5569a3f651 SHA512 b3a3de5bc11cfc8926e430ab5d8834f00a15362e7a108ad11d40a2c6f804d51ddffbb467dbe1c767b345c3451f4feef642e1b55a735c5cb85c405e8c3c7c0107 -DIST Yapps-2.2.0.tar.gz 13630 BLAKE2B b1c3370c0a91febc7ab567fa9af05150f74d19e4de18d09e41ff7e361b06f8bd9aed0ad5ac01f9d1c46bdb381af57cfe11603ebf534b10979a16a5211171a31f SHA512 087f99071b2615f5382f453d9b3492675704aa7e7ff54b332d7c4e337e16fbd3ab3c1b3820a7941775c0b3ecf7e255a7773cb47ea20e8adb77dc3dc8d9a49faa -EBUILD yapps-2.2.0-r1.ebuild 686 BLAKE2B e2484dd44cdb697ee6a60e21aa0f376ae703ba6743168ef5c3db7cf510d986bc23446b5a03441f38ee832cfeb9732d7aea34e79f4778de472e425aad18c6ae9c SHA512 6dd0beb74a1a3f3f7d9f8c67cc0c914f70f31253763dc3ecd7b2b4d1ad49b6a1c2638934e36b3f51e33e28fae1fc66beb325ee7f93472eed2a9f8499bc93f820 -MISC metadata.xml 373 BLAKE2B cddb77338531df2a99d22a48d6d5e18cf9fb0f738ea840ac46945d7ca47626a2f4f57d8878898cfcbc0993286753cbbf71e45c66f88fd1e410471bc6671c16c2 SHA512 546f07634ad9ddbbfd3b95c8494f1592f1f38aaaa83f2325a6d0e03bbe64bad498fefef02082c5df8e075763b719993bd09c980f1cf9fdcde433113280edd74b diff --git a/dev-python/yapps/files/yapps-Convert-print-statements-to-python3-style-print-func.patch b/dev-python/yapps/files/yapps-Convert-print-statements-to-python3-style-print-func.patch deleted file mode 100644 index 4bff7f8f40dd..000000000000 --- a/dev-python/yapps/files/yapps-Convert-print-statements-to-python3-style-print-func.patch +++ /dev/null @@ -1,46 +0,0 @@ -From d051588873a54860cfb86ec0d330f7d855336618 Mon Sep 17 00:00:00 2001 -From: Julien Cristau <julien.cristau@logilab.fr> -Date: Tue, 2 Dec 2014 10:41:05 +0100 -Subject: [PATCH 2/2] Convert print statements to python3-style print function - -Signed-off-by: Julien Cristau <julien.cristau@logilab.fr> ---- - yapps/runtime.py | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/yapps/runtime.py b/yapps/runtime.py -index 58017fe..5d40581 100644 ---- a/yapps/runtime.py -+++ b/yapps/runtime.py -@@ -178,7 +178,7 @@ class Scanner(object): - file,line,p = pos - if file != self.filename: - if self.stack: return self.stack.print_line_with_pointer(pos,length=length,out=out) -- print >>out, "(%s: not in input buffer)" % file -+ print("(%s: not in input buffer)" % file, file=out) - return - - text = self.input -@@ -201,7 +201,7 @@ class Scanner(object): - break - spos = cr+1 - else: -- print >>out, "(%s:%d not in input buffer)" % (file,origline) -+ print("(%s:%d not in input buffer)" % (file,origline), file=out) - return - - # Now try printing part of the line -@@ -230,8 +230,8 @@ class Scanner(object): - p = p - 7 - - # Now print the string, along with an indicator -- print >>out, '> ',text -- print >>out, '> ',' '*p + '^' -+ print('> ',text, file=out) -+ print('> ',' '*p + '^', file=out) - - def grab_input(self): - """Get more input if possible.""" --- -2.6.4 - diff --git a/dev-python/yapps/files/yapps-Don-t-capture-sys.stderr-at-import-time.patch b/dev-python/yapps/files/yapps-Don-t-capture-sys.stderr-at-import-time.patch deleted file mode 100644 index 1e25a0059409..000000000000 --- a/dev-python/yapps/files/yapps-Don-t-capture-sys.stderr-at-import-time.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 482faec17f1c69784d8cc2757a79809458d71154 Mon Sep 17 00:00:00 2001 -From: Julien Cristau <julien.cristau@logilab.fr> -Date: Tue, 2 Dec 2014 10:40:01 +0100 -Subject: [PATCH 1/2] Don't capture sys.stderr at import time - -Signed-off-by: Julien Cristau <julien.cristau@logilab.fr> ---- - yapps/runtime.py | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/yapps/runtime.py b/yapps/runtime.py -index 29f91e7..58017fe 100644 ---- a/yapps/runtime.py -+++ b/yapps/runtime.py -@@ -168,10 +168,13 @@ class Scanner(object): - # output += '%s\n' % (repr(t),) - # return output - -- def print_line_with_pointer(self, pos, length=0, out=sys.stderr): -+ def print_line_with_pointer(self, pos, length=0, out=None): - """Print the line of 'text' that includes position 'p', - along with a second line with a single caret (^) at position p""" - -+ if out is None: -+ out = sys.stderr -+ - file,line,p = pos - if file != self.filename: - if self.stack: return self.stack.print_line_with_pointer(pos,length=length,out=out) --- -2.6.4 - diff --git a/dev-python/yapps/metadata.xml b/dev-python/yapps/metadata.xml deleted file mode 100644 index 335bb8d11a4b..000000000000 --- a/dev-python/yapps/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">Yapps</remote-id> - <remote-id type="github">smurfix/yapps</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/yapps/yapps-2.2.0-r1.ebuild b/dev-python/yapps/yapps-2.2.0-r1.ebuild deleted file mode 100644 index ce36d639e2a9..000000000000 --- a/dev-python/yapps/yapps-2.2.0-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy ) - -inherit distutils-r1 - -MY_PN="Yapps" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="An easy to use parser generator" -HOMEPAGE="https://github.com/smurfix/yapps" -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="" - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_prepare() { - epatch "${FILESDIR}/${PN}-Don-t-capture-sys.stderr-at-import-time.patch" - epatch "${FILESDIR}/${PN}-Convert-print-statements-to-python3-style-print-func.patch" -} |