Page MenuHomeFreeBSD

java/eclipse: prevent conflict install devel/git@lite if devel/git already installed
AbandonedPublic

Authored by vvd on Feb 29 2024, 10:15 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Jun 1, 8:12 PM
Unknown Object (File)
May 4 2024, 1:19 PM
Unknown Object (File)
Apr 26 2024, 3:48 AM
Unknown Object (File)
Apr 20 2024, 7:59 PM
Unknown Object (File)
Apr 19 2024, 3:43 PM
Unknown Object (File)
Apr 14 2024, 5:44 PM
Unknown Object (File)
Apr 6 2024, 3:45 AM
Unknown Object (File)
Apr 5 2024, 6:00 PM
Subscribers

Details

Summary

Added options for pick git flavour.
Default lite as was before.

Diff Detail

Repository
R11 FreeBSD ports repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

vvd requested review of this revision.Feb 29 2024, 10:15 AM
vvd created this revision.

Other solution can be create USES=git with default value lite.

java/eclipse/Makefile
20

Isn't mvn:devel/maven sufficient?

83

Can't we pick the one installed, thus leaving the decision the one compiling this port?

java/eclipse/Makefile
20

There are maven 3.6, 3.8 and 3.9 in ports. Maybe it require exactly 3.8 even if installed as default another version.
It's my assumption.

83

If you know how to do this, please suggest how.

java/eclipse/Makefile
20

There is no default version for Maven because there is no USES for Maven. devel/maven is Maven 3.8.x. 3.9 contains some incompat changes of which I was not in favor of (which I have expressed to other committers) and that is why it is its own port devel/maven39. Regardless of this you can install those versions side by side as long as you use the absolute path to the for building Eclipse.

83

Not possible at the moment. Same was with Ghostscript 10: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=272541, more specifically https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=272541#c2.

But in this case what I wouldn't not do is to use the non-default flavor as option default. Which will pkg install with pkg install git? default I guess.

java/eclipse/Makefile
20

mvn:devel/maven-wrapper not mvn:devel/maven.
devel/maven have RUN_DEPENDS=mvn:devel/maven-wrapper.

Maybe maven>0:devel/maven is better for java/eclipse.

83

Agree with you!
But this is not my port and it was not my decission.
But this port is without maintainer, so I can change default option if you think it's better pick.

Also: devel/git@lite vs devel/git@default difference is less than measurement error during build java/eclipse.

java/eclipse/Makefile
20

mvn:devel/maven-wrapper is not what you think. This is purely technical port for versoin selection at runtime, but does not depend on any physical Maven version. Don't depend on it.

I'd stick to mvn:devel/maven for the time being unless it explicitly requires 3.9.x.

83

My personal option, I'd say so. Let's see what others say.

java/eclipse/Makefile
20

I know what is devel/maven-wrapper port (same as other *-wrapper ports).
But is mvn:devel/maven work if where is no bin/mvn in mvn:devel/maven?
bin/mvn is in devel/maven-wrapper only.

java/eclipse/Makefile
20

Then I agree with you that is has to be maven>0:devel/maven.

Ok, waiting comments from my mentors.

I will take care of these:

osipovmi@deblndw011x:~/var/Projekte/freebsd/ports (main =)
$ grep -r --include='*/Makefile*' devel/maven .
./cad/digital/Makefile:BUILD_DEPENDS=   mvn:devel/maven
./devel/spark/Makefile:         mvn:devel/maven
./games/coronapoker/Makefile:BUILD_DEPENDS=     mvn:devel/maven
./games/jinput/Makefile:                mvn:devel/maven
./games/jutils/Makefile:BUILD_DEPENDS=  mvn:devel/maven
./games/lizzie/Makefile:BUILD_DEPENDS=  mvn:devel/maven
./math/jacop/Makefile:BUILD_DEPENDS=    mvn:devel/maven
./math/jts/Makefile:BUILD_DEPENDS=      mvn:devel/maven
./net-im/jicofo/Makefile:BUILD_DEPENDS= mvn:devel/maven
./net-im/jitsi-videobridge/Makefile:BUILD_DEPENDS=      mvn:devel/maven
./net-im/openfire/Makefile:BUILD_DEPENDS=       mvn:devel/maven
./science/cdk/Makefile:BUILD_DEPENDS=   mvn:devel/maven
./science/opsin/Makefile:BUILD_DEPENDS= mvn:devel/maven
./security/owasp-dependency-check/Makefile:BUILD_DEPENDS=       mvn:devel/maven
./sysutils/apache-mesos/Makefile:JAVA_BUILD_DEPENDS=    mvn:devel/maven
./sysutils/apache-mesos/Makefile:JAVA_FETCH_DEPENDS=    mvn:devel/maven
./sysutils/jvmtop/Makefile:BUILD_DEPENDS=       mvn:devel/maven

@vvd, do you want to update this review?

This revision now requires changes to proceed.Mar 13 2024, 3:48 PM

@vvd, do you want to update this review?

Look like it isn't actual anymore.