Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/peppercorn/
Date: Tue, 02 May 2017 19:15:42
Message-Id: 1493752521.dc46eaeafb59895e62968908bd276780664cf999.mgorny@gentoo
1 commit: dc46eaeafb59895e62968908bd276780664cf999
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 18:32:03 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 19:15:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc46eaea
7
8 dev-python/peppercorn: Clean old versions up
9
10 dev-python/peppercorn/Manifest | 1 -
11 dev-python/peppercorn/peppercorn-0.4-r1.ebuild | 39 --------------------------
12 2 files changed, 40 deletions(-)
13
14 diff --git a/dev-python/peppercorn/Manifest b/dev-python/peppercorn/Manifest
15 index cc6fd2f09ad..3bf035f963e 100644
16 --- a/dev-python/peppercorn/Manifest
17 +++ b/dev-python/peppercorn/Manifest
18 @@ -1,2 +1 @@
19 -DIST peppercorn-0.4.tar.gz 18349 SHA256 9a53edd7259a73256519a0d4b23fdc210ea3dfc415e0becdba1d2498cbf7e28a SHA512 b89d36e5c5887f8a21f6bc0d9da33ef0c57a19848dc61fad105bf076eb5214119fb2fa75beeefb936a95e6aa98da7c48ad60596f68da629383820111ef127100 WHIRLPOOL a76793182e65eff1b498f7a872222d427d27a17cae8985fcf1bbb7ab87732f5d4fb6357b94556dd1ac5ea4b4b2d152bfa9864e83e9efaa7879fbf7a01c3dee2a
20 DIST peppercorn-0.5.tar.gz 19637 SHA256 921cba5d51fa211e6da0fbd2120b9a98d663422a80f5bb669ad81ffb0909774b SHA512 37f9df282872b0c664780f5e27caf81cc379b05009756cf6c79290b09893d88427f3619916688412dabf20e99f264da8832d959563943e2910b1fcac696edc31 WHIRLPOOL a104c3dca197c5bdd32a9a3f4fafb7c93459cbb8da13f8e581990962ac9afc56c22cdbb101d17271983b61fb0e83f4c0b25590a88d8f54c403110067ea3ba12f
21
22 diff --git a/dev-python/peppercorn/peppercorn-0.4-r1.ebuild b/dev-python/peppercorn/peppercorn-0.4-r1.ebuild
23 deleted file mode 100644
24 index b284be48dfc..00000000000
25 --- a/dev-python/peppercorn/peppercorn-0.4-r1.ebuild
26 +++ /dev/null
27 @@ -1,39 +0,0 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 pypy )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="A library for converting a token stream into a data structure for use in web form posts"
38 -HOMEPAGE="https://github.com/Pylons/peppercorn https://pypi.python.org/pypi/peppercorn"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="repoze"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE=""
45 -
46 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
47 -RDEPEND=""
48 -
49 -# Include COPYRIGHT.txt because the license seems to require it.
50 -DOCS=( CHANGES.txt README.txt COPYRIGHT.txt )
51 -
52 -python_test() {
53 - esetup.py test
54 -}
55 -
56 -python_install_all() {
57 - distutils-r1_python_install_all
58 -
59 - # Install only the .rst source, as sphinx processing requires a
60 - # theme only available from git that contains hardcoded references
61 - # to files on https://static.pylonsproject.org/ (so the docs would
62 - # not actually work offline). Install into a "docs" subdirectory
63 - # so the reference in the README remains correct.
64 - docinto docs
65 - dodoc docs/*.rst
66 -}