Package Details: netatalk 4.0.5-1

Git Clone URL: https://aur.archlinux.org/netatalk.git (read-only, click to copy)
Package Base: netatalk
Description: Open-source implementation of the Apple Filing Protocol
Upstream URL: https://netatalk.io
Keywords: afp apple mac macos
Licenses: GPL-2.0-or-later
Conflicts: netatalk-ddp, netatalk2
Submitter: Snowman
Maintainer: denn
Last Packager: denn
Votes: 99
Popularity: 0.22
First Submitted: 2007-03-31 06:19 (UTC)
Last Updated: 2024-11-10 20:38 (UTC)

Dependencies (26)

Required by (0)

Sources (1)

Pinned Comments

denn commented on 2024-10-07 09:59 (UTC) (edited on 2024-10-20 12:31 (UTC) by denn)

As version 4.0.0-1 switched to db5.3 as suggested by product documentation. This will make cnid_bdb to re-create all db files after upgrade.

Latest Comments

1 2 3 4 5 6 .. 25 Next › Last »

denn commented on 2024-10-21 20:25 (UTC) (edited on 2024-10-21 20:26 (UTC) by denn)

@yulle If you have full failed build logs, it would be very helpful. Also did you have tinysparql or tracker3 package installed when build failed?

yulle commented on 2024-10-21 20:20 (UTC) (edited on 2024-10-21 20:21 (UTC) by yulle)

I was given the following error when trying to update to version 4.0.2-1:

fatal error: libtracker-miner/tracker-miner.h: No such file or directory

After manually install package "localsearch", I was able to update without errors.

denn commented on 2024-10-07 09:59 (UTC) (edited on 2024-10-20 12:31 (UTC) by denn)

As version 4.0.0-1 switched to db5.3 as suggested by product documentation. This will make cnid_bdb to re-create all db files after upgrade.

jihem commented on 2024-08-06 10:07 (UTC)

Hi, can you add the file /etc/pam.d/netatalk in the list of backup files? I need to modify it to use a different authentification method. Thanks.

fuhry commented on 2024-06-25 14:29 (UTC)

https://gist.github.com/fuhry/10d3a9d0cfed6d6463c5d6c10abaf1c0

Patch to build against libgcrypt 1.11, based on https://github.com/Netatalk/netatalk/pull/1132

rushvora commented on 2024-06-24 18:40 (UTC)

When I try to update this package, I get an error saying could not find all required packages: libgcrypt <1.11.

I also see the below message.

:: Searching AUR for updates...
 -> No AUR package found for libgcrypt<1.11

VorpalWay commented on 2023-08-22 07:11 (UTC)

Hi, I started creating a package for netatalk2 (as netatalk 3.x doesn't support older Macs). I noticed a very unfortunate line in this PKGBUILD however:

replaces=('netatalk-git' 'netatalk2')

That is going to be an issue. It would be better to change that to a conflicts

jac_cbi commented on 2022-05-31 15:25 (UTC)

I can confirm that the latest update to the AUR (3.1.13-3) does indeed work. This is the relevant fix:

@@ -1637,14 +1650,21 @@ void *ad_entry(const struct adouble *ad, int eid)
        size_t len = ad_getentrylen(ad, eid);
        bool valid;

+       if (bufsize == 0) {
+               bufsize = sizeof(ad->ad_data) - (off + len);
+       }
+
        valid = ad_entry_check_size(eid, bufsize, off, len);
        if (!valid) {

Which looks like it does fix the problem, but I'm really hoping upstream digs deeper and locates the initialization of ad where ad->valid_data_len is left at zero or the call site where it's changed to zero.