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/django-openstack-auth/
Date: Mon, 03 Sep 2018 13:33:45
Message-Id: 1535981593.fcd692152c63b8ef506ed11be72f3ae18159408e.vdupras@gentoo
1 commit: fcd692152c63b8ef506ed11be72f3ae18159408e
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 3 13:27:33 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 3 13:33:13 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcd69215
7
8 dev-python/django-openstack-auth: remove last-rited package
9
10 Bug: https://bugs.gentoo.org/662632
11
12 dev-python/django-openstack-auth/Manifest | 1 -
13 .../django-openstack-auth-3.2.0-r1.ebuild | 75 ----------------------
14 dev-python/django-openstack-auth/metadata.xml | 18 ------
15 3 files changed, 94 deletions(-)
16
17 diff --git a/dev-python/django-openstack-auth/Manifest b/dev-python/django-openstack-auth/Manifest
18 deleted file mode 100644
19 index d9d4e6d6616..00000000000
20 --- a/dev-python/django-openstack-auth/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST django_openstack_auth-3.2.0.tar.gz 69837 BLAKE2B 4ff5fdf15731668d91a5d0693f57c41ac3c373e45a1fcecc619d621bcbfda53a11e48a3de6afeae276d7320daf8e7eb9fc05e63f60f2b7c79d536b8f9c358f99 SHA512 43e8d19d73c934935f73b6dcb5a5ffbb0ca49c2c7dc892cadd9a04af94091e39bf35f1833d33474f7aeee9a94040424f6ee43c5fd355d8ad971c0b4ff971d4de
24
25 diff --git a/dev-python/django-openstack-auth/django-openstack-auth-3.2.0-r1.ebuild b/dev-python/django-openstack-auth/django-openstack-auth-3.2.0-r1.ebuild
26 deleted file mode 100644
27 index 5f7292f8f79..00000000000
28 --- a/dev-python/django-openstack-auth/django-openstack-auth-3.2.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,75 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python{2_7,3_{4,5}} )
37 -
38 -inherit distutils-r1
39 -
40 -MY_PN=${PN//-/_}
41 -MY_P="${MY_PN}-${PV}"
42 -
43 -DESCRIPTION="Django authentication backend for use with OpenStack Keystone Identity backend"
44 -HOMEPAGE="https://django-openstack-auth.readthedocs.io/en/latest/"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="doc test"
51 -
52 -CDEPEND="
53 - >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
54 - !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
55 - >=dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]"
56 -
57 -DEPEND="
58 - dev-python/setuptools[${PYTHON_USEDEP}]
59 - >=dev-python/pbr-2.0[${PYTHON_USEDEP}]
60 - test? (
61 - >=dev-python/hacking-0.12.0[${PYTHON_USEDEP}]
62 - <dev-python/hacking-0.14[${PYTHON_USEDEP}]
63 - >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
64 - >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
65 - >=dev-python/mock-2.0[${PYTHON_USEDEP}]
66 - >=dev-python/mox3-0.7.0[${PYTHON_USEDEP}]
67 - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] )
68 - ${CDEPEND}
69 - doc? ( ${CDEPEND} )
70 - "
71 -RDEPEND="
72 - >=dev-python/django-1.8[${PYTHON_USEDEP}]
73 - <dev-python/django-1.10[${PYTHON_USEDEP}]
74 - >=dev-python/oslo-config-3.22.0[${PYTHON_USEDEP}]
75 - >=dev-python/oslo-policy-1.17.0[${PYTHON_USEDEP}]
76 - >=dev-python/python-keystoneclient-3.8.0[${PYTHON_USEDEP}]
77 - >=dev-python/keystoneauth-2.20.0[${PYTHON_USEDEP}]
78 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
79 -
80 -S="${WORKDIR}/${MY_P}"
81 -
82 -python_prepare_all() {
83 - # Avoid warning in doc build due to missed file
84 - if use doc; then
85 - mkdir doc/source/_static || die
86 - fi
87 - distutils-r1_python_prepare_all
88 -}
89 -
90 -python_compile_all() {
91 - # under sphinx-1.3.1 the build outputs a harmless warning about change of
92 - # html_theme setting in conf.py. priot versions will have the right setting
93 - if use doc; then
94 - sphinx-build -b html -c doc/source/ doc/source/ doc/source/html || die
95 - fi
96 -}
97 -
98 -python_test() {
99 - "${PYTHON}" -m openstack_auth.tests.run_tests || die "Testsuite failed"
100 -}
101 -
102 -python_install_all() {
103 - use doc && local HTML_DOCS=( doc/source/html/. )
104 - distutils-r1_python_install_all
105 -}
106
107 diff --git a/dev-python/django-openstack-auth/metadata.xml b/dev-python/django-openstack-auth/metadata.xml
108 deleted file mode 100644
109 index a15856976eb..00000000000
110 --- a/dev-python/django-openstack-auth/metadata.xml
111 +++ /dev/null
112 @@ -1,18 +0,0 @@
113 -<?xml version="1.0" encoding="UTF-8"?>
114 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
115 -<pkgmetadata>
116 - <maintainer type="person">
117 - <email>prometheanfire@g.o</email>
118 - <name>Matthew Thode</name>
119 - </maintainer>
120 - <maintainer type="project">
121 - <email>python@g.o</email>
122 - <name>Python</name>
123 - </maintainer>
124 - <longdescription lang="en">
125 - A Django authentication backend for use with the OpenStack Keystone Identity backend.
126 - </longdescription>
127 - <upstream>
128 - <remote-id type="pypi">django_openstack_auth</remote-id>
129 - </upstream>
130 -</pkgmetadata>