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: Sun,  7 Jun 2020 19:32:50 +0000 (UTC)	[thread overview]
Message-ID: <1591558281.1687b1be52f1a9d2cf90ef01cafc1f979d5b3702.flow@gentoo> (raw)

commit:     1687b1be52f1a9d2cf90ef01cafc1f979d5b3702
Author:     Florian Schmaus <flo <AT> geekplace <DOT> eu>
AuthorDate: Sun Jun  7 19:31:21 2020 +0000
Commit:     Florian Schmaus <flo <AT> geekplace <DOT> eu>
CommitDate: Sun Jun  7 19:31:21 2020 +0000
URL:        https://gitweb.gentoo.org/proj/java.git/commit/?id=1687b1be

dev-java/gradle-bin: bump to 6.5

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Florian Schmaus <flo <AT> geekplace.eu>

 dev-java/gradle-bin/Manifest              |  1 +
 dev-java/gradle-bin/gradle-bin-6.5.ebuild | 55 +++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index 17ff05a3..a5a11ba7 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -16,3 +16,4 @@ DIST gradle-6.2.1-all.zip 139194096 BLAKE2B bf866fb0c32c84284a79969c362843b8c857
 DIST gradle-6.2.2-all.zip 139200435 BLAKE2B 5e9a0a1418e5bbeb7c26435d1d851bb68bc09793fc90aa48a18b3d9fac2610dc5736f16dc43ae5fc8f2fe88bf204b3f5d7faa55dc481c80bc95e27e6a6acb047 SHA512 0aff7221aeba40049015947fcb9949658b5e497f2e9dc9d4109bb46e923d6734cb402a5347c85f9aa0440672606e21e3d9cd65a3b065895ea2ede24713b31737
 DIST gradle-6.4-rc-2-all.zip 145812042 BLAKE2B affef30f37a3a21c623a0bcd366b113c8a69e8d83cb3cc382365694027849523c6c5862b94ceca510558be8431ddbd8b1b50fe0bf2952e4dde9f97c3d05a7e16 SHA512 ad7191cab387bec16582d1a2fb166b382d5c8444cef2851d583f2006dacdeaebefcbc82809f871e55232569d7ea166990b38190b9d2c5fd43c2d3d1736d31fca
 DIST gradle-6.4.1-all.zip 145723302 BLAKE2B a1a42a672d117365a8c89d7e68da295ac33e340b5a74d4f078ca83a09efa3c696e208308b4c67ecf6fadce35a358fa0cabfea53c1fd04951745d5510f860e8b0 SHA512 616e55e3b611261831afd031495ccbd5f929b9d67ea70e7ed76899dd35cc90ab48e793f3912f6f44ce400dcd3e517a7b56856a79add281ea556b2c5cfc8d91d5
+DIST gradle-6.5-all.zip 145767155 BLAKE2B dccc31ec08e4ff3affac3d33b144dd5cc546cb51f56337e98d0f22e0ddfd0cf4a4f3df0fb7b38067d1516365ba750c3276d8ee760db4318570bd603e05d6f139 SHA512 e2e867931be4513236da16526f35a809ea5851876f6d77a9172ba69d6ce209a2dfe9891c25e4d573c99bd5c866609672945782c27058b039ca7b918905c7db92

diff --git a/dev-java/gradle-bin/gradle-bin-6.5.ebuild b/dev-java/gradle-bin/gradle-bin-6.5.ebuild
new file mode 100644
index 00000000..7ebd0f9d
--- /dev/null
+++ b/dev-java/gradle-bin/gradle-bin-6.5.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2020 Gentoo Authors
+# 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="https://services.gradle.org/distributions/${MY_P}-all.zip"
+HOMEPAGE="http://www.gradle.org/"
+LICENSE="Apache-2.0"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="app-arch/zip
+		app-eselect/eselect-gradle"
+RDEPEND="virtual/jre"
+
+IUSE="source doc"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+	local gradle_dir="${EPREFIX}/usr/share/${PN}-${SLOT}"
+
+	dodoc docs/release-notes.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
+
+	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:[~2020-06-07 19:32 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-07 19:32 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-19  8:18 [gentoo-commits] proj/java:master commit in: dev-java/gradle-bin/ 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-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-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=1591558281.1687b1be52f1a9d2cf90ef01cafc1f979d5b3702.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