From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 018761396D9 for ; Fri, 3 Nov 2017 14:48:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57D3AE0C58; Fri, 3 Nov 2017 14:48:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 272A9E0C58 for ; Fri, 3 Nov 2017 14:48:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 034CF3417B0 for ; Fri, 3 Nov 2017 14:48:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BEF19397 for ; Fri, 3 Nov 2017 14:48:06 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1509720378.49eb881cc4b703636d43b42bbe7844ad29a7477f.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/goland/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/goland/Manifest dev-util/goland/goland-173.3531.21.ebuild dev-util/goland/metadata.xml X-VCS-Directories: dev-util/goland/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 49eb881cc4b703636d43b42bbe7844ad29a7477f X-VCS-Branch: master Date: Fri, 3 Nov 2017 14:48:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 83a994dc-41bc-44bf-9ddc-71b0e5af7102 X-Archives-Hash: 53c74b9a0d8156f7468299918629c9ae commit: 49eb881cc4b703636d43b42bbe7844ad29a7477f Author: Manuel Rüger gentoo org> AuthorDate: Fri Nov 3 14:46:18 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri Nov 3 14:46:18 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49eb881c dev-util/goland: Version bump, move package from gogland to goland Package-Manager: Portage-2.3.12, Repoman-2.3.4 dev-util/goland/Manifest | 1 + dev-util/goland/goland-173.3531.21.ebuild | 45 +++++++++++++++++++++++++++++++ dev-util/goland/metadata.xml | 8 ++++++ 3 files changed, 54 insertions(+) diff --git a/dev-util/goland/Manifest b/dev-util/goland/Manifest new file mode 100644 index 00000000000..5e080e854f3 --- /dev/null +++ b/dev-util/goland/Manifest @@ -0,0 +1 @@ +DIST goland-173.3531.21.tar.gz 213040527 SHA256 5738129cb5ab81428cf6fa0ec18e97221b1303d966e679e575a0ac8e669170cd SHA512 db2deb4e52fb4135e3fb27c63a181c34acddf61dd2bedf81e50144a85b3e9bcb1a7490532b6841815e2b888c660aa26bc8c3176f83bb30bcf20ec568cdfeb65b WHIRLPOOL 51502c1d35a582601378a6ed403c4c84d36418a340f00479180143a1eddcae05832242f9bb075ebb63c906c5f0385a5ef53a32b4d2975669a8b54266b9778e8c diff --git a/dev-util/goland/goland-173.3531.21.ebuild b/dev-util/goland/goland-173.3531.21.ebuild new file mode 100644 index 00000000000..3698daaba68 --- /dev/null +++ b/dev-util/goland/goland-173.3531.21.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils + +SLOT=0 + +SRC_URI="http://download.jetbrains.com/go/${P}.tar.gz" +DESCRIPTION="Golang IDE by JetBrains" +HOMEPAGE="http://www.jetbrains.com/go" + +KEYWORDS="~amd64" +LICENSE="IDEA + || ( IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )" + +QA_PREBUILT="opt/${P}/*" + +S=${WORKDIR}/GoLand-${PV} + +RDEPEND="dev-lang/go" + +src_prepare() { + default + if ! use arm; then + rm -rf bin/fsnotifier-arm || die + fi +} + +src_install() { + local dir="/opt/${P}" + + insinto "${dir}" + doins -r * + fperms 755 "${dir}"/bin/{${PN}.sh,fsnotifier{,64}} + + make_wrapper "${PN}" "${dir}/bin/${PN}.sh" + newicon "bin/${PN}.png" "${PN}.png" + make_desktop_entry "${PN}" "gogland" "${PN}" "Development;IDE;" + + # recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit + mkdir -p "${D}/etc/sysctl.d/" || die + echo "fs.inotify.max_user_watches = 524288" > "${D}/etc/sysctl.d/30-idea-inotify-watches.conf" || die +} diff --git a/dev-util/goland/metadata.xml b/dev-util/goland/metadata.xml new file mode 100644 index 00000000000..97df2a00971 --- /dev/null +++ b/dev-util/goland/metadata.xml @@ -0,0 +1,8 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + +