From patchwork Fri Mar 17 17:32:40 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 6704 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 4PdWRx4lQpz3wkG for ; Fri, 17 Mar 2023 17:33:01 +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 4PdWRw1Ph9zwd; Fri, 17 Mar 2023 17:33:00 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4PdWRv6p2gz30B1; Fri, 17 Mar 2023 17:32:59 +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 4PdWRt4DHXz2xLC for ; Fri, 17 Mar 2023 17:32:58 +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 4PdWRs5yqczJg; Fri, 17 Mar 2023 17:32:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1679074378; 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=xnGFqvHERn9QqcEbfBltLuphrgolpGFrbM17gkIf+WQ=; b=4paqJObrOE7bmDao8d7hDDoNUJlvUa1fa255ayJ6uevP2NhhUNzzOMjondCjuI46UOpWUR uACaO+8O5fb/FtCA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1679074378; 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=xnGFqvHERn9QqcEbfBltLuphrgolpGFrbM17gkIf+WQ=; b=qJZVFr58Rf3K/6iOI4xQtNVACZ1s3TgEDMfGK8OUUeOmhGM5ueniqdIUiEHcm/SEuJ9Do7 hBHwVy9xFADzpdQKVpiaS2OV7zcpBFPUlhoa5PZcMn3DmZmGraxUtHuf7wpFVTVgIRUDHf 0ogM5cov01PTF9kAEIIJwv8DaLyiV5bcE4D9hOijXXpzeKoRLdjTef3vABuhYVDF+HEzlT p/r8DjwMQ+4ty8Ytg1ayVGhMMamRdeRUNz0c7rn4vN1df5lirYQ9DQaAa9jymdtM/+i+Al x9EgbzB/LopsmTfEI5AI6rlDzgo6QTDBN7ZEUhxThNHK2szXDvsdZ9Nll71dnw== From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] perl: Fix library permissions Date: Fri, 17 Mar 2023 18:32:40 +0100 Message-Id: <20230317173240.495741-1-stefan.schantl@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" They did not fit the FSH and our own specs. Signed-off-by: Stefan Schantl --- perl/perl.nm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl/perl.nm b/perl/perl.nm index 3a7bad525..a19be3dcc 100644 --- a/perl/perl.nm +++ b/perl/perl.nm @@ -10,7 +10,7 @@ ver_plevel = 0 version = %{ver_major}.%{ver_minor}.%{ver_plevel} # Never reset release in this package, just increase. -release = 3 +release = 4 thisver = %{version}-%{_release} @@ -143,6 +143,9 @@ build install_cmds # Remove precreated directories rm -rfv %{BUILDROOT}/usr/local + + # Fix filer permissions of the so files. + find %{BUILDROOT}%{libdir} -type f -iname "*.so" -exec chmod 755 {} \; end end