From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Reconsider defaults for use-package-vc-prefer-newest Date: Fri, 20 Sep 2024 18:45:32 +0300 Message-ID: <86zfo25nxf.fsf@gnu.org> References: <87wmj7dftf.fsf@posteo.net> <87setvxyt6.fsf@gmail.com> <87jzf7o13b.fsf@posteo.net> <87frpvo06a.fsf@posteo.net> <86y13m7swd.fsf@gnu.org> <87bk0inyr1.fsf@posteo.net> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="38890"; mail-complaints-to="usenet@ciao.gmane.io" Cc: suhailsingh247@gmail.com, meedstrom@runbox.eu, emacs-devel@gnu.org, tonyzorman@mailbox.org To: Philip Kaludercic Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Sep 20 17:46:22 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1srfpu-0009xE-3f for ged-emacs-devel@m.gmane-mx.org; Fri, 20 Sep 2024 17:46:22 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1srfpJ-000482-Vo; Fri, 20 Sep 2024 11:45:47 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1srfpC-00047O-Ju for emacs-devel@gnu.org; Fri, 20 Sep 2024 11:45:39 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1srfp9-0008T1-3m; Fri, 20 Sep 2024 11:45:35 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=uofJj797IMkqT7fEN9rcOpOADnxQ2jsHnH0e5OUD9zQ=; b=auC9+P0FCwc6 KYo6Ll0QpiHoDHaRIwyi+Ur//aZmcVo67309jGkn3hSYwO0K5f2XMmHAB5+qyS2ONKHG225tKtZHj LgUxyEuq+CW681qwmQE7BxvFwQgvKzsN/GMzAY0B9FstvI/rUiYmVMAKJGnxXjIGCYCW0Y6GQbZGA UIAW/xMzBf3z1YRQHjoMuosTn4GgkeKz7lUFWC8uquz9GUG4kFMHu7ZI36OrYFC+Dc4kJBKHdI5WD +pZPTXcKUnz7k4YDkJ2rqkhtQbi/99JNtCSq69n6TpzFNqEj39UCJAbPvRoKrL5Gb2Jed0tDVNuac t/s9zqKleEQOL2eBVY4+dw==; In-Reply-To: <87bk0inyr1.fsf@posteo.net> (message from Philip Kaludercic on Fri, 20 Sep 2024 15:14:26 +0000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:323849 Archived-At: > From: Philip Kaludercic > Cc: suhailsingh247@gmail.com, meedstrom@runbox.eu, emacs-devel@gnu.org, > tonyzorman@mailbox.org > Date: Fri, 20 Sep 2024 15:14:26 +0000 > > Eli Zaretskii writes: > > >> This is the fix: > > > > Can you explain in plain English what this does? > > Sure, each package has a description object (search for "(cl-defstruct > (package-desc" in package.el), with some fixed attributes like name, > version, dependencies and others that are stored in an alist. The > commit used to create a package is one such attribute stored in the > "extras" slot of a package-desc. My chance modifies the package > description given by the ELPA server and updates the :commit field to > store the commit that was checked out when the package was built > locally. I hope that is clear enough? Yes, thanks. What was the :commit field storing before the change?