diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-01-23 13:40:13 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-01-23 13:40:13 +0000 |
| commit | a0d324d0ef33cd7630b90e7c187b0691941f8eea (patch) | |
| tree | c91b7887ca0e5ebac994356b6cc51b476192b04f /dev-java | |
| parent | 871e0dffa8e0be91d5982e72f574c781113677e0 (diff) | |
| download | baldeagleos-repo-a0d324d0ef33cd7630b90e7c187b0691941f8eea.tar.gz baldeagleos-repo-a0d324d0ef33cd7630b90e7c187b0691941f8eea.tar.xz baldeagleos-repo-a0d324d0ef33cd7630b90e7c187b0691941f8eea.zip | |
Adding metadata
Diffstat (limited to 'dev-java')
11 files changed, 52 insertions, 60 deletions
diff --git a/dev-java/commons-imaging/Manifest b/dev-java/commons-imaging/Manifest index 13bebfeb5b85..636f8ef3213e 100644 --- a/dev-java/commons-imaging/Manifest +++ b/dev-java/commons-imaging/Manifest @@ -1 +1 @@ -DIST apache-sanselan-incubating-0.97-src.tar.gz 33317875 BLAKE2B c9db6c30accc308d2c5d5977b84da118ab50b010b3728665a75dab13f9fecb70075e2d2208a62fabc57af7396f7c39b1ec498e0840e5a2c9c8de9b95d2dd597a SHA512 b7e8af01f4b4ca812313bbf573758d9c0e1355266bfb83898336b14c4b492a8979f2a593f00d53c076e83cf807a049df624491a26623cfbceb00560b748f05f2 +DIST commons-imaging-1.0-alpha2-src.tar.gz 39798631 BLAKE2B 01d0754689896a1f2ff1401cac7d9f59a6bbb245c0880f24f857efc53975c1203c6857d7a5d107763741a2dec7fb48c4faa258786f574cf2f3c5acca251e368b SHA512 f2479e0dc726a8d1193f4eef6289efe493cfbbe257054b5a13e929f5785f7a2c9c937e3f379e0f0066c591d18be27d12f1e5157e789eebab78fba489cc81e688 diff --git a/dev-java/commons-imaging/commons-imaging-0.97.ebuild b/dev-java/commons-imaging/commons-imaging-0.97.ebuild deleted file mode 100644 index f8c2ba3f2ef3..000000000000 --- a/dev-java/commons-imaging/commons-imaging-0.97.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="A minimalistic realtime charting library for Java" -HOMEPAGE="https://commons.apache.org/proper/commons-imaging" -SRC_URI="mirror://apache/commons/sanselan/source/apache-sanselan-incubating-${PV}-src.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="test" # 5/48 failures, dunno why :( - -RDEPEND=">=virtual/jre-1.6" - -DEPEND=">=virtual/jdk-1.6 - test? ( dev-java/junit:4 )" - -S="${WORKDIR}/sanselan-${PV}-incubator" -JAVA_ENCODING="ISO-8859-1" -JAVA_SRC_DIR="src/main/java" - -java_prepare() { - # Tsk, Windows developers… - find src/test/java -name "*.java" -exec sed -i 's:\\:/:g' {} + || die -} - -src_install() { - java-pkg-simple_src_install - dodoc README.txt RELEASE_NOTES -} - -src_test() { - local DIR="src/test/java" - local CP="${DIR}:${PN}.jar:$(java-pkg_getjars junit-4)" - - local TESTS=$(find "${DIR}" -name "*Test.java" ! -name "*BaseTest.java" ! -name SanselanTest.java ! -name ByteSourceTest.java) - TESTS="${TESTS//src\/test\/java\/}" - TESTS="${TESTS//.java}" - TESTS="${TESTS//\//.}" - - ejavac -cp "${CP}" -d "${DIR}" $(find "${DIR}" -name "*.java") - ejunit4 -classpath "${CP}" ${TESTS} -} diff --git a/dev-java/commons-imaging/commons-imaging-1.0_alpha2.ebuild b/dev-java/commons-imaging/commons-imaging-1.0_alpha2.ebuild new file mode 100644 index 000000000000..9ec64af99b77 --- /dev/null +++ b/dev-java/commons-imaging/commons-imaging-1.0_alpha2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Skeleton command: +# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri mirror://apache/commons/imaging/source/commons-imaging-1.0-alpha2-src.tar.gz --slot 0 --keywords "~amd64 ~x86" --ebuild commons-imaging-1.0_alpha2.ebuild + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +MAVEN_ID="org.apache.commons:commons-imaging:1.0-alpha2" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Apache Commons Imaging (previously Sanselan) is a pure-Java image library." +HOMEPAGE="https://commons.apache.org/proper/commons-imaging/" +SRC_URI="mirror://apache/commons/imaging/source/commons-imaging-${PV/_/-}-src.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# Compile dependencies +# POM: pom.xml +# test? commons-io:commons-io:2.7 -> >=dev-java/commons-io-2.11.0:1 +# test? org.hamcrest:hamcrest:2.2 -> !!!artifactId-not-found!!! +# test? org.junit.jupiter:junit-jupiter:5.6.2 -> !!!groupId-not-found!!! + +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" + +DOCS=( {LICENSE,NOTICE,RELEASE-NOTES}.txt README.md ) + +S="${WORKDIR}/${P/_/-}-src" + +JAVA_SRC_DIR="src/main/java" +JAVA_RESOURCE_DIRS="src/main/resources" + +src_install() { + default # https://bugs.gentoo.org/789582 + java-pkg-simple_src_install +} diff --git a/dev-java/javax-inject/javax-inject-1-r2.ebuild b/dev-java/javax-inject/javax-inject-1-r2.ebuild index a858fc2c3464..1e5e418d3cd0 100644 --- a/dev-java/javax-inject/javax-inject-1-r2.ebuild +++ b/dev-java/javax-inject/javax-inject-1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,7 +10,7 @@ MY_PN="${PN/-/.}" MY_P="${MY_PN}-${PV}" DESCRIPTION="Dependency injection for Java (JSR-330)" -HOMEPAGE="https://github.com/matlach/atinject" +HOMEPAGE="https://github.com/javax-inject/javax-inject" SRC_URI="http://central.maven.org/maven2/javax/inject/${MY_PN}/${PV}/${MY_P}-sources.jar" LICENSE="Apache-2.0" diff --git a/dev-java/javax-inject/javax-inject-1-r3.ebuild b/dev-java/javax-inject/javax-inject-1-r3.ebuild index 78975db2669e..4778a718f69d 100644 --- a/dev-java/javax-inject/javax-inject-1-r3.ebuild +++ b/dev-java/javax-inject/javax-inject-1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,7 +11,7 @@ MY_PN="${PN/-/.}" MY_P="${MY_PN}-${PV}" DESCRIPTION="Dependency injection for Java (JSR-330)" -HOMEPAGE="https://github.com/matlach/atinject" +HOMEPAGE="https://github.com/javax-inject/javax-inject" SRC_URI="http://central.maven.org/maven2/javax/inject/${MY_PN}/${PV}/${MY_P}-sources.jar -> ${P}.jar" LICENSE="Apache-2.0" diff --git a/dev-java/javax-inject/javax-inject-1-r4.ebuild b/dev-java/javax-inject/javax-inject-1-r4.ebuild index ca8a987e59c9..24a0d7ec2875 100644 --- a/dev-java/javax-inject/javax-inject-1-r4.ebuild +++ b/dev-java/javax-inject/javax-inject-1-r4.ebuild @@ -11,7 +11,7 @@ MY_PN="${PN/-/.}" MY_P="${MY_PN}-${PV}" DESCRIPTION="Dependency injection for Java (JSR-330)" -HOMEPAGE="https://github.com/matlach/atinject" +HOMEPAGE="https://github.com/javax-inject/javax-inject" SRC_URI="http://central.maven.org/maven2/javax/inject/${MY_PN}/${PV}/${MY_P}-sources.jar -> ${P}.jar" LICENSE="Apache-2.0" diff --git a/dev-java/openjdk-bin/files/openjdk-bin-11.env.sh b/dev-java/openjdk-bin/files/openjdk-bin-11.env.sh index 9e9c5ec54870..073e66f7ee9c 100644 --- a/dev-java/openjdk-bin/files/openjdk-bin-11.env.sh +++ b/dev-java/openjdk-bin/files/openjdk-bin-11.env.sh @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -VERSION="AdoptOpenJDK ${PV}" +VERSION="Eclipse Temurin JDK ${PV}" JAVA_HOME="${EPREFIX}/opt/${P}" JDK_HOME="${EPREFIX}/opt/${P}" JAVAC="\${JAVA_HOME}/bin/javac" diff --git a/dev-java/openjdk-bin/files/openjdk-bin-17.env.sh b/dev-java/openjdk-bin/files/openjdk-bin-17.env.sh index 6dc16a10bff2..f6d25d57c4a1 100644 --- a/dev-java/openjdk-bin/files/openjdk-bin-17.env.sh +++ b/dev-java/openjdk-bin/files/openjdk-bin-17.env.sh @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -VERSION="AdoptOpenJDK ${PV}" +VERSION="Eclipse Temurin JDK ${PV}" JAVA_HOME="${EPREFIX}/opt/${P}" JDK_HOME="${EPREFIX}/opt/${P}" JAVAC="\${JAVA_HOME}/bin/javac" diff --git a/dev-java/openjdk-bin/files/openjdk-bin-8.env.sh b/dev-java/openjdk-bin/files/openjdk-bin-8.env.sh index 264572a4b219..fe1b484edfa1 100644 --- a/dev-java/openjdk-bin/files/openjdk-bin-8.env.sh +++ b/dev-java/openjdk-bin/files/openjdk-bin-8.env.sh @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -VERSION="AdoptOpenJDK ${PV}" +VERSION="Eclipse Temurin JDK ${PV}" JAVA_HOME="${EPREFIX}/opt/${P}" JDK_HOME="${EPREFIX}/opt/${P}" JAVAC="\${JAVA_HOME}/bin/javac" diff --git a/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-11.env.sh b/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-11.env.sh index ec0dca401e6f..fced31b2be32 100644 --- a/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-11.env.sh +++ b/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-11.env.sh @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -VERSION="AdoptOpenJDK JRE ${PV}" +VERSION="Eclipse Temurin JRE ${PV}" JAVA_HOME="${EPREFIX}/opt/${P}" JDK_HOME="${EPREFIX}/opt/${P}" JAVAC="\${JAVA_HOME}/bin/javac" diff --git a/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-8.env.sh b/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-8.env.sh index fabc13c4091c..e3f380e33c60 100644 --- a/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-8.env.sh +++ b/dev-java/openjdk-jre-bin/files/openjdk-jre-bin-8.env.sh @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -VERSION="AdoptOpenJDK JRE ${PV}" +VERSION="Eclipse Temurin JRE ${PV}" JAVA_HOME="${EPREFIX}/opt/${P}" JDK_HOME="${EPREFIX}/opt/${P}" JAVAC="\${JAVA_HOME}/bin/javac" |
