Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 922157 - java-pkg-simple.eclass: improve module support
Summary: java-pkg-simple.eclass: improve module support
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Java team
URL:
Whiteboard:
Keywords: PullRequest
Depends on:
Blocks:
 
Reported: 2024-01-15 08:22 UTC by Manuel Mommertz
Modified: 2024-01-19 12:44 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
make code related to java 9+ actually execute (0001-java-pkg-simple.eclass-make-code-related-to-java-9-a.patch,2.19 KB, patch)
2024-01-15 08:23 UTC, Manuel Mommertz
Details | Diff
cut possible prefix to allow integer comparison (0002-java-pkg-simple.eclass-cut-possible-prefix-to-allow-.patch,2.24 KB, patch)
2024-01-15 08:23 UTC, Manuel Mommertz
Details | Diff
improve decision when to use --module-path (0003-java-pkg-simple.eclass-improve-decission-when-to-use.patch,2.90 KB, patch)
2024-01-15 08:25 UTC, Manuel Mommertz
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Manuel Mommertz 2024-01-15 08:22:07 UTC
java-pkg-simple.eclass has some tests like:

if [[ java-pkg_get-target -lt 9 ]]

Which does not work as intended, as the string 'java-pkg_get-target' is missing $(..) around it. When I added it, I noticed other shortcomings and fixed them. See patches attached. :)

Reproducible: Always
Comment 1 Manuel Mommertz 2024-01-15 08:23:04 UTC
Created attachment 882311 [details, diff]
make code related to java 9+ actually execute
Comment 2 Manuel Mommertz 2024-01-15 08:23:44 UTC
Created attachment 882312 [details, diff]
cut possible prefix to allow integer comparison
Comment 3 Manuel Mommertz 2024-01-15 08:25:03 UTC
Created attachment 882313 [details, diff]
improve decision when to use --module-path
Comment 4 Volkmar W. Pogatzki 2024-01-16 09:25:58 UTC
(In reply to Manuel Mommertz from comment #0)
> java-pkg-simple.eclass has some tests like:
> 
> if [[ java-pkg_get-target -lt 9 ]]
> 
> Which does not work as intended, as the string 'java-pkg_get-target' is
> missing $(..) around it. When I added it, I noticed other shortcomings and
> fixed them. See patches attached. :)
> 
> Reproducible: Always

How did you discovery this issue, is/are there any package(s) affected by it?
Comment 5 Manuel Mommertz 2024-01-16 10:20:39 UTC
I worked on an own ebuild, had some difficulties (unrelated) and looked at the sources to understand how exactly the eclass works. Then stumbled over this test by pure luck. ;)
Comment 6 Volkmar W. Pogatzki 2024-01-17 09:16:25 UTC
Would it even solve bug #853151?
Comment 7 Manuel Mommertz 2024-01-17 14:02:09 UTC
(In reply to Volkmar W. Pogatzki from comment #6)
> Would it even solve bug #853151?

No, that bug seems unrelated.
Comment 8 Larry the Git Cow gentoo-dev 2024-01-19 12:44:05 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b8564a70b0914325d4b41039012d6e639511e5d

commit 6b8564a70b0914325d4b41039012d6e639511e5d
Author:     Manuel Mommertz <manuel.mommertz@desy.de>
AuthorDate: 2024-01-17 13:24:16 +0000
Commit:     Miroslav Šulc <fordfrog@gentoo.org>
CommitDate: 2024-01-19 12:43:46 +0000

    java-pkg-simple.eclass: improve decision when to use --module-path
    
    Closes: https://bugs.gentoo.org/922157
    Signed-off-by: Manuel Mommertz <manuel.mommertz@desy.de>
    Closes: https://github.com/gentoo/gentoo/pull/34866
    Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>

 eclass/java-pkg-simple.eclass | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)