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/pyparsing/
Date: Tue, 31 May 2022 07:28:05 +0000 (UTC)	[thread overview]
Message-ID: <1653981914.5f84fe545428e1de59e786521897dfb0c3f9f5be.mgorny@gentoo> (raw)

commit:     5f84fe545428e1de59e786521897dfb0c3f9f5be
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 07:23:13 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 31 07:25:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f84fe54

dev-python/pyparsing: Remove old

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

 dev-python/pyparsing/Manifest                  |  2 -
 dev-python/pyparsing/pyparsing-3.0.7-r1.ebuild | 60 --------------------------
 dev-python/pyparsing/pyparsing-3.0.8.ebuild    | 46 --------------------
 3 files changed, 108 deletions(-)

diff --git a/dev-python/pyparsing/Manifest b/dev-python/pyparsing/Manifest
index 83bac227ea75..fef86e5a9f4d 100644
--- a/dev-python/pyparsing/Manifest
+++ b/dev-python/pyparsing/Manifest
@@ -1,3 +1 @@
-DIST pyparsing_3.0.7.tar.gz 944917 BLAKE2B bcbcd18817c69a69ac6863affb1309a5ca63fe46a45dc056d8407d79a77d1f19e4d1abce08f5d6f1aff7cbdaefb5b699787abcddfcbf64e5514e79e2b0b86ce6 SHA512 d5d5547188ebda6fb7f45928174314d3d4d10302acc8fb476cd6590fb4a75167dee5f6397ab0b63efd4cb55c0765708ffd432bcfecf28d8f808815e62615f447
-DIST pyparsing_3.0.8.tar.gz 948516 BLAKE2B 8df61ce3c5f0b9ef725bf750fa25c26e482a5786b6c3a03befbf7945c76f67981d0f60bfc98badeb353274e5e3c8442e105ae635d0b93681e23090e70716ce0a SHA512 5567824ac6d4c17755c0d47f2994cc2449383d9d3e9dfa374886d92af38651334483034713df420701d1c4560b331f61d763f7f8d1d7a14a7d221c022b9fc8a7
 DIST pyparsing_3.0.9.tar.gz 967771 BLAKE2B c13c74661b9e0d53b4886c9949b01951d220991f916362a13ce0c32c0ab05a6b1cab4d5e5a626acb7563c0ec1716348ede205cb67bf22c0710904f07404ad82a SHA512 1158f27e31f8eced540217b7234b09005eac416fad74faf59678fdae93fe2f76e0e3b5f4adfd3ceb42c8aef19150950293e989c9a5189741175073eb7a03cd6d

diff --git a/dev-python/pyparsing/pyparsing-3.0.7-r1.ebuild b/dev-python/pyparsing/pyparsing-3.0.7-r1.ebuild
deleted file mode 100644
index 0ddc113a0975..000000000000
--- a/dev-python/pyparsing/pyparsing-3.0.7-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2004-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
-EAPI=7
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-MY_P=${P/-/_}
-DESCRIPTION="Easy-to-use Python module for text parsing"
-HOMEPAGE="https://github.com/pyparsing/pyparsing https://pypi.org/project/pyparsing/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/${MY_P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="examples"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-	# railroad-diagrams not packaged (and not suitable for packaging yet)
-	tests/test_diagram.py
-)
-
-EPYTEST_DESELECT=(
-	# also railroad-diagrams
-	tests/test_unit.py::Test02_WithoutPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test04_WithPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test06_WithBoundedPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test08_WithUnboundedPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test09_WithLeftRecursionParsing::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test10_WithLeftRecursionParsingBoundedMemo::testEmptyExpressionsAreHandledProperly
-)
-
-src_configure() {
-	[[ -e pyproject.toml ]] &&
-		die "Upstream added pyproject.toml, recheck"
-	# write a custom pyproject.toml to ease setuptools bootstrap
-	cat > pyproject.toml <<-EOF || die
-		[build-system]
-		requires = ["flit_core >=3.2,<4"]
-		build-backend = "flit_core.buildapi"
-
-		[project]
-		name = "pyparsing"
-		dynamic = ["version", "description"]
-	EOF
-}
-
-python_install_all() {
-	if use examples; then
-		docompress -x /usr/share/doc/${PF}/examples
-		dodoc -r examples
-	fi
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/pyparsing/pyparsing-3.0.8.ebuild b/dev-python/pyparsing/pyparsing-3.0.8.ebuild
deleted file mode 100644
index 5dd04e79a482..000000000000
--- a/dev-python/pyparsing/pyparsing-3.0.8.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2004-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
-EAPI=7
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..11} pypy3 )
-
-inherit distutils-r1
-
-MY_P=${P/-/_}
-DESCRIPTION="Easy-to-use Python module for text parsing"
-HOMEPAGE="https://github.com/pyparsing/pyparsing https://pypi.org/project/pyparsing/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/${MY_P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="examples"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-	# railroad-diagrams not packaged (and not suitable for packaging yet)
-	tests/test_diagram.py
-)
-
-EPYTEST_DESELECT=(
-	# also railroad-diagrams
-	tests/test_unit.py::Test02_WithoutPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test04_WithPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test06_WithBoundedPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test08_WithUnboundedPackrat::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test09_WithLeftRecursionParsing::testEmptyExpressionsAreHandledProperly
-	tests/test_unit.py::Test10_WithLeftRecursionParsingBoundedMemo::testEmptyExpressionsAreHandledProperly
-)
-
-python_install_all() {
-	if use examples; then
-		docompress -x /usr/share/doc/${PF}/examples
-		dodoc -r examples
-	fi
-	distutils-r1_python_install_all
-}


             reply	other threads:[~2022-05-31  7:28 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-31  7:28 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-06  2:30 [gentoo-commits] repo/gentoo:master commit in: dev-python/pyparsing/ Michał Górny
2024-10-06  2:30 Michał Górny
2024-09-29 15:20 Michał Górny
2024-09-28 10:52 Michał Górny
2024-09-28 10:44 Arthur Zamarin
2024-09-25  4:39 Michał Górny
2024-09-13 17:56 Michał Górny
2024-09-13 13:47 Michał Górny
2024-08-26  4:23 Michał Górny
2024-05-18  8:09 Michał Górny
2024-03-22  4:38 Michał Górny
2024-03-21 17:51 Arthur Zamarin
2024-03-06 21:18 Michał Górny
2023-11-24 13:42 Michał Górny
2023-08-30  4:14 Sam James
2023-07-30 17:51 Michał Górny
2023-07-24  8:54 Jakov Smolić
2023-06-19  4:58 Michał Górny
2023-05-23 15:42 Michał Górny
2022-05-31  7:07 Jakov Smolić
2022-05-11  8:05 Michał Górny
2022-04-10  8:58 Michał Górny
2022-02-27 18:46 Michał Górny
2022-02-04 10:27 Michał Górny
2022-01-26 11:32 Michał Górny
2022-01-21  8:54 Arthur Zamarin
2021-12-12 21:32 Michał Górny
2021-12-12 20:16 Arthur Zamarin
2021-11-25  5:47 Sam James
2021-11-12 20:03 Michał Górny
2021-11-08  8:31 Michał Górny
2021-10-31  7:12 Michał Górny
2021-10-28  7:00 Michał Górny
2021-10-25  5:58 Michał Górny
2021-10-23 20:20 Michał Górny
2021-09-27  6:59 Michał Górny
2021-08-21 22:15 James Le Cuirot
2021-05-05 13:33 Michał Górny
2020-09-27 17:47 Michał Górny
2020-07-09 13:42 Michał Górny
2020-07-09  8:34 Agostino Sarubbo
2020-05-25 13:26 Michał Górny
2020-04-08 18:54 Sebastian Pipping
2020-03-28 18:03 Michał Górny
2020-03-28 18:03 Michał Górny
2020-03-25 15:42 Agostino Sarubbo
2020-03-25 15:27 Agostino Sarubbo
2020-03-25 14:17 Agostino Sarubbo
2020-03-25 12:36 Agostino Sarubbo
2020-03-25 12:23 Agostino Sarubbo
2020-01-31  7:52 Tim Harder
2019-05-11 19:25 Matthew Thode
2019-04-12  5:01 Tim Harder
2019-03-17  1:51 Mike Gilbert
2019-03-17  1:51 Mike Gilbert
2019-01-02 21:29 Tim Harder
2017-09-30  0:00 Matt Thode
2017-05-18 20:00 Michael Weber
2017-05-18 19:14 Michael Weber
2017-05-12 17:56 Tobias Klausmann
2017-05-12 14:55 Agostino Sarubbo
2017-05-06 11:13 Jeroen Roovers
2017-05-06  7:28 Markus Meier
2017-05-03 12:18 Michał Górny
2017-03-26  4:16 Matt Thode
2017-03-09 15:54 Michael Haubenwallner
2017-01-31 16:14 Mike Gilbert
2016-10-26 22:31 Tim Harder
2016-09-12 17:06 Tim Harder
2016-09-05 21:44 Manuel Rüger
2016-07-12 17:30 Tim Harder
2016-02-09 12:19 Justin Lecher
2016-02-08 18:40 Justin Lecher
2015-12-31 13:09 Justin Lecher
2015-11-17 11:03 Justin Lecher
2015-10-30 13:14 Justin Lecher
2015-10-29 10:44 Justin Lecher
2015-10-29 10:44 Justin Lecher
2015-10-26  6:32 Jeroen Roovers
2015-10-26  6:01 Jeroen Roovers
2015-10-23  9:05 Agostino Sarubbo
2015-10-19 16:56 Justin Lecher
2015-10-15 14:41 Justin Lecher

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=1653981914.5f84fe545428e1de59e786521897dfb0c3f9f5be.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