From owner-svn-ports-all@freebsd.org Tue Feb 11 08:36:23 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BF6A522C1DC; Tue, 11 Feb 2020 08:36:23 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Gx2H4lwLz3D1h; Tue, 11 Feb 2020 08:36:23 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E89E5568; Tue, 11 Feb 2020 08:36:23 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01B8aNfn016739; Tue, 11 Feb 2020 08:36:23 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01B8aNLQ016736; Tue, 11 Feb 2020 08:36:23 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <202002110836.01B8aNLQ016736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 11 Feb 2020 08:36:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525794 - in head/ports-mgmt/pkg: . files X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: in head/ports-mgmt/pkg: . files X-SVN-Commit-Revision: 525794 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Feb 2020 08:36:23 -0000 Author: bapt Date: Tue Feb 11 08:36:22 2020 New Revision: 525794 URL: https://svnweb.freebsd.org/changeset/ports/525794 Log: Release pkg 1.13 - when installing over a non tracked file (not owned by any package) pkg now saves a copy of that file as .pkgsave - Fix a chicken/egg problem with the meta being compressed and defining the compression format. Now pkg repo will create a meta.conf file uncompressed (it is small enough) and fallback on the old meta.txz. Note that meta.txz is still created for backward compatibility. - pkg repo now creates meta files in version 2 by default meaning the digests.txz (this was only used with pkg up to 1.2). Anyone using that version and willing to upgrade can do it via: pkg bootstrap -f - suppress version checking when -j is specified - Alphabetically sort packages printed in the output of pkg commands to ease readability - pkg lock/unlock now allows multiple packages in arguments - shell script can now print messages along with pkg-messages by writing to ${PKG_MSGFD} file descriptor - improve error reporting when parsing vuxml files - lua script are now ready for prime time: - sanboxed with capsicum on plateforms that support it - rootdir native - documented - Fix pkg backup - pkg now gives a hint about running pkg update -f in case of "size mismatch" - scripts (lua and shell) can now determine if they are in the process of an upgrade or an installation via a variable - shell scripts are now fully documented - keyword files are now documented PR: 243564 exp-run by: antoine Deleted: head/ports-mgmt/pkg/files/patch-libfetch Modified: head/ports-mgmt/pkg/Makefile head/ports-mgmt/pkg/distinfo head/ports-mgmt/pkg/pkg-plist Modified: head/ports-mgmt/pkg/Makefile ============================================================================== --- head/ports-mgmt/pkg/Makefile Tue Feb 11 08:31:42 2020 (r525793) +++ head/ports-mgmt/pkg/Makefile Tue Feb 11 08:36:22 2020 (r525794) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.12.0 +DISTVERSION= 1.13.0 _PKG_VERSION= ${DISTVERSION} -PORTREVISION= 1 CATEGORIES= ports-mgmt #MASTER_SITES= \ # http://files.etoilebsd.net/${PORTNAME}/ \ Modified: head/ports-mgmt/pkg/distinfo ============================================================================== --- head/ports-mgmt/pkg/distinfo Tue Feb 11 08:31:42 2020 (r525793) +++ head/ports-mgmt/pkg/distinfo Tue Feb 11 08:36:22 2020 (r525794) @@ -1,3 +1,3 @@ -TIMESTAMP = 1568790737 -SHA256 (freebsd-pkg-1.12.0_GH0.tar.gz) = 53141c4833a9776d916fb31eff346b8877e687d54edaec59b8472b71f62ec165 -SIZE (freebsd-pkg-1.12.0_GH0.tar.gz) = 3867210 +TIMESTAMP = 1581409421 +SHA256 (freebsd-pkg-1.13.0_GH0.tar.gz) = 9c4a8be80d16562d7acfb95906ab8a8f31620f4d03fa0e8e78fce5e5076bef1f +SIZE (freebsd-pkg-1.13.0_GH0.tar.gz) = 3386839 Modified: head/ports-mgmt/pkg/pkg-plist ============================================================================== --- head/ports-mgmt/pkg/pkg-plist Tue Feb 11 08:31:42 2020 (r525793) +++ head/ports-mgmt/pkg/pkg-plist Tue Feb 11 08:36:22 2020 (r525794) @@ -12,7 +12,10 @@ lib/libpkg.so.4 libdata/pkgconfig/pkg.pc man/man3/pkg_printf.3.gz man/man3/pkg_repos.3.gz +man/man5/pkg-keywords.5.gz +man/man5/pkg-lua-script.5.gz man/man5/pkg-repository.5.gz +man/man5/pkg-script.5.gz man/man5/pkg.conf.5.gz man/man8/pkg-add.8.gz man/man8/pkg-alias.8.gz