@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?
Search Criteria
Package Details: netatalk 4.0.5-1
Package Actions
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)
- acl (acl-gitAUR)
- bash (bash-devel-static-gitAUR, bash-devel-gitAUR, busybox-coreutilsAUR, bash-gitAUR)
- db5.3
- glib2 (glib2-gitAUR, glib2-selinuxAUR, glib2-patched-thumbnailerAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR, glibc-eac-rocoAUR)
- libevent (libevent-gitAUR)
- libgcrypt
- libldap
- libxcrypt (libxcrypt-gitAUR)
- pam (pam-selinuxAUR)
- perl (perl-gitAUR)
- perl-net-dbus (perl-net-dbus-gitAUR)
- docbook-xsl (make)
- meson (meson-gitAUR) (make)
- unicode-character-database (make)
- avahi (optional) – Automatic service discovery support
- cracklib (optional) – Weak password detection
- krb5 (krb5-gitAUR) (optional) – Kerberos user authentication support
- libcups (libcups-gitAUR, cups-gitAUR, libcups-gssapiAUR) (optional) – Network printer queues support
- libtirpc (optional) – Quota support
- libwrapAUR (optional) – TCP wrappers support
- localsearch (optional) – AFP Spotlight support
- mariadb-libs (mariadb-libs-gitAUR, libmysqlclient81AUR, libmysqlclient80AUR, libmysqlclientAUR, mariadb-lts-libs) (optional) – MySQL CNID backend support
- rpcsvc-proto (optional) – Quota support
- talloc (optional) – AFP Spotlight support
- tinysparql (optional) – AFP Spotlight support
Required by (0)
Sources (1)
denn commented on 2024-10-21 20:25 (UTC) (edited on 2024-10-21 20:26 (UTC) by denn)
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.
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 makecnid_bdb
to re-create all db files after upgrade.