* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2012-10-09 17:07 Mike Frysinger (vapier)
0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2012-10-09 17:07 UTC (permalink / raw
To: gentoo-commits
vapier 12/10/09 17:07:32
Modified: ChangeLog
Added: libunwind-1.1.ebuild
Log:
Version bump.
(Portage version: 2.2.0_alpha131/cvs/Linux x86_64)
Revision Changes Path
1.26 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 11 Sep 2012 20:15:12 -0000 1.25
+++ ChangeLog 9 Oct 2012 17:07:32 -0000 1.26
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.25 2012/09/11 20:15:12 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.26 2012/10/09 17:07:32 vapier Exp $
+
+*libunwind-1.1 (09 Oct 2012)
+
+ 09 Oct 2012; Mike Frysinger <vapier@gentoo.org> +libunwind-1.1.ebuild:
+ Version bump.
11 Sep 2012; Alexis Ballier <aballier@gentoo.org> libunwind-1.0.1-r1.ebuild:
keyword ~amd64-fbsd
1.1 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.1&content-type=text/plain
Index: libunwind-1.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.1 2012/10/09 17:07:32 vapier Exp $
EAPI="4"
DESCRIPTION="Portable and efficient API to determine the call-chain of a program"
HOMEPAGE="http://savannah.nongnu.org/projects/libunwind"
SRC_URI="http://download.savannah.nongnu.org/releases/libunwind/${P}.tar.gz"
LICENSE="MIT"
SLOT="7"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="debug debug-frame static-libs"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
QA_DT_NEEDED_x86_fbsd="usr/lib/libunwind.so.7.0.0"
src_prepare() {
# These tests like to fail. bleh.
echo 'int main(){return 0;}' > tests/Gtest-dyn1.c
echo 'int main(){return 0;}' > tests/Ltest-dyn1.c
}
src_configure() {
# do not $(use_enable) because the configure.in is broken and parses
# --disable-debug the same as --enable-debug.
# https://savannah.nongnu.org/bugs/index.php?34324
# --enable-cxx-exceptions: always enable it, headers provide the interface
# and on some archs it is disabled by default causing a mismatch between the
# API and the ABI, bug #418253
# conservative-checks: validate memory addresses before use; as of 1.0.1,
# only x86_64 supports this, yet may be useful for debugging, couple it with
# debug useflag.
econf \
--enable-cxx-exceptions \
$(use_enable debug-frame) \
$(use_enable static-libs static) \
$(use_enable debug conservative_checks) \
$(use debug && echo --enable-debug)
}
src_test() {
# Explicitly allow parallel build of tests.
# Sandbox causes some tests to freak out.
SANDBOX_ON=0 emake check
}
src_install() {
default
# libunwind-ptrace.a (and libunwind-ptrace.h) is separate API and without
# shared library, so we keep it in any case
use static-libs || find "${ED}"usr '(' -name 'libunwind-generic.a' -o -name 'libunwind*.la' ')' -delete
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2012-11-02 0:48 Anthony G. Basile (blueness)
0 siblings, 0 replies; 11+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-11-02 0:48 UTC (permalink / raw
To: gentoo-commits
blueness 12/11/02 00:48:02
Modified: libunwind-1.1.ebuild ChangeLog
Log:
keyword ~ppc64, bug #429710
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xD0455535)
Revision Changes Path
1.2 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.1&r2=1.2
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libunwind-1.1.ebuild 9 Oct 2012 17:07:32 -0000 1.1
+++ libunwind-1.1.ebuild 2 Nov 2012 00:48:02 -0000 1.2
@@ -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/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.1 2012/10/09 17:07:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.2 2012/11/02 00:48:02 blueness Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="MIT"
SLOT="7"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="debug debug-frame static-libs"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
1.27 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 9 Oct 2012 17:07:32 -0000 1.26
+++ ChangeLog 2 Nov 2012 00:48:02 -0000 1.27
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.26 2012/10/09 17:07:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.27 2012/11/02 00:48:02 blueness Exp $
+
+ 02 Nov 2012; Anthony G. Basile <blueness@gentoo.org> libunwind-1.1.ebuild:
+ keyword ~ppc64, bug #429710
*libunwind-1.1 (09 Oct 2012)
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2012-11-20 16:41 Mike Frysinger (vapier)
0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2012-11-20 16:41 UTC (permalink / raw
To: gentoo-commits
vapier 12/11/20 16:41:53
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Add USE=lzma to control liblzma usage.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Revision Changes Path
1.3 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.2&r2=1.3
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libunwind-1.1.ebuild 2 Nov 2012 00:48:02 -0000 1.2
+++ libunwind-1.1.ebuild 20 Nov 2012 16:41:52 -0000 1.3
@@ -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/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.2 2012/11/02 00:48:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.3 2012/11/20 16:41:52 vapier Exp $
EAPI="4"
@@ -11,7 +11,10 @@
LICENSE="MIT"
SLOT="7"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="debug debug-frame static-libs"
+IUSE="debug debug-frame lzma static-libs"
+
+RDEPEND="lzma? ( app-arch/xz-utils )"
+DEPEND="${RDEPEND}"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
@@ -36,6 +39,7 @@
econf \
--enable-cxx-exceptions \
$(use_enable debug-frame) \
+ $(use_enable lzma minidebuginfo) \
$(use_enable static-libs static) \
$(use_enable debug conservative_checks) \
$(use debug && echo --enable-debug)
1.28 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 2 Nov 2012 00:48:02 -0000 1.27
+++ ChangeLog 20 Nov 2012 16:41:52 -0000 1.28
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.27 2012/11/02 00:48:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.28 2012/11/20 16:41:52 vapier Exp $
+
+ 20 Nov 2012; Mike Frysinger <vapier@gentoo.org> libunwind-1.1.ebuild:
+ Add USE=lzma to control liblzma usage.
02 Nov 2012; Anthony G. Basile <blueness@gentoo.org> libunwind-1.1.ebuild:
keyword ~ppc64, bug #429710
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2012-12-19 17:32 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 11+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2012-12-19 17:32 UTC (permalink / raw
To: gentoo-commits
bicatali 12/12/19 17:32:09
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Keyword amd64-linux and x86-linux
(Portage version: 2.2.01.21418-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Revision Changes Path
1.4 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.3&r2=1.4
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libunwind-1.1.ebuild 20 Nov 2012 16:41:52 -0000 1.3
+++ libunwind-1.1.ebuild 19 Dec 2012 17:32:09 -0000 1.4
@@ -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/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.3 2012/11/20 16:41:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.4 2012/12/19 17:32:09 bicatali Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="MIT"
SLOT="7"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~x86-linux"
IUSE="debug debug-frame lzma static-libs"
RDEPEND="lzma? ( app-arch/xz-utils )"
1.30 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.29&r2=1.30
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog 17 Dec 2012 17:04:24 -0000 1.29
+++ ChangeLog 19 Dec 2012 17:32:09 -0000 1.30
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.29 2012/12/17 17:04:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.30 2012/12/19 17:32:09 bicatali Exp $
+
+ 19 Dec 2012; Sébastien Fabbro <bicatali@gentoo.org> libunwind-1.1.ebuild:
+ Keyword amd64-linux and x86-linux
17 Dec 2012; Agostino Sarubbo <ago@gentoo.org> libunwind-1.0.1-r1.ebuild:
Stable for ia64, wrt bug #427136
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2013-03-17 15:54 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-17 15:54 UTC (permalink / raw
To: gentoo-commits
ago 13/03/17 15:54:03
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Stable for arm, wrt bug #461394
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.6&r2=1.7
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libunwind-1.1.ebuild 16 Mar 2013 19:46:28 -0000 1.6
+++ libunwind-1.1.ebuild 17 Mar 2013 15:54:03 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.6 2013/03/16 19:46:28 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.7 2013/03/17 15:54:03 ago Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="7"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug debug-frame libatomic lzma static-libs"
# We just use the header from libatomic.
1.33 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.32&r2=1.33
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog 16 Mar 2013 19:46:28 -0000 1.32
+++ ChangeLog 17 Mar 2013 15:54:03 -0000 1.33
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.32 2013/03/16 19:46:28 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.33 2013/03/17 15:54:03 ago Exp $
+
+ 17 Mar 2013; Agostino Sarubbo <ago@gentoo.org> libunwind-1.1.ebuild:
+ Stable for arm, wrt bug #461394
16 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> libunwind-1.1.ebuild:
Stable on amd64, wrt bug #461394
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2013-09-12 19:15 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-09-12 19:15 UTC (permalink / raw
To: gentoo-commits
ssuominen 13/09/12 19:15:36
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Correct LIBLZMA="-lzma" with LIBLZMA="-llzma" (and edit both configure and configure.ac to avoid running eautoreconf only for this) as per #444050 by Marcin Mirosław
(Portage version: 2.2.2/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Revision Changes Path
1.8 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.7&r2=1.8
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libunwind-1.1.ebuild 17 Mar 2013 15:54:03 -0000 1.7
+++ libunwind-1.1.ebuild 12 Sep 2013 19:15:36 -0000 1.8
@@ -1,8 +1,8 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.7 2013/03/17 15:54:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.8 2013/09/12 19:15:36 ssuominen Exp $
-EAPI="4"
+EAPI="5"
inherit eutils
@@ -15,6 +15,8 @@
KEYWORDS="amd64 arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug debug-frame libatomic lzma static-libs"
+RESTRICT="test" #461958 -- re-enable tests with >1.1 again for retesting, this is here for #461394
+
# We just use the header from libatomic.
RDEPEND="lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
@@ -28,6 +30,8 @@
# These tests like to fail. bleh.
echo 'int main(){return 0;}' > tests/Gtest-dyn1.c
echo 'int main(){return 0;}' > tests/Ltest-dyn1.c
+
+ sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure{,.ac} || die #444050
}
src_configure() {
1.34 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 17 Mar 2013 15:54:03 -0000 1.33
+++ ChangeLog 12 Sep 2013 19:15:36 -0000 1.34
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.33 2013/03/17 15:54:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.34 2013/09/12 19:15:36 ssuominen Exp $
+
+ 12 Sep 2013; Samuli Suominen <ssuominen@gentoo.org> libunwind-1.1.ebuild:
+ Correct LIBLZMA="-lzma" with LIBLZMA="-llzma" (and edit both configure and
+ configure.ac to avoid running eautoreconf only for this) as per #444050 by
+ Marcin Mirosław
17 Mar 2013; Agostino Sarubbo <ago@gentoo.org> libunwind-1.1.ebuild:
Stable for arm, wrt bug #461394
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2013-09-25 17:26 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-25 17:26 UTC (permalink / raw
To: gentoo-commits
ago 13/09/25 17:26:49
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #461394
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.8&r2=1.9
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libunwind-1.1.ebuild 12 Sep 2013 19:15:36 -0000 1.8
+++ libunwind-1.1.ebuild 25 Sep 2013 17:26:49 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.8 2013/09/12 19:15:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.9 2013/09/25 17:26:49 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="7"
-KEYWORDS="amd64 arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~ia64 ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug debug-frame libatomic lzma static-libs"
RESTRICT="test" #461958 -- re-enable tests with >1.1 again for retesting, this is here for #461394
1.35 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 12 Sep 2013 19:15:36 -0000 1.34
+++ ChangeLog 25 Sep 2013 17:26:49 -0000 1.35
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.34 2013/09/12 19:15:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.35 2013/09/25 17:26:49 ago Exp $
+
+ 25 Sep 2013; Agostino Sarubbo <ago@gentoo.org> libunwind-1.1.ebuild:
+ Stable for ppc, wrt bug #461394
12 Sep 2013; Samuli Suominen <ssuominen@gentoo.org> libunwind-1.1.ebuild:
Correct LIBLZMA="-lzma" with LIBLZMA="-llzma" (and edit both configure and
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2013-10-30 18:24 Mike Frysinger (vapier)
0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2013-10-30 18:24 UTC (permalink / raw
To: gentoo-commits
vapier 13/10/30 18:24:41
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Call elibtoolize to fix relinking issues when cross-compiling.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Revision Changes Path
1.11 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.10&r2=1.11
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libunwind-1.1.ebuild 25 Oct 2013 14:53:16 -0000 1.10
+++ libunwind-1.1.ebuild 30 Oct 2013 18:24:41 -0000 1.11
@@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.10 2013/10/25 14:53:16 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.11 2013/10/30 18:24:41 vapier Exp $
EAPI="5"
-inherit eutils
+inherit eutils libtool
DESCRIPTION="Portable and efficient API to determine the call-chain of a program"
HOMEPAGE="http://savannah.nongnu.org/projects/libunwind"
@@ -32,6 +32,7 @@
echo 'int main(){return 0;}' > tests/Ltest-dyn1.c
sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure{,.ac} || die #444050
+ elibtoolize
}
src_configure() {
1.37 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 25 Oct 2013 14:53:16 -0000 1.36
+++ ChangeLog 30 Oct 2013 18:24:41 -0000 1.37
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.36 2013/10/25 14:53:16 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.37 2013/10/30 18:24:41 vapier Exp $
+
+ 30 Oct 2013; Mike Frysinger <vapier@gentoo.org> libunwind-1.1.ebuild:
+ Call elibtoolize to fix relinking issues when cross-compiling.
25 Oct 2013; Jeroen Roovers <jer@gentoo.org> libunwind-1.1.ebuild:
Marked ~hppa too.
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2014-02-16 2:12 Mike Frysinger (vapier)
0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2014-02-16 2:12 UTC (permalink / raw
To: gentoo-commits
vapier 14/02/16 02:12:30
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Fix lzma linkage #444050 by Marcin Mirosław.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.14 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.13&r2=1.14
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- libunwind-1.1.ebuild 12 Feb 2014 00:31:31 -0000 1.13
+++ libunwind-1.1.ebuild 16 Feb 2014 02:12:30 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.13 2014/02/12 00:31:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.14 2014/02/16 02:12:30 vapier Exp $
EAPI="5"
@@ -31,7 +31,8 @@
echo 'int main(){return 0;}' > tests/Gtest-dyn1.c
echo 'int main(){return 0;}' > tests/Ltest-dyn1.c
- sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure{,.ac} || die #444050
+ sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure{.ac,} || die #444050
+ epatch "${FILESDIR}"/${P}-lzma.patch #444050
elibtoolize
}
1.40 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 12 Feb 2014 00:31:31 -0000 1.39
+++ ChangeLog 16 Feb 2014 02:12:30 -0000 1.40
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.39 2014/02/12 00:31:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.40 2014/02/16 02:12:30 vapier Exp $
+
+ 16 Feb 2014; Mike Frysinger <vapier@gentoo.org>
+ +files/libunwind-1.1-lzma.patch, libunwind-1.1.ebuild:
+ Fix lzma linkage #444050 by Marcin Mirosław.
12 Feb 2014; Jeroen Roovers <jer@gentoo.org> libunwind-1.1.ebuild:
Stable for HPPA (bug #461394).
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2014-04-16 7:22 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-16 7:22 UTC (permalink / raw
To: gentoo-commits
ago 14/04/16 07:22:17
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #461394
(Portage version: 2.2.8-r1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.15 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.14&r2=1.15
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- libunwind-1.1.ebuild 16 Feb 2014 02:12:30 -0000 1.14
+++ libunwind-1.1.ebuild 16 Apr 2014 07:22:16 -0000 1.15
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.14 2014/02/16 02:12:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.15 2014/04/16 07:22:16 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="7"
-KEYWORDS="amd64 arm hppa ~ia64 ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm hppa ~ia64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug debug-frame libatomic lzma static-libs"
RESTRICT="test" #461958 -- re-enable tests with >1.1 again for retesting, this is here for #461394
1.41 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 16 Feb 2014 02:12:30 -0000 1.40
+++ ChangeLog 16 Apr 2014 07:22:16 -0000 1.41
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.40 2014/02/16 02:12:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.41 2014/04/16 07:22:16 ago Exp $
+
+ 16 Apr 2014; Agostino Sarubbo <ago@gentoo.org> libunwind-1.1.ebuild:
+ Stable for ppc64, wrt bug #461394
16 Feb 2014; Mike Frysinger <vapier@gentoo.org>
+files/libunwind-1.1-lzma.patch, libunwind-1.1.ebuild:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog
@ 2015-02-26 3:12 Mike Frysinger (vapier)
0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2015-02-26 3:12 UTC (permalink / raw
To: gentoo-commits
vapier 15/02/26 03:12:54
Modified: libunwind-1.1.ebuild ChangeLog
Log:
Add mips love.
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.16 sys-libs/libunwind/libunwind-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild?r1=1.15&r2=1.16
Index: libunwind-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- libunwind-1.1.ebuild 16 Apr 2014 07:22:16 -0000 1.15
+++ libunwind-1.1.ebuild 26 Feb 2015 03:12:54 -0000 1.16
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.15 2014/04/16 07:22:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.16 2015/02/26 03:12:54 vapier Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="7"
-KEYWORDS="amd64 arm hppa ~ia64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm hppa ~ia64 ~mips ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug debug-frame libatomic lzma static-libs"
RESTRICT="test" #461958 -- re-enable tests with >1.1 again for retesting, this is here for #461394
1.42 sys-libs/libunwind/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 16 Apr 2014 07:22:16 -0000 1.41
+++ ChangeLog 26 Feb 2015 03:12:54 -0000 1.42
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.41 2014/04/16 07:22:16 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.42 2015/02/26 03:12:54 vapier Exp $
+
+ 26 Feb 2015; Mike Frysinger <vapier@gentoo.org> libunwind-1.1.ebuild:
+ Add mips love.
16 Apr 2014; Agostino Sarubbo <ago@gentoo.org> libunwind-1.1.ebuild:
Stable for ppc64, wrt bug #461394
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2015-02-26 3:12 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-17 15:54 [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: libunwind-1.1.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2015-02-26 3:12 Mike Frysinger (vapier)
2014-04-16 7:22 Agostino Sarubbo (ago)
2014-02-16 2:12 Mike Frysinger (vapier)
2013-10-30 18:24 Mike Frysinger (vapier)
2013-09-25 17:26 Agostino Sarubbo (ago)
2013-09-12 19:15 Samuli Suominen (ssuominen)
2012-12-19 17:32 Sebastien Fabbro (bicatali)
2012-11-20 16:41 Mike Frysinger (vapier)
2012-11-02 0:48 Anthony G. Basile (blueness)
2012-10-09 17:07 Mike Frysinger (vapier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox