From patchwork Wed Apr 14 11:55:53 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4157 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4FL1C24THDz44QV for ; Wed, 14 Apr 2021 11:55:58 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4FL1C209Jxz1Tm; Wed, 14 Apr 2021 11:55:58 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4FL1C16nndz2xS8; Wed, 14 Apr 2021 11:55:57 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4FL1C02vM5z2xRb for ; Wed, 14 Apr 2021 11:55:56 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4FL1Bz3tpHzZ9; Wed, 14 Apr 2021 11:55:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1618401355; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=GCjM7yodwSsNYEKyvt1NzHbtNTnG2OF/WMFHHUD49e4=; b=SFfflNKDHSmn1sVEvM5YGRbkJHnVO7mduH/7Qg/Mjq2RVjTNFWg7pYdiyNnw/jwbhEoOO0 bArbANiJg5u9kuDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1618401355; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=GCjM7yodwSsNYEKyvt1NzHbtNTnG2OF/WMFHHUD49e4=; b=ogFa6cLlMK+BrjrRUN8TLxdnYiOzKD7WavlcXwqzbIcSr32QXrGEL2H9WHB1tAjITT2Xdt H5C7IzCWlw+0cWLwBids0sv8sbgvTO71R2xsTwYt28q5NX6fWmm+j1Q5sB05tcbwhL9jR1 5aOVP26wrnWZHj3zEqSZX47L1XsKdWgjoy3ksUbhpzqu00zmzofRhgn9f9B2BTe8U6lTLn EkebfZ10QyInfCLWxDobGkbyU9grBVcYN+LG3YA0QzpJvrwW6jkWRlUJhkZZktN3Iw7NoF WQN3N94QNpulGFZ8ky8A3Vi61UbMKgzaRkd4qdLyj8bKBtPEcbZgnFrv/b8Q+A== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] file: Update to 5.40 Date: Wed, 14 Apr 2021 13:55:53 +0200 Message-Id: <20210414115553.3669257-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from 5.39 to 5.40 - Update of rootfile not needed - Changelog * release 5.40 * PR/234: Add limit to the number of bytes to scan for encoding * PR/230: Fix /T (trim flag) for regex * PR/77: Trim trailing separator. * PR/211: Convert system read errors from corrupt ELF files into human readable error messages * fix multithreaded decompression file descriptor issue by using close-on-exec (Denys Vlasenko) * Exclude surrogate pairs from utf-8 detection (Michael Liu) * Include # to the list of ignored format chars (Werner Fink) Signed-off-by: Adolf Belka --- lfs/file | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/file b/lfs/file index ac2db8ceb..4f166d560 100644 --- a/lfs/file +++ b/lfs/file @@ -24,7 +24,7 @@ include Config -VER = 5.39 +VER = 5.40 THISAPP = file-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 1c450306053622803a25647d88f80f25 +$(DL_FILE)_MD5 = 72540ea1cc8c6e1dee35d6100ec66589 install : $(TARGET)