Received: by mail.netbsd.org (Postfix, from userid 605) id 35DB084ED2; Tue, 28 Feb 2023 15:34:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 66DA884D6F for ; Tue, 28 Feb 2023 15:34:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ya1AQW5XurmV for ; Tue, 28 Feb 2023 15:33:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9258B84CE3 for ; Tue, 28 Feb 2023 15:33:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8B9D2FA90; Tue, 28 Feb 2023 15:33:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16775984396910" MIME-Version: 1.0 Date: Tue, 28 Feb 2023 15:33:59 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/net/netatalk22 To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20230228153359.8B9D2FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16775984396910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Tue Feb 28 15:33:59 UTC 2023 Modified Files: pkgsrc/net/netatalk22: Makefile PLIST distinfo Removed Files: pkgsrc/net/netatalk22/patches: patch-etc_afpd_volume.c patch-etc_uams_uams__dhx__passwd.c Log Message: Update net/netatalk22 to v2.2.8. Changes in 2.2.8 ================ * NEW: asip-status.pl: IPv6 support; show GSS-UAM SPNEGO blob; improved layout of output. (3.1 backport) * NEW: apple_dump: support for EA meta data. (3.1 backport) * NEW: Import netatalk-doc into the main repo, and overhaul scripts, man pages and html manual sources. * UPD: Display the Netatalk Daemon icon with the '-icon' afpd.conf option for all platforms. GH #214 * UPD: Remove OpenSSL 1.0 backwards compatibility header. Please use OpenSSL 1.1 or later. * UPD: configure: Enable DDP, timelord, and a2boot by default. GH #215 * UPD: configure: Disable Quota by default. GH #198 * FIX: afpd: Create tmp files in /tmp rather than / and clean up after use. Regression in 2.2.7. GH #188 * FIX: Provide MNTTYPE_NFS for Solaris descendents to enable compiling with Quota. GH #117 * FIX: afpd: reading from file may fail. SF Bug #619 (3.1 backport) * FIX: timelord: Fall back to timezone when tm_gmtoff is unavailable. Makes it work on Solaris descendents. GH #194 * FIX: fix largefile-check macro for largefile with clang 16. * FIX: Typo fixes in user facing strings. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/net/netatalk22/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/netatalk22/PLIST cvs rdiff -u -r1.15 -r1.16 pkgsrc/net/netatalk22/distinfo cvs rdiff -u -r1.1 -r0 pkgsrc/net/netatalk22/patches/patch-etc_afpd_volume.c cvs rdiff -u -r1.3 -r0 \ pkgsrc/net/netatalk22/patches/patch-etc_uams_uams__dhx__passwd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16775984396910 Content-Disposition: inline Content-Length: 4452 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/netatalk22/Makefile diff -u pkgsrc/net/netatalk22/Makefile:1.51 pkgsrc/net/netatalk22/Makefile:1.52 --- pkgsrc/net/netatalk22/Makefile:1.51 Tue Feb 7 23:00:40 2023 +++ pkgsrc/net/netatalk22/Makefile Tue Feb 28 15:33:59 2023 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.51 2023/02/07 23:00:40 hauke Exp $ +# $NetBSD: Makefile,v 1.52 2023/02/28 15:33:59 hauke Exp $ -DISTNAME= netatalk-2.2.7 -PKGREVISION= 1 +DISTNAME= netatalk-2.2.8 PKGNAME= ${DISTNAME:C/-/22-/} CATEGORIES= net print -MASTER_SITES= ${MASTER_SITE_GITHUB:=Netatalk/}Netatalk/releases/download/netatalk-2-2-7/ +MASTER_SITES= ${MASTER_SITE_GITHUB:=Netatalk/}Netatalk/releases/download/${DISTNAME:C/\./-/g}/ #PATCHFILES= patch-adv1tov2.c PATCH_SITES= http://svn.macosforge.org/repository/macports/trunk/dports/net/netatalk/files/ \ http://mirror.lug.udel.edu/pub/macports/trunk/dports/net/netatalk/files/ @@ -50,6 +49,9 @@ CONFIGURE_ARGS+= --with-bdb=${BDBBASE} CONFIGURE_ARGS+= --with-ssl-dir=${BUILDLINK_PREFIX.openssl} CONFIGURE_ENV+= MACHINE_ARCH=${MACHINE_ARCH} +# See +#CFLAGS+= -DOPENSSL_API_COMPAT=0x10000000L + MAKE_DIRS+= ${PKG_SYSCONFDIR}/msg SUBST_CLASSES+= paths Index: pkgsrc/net/netatalk22/PLIST diff -u pkgsrc/net/netatalk22/PLIST:1.2 pkgsrc/net/netatalk22/PLIST:1.3 --- pkgsrc/net/netatalk22/PLIST:1.2 Wed Jul 12 13:56:00 2017 +++ pkgsrc/net/netatalk22/PLIST Tue Feb 28 15:33:59 2023 @@ -1,5 +1,5 @@ -@comment $NetBSD: PLIST,v 1.2 2017/07/12 13:56:00 hauke Exp $ -${PLIST.ea}bin/ad +@comment $NetBSD: PLIST,v 1.3 2023/02/28 15:33:59 hauke Exp $ +bin/ad bin/add_netatalk_printer bin/adv1tov2 bin/aecho @@ -72,6 +72,7 @@ include/netatalk/ddp_var.h include/netatalk/endian.h include/netatalk/phase2.h lib/libatalk.la +libexec/netatalk/a2boot libexec/netatalk/afpd libexec/netatalk/atalkd libexec/netatalk/cnid_dbd @@ -104,13 +105,12 @@ libexec/netatalk/timelord libexec/netatalk/uams/uams_clrtxt.so libexec/netatalk/uams/uams_dhx.so libexec/netatalk/uams/uams_dhx2.so -${PLIST.pam}libexec/netatalk/uams/uams_dhx2_pam.la +libexec/netatalk/uams/uams_dhx2_pam.la libexec/netatalk/uams/uams_dhx2_passwd.la -${PLIST.pam}libexec/netatalk/uams/uams_dhx_pam.la +libexec/netatalk/uams/uams_dhx_pam.la libexec/netatalk/uams/uams_dhx_passwd.la -${PLIST.gssapi}libexec/netatalk/uams/uams_gss.la libexec/netatalk/uams/uams_guest.la -${PLIST.pam}libexec/netatalk/uams/uams_pam.la +libexec/netatalk/uams/uams_pam.la libexec/netatalk/uams/uams_passwd.la libexec/netatalk/uams/uams_randnum.la man/man1/ad.1 @@ -162,11 +162,11 @@ man/man8/timelord.8 share/aclocal/netatalk.m4 share/examples/netatalk/AppleVolumes.default share/examples/netatalk/AppleVolumes.system -${PLIST.ldap}share/examples/netatalk/afp_ldap.conf +share/examples/netatalk/afp_ldap.conf share/examples/netatalk/afpd.conf share/examples/netatalk/atalkd.conf share/examples/netatalk/netatalk.conf -${PLIST.pam}share/examples/netatalk/netatalk.pam +share/examples/netatalk/netatalk.pam share/examples/netatalk/papd.conf share/netatalk/pagecount.ps @pkgdir libexec/psffilters Index: pkgsrc/net/netatalk22/distinfo diff -u pkgsrc/net/netatalk22/distinfo:1.15 pkgsrc/net/netatalk22/distinfo:1.16 --- pkgsrc/net/netatalk22/distinfo:1.15 Tue Feb 7 23:00:40 2023 +++ pkgsrc/net/netatalk22/distinfo Tue Feb 28 15:33:59 2023 @@ -1,9 +1,7 @@ -$NetBSD: distinfo,v 1.15 2023/02/07 23:00:40 hauke Exp $ +$NetBSD: distinfo,v 1.16 2023/02/28 15:33:59 hauke Exp $ -BLAKE2s (netatalk-2.2.7.tar.gz) = a828870c06fcec3aaf1ec4fd6c06411ecc0e687b73f4d29257743de0667798df -SHA512 (netatalk-2.2.7.tar.gz) = fb6664b2ea700f1a8307eaf452954e2f0c3bb7d082f2df211f17a79d1fc7f3ca4dff0b805beb7b8d10fb23d749fd1990a6b07c029d89d09299677a41b8161220 -Size (netatalk-2.2.7.tar.gz) = 1849800 bytes +BLAKE2s (netatalk-2.2.8.tar.gz) = d1639506069a81bcd1476818b16e5569a2e8eaf8c15a2620709bd198ecdb1367 +SHA512 (netatalk-2.2.8.tar.gz) = d39416f8559c445cd5920c628c1ee4292172ce0757137c1c05f26bd277e572a51430b2633da07ed7f08a151d0142968676976e86d06e8044310710d09217beae +Size (netatalk-2.2.8.tar.gz) = 1865660 bytes SHA1 (patch-config_Makefile.in) = 37ed88693c64b5e34396da26f9d7105102ed479b SHA1 (patch-configure) = 6b9d73ac0c8ba4913834402a587b734d342c3830 -SHA1 (patch-etc_afpd_volume.c) = f4aaa91daf26f16df48cb6f39340748e4b4b6ab5 -SHA1 (patch-etc_uams_uams__dhx__passwd.c) = a4eb368ae6f1698d906fe1ba2f1600b7a0b20539 --_----------=_16775984396910--