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 5BDD91382C5 for ; Mon, 19 Apr 2021 19:15:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80022E0855; Mon, 19 Apr 2021 19:15:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 43911E0855 for ; Mon, 19 Apr 2021 19:15:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 5FBAA340E3B for ; Mon, 19 Apr 2021 19:15:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F311F6BD for ; Mon, 19 Apr 2021 19:15:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618859702.e7e82dc95df1dc5d46a3bf4cc53c5585a001774e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libaal/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libaal/libaal-1.0.7-r1.ebuild X-VCS-Directories: sys-libs/libaal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e7e82dc95df1dc5d46a3bf4cc53c5585a001774e X-VCS-Branch: master Date: Mon, 19 Apr 2021 19:15:15 +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: eca5e9c8-3cc6-47fa-91d9-1e06fb1f42db X-Archives-Hash: 9ba2892f19b2bec97d6f6a04baa8e86d commit: e7e82dc95df1dc5d46a3bf4cc53c5585a001774e Author: Sam James gentoo org> AuthorDate: Mon Apr 19 19:14:15 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 19 19:15:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e82dc9 sys-libs/libaal: drop 1.0.7-r1 Closes: https://bugs.gentoo.org/783849 Signed-off-by: Sam James gentoo.org> sys-libs/libaal/libaal-1.0.7-r1.ebuild | 42 ---------------------------------- 1 file changed, 42 deletions(-) diff --git a/sys-libs/libaal/libaal-1.0.7-r1.ebuild b/sys-libs/libaal/libaal-1.0.7-r1.ebuild deleted file mode 100644 index b6244f38ea5..00000000000 --- a/sys-libs/libaal/libaal-1.0.7-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit usr-ldscript - -DESCRIPTION="library required by reiser4progs" -HOMEPAGE="https://sourceforge.net/projects/reiser4/" -SRC_URI="mirror://sourceforge/reiser4/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/7" -KEYWORDS="amd64 arm ppc ppc64 -sparc x86" -IUSE="static-libs" - -DEPEND="virtual/os-headers" - -src_prepare() { - default - - # remove stupid CFLAG hardcodes - sed -i \ - -e "/GENERIC_CFLAGS/s@-O3@@" \ - -e "/^CFLAGS=/s@\"\"@\"${CFLAGS}\"@" \ - configure || die - printf '#!/bin/sh\n:\n' > run-ldconfig || die -} - -src_configure() { - local myeconfargs=( - --enable-libminimal - --enable-memory-manager - $(use_enable static-libs static) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - gen_usr_ldscript -a aal{,-minimal} -}