public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flo@geekplace.eu>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/java:master commit in: dev-java/gradle-bin/
Date: Wed, 22 Nov 2017 14:43:56 +0000 (UTC)	[thread overview]
Message-ID: <1511361826.eec6799ec957aff7bb346e5e5d9a48957d35fba1.flow@gentoo> (raw)

commit:     eec6799ec957aff7bb346e5e5d9a48957d35fba1
Author:     Florian Schmaus <flo <AT> geekplace <DOT> eu>
AuthorDate: Wed Nov 22 14:43:46 2017 +0000
Commit:     Florian Schmaus <flo <AT> geekplace <DOT> eu>
CommitDate: Wed Nov 22 14:43:46 2017 +0000
URL:        https://gitweb.gentoo.org/proj/java.git/commit/?id=eec6799e

dev-java/gradle-bin: add 4.3.1

Package-Manager: Portage-2.3.12, Repoman-2.3.3

 dev-java/gradle-bin/Manifest                |  1 +
 dev-java/gradle-bin/gradle-bin-4.3.1.ebuild | 60 +++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index 7e271771..e4db9438 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -6,3 +6,4 @@ DIST gradle-3.4-all.zip 91570006 SHA256 37c2fdce55411e4c89b896c292cae1f8f437862c
 DIST gradle-3.5-all.zip 95084513 SHA256 d84bf6b6113da081d0082bcb63bd8547824c6967fe68704d1e3a6fde822b7212 SHA512 13eb1b73a1e432f3230e3b030de3b50bbd8dfce11b3bb9079fc0ab76e865470e3cb10720def2ad0e514383fef50e468ccc54ca7751c0065fb8aae55a40c54479 WHIRLPOOL a2402df200bdd9977e38983cae2c129a95fac42b4ac6d3a4107dd2533fd9b66b20a39110431a0bff8c62311eabb85406581cd44733382562e26f780f5f389364
 DIST gradle-4.0-all.zip 90002272 SHA256 a0af75d3d35799a90f56255a24de69c53cd9aea90f0b532586c8f818668e1734 SHA512 4a7ad4519bde94e63f7e14f83180524ee5c63d496d49c41ac7add64ccad1b105bd9a20f2e4bc0791c539845f97e6985328bd732b8ad8d5029afd87ff8b59b2eb WHIRLPOOL 0b1bb585646a83bd17a7d609e8a0f96abf5da16a737a2236c7aace19fc499fddc74a4a412a076835cf8ff9a2bda32447a81fc832871c415a706a29dc451a81fd
 DIST gradle-4.2.1-all.zip 94169326 SHA256 7897b59fb45148cd8a79f078e5e4cef3861a252dd1a1af729d0c6e8a0a8703a8 SHA512 f49418108809c16eba4436ba8eb101fee2ac028bd306437c146b6c8bba8dccaf8e0aaed2da9d1ea89368ea6e9459f149cf26fa1669d3f91dcc8568dd10d5efd2 WHIRLPOOL ed9cf347df6b1af2a4219a048ad387074766feee7b979e03cb677b85faf1c72e7a0787a0f3a1fdea39a524fbab33abaade9f4a2d4e244c40e52e8630ff4c3ac8
+DIST gradle-4.3.1-all.zip 96293086 SHA256 c5b67330a8a211539d713852c56a6a80fdea365d8902df92d1759d913d18fa2d SHA512 579e4516e53b0ed3ac51f115ba1aa46afec02b7f7839a572f67c464e11ee6ba892b6b1747b90288ce40869f1d7997468fb96c4e6c227ab51820a3d080fc70a06 WHIRLPOOL f2f2930948d6051be9d9a25846c07dcffac20f1038d57dce7dfd59b7a26a2792750c723329f444d31a80cccc8495ca3e5130298663143d4ee73aafbf369aaa5b

diff --git a/dev-java/gradle-bin/gradle-bin-4.3.1.ebuild b/dev-java/gradle-bin/gradle-bin-4.3.1.ebuild
new file mode 100644
index 00000000..013665cc
--- /dev/null
+++ b/dev-java/gradle-bin/gradle-bin-4.3.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit java-pkg-2
+
+MY_PN=${PN%%-bin}
+MY_P="${MY_PN}-${PV/_rc/-rc-}"
+
+DESCRIPTION="A project automation and build tool with a Groovy based DSL"
+SRC_URI="http://services.gradle.org/distributions/${MY_P}-all.zip"
+HOMEPAGE="http://www.gradle.org/"
+LICENSE="Apache-2.0"
+SLOT="${PV}"
+KEYWORDS="~x86 ~amd64"
+
+DEPEND="app-arch/zip
+		app-eselect/eselect-gradle"
+RDEPEND=">=virtual/jdk-1.6"
+
+IUSE="source doc examples"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+	local gradle_dir="${EPREFIX}/usr/share/${PN}-${SLOT}"
+
+	dodoc docs/release-notes.html getting-started.html
+
+	insinto "${gradle_dir}"
+
+	# source
+	if use source ; then
+		java-pkg_dosrc src/*
+	fi
+
+	# docs
+	if use doc ; then
+		java-pkg_dojavadoc docs/javadoc
+	fi
+
+	# examples
+	if use examples ; then
+		java-pkg_doexamples samples
+	fi
+
+	insinto "${gradle_dir}"
+	doins -r bin/ lib/
+	fperms 755 "${gradle_dir}/bin/gradle"
+	dosym "${gradle_dir}/bin/gradle" "/usr/bin/${PN}-${SLOT}"
+}
+
+pkg_postinst() {
+	eselect gradle update ifunset
+}
+
+pkg_postrm() {
+	eselect gradle update ifunset
+}


             reply	other threads:[~2017-11-22 14:44 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-22 14:43 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-09  7:27 [gentoo-commits] proj/java:master commit in: dev-java/gradle-bin/ Florian Schmaus
2024-06-19  8:18 Florian Schmaus
2024-01-17 13:21 Florian Schmaus
2024-01-07  9:16 Florian Schmaus
2024-01-07  9:16 Florian Schmaus
2021-06-25 10:43 Florian Schmaus
2021-06-25  6:23 Florian Schmaus
2021-06-15 10:56 Florian Schmaus
2021-04-12 12:28 Florian Schmaus
2021-04-12 12:28 Florian Schmaus
2021-03-25 10:43 Florian Schmaus
2021-03-25 10:43 Florian Schmaus
2021-02-09 19:01 Florian Schmaus
2020-12-06 18:14 Florian Schmaus
2020-10-27  9:31 Florian Schmaus
2020-09-20 12:09 Florian Schmaus
2020-09-17 12:27 Florian Schmaus
2020-06-07 19:32 Florian Schmaus
2020-06-07 19:32 Florian Schmaus
2020-05-19 10:37 Florian Schmaus
2020-04-24  8:08 Florian Schmaus
2020-03-09 12:59 Florian Schmaus
2020-03-01 19:27 Florian Schmaus
2020-02-24 12:57 Florian Schmaus
2020-02-23 18:43 Florian Schmaus
2020-02-23 16:27 Florian Schmaus
2020-02-23 16:24 Florian Schmaus
2020-01-07 14:00 Florian Schmaus
2019-09-15 14:37 Florian Schmaus
2019-09-14 14:06 Florian Schmaus
2019-07-17 15:44 Florian Schmaus
2019-05-17 10:37 Florian Schmaus
2019-02-23 23:51 Florian Schmaus
2019-02-04 10:24 Florian Schmaus
2019-01-06 17:46 Florian Schmaus
2019-01-06 17:46 Florian Schmaus
2018-09-29 15:44 Florian Schmaus
2018-08-07  8:04 Florian Schmaus
2018-08-07  7:50 Florian Schmaus
2018-06-20 17:22 Florian Schmaus
2018-05-15  7:48 Florian Schmaus
2018-03-10 10:01 Florian Schmaus
2017-12-27 15:16 Florian Schmaus
2017-11-22 14:43 Florian Schmaus
2017-10-15 13:38 Florian Schmaus
2017-07-02 10:19 Florian Schmaus
2017-05-18 13:51 Florian Schmaus
2017-04-25 15:41 Florian Schmaus
2017-04-25 15:41 Florian Schmaus
2017-01-10 15:02 Florian Schmaus
2016-10-05 19:54 James Le Cuirot
2016-08-29 21:54 James Le Cuirot
2016-08-29 21:54 James Le Cuirot
2016-05-17 20:45 James Le Cuirot
2016-04-01  6:20 Florian Schmaus
2016-02-10  9:07 Florian Schmaus
2016-02-08 21:38 Florian Schmaus
2016-01-23 10:43 Florian Schmaus
2015-12-15 10:02 Florian Schmaus
2015-11-15 21:40 Florian Schmaus
2015-10-21 15:49 Florian Schmaus
2015-09-21 19:47 Florian Schmaus
2015-09-13 15:24 Florian Schmaus
2015-07-11 13:16 Florian Schmaus
2015-04-15 10:00 James Le Cuirot
2015-02-24 16:50 Florian Schmaus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1511361826.eec6799ec957aff7bb346e5e5d9a48957d35fba1.flow@gentoo \
    --to=flo@geekplace.eu \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox