Re: error: package javafx.collections does not exist

2017-02-10 Thread Martin Gansser
> Il 10/02/2017 20:11, Martin Gansser ha scritto: > No, > > ln -sf ../java/MediathekView/MediathekView.jar > %{buildroot}%{_datadir}/Mediathek > ln -sf %{_javadir}/jackson-core.jar %{buildroot}%{_datadir}/Mediathek MediathekView.jar do not exists, and can't be linked, > check if these are corr

Re: error: package javafx.collections does not exist

2017-02-10 Thread gil
Il 10/02/2017 20:11, Martin Gansser ha scritto: Il 10/02/2017 16:25, Martin Gansser ha scritto: usually a noarch application live in usr/share/[NAME] all (optional/required) java libraries should be linked in usr/share/[NAME] you mean, replace %{_javadir} with %{_datadir} ? No, ln -sf ../j

Re: error: package javafx.collections does not exist

2017-02-10 Thread Martin Gansser
> Il 10/02/2017 16:25, Martin Gansser ha scritto: > > usually a noarch application live in usr/share/[NAME] > all (optional/required) java libraries should be linked in usr/share/[NAME] you mean, replace %{_javadir} with %{_datadir} ? > Please, remove: > all bundle libraries ( swingx*.jar, jacks

Re: error: package javafx.collections does not exist

2017-02-10 Thread gil
Il 10/02/2017 16:25, Martin Gansser ha scritto: please use: %files -f .mfiles %doc res/README.txt %license src/main/resources/MSearch-LICENSE.txt %files javadoc -f .mfiles-javadoc %license src/main/resources/MSearch-LICENSE.txt rpm spec-file changed and uploaded. I am working now on the rp

Re: error: package javafx.collections does not exist

2017-02-10 Thread Martin Gansser
> please use: > > %files -f .mfiles > %doc res/README.txt > %license src/main/resources/MSearch-LICENSE.txt > > %files javadoc -f .mfiles-javadoc > %license src/main/resources/MSearch-LICENSE.txt > rpm spec-file changed and uploaded. I am working now on the rpm package for MediaMediathekView ht

Re: error: package javafx.collections does not exist

2017-02-10 Thread gil
please use: %files -f .mfiles %doc res/README.txt %license src/main/resources/MSearch-LICENSE.txt %files javadoc -f .mfiles-javadoc %license src/main/resources/MSearch-LICENSE.txt Il 10/02/2017 14:40, Martin Gansser ha scritto: new rpm spec-file: https://martinkg.fedorapeople.org/Packages/Med

Re: error: package javafx.collections does not exist

2017-02-10 Thread Martin Gansser
new rpm spec-file: https://martinkg.fedorapeople.org/Packages/MediathekView/MSearch.spec many thanks for your help. ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org

Re: error: package javafx.collections does not exist

2017-02-10 Thread gil
Il 10/02/2017 13:12, Martin Gansser ha scritto: Il 10/02/2017 09:14, Martin Gansser ha scritto: is not necessary please, use: for file in src/main/java/mSearch/tool/FileSize.java do native2ascii -encoding UTF8 ${file} ${file} done try with the above solution if there are not file with the

Re: error: package javafx.collections does not exist

2017-02-10 Thread Martin Gansser
> Il 10/02/2017 09:14, Martin Gansser ha scritto: > is not necessary > please, use: > > for file in src/main/java/mSearch/tool/FileSize.java > do > native2ascii -encoding UTF8 ${file} ${file} > done > > try with the above solution if there are not file with the same problem > and report to upst

Re: error: package javafx.collections does not exist

2017-02-10 Thread gil
Il 10/02/2017 09:14, Martin Gansser ha scritto: I have now changed the following parts: prep %setup -qn %{name}-%{version} find . -name "*.jar" -delete is not necessary # fix non ASCII chars for file in $( find src/main/java/mSearch -name *.java ) ; do native2ascii -encoding UTF8 ${file}

Re: error: package javafx.collections does not exist

2017-02-10 Thread Martin Gansser
I have now changed the following parts: prep %setup -qn %{name}-%{version} find . -name "*.jar" -delete # fix non ASCII chars for file in $( find src/main/java/mSearch -name *.java ) ; do native2ascii -encoding UTF8 ${file} ${file} done # fix "groupId must be specified" echo 'group = "de.media

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
Il 09/02/2017 22:19, Martin Gansser ha scritto: javadoc task is not executed. if you want enable just add: echo ' task javadoc(type: Javadoc) { classpath = configurations.compile source = sourceSets.main.allJava }' >> build.gradle or echo ' task javadocs(type: Javadoc) { cl

Re: error: package javafx.collections does not exist

2017-02-09 Thread Martin Gansser
> javadoc task is not executed. if you want enable just add: > > echo ' > task javadoc(type: Javadoc) { > classpath = configurations.compile > source = sourceSets.main.allJava > }' >> build.gradle > > or > > echo ' > task javadocs(type: Javadoc) { > classpath = configurations.comp

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
javadoc task is not executed. if you want enable just add: echo ' task javadoc(type: Javadoc) { classpath = configurations.compile source = sourceSets.main.allJava }' >> build.gradle or echo ' task javadocs(type: Javadoc) { classpath = configurations.compile source = sourceSets.

Re: error: package javafx.collections does not exist

2017-02-09 Thread Martin Gansser
this is the new rpm spec-file: https://martinkg.fedorapeople.org/Packages/MediathekView/MSearch.spec and the build.log file: https://martinkg.fedorapeople.org/Packages/MediathekView/MSearch-build-log.txt ___ devel mailing list -- devel@lists.fedoraproject

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
Il 09/02/2017 14:32, gil ha scritto: Il 09/02/2017 14:21, gil ha scritto: Il 09/02/2017 13:43, Martin Gansser ha scritto: I found no doc file in the build folder. can you paste here the build log. or tell ne if the javadoc task was executed regards .g ___

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
Il 09/02/2017 14:21, gil ha scritto: Il 09/02/2017 13:43, Martin Gansser ha scritto: I found no doc file in the build folder. can you paste here the build log. or tell ne if the javadoc task was executed regards .g ___ devel mailing list -- devel

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
Il 09/02/2017 13:43, Martin Gansser ha scritto: I found no doc file in the build folder. can you paste here the build log. or tell ne if the javadoc task was executed regards .g ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe

Re: error: package javafx.collections does not exist

2017-02-09 Thread Martin Gansser
> Il 09/02/2017 10:50, Martin Gansser ha scritto: > are you sure which > generated apis docs are located in "api/" sub dir? > and not in "build/docs/...(usually is the default path...)"? > seem there are uselesse BuildRequires declaration... > in the build.gradle are liste only these ones: > c

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
Il 09/02/2017 11:53, gil ha scritto: Il 09/02/2017 10:50, Martin Gansser ha scritto: Il 08/02/2017 14:59, Alec Leamas ha scritto: maybe you should read this https://fedora-java.github.io/howto/latest/#gradle before for adapt your spec file at Fedora Java Guideline regards .g i switched in t

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
Il 09/02/2017 10:50, Martin Gansser ha scritto: Il 08/02/2017 14:59, Alec Leamas ha scritto: maybe you should read this https://fedora-java.github.io/howto/latest/#gradle before for adapt your spec file at Fedora Java Guideline regards .g i switched in the %build section to %gradle_build and i

Re: error: package javafx.collections does not exist

2017-02-09 Thread Martin Gansser
> Il 08/02/2017 14:59, Alec Leamas ha scritto: > maybe you should read this > https://fedora-java.github.io/howto/latest/#gradle before > for adapt your spec file at Fedora Java Guideline > regards > .g i switched in the %build section to %gradle_build and in the %install section to %mvn_install

Re: error: package javafx.collections does not exist

2017-02-09 Thread Martin Gansser
> Hi Martin. > > Martin Gansser: > > Hi, thanks for testing the openjfx package. There is a second step that > needs to performed manually. These steps are described in > /usr/share/doc/openjfx/README.fedora. > > > Jonny Thanks for your feedback, i run this script, that solves it. #!/bin/bash

Re: error: package javafx.collections does not exist

2017-02-09 Thread Jonny Heggheim
00.fc25.src.rpm > > When I try to compile msearch, I get the following error: > /home/martin/rpmbuild/BUILD/MSearch-3467040e54e31625425eb33dcd0f20a8da575dc4/src/main/java/mSearch/tool/SysMsg.java:22: > error: package javafx.collections does not exist > import ja

Re: error: package javafx.collections does not exist

2017-02-09 Thread gil
/MSearch-3467040e54e31625425eb33dcd0f20a8da575dc4/src/main/java/mSearch/tool/SysMsg.java:22: error: package javafx.collections does not exist import javafx.collections.FXCollections; Hm... https://bugzilla.redhat.com/show_bug.cgi?id=1145303 ? Cheers! --alec

Re: error: package javafx.collections does not exist

2017-02-08 Thread Martin Gansser
> On 08/02/17 14:39, Martin Gansser wrote: > > > Hm... https://bugzilla.redhat.com/show_bug.cgi?id=1145303 ? > > Cheers! > > --alec yes, i know this bug report, and i took the src.rpm package from the mentioned link. ___ devel mailing list -- devel@l

Re: error: package javafx.collections does not exist

2017-02-08 Thread Alec Leamas
.fc25.src.rpm When I try to compile msearch, I get the following error: /home/martin/rpmbuild/BUILD/MSearch-3467040e54e31625425eb33dcd0f20a8da575dc4/src/main/java/mSearch/tool/SysMsg.java:22: error: package javafx.collections does not exist import javafx.collections.FXCollections; Hm... https

error: package javafx.collections does not exist

2017-02-08 Thread Martin Gansser
, I get the following error: /home/martin/rpmbuild/BUILD/MSearch-3467040e54e31625425eb33dcd0f20a8da575dc4/src/main/java/mSearch/tool/SysMsg.java:22: error: package javafx.collections does not exist import javafx.collections.FXCollections; ^ /home/martin/rpmbuild/BUILD/MSearch