leio 14/12/24 14:36:20
Modified: ChangeLog
Added: orc-0.4.23.ebuild
Removed: orc-0.4.16-r1.ebuild orc-0.4.18.ebuild
orc-0.4.17.ebuild orc-0.4.17-r1.ebuild
Log:
Version bump. Many bug fixes since last bump. Performance improvements, in
particular to ARM NEON and x86 SSE3, but also generic improvement in machine
instruction count and register usage. Remove obsolete versions.
(Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.44 dev-lang/orc/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.44&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.44&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 11 Oct 2014 12:38:33 -0000 1.43
+++ ChangeLog 24 Dec 2014 14:36:20 -0000 1.44
@@ -1,6 +1,15 @@
# ChangeLog for dev-lang/orc
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.43 2014/10/11
12:38:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.44 2014/12/24
14:36:20 leio Exp $
+
+*orc-0.4.23 (24 Dec 2014)
+
+ 24 Dec 2014; Mart Raudsepp <[email protected]> -orc-0.4.16-r1.ebuild,
+ -orc-0.4.17.ebuild, -orc-0.4.17-r1.ebuild, -orc-0.4.18.ebuild,
+ +orc-0.4.23.ebuild, -files/orc-0.4.17-AM_CONFIG_HEADER.patch:
+ Version bump. Many bug fixes since last bump. Performance improvements, in
+ particular to ARM NEON and x86 SSE3, but also generic improvement in machine
+ instruction count and register usage. Remove obsolete versions.
11 Oct 2014; Markus Meier <[email protected]> orc-0.4.19.ebuild:
arm stable, bug #512012
1.1 dev-lang/orc/orc-0.4.23.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.23.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.23.ebuild?rev=1.1&content-type=text/plain
Index: orc-0.4.23.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.23.ebuild,v 1.1
2014/12/24 14:36:20 leio Exp $
EAPI="5"
inherit autotools-multilib flag-o-matic
DESCRIPTION="The Oil Runtime Compiler, a just-in-time compiler for array
operations"
HOMEPAGE="http://gstreamer.freedesktop.org/"
SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.xz"
LICENSE="BSD BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris
~x64-solaris ~x86-solaris"
IUSE="examples static-libs"
RDEPEND=""
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.12
"
src_prepare() {
if ! use examples; then
sed -e '/SUBDIRS/ s:examples::' \
-i Makefile.am Makefile.in || die
fi
}
src_configure() {
# any optimisation on PPC/Darwin yields in a complaint from the
assembler
# Parameter error: r0 not allowed for parameter %lu (code as 0 not r0)
# the same for Intel/Darwin, although the error message there is
different
# but along the same lines
[[ ${CHOST} == *-darwin* ]] && filter-flags -O*
autotools-multilib_src_configure
}