From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CA4EE1392EF for ; Thu, 13 Mar 2014 22:36:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 951A8E0AF6; Thu, 13 Mar 2014 22:36:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19EB3E0AF6 for ; Thu, 13 Mar 2014 22:36:45 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 17FAC33FABD for ; Thu, 13 Mar 2014 22:36:44 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 7E30A2004C; Thu, 13 Mar 2014 22:36:40 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libaal: libaal-1.0.5-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: libaal-1.0.5-r1.ebuild ChangeLog X-VCS-Directories: sys-libs/libaal X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140313223640.7E30A2004C@flycatcher.gentoo.org> Date: Thu, 13 Mar 2014 22:36:40 +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-Archives-Salt: 8d0aa327-7931-4d6d-b5db-758332a4bc26 X-Archives-Hash: 620a8c81868a740b4799160d44ec5d5f vapier 14/03/13 22:36:40 Modified: ChangeLog Added: libaal-1.0.5-r1.ebuild Log: Upgrade to EAPI=4 and rewrite the whole ebuild in the process. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision Changes Path 1.21 sys-libs/libaal/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libaal/ChangeLog?rev=1.21&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libaal/ChangeLog?rev=1.21&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libaal/ChangeLog?r1=1.20&r2=1.21 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-libs/libaal/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 31 May 2008 17:35:39 -0000 1.20 +++ ChangeLog 13 Mar 2014 22:36:40 -0000 1.21 @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libaal -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libaal/ChangeLog,v 1.20 2008/05/31 17:35:39 vapier Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libaal/ChangeLog,v 1.21 2014/03/13 22:36:40 vapier Exp $ + +*libaal-1.0.5-r1 (13 Mar 2014) + + 13 Mar 2014; Mike Frysinger +libaal-1.0.5-r1.ebuild: + Upgrade to EAPI=4 and rewrite the whole ebuild in the process. 31 May 2008; Mike Frysinger libaal-1.0.5.ebuild: Add arm love #203718 by Shvetsov Alexey. 1.1 sys-libs/libaal/libaal-1.0.5-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libaal/libaal-1.0.5-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libaal/libaal-1.0.5-r1.ebuild?rev=1.1&content-type=text/plain Index: libaal-1.0.5-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libaal/libaal-1.0.5-r1.ebuild,v 1.1 2014/03/13 22:36:40 vapier Exp $ EAPI="4" inherit toolchain-funcs DESCRIPTION="library required by reiser4progs" HOMEPAGE="https://sourceforge.net/projects/reiser4/" SRC_URI="mirror://sourceforge/reiser4/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 -sparc ~x86" IUSE="static-libs" src_prepare() { # remove stupid CFLAG hardcodes sed -i \ -e "/GENERIC_CFLAGS/s:-O3::" \ -e "/^CFLAGS=/s:\"\":\"${CFLAGS}\":" \ configure || die "sed" printf '#!/bin/sh\n:\n' > run-ldconfig } src_configure() { econf \ --enable-libminimal \ --enable-memory-manager \ $(use_enable static-libs static) } src_install() { default gen_usr_ldscript -a aal{,-minimal} }