Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pycharm-community/
Date: Wed, 31 Aug 2016 20:56:42
Message-Id: 1472676951.cceac36e48dd03b9494a54a95544ef083fdaee24.mrueg@gentoo
1 commit: cceac36e48dd03b9494a54a95544ef083fdaee24
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 20:55:51 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 20:55:51 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cceac36e
7
8 dev-util/pycharm-community: Version bump to 2016.2.2
9
10 Package-Manager: portage-2.3.0
11
12 dev-util/pycharm-community/Manifest | 1 +
13 .../pycharm-community-2016.2.2.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 9aef69b..fb0f041 100644
18 --- a/dev-util/pycharm-community/Manifest
19 +++ b/dev-util/pycharm-community/Manifest
20 @@ -1,3 +1,4 @@
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 DIST pycharm-community-2016.2.1.tar.gz 212670595 SHA256 76a5d58a6ecbafa48abde9823948f0614472ecbc0535c639ceb593569a1e06a7 SHA512 46777642ca0adb6aa40828d37328846b399b44c6625065ed00a6d2d46b3c82f10f1640a4206d703be84c3429ec2d76a71dfdb38fe9ae70a8b094d518d0f3a60b WHIRLPOOL 086aa3c1e05d0c0ba7fddb904a3e793dfcf00a9bd830fdd65b3bdf70b8ad9cb700fead63be7186a90b5a32a9b3584afa89a9a84c098d24dedc82daedca49ea9b
24 +DIST pycharm-community-2016.2.2.tar.gz 212722955 SHA256 6bf50910355f680983246ab51f7a082ae6f34f799db222986c1c59003bf1dbec SHA512 20840a8e1642ea47909bc0913a701b103843e78b29b3d0333d150d30b6ba202dc07db086795224557788b171da3265e849e01bfcb064021ad0ef78a18c67228a WHIRLPOOL ef5d3bb7a4e8069bb5eb256c84a0150773ccf87ff7a8db5ccaba58307c1ae723f17feee461e921ecc1fdc5b3682ec713880fd1a3da664308475b2cb7a2c80c88
25
26 diff --git a/dev-util/pycharm-community/pycharm-community-2016.2.2.ebuild b/dev-util/pycharm-community/pycharm-community-2016.2.2.ebuild
27 new file mode 100644
28 index 00000000..233c509
29 --- /dev/null
30 +++ b/dev-util/pycharm-community/pycharm-community-2016.2.2.ebuild
31 @@ -0,0 +1,40 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +inherit eutils readme.gentoo-r1
39 +
40 +DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
41 +HOMEPAGE="http://www.jetbrains.com/pycharm/"
42 +SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND=">=virtual/jre-1.8"
50 +DEPEND=""
51 +
52 +RESTRICT="mirror strip"
53 +QA_PREBUILT="/opt/${PN}/bin/fsnotifier
54 + /opt/${PN}/bin/fsnotifier64"
55 +
56 +MY_PN=${PN/-community/}
57 +
58 +QA_PREBUILT="*"
59 +
60 +src_install() {
61 + insinto /opt/${PN}
62 + doins -r *
63 +
64 + fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
65 +
66 + dosym /opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
67 + newicon "bin/${MY_PN}.png" ${PN}.png
68 + make_desktop_entry ${PN} "${PN}" "${PN}"
69 +
70 + readme.gentoo_create_doc
71 +}