Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-social-auth/
Date: Thu, 28 Feb 2019 01:13:58
Message-Id: 1551316292.f784e0f7d08a03392eb2affca8a32a858e915118.vdupras@gentoo
1 commit: f784e0f7d08a03392eb2affca8a32a858e915118
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 28 01:11:32 2019 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 28 01:11:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f784e0f7
7
8 dev-python/python-social-auth: remove last-rited package
9
10 Closes: https://bugs.gentoo.org/610466
11
12 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
13
14 dev-python/python-social-auth/Manifest | 2 -
15 dev-python/python-social-auth/metadata.xml | 11 -----
16 .../python-social-auth-0.1.26.ebuild | 56 ---------------------
17 .../python-social-auth-0.2.10.ebuild | 57 ----------------------
18 4 files changed, 126 deletions(-)
19
20 diff --git a/dev-python/python-social-auth/Manifest b/dev-python/python-social-auth/Manifest
21 deleted file mode 100644
22 index a1f8fffbe25..00000000000
23 --- a/dev-python/python-social-auth/Manifest
24 +++ /dev/null
25 @@ -1,2 +0,0 @@
26 -DIST python-social-auth-0.1.26.tar.gz 247579 BLAKE2B 647299350462d707d054df6b64438fd71f2ec28c047a0dda21432a3488d26e1adec86ffe7a1cd09d2a7bc658e661e065df9a06e3058da3c16dfe22b5b85402bb SHA512 c3637f9a269f2c8465b1896840a5ca0f70bb6c45c93f7d9c08c54434037984538ba95442a164841c069cb5b1fd251d0f3f62baa1dc2754a542baceb2f325bd8b
27 -DIST python-social-auth-0.2.10.tar.gz 297210 BLAKE2B b312211ad11d4d1d1d12dcb607e87064b4bd2cf929c71b513a665839365510e0768151de4b3e56dd9a05fe9d8e4fe7368bc7f234c01f20e3d2898c709102ae29 SHA512 af5247cee0b77f36d1bfdd7457708c2f2053bc779bae8eae0cfe79f0f9236c37882afcbd325863255282eb7559d8f84715b3e983f94d55bd3e7815c5469f150d
28
29 diff --git a/dev-python/python-social-auth/metadata.xml b/dev-python/python-social-auth/metadata.xml
30 deleted file mode 100644
31 index 2f61c1adb47..00000000000
32 --- a/dev-python/python-social-auth/metadata.xml
33 +++ /dev/null
34 @@ -1,11 +0,0 @@
35 -<?xml version="1.0" encoding="UTF-8"?>
36 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 -<pkgmetadata>
38 - <maintainer type="project">
39 - <email>python@g.o</email>
40 - <name>Python</name>
41 - </maintainer>
42 - <upstream>
43 - <remote-id type="github">omab/python-social-auth</remote-id>
44 - </upstream>
45 -</pkgmetadata>
46
47 diff --git a/dev-python/python-social-auth/python-social-auth-0.1.26.ebuild b/dev-python/python-social-auth/python-social-auth-0.1.26.ebuild
48 deleted file mode 100644
49 index 7c1e44660d9..00000000000
50 --- a/dev-python/python-social-auth/python-social-auth-0.1.26.ebuild
51 +++ /dev/null
52 @@ -1,56 +0,0 @@
53 -# Copyright 1999-2015 Gentoo Foundation
54 -# Distributed under the terms of the GNU General Public License v2
55 -
56 -EAPI=5
57 -
58 -PYTHON_COMPAT=( python{2_7,3_4} )
59 -
60 -inherit distutils-r1
61 -
62 -DESCRIPTION="Easy to setup social auth mechanism with support for several frameworks and auth providers"
63 -HOMEPAGE="http://psa.matiasaguirre.net/"
64 -SRC_URI="https://github.com/omab/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
65 -
66 -LICENSE="BSD"
67 -SLOT="0"
68 -KEYWORDS="amd64"
69 -IUSE="doc examples test"
70 -
71 -RDEPEND="
72 - $(python_gen_cond_dep \
73 - 'dev-python/python-openid[${PYTHON_USEDEP}]' 'python2*')
74 - $(python_gen_cond_dep \
75 - 'dev-python/python3-openid[${PYTHON_USEDEP}]' 'python3*')
76 - >=dev-python/oauthlib-0.3.8[${PYTHON_USEDEP}]
77 - dev-python/requests[${PYTHON_USEDEP}]
78 - dev-python/requests-oauthlib[${PYTHON_USEDEP}]
79 - >=dev-python/six-1.2.0[${PYTHON_USEDEP}]
80 -"
81 -DEPEND="${DEPEND}
82 - dev-python/setuptools[${PYTHON_USEDEP}]
83 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
84 -"
85 -# tests require internet
86 -#"
87 -# test? (
88 -# dev-python/coverage[${PYTHON_USEDEP}]
89 -# dev-python/httpretty[${PYTHON_USEDEP}]
90 -# dev-python/mock[${PYTHON_USEDEP}]
91 -# dev-python/nose[${PYTHON_USEDEP}]
92 -# dev-python/sure[${PYTHON_USEDEP}]
93 -# )
94 -#"
95 -
96 -python_compile_all() {
97 - use doc && emake -C docs html
98 -}
99 -
100 -python_install_all() {
101 - use doc && local HTML_DOCS=( docs/_build/html/. )
102 - use examples && local EXAMPLES=( examples/. )
103 - distutils-r1_python_install_all
104 -}
105 -
106 -#python_test() {
107 -# "${S}"/social/tests/run_tests.sh || die "Tests failed on ${EPYTHON}"
108 -#}
109
110 diff --git a/dev-python/python-social-auth/python-social-auth-0.2.10.ebuild b/dev-python/python-social-auth/python-social-auth-0.2.10.ebuild
111 deleted file mode 100644
112 index 8c8f3c7a876..00000000000
113 --- a/dev-python/python-social-auth/python-social-auth-0.2.10.ebuild
114 +++ /dev/null
115 @@ -1,57 +0,0 @@
116 -# Copyright 1999-2017 Gentoo Foundation
117 -# Distributed under the terms of the GNU General Public License v2
118 -
119 -EAPI=5
120 -
121 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
122 -
123 -inherit distutils-r1
124 -
125 -DESCRIPTION="Easy to setup social auth mechanism with support for several frameworks and auth providers"
126 -HOMEPAGE="http://psa.matiasaguirre.net/"
127 -SRC_URI="https://github.com/omab/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
128 -
129 -LICENSE="BSD"
130 -SLOT="0"
131 -KEYWORDS="amd64"
132 -IUSE="doc examples test"
133 -
134 -RDEPEND="
135 - $(python_gen_cond_dep \
136 - 'dev-python/python-openid[${PYTHON_USEDEP}]' 'python2*')
137 - $(python_gen_cond_dep \
138 - 'dev-python/python3-openid[${PYTHON_USEDEP}]' 'python3*')
139 - >=dev-python/oauthlib-0.3.8[${PYTHON_USEDEP}]
140 - >=dev-python/pyjwt-1.2.0[${PYTHON_USEDEP}]
141 - dev-python/requests[${PYTHON_USEDEP}]
142 - dev-python/requests-oauthlib[${PYTHON_USEDEP}]
143 - >=dev-python/six-1.2.0[${PYTHON_USEDEP}]
144 -"
145 -DEPEND="${DEPEND}
146 - dev-python/setuptools[${PYTHON_USEDEP}]
147 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
148 -"
149 -# tests require internet
150 -#"
151 -# test? (
152 -# dev-python/coverage[${PYTHON_USEDEP}]
153 -# dev-python/httpretty[${PYTHON_USEDEP}]
154 -# dev-python/mock[${PYTHON_USEDEP}]
155 -# dev-python/nose[${PYTHON_USEDEP}]
156 -# dev-python/sure[${PYTHON_USEDEP}]
157 -# )
158 -#"
159 -
160 -python_compile_all() {
161 - use doc && emake -C docs html
162 -}
163 -
164 -python_install_all() {
165 - use doc && local HTML_DOCS=( docs/_build/html/. )
166 - use examples && local EXAMPLES=( examples/. )
167 - distutils-r1_python_install_all
168 -}
169 -
170 -#python_test() {
171 -# "${S}"/social/tests/run_tests.sh || die "Tests failed on ${EPYTHON}"
172 -#}