diff options
author | 2012-06-19 14:25:12 +0000 | |
---|---|---|
committer | 2012-06-19 14:25:12 +0000 | |
commit | 25c57d5c9886f784906aae7b59085d95d870b6f9 (patch) | |
tree | f30168eae0603217c2325844e626ac6448d7c7da /app-shells | |
parent | Bump -6.1 development version (diff) | |
download | gentoo-2-25c57d5c9886f784906aae7b59085d95d870b6f9.tar.gz gentoo-2-25c57d5c9886f784906aae7b59085d95d870b6f9.tar.bz2 gentoo-2-25c57d5c9886f784906aae7b59085d95d870b6f9.zip |
Version bump. Restrict tests as they are broken.
(Portage version: 2.2.0_alpha110_p30/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/posh/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/posh/posh-0.10.1.ebuild | 4 | ||||
-rw-r--r-- | app-shells/posh/posh-0.10.2.ebuild | 24 |
3 files changed, 34 insertions, 2 deletions
diff --git a/app-shells/posh/ChangeLog b/app-shells/posh/ChangeLog index e44e9975448e..c7ae87e036fa 100644 --- a/app-shells/posh/ChangeLog +++ b/app-shells/posh/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/posh # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/ChangeLog,v 1.19 2012/01/27 13:55:13 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/ChangeLog,v 1.20 2012/06/19 14:25:12 mgorny Exp $ + +*posh-0.10.2 (19 Jun 2012) + + 19 Jun 2012; Michał Górny <mgorny@gentoo.org> +posh-0.10.2.ebuild, + posh-0.10.1.ebuild: + Version bump. Restrict tests as they are broken. *posh-0.10.1 (27 Jan 2012) diff --git a/app-shells/posh/posh-0.10.1.ebuild b/app-shells/posh/posh-0.10.1.ebuild index 6328d73a9423..f62b526e09e4 100644 --- a/app-shells/posh/posh-0.10.1.ebuild +++ b/app-shells/posh/posh-0.10.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.10.1.ebuild,v 1.1 2012/01/27 13:55:13 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.10.1.ebuild,v 1.2 2012/06/19 14:25:12 mgorny Exp $ EAPI=3 inherit autotools-utils @@ -14,6 +14,8 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" +RESTRICT=test + src_configure() { myeconfargs=( --exec-prefix=/ diff --git a/app-shells/posh/posh-0.10.2.ebuild b/app-shells/posh/posh-0.10.2.ebuild new file mode 100644 index 000000000000..4b264fd88809 --- /dev/null +++ b/app-shells/posh/posh-0.10.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.10.2.ebuild,v 1.1 2012/06/19 14:25:12 mgorny Exp $ + +EAPI=3 +inherit autotools-utils + +DESCRIPTION="Reimplementation of Bourne shell based on pdksh" +HOMEPAGE="http://packages.debian.org/posh" +SRC_URI="mirror://debian/pool/main/p/posh/${P/-/_}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RESTRICT=test + +src_configure() { + myeconfargs=( + --exec-prefix=/ + ) + autotools-utils_src_configure +} |