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 8BFCD59CA3 for ; Sun, 14 Feb 2016 08:37:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5329321C00E; Sun, 14 Feb 2016 08:37:04 +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 01FCB21C00E for ; Sun, 14 Feb 2016 08:37:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C7D6340B6C for ; Sun, 14 Feb 2016 08:37:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85E441069 for ; Sun, 14 Feb 2016 08:36:51 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1455439004.0fcfd1c1aef0e9cb736d97bbd848dd922c67ce85.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/posh/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/posh/Manifest app-shells/posh/posh-0.12.5.ebuild X-VCS-Directories: app-shells/posh/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0fcfd1c1aef0e9cb736d97bbd848dd922c67ce85 X-VCS-Branch: master Date: Sun, 14 Feb 2016 08:36:51 +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: 41dee5bd-4f2d-4fa0-a382-0bba6a6f3ed1 X-Archives-Hash: 1da57a7474b3b2fdd6234c2f0ae57814 commit: 0fcfd1c1aef0e9cb736d97bbd848dd922c67ce85 Author: Michał Górny gentoo org> AuthorDate: Sun Feb 14 08:34:24 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 14 08:36:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fcfd1c1 app-shells/posh: Version bump to 0.12.5 Bump to 0.12.5 that has a few bugfixes, gcc5 build fix most notably (#546642). app-shells/posh/Manifest | 1 + app-shells/posh/posh-0.12.5.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/app-shells/posh/Manifest b/app-shells/posh/Manifest index c9413d5..3545e98 100644 --- a/app-shells/posh/Manifest +++ b/app-shells/posh/Manifest @@ -1 +1,2 @@ +DIST posh_0.12.5.tar.xz 267356 SHA256 adf1b5670b9978c3b6d5ae64356be72d8c31db1750a7600ff981fec3ff920a0a SHA512 03fabb32eb2cd38b90cf4bef641a9ce35e3e79a65b22bf6c8654b0da9d05385efe1fb5c0274deba9c616c7aba443f9a408194a066983edf051be1098be11f21e WHIRLPOOL 7a6275c14818cc24085e9383e9fce51dbb71ebdb001af2a7f5bc061a807e4681f83f57a6a2aa5bac4655d8f24466e9a7f0e573c584d04e660a668995d0144b8f DIST posh_0.12.tar.gz 469680 SHA256 9206b67005cf357404b3f3021c2d7c7bbd50756050512dececb9ed836435b048 SHA512 bb98d2fa009b5ccd666103378dd30da5649baf830d4e3124575f813b98b13275bde46e03bb737c75b37c82f655b3f17e9a5decd29b75d20678e78a4d7e3abf00 WHIRLPOOL ffd03e1537aa8e68545c532fb8c27fc9702ab16157efce7ef5c83b6f70fbe1a807e4759b85525036ae0c26f56b595ccf95d9cffb8a96b4ef8e5a8ec4b50c60e6 diff --git a/app-shells/posh/posh-0.12.5.ebuild b/app-shells/posh/posh-0.12.5.ebuild new file mode 100644 index 0000000..fe95f2c --- /dev/null +++ b/app-shells/posh/posh-0.12.5.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="Reimplementation of Bourne shell based on pdksh" +HOMEPAGE="http://packages.debian.org/posh" +SRC_URI="mirror://debian/pool/main/p/posh/${P/-/_}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="app-arch/xz-utils" + +# Tests fails looking for some 'getopts.pl' +RESTRICT="test" + +src_prepare() { + default + + # tarball bundles outdated generated files + eautoreconf +} + +src_configure() { + local myconf=( + --exec-prefix=/ + ) + econf "${myconf[@]}" +}