Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
vapier 10/09/14 00:35:34
Modified: ChangeLog gdb-7.2.ebuild
Log:
Fix EAPI=3 porting and force usage of python-2 by Arfrever Frehtes Taifersar Arahesis #316945.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.174 sys-devel/gdb/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?r1=1.173&r2=1.174
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog 11 Sep 2010 16:58:49 -0000 1.173
+++ ChangeLog 14 Sep 2010 00:35:34 -0000 1.174
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/gdb
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.173 2010/09/11 16:58:49 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.174 2010/09/14 00:35:34 vapier Exp $
+
+ 14 Sep 2010; Mike Frysinger <vapier@g.o> gdb-7.2.ebuild:
+ Fix EAPI=3 porting and force usage of python-2 by Arfrever Frehtes Taifersar
+ Arahesis #316945.
11 Sep 2010; Mike Frysinger <vapier@g.o> gdb-7.0.1.ebuild:
Mark s390 stable #310159.
1.3 sys-devel/gdb/gdb-7.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild?r1=1.2&r2=1.3
Index: gdb-7.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gdb-7.2.ebuild 11 Sep 2010 16:51:38 -0000 1.2
+++ gdb-7.2.ebuild 14 Sep 2010 00:35:34 -0000 1.3
@@ -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/sys-devel/gdb/gdb-7.2.ebuild,v 1.2 2010/09/11 16:51:38 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild,v 1.3 2010/09/14 00:35:34 vapier Exp $
EAPI="3"
@@ -31,15 +31,13 @@
RDEPEND=">=sys-libs/ncurses-5.2-r2
sys-libs/readline
expat? ( dev-libs/expat )
- python? ( dev-lang/python )"
+ python? ( =dev-lang/python-2* )"
DEPEND="${RDEPEND}
app-arch/xz-utils
test? ( dev-util/dejagnu )
nls? ( sys-devel/gettext )"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
use vanilla || [[ -n ${PATCH_VER} ]] && EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/patch
strip-linguas -u bfd/po opcodes/po
}
@@ -53,7 +51,7 @@
fi
}
-src_compile() {
+src_configure() {
strip-unsupported-flags
econf \
--with-pkgversion="$(gdb_branding)" \
@@ -65,9 +63,7 @@
$(use_with expat) \
$(use_enable nls) \
$(use multitarget && echo --enable-targets=all) \
- $(use_with python) \
- || die
- emake || die
+ $(use_with python python "${EPREFIX}/usr/bin/python2")
}
src_test() {
|
|