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: app-eselect/eselect-python/
Date: Wed, 17 Apr 2019 12:27:56
Message-Id: 1555504067.79962c3e77dc69df227ba4a25779911b8846d4b7.mgorny@gentoo
1 commit: 79962c3e77dc69df227ba4a25779911b8846d4b7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 17 12:27:31 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 17 12:27:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79962c3e
7
8 app-eselect/eselect-python: Bump to 20190417
9
10 Closes: https://bugs.gentoo.org/683178
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-eselect/eselect-python/Manifest | 1 +
14 .../eselect-python/eselect-python-20190417.ebuild | 40 ++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/app-eselect/eselect-python/Manifest b/app-eselect/eselect-python/Manifest
18 index cbf8a151293..5de6d4e3773 100644
19 --- a/app-eselect/eselect-python/Manifest
20 +++ b/app-eselect/eselect-python/Manifest
21 @@ -1,2 +1,3 @@
22 DIST eselect-python-20160516.tar.bz2 46549 BLAKE2B f8703ed35d9607a940fca1bb1d9612de62a04dd1fb065fa31db7438ee08b766b5ef84a4ef10f3f58654acb7fda4bc5e32abceccd0ecec632b364e4a55834ba2d SHA512 0ac310e13bca9e3cdfdd55820cc2956cacf28ade99c1b5048edadd48c6a04c2ae1037207aaac74fcd75e809cf993f88b52e463979b68bd123fe925e491a7030a
23 DIST eselect-python-20171204.tar.bz2 46655 BLAKE2B f0bc46c796a1b9e01f964994219b9c7831f99844a12e97429b40482e28a590a2d825f7b6fbca27b0ca1ce616e5cfb388272af686ea2de65fda69da0319fddeda SHA512 f89183ca992bc38f2308a3217602d5ce6ec4b3b5b614f2aec48fb5b3b7e50a2e44dd18af36a7cfbd4b45d05346f2be97605e35fd274558e9173c6974681c8fa9
24 +DIST eselect-python-20190417.tar.bz2 46698 BLAKE2B 6f0acad0abb21d8e4768cbeb12f7e871c316a940ebae4c02bdb1336095991cb6b6bf05661ab659115a67f29a09f2a9b57cfb0868019606ed550b5aa1863f6f71 SHA512 a461263a50a29f0493127ee4a027e49ca4d7631e9c8d16cffc8bdb98cc7e75b0796e45e70951d5559fb86f0db14141a3ea6a53bd4cf1e0cc83ed5c7f24173695
25
26 diff --git a/app-eselect/eselect-python/eselect-python-20190417.ebuild b/app-eselect/eselect-python/eselect-python-20190417.ebuild
27 new file mode 100644
28 index 00000000000..98355b4585d
29 --- /dev/null
30 +++ b/app-eselect/eselect-python/eselect-python-20190417.ebuild
31 @@ -0,0 +1,40 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +if [[ ${PV} == "99999999" ]] ; then
38 + inherit autotools git-r3
39 + EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
40 +else
41 + SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.bz2"
42 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
43 +fi
44 +
45 +DESCRIPTION="Eselect module for management of multiple Python versions"
46 +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Python"
47 +
48 +LICENSE="GPL-2"
49 +SLOT="0"
50 +IUSE=""
51 +
52 +# python-exec-2.4.2 for working -l option
53 +RDEPEND=">=app-admin/eselect-1.2.3
54 + >=dev-lang/python-exec-2.4.2"
55 +
56 +src_prepare() {
57 + default
58 + [[ ${PV} == "99999999" ]] && eautoreconf
59 +}
60 +
61 +pkg_postinst() {
62 + local py
63 +
64 + if has_version 'dev-lang/python'; then
65 + eselect python update --if-unset
66 + fi
67 +
68 + if has_version "=dev-lang/python-3*"; then
69 + eselect python update "--python3" --if-unset
70 + fi
71 +}