Package Details: runelite 1:2.7.1-1

Git Clone URL: https://aur.archlinux.org/runelite.git (read-only, click to copy)
Package Base: runelite
Description: Open source Old School RuneScape client.
Upstream URL: https://runelite.net/
Licenses: BSD
Submitter: jcstryker
Maintainer: abex
Last Packager: abex
Votes: 35
Popularity: 0.005404
First Submitted: 2018-02-20 13:00 (UTC)
Last Updated: 2024-03-17 22:14 (UTC)

Dependencies (4)

Required by (0)

Sources (4)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 Next › Last »

soalokin commented on 2019-02-28 01:44 (UTC)

@jeffhoe try switching java environment to latest. That did it from me, I was using java-8-openjdk and build failed. But after switching to java-10-openjdk it was a success.

jeffhoe commented on 2019-02-25 18:24 (UTC) (edited on 2019-02-25 18:25 (UTC) by jeffhoe)

Keep getting a build error. This has occurred the past 2 version so I've been using the runelite-launcher. Error list is much longer. Seems to be a directory error or something. Goes through all the files in runelite/src saying files not found... they're definitely there (ConfigManager for example).

[ERROR] /home/j-o/Documents/AURs/runelite/1:1.5.13-1/runelite/src/runelite-runelite-parent-1.5.13/runelite-client/src/main/java/net/runelite/client/config/ConfigManager.java:[66,36] package net.runelite.http.api.config does not exist [ERROR] /home/j-o/Documents/AURs/runelite/1:1.5.13-1/runelite/src/runelite-runelite-parent-1.5.13/runelite-client/src/main/java/net/runelite/client/config/ConfigManager.java:[68,2] cannot find symbol [ERROR] symbol: class Singleton [ERROR] /home/j-o/Documents/AURs/runelite/1:1.5.13-1/runelite/src/runelite-runelite-parent-1.5.13/runelite-client/src/main/java/net/runelite/client/config/ConfigManager.java:[69,2] cannot find symbol [ERROR] symbol: class Slf4j [ERROR] /home/j-o/Documents/AURs/runelite/1:1.5.13-1/runelite/src/runelite-runelite-parent-1.5.13/runelite-client/src/main/java/net/runelite/client/plugins/herbiboars/HerbiboarPlugin.java:[216,40] cannot find symbol [ERROR] symbol: class GameStateChanged [ERROR] location: class net.runelite.client.plugins.herbiboars.HerbiboarPlugin [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/MojoFailureException> ==> ERROR: A failure occurred in build(). Aborting...

deathbeam commented on 2019-02-25 16:03 (UTC)

Hello, RuneLite admin here.

As improvement, you should remove bash dependency (as it is really not needed, you can just use /bin/sh, everything you do in runelite-launcher is POSIX compatible), e.g:

#!/bin/sh

exec java -Dhttps.protocols=TLSv1.2 -jar /usr/share/runelite-launcher/Launcher.jar "$@"

(you should also wrap $@ in quotes like I did there).

And this should probably be updated also for runelite and runelite-git.

Shichimenchou commented on 2019-02-24 21:18 (UTC)

@jcstryker

That worked perfectly, thank you! I knew I must have been missing something big

jcstryker commented on 2019-02-24 00:00 (UTC) (edited on 2019-02-24 00:09 (UTC) by jcstryker)

@Shichimenchou

try adding:

-Dsun.java2d.noddraw=true -Dsun.java2d.opengl=false

to the /usr/bin/runelite script so it looks like this:

exec java -Dhttps.protocols=TLSv1.2 -Dsun.java2d.noddraw=true -Dsun.java2d.opengl=false -jar /usr/share/runelite/RuneLite.jar $@

The --mode=OFF is a launcher parameter. This package now builds the client from source without the launcher. Those two java parameters are what the launcher passes to the client when you pass --mode=off

https://github.com/runelite/launcher/blob/master/src/main/java/net/runelite/launcher/HardwareAccelerationMode.java#L57

Shichimenchou commented on 2019-02-23 23:28 (UTC) (edited on 2019-02-23 23:28 (UTC) by Shichimenchou)

I've notice the --mode=OFF option no longer works. Is there a new method to disable hardware acceleration?

When I try to use that option I get this error

Exception in thread "main" joptsimple.UnrecognizedOptionException: Mode is not a recognized option

at joptsimple.OptionException.unrecognizedOption(OptionException.java:108)

at joptsimple.OptionParser.handleLongOptionToken(OptionParser.java:510)

at joptsimple.OptionParserState$2.handleArgument(OptionParserState.java:56)

at joptsimple.OptionParser.parse(OptionParser.java:396)

at net.runelite.client.RuneLite.main(RuneLite.java:178

jcstryker commented on 2019-02-07 23:44 (UTC)

@kubetz my mistake, forgot to update the sha512

kubetz commented on 2019-02-07 23:39 (UTC) (edited on 2019-02-07 23:40 (UTC) by kubetz)

Build is failing for me on the verification of the runelite-parent-1.5.11.tar.gz which seems to have sha512sum 'fdf098392eaf9b17325f986e82d7b886c810cbfe9771e630667118c335711b23019741feda86964361bd838eb3c7648d763cd99846ca766aa9460f47b70e62bd' instead of the one defined in the PKGBUILD file.

jcstryker commented on 2019-02-06 04:12 (UTC) (edited on 2019-02-07 02:11 (UTC) by jcstryker)

Hi everyone I have pushed some big changes to this package. Now this PKGBUILD will build the runelite client from source. This jar does not autoupdate and this package will need to be updated with the weekly client updates.

There is also now a git version of this package, which will track the master branch of runelite.

https://aur.archlinux.org/packages/runelite-git/

If you prefer to have a launcher that auto updates, the previous PKGBUILD has been renamed to runelite-launcher, which preserves the old behavior. Both packages can be installed simultaneously.

https://aur.archlinux.org/packages/runelite-launcher/

Please report any bugs or issues you come across.

igemnace commented on 2018-12-12 16:13 (UTC)

Re: comment in PKGBUILD, LICENSE can be downloaded as a separate source from the release tree on Github:

https://raw.githubusercontent.com/runelite/runelite/runelite-parent-${pkgver}/LICENSE