Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-python/ctypescrypto/
Date: Tue, 10 May 2022 05:28:52
Message-Id: 1652160427.772c1f999a9d92484d6ef5dd3748d72ce132af85.jsmolic@gentoo
1 commit: 772c1f999a9d92484d6ef5dd3748d72ce132af85
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 10 05:27:07 2022 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Tue May 10 05:27:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=772c1f99
7
8 dev-python/ctypescrypto: treeclean
9
10 Closes: https://bugs.gentoo.org/832317
11 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
12
13 dev-python/ctypescrypto/Manifest | 1 -
14 dev-python/ctypescrypto/ctypescrypto-0.5.ebuild | 41 ------------------------
15 dev-python/ctypescrypto/ctypescrypto-9999.ebuild | 41 ------------------------
16 dev-python/ctypescrypto/metadata.xml | 17 ----------
17 profiles/package.mask | 6 ----
18 5 files changed, 106 deletions(-)
19
20 diff --git a/dev-python/ctypescrypto/Manifest b/dev-python/ctypescrypto/Manifest
21 deleted file mode 100644
22 index 26b4a90612f0..000000000000
23 --- a/dev-python/ctypescrypto/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST ctypescrypto-0.5.tar.gz 44667 BLAKE2B abf24a4a5dc5ea1d977427f781e44433aaeac716b4f1f8d6f23e7f8de7debae75cfff80e72c369b64b8b9299f4b058763d42c5f21cd499f9b5689481afa5a538 SHA512 96ca12145be503a5b343d936cde172039057e5a2308fb6f6f65e14fe859d4e98d93ffb996849e391cf0c474425ee6243fd4c7998b088938a21456965d135188f
27
28 diff --git a/dev-python/ctypescrypto/ctypescrypto-0.5.ebuild b/dev-python/ctypescrypto/ctypescrypto-0.5.ebuild
29 deleted file mode 100644
30 index 2c7dccb1cf8e..000000000000
31 --- a/dev-python/ctypescrypto/ctypescrypto-0.5.ebuild
32 +++ /dev/null
33 @@ -1,41 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -DISTUTILS_USE_SETUPTOOLS=no
40 -PYTHON_COMPAT=( python3_{8..10} )
41 -
42 -inherit distutils-r1
43 -
44 -DESCRIPTION="Python interface to some openssl function based on ctypes module"
45 -HOMEPAGE="https://github.com/vbwagner/ctypescrypto"
46 -if [ "${PV}" = "9999" ]; then
47 - EGIT_REPO_URI="https://github.com/vbwagner/ctypescrypto.git"
48 - inherit git-r3
49 -else
50 - SRC_URI="https://github.com/vbwagner/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 - KEYWORDS="~amd64"
52 -fi
53 -
54 -LICENSE="MIT"
55 -SLOT="0"
56 -IUSE="gost test"
57 -RESTRICT="!test? ( test )"
58 -REQUIRED_USE="test? ( gost )"
59 -
60 -RDEPEND="gost? ( dev-libs/gost-engine:= )"
61 -
62 -python_prepare_all() {
63 - # Remove failed tests
64 - rm tests/testpkey.py || die "rm failed"
65 - # Disable test
66 - sed -i '/test_verify_by_filestore/i\\ @unittest.skip("disable")' \
67 - tests/testx509.py || die "sed failed for tests/testx509.py"
68 -
69 - distutils-r1_python_prepare_all
70 -}
71 -
72 -python_test() {
73 - "${PYTHON}" -m unittest discover -v tests || die "tests failed with ${EPYTHON}"
74 -}
75
76 diff --git a/dev-python/ctypescrypto/ctypescrypto-9999.ebuild b/dev-python/ctypescrypto/ctypescrypto-9999.ebuild
77 deleted file mode 100644
78 index 2c7dccb1cf8e..000000000000
79 --- a/dev-python/ctypescrypto/ctypescrypto-9999.ebuild
80 +++ /dev/null
81 @@ -1,41 +0,0 @@
82 -# Copyright 1999-2021 Gentoo Authors
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=7
86 -
87 -DISTUTILS_USE_SETUPTOOLS=no
88 -PYTHON_COMPAT=( python3_{8..10} )
89 -
90 -inherit distutils-r1
91 -
92 -DESCRIPTION="Python interface to some openssl function based on ctypes module"
93 -HOMEPAGE="https://github.com/vbwagner/ctypescrypto"
94 -if [ "${PV}" = "9999" ]; then
95 - EGIT_REPO_URI="https://github.com/vbwagner/ctypescrypto.git"
96 - inherit git-r3
97 -else
98 - SRC_URI="https://github.com/vbwagner/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
99 - KEYWORDS="~amd64"
100 -fi
101 -
102 -LICENSE="MIT"
103 -SLOT="0"
104 -IUSE="gost test"
105 -RESTRICT="!test? ( test )"
106 -REQUIRED_USE="test? ( gost )"
107 -
108 -RDEPEND="gost? ( dev-libs/gost-engine:= )"
109 -
110 -python_prepare_all() {
111 - # Remove failed tests
112 - rm tests/testpkey.py || die "rm failed"
113 - # Disable test
114 - sed -i '/test_verify_by_filestore/i\\ @unittest.skip("disable")' \
115 - tests/testx509.py || die "sed failed for tests/testx509.py"
116 -
117 - distutils-r1_python_prepare_all
118 -}
119 -
120 -python_test() {
121 - "${PYTHON}" -m unittest discover -v tests || die "tests failed with ${EPYTHON}"
122 -}
123
124 diff --git a/dev-python/ctypescrypto/metadata.xml b/dev-python/ctypescrypto/metadata.xml
125 deleted file mode 100644
126 index 2c5497fce84f..000000000000
127 --- a/dev-python/ctypescrypto/metadata.xml
128 +++ /dev/null
129 @@ -1,17 +0,0 @@
130 -<?xml version="1.0" encoding="UTF-8"?>
131 -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
132 -<pkgmetadata>
133 - <maintainer type="project">
134 - <email>python@g.o</email>
135 - </maintainer>
136 - <maintainer type="person">
137 - <email>zerochaos@g.o</email>
138 - <name>Rick Farina</name>
139 - </maintainer>
140 - <use>
141 - <flag name="gost">Build with support for GOST Message Authentication Code</flag>
142 - </use>
143 - <upstream>
144 - <remote-id type="pypi">ctypescrypto</remote-id>
145 - </upstream>
146 -</pkgmetadata>
147
148 diff --git a/profiles/package.mask b/profiles/package.mask
149 index 4717ab444208..cd44510bf9c6 100644
150 --- a/profiles/package.mask
151 +++ b/profiles/package.mask
152 @@ -340,12 +340,6 @@ media-video/gxine
153 dev-ruby/nokogumbo
154 dev-ruby/sanitize:5
155
156 -# Michał Górny <mgorny@g.o> (2022-04-11)
157 -# Tests are broken once again. Last activity in Jan 2020, last release
158 -# in Aug 2019. No revdeps.
159 -# Removal on 2022-05-11. Bug #832317.
160 -dev-python/ctypescrypto
161 -
162 # David Seifert <soap@g.o> (2022-04-10)
163 # Unmaintained, last release upstream 16 years ago, Fedora dropped it,
164 # relies on sys-libs/db, low quality port to EAPI 6, removal on 2022-05-10.