From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyopenssl/
Date: Wed, 18 Mar 2020 07:27:13 +0000 (UTC) [thread overview]
Message-ID: <1584516428.aad8eb10d40e28ca1b81d8187d3a85ea5586a898.mgorny@gentoo> (raw)
commit: aad8eb10d40e28ca1b81d8187d3a85ea5586a898
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 18 06:49:58 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 18 07:27:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aad8eb10
dev-python/pyopenssl: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pyopenssl/Manifest | 2 -
dev-python/pyopenssl/pyopenssl-17.5.0.ebuild | 67 ---------------------------
dev-python/pyopenssl/pyopenssl-18.0.0.ebuild | 68 ----------------------------
3 files changed, 137 deletions(-)
diff --git a/dev-python/pyopenssl/Manifest b/dev-python/pyopenssl/Manifest
index 063275bd3ee..7b91c85c05e 100644
--- a/dev-python/pyopenssl/Manifest
+++ b/dev-python/pyopenssl/Manifest
@@ -1,4 +1,2 @@
-DIST pyOpenSSL-17.5.0.tar.gz 170870 BLAKE2B e8b8986a7c5475ac3898df4877a8be86db359af79e1718bad85149440cff543c501ee23eb369270d2c539a9e3f4e13165ea87b858ef6916ee79ca6e49f6e5370 SHA512 f194662b5842f1e3a4fcb910b9f2e6482d1dcdf834f306acc3dd6d9723f65038f7bff550248fa6268d90c839c9d9e8248bb6c7d399495fe6aed25291b93ece86
-DIST pyOpenSSL-18.0.0.tar.gz 167296 BLAKE2B 3a9c8db02e92858353389508d9791d2ff0b07b54150d27a513b4c26ef62899167d184702cd8ac3a9fb5be120a92e31259ce265a400513de4622c30b1269ecd9f SHA512 7106d4116243a164c1f458ad495564c2cf3a46b4b0fbb1d452b4174ead4409bc9c783c3a4674231ed3c26ecf588077b01dadbdefe033d5e7251a61531c6f6c15
DIST pyOpenSSL-19.0.0.tar.gz 168551 BLAKE2B 762d3358b3cc4f1e088e9464ac079e5212c537d25691e51edb3255a192c42276506c758ecf16eff999082bfd05aeb92a37741338d92036d2149b87c95008db05 SHA512 a7e12bf5be725ccebd1223d567a9b9e8bd35f79cbf3a0409108fa6f00e10ab137dd6876369e9dede02b2abc7d700786cc905532ca5c31b6e246f6df8b24e2818
DIST pyOpenSSL-19.1.0.tar.gz 160510 BLAKE2B e6e39f860221a2696aa3fa32ac89ed48e34b18e4accc366a86264d943a15a1b00ba1a0d8349550d1775d25836aa5d214e1e3fe4ec0a9c0f6d5ab00cd9fede633 SHA512 4acd96f287d72eb11bd812697d28cd6eb6a96a4653248b65f967187830a6b17cc1254775a18a3405469f3d45abdae6f02d165f2f35f035f3174c2826fba82916
diff --git a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
deleted file mode 100644
index 00425f8df5f..00000000000
--- a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 flag-o-matic
-
-MY_PN=pyOpenSSL
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Python interface to the OpenSSL library"
-HOMEPAGE="
- http://pyopenssl.sourceforge.net/
- https://launchpad.net/pyopenssl
- https://pypi.org/project/pyOpenSSL/
-"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc examples test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-python/six-1.5.2[${PYTHON_USEDEP}]
- >=dev-python/cryptography-2.1.4[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? (
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
- )
- test? (
- virtual/python-cffi[${PYTHON_USEDEP}]
- dev-python/flaky[${PYTHON_USEDEP}]
- dev-python/pretend[${PYTHON_USEDEP}]
- >=dev-python/pytest-3.0.1[${PYTHON_USEDEP}] )"
-
-S=${WORKDIR}/${MY_P}
-
-python_prepare_all() {
- # Requires network access
- sed -i -e 's/test_set_default_verify_paths/_&/' tests/test_ssl.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C doc html
-}
-
-python_test() {
- TZ=UTC py.test -v || die "Testing failed with ${EPYTHON}" # Fixes bug #627530
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( doc/_build/html/. )
- if use examples ; then
- docinto examples
- dodoc -r examples/*
- docompress -x /usr/share/doc/${PF}/examples
- fi
-
- distutils-r1_python_install_all
-}
diff --git a/dev-python/pyopenssl/pyopenssl-18.0.0.ebuild b/dev-python/pyopenssl/pyopenssl-18.0.0.ebuild
deleted file mode 100644
index d3a31ab8b26..00000000000
--- a/dev-python/pyopenssl/pyopenssl-18.0.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 flag-o-matic
-
-MY_PN=pyOpenSSL
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Python interface to the OpenSSL library"
-HOMEPAGE="
- http://pyopenssl.sourceforge.net/
- https://launchpad.net/pyopenssl
- https://pypi.org/project/pyOpenSSL/
-"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc examples test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-python/six-1.5.2[${PYTHON_USEDEP}]
- >=dev-python/cryptography-2.2.1[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? (
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
- )
- test? (
- virtual/python-cffi[${PYTHON_USEDEP}]
- dev-python/flaky[${PYTHON_USEDEP}]
- dev-python/pretend[${PYTHON_USEDEP}]
- >=dev-python/pytest-3.0.1[${PYTHON_USEDEP}]
- )"
-
-S=${WORKDIR}/${MY_P}
-
-python_prepare_all() {
- # Requires network access
- sed -i -e 's/test_set_default_verify_paths/_&/' tests/test_ssl.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C doc html
-}
-
-python_test() {
- TZ=UTC py.test -v || die "Testing failed with ${EPYTHON}" # Fixes bug #627530
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( doc/_build/html/. )
- if use examples ; then
- docinto examples
- dodoc -r examples/*
- docompress -x /usr/share/doc/${PF}/examples
- fi
-
- distutils-r1_python_install_all
-}
next reply other threads:[~2020-03-18 7:27 UTC|newest]
Thread overview: 201+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-18 7:27 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-19 17:53 [gentoo-commits] repo/gentoo:master commit in: dev-python/pyopenssl/ Michał Górny
2024-08-12 18:53 Michał Górny
2024-08-12 17:18 Arthur Zamarin
2024-08-10 15:41 Michał Górny
2024-08-10 8:35 Michał Górny
2024-08-10 8:17 Michał Górny
2024-08-10 7:25 Michał Górny
2024-08-10 6:43 Michał Górny
2024-08-10 6:26 Michał Górny
2024-07-21 18:28 Michał Górny
2024-05-11 6:54 Michał Górny
2024-05-02 1:37 Michał Górny
2024-05-01 23:18 Ionen Wolkens
2024-05-01 23:18 Ionen Wolkens
2024-05-01 23:18 Ionen Wolkens
2024-05-01 23:18 Ionen Wolkens
2024-04-20 9:18 Michał Górny
2024-04-17 6:54 Sam James
2024-03-30 14:53 Michał Górny
2024-03-10 3:35 Michał Górny
2024-02-24 8:49 Michał Górny
2024-02-24 2:44 Ionen Wolkens
2024-02-08 17:10 Arthur Zamarin
2024-02-08 15:28 Michał Górny
2024-02-08 15:28 Michał Górny
2024-02-08 14:43 Michał Górny
2024-02-08 14:43 Michał Górny
2024-01-23 4:39 Michał Górny
2023-12-16 16:59 Michał Górny
2023-12-15 15:50 Arthur Zamarin
2023-12-15 12:41 Arthur Zamarin
2023-12-15 11:36 Arthur Zamarin
2023-12-15 11:30 Arthur Zamarin
2023-12-15 11:02 Arthur Zamarin
2023-12-15 10:50 Arthur Zamarin
2023-10-26 12:19 Michał Górny
2023-08-25 8:46 Michał Górny
2023-08-25 4:52 Arthur Zamarin
2023-08-02 17:11 Arthur Zamarin
2023-07-20 10:16 WANG Xuerui
2023-07-09 19:36 Arthur Zamarin
2023-07-09 18:30 Arthur Zamarin
2023-07-09 17:08 Arthur Zamarin
2023-07-09 16:51 Arthur Zamarin
2023-07-09 16:51 Arthur Zamarin
2023-06-08 8:51 Michał Górny
2023-05-27 13:21 Michał Górny
2023-04-25 15:00 Michał Górny
2023-04-25 11:36 Arthur Zamarin
2023-04-25 0:31 Sam James
2023-04-25 0:31 Sam James
2023-04-25 0:31 Sam James
2023-04-25 0:31 Sam James
2023-04-25 0:31 Sam James
2023-04-24 23:20 Sam James
2023-03-28 5:19 Michał Górny
2023-03-25 17:19 Michał Górny
2023-03-24 19:06 Arthur Zamarin
2023-02-07 9:26 Michał Górny
2023-02-07 2:53 Sam James
2023-02-03 16:56 Arthur Zamarin
2023-02-03 16:56 Sam James
2023-02-03 16:56 Sam James
2023-02-03 16:56 Sam James
2023-02-03 16:55 Sam James
2023-02-03 16:55 Sam James
2023-01-02 14:54 Michał Górny
2022-11-04 8:38 Michał Górny
2022-11-04 8:16 Agostino Sarubbo
2022-11-03 21:06 Arthur Zamarin
2022-11-03 21:06 Arthur Zamarin
2022-11-03 21:01 Arthur Zamarin
2022-11-03 19:47 Arthur Zamarin
2022-11-03 19:35 Arthur Zamarin
2022-11-03 19:28 Sam James
2022-09-26 11:21 Michał Górny
2022-07-29 13:39 Michał Górny
2022-07-29 10:37 Arthur Zamarin
2022-07-04 6:57 Michał Górny
2022-07-02 12:21 Arthur Zamarin
2022-06-30 18:16 Arthur Zamarin
2022-06-01 8:12 Agostino Sarubbo
2022-06-01 8:11 Agostino Sarubbo
2022-06-01 8:10 Agostino Sarubbo
2022-06-01 8:09 Agostino Sarubbo
2022-05-31 22:08 Sam James
2022-05-31 22:08 Sam James
2022-05-27 19:55 Michał Górny
2022-05-27 11:02 Jakov Smolić
2022-05-27 9:49 Jakov Smolić
2022-05-27 9:25 Jakov Smolić
2022-05-27 9:21 Jakov Smolić
2022-05-27 9:18 Jakov Smolić
2022-05-27 9:18 Jakov Smolić
2022-05-27 9:12 Jakov Smolić
2022-05-27 9:07 Jakov Smolić
2022-05-12 16:17 Michał Górny
2022-05-12 16:17 Michał Górny
2022-04-27 11:44 Arthur Zamarin
2022-04-27 11:44 Arthur Zamarin
2022-04-27 11:44 Arthur Zamarin
2022-04-27 11:44 Arthur Zamarin
2022-04-22 17:31 Arthur Zamarin
2022-04-22 8:46 Jakov Smolić
2022-04-21 19:56 Michał Górny
2022-04-15 6:43 Sam James
2022-02-07 9:35 Sam James
2021-11-28 14:42 Michał Górny
2021-05-20 20:11 Michał Górny
2021-05-15 21:36 Michał Górny
2021-05-15 19:07 Sam James
2021-05-10 6:58 Agostino Sarubbo
2021-05-02 22:09 Sergei Trofimovich
2021-04-30 23:43 Sam James
2021-04-12 14:08 Michał Górny
2021-01-21 21:09 Sam James
2021-01-19 7:04 Sergei Trofimovich
2021-01-19 2:20 Sam James
2021-01-19 2:20 Sam James
2021-01-18 16:52 Sam James
2021-01-11 17:34 Sergei Trofimovich
2021-01-10 14:30 Sam James
2021-01-08 12:20 Sam James
2021-01-05 21:03 Sam James
2020-12-16 10:09 Michał Górny
2020-11-28 8:43 Michał Górny
2020-09-20 13:11 Michał Górny
2020-05-25 19:48 Michał Górny
2020-04-22 8:15 Michał Górny
2020-04-11 11:21 Mart Raudsepp
2020-04-05 19:01 Sergei Trofimovich
2020-03-18 11:13 Agostino Sarubbo
2020-03-18 11:11 Agostino Sarubbo
2020-03-18 11:04 Agostino Sarubbo
2020-03-18 11:00 Agostino Sarubbo
2020-03-18 9:56 Agostino Sarubbo
2020-03-18 9:51 Agostino Sarubbo
2020-03-18 9:49 Agostino Sarubbo
2020-03-18 9:46 Agostino Sarubbo
2019-11-25 12:35 Michał Górny
2019-11-21 13:03 Michał Górny
2019-11-19 7:02 Michał Górny
2019-11-19 7:02 Michał Górny
2019-06-12 17:08 Michael Haubenwallner
2019-05-11 19:06 Matthew Thode
2019-02-22 19:40 Craig Andrews
2018-12-30 9:22 Tim Harder
2018-11-19 21:15 Fabian Groffen
2018-06-27 8:19 Fabian Groffen
2018-06-26 18:26 Fabian Groffen
2018-06-21 12:11 Fabian Groffen
2018-05-30 19:52 Mike Frysinger
2018-05-15 1:47 Aaron Bauman
2018-04-22 20:19 Matt Turner
2018-04-16 21:06 Sergei Trofimovich
2018-04-15 9:20 Sergei Trofimovich
2018-04-15 5:37 Matt Turner
2018-04-14 16:53 Sergei Trofimovich
2018-03-31 18:58 Matt Thode
2018-03-31 5:02 Matt Turner
2018-03-31 2:41 Matt Thode
2018-03-14 21:45 Sergei Trofimovich
2018-02-22 6:22 Michał Górny
2018-02-19 0:54 Matt Thode
2018-01-23 20:18 Michał Górny
2017-11-27 17:53 Mike Gilbert
2017-11-26 18:15 Tim Harder
2017-10-08 16:53 Tim Harder
2017-09-30 1:03 Matt Thode
2017-09-22 7:34 Sergei Trofimovich
2017-09-10 11:49 Sergei Trofimovich
2017-08-01 20:06 Michał Górny
2017-08-01 18:52 Brian Dolbec
2017-05-19 13:37 Michael Weber
2017-05-15 9:47 Lars Wendler
2017-05-03 11:02 Michał Górny
2017-02-19 17:46 Mike Gilbert
2017-01-23 6:24 Jeroen Roovers
2017-01-15 20:22 Markus Meier
2017-01-08 9:52 Aaron Bauman
2017-01-06 14:33 Tobias Klausmann
2016-11-30 18:05 Michał Górny
2016-11-30 18:05 Michał Górny
2016-10-25 20:27 Lars Wendler
2016-10-24 11:30 Lars Wendler
2016-10-24 11:30 Lars Wendler
2016-09-05 21:50 Manuel Rüger
2016-06-21 2:47 Mike Frysinger
2016-05-13 1:15 Mike Frysinger
2016-03-20 10:19 Dirkjan Ochtman
2016-03-19 11:35 Agostino Sarubbo
2016-02-03 20:53 Markus Meier
2016-02-02 16:46 Tobias Klausmann
2016-01-24 17:35 Agostino Sarubbo
2016-01-24 8:23 Jeroen Roovers
2016-01-24 8:16 Jeroen Roovers
2015-11-11 17:27 Justin Lecher
2015-10-18 16:48 Mikle Kolyada
2015-10-11 7:05 Justin Lecher
2015-08-26 14:47 Manuel Rüger
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=1584516428.aad8eb10d40e28ca1b81d8187d3a85ea5586a898.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