Package Details: docfetcher 1.1.25-1

Git Clone URL: https://aur.archlinux.org/docfetcher.git (read-only, click to copy)
Package Base: docfetcher
Description: A java open source desktop search application
Upstream URL: http://docfetcher.sourceforge.net/
Keywords: desktop productivity search
Licenses: EPL
Submitter: thiagowfx
Maintainer: macxcool
Last Packager: macxcool
Votes: 18
Popularity: 0.000101
First Submitted: 2014-05-01 20:55 (UTC)
Last Updated: 2021-05-25 23:57 (UTC)

Dependencies (4)

Required by (0)

Sources (4)

Latest Comments

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

ilf0 commented on 2020-04-30 15:01 (UTC)

Upstream Java is now at 13.

Can we try docfetcher with Java 11, 12 and 13 and adjust the Java-dependency?

It's the only package why I still have Java 10 on my system, I'd like to get rid of it.

macxcool commented on 2018-08-15 19:36 (UTC)

I did a little testing with 1.1.22. It doesn't work with Java 7, but works with 8 and 10. I'll change the PKGBUILD accordingly.

davidmcinnis commented on 2018-05-20 08:26 (UTC) (edited on 2018-05-20 08:26 (UTC) by davidmcinnis)

Currently works with Java 8,

Does not work with Java 9 or Java 10.

https://sourceforge.net/p/docfetcher/bugs/1316/

-Dave

macxcool commented on 2017-11-02 11:44 (UTC)

@simplexe: Ah. Sorry about that. It's actually there already, but there isn't a 'newline' before it. I'll fix that.

simplexe commented on 2017-11-02 06:43 (UTC)

Add to docfetcher.desktop type app. Like as: Type=Application

macxcool commented on 2017-05-16 12:02 (UTC) (edited on 2017-05-16 12:03 (UTC) by macxcool)

@languitar: That makes more sense. So like this: if [ $_gtkver == 'gtk3' ]; then #ln -s "${prefix}/DocFetcher-GTK3.sh" "${prefix}/DocFetcher.sh" ln -s "/usr/share/${pkgname}/DocFetcher-GTK3.sh" "${prefix}/DocFetcher.sh" makepkg doesn't seem to complain about it.

languitar commented on 2017-05-16 11:39 (UTC)

No wait. The problem is that the symlink originates from <thebuilddir>/usr/share... Instead, it must be from /usr/share to $prefix/use/share..., while ignoring the warning that the source file doesn't exist (yet, before the package is installed).

macxcool commented on 2017-05-16 11:37 (UTC)

@languitar: do you mean replace all instances of ${prefix} in the package() section with ${pkgdir}/usr/share/${pkgname}? I can do that. Is it always bad to use a variable to simplify typing paths in package() then?

languitar commented on 2017-05-16 10:40 (UTC)

Seems to be caused by using prefix as a variable. It should probably be pkgdir instead.

languitar commented on 2017-05-16 10:38 (UTC)

I see the problem: languitar@jaco ~/sciebo/literature/Citavi/thesis/Citavi Attachments> pacaur -Ql docfetcher | grep \\.sh docfetcher /usr/share/docfetcher/DocFetcher-GTK2.sh docfetcher /usr/share/docfetcher/DocFetcher-GTK3.sh docfetcher /usr/share/docfetcher/DocFetcher.sh languitar@jaco ~/sciebo/literature/Citavi/thesis/Citavi Attachments> which docfetcher /usr/bin/docfetcher languitar@jaco ~/sciebo/literature/Citavi/thesis/Citavi Attachments> docfetcher /usr/bin/docfetcher: line 3: /usr/share/docfetcher/DocFetcher.sh: No such file or directory languitar@jaco ~/sciebo/literature/Citavi/thesis/Citavi Attachments [127]> cat /usr/share/docfetcher/DocFetcher.sh cat: /usr/share/docfetcher/DocFetcher.sh: No such file or directory languitar@jaco ~/sciebo/literature/Citavi/thesis/Citavi Attachments [1]> ll /usr/share/docfetcher/ total 76K drwxr-xr-x 2 root root 4.0K Jan 10 16:36 conf/ drwxr-xr-x 3 root root 4.0K Jan 10 16:36 DocFetcher.app/ -rw-r--r-- 1 root root 30K May 16 12:34 docfetcher-daemon-linux -rwxr-xr-x 1 root root 310 Jan 10 16:36 DocFetcher-GTK2.sh* -rwxr-xr-x 1 root root 291 Jan 10 16:36 DocFetcher-GTK3.sh* lrwxrwxrwx 1 root root 95 May 16 12:34 DocFetcher.sh -> /home/languitar/.cache/pacaur/docfetcher/pkg/docfetcher/usr/share/docfetcher/DocFetcher-GTK3.sh drwxr-xr-x 5 root root 4.0K Jan 10 16:36 help/ drwxr-xr-x 2 root root 4.0K Jan 10 16:36 img/ drwxr-xr-x 2 root root 4.0K Jan 10 16:36 indexes/ drwxr-xr-x 2 root root 4.0K Jan 10 16:36 lang/ drwxr-xr-x 3 root root 4.0K May 16 12:34 lib/ drwxr-xr-x 2 root root 4.0K May 16 12:34 misc/ It seems the symlink for DocFetcher.sh is corrupted and the build environment seems to leak into the creation of that link.