Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/posh/
Date: Thu, 18 Oct 2018 07:18:14
Message-Id: 1539847074.ca9380904537653c6dff002350baa3b191ec53b0.mgorny@gentoo
1 commit: ca9380904537653c6dff002350baa3b191ec53b0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 18 06:41:43 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 18 07:17:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca938090
7
8 app-shells/posh: Bump to 0.13.2 (bugfix)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-shells/posh/Manifest | 1 +
13 app-shells/posh/posh-0.13.2.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/app-shells/posh/Manifest b/app-shells/posh/Manifest
17 index d5057c0685d..535b68df54c 100644
18 --- a/app-shells/posh/Manifest
19 +++ b/app-shells/posh/Manifest
20 @@ -1 +1,2 @@
21 DIST posh_0.13.1.tar.xz 267436 BLAKE2B f534f64595eda7649a146555238309aba00ec79d53206b17c91ba9ed44ab47794541952af670c5040133d164167e8f2bc844fc4b3b646035e0d08e8495d7aedf SHA512 957fc2924ab8f634007db2e15ecdbb8a1c60ffb4917c127c1583c05e222f598a564906cc40c869c95d79995ea85af24010780e7d36d44a5907a691aa9044f23a
22 +DIST posh_0.13.2.tar.xz 267492 BLAKE2B 44a06528825485ac1c5d899e9b625785ec733fee945241dc0708e51e1f2145a31aae04023477f6b3abb8053ab42714d2ceac6b5a1d776780ea2ab78ca1fd44d5 SHA512 1d0de10e47e66cb654a47c18bb7f8b5361eff2d99e6c0b215ed9a1052134b534276ed58feafd53fe0ee2fbc3e048dc9cf747752568fb361ea47700e02a3478f0
23
24 diff --git a/app-shells/posh/posh-0.13.2.ebuild b/app-shells/posh/posh-0.13.2.ebuild
25 new file mode 100644
26 index 00000000000..5eb687e8030
27 --- /dev/null
28 +++ b/app-shells/posh/posh-0.13.2.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DESCRIPTION="Reimplementation of Bourne shell based on pdksh"
36 +HOMEPAGE="https://salsa.debian.org/clint/posh"
37 +SRC_URI="mirror://debian/pool/main/p/posh/${P/-/_}.tar.xz"
38 +
39 +LICENSE="GPL-2+ BSD public-domain"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~ppc ~x86"
42 +IUSE=""
43 +
44 +DEPEND="app-arch/xz-utils"
45 +
46 +src_configure() {
47 + local myconf=(
48 + --exec-prefix="${EPREFIX:-/}"
49 + )
50 + econf "${myconf[@]}"
51 +}