diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-03-24 05:24:57 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-03-24 05:24:57 +0000 |
commit | 1e3e75b3d3c20efa8640249297e4b6e57ffc75a3 (patch) | |
tree | 3afb3c64b0d16d9269ff0806352f9005db76732c /app-arch | |
parent | Removed documancer and wxmozilla (bug #305471). (diff) | |
download | gentoo-2-1e3e75b3d3c20efa8640249297e4b6e57ffc75a3.tar.gz gentoo-2-1e3e75b3d3c20efa8640249297e4b6e57ffc75a3.tar.bz2 gentoo-2-1e3e75b3d3c20efa8640249297e4b6e57ffc75a3.zip |
Disable ar test for this version (bug #310847).
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/dpkg/ChangeLog | 5 | ||||
-rw-r--r-- | app-arch/dpkg/dpkg-1.15.6.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app-arch/dpkg/ChangeLog b/app-arch/dpkg/ChangeLog index 4ed9b1dd5d22..8c4339f26a67 100644 --- a/app-arch/dpkg/ChangeLog +++ b/app-arch/dpkg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/dpkg # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.120 2010/03/23 17:40:35 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.121 2010/03/24 05:24:57 jer Exp $ + + 24 Mar 2010; Jeroen Roovers <jer@gentoo.org> dpkg-1.15.6.ebuild: + Disable ar test for this version (bug #310847). 23 Mar 2010; Jeroen Roovers <jer@gentoo.org> dpkg-1.15.6.ebuild: Restrict test (bug #310847). diff --git a/app-arch/dpkg/dpkg-1.15.6.ebuild b/app-arch/dpkg/dpkg-1.15.6.ebuild index dec4c814798a..1ef5a61149ee 100644 --- a/app-arch/dpkg/dpkg-1.15.6.ebuild +++ b/app-arch/dpkg/dpkg-1.15.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.15.6.ebuild,v 1.2 2010/03/23 17:40:35 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.15.6.ebuild,v 1.3 2010/03/24 05:24:57 jer Exp $ EAPI=3 @@ -14,7 +14,6 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris" IUSE="bzip2 nls test unicode zlib" -RESTRICT="test" LANGS="sv de es ja fr hu pl ru" @@ -41,6 +40,11 @@ src_prepare() { # installed, so no need to worry about hardcoding a temporary bash) sed -i -e '1c\#!'"${BASH}" get-version || die + # bug 310847 + if [[ "${PV}" = "1.15.6" ]]; then + sed -i lib/dpkg/test/Makefile.am -e '/t[_-]ar/d' + fi + eautoreconf } |