Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qstylizer/
Date: Sun, 17 Oct 2021 09:25:14
Message-Id: 1634462614.366bad8e00eae06f702c9ba3f13354daddf7e78f.mgorny@gentoo
1 commit: 366bad8e00eae06f702c9ba3f13354daddf7e78f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 09:23:34 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 09:23:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=366bad8e
7
8 dev-python/qstylizer: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/qstylizer/Manifest | 2 --
13 dev-python/qstylizer/qstylizer-0.1.10.ebuild | 52 ----------------------------
14 dev-python/qstylizer/qstylizer-0.2.0.ebuild | 52 ----------------------------
15 3 files changed, 106 deletions(-)
16
17 diff --git a/dev-python/qstylizer/Manifest b/dev-python/qstylizer/Manifest
18 index c6742dcec2b..6d55a1f5df4 100644
19 --- a/dev-python/qstylizer/Manifest
20 +++ b/dev-python/qstylizer/Manifest
21 @@ -1,3 +1 @@
22 -DIST qstylizer-0.1.10.tar.gz 20683 BLAKE2B aa12addac6cbe1ebf043d70189683feda87db3a8c2aa3604a04a969f638647ba32eaf7d156559b8af151136aaca784f26025746d9f3e574ad6eb777801bcf44a SHA512 1a747c2a0d5ce0acd220f528bc54c84c723f50bf39fc8d818f6a5475105319f46700d2f00bc5c0f14de8f0caaee0ab8904a379a3e697ca68d00ef62ec3408b2b
23 -DIST qstylizer-0.2.0.tar.gz 20710 BLAKE2B 1d751efd74e36e665823b64cfd51760bea489ac3916b7ab206d9c9f1fe9adbc0df2dfd9666a79e20c805dabcaa6f3cf4d11074943e0a54b7a6aa93a815c796cf SHA512 094d9c9c14d2000c2c2f2b428cd82a57424507c6df83aa21af3ab7b90e9006761ed131262a2e70a1c4aa4dcea87ac6d07f9137bc224967139467b3f4796ab158
24 DIST qstylizer-0.2.1.tar.gz 20687 BLAKE2B ad158ac0f88c4a0a7c6d9fe9adc611f69cb946c28be8c414dbb40532901b53faee281e7c0a798c9f680d8e5cd8a04179b16df796041133a8dd65d117964e9905 SHA512 c5e4a4194b4282a6d2782c0636ed74e9885409570466765c6e2aee0a176175bb688854244828c56ffbd00e76d297a33de211dedae8d984021c816522ea2b6085
25
26 diff --git a/dev-python/qstylizer/qstylizer-0.1.10.ebuild b/dev-python/qstylizer/qstylizer-0.1.10.ebuild
27 deleted file mode 100644
28 index 7c48860646b..00000000000
29 --- a/dev-python/qstylizer/qstylizer-0.1.10.ebuild
30 +++ /dev/null
31 @@ -1,52 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{7,8,9} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Stylesheet Generator for PyQt5/PySide2"
42 -HOMEPAGE="https://github.com/blambright/qstylizer"
43 -SRC_URI="https://github.com/blambright/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -
49 -RDEPEND="
50 - >=dev-python/tinycss-0.4[${PYTHON_USEDEP}]
51 - <dev-python/tinycss-1[${PYTHON_USEDEP}]
52 - >=dev-python/inflection-0.3.0[${PYTHON_USEDEP}]
53 - <dev-python/inflection-1[${PYTHON_USEDEP}]
54 -"
55 -
56 -BDEPEND="
57 - dev-python/pbr[${PYTHON_USEDEP}]
58 - dev-vcs/git
59 - test? (
60 - dev-python/pytest-mock[${PYTHON_USEDEP}]
61 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
62 - )
63 -"
64 -
65 -distutils_enable_tests pytest
66 -distutils_enable_sphinx doc dev-python/sphinx_rtd_theme dev-python/sphinxcontrib-autoprogram
67 -
68 -python_prepare_all() {
69 - # Exception: Versioning for this project requires either an sdist tarball, or access to an
70 - # upstream git repository. It's also possible that there is a mismatch between the package
71 - # name in setup.cfg and the argument given to pbr.version.VersionInfo. Project name qstylizer
72 - # was given, but was not able to be found.
73 - #
74 - # There are no tarballs on PyPI, so we do this as a workaround
75 - git init || die
76 - git config user.email "larry@g.o" || die
77 - git config user.name "Larry the Cow" || die
78 - git add . || die
79 - git commit -m "init" || die
80 - git tag -a "${PV}" -m "${PV}" || die
81 -
82 - distutils-r1_python_prepare_all
83 -}
84
85 diff --git a/dev-python/qstylizer/qstylizer-0.2.0.ebuild b/dev-python/qstylizer/qstylizer-0.2.0.ebuild
86 deleted file mode 100644
87 index 13bb8dcfaf5..00000000000
88 --- a/dev-python/qstylizer/qstylizer-0.2.0.ebuild
89 +++ /dev/null
90 @@ -1,52 +0,0 @@
91 -# Copyright 1999-2021 Gentoo Authors
92 -# Distributed under the terms of the GNU General Public License v2
93 -
94 -EAPI=7
95 -
96 -PYTHON_COMPAT=( python3_{7..10} )
97 -
98 -inherit distutils-r1
99 -
100 -DESCRIPTION="Stylesheet Generator for PyQt5/PySide2"
101 -HOMEPAGE="https://github.com/blambright/qstylizer"
102 -SRC_URI="https://github.com/blambright/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
103 -
104 -LICENSE="MIT"
105 -SLOT="0"
106 -KEYWORDS="~amd64 ~x86"
107 -
108 -RDEPEND="
109 - >=dev-python/tinycss2-0.5[${PYTHON_USEDEP}]
110 - <dev-python/tinycss2-2[${PYTHON_USEDEP}]
111 - >=dev-python/inflection-0.3.0[${PYTHON_USEDEP}]
112 - <dev-python/inflection-1[${PYTHON_USEDEP}]
113 -"
114 -
115 -BDEPEND="
116 - dev-python/pbr[${PYTHON_USEDEP}]
117 - dev-vcs/git
118 - test? (
119 - dev-python/pytest-mock[${PYTHON_USEDEP}]
120 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
121 - )
122 -"
123 -
124 -distutils_enable_tests pytest
125 -distutils_enable_sphinx doc dev-python/sphinx_rtd_theme dev-python/sphinxcontrib-autoprogram
126 -
127 -python_prepare_all() {
128 - # Exception: Versioning for this project requires either an sdist tarball, or access to an
129 - # upstream git repository. It's also possible that there is a mismatch between the package
130 - # name in setup.cfg and the argument given to pbr.version.VersionInfo. Project name qstylizer
131 - # was given, but was not able to be found.
132 - #
133 - # There are no tarballs on PyPI, so we do this as a workaround
134 - git init -q || die
135 - git config user.email "larry@g.o" || die
136 - git config user.name "Larry the Cow" || die
137 - git add . || die
138 - git commit -m "init" || die
139 - git tag -a "${PV}" -m "${PV}" || die
140 -
141 - distutils-r1_python_prepare_all
142 -}