From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#27943: tar complains about too-long names (guix release) Date: Sat, 02 Dec 2017 10:57:19 +0100 Message-ID: <87lgil311c.fsf@gnu.org> References: <20170804092212.77f65fef@scratchpost.org> <87shcyzdhg.fsf@gnu.org> <20171130130510.GT991@macbook41> <877eu750rb.fsf@gnu.org> <20171130214901.GA19582@macbook41> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eL4Yf-0007KZ-T6 for bug-guix@gnu.org; Sat, 02 Dec 2017 04:58:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eL4Yc-0004gG-Qr for bug-guix@gnu.org; Sat, 02 Dec 2017 04:58:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:60542) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eL4Yc-0004gA-N5 for bug-guix@gnu.org; Sat, 02 Dec 2017 04:58:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eL4Yc-0000ww-FY for bug-guix@gnu.org; Sat, 02 Dec 2017 04:58:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20171130214901.GA19582@macbook41> (Efraim Flashner's message of "Thu, 30 Nov 2017 23:49:01 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Efraim Flashner Cc: 27943@debbugs.gnu.org Efraim Flashner skribis: > From 3ae1af75fe7304a05ca8ac0edd8582d581108d05 Mon Sep 17 00:00:00 2001 > From: Efraim Flashner > Date: Thu, 30 Nov 2017 23:46:55 +0200 > Subject: [PATCH 2/2] gnu: t1lib: Change how patched CVEs are listed. > > * gnu/packages/fontutils.scm (t1lib)[source]: Change patch name. > [properties]: New field, register patched CVEs. > * gnu/packages/patches/CVE-2011-1552+CVE-2011-1553+CVE-2011-1554.patch: > Rename to CVE-2011-1552+.patch. > * gnu/local.mk (dist_patch_DATA): Change patch name. [...] > (patches (search-patches > - "t1lib-CVE-2010-2642.patch" > + "t1lib-CVE-2010-2642.patch" ; 2011-0443, 2011-5244 > "t1lib-CVE-2011-0764.patch" > - "t1lib-CVE-2011-1552+CVE-2011-1553+CVE-2011-1554.= patch")))) > + "t1lib-CVE-2011-1552+.patch")))) ; 2011-1553, 201= 1-1554 > (build-system gnu-build-system) > (arguments > ;; Making the documentation requires latex, but t1lib is also an inp= ut > @@ -323,6 +323,10 @@ describe character bitmaps. It contains the bitmap = data as well as some > metric information. But t1lib is in itself entirely independent of the > X11-system or any other graphical user interface.") > (license license:gpl2) > + (properties `((fixed-vulnerabilities . ("CVE-2011-0433" > + "CVE-2011-1553" > + "CVE-2011-1554" > + "CVE-2011-5244")))) Perhaps move =E2=80=98properties=E2=80=99 right below =E2=80=98patches=E2= =80=99 for clarity. And s/fixed-vulnerabilities/lint-hidden-cve/. :-) OK with these changes, thank you! Ludo=E2=80=99.