Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=CVnqXwFZ; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=1abBA4F/ Received: by mail.netbsd.org (Postfix, from userid 605) id 28A7484D3E; Tue, 12 Mar 2024 22:02:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710280935; bh=Wc3gFdv5Mc8cLIGdG6nAJWrSbRbe10IrLhOijPhF2fY=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=CVnqXwFZod8K6KGjjBzkgOWYSYLgOek6VlNL7z14XX3RwM6tr9uzrqYWUiExN0e6L rinszN2BAVy8MaIWQNRzDVtI78e4L2IwajiV5uzUC+SaU59uAAJGTVdII+9L/8TUfd hA1rrSJfSfusYdAJcUHi/2vzJVyWPAuBt7R8kem8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 193D584D22 for ; Tue, 12 Mar 2024 22:02:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id nluLAA5oTt37 for ; Tue, 12 Mar 2024 22:02:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 63A6484CD7 for ; Tue, 12 Mar 2024 22:02:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710280933; bh=Wc3gFdv5Mc8cLIGdG6nAJWrSbRbe10IrLhOijPhF2fY=; h=Date:From:Subject:To:Reply-To; b=1abBA4F/AmIFmFXkDi5wCBxbtx+JpZ9/0CrpQjFNtIwSeMtjO9Lt82zk+3fvQwc3D 7EQZ7BYsTF3xWBL+sv+/jV7+uJGgQrOg2hm+Chc9bZHhBcxdiOTIGCO7G3oGs93N6s NxnN6n+3Cn8V8kVlM2G0LqKtXJ4iqo7yUPGxxY/0= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5D278FA2C; Tue, 12 Mar 2024 22:02:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1710280933173440" MIME-Version: 1.0 Date: Tue, 12 Mar 2024 22:02:13 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/pkgtools/pkg_install To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20240312220213.5D278FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1710280933173440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Tue Mar 12 22:02:13 UTC 2024 Modified Files: pkgsrc/pkgtools/pkg_install: Makefile Log Message: Don't build bsdcat and bsdunzip, they are not used anyway. To generate a diff of this commit: cvs rdiff -u -r1.239 -r1.240 pkgsrc/pkgtools/pkg_install/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1710280933173440 Content-Disposition: inline Content-Length: 1296 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pkg_install/Makefile diff -u pkgsrc/pkgtools/pkg_install/Makefile:1.239 pkgsrc/pkgtools/pkg_install/Makefile:1.240 --- pkgsrc/pkgtools/pkg_install/Makefile:1.239 Fri Jan 26 12:40:04 2024 +++ pkgsrc/pkgtools/pkg_install/Makefile Tue Mar 12 22:02:13 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.239 2024/01/26 12:40:04 riastradh Exp $ +# $NetBSD: Makefile,v 1.240 2024/03/12 22:02:13 joerg Exp $ # Notes to package maintainers: # @@ -196,11 +196,11 @@ pre-configure: .if empty(USE_BUILTIN.libarchive:M[yY][eE][sS]) cd ${WRKDIR}/libarchive && ${SETENV} ${_CONFIGURE_SCRIPT_ENV} \ ${CONFIG_SHELL} ${CONFIG_SHELL_FLAGS} ./configure \ - --disable-bsdcpio --disable-bsdtar --disable-shared \ - --disable-dependency-tracking --without-expat \ - --disable-maintainer-mode \ - --without-iconv --without-lzo2 --without-nettle \ - --without-xml2 --without-lz4 --without-zstd \ + --disable-bsdcat --disable-bsdcpio --disable-bsdtar \ + --disable-bsdunzip --disable-shared \ + --disable-dependency-tracking --disable-maintainer-mode \ + --without-expat --without-xml2 --without-lz4\ --without-lzo2 \ + --without-iconv --without-nettle --without-zstd \ ${LIBARCHIVE_CONFIGURE_ARGS} cd ${WRKDIR}/libarchive && ${BUILD_MAKE_CMD} .endif --_----------=_1710280933173440--