Package Details: freenet 0.7.5.1497-1

Git Clone URL: https://aur.archlinux.org/freenet.git (read-only, click to copy)
Package Base: freenet
Description: A peer-to-peer platform for censorship-resistant communication and publishing
Upstream URL: https://freenetproject.org
Keywords: anonymous censorship encrypted freenet network
Licenses: GPL2
Submitter: Xemertix
Maintainer: Thynix
Last Packager: skydrome
Votes: 183
Popularity: 0.25
First Submitted: 2009-04-17 16:46 (UTC)
Last Updated: 2023-03-05 00:21 (UTC)

Dependencies (7)

Required by (0)

Sources (8)

Pinned Comments

amanvg commented on 2020-10-13 08:32 (UTC)

if you are having issues with the key, run this command:

curl -sS https://freenetproject.org/assets/keyring.gpg | gpg --import -

Latest Comments

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

skydrome commented on 2018-07-27 20:45 (UTC)

nope cant hurt, in fact i had to do that for the i2p package also. If this happens with other java apps you are probably better off just setting this in your bashrc

alkis05 commented on 2018-07-27 17:51 (UTC) (edited on 2018-07-27 17:58 (UTC) by alkis05)

For those having the same problem as I did, here is a tip: If are having encoding errors while building WebOfTrust plugin like the one bellow

[javac] /tmp/yaourt-tmp-alkis/aur-freenet/src/plugin-WebOfTrust/test/plugins/WebOfTrust/WoTTest.java:1177: error: unmappable character (0xB2) for encoding US-ASCII [javac] final int trustCount = (identityCount*identityCount) / 5; // A complete graph would be identityCount?? trust values. [javac] ^ [javac] 10 errors [javac] 1 warning BUILD FAILED /tmp/yaourt-tmp-alkis/aur-freenet/src/plugin-WebOfTrust/build.xml:225: Compile failed; see the compiler error output for details.

The encoding of your java might be different from the file (as you can see, mine was US-ASCII instead of UTF8) So if you are having this problem, add the following line in the PKGBUILD in the prepare() function: export JAVA_TOOLS_OPTIONS=-Dfile.encoding=UTF8

Now it compiled without errors. Perhaps it is worth looking into adding it to the package, skydrome. I guess it can't hurt anyway.

skydrome commented on 2018-07-21 04:38 (UTC)

thanks for notifying me, fixed

buck-ross commented on 2018-07-21 02:07 (UTC) (edited on 2018-07-21 02:12 (UTC) by buck-ross)

Hi! Please add "p7zip" as a build dependency. It provides the "7z" command, which is needed to run the PKGBUILD.

skydrome commented on 2018-07-10 19:20 (UTC)

Updated to version 1481 which now uses the gradle buildsystem and simplifies the pkgbuild

KitamuraRin commented on 2018-06-09 02:37 (UTC)

https://github.com/skydrome/db4o-7.4-java/raw/master/db4o-7.4-java.zip https://github.com/skydrome/db4o-7.4-java/raw/master/seednodes.fref These two links are broken, at least from my home connection. Is there any other ways to get these two files?

phaseburn commented on 2018-04-23 00:43 (UTC)

@sipaktli - I had the same error, and switching to openjdk8 via "sudo archlinux-java set java-8-openjdk" worked for me to build the package (make sure that openjdk8 packages are installed, first).

<deleted-account> commented on 2018-04-21 05:35 (UTC)

==> Building Contrib Modules... Buildfile: /tmp/makepkg/freenet/src/contrib/freenet-ext/build.xml

init:

build: [copy] Copying 1 file to /tmp/makepkg/freenet/src/contrib/freenet-ext/build/freenet/node [echo] Updated build version to v50 in build/freenet/node/ExtVersion.java [javac] /tmp/makepkg/freenet/src/contrib/freenet-ext/build.xml:77: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 1 source file to /tmp/makepkg/freenet/src/contrib/freenet-ext/build [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.5 [javac] error: Source option 1.5 is no longer supported. Use 1.6 or later. [javac] error: Target option 1.5 is no longer supported. Use 1.6 or later.

BUILD FAILED /tmp/makepkg/freenet/src/contrib/freenet-ext/build.xml:77: Compile failed; see the compiler error output for details.

Total time: 0 seconds ==> ERROR: A failure occurred in build(). Aborting... ==> ERROR: Makepkg was unable to build freenet.

tydynrain commented on 2018-03-02 02:48 (UTC) (edited on 2018-03-02 02:50 (UTC) by tydynrain)

If I enable the systemd service, freenet is very rarely running once my computer is fully booted, though it starts and runs fine if I manually start it. If I add Requires=network-online.target, After=network-online.target, and Restart=on-failure, then it starts successfully at boot, and is still running once my computer is up and running.

This is what I have in my freenet.service file:

[Unit]

Description=An encrypted network without censorship and monitoring.

Requires=network-online.target

After=network-online.target

[Service]

Type=forking

User=freenet

ExecStart=/opt/freenet/run.sh start --quiet

ExecStop=/opt/freenet/run.sh stop --quiet

Restart=on-failure

WorkingDirectory=/opt/freenet

[Install]

WantedBy=multi-user.target

I hope this helps anyone who might be having the same issue.