From patchwork Sat Apr 24 11:23:24 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4212 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 4FS8134fLgz44Qk for ; Sat, 24 Apr 2021 11:23: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) 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 4FS812148vzct; Sat, 24 Apr 2021 11:23:34 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4FS81159ZPz2xbr; Sat, 24 Apr 2021 11:23:33 +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 4FS8102ZK9z2xX3 for ; Sat, 24 Apr 2021 11:23:32 +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 4FS80z06Rbzct; Sat, 24 Apr 2021 11:23:30 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1619263411; 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=q36HduJIQ/07a8MOAIQs4HOlwiAaTAmJJ5PJ51cgB6k=; b=a7Syp3B0y7BHKl83hMws5pkqTwSSfirqmg/3OYy2312tFqFnRSUIcyoD3dsZDJ8Ju3hf6G u6wkKgmCnmyl4FAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1619263411; 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=q36HduJIQ/07a8MOAIQs4HOlwiAaTAmJJ5PJ51cgB6k=; b=i/wxqcUEq0LyryUsiLX4O0QKcjEhSQBecWwpILi5i8q9m0avmzKeMfk2NhKBOsEIhV6LE0 +SCnosdk2PBEgjWwsCuLarQ5Wy/9GPKUuMza2TjmQh/3BaMwXQQRBUcu0EWXQYmPntLCu9 kFgDRwUu9zsQ/Yp3G1DGF8Ad7sJArcXY4jvl4EHLEHSgwA0TLMsEfkkkxwfFsRgIXJ1n57 VXKhUXqCoxINo6ZOv8b6NIomd2USqVc1rp+aw14VpBpWKg/Jku1fAIyU4B3ooDTwwN6vNz RuhDNSXysU12VIf1CFpk3mGVU0lL/do1D2uAbynKCaAeojXAIIZ+6VYkgH0L3g== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] libid3tag: Correction - comment out libid3tag.pc file in rootfile Date: Sat, 24 Apr 2021 13:23:24 +0200 Message-Id: <20210424112324.2638-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" - In previous patch libid3tag.pc file was left uncommented in the rootfile The pkg-config files are only required during the build or for development not for the normal operation of IPFire Signed-off-by: Adolf Belka --- config/rootfiles/packages/libid3tag | 2 +- lfs/libid3tag | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/rootfiles/packages/libid3tag b/config/rootfiles/packages/libid3tag index 0899f8702..575804c01 100644 --- a/config/rootfiles/packages/libid3tag +++ b/config/rootfiles/packages/libid3tag @@ -4,4 +4,4 @@ #usr/lib/libid3tag.so usr/lib/libid3tag.so.0 usr/lib/libid3tag.so.0.3.0 -usr/lib/pkgconfig/id3tag.pc +#usr/lib/pkgconfig/id3tag.pc diff --git a/lfs/libid3tag b/lfs/libid3tag index 9005ca94c..b0263f267 100644 --- a/lfs/libid3tag +++ b/lfs/libid3tag @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = libid3tag -PAK_VER = 2 +PAK_VER = 3 DEPS =