diff options
author | James Le Cuirot <chewi@gentoo.org> | 2017-12-10 21:43:16 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2017-12-10 21:46:12 +0000 |
commit | 27520b903e5428a8b2000e9a41858f6686c1dd32 (patch) | |
tree | 2ff46b02f8367297c2fd34681828f5193ffe177c /dev-java | |
parent | dev-java/java-sdk-docs: Version bump to 9.0.1 (Java 9) (diff) | |
download | gentoo-27520b903e5428a8b2000e9a41858f6686c1dd32.tar.gz gentoo-27520b903e5428a8b2000e9a41858f6686c1dd32.tar.bz2 gentoo-27520b903e5428a8b2000e9a41858f6686c1dd32.zip |
dev-java/java-sdk-docs: Goodbye Java 7!
Package-Manager: Portage-2.3.17, Repoman-2.3.6
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/java-sdk-docs/Manifest | 1 | ||||
-rw-r--r-- | dev-java/java-sdk-docs/java-sdk-docs-1.7.0.80.ebuild | 48 |
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-java/java-sdk-docs/Manifest b/dev-java/java-sdk-docs/Manifest index 88683fb45ac9..f53ec1e5a615 100644 --- a/dev-java/java-sdk-docs/Manifest +++ b/dev-java/java-sdk-docs/Manifest @@ -1,3 +1,2 @@ -DIST jdk-7u80-docs-all.zip 61168809 SHA256 0494bd49bc9cb3cbe3203120ae8b2c8e0aeb1579cb15c0fbd3cd780d19aa200a SHA512 c673c00e55c9a19938c42512cb9c6ae65de9803a1307d11a2043903d87cc36d9ed1f5a1e287040d8570e430cfe55f496354c1242fe6e242f1245f8271394ea1a WHIRLPOOL ad18886c401ec42735665081a0dd5ba3dc7678de0171f3aa8151c2e4ce3392e467be65c602f393da38373e589fa9800ed1afd3601d2cef4e48b06e57f491698e DIST jdk-8u152-docs-all.zip 93495668 BLAKE2B 9bb791ef4ace0fd180953e12501900a21583cf9cd8c256246c0d8b1fe139aa7c21fffd073cf6cfc27c206f00eb9d77fd510f8ced752f7c690a4762a9f52f3e8d SHA512 5aa49103685fc466bf2c5ff32aeee9ccf5b51359bb8e558bc8f23dc399fb108cba7fd282b669ce3b8062865fc4507afc809f8fb0ca844587eb168ad44c69ad77 DIST jdk-9.0.1_doc-all.zip 70497837 BLAKE2B 437aeae172d5a2133eb34f305925898aa80b52f15ae9860d148e3eda7de34b635c4defa0683009c4232658414c81d1f01fbea4201ea179347508caf63d13cd82 SHA512 c031497e5644abe9e9d72f9b2af6c11cf9842ee2f1001184704d994ec62b46a3620930e63944253c777d8ec9248418369579e439cf5c13c66805364669e54063 diff --git a/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.80.ebuild b/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.80.ebuild deleted file mode 100644 index 42915862de63..000000000000 --- a/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.80.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit versionator - -MY_PV="$(get_version_component_range 2)u$(get_version_component_range 4)" - -DOWNLOAD_URL="http://www.oracle.com/technetwork/java/javase/documentation/java-se-7-doc-download-435117.html#jdk-${MY_PV}-apidocs-oth-JPR" -ORIG_NAME="jdk-${MY_PV}-docs-all.zip" - -DESCRIPTION="Oracle's documentation bundle (including API) for Java SE" -HOMEPAGE="http://download.oracle.com/javase/7/docs/" -SRC_URI="${ORIG_NAME}" - -LICENSE="oracle-java-documentation-7" -SLOT="1.7" -KEYWORDS="amd64 ~arm ~ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND="app-arch/unzip" - -RESTRICT="fetch" - -S="${WORKDIR}/docs" - -pkg_nofetch() { - einfo "Please download ${ORIG_NAME} from " - einfo "${DOWNLOAD_URL}" - einfo "(agree to the license) and place it in ${DISTDIR}" - - einfo "If you find the file on the download page replaced with a higher" - einfo "version, please report to the bug 67266 (link below)." - einfo "If emerge fails because of a checksum error it is possible that" - einfo "the upstream release changed without renaming. Try downloading the file" - einfo "again (or a newer revision if available). Otherwise report this to" - einfo "https://bugs.gentoo.org/67266 and we will make a new revision." -} - -src_install(){ - insinto /usr/share/doc/${P}/html - doins index.html - - for i in *; do - [[ -d $i ]] && doins -r $i - done -} |