From 1e35eca3e0c7e1e42f0dc776e837efc80febd555 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 27 Nov 2012 18:01:47 +0000 Subject: Version bump. Backport a patch for glibc-2.16 compatibility (bug #432618). (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 42B9401D) --- app-shells/posh/ChangeLog | 8 +++++++- app-shells/posh/files/posh-glibc-2.16.patch | 19 +++++++++++++++++++ app-shells/posh/posh-0.10.1.ebuild | 24 ------------------------ app-shells/posh/posh-0.10.2.ebuild | 6 +++++- app-shells/posh/posh-0.11.ebuild | 28 ++++++++++++++++++++++++++++ 5 files changed, 59 insertions(+), 26 deletions(-) create mode 100644 app-shells/posh/files/posh-glibc-2.16.patch delete mode 100644 app-shells/posh/posh-0.10.1.ebuild create mode 100644 app-shells/posh/posh-0.11.ebuild (limited to 'app-shells/posh') diff --git a/app-shells/posh/ChangeLog b/app-shells/posh/ChangeLog index c7ae87e036fa..e26edbb17f0b 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.20 2012/06/19 14:25:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/ChangeLog,v 1.21 2012/11/27 18:01:45 mgorny Exp $ + +*posh-0.11 (27 Nov 2012) + + 27 Nov 2012; Michał Górny +files/posh-glibc-2.16.patch, + +posh-0.11.ebuild, -posh-0.10.1.ebuild, posh-0.10.2.ebuild: + Version bump. Backport a patch for glibc-2.16 compatibility (bug #432618). *posh-0.10.2 (19 Jun 2012) diff --git a/app-shells/posh/files/posh-glibc-2.16.patch b/app-shells/posh/files/posh-glibc-2.16.patch new file mode 100644 index 000000000000..8c29def10f72 --- /dev/null +++ b/app-shells/posh/files/posh-glibc-2.16.patch @@ -0,0 +1,19 @@ +Description: explicitly include sys/resource.h, for eglibc 2.16 + sys/resource.h is no longer included by sys/wait.h + http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=d94a4670800de6e8f088b8630ad5142866127980 +Author: Stefano Rivera +Last-Updated: 2012-11-07 + +--- a/ksh_wait.h ++++ b/ksh_wait.h +@@ -5,6 +5,10 @@ + # include + #endif + ++#ifdef HAVE_SYS_RESOURCE_H ++# include ++#endif ++ + #ifndef POSIX_SYS_WAIT + /* Get rid of system macros (which probably use union wait) */ + # undef WIFCORED diff --git a/app-shells/posh/posh-0.10.1.ebuild b/app-shells/posh/posh-0.10.1.ebuild deleted file mode 100644 index f62b526e09e4..000000000000 --- a/app-shells/posh/posh-0.10.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# 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.2 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 -} diff --git a/app-shells/posh/posh-0.10.2.ebuild b/app-shells/posh/posh-0.10.2.ebuild index 4b264fd88809..e423f9bec102 100644 --- a/app-shells/posh/posh-0.10.2.ebuild +++ b/app-shells/posh/posh-0.10.2.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.2.ebuild,v 1.1 2012/06/19 14:25:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/posh/posh-0.10.2.ebuild,v 1.2 2012/11/27 18:01:45 mgorny Exp $ EAPI=3 inherit autotools-utils @@ -16,6 +16,10 @@ IUSE="" RESTRICT=test +PATCHES=( + "${FILESDIR}"/${PN}-glibc-2.16.patch +) + src_configure() { myeconfargs=( --exec-prefix=/ diff --git a/app-shells/posh/posh-0.11.ebuild b/app-shells/posh/posh-0.11.ebuild new file mode 100644 index 000000000000..de4a3b382b37 --- /dev/null +++ b/app-shells/posh/posh-0.11.ebuild @@ -0,0 +1,28 @@ +# 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.11.ebuild,v 1.1 2012/11/27 18:01:45 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 + +PATCHES=( + "${FILESDIR}"/${PN}-glibc-2.16.patch +) + +src_configure() { + myeconfargs=( + --exec-prefix=/ + ) + autotools-utils_src_configure +} -- cgit v1.2.3-65-gdbad