dev-java/xz-java: clean up old.

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
This commit is contained in:
Patrice Clement
2019-04-01 16:46:49 +02:00
parent 74af4321d5
commit 15bbec88d5
6 changed files with 0 additions and 154 deletions

View File

@@ -1,4 +1 @@
DIST xz-java-1.5.zip 131544 BLAKE2B 3984cf1e20bbf1d5f2508766e3ef4aff87f0bef774cb6f7a3f6e6b4bf7b744e74f1640330a4278b70006b7ec05e9d758bb55d63f247cc7afb1c2f4a4e64591aa SHA512 8f425b86b216927490c1ab7303ae9db7faf2c275777765ec7d10c4acd4717d2ecf76068afe9a81d099ea0941c05c517cd5e7fe1b4e8bfec804fd3355dd064f41
DIST xz-java-1.6.zip 138434 BLAKE2B 015074e64f8b354b617cd2519f83cf4a7aa491a7229e54fecb012eabe80d3ff65394a433b88eb58b5c2eadf1855aeefa0eb4c0e904f34ab36d0c430c04a7ba90 SHA512 a1a6a2da05d51695e58b8e91503106bae6030cb83853df32bc7b8a23db4189c4afef01544c21de91ee3df9ad11e065059c758f121c52e6b6a319b93b2136f666
DIST xz-java-1.7.zip 151864 BLAKE2B 6fc952d8f5ff7f75eecf64c8a26ca1a0cff78f5fe8cc71b7cf12d516d702a92b503e5e7e9ef2a3980922f2bcbc57fc95df475b612fe2f19e49969ef1c873a85e SHA512 6909d4c6bcf0479a5c1a6178c56971517dbb2a923ce6e05b3d21bd5dd1e1ead7d06f3f533276279f440f129607b89e6eb9ba909bad94340d67b16d83cf72b445
DIST xz-java-1.8.zip 152470 BLAKE2B 601e3292936cb8b3a885551a275248628171f0fa15829785e2fb99d5dfefab59fd2283df4040f090a9d96d30bef5dacd5f4aed4f9d3163ee17dea4a72ad1b0f8 SHA512 3d30804baf9bf743347d87befdbf103107f413c4460639171257e87c4ac96c5e9bc6401a85c44939cd40a25b965162d916a552ae9967f1ff1c71ed389508f5b0

View File

@@ -1,16 +0,0 @@
--- a/build.xml
+++ b/build.xml
@@ -35,12 +35,9 @@
description="Generates HTML documentation with javadoc">
<mkdir dir="${doc_dir}"/>
<mkdir dir="${extdoc_dir}"/>
- <get src="${extdoc_url}/package-list"
- dest="${extdoc_dir}/package-list" skipexisting="true"/>
<javadoc sourcepath="${src_dir}" destdir="${doc_dir}"
source="${sourcever}" packagenames="org.tukaani.xz"
- windowtitle="XZ data compression"
- linkoffline="${extdoc_url} ${extdoc_dir}"/>
+ windowtitle="XZ data compression"/>
</target>
<target name="compile" description="Compiles the classes">

View File

@@ -1,34 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Implementation of xz data compression in pure java"
HOMEPAGE="https://tukaani.org/xz/java.html"
SRC_URI="https://tukaani.org/xz/${P}.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip"
EANT_DOC_TARGET="doc"
S=${WORKDIR}
java_prepare() {
epatch "${FILESDIR}"/${PN}-stop-fetching-external-files.patch
}
src_install() {
java-pkg_dojar build/jar/xz.jar
use doc && java-pkg_dojavadoc build/doc
use examples && java-pkg_doexamples src/*Demo.java
use source && java-pkg_dosrc src/org
}

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Implementation of xz data compression in pure java"
HOMEPAGE="https://tukaani.org/xz/java.html"
SRC_URI="https://tukaani.org/xz/${P}.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND=">=virtual/jre-1.6"
DEPEND=">=virtual/jdk-1.6"
S="${WORKDIR}"
JAVA_SRC_DIR="src/org"
DOCS=( README NEWS COPYING THANKS )
src_install() {
java-pkg-simple_src_install
use examples && java-pkg_doexamples src/*Demo.java
einstalldocs
}

View File

@@ -1,39 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Implementation of xz data compression in pure java"
HOMEPAGE="https://tukaani.org/xz/java.html"
SRC_URI="https://tukaani.org/xz/${P}.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip"
EANT_DOC_TARGET="doc"
S="${WORKDIR}"
PATCHES=(
"${FILESDIR}/${PN}-stop-fetching-external-files.patch"
)
src_prepare() {
default
java-utils-2_src_prepare
}
src_install() {
java-pkg_dojar build/jar/xz.jar
use doc && java-pkg_dojavadoc build/doc
use examples && java-pkg_doexamples src/*Demo.java
use source && java-pkg_dosrc src/org
}

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Implementation of xz data compression in pure java"
HOMEPAGE="https://tukaani.org/xz/java.html"
SRC_URI="https://tukaani.org/xz/${P}.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND=">=virtual/jre-1.6"
DEPEND=">=virtual/jdk-1.6"
S="${WORKDIR}"
JAVA_SRC_DIR="src/org"
DOCS=( README NEWS COPYING THANKS )
src_install() {
java-pkg-simple_src_install
use examples && java-pkg_doexamples src/*Demo.java
einstalldocs
}