From patchwork Sat Jan 16 15:57:56 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 3807 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 RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4DJ2kz3fclz3wsQ for ; Sat, 16 Jan 2021 15:58:03 +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 "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4DJ2ky1nmSz5G3; Sat, 16 Jan 2021 15:58:02 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4DJ2ky0gsQz2xs0; Sat, 16 Jan 2021 15:58:02 +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 RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4DJ2kx0SS5z2xcL for ; Sat, 16 Jan 2021 15:58:01 +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 4DJ2kw2dfxz5G0 for ; Sat, 16 Jan 2021 15:58:00 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1610812680; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=xDJTg1IP1gLuBkIx7eIAPrLYAkBY+vUxHw07npjLIKw=; b=AwWDsWxUbxgZLNS3O7MRkQ4TDkQ8GyxjGnOAV0bxHe7TFFP2v5tGkZ8l4NxaQbEyy5KH6Z m5nO5sO7RIZ1vuAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1610812680; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=xDJTg1IP1gLuBkIx7eIAPrLYAkBY+vUxHw07npjLIKw=; b=UHRfmuOQPLcdPeDuHTy/iAd66xDrhAO/Pehqc6WD6reOSy4ZFz4SC++4CUGNmW85LGpcYY FPkUHisiog0T5Y31AlNK3gjXe4/tPEsZUapVIjJG8+wnZ6iWs9Qs/Aq5iRCCEOUK23O60W RrdUks6QwBtZ2nel8Wc1S1A/jPJdODKgZwEPUQY8GIHRzWzhaVHdAtkciaJetYMq95FpZ9 cqTN5yzgzE2UtRX8WFcaq/1oyNawtPhZgX+dSQ2t6FsQC31W8Bv4E4JDHAweiKvWbkEJD3 Pn/14kWCpD7+RrPE24JvqUOAWbUr1zAabH+uea1C3d0jF3WMEzmuo/K/M2I7NQ== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] logrotate: Update to 3.18.0 Date: Sat, 16 Jan 2021 16:57:56 +0100 Message-Id: <20210116155756.22821-1-matthias.fischer@ipfire.org> 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" Exerpt from 'ChangeLog.md': "## [3.18.0] - 2021-01-08 - allow UIDs and GIDs to be specified numerically (#217) - add support for Zstandard compressed files (#355) - make `delaycompress` not to fail with `rotate 0` (#341)" Signed-off-by: Matthias Fischer --- lfs/logrotate | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/logrotate b/lfs/logrotate index 45a0d47e2..cc6f07fa3 100644 --- a/lfs/logrotate +++ b/lfs/logrotate @@ -24,7 +24,7 @@ include Config -VER = 3.17.0 +VER = 3.18.0 THISAPP = logrotate-$(VER) DL_FILE = logrotate-$(VER).tar.gz @@ -42,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 6bd4d3102ae9c86d37e46ca93bcffa66 +$(DL_FILE)_MD5 = f8ad01f87865cd7b80136eccf16ba4a1 install : $(TARGET)