From patchwork Tue Feb 7 13:01:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 6494 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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4PB3DD5xgpz3ws7 for ; Tue, 7 Feb 2023 13:01:32 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4PB3D93LL2ztZ; Tue, 7 Feb 2023 13:01:29 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4PB3D901Dfz30GS; Tue, 7 Feb 2023 13:01:29 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4PB3D719Vmz2xLF for ; Tue, 7 Feb 2023 13:01:27 +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 4PB3D46WpFzH7; Tue, 7 Feb 2023 13:01:24 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1675774885; 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=P27ApcSaD3INOKmaE7K+QSAhwlYKgC+C22ssIFinuh8=; b=58dPTtLDNGsyspVvUJxPNQCNmKfITo+fhXbYvx9Av+jCRdTNZ+oNs2pWgNnQYgNlNu3ZaY rVbe8/UPF0HV/8Bg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1675774885; 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=P27ApcSaD3INOKmaE7K+QSAhwlYKgC+C22ssIFinuh8=; b=gm+tZ1Bdvpwbh/jDhlQHbX1Pcr9BHYwV94eWG0f6X08QQn9d/k8Z9gd9ZkSpCCHKp14Cyd M81AiVzt7QcMbhjV46TWp/XUsHcRxIZpyF7bB9jbVmg4ORfX2Ct+tmFb2gAPPeAyd6iThX yz7aD7tw6lJCF1hGmk30k5WJcCvJogeYu8NXiz/cI5Dppw7b5c1ZzF1qmS9rBUrwZsgPki sTiop5XbWmbAuhZCRtz8P1kGMQg/uEdTjlcmKyjzlJa7fLA7XCqNC/kUrrKAuaDMAN4t0U vM/okTpR/nSmirsw7O3ZHMad1gUnSeojT5xUGYqGfECx4Jlnxx30IdXGzhuw2A== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 1/5] libvirt: libtirpc removed from dependencies as now core package Date: Tue, 7 Feb 2023 14:01:16 +0100 Message-Id: <20230207130120.1311417-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" Signed-off-by: Adolf Belka --- lfs/libvirt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/libvirt b/lfs/libvirt index 6058355ca..ebe777bc2 100644 --- a/lfs/libvirt +++ b/lfs/libvirt @@ -35,9 +35,9 @@ DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) SUP_ARCH = x86_64 aarch64 PROG = libvirt -PAK_VER = 32 +PAK_VER = 33 -DEPS = ebtables libpciaccess libtirpc libyajl ncat qemu +DEPS = ebtables libpciaccess libyajl ncat qemu SERVICES = libvirtd virtlogd From patchwork Tue Feb 7 13:01:17 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 6495 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 4PB3DF3prNz3ww4 for ; Tue, 7 Feb 2023 13:01:33 +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 4PB3DB0822z2dJ; Tue, 7 Feb 2023 13:01:30 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4PB3D92mlLz309b; Tue, 7 Feb 2023 13:01:29 +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 4PB3D71lg7z2yLN for ; Tue, 7 Feb 2023 13:01:27 +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 4PB3D66S37zwd; Tue, 7 Feb 2023 13:01:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1675774886; 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=D3yeTxi1/GRg3kFF/hb3eot3vYfq8X5dvB4k+OTsOgg=; b=ShYAHqGb95WBdf8rQqDhM8990tnAulKo1havDq7B9hm3+7OJxw1Y5Nzizl8huC9E21JLcL VyOeGqvsuXX0nzY6w/FFdq4hrGjSvA+CKzP7vdBmJGUvD80pl4bbk5AYFzXrvWPZJ6MN5B Qhsjc8n85Jif6PSPy8NXiXkP07h1dsmc20dwiriVhb5PED0qHdcnoNHIGIHClqscinX1Bj bIb0xhg4XhUYBEYaMnax7x2/CH+/TPeBH8NGao1brFbogOXDln3umTT4CADdy79bIG1160 eZbi9lYYbjEB3b7dKDctTnIE6zYSS9qIy6qdRb75ciA33wjUW027ahRnVIUXOw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1675774886; 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=D3yeTxi1/GRg3kFF/hb3eot3vYfq8X5dvB4k+OTsOgg=; b=755UDtXM+YSjf7EajJBnj+Qqfb90DoTpsIcvbHhAF6tFdv5TAPBsXrJx82D87SeuCWxqCJ kNxt+u8yxSNQ+aBg== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 2/5] openvmtools: libtirpc removed from dependencies as now core package Date: Tue, 7 Feb 2023 14:01:17 +0100 Message-Id: <20230207130120.1311417-2-adolf.belka@ipfire.org> In-Reply-To: <20230207130120.1311417-1-adolf.belka@ipfire.org> References: <20230207130120.1311417-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" Signed-off-by: Adolf Belka --- lfs/openvmtools | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/openvmtools b/lfs/openvmtools index 65d5104f9..b91c89d26 100644 --- a/lfs/openvmtools +++ b/lfs/openvmtools @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team # +# Copyright (C) 2007-2023 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 # @@ -35,9 +35,9 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)/open-vm-tools TARGET = $(DIR_INFO)/$(THISAPP) SUP_ARCH = x86_64 PROG = openvmtools -PAK_VER = 11 +PAK_VER = 12 -DEPS = libtirpc +DEPS = SERVICES = openvmtools From patchwork Tue Feb 7 13:01:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 6496 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 4PB3DG3YdCz3ws7 for ; Tue, 7 Feb 2023 13:01:34 +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 4PB3DB0cfmz3BW; Tue, 7 Feb 2023 13:01:30 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4PB3D93fZ4z2xxL; Tue, 7 Feb 2023 13:01:29 +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 4PB3D72z30z2xLF for ; Tue, 7 Feb 2023 13:01:27 +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 4PB3D71cJtzH7; Tue, 7 Feb 2023 13:01:27 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1675774887; 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=ODvf2y0tCVe3Xn9QC3/rC+Z6kOHJDRlMgQtr0QbOSuc=; b=v0fF4xuIQjjHzZzfIZUP6xw9bqqQqF+wmtVMxnoQLM3AmlCovgb+eytHRxhi7FNV9YauBg K6sHJupkanMgXABQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1675774887; 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=ODvf2y0tCVe3Xn9QC3/rC+Z6kOHJDRlMgQtr0QbOSuc=; b=tmrRl443t128HkRnN1lgYjpKG4U5LJz9OF7zAL2gPfDxb7qIsR8AHje8G7FNjSV6Ke+CZv tPxiDeT1w0MmjJjRsOlGy5HD0aX2elcjiSsSfdMmyV1xTQW9qPiQFTOmh4whocTzc1Cg5O zEXxDTjkFaLPgBKTnBenSS22PoeMY+JbEfWv/AkmxhZZ+s9YZQUkN3n+e7HjiVjORd6vfV vt6VP+wSdyx62Gl3LCZEBLpEr6EOivsMuMGUgRdCDY4wr6WQdb0mclf8bmbTCuqc7RT4VV TmAhfZHhVUoXJo4mNsJsTv8sUrGJXkBELD7sbCLFHANd/2YywSrAwtfD7Hj1xw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 3/5] rpcbind: libtirpc removed from dependencies as now core package Date: Tue, 7 Feb 2023 14:01:18 +0100 Message-Id: <20230207130120.1311417-3-adolf.belka@ipfire.org> In-Reply-To: <20230207130120.1311417-1-adolf.belka@ipfire.org> References: <20230207130120.1311417-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" Signed-off-by: Adolf Belka --- lfs/rpcbind | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/rpcbind b/lfs/rpcbind index 9ce77e15f..31708192c 100644 --- a/lfs/rpcbind +++ b/lfs/rpcbind @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2023 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 # @@ -34,9 +34,9 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = rpcbind -PAK_VER = 6 +PAK_VER = 7 -DEPS = libtirpc +DEPS = SERVICES = rpcbind From patchwork Tue Feb 7 13:01:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 6497 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 4PB3DH2bMtz3xDP for ; Tue, 7 Feb 2023 13:01:35 +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 4PB3DB399fz11l; Tue, 7 Feb 2023 13:01:30 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4PB3D94bt1z30HK; Tue, 7 Feb 2023 13:01:29 +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 4PB3D74S7Sz2xLF for ; Tue, 7 Feb 2023 13:01:27 +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 4PB3D72qDZzv5; Tue, 7 Feb 2023 13:01:27 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1675774887; 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=UBqU4lTx358s5NQJ6GPVs8VWw9BJolgxmOMajY0NkKU=; b=ceCz/umrMlZdUatZgk7r5hR3JKy/YMFJE8B75um9d471njpLTORVTWB8BaVhmwy91CdHIc f1GmoUURX7LAsTAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1675774887; 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=UBqU4lTx358s5NQJ6GPVs8VWw9BJolgxmOMajY0NkKU=; b=FdrWFVLKb7bao2MJZ61gXMJh6YI2JILVJhQDxDQxftdxrCZi2P6MIXn8jLkllNUTM4A84s YmXD6oNSifSM8OIY+Ns1PD0HTDuSRue8s1MSM5SQuXti8/u+XpKc21VC4g+Nzgf0DGy46o 055AiU5K4Gkdj8pekIMCl3H9prExgDF5sRpou5pZc/q00+c86YDCuEyuaKw2Tx4bR3t5qv kpvTefjNSWZiS1xB4mic8QZHhDDfJkVzcmnFohT+nQQOL0vBhMx1WhHQsjpAyCXJ/zoYAp n2X+oGPpU8udRuJuot2StYq5SNboNnzLYkaAmo97V9TlfZpX7muzj/nY39r+SQ== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 4/5] samba: libtirpc removed from dependencies as now core package Date: Tue, 7 Feb 2023 14:01:19 +0100 Message-Id: <20230207130120.1311417-4-adolf.belka@ipfire.org> In-Reply-To: <20230207130120.1311417-1-adolf.belka@ipfire.org> References: <20230207130120.1311417-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" Signed-off-by: Adolf Belka --- lfs/samba | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/samba b/lfs/samba index 12ffccfa7..e7b31c900 100644 --- a/lfs/samba +++ b/lfs/samba @@ -33,9 +33,9 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = samba -PAK_VER = 90 +PAK_VER = 91 -DEPS = avahi cups libtirpc perl-Parse-Yapp perl-JSON +DEPS = avahi cups perl-Parse-Yapp perl-JSON SERVICES = samba From patchwork Tue Feb 7 13:01:20 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 6498 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 4PB3DL0fF3z3ws7 for ; Tue, 7 Feb 2023 13:01:38 +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 4PB3DB5dnzz9N8; Tue, 7 Feb 2023 13:01:30 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4PB3D95twmz30HD; Tue, 7 Feb 2023 13:01:29 +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 4PB3D75bFgz2yf4 for ; Tue, 7 Feb 2023 13:01:27 +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 4PB3D74JDLzH7; Tue, 7 Feb 2023 13:01:27 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1675774887; 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=f8IGcUfTWnmYCax2gKF9PPbmvRlkjvM0iBPnLPBwqiE=; b=TD440JmTd41qcX+sBpGMFdBDEuLisKUKZfB/XNoMPrVYc9hYRXeLbv83WXy/msPubFjvGK RJ1XJqYbiK6yZEDg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1675774887; 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=f8IGcUfTWnmYCax2gKF9PPbmvRlkjvM0iBPnLPBwqiE=; b=aYz8uv6jcHjO9RMk0PbXQi6JrFcSmQ6qt7p75yTaHmcUkvxJnH/e5gDtBwSP3s4rL36ikN I1k4AUPKMjq+67cquqG3ZK3bokl8bx6Rdnluh4uvl1Q+D4pZJfUpyelh4ZwyijZbV4Dyqg dOAgb6wvlmq7/rDgmLsBunU/K0XXILXya3ISHwCYNlh/2IyNmDAcwY/3WPnZkVc902XS7L kBh8W2iUV/XfYlnuYmJzI7ooLFjXypazlVgehB+0UmHgPoKS+64sfdBCZgtaoW+v5ayFM4 ltimVyjAXyL+bndIIlZzW+6Uk+NWF8jsO/tVAd31uIk6GCym/TBbF915YZjrvQ== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 5/5] xinetd: libtirpc removed from dependencies as now core package Date: Tue, 7 Feb 2023 14:01:20 +0100 Message-Id: <20230207130120.1311417-5-adolf.belka@ipfire.org> In-Reply-To: <20230207130120.1311417-1-adolf.belka@ipfire.org> References: <20230207130120.1311417-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" Signed-off-by: Adolf Belka --- lfs/xinetd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/xinetd b/lfs/xinetd index c5a714140..6c1cbecfc 100644 --- a/lfs/xinetd +++ b/lfs/xinetd @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2023 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 # @@ -34,9 +34,9 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = xinetd -PAK_VER = 3 +PAK_VER = 4 -DEPS = libtirpc +DEPS = SERVICES = xinetd