Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pycharm-community/
Date: Tue, 05 Jul 2016 14:20:37
Message-Id: 1467728093.2e1885cc2fc82ef8e4ff7c9a5c70030795d297ef.xmw@gentoo
1 commit: 2e1885cc2fc82ef8e4ff7c9a5c70030795d297ef
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 5 14:14:53 2016 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 5 14:14:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e1885cc
7
8 dev-util/pycharm-community: Version bump (bug 584740), update to readme.gentoo-r1 (bug 582438).
9
10 Package-Manager: portage-2.2.28
11
12 dev-util/pycharm-community/Manifest | 1 +
13 .../pycharm-community-2016.1.4.ebuild | 40 ++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-util/pycharm-community/Manifest b/dev-util/pycharm-community/Manifest
17 index a55859d..766e36f 100644
18 --- a/dev-util/pycharm-community/Manifest
19 +++ b/dev-util/pycharm-community/Manifest
20 @@ -1 +1,2 @@
21 DIST pycharm-community-2016.1.3.tar.gz 207707566 SHA256 98c406abf20cbe18565dfe17a62ac7dba094ed15100aab566ff343eb726647cf SHA512 09327867d231b311616d76d860e27ed0c1ac20ca86eda0be9d58666993b860f3c562fa5ce7e533f898eccf7ad2c72954681c83095310bfe01c428a64c59a475e WHIRLPOOL eb03ad07a14707d0650b9991e0494e299336bb61722b6384fa1a2721cc8b692a031ac84f4cfdbd909a45bbacc6d2e1e3d6eec0e5c202a22133f953a402b38b6d
22 +DIST pycharm-community-2016.1.4.tar.gz 207346180 SHA256 bc548a200022111e741604e76b579e71e5a75d23c2bbb9c4cb9ed88b18a3d622 SHA512 f86726d921baec5a5f2691f7e9ee4f81d4abd3a55edc09f091593434d79a51e0058025eb52f1ca5455844d47d325e209f73d7e701d218db57bcf9502244201d6 WHIRLPOOL 9e51cb7f5c2e3530666831803c4bc0dfe8d36b58da0e593763028e9097f95e778098923f837a771c063fa1336cf3a58ba4ebe14cddbbec6f9c74921a1deedb9c
23
24 diff --git a/dev-util/pycharm-community/pycharm-community-2016.1.4.ebuild b/dev-util/pycharm-community/pycharm-community-2016.1.4.ebuild
25 new file mode 100644
26 index 0000000..233c509
27 --- /dev/null
28 +++ b/dev-util/pycharm-community/pycharm-community-2016.1.4.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit eutils readme.gentoo-r1
37 +
38 +DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
39 +HOMEPAGE="http://www.jetbrains.com/pycharm/"
40 +SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND=">=virtual/jre-1.8"
48 +DEPEND=""
49 +
50 +RESTRICT="mirror strip"
51 +QA_PREBUILT="/opt/${PN}/bin/fsnotifier
52 + /opt/${PN}/bin/fsnotifier64"
53 +
54 +MY_PN=${PN/-community/}
55 +
56 +QA_PREBUILT="*"
57 +
58 +src_install() {
59 + insinto /opt/${PN}
60 + doins -r *
61 +
62 + fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
63 +
64 + dosym /opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
65 + newicon "bin/${MY_PN}.png" ${PN}.png
66 + make_desktop_entry ${PN} "${PN}" "${PN}"
67 +
68 + readme.gentoo_create_doc
69 +}