public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parso/
Date: Mon, 16 Dec 2019 08:09:44 +0000 (UTC)	[thread overview]
Message-ID: <1576483779.3cc4bd4492ad12e47b9d29cd11b0b2fcd39caaab.mgorny@gentoo> (raw)

commit:     3cc4bd4492ad12e47b9d29cd11b0b2fcd39caaab
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 16 08:04:29 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 16 08:09:39 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc4bd44

dev-python/parso: Remove redundant versions

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/parso/Manifest           |  2 --
 dev-python/parso/parso-0.3.1.ebuild | 36 ------------------------------------
 dev-python/parso/parso-0.5.0.ebuild | 36 ------------------------------------
 dev-python/parso/parso-0.5.1.ebuild | 36 ------------------------------------
 4 files changed, 110 deletions(-)

diff --git a/dev-python/parso/Manifest b/dev-python/parso/Manifest
index 5a0c4f9dd07..21b2ed962e3 100644
--- a/dev-python/parso/Manifest
+++ b/dev-python/parso/Manifest
@@ -1,4 +1,2 @@
-DIST parso-0.3.1.tar.gz 375226 BLAKE2B 71481f5f382f14e5f2c7826f8eb50a1c35f8c280f14c8bf52bcf44f77aa9872cddce7d7fb7b0a586ab7cda547e43bbce11812077ae84129c418a9f0bb3c5b856 SHA512 f83e316a41e21d3132d9ee8a45f9042962c01a2b906e8791046112b9ed938d378b0dc28c4ae05ce03a8c2d19563a49cba9a9a230654345ff62e87cc763536ddb
-DIST parso-0.5.0.tar.gz 386652 BLAKE2B f12e34aa9b93a1d3eedca96588148ac1e9ecb3a6af3910627d251e2281df285ce8768c11bf3cac35f8a977f0dac2f7a906fb20171db35fae2bec1c60cd0d7dc6 SHA512 cd2a38e538faf4faf3f1828f4e69dfe685ef1fd3e120326ca5260f0edbc23952e51ffd8370a2bb2de513a90ecde76e6ea2fe76d84d3ab4115c7817e3af08e701
 DIST parso-0.5.1.tar.gz 388060 BLAKE2B 429ab40501d38e982cf77e0dbbfa4d8677dd1e2400945436b8eced608a41015b7028f586cf9af6057e441765f0a1db519a642ceadaba14620a92f452ce709871 SHA512 a04ef9bbe156bc28ac9fa64d091d3f1dcc9cf4b15a3c109cd33de1c4d34d0bf741016b88b6c12d456e953253942b7d522e0b793c9a00e9fb06de27ab0667c7fc
 DIST parso-0.5.2.tar.gz 390495 BLAKE2B 257de5853cad74803d9b45ae4820c96933d09ebe7c09d30a98ccb1d40d1473d8ef55f9be692278012f3d6f57066600ae14817d20bbde2258f2362702f3056f93 SHA512 d8a2b8c4f30eec676f9cb36afc86b4f80d8397ce4d82a2452598116ae50cb861a1eea6543a51898f4c94acb13b8345833283a353f19ae27242b6e993c02f0ef7

diff --git a/dev-python/parso/parso-0.3.1.ebuild b/dev-python/parso/parso-0.3.1.ebuild
deleted file mode 100644
index e40de7cdfb6..00000000000
--- a/dev-python/parso/parso-0.3.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="a python parser that supports error recovery and round-trip parsing"
-HOMEPAGE="https://github.com/davidhalter/parso https://pypi.org/project/parso/"
-SRC_URI="https://github.com/davidhalter/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx )
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-	py.test -vv test || die "tests failed with ${EPYTHON}"
-}
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( "${S}"/docs/_build/html/. )
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/parso/parso-0.5.0.ebuild b/dev-python/parso/parso-0.5.0.ebuild
deleted file mode 100644
index 059cd991adc..00000000000
--- a/dev-python/parso/parso-0.5.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="a python parser that supports error recovery and round-trip parsing"
-HOMEPAGE="https://github.com/davidhalter/parso https://pypi.org/project/parso/"
-SRC_URI="https://github.com/davidhalter/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx )
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-	py.test -vv test || die "tests failed with ${EPYTHON}"
-}
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( "${S}"/docs/_build/html/. )
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/parso/parso-0.5.1.ebuild b/dev-python/parso/parso-0.5.1.ebuild
deleted file mode 100644
index fbadad5e500..00000000000
--- a/dev-python/parso/parso-0.5.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="a python parser that supports error recovery and round-trip parsing"
-HOMEPAGE="https://github.com/davidhalter/parso https://pypi.org/project/parso/"
-SRC_URI="https://github.com/davidhalter/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx )
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-	py.test -vv test || die "tests failed with ${EPYTHON}"
-}
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( "${S}"/docs/_build/html/. )
-	distutils-r1_python_install_all
-}


             reply	other threads:[~2019-12-16  8:09 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-16  8:09 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-20 13:48 [gentoo-commits] repo/gentoo:master commit in: dev-python/parso/ Michał Górny
2024-06-16 17:37 Michał Górny
2024-04-20  9:54 Michał Górny
2024-04-20  9:51 Michał Górny
2024-04-05 19:45 Michał Górny
2023-06-01 13:22 Michał Górny
2023-06-01 13:22 Michał Górny
2022-05-26  9:30 Andrew Ammerlaan
2022-04-25 19:25 Michał Górny
2022-04-25 18:59 Sam James
2022-04-07  4:40 Michał Górny
2021-12-31 18:43 Arthur Zamarin
2021-11-30 21:55 Michał Górny
2021-09-05  1:18 Sam James
2021-09-05  1:18 Sam James
2021-08-26  3:00 Sam James
2021-08-24 23:21 Sam James
2021-08-20 23:51 Sam James
2021-08-20  6:00 Agostino Sarubbo
2021-08-20  5:59 Agostino Sarubbo
2021-08-04 10:23 Sergei Trofimovich
2021-08-04 10:23 Sergei Trofimovich
2021-07-25 15:26 Sergei Trofimovich
2021-07-25 15:26 Sergei Trofimovich
2021-07-25  3:16 Matt Turner
2021-07-25  3:16 Matt Turner
2021-07-24  8:23 Michał Górny
2021-07-01  8:43 Michał Górny
2021-06-20  1:55 Sam James
2021-06-20  1:55 Sam James
2021-05-06 11:19 Michał Górny
2021-05-06 10:06 Sam James
2021-03-31 10:14 Michał Górny
2021-03-02  8:43 Michał Górny
2021-03-02  3:15 Sam James
2020-12-31  6:07 Sam James
2020-09-20  9:36 Michał Górny
2020-09-18 23:59 Sam James
2020-09-08 23:59 Sam James
2020-08-05  7:50 Michał Górny
2020-07-24 14:31 Michał Górny
2020-07-21 22:32 Sam James
2020-06-03 15:21 Agostino Sarubbo
2020-06-03 15:17 Agostino Sarubbo
2020-06-03 15:10 Agostino Sarubbo
2020-06-02 12:01 Michał Górny
2020-04-14  7:58 Agostino Sarubbo
2020-04-14  5:33 Michał Górny
2020-04-14  5:33 Michał Górny
2020-03-27 16:25 Joonas Niilola
2020-03-19 17:20 Michał Górny
2020-03-19 11:40 Mart Raudsepp
2020-03-05  9:27 Agostino Sarubbo
2020-03-05  9:26 Agostino Sarubbo
2020-03-05  9:07 Agostino Sarubbo
2020-03-04 12:33 Michał Górny
2020-03-04  5:01 Michał Górny
2020-03-02 11:34 Sergei Trofimovich
2020-02-28 17:50 Agostino Sarubbo
2020-02-28 14:12 Agostino Sarubbo
2020-02-28  6:06 Michał Górny
2020-02-28  6:06 Michał Górny
2020-02-04  4:50 Michał Górny
2020-01-27 14:28 Agostino Sarubbo
2020-01-27 14:25 Agostino Sarubbo
2020-01-27 12:51 Agostino Sarubbo
2020-01-27  7:22 Michał Górny
2019-12-16  8:09 Michał Górny
2019-12-16  8:09 Michał Górny
2019-12-03  0:54 Patrick McLean
2019-12-02 21:13 Aaron Bauman
2019-11-24 16:15 Aaron Bauman
2019-07-14  6:23 Michał Górny
2019-07-03 22:00 Tim Harder
2019-07-03 22:00 Tim Harder
2018-08-30 15:21 Michał Górny
2018-08-30 15:21 Michał Górny
2018-03-21 20:24 Markus Meier
2018-03-12  0:51 Matt Turner
2018-03-04 22:40 Sergei Trofimovich
2018-02-06  1:53 Tim Harder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1576483779.3cc4bd4492ad12e47b9d29cd11b0b2fcd39caaab.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox