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 63A791387FD for ; Mon, 9 Jun 2014 06:03:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70490E0A40; Mon, 9 Jun 2014 06:03:20 +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 09234E0A40 for ; Mon, 9 Jun 2014 06:03:19 +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 396DC33FF22 for ; Mon, 9 Jun 2014 06:03:19 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 807) id DAE442004E; Mon, 9 Jun 2014 06:03:17 +0000 (UTC) From: "Patrick Lauer (patrick)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, patrick@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-shells/sash: sash-3.8.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: sash-3.8.ebuild ChangeLog X-VCS-Directories: app-shells/sash X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140609060317.DAE442004E@flycatcher.gentoo.org> Date: Mon, 9 Jun 2014 06:03:17 +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: 89c4a96a-8f42-46e1-92de-5062df66948e X-Archives-Hash: 16d81102df22767efc0f5c15284e605c patrick 14/06/09 06:03:17 Modified: ChangeLog Added: sash-3.8.ebuild Log: Bump (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit) Revision Changes Path 1.53 app-shells/sash/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?rev=1.53&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?rev=1.53&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?r1=1.52&r2=1.53 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- ChangeLog 8 Dec 2013 17:27:39 -0000 1.52 +++ ChangeLog 9 Jun 2014 06:03:17 -0000 1.53 @@ -1,6 +1,11 @@ # ChangeLog for app-shells/sash -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.52 2013/12/08 17:27:39 dastergon Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.53 2014/06/09 06:03:17 patrick Exp $ + +*sash-3.8 (09 Jun 2014) + + 09 Jun 2014; Patrick Lauer +sash-3.8.ebuild: + Bump 08 Dec 2013; Pavlos Ratis metadata.xml: add myself as maintainer 1.1 app-shells/sash/sash-3.8.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/sash-3.8.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/sash-3.8.ebuild?rev=1.1&content-type=text/plain Index: sash-3.8.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.8.ebuild,v 1.1 2014/06/09 06:03:17 patrick Exp $ EAPI=4 inherit eutils toolchain-funcs flag-o-matic DESCRIPTION="A small (static) UNIX Shell" HOMEPAGE="http://www.canb.auug.org.au/~dbell/" SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz" LICENSE="freedist" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="static" DEPEND=" static? ( sys-libs/zlib[static-libs] ) !static? ( >=sys-libs/zlib-1.2.3 )" RDEPEND="!static? ( ${DEPEND} )" src_prepare() { epatch "${FILESDIR}"/sash-3.7-builtin.patch sed \ -e "s:-O3:${CFLAGS}:" \ -i Makefile || die sed \ -e 's:linux/ext2_fs.h:ext2fs/ext2_fs.h:g' \ -i cmd_chattr.c || die } src_compile() { use static && append-ldflags -static emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" } src_install() { into / dobin sash doman sash.1 dodoc README }