From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4byWBT15ZZz346b for ; Thu, 7 Aug 2025 15:22: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 (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4byWBP4Kk5z2xQT for ; Thu, 7 Aug 2025 15:22:53 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4byWBP1RJkz2jk; Thu, 7 Aug 2025 15:22:53 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1754580173; 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: in-reply-to:in-reply-to:references:references; bh=m3xZp1cqmtwQG+mcYTXi/gChvGjUR+ExFXlPwwQ5H60=; b=Pyeji33JmNfkQYLEfs9Qoy9R7DxeNTcN/8dIPw/XxmbQn2ZP8KwSjWCSsJvFYBrsZmYvC9 8R7ij1jVKBftzYAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1754580173; 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: in-reply-to:in-reply-to:references:references; bh=m3xZp1cqmtwQG+mcYTXi/gChvGjUR+ExFXlPwwQ5H60=; b=sARnEHc3yo/VeAS5CJDzoiLbL4ysyJprUC54jOfNMvhOgZ4TAJ6TmWBLK4lSuENdLsZfPC FlsSJBnIFiteUaD7yXmTbX8P8XOa3f1INgf66dZeqv/tIdEScakBLyPQPLuE/1W2tr+0Kg il9bPr6g/zOgEO7wlhql5muTu+KMRk+7DmLLaqoGv1KudqL1o8DkT2eMt6HghjIMWdKbXH 5UMvbOZJKPAT+oB9GB5ByCIm8d+oEYFczzJpiNKqHYNUnmlYNhMQkNSbqcLlIgOBCKQxcS H8prL/LIXzkrPvY6Gbo90BjDRYBtZ1UgyyAcwDmiHdXJY4rgQds8KXbwtmDedQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] borgbackup: Fix bug13868 - add libxxhash to dependencies - forgotten in CU189 Date: Thu, 7 Aug 2025 17:22:46 +0200 Message-ID: <20250807152247.1954170-2-adolf.belka@ipfire.org> In-Reply-To: <20250807152247.1954170-1-adolf.belka@ipfire.org> References: <20250807152247.1954170-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Add libxxhash to dependenc list and increment PAK_VER. - Update of rootfile not required Fixes: bug13868 Signed-off-by: Adolf Belka --- lfs/borgbackup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/borgbackup b/lfs/borgbackup index 107e852a6..189526073 100644 --- a/lfs/borgbackup +++ b/lfs/borgbackup @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2025 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -33,9 +33,9 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = borgbackup -PAK_VER = 17 +PAK_VER = 18 -DEPS = python3-msgpack python3-packaging python3-pyfuse3 +DEPS = python3-msgpack python3-packaging python3-pyfuse3 libxxhash # borgbackup only works with specific versions of python3-msgpack SERVICES = -- 2.50.1