From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 032671382C5 for ; Fri, 15 Jan 2021 10:40:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D429E085E; Fri, 15 Jan 2021 10:40:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 236DDE085E for ; Fri, 15 Jan 2021 10:40:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C955433C6B6 for ; Fri, 15 Jan 2021 10:40:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 300E3476 for ; Fri, 15 Jan 2021 10:40:21 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1610707204.a7339d55d73b04514b8405e60d124ae3f3e3b739.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sysklogd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/sysklogd/sysklogd-2.1.2.ebuild app-admin/sysklogd/sysklogd-2.2.0.ebuild app-admin/sysklogd/sysklogd-9999.ebuild X-VCS-Directories: app-admin/sysklogd/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: a7339d55d73b04514b8405e60d124ae3f3e3b739 X-VCS-Branch: master Date: Fri, 15 Jan 2021 10:40:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8195f333-92fc-4b90-a4b4-4dad2c96ef87 X-Archives-Hash: 4bf25dc8810ec82cf9f42e5a4d30ddfc commit: a7339d55d73b04514b8405e60d124ae3f3e3b739 Author: Lars Wendler gentoo org> AuthorDate: Fri Jan 15 10:40:04 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Jan 15 10:40:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7339d55 app-admin/sysklogd: Don't build static libs Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> app-admin/sysklogd/sysklogd-2.1.2.ebuild | 5 +++-- app-admin/sysklogd/sysklogd-2.2.0.ebuild | 3 ++- app-admin/sysklogd/sysklogd-9999.ebuild | 5 +++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/app-admin/sysklogd/sysklogd-2.1.2.ebuild b/app-admin/sysklogd/sysklogd-2.1.2.ebuild index e3018251aba..849a0fc7d68 100644 --- a/app-admin/sysklogd/sysklogd-2.1.2.ebuild +++ b/app-admin/sysklogd/sysklogd-2.1.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -43,6 +43,7 @@ src_prepare() { src_configure() { local myeconfargs=( + --disable-static --runstatedir="${EPREFIX}"/run $(use_with logger) $(use_with systemd systemd $(systemd_get_systemunitdir)) @@ -66,7 +67,7 @@ src_install() { sed 's@ -r 10M:10@@' -i "${ED}"/etc/conf.d/sysklogd || die fi - find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die + find "${ED}" -type f -name "*.la" -delete || die } pkg_postinst() { diff --git a/app-admin/sysklogd/sysklogd-2.2.0.ebuild b/app-admin/sysklogd/sysklogd-2.2.0.ebuild index bcbda07ce22..ff5b1d0d7b5 100644 --- a/app-admin/sysklogd/sysklogd-2.2.0.ebuild +++ b/app-admin/sysklogd/sysklogd-2.2.0.ebuild @@ -43,6 +43,7 @@ src_prepare() { src_configure() { local myeconfargs=( + --disable-static --runstatedir="${EPREFIX}"/run $(use_with logger) $(use_with systemd systemd $(systemd_get_systemunitdir)) @@ -66,7 +67,7 @@ src_install() { sed 's@ -r 10M:10@@' -i "${ED}"/etc/conf.d/sysklogd || die fi - find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die + find "${ED}" -type f -name "*.la" -delete || die } pkg_postinst() { diff --git a/app-admin/sysklogd/sysklogd-9999.ebuild b/app-admin/sysklogd/sysklogd-9999.ebuild index ad19247bad9..ff5b1d0d7b5 100644 --- a/app-admin/sysklogd/sysklogd-9999.ebuild +++ b/app-admin/sysklogd/sysklogd-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -43,6 +43,7 @@ src_prepare() { src_configure() { local myeconfargs=( + --disable-static --runstatedir="${EPREFIX}"/run $(use_with logger) $(use_with systemd systemd $(systemd_get_systemunitdir)) @@ -66,7 +67,7 @@ src_install() { sed 's@ -r 10M:10@@' -i "${ED}"/etc/conf.d/sysklogd || die fi - find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die + find "${ED}" -type f -name "*.la" -delete || die } pkg_postinst() {