Package Details: universal-gcode-sender-git 1.0.9.r969.gd81bb035-1

Git Clone URL: https://aur.archlinux.org/universal-gcode-sender-git.git (read-only, click to copy)
Package Base: universal-gcode-sender-git
Description: Java based GRBL compatible cross-platform G-Code sender
Upstream URL: https://github.com/winder/Universal-G-Code-Sender
Keywords: NC UGS
Licenses: GPL3
Conflicts: universal-gcode-sender
Submitter: jstamant
Maintainer: greyltc
Last Packager: greyltc
Votes: 3
Popularity: 0.000000
First Submitted: 2015-08-12 11:59 (UTC)
Last Updated: 2017-08-17 15:26 (UTC)

Dependencies (3)

Required by (0)

Sources (2)

Latest Comments

mike2208 commented on 2020-12-29 14:41 (UTC)

Build succeeds, but package creation fails with message:

==> Starting package()...
install: cannot stat 'ugs-core/target/UniversalGcodeSender.jar': No such file or directory

I fixed the issue by replacing

install -Dm 644 ugs-core/target/UniversalGcodeSender.jar \

with

install -Dm 644 ugs-classic/target/UniversalGcodeSender.jar \

in the PKGBUILD

Yinameah commented on 2020-05-19 10:54 (UTC) (edited on 2020-05-19 10:55 (UTC) by Yinameah)

Package fail for me.

==> Lancement de package()…

install: impossible d'évaluer 'ugs-core/target/UniversalGcodeSender.jar': Aucun fichier ou dossier de ce type

==> ERREUR : Une erreur s’est produite dans package(). Abandon…

Seems like the "opposite" problem of this one : greyltc a commenté le 2016-11-01 10:19

Looks like your line in package():

install -Dm 644 target/UniversalGcodeSender.jar \

needs to become:

install -Dm 644 ugs-core/target/UniversalGcodeSender.jar \

Weird. Somebody understand ?

throbscottle commented on 2019-05-03 19:05 (UTC)

Build failed. See below:

FATAL ERROR in native method: processing of -javaagent failed

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary for ugs-parent 2.0-SNAPSHOT: [INFO] [INFO] ugs-parent ......................................... SUCCESS [ 0.634 s] [INFO] ugs-core ........................................... FAILURE [ 7.763 s] [INFO] ugs-pendant ........................................ SKIPPED [INFO] ugs-cli ............................................ SKIPPED [INFO] ugs-classic ........................................ SKIPPED [INFO] ugs-platform-parent ................................ SKIPPED [INFO] ugs-platform-branding .............................. SKIPPED [INFO] ugs-platform-ugslib ................................ SKIPPED [INFO] ugs-platform-ugscore ............................... SKIPPED [INFO] ugs-platform-visualizer ............................ SKIPPED [INFO] ugs-platform-plugin-workflow ....................... SKIPPED [INFO] ugs-platform-gcode-editor .......................... SKIPPED [INFO] ugs-platform-surfacescanner ........................ SKIPPED [INFO] ProbeModule ........................................ SKIPPED [INFO] DowelModule ........................................ SKIPPED [INFO] GcodeTools ......................................... SKIPPED [INFO] ugs-platform-plugin-jog ............................ SKIPPED [INFO] ugs-platform-plugin-setup-wizard ................... SKIPPED [INFO] ugs-platform-welcome-page .......................... SKIPPED [INFO] ugs-platform-app ................................... SKIPPED [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 11.178 s [INFO] Finished at: 2019-05-03T19:59:50+01:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project ugs-core: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test failed: The forked VM terminated without properly saying goodbye. VM crash or System.exit called? [ERROR] Command was /bin/sh -c cd /home/alexis/Packages/universal-gcode-sender-git/src/universal-gcode-sender-git/ugs-core && /usr/lib/jvm/java-10-openjdk/bin/java -javaagent:/home/alexis/.m2/repository/org/jacoco/org.jacoco.agent/0.7.5.201505241946/org.jacoco.agent-0.7.5.201505241946-runtime.jar=destfile=/home/alexis/Packages/universal-gcode-sender-git/src/universal-gcode-sender-git/ugs-core/target/jacoco.exec -jar /home/alexis/Packages/universal-gcode-sender-git/src/universal-gcode-sender-git/ugs-core/target/surefire/surefirebooter12888053125441566466.jar /home/alexis/Packages/universal-gcode-sender-git/src/universal-gcode-sender-git/ugs-core/target/surefire/surefire10889091693623436998tmp /home/alexis/Packages/universal-gcode-sender-git/src/universal-gcode-sender-git/ugs-core/target/surefire/surefire_013946261707308589811tmp [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException [ERROR] [ERROR] After correcting the problems, you can resume the build with the command [ERROR] mvn <goals> -rf :ugs-core ==> ERROR: A failure occurred in check(). Aborting...

kfish610 commented on 2017-12-05 16:25 (UTC)

On build I get an error. [ERROR] COMPILATION ERROR : [INFO] ------------------------------------------------------------- [ERROR] /home/kfish/.cache/pacaur/universal-gcode-sender-git/src/universal-gcode-sender-git/ugs-core/src/com/willwinder/universalgcodesender/uielements/components/StepSizeSpinnerModel.java:[93,72] incompatible types: java.lang.Double cannot be converted to capture#1 of ? [ERROR] /home/kfish/.cache/pacaur/universal-gcode-sender-git/src/universal-gcode-sender-git/ugs-core/src/com/willwinder/universalgcodesender/uielements/components/StepSizeSpinnerModel.java:[118,72] incompatible types: java.lang.Double cannot be converted to capture#2 of ? [INFO] 2 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary: [INFO] [INFO] ugs-parent ......................................... SUCCESS [ 0.750 s] [INFO] ugs-core ........................................... FAILURE [ 8.552 s]

Running Antergos on 4.14.3-1-ARCH Kernel

jstamant commented on 2016-11-14 01:47 (UTC)

Updated package() function and dependencies. Thank you greyltc for providing the required change: your feedback was complete, concise, and helpful!

greyltc commented on 2016-11-01 10:19 (UTC)

Looks like your line in package(): install -Dm 644 target/UniversalGcodeSender.jar \ needs to become: install -Dm 644 ugs-core/target/UniversalGcodeSender.jar \

greyltc commented on 2016-11-01 10:15 (UTC)

This isn't building for me. Looks like build() is going fine but package() is crapping out: [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 19.420 s [INFO] Finished at: 2016-11-01T10:09:52+00:00 [INFO] Final Memory: 25M/246M [INFO] ------------------------------------------------------------------------ ==> Entering fakeroot environment... ==> Starting package()... install: cannot stat 'target/UniversalGcodeSender.jar': No such file or directory ==> ERROR: A failure occurred in package(). Aborting... :: maven is a new orphan package :: failed to build universal-gcode-sender-git package(s)