diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-10-20 14:03:00 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-10-20 14:03:00 +0000 |
| commit | 7755b53de8481af596d2ce77cfaea2334d068064 (patch) | |
| tree | f78bad13f2bd4368b4bbb9d5a599068fe8958a37 /dev-java | |
| parent | 20581b55364ac26fbbf01fee4a690c666af3a797 (diff) | |
| download | baldeagleos-repo-7755b53de8481af596d2ce77cfaea2334d068064.tar.gz baldeagleos-repo-7755b53de8481af596d2ce77cfaea2334d068064.tar.xz baldeagleos-repo-7755b53de8481af596d2ce77cfaea2334d068064.zip | |
Adding metadata
Diffstat (limited to 'dev-java')
18 files changed, 139 insertions, 52 deletions
diff --git a/dev-java/bcel/metadata.xml b/dev-java/bcel/metadata.xml index 96b47ab13ddf..635b567507bb 100644 --- a/dev-java/bcel/metadata.xml +++ b/dev-java/bcel/metadata.xml @@ -6,13 +6,13 @@ <name>Java</name> </maintainer> <longdescription lang="en"> - This is the main Reference implementation of the BCEL JavaClass API. - The Byte Code Engineering Library (formerly known as JavaClass) is intended - to give users a convenient possibility to analyze, create, and manipulate - (binary) Java class files (those ending with .class). Classes are represented - by objects which contain all the symbolic information of the given class: - methods, fields and byte code instructions, in particular. -</longdescription> + This is the main Reference implementation of the BCEL JavaClass API. + The Byte Code Engineering Library (formerly known as JavaClass) is intended + to give users a convenient possibility to analyze, create, and manipulate + (binary) Java class files (those ending with .class). Classes are represented + by objects which contain all the symbolic information of the given class: + methods, fields and byte code instructions, in particular. + </longdescription> <origin>gentoo-staging</origin> </pkgmetadata>
\ No newline at end of file diff --git a/dev-java/commons-text/Manifest b/dev-java/commons-text/Manifest index e99bcc4b22d1..f6c68f728c95 100644 --- a/dev-java/commons-text/Manifest +++ b/dev-java/commons-text/Manifest @@ -1 +1,2 @@ +DIST commons-text-1.10.0-src.tar.gz 342224 BLAKE2B efed282c9fed7dae5766f7158136a4d7414ba0610e16a52fa2d12ee04e43960d47ec7c62f220c2ab881a13afa8a81cf85e453364e37c67550e15c314122ebf25 SHA512 6bf2dc7dda4429cb1b9ba3a4d383c1d9ffabd5ff35a0adc55216e7cf4c532e51b2b012c9b0f3ea859cd32aef75e05547d892301f34f304a0bfd27c39a28fe04f DIST commons-text-1.9-sources.tar.gz 312764 BLAKE2B 44b628c418a910ff38b5a1fb3b4c9f14a1f9818afd12540f8c8cf8b1a99fd7abd365e704142bcec901e5e067b303ff44f9c992f8714eae68b94819780a270dd2 SHA512 53f993e79aaa6789d3388aa96b6b2a14cf646b27ff3774524390e511241a85288947cc929519eff61a8734578f25bdf3d9969d84da20c1a749b19d90a55da8ae diff --git a/dev-java/commons-text/commons-text-1.10.0.ebuild b/dev-java/commons-text/commons-text-1.10.0.ebuild new file mode 100644 index 000000000000..49f9e33ed28d --- /dev/null +++ b/dev-java/commons-text/commons-text-1.10.0.ebuild @@ -0,0 +1,59 @@ +# 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/text/source/commons-text-1.10.0-src.tar.gz --slot 0 --keywords "~amd64 ~ppc64 ~x86" --ebuild commons-text-1.10.0.ebuild + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +MAVEN_ID="org.apache.commons:commons-text:1.10.0" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Apache Commons Text is a library focused on algorithms working on strings" +HOMEPAGE="https://commons.apache.org/proper/commons-text/" +SRC_URI="mirror://apache//commons/text/source/commons-text-${PV}-src.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" + +# Common dependencies +# POM: pom.xml +# org.apache.commons:commons-lang3:3.12.0 -> >=dev-java/commons-lang-3.12.0:3.6 + +CDEPEND=" + dev-java/commons-lang:3.6 +" + +# Compile dependencies +# POM: pom.xml +# test? commons-io:commons-io:2.11.0 -> >=dev-java/commons-io-2.11.0:1 +# test? org.apache.commons:commons-rng-simple:1.4 -> !!!artifactId-not-found!!! +# test? org.assertj:assertj-core:3.23.1 -> !!!suitable-mavenVersion-not-found!!! +# test? org.graalvm.js:js:22.0.0.2 -> !!!groupId-not-found!!! +# test? org.graalvm.js:js-scriptengine:22.0.0.2 -> !!!groupId-not-found!!! +# test? org.junit.jupiter:junit-jupiter:5.9.1 -> !!!groupId-not-found!!! +# test? org.mockito:mockito-inline:4.8.0 -> !!!artifactId-not-found!!! +# test? org.openjdk.jmh:jmh-core:1.35 -> >=dev-java/jmh-core-1.35:0 +# test? org.openjdk.jmh:jmh-generator-annprocess:1.35 -> !!!artifactId-not-found!!! + +DEPEND=" + >=virtual/jdk-1.8:* + ${CDEPEND} +" + +RDEPEND=" + >=virtual/jre-1.8:* + ${CDEPEND}" + +DOCS=( CONTRIBUTING.md NOTICE.txt README.md RELEASE-NOTES.txt ) + +S="${WORKDIR}/${P}-src" + +JAVA_AUTOMATIC_MODULE_NAME="org.apache.commons.text" +JAVA_ENCODING="ISO-8859-1" + +JAVA_GENTOO_CLASSPATH="commons-lang-3.6" +JAVA_SRC_DIR="src/main/java" diff --git a/dev-java/gson/gson-2.9.1.ebuild b/dev-java/gson/gson-2.9.1.ebuild index 9041beee05c7..d04adf324bd7 100644 --- a/dev-java/gson/gson-2.9.1.ebuild +++ b/dev-java/gson/gson-2.9.1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/google/gson/archive/gson-parent-${PV}.tar.gz" LICENSE="Apache-2.0" SLOT="2.6" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" DEPEND=">=virtual/jdk-11:*" RDEPEND=">=virtual/jre-1.8:*" diff --git a/dev-java/jackson-annotations/jackson-annotations-2.13.4.ebuild b/dev-java/jackson-annotations/jackson-annotations-2.13.4.ebuild index 5fe74f89d791..4505a819c458 100644 --- a/dev-java/jackson-annotations/jackson-annotations-2.13.4.ebuild +++ b/dev-java/jackson-annotations/jackson-annotations-2.13.4.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/FasterXML/${PN}/archive/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="2" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" DEPEND=">=virtual/jdk-11:*" RDEPEND=">=virtual/jre-1.8:*" diff --git a/dev-java/jackson-core/jackson-core-2.13.4.ebuild b/dev-java/jackson-core/jackson-core-2.13.4.ebuild index ecf4e9e34268..c5efc120c377 100644 --- a/dev-java/jackson-core/jackson-core-2.13.4.ebuild +++ b/dev-java/jackson-core/jackson-core-2.13.4.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/FasterXML/${PN}/archive/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" DEPEND=">=virtual/jdk-11:*" RDEPEND=">=virtual/jre-1.8:*" diff --git a/dev-java/jackson-databind/jackson-databind-2.13.4.1.ebuild b/dev-java/jackson-databind/jackson-databind-2.13.4.1.ebuild index 96514cdf629f..e7113f161f38 100644 --- a/dev-java/jackson-databind/jackson-databind-2.13.4.1.ebuild +++ b/dev-java/jackson-databind/jackson-databind-2.13.4.1.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/FasterXML/${PN}/archive/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" # Common dependencies # POM: pom.xml diff --git a/dev-java/jackson-dataformat-xml/jackson-dataformat-xml-2.13.4-r1.ebuild b/dev-java/jackson-dataformat-xml/jackson-dataformat-xml-2.13.4-r1.ebuild index 2658f27936bb..0abe765139fe 100644 --- a/dev-java/jackson-dataformat-xml/jackson-dataformat-xml-2.13.4-r1.ebuild +++ b/dev-java/jackson-dataformat-xml/jackson-dataformat-xml-2.13.4-r1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/FasterXML/${PN}/archive/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" # Common dependencies # POM: pom.xml diff --git a/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.4-r1.ebuild b/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.4-r1.ebuild index fb49f4628461..a852610200cc 100644 --- a/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.4-r1.ebuild +++ b/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.4-r1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/FasterXML/jackson-dataformats-text/archive/jackson-d LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" DEPEND=" ~dev-java/jackson-core-${PV}:0 diff --git a/dev-java/jackson-module-jakarta-xmlbind/jackson-module-jakarta-xmlbind-2.13.4-r1.ebuild b/dev-java/jackson-module-jakarta-xmlbind/jackson-module-jakarta-xmlbind-2.13.4-r1.ebuild index 0389701acba6..afca2db73bd3 100644 --- a/dev-java/jackson-module-jakarta-xmlbind/jackson-module-jakarta-xmlbind-2.13.4-r1.ebuild +++ b/dev-java/jackson-module-jakarta-xmlbind/jackson-module-jakarta-xmlbind-2.13.4-r1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/FasterXML/jackson-modules-base/archive/jackson-modul LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" # Common dependencies # POM: pom.xml diff --git a/dev-java/jacl/metadata.xml b/dev-java/jacl/metadata.xml index 6438b209d8b0..1d83fd53d157 100644 --- a/dev-java/jacl/metadata.xml +++ b/dev-java/jacl/metadata.xml @@ -6,35 +6,35 @@ <name>Java</name> </maintainer> <longdescription> -The Tcl/Java project's goal is to make integrating the Java platform and the -Tcl scripting language as easy as possible. The project actually consists of -two distinct packages, called Tcl Blend and Jacl. It is important to -understand what each package provides and in what situations one might choose -to use Jacl or Tcl Blend. + The Tcl/Java project's goal is to make integrating the Java platform and the + Tcl scripting language as easy as possible. The project actually consists of + two distinct packages, called Tcl Blend and Jacl. It is important to + understand what each package provides and in what situations one might choose + to use Jacl or Tcl Blend. -Tcl Blend is a Tcl extension that makes use of JNI to facilitate communication -between a Java interpreter and a Tcl interpreter. Tcl Blend is typically used -to load a Java interpreter into an existing Tcl process, so that functionality -implemented in Java can be accessed via Tcl. One can also load Tcl Blend and -Tcl into a Java process, which is a great way to add scripting functionality -to an existing Java application. Because Tcl Blend is a normal Tcl extension, -one can use it with other popular Tcl extensions like Tk, Expect, and Itcl. + Tcl Blend is a Tcl extension that makes use of JNI to facilitate communication + between a Java interpreter and a Tcl interpreter. Tcl Blend is typically used + to load a Java interpreter into an existing Tcl process, so that functionality + implemented in Java can be accessed via Tcl. One can also load Tcl Blend and + Tcl into a Java process, which is a great way to add scripting functionality + to an existing Java application. Because Tcl Blend is a normal Tcl extension, + one can use it with other popular Tcl extensions like Tk, Expect, and Itcl. -Jacl is a self-contained implementation of a Tcl interpreter, written entirely -in Java. Jacl also includes features that facilitate communication between a -Java interpreter and a Tcl interpreter. Jacl is typically used to incorporate -scripting functionality into an existing Java application. For users who want -to avoid adding any native code to their Java applications, Jacl is the ideal -solution. + Jacl is a self-contained implementation of a Tcl interpreter, written entirely + in Java. Jacl also includes features that facilitate communication between a + Java interpreter and a Tcl interpreter. Jacl is typically used to incorporate + scripting functionality into an existing Java application. For users who want + to avoid adding any native code to their Java applications, Jacl is the ideal + solution. -Tcl Blend and Jacl define both a Tcl API and a Java API that make it easy to -call Java code from Tcl or call Tcl code from Java. For example, one could -allocate a Java object in a Tcl script and interactively invoke Java methods -on the object. It is also easy to use the supplied API to evaluate a Tcl -procedure from a Java method or implement Tcl procudures in Java. The flexible -API and wealth of implementation options provided by the Tcl/Java project make -integrating Tcl and Java easy. -</longdescription> + Tcl Blend and Jacl define both a Tcl API and a Java API that make it easy to + call Java code from Tcl or call Tcl code from Java. For example, one could + allocate a Java object in a Tcl script and interactively invoke Java methods + on the object. It is also easy to use the supplied API to evaluate a Tcl + procedure from a Java method or implement Tcl procudures in Java. The flexible + API and wealth of implementation options provided by the Tcl/Java project make + integrating Tcl and Java easy. + </longdescription> <origin>gentoo-staging</origin> </pkgmetadata>
\ No newline at end of file diff --git a/dev-java/jakartaee-migration/jakartaee-migration-1.0.3.ebuild b/dev-java/jakartaee-migration/jakartaee-migration-1.0.3.ebuild index ad63fdea59bb..f4e644bdec92 100644 --- a/dev-java/jakartaee-migration/jakartaee-migration-1.0.3.ebuild +++ b/dev-java/jakartaee-migration/jakartaee-migration-1.0.3.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://tomcat.apache.org" SRC_URI="mirror://apache/tomcat/${PN}/v${PV}/source/${P}-src.tar.gz -> ${P}-sources.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" # Common dependencies # POM: pom.xml diff --git a/dev-java/jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild b/dev-java/jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild index 92d4515b2c01..85640e4c4afe 100644 --- a/dev-java/jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild +++ b/dev-java/jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://jdbc.postgresql.org/download/postgresql-jdbc-${PV}.src.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ppc64 ~x86" +KEYWORDS="amd64 ppc64 x86" # Common dependencies # POM: pom.xml diff --git a/dev-java/jtds/metadata.xml b/dev-java/jtds/metadata.xml index 4004f9195496..75ed7151473a 100644 --- a/dev-java/jtds/metadata.xml +++ b/dev-java/jtds/metadata.xml @@ -6,14 +6,14 @@ <name>Java</name> </maintainer> <longdescription> -jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL -Server (6.5, 7, 2000 and 2005) and Sybase (10, 11, 12). jTDS is based on the -work of the FreeTDS project and is currently the fastest complete JDBC driver -for SQL Server and Sybase. Starting with release 0.9 jTDS is 100% JDBC 3.0 -compatible, supporting forward-only and scrollable/updateable ResultSets, -multiple concurrent (completely independent) Statements per Connection and -implementing all the DatabaseMetaData and ResultSetMetaData methods. -</longdescription> + jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL + Server (6.5, 7, 2000 and 2005) and Sybase (10, 11, 12). jTDS is based on the + work of the FreeTDS project and is currently the fastest complete JDBC driver + for SQL Server and Sybase. Starting with release 0.9 jTDS is 100% JDBC 3.0 + compatible, supporting forward-only and scrollable/updateable ResultSets, + multiple concurrent (completely independent) Statements per Connection and + implementing all the DatabaseMetaData and ResultSetMetaData methods. + </longdescription> <origin>gentoo-staging</origin> </pkgmetadata>
\ No newline at end of file diff --git a/dev-java/mill-bin/Manifest b/dev-java/mill-bin/Manifest index 60654e442592..3ac8ffae629f 100644 --- a/dev-java/mill-bin/Manifest +++ b/dev-java/mill-bin/Manifest @@ -1 +1,2 @@ DIST mill-bin-0.10.7 65704975 BLAKE2B bd6cb205f58ef51eb43f45f5980de0dc1afbfb3b0a56ce81c541e88cae5d3cdcb65efcaffb90bd3a7b53a33410b26873d9db3a4863edf564a1ccb10c7be34e71 SHA512 9323212fd773de602ec8dbd1bf776169b402e9c60decc424b258254cc293cb4675a4caeb18addf853a7b1bdf0555cb3377e97a0dcf491b87286777c77c4232b5 +DIST mill-bin-0.10.8 65855208 BLAKE2B 4d165055a00f0373387064b98b8bf3548854213ad7a7317d7a8a03264fece5e882eb1705c45176e312a9444ab3e9f741ec638792e187a7e1b0941e1ac0862bd1 SHA512 9864c70b8a32f1ab451e07ab6e91f6fd9bf20e2cf400edca999c7585316696d90f446f68842413ae552c71f782d1687df5679857748dcc20c8d6bc7d38255b81 diff --git a/dev-java/mill-bin/mill-bin-0.10.8.ebuild b/dev-java/mill-bin/mill-bin-0.10.8.ebuild new file mode 100644 index 000000000000..e8485c57dfd6 --- /dev/null +++ b/dev-java/mill-bin/mill-bin-0.10.8.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN=${PN%-bin} + +DESCRIPTION="A Java/Scala build tool" +HOMEPAGE="https://com-lihaoyi.github.io/mill/" +SRC_URI="https://github.com/com-lihaoyi/${MY_PN}/releases/download/${PV}/${PV}-assembly -> ${P}" +KEYWORDS="~amd64 ~x86" + +LICENSE="MIT" +SLOT="0" + +RDEPEND=">=virtual/jre-1.8:*" + +S="${WORKDIR}" + +src_unpack() { + : +} + +src_install() { + newbin "${DISTDIR}"/${P} ${MY_PN} +} diff --git a/dev-java/xerial-core/xerial-core-2.1.ebuild b/dev-java/xerial-core/xerial-core-2.1.ebuild index 1299a6e436d5..48f4a0b0208e 100644 --- a/dev-java/xerial-core/xerial-core-2.1.ebuild +++ b/dev-java/xerial-core/xerial-core-2.1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/xerial/xerial-java/archive/${PV}.tar.gz -> ${P}.tar. LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" DEPEND=">=virtual/jdk-1.8:*" RDEPEND=">=virtual/jre-1.8:*" diff --git a/dev-java/xsdlib/xsdlib-2022.7.ebuild b/dev-java/xsdlib/xsdlib-2022.7.ebuild index 4495ddc28a8f..19e095b46857 100644 --- a/dev-java/xsdlib/xsdlib-2022.7.ebuild +++ b/dev-java/xsdlib/xsdlib-2022.7.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/xmlark/msv/archive/msv-${PV}.tar.gz" LICENSE="BSD-1" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" # Common dependencies # POM: pom.xml |
