Package Details: cgoban3 3.5.144-3

Git Clone URL: https://aur.archlinux.org/cgoban3.git (read-only, click to copy)
Package Base: cgoban3
Description: A KGS client and SGF editor
Upstream URL: https://www.gokgs.com/
Licenses: Freeware
Submitter: SkizoRutabaga
Maintainer: dysphoria
Last Packager: dysphoria
Votes: 56
Popularity: 0.000089
First Submitted: 2007-06-12 12:37 (UTC)
Last Updated: 2024-06-22 15:25 (UTC)

Dependencies (3)

Required by (0)

Sources (4)

Latest Comments

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

SkizoRutabaga commented on 2014-05-07 19:22 (UTC)

Thanks for all the comments and help to maintain this package.

SkizoRutabaga commented on 2014-03-30 14:35 (UTC)

Hi, thank you for this contribution. I'm away from my computer for a while. I will add your modification as soon as possible.

garyvdm commented on 2014-03-28 08:14 (UTC)

Whenever I upgrade, I get a md5sums valadation error. This is becaues the source jar file allways has the same name for different versions. Then if you have a old version in your source cache, makepkg does not download the new version. I then have to manaully rm the old version from the source cache. This can easily be fixed by specifing the name of the source file when downloaded, like this: source=(cgoban-$pkgver.jar::http://files.gokgs.com/javaBin/cgoban.jar " Here is a complete PKGBUILD that fixes this issue: http://fpaste.org/89443/. Please will you consider using this.

hickop commented on 2014-02-17 16:10 (UTC)

You need to remove /pkg in install lines.

SkizoRutabaga commented on 2014-02-05 11:54 (UTC)

Sorry for the low reactivity on this maintainance. I integrated Schmeidenbacher's patch. Thanks for the contribution.

Kolibry commented on 2014-02-05 11:46 (UTC)

Then installation went right, but there was no cgoban package for me after. Schmeidenbacher's patch solved the issue. Thanks.

MoonSwan commented on 2014-02-05 01:24 (UTC)

Many thanks to SkizoRutabaga for maintaining this package. Many thanks as well to Schmeidenbacher whose efforts allowed me to compile cgoban properly. I was getting an error that the JAR file wasn't passing an error check.

Schmeidenbacher commented on 2014-02-01 19:10 (UTC)

You should just run namcap against the PKGBUILD as it will tell you about any formal error in it. I had to add the following patch to the PKGBUILD since it was complaining during the build that it couldn't stat src/cgoban.jar. It also changes the build function to the package function to get rid of the "WARNING: Using a PKGBUILD without a package() function is deprecated." Same goes for $startdir/pkg, that is also deprecated and should be $pkgdir, as namcap would also inform you off. Seems like you reintroduced an earlier version of your PKGBUILD, since your comments state that you changed some of it a while ago. --- /dev/fd/63 2014-02-01 19:47:17.566769437 +0100 +++ PKGBUILD 2014-02-01 19:45:35.211210771 +0100 @@ -18,11 +18,11 @@ '05251c9ce7d768f74a96f3a616213af2' '86d0258f323c6312d57dd41af87f3529') -build() { - cd $startdir - install -D -m644 src/cgoban.jar $startdir/pkg/usr/share/java/cgoban3/cgoban.jar - install -D -m644 src/cgoban3.desktop $startdir/pkg/usr/share/applications/cgoban3.desktop - install -D -m644 src/cgoban3-edit.desktop $startdir/pkg/usr/share/applications/cgoban3-edit.desktop - install -D -m644 src/cgoban3.png $startdir/pkg/usr/share/pixmaps/cgoban3.png - install -D -m755 src/cgoban3 $startdir/pkg/usr/bin/cgoban3 +package() { + cd $srcdir + install -D -m644 cgoban.jar $pkgdir/usr/share/java/cgoban3/cgoban.jar + install -D -m644 cgoban3.desktop $pkgdir/usr/share/applications/cgoban3.desktop + install -D -m644 cgoban3-edit.desktop $pkgdir/usr/share/applications/cgoban3-edit.desktop + install -D -m644 cgoban3.png $pkgdir/usr/share/pixmaps/cgoban3.png + install -D -m755 cgoban3 $pkgdir/usr/bin/cgoban3 }