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, 17 Jul 2019 15:44:22 +0000 (UTC) [thread overview]
Message-ID: <1563378252.efcc0285c9c1d976535d427c29fd7e750abd7977.flow@gentoo> (raw)
commit: efcc0285c9c1d976535d427c29fd7e750abd7977
Author: Florian Schmaus <flo <AT> geekplace <DOT> eu>
AuthorDate: Wed Jul 17 15:44:12 2019 +0000
Commit: Florian Schmaus <flo <AT> geekplace <DOT> eu>
CommitDate: Wed Jul 17 15:44:12 2019 +0000
URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=efcc0285
dev-java/gradle-bin: Bump to 5.5.1
Package-Manager: Portage-2.3.66, Repoman-2.3.12
dev-java/gradle-bin/Manifest | 1 +
dev-java/gradle-bin/gradle-bin-5.5.1.ebuild | 60 +++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index 02af6878..d6676074 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -7,3 +7,4 @@ DIST gradle-5.1-all.zip 130659636 BLAKE2B ecf2e5ece8063200a1878dd8dc37a77a8d5eec
DIST gradle-5.1.1-all.zip 130765970 BLAKE2B 95b4ceb2e06b62607b9151bd085ab607c0939f3d6c5a1abf23e2f14ec54b5b3bc26c02fce2db9d3e77be6e219a72a7d0faa4d8edfaa072d2bcd9b65e03e98243 SHA512 31f43751d517f5ecf47ba66332563bc7ca1a3145adfb09190ec0232107fc812a7e8114a1d374aeb2378c88f6433b2d15f58f80706bb8e166e7a1be8a8a444d71
DIST gradle-5.2.1-all.zip 132549774 BLAKE2B c6d6fa9975bc28030672a99f22f0e9c4c2cb3d667ae3658c1062428d0ab2fd8c3b4df0479f4fde7b2d75b8fcb64c7f5b208e53c5b30a9b3c7afb5ad7e1a4139d SHA512 e2a17072c10d27acbe4a0282dfdfed907ab5c57109668595feaec681ab1d4be017ac0f6090c2c2b64a057d71c1e244bb50f4047509d36c5930e894837a96171b
DIST gradle-5.4.1-all.zip 132768903 BLAKE2B d5d3f770734268843741ce5ce9f3c0940882064bbb9b019d7954af90e54ae87c4df9e3385cce14919f764d9fe3713bf8f3f61edc6aea25b82ab267e3369d39e2 SHA512 8074546752c0b910f817c53ba42dfe5b2d434da906706c8227d8a8dbc51b0d9c5c2df75d15f6c5dbe57c20f3791715a89a00348a2663a664c97c8c09543d2148
+DIST gradle-5.5.1-all.zip 136383676 BLAKE2B 4cb939d297107e3cedfe720a3006742266e6c35a1bf80a7689f29cebf61bce3720d2c3b786b41a98d8bac4d71dac93d482885b63f64f6fd632657e0ae848cb1c SHA512 a94e5e683efb18c51a74377a1ece710f299e6f69e8f726f586b4ce90917c88bcba5cddabcfb96b3c35054200d970ffbe9db08c7c8cc2af2b98a409b79a78aa29
diff --git a/dev-java/gradle-bin/gradle-bin-5.5.1.ebuild b/dev-java/gradle-bin/gradle-bin-5.5.1.ebuild
new file mode 100644
index 00000000..2ce1bb0f
--- /dev/null
+++ b/dev-java/gradle-bin/gradle-bin-5.5.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 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="http://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/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
+}
next reply other threads:[~2019-07-17 15:44 UTC|newest]
Thread overview: 67+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-17 15:44 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-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=1563378252.efcc0285c9c1d976535d427c29fd7e750abd7977.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