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/serpent/
Date: Sat, 29 Jun 2019 08:15:56
Message-Id: 1561796132.584433f968a81aeb0eeabeda79d1d505fa6f5f02.mgorny@gentoo
1 commit: 584433f968a81aeb0eeabeda79d1d505fa6f5f02
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 29 06:43:08 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 29 08:15:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=584433f9
7
8 dev-python/serpent: Bump to 1.28
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/serpent/Manifest | 1 +
13 dev-python/serpent/serpent-1.28.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/dev-python/serpent/Manifest b/dev-python/serpent/Manifest
17 index 98e0c6e040e..d74f9e773c7 100644
18 --- a/dev-python/serpent/Manifest
19 +++ b/dev-python/serpent/Manifest
20 @@ -1 +1,2 @@
21 DIST serpent-1.19.tar.gz 12055 BLAKE2B 1adf86abf58b4afb82a9d2ee3b8fff4107f3e1cd383a33359687b80b2b917ec1af8f15cb5b849c0979035daecf2aaaf1230553a478e59480f160d8df456b5fd2 SHA512 9adac06bb63dfa73ca0043a3ddf868e0afebc81ff7d637e41667314cbe8e0ecb2af807db6c60f5a5a6a6ff8fa11ac42063d83a7376c7e8bcac22abfd3ba5b1dd
22 +DIST serpent-1.28.tar.gz 26912 BLAKE2B 7608e1a25b4157b8e304fe6e2265f0204a3056c752a58ac0c7eaafe41b4fed9246792147a8af87dcadf5c6e94d3d494f7b561a073e1bf91e412b60a286b00a10 SHA512 776bc497c7cd815c4ef44107bdf53b62bb92229beba0be7efceb9fba57dc7c677bf09832db335485df3e466acdffe6ebf4b3636ae9b49e60075379a7419a29ad
23
24 diff --git a/dev-python/serpent/serpent-1.28.ebuild b/dev-python/serpent/serpent-1.28.ebuild
25 new file mode 100644
26 index 00000000000..44dc1e5ccf2
27 --- /dev/null
28 +++ b/dev-python/serpent/serpent-1.28.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="A simple serialization library based on ast.literal_eval"
39 +HOMEPAGE="https://pypi.org/project/serpent/ https://github.com/irmen/Serpent"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
48 +
49 +python_test() {
50 + esetup.py test
51 +}