-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump to dev-java/commons-text-1.11.0 & update SRC_URI #180
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Copyright 1999-2024 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:${PVR}" | ||
|
||
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="https://archive.apache.org/dist/commons/text/source/" | ||
|
||
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" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, stable keywords in overlays is a bad practice. I hope, you wouldn't mind if I'll change them to
~
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No problem at all, I hadn't clocked that when I copied
dev-java//commons-1.10.0.ebuild
, will pay more attention in the future.Thanks for merging so quickly 👍