From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wrapt/
Date: Thu, 26 Mar 2020 11:48:12 +0000 (UTC) [thread overview]
Message-ID: <1585223282.8eef2adf50133f9a467008c9434124a188a0b859.mgorny@gentoo> (raw)
commit: 8eef2adf50133f9a467008c9434124a188a0b859
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 26 11:44:40 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 26 11:48:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eef2adf
dev-python/wrapt: Remove redundant versions
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/wrapt/Manifest | 2 --
dev-python/wrapt/wrapt-1.10.11.ebuild | 47 -----------------------------------
dev-python/wrapt/wrapt-1.12.0.ebuild | 26 -------------------
3 files changed, 75 deletions(-)
diff --git a/dev-python/wrapt/Manifest b/dev-python/wrapt/Manifest
index c37e0525c7f..1d7c552d24d 100644
--- a/dev-python/wrapt/Manifest
+++ b/dev-python/wrapt/Manifest
@@ -1,4 +1,2 @@
-DIST wrapt-1.10.11.tar.gz 122499 BLAKE2B 1398bc84e3d5490ba6e6f6f386d5eb6439ec750a2a1c5c29acf91e87a9c9405b11ff10dcb56e4aa28d07d34f7a56fbe9154d2f30556f5a2ae4f1a0986033e05a SHA512 cc051749341bcd6fc1a950607fad94f74334a00acf0366129470181a5af7a3af32a26e5c5deee9242ee12bcc7e4c47dacb958c514aba8a764be3bcc662845b98
DIST wrapt-1.11.2.tar.gz 124874 BLAKE2B 262518e097753830d80d834e1dcd5afe9c743e7cad8fad992146829255b99ef0c1a6d0344674935bb6beae9a8e5f42a1a4ade760f7300d104b1a17bc6f94f91f SHA512 2551247c46fbc34068e0f2d6efa91d8c87669c8bf1e16c3b5e2e5e0d84402301c38a78485b7e9a13120c99c9c942db680a84d87a52a072d530aba6444d86297d
-DIST wrapt-1.12.0.tar.gz 126524 BLAKE2B 9215b8d5b53348daaeda6a6e4141408e1ab4e6cf6112e0a152be90ed9e1040433400e8788ec48559763ab5618abab6ae601b6ed254bfd641ec1976b52071ede9 SHA512 56a88e223dfe3d1b0f5fa01219b0a9a710d5a67cacd87d8766cf122498c47a41f4e64d2fcb0d3c939bc775893a7edcac68295754819b37ca469b301f1e98df41
DIST wrapt-1.12.1.tar.gz 126750 BLAKE2B 92aba2d400aa626445be68fdda2831132e1c341a2f20065b3d7071a2ebc174cb9de7e6a20a8375360cf7df181881fd20b7b2f70dbfdf533e8823982eeaa722f5 SHA512 33e964cb3aa2437bc7d084a98f622f7c5c8c719d97806796ae0317d35130bdb2679a9dd87be7077e2cae1eb32b65d152349fa7cc138cb392d5999cbfdcecc9ac
diff --git a/dev-python/wrapt/wrapt-1.10.11.ebuild b/dev-python/wrapt/wrapt-1.10.11.ebuild
deleted file mode 100644
index 73f3d9d8ba9..00000000000
--- a/dev-python/wrapt/wrapt-1.10.11.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Module for decorators, wrappers and monkey patching"
-HOMEPAGE="https://github.com/GrahamDumpleton/wrapt"
-SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )
- doc? (
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
- )
-"
-RDEPEND=""
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_compile() {
- local WRAPT_EXTENSIONS=true
-
- distutils-r1_python_compile
-}
-
-python_test() {
- py.test -vv || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
-
- distutils-r1_python_install_all
-}
diff --git a/dev-python/wrapt/wrapt-1.12.0.ebuild b/dev-python/wrapt/wrapt-1.12.0.ebuild
deleted file mode 100644
index e250e36f2be..00000000000
--- a/dev-python/wrapt/wrapt-1.12.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Module for decorators, wrappers and monkey patching"
-HOMEPAGE="https://github.com/GrahamDumpleton/wrapt"
-SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
-
-python_compile() {
- local WRAPT_EXTENSIONS=true
-
- distutils-r1_python_compile
-}
next reply other threads:[~2020-03-26 11:48 UTC|newest]
Thread overview: 124+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-26 11:48 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-23 7:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/wrapt/ Michał Górny
2024-11-23 7:10 Michał Górny
2024-10-17 17:03 Michał Górny
2023-11-29 15:29 Michał Górny
2023-11-29 15:15 Arthur Zamarin
2023-11-29 14:56 Arthur Zamarin
2023-11-29 13:18 Arthur Zamarin
2023-11-29 12:34 Arthur Zamarin
2023-11-29 11:35 Michał Górny
2023-11-29 11:32 Michał Górny
2023-11-29 11:15 Michał Górny
2023-11-29 10:03 Michał Górny
2023-11-09 18:40 Arthur Zamarin
2023-11-05 5:23 Michał Górny
2023-11-05 5:23 Michał Górny
2023-11-05 5:23 Michał Górny
2023-05-29 12:00 Michał Górny
2023-05-04 17:04 Michał Górny
2023-03-30 19:35 Michał Górny
2023-03-30 18:34 Arthur Zamarin
2023-03-30 18:33 Arthur Zamarin
2023-03-30 16:00 Arthur Zamarin
2023-03-30 15:56 Arthur Zamarin
2023-03-30 15:51 Arthur Zamarin
2023-03-30 15:36 Arthur Zamarin
2023-03-30 15:36 Arthur Zamarin
2023-03-30 15:34 Arthur Zamarin
2023-02-27 5:38 Michał Górny
2022-06-17 12:44 Michał Górny
2022-06-17 10:17 Jakov Smolić
2022-06-16 23:05 Jakov Smolić
2022-06-16 10:16 Jakov Smolić
2022-06-16 10:15 Jakov Smolić
2022-06-16 10:15 Jakov Smolić
2022-06-16 9:56 Jakov Smolić
2022-06-16 9:52 Jakov Smolić
2022-06-16 9:33 Jakov Smolić
2022-05-13 6:15 Michał Górny
2022-05-02 8:27 Michał Górny
2022-04-18 18:22 Arthur Zamarin
2022-04-16 7:38 Sam James
2022-04-15 16:40 Arthur Zamarin
2022-04-15 16:40 Arthur Zamarin
2022-04-15 15:09 Arthur Zamarin
2022-04-15 15:04 Arthur Zamarin
2022-04-15 15:04 Arthur Zamarin
2022-03-19 14:03 Arthur Zamarin
2022-03-19 14:03 Arthur Zamarin
2022-03-19 7:56 Agostino Sarubbo
2022-03-18 18:09 Sam James
2022-03-18 18:09 Sam James
2022-03-18 17:26 Arthur Zamarin
2022-03-18 12:24 Arthur Zamarin
2022-03-10 18:36 Arthur Zamarin
2022-01-30 13:09 Michał Górny
2021-12-07 8:40 Joshua Kinard
2021-11-10 15:19 Arthur Zamarin
2021-11-09 22:35 Sam James
2021-11-06 19:56 Sam James
2021-11-05 17:38 Sam James
2021-11-05 17:38 Sam James
2021-11-05 17:33 Sam James
2021-11-05 2:20 Sam James
2021-11-05 2:18 Sam James
2021-11-05 2:12 Sam James
2021-10-13 7:20 Michał Górny
2021-10-05 8:27 Michał Górny
2021-09-25 13:09 James Le Cuirot
2021-05-30 23:19 Marek Szuba
2021-05-30 8:14 Michał Górny
2021-01-06 22:30 Fabian Groffen
2020-09-04 8:57 Sergei Trofimovich
2020-07-12 16:57 Michał Górny
2020-07-11 15:21 Sam James
2020-07-09 8:41 Agostino Sarubbo
2020-07-09 8:27 Agostino Sarubbo
2020-07-09 8:16 Agostino Sarubbo
2020-07-09 8:04 Agostino Sarubbo
2020-07-09 7:58 Agostino Sarubbo
2020-06-03 21:16 Sergei Trofimovich
2020-04-08 14:01 Agostino Sarubbo
2020-03-26 11:48 Michał Górny
2020-03-18 18:39 Michał Górny
2020-03-14 19:22 Sebastian Pipping
2020-03-14 18:25 Mikle Kolyada
2020-03-09 20:22 Andreas Sturmlechner
2020-03-09 12:48 Agostino Sarubbo
2020-03-09 12:42 Agostino Sarubbo
2020-03-09 12:41 Agostino Sarubbo
2020-03-09 12:39 Agostino Sarubbo
2020-03-09 11:17 Agostino Sarubbo
2020-03-09 10:23 Agostino Sarubbo
2020-03-06 16:33 Sebastian Pipping
2020-03-05 19:44 Sebastian Pipping
2020-02-11 7:39 Michał Górny
2020-01-29 19:53 Patrick McLean
2019-06-19 4:09 Jason Zaman
2018-03-10 14:56 Pacho Ramos
2018-01-06 13:39 Michał Górny
2017-12-27 19:02 Fabian Groffen
2017-10-04 8:57 Michał Górny
2017-08-27 8:07 Tim Harder
2017-07-26 9:40 Fabian Groffen
2017-05-03 9:26 Michał Górny
2017-02-20 18:08 Markus Meier
2017-02-16 9:32 Zac Medico
2017-01-24 11:46 Agostino Sarubbo
2017-01-23 18:58 Tobias Klausmann
2016-04-24 15:12 Alex Brandt
2016-04-24 15:12 Alex Brandt
2016-04-10 21:55 Alex Brandt
2016-02-28 7:00 Matt Thode
2016-01-08 15:38 Alex Brandt
2015-12-26 15:20 Alex Brandt
2015-12-24 17:20 Alex Brandt
2015-12-09 12:01 Justin Lecher
2015-12-03 10:21 Justin Lecher
2015-12-03 10:21 Justin Lecher
2015-12-03 10:21 Justin Lecher
2015-11-10 8:24 Agostino Sarubbo
2015-11-10 8:19 Agostino Sarubbo
2015-09-16 8:53 Justin Lecher
2015-09-01 15:27 Matt Thode
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=1585223282.8eef2adf50133f9a467008c9434124a188a0b859.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