From nobody Wed Dec 6 13:38:50 2023 X-Original-To: dev-commits-src-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Sldlx2MTJz53SbS; Wed, 6 Dec 2023 13:38:53 +0000 (UTC) (envelope-from SRS0=udCQ=HR=klop.ws=ronald-lists@realworks.nl) Received: from smtp-relay-int.realworks.nl (smtp-relay-int.realworks.nl [194.109.157.24]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Sldlw1PxQz3gk5; Wed, 6 Dec 2023 13:38:52 +0000 (UTC) (envelope-from SRS0=udCQ=HR=klop.ws=ronald-lists@realworks.nl) Authentication-Results: mx1.freebsd.org; none Date: Wed, 6 Dec 2023 14:38:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=klop.ws; s=rw2; t=1701869930; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=1UMd9PfTVgRBpy/vBRiDKPZaH5gM4Z4p7p8Y49bt4pQ=; b=UmL0U/GM+DgkYa9EFikBg0vChNaL+rENj6dH351twXIPj9buslTTUeG3//xHBJdj4MAlCz Ps1ajgXHftsn9nfUrAwda59k1vIucmDuCMhcoYOWBuuxScWQEugYxljjd7NIdeKF5DviQL it2l2ecSDLW3ShHAZubpUfB8cugSWrABE32rybnar3lYiuliBUK4fi2M4wopLTIoGqfnp2 VHlIZr6sWxCc4dDE4Dp7lZaUppFFrPNYwfa4MA88+x/HOOdkEmwok/MrdKm2bsX8sczxY1 qJN9P0MzxNCH4wKebInsLTuRmKOrJHNT8YvtA3eg2RBFfJcDRj3pOlrxDcwtZw== From: Ronald Klop To: Brooks Davis Cc: dev-commits-src-all@FreeBSD.org, src-committers@FreeBSD.org, dev-commits-src-main@FreeBSD.org Message-ID: <1420873807.1802.1701869930070@localhost> In-Reply-To: <202312051904.3B5J4lNg077287@gitrepo.freebsd.org> References: <202312051904.3B5J4lNg077287@gitrepo.freebsd.org> Subject: Re: git: 3c097b06a717 - main - Cirrus-CI: forcably upgrade pkg to latest List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-src-all@freebsd.org X-BeenThere: dev-commits-src-all@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1801_2140617763.1701869930064" X-Mailer: Realworks (682.17) Importance: Normal X-Priority: 3 (Normal) X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:3265, ipnet:194.109.0.0/16, country:NL] X-Spamd-Bar: ---- X-Rspamd-Queue-Id: 4Sldlw1PxQz3gk5 ------=_Part_1801_2140617763.1701869930064 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Wouldn't "pkg bootstrap -f" do what you want without hardcoding versions? Regards, Ronald. Van: Brooks Davis Datum: dinsdag, 5 december 2023 20:04 Aan: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Onderwerp: git: 3c097b06a717 - main - Cirrus-CI: forcably upgrade pkg to latest > > The branch main has been updated by brooks: > > URL: https://cgit.FreeBSD.org/src/commit/?id=3c097b06a71715ec9ae86430ee94e25e954a1e36 > > commit 3c097b06a71715ec9ae86430ee94e25e954a1e36 > Author: Jose Luis Duran > AuthorDate: 2023-12-05 19:04:04 +0000 > Commit: Brooks Davis > CommitDate: 2023-12-05 19:04:04 +0000 > > Cirrus-CI: forcably upgrade pkg to latest > > make packages requires the latest pkg for now so force that. > > Differential Revision: https://reviews.freebsd.org/D42908 > --- > .cirrus.yml | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/.cirrus.yml b/.cirrus.yml > index 8e14dc9c0305..3abf6898a66d 100644 > --- a/.cirrus.yml > +++ b/.cirrus.yml > @@ -75,6 +75,11 @@ task: > install_script: > - sh .cirrus-ci/pkg-install.sh ${TOOLCHAIN_PKG} git-lite > > + xxx_upgrade_pkg_script: > + - fetch http://pkg.freebsd.org/FreeBSD:13:amd64/latest/All/pkg-1.20.9.pkg > + - pkg install -y ./pkg-1.20.9.pkg > + - rm -f pkg-1.20.9.pkg > + > setup_script: > - uname -a > - gpart show > > > > ------=_Part_1801_2140617763.1701869930064 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Wouldn't "pkg bootstrap -f" do what you want without hardcoding versions?

Regards,
Ronald.

 

Van: Brooks Davis <brooks@FreeBSD.org>
Datum: dinsdag, 5 december 2023 20:04
Aan: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Onderwerp: git: 3c097b06a717 - main - Cirrus-CI: forcably upgrade pkg to latest

The branch main has been updated by brooks:

URL: https://cgit.FreeBSD.org/src/commit/?id=3c097b06a71715ec9ae86430ee94e25e954a1e36

commit 3c097b06a71715ec9ae86430ee94e25e954a1e36
Author:     Jose Luis Duran <jlduran@gmail.com>
AuthorDate: 2023-12-05 19:04:04 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2023-12-05 19:04:04 +0000

    Cirrus-CI: forcably upgrade pkg to latest
    
    make packages requires the latest pkg for now so force that.
    
    Differential Revision:  https://reviews.freebsd.org/D42908
---
 .cirrus.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.cirrus.yml b/.cirrus.yml
index 8e14dc9c0305..3abf6898a66d 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -75,6 +75,11 @@ task:
   install_script:
   - sh .cirrus-ci/pkg-install.sh ${TOOLCHAIN_PKG} git-lite
 
+  xxx_upgrade_pkg_script:
+  - fetch http://pkg.freebsd.org/FreeBSD:13:amd64/latest/All/pkg-1.20.9.pkg
+  - pkg install -y ./pkg-1.20.9.pkg
+  - rm -f pkg-1.20.9.pkg
+
   setup_script:
   - uname -a
   - gpart show
 


  ------=_Part_1801_2140617763.1701869930064--