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/simplejson/
Date: Sun, 26 Jan 2020 17:45:45
Message-Id: 1580060728.e3e8e3e10349f42248161b86a01286f08c9c7a5f.mgorny@gentoo
1 commit: e3e8e3e10349f42248161b86a01286f08c9c7a5f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 26 17:24:44 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 26 17:45:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e8e3e1
7
8 dev-python/simplejson: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/simplejson/Manifest | 3 ---
13 dev-python/simplejson/simplejson-3.13.2.ebuild | 32 --------------------------
14 dev-python/simplejson/simplejson-3.14.0.ebuild | 32 --------------------------
15 dev-python/simplejson/simplejson-3.15.0.ebuild | 32 --------------------------
16 4 files changed, 99 deletions(-)
17
18 diff --git a/dev-python/simplejson/Manifest b/dev-python/simplejson/Manifest
19 index e4bb56ebfee..efa70445650 100644
20 --- a/dev-python/simplejson/Manifest
21 +++ b/dev-python/simplejson/Manifest
22 @@ -1,5 +1,2 @@
23 -DIST simplejson-3.13.2.tar.gz 79735 BLAKE2B 5feb87611451054ad8e856e55a4a6bca50470f7f72692de9ce5abddf9eb214e29505124634d4d5a4f825366afe9a97614c66cbe14a73a4e57a5f2f62cac876e8 SHA512 ea29bc615de7fd0eb2a98f5dbeea74ee49b6fed6602396e77baf4480c86f975eff7fd868ac44f62a1c2f3721d4fa5b807b74109e5e28810df70dbad758110f41
24 -DIST simplejson-3.14.0.tar.gz 80112 BLAKE2B 5866adeba886b4b4f526d4d7fb7ac65f12fa8cfe593a0ac40419c6f04e2f6b776adea49fdee861be54047666b7275bf229db7f7815515a9273878bf0eb68c5f5 SHA512 a81b20a75840566d5985803f35c56ee6957a433f0a9a6fc2f0fb2d46f978925cff0edc2f2c06fe85e7155c8301fbadc962152671c29310c6306f63afede75f98
25 -DIST simplejson-3.15.0.tar.gz 80963 BLAKE2B affa7da859bc2b2426389d881b53abdd086a2f7082decc9f8968859f54354d50747eb6f1cb8c4cc0151ef1e2cb8ecfb8aabd9f2151eaff2f39c4d08b9430f432 SHA512 601d575a5b8be66a33df28f27292ed12e5aeec39c74aa5a5108d82890dfb45a086e7a3a5072e012031209465c5c518909b4c1fb261fc055e6b9b1523a6bc39b4
26 DIST simplejson-3.16.0.tar.gz 81203 BLAKE2B 84b465cad6d78814b13ecf5e75b09cc63a9aaaa12b1412567feabdfa02f9c0e83bbcf8191425c517cea38f6bfccbd691442fae4322957dc6ead6565d23393d6b SHA512 c90da313b21ab862b6132e7bbe4883830c8a26fd36224f307859042852cdb900e36e41cc7c6773a1d4cf89476cdb68e1136642f38864ad6ed398716390122968
27 DIST simplejson-3.17.0.tar.gz 83119 BLAKE2B 979dbcb5d50aeb55fd1c16daa398ef915ee1f23ca25a84870a3132c265202d1cd253090157cdea179cecc6603618df293a28adeadc795238ec3ccfceda88ea0a SHA512 383ee4fa3b2f378cd83152ba588ffbb620aa0e7cec80d3e3097edfb406a60e96afd6c5302a5b64adb710d3a52479c609873a2db7ab5756d7ca7a51412029e4c6
28
29 diff --git a/dev-python/simplejson/simplejson-3.13.2.ebuild b/dev-python/simplejson/simplejson-3.13.2.ebuild
30 deleted file mode 100644
31 index 25c7ea6659f..00000000000
32 --- a/dev-python/simplejson/simplejson-3.13.2.ebuild
33 +++ /dev/null
34 @@ -1,32 +0,0 @@
35 -# Copyright 1999-2020 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
41 -
42 -inherit distutils-r1 flag-o-matic
43 -
44 -DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python"
45 -HOMEPAGE="https://github.com/simplejson/simplejson https://pypi.org/project/simplejson/"
46 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 -
48 -LICENSE="|| ( MIT AFL-2.1 )"
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
51 -
52 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
53 -
54 -DOCS=( README.rst CHANGES.txt )
55 -
56 -python_compile() {
57 - if ! python_is_python3; then
58 - local CFLAGS=${CFLAGS}
59 - append-cflags -fno-strict-aliasing
60 - fi
61 - distutils-r1_python_compile
62 -}
63 -
64 -python_test() {
65 - esetup.py test
66 -}
67
68 diff --git a/dev-python/simplejson/simplejson-3.14.0.ebuild b/dev-python/simplejson/simplejson-3.14.0.ebuild
69 deleted file mode 100644
70 index cb34981e589..00000000000
71 --- a/dev-python/simplejson/simplejson-3.14.0.ebuild
72 +++ /dev/null
73 @@ -1,32 +0,0 @@
74 -# Copyright 1999-2020 Gentoo Authors
75 -# Distributed under the terms of the GNU General Public License v2
76 -
77 -EAPI=6
78 -
79 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
80 -
81 -inherit distutils-r1 flag-o-matic
82 -
83 -DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python"
84 -HOMEPAGE="https://github.com/simplejson/simplejson https://pypi.org/project/simplejson/"
85 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
86 -
87 -LICENSE="|| ( MIT AFL-2.1 )"
88 -SLOT="0"
89 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
90 -
91 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
92 -
93 -DOCS=( README.rst CHANGES.txt )
94 -
95 -python_compile() {
96 - if ! python_is_python3; then
97 - local CFLAGS=${CFLAGS}
98 - append-cflags -fno-strict-aliasing
99 - fi
100 - distutils-r1_python_compile
101 -}
102 -
103 -python_test() {
104 - esetup.py test
105 -}
106
107 diff --git a/dev-python/simplejson/simplejson-3.15.0.ebuild b/dev-python/simplejson/simplejson-3.15.0.ebuild
108 deleted file mode 100644
109 index 499aae6059d..00000000000
110 --- a/dev-python/simplejson/simplejson-3.15.0.ebuild
111 +++ /dev/null
112 @@ -1,32 +0,0 @@
113 -# Copyright 1999-2020 Gentoo Authors
114 -# Distributed under the terms of the GNU General Public License v2
115 -
116 -EAPI=6
117 -
118 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
119 -
120 -inherit distutils-r1 flag-o-matic
121 -
122 -DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python"
123 -HOMEPAGE="https://github.com/simplejson/simplejson https://pypi.org/project/simplejson/"
124 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
125 -
126 -LICENSE="|| ( MIT AFL-2.1 )"
127 -SLOT="0"
128 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
129 -
130 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
131 -
132 -DOCS=( README.rst CHANGES.txt )
133 -
134 -python_compile() {
135 - if ! python_is_python3; then
136 - local CFLAGS=${CFLAGS}
137 - append-cflags -fno-strict-aliasing
138 - fi
139 - distutils-r1_python_compile
140 -}
141 -
142 -python_test() {
143 - esetup.py test
144 -}