vapier      15/05/18 17:18:04

  Modified:             ChangeLog
  Added:                newlib-2.2.0.20150423.ebuild
  Removed:              newlib-2.2.0.20150225.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  Changes    Path
1.32                 sys-libs/newlib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/newlib/ChangeLog?rev=1.32&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/newlib/ChangeLog?rev=1.32&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/newlib/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   18 May 2015 16:40:17 -0000      1.31
+++ ChangeLog   18 May 2015 17:18:04 -0000      1.32
@@ -1,6 +1,12 @@
 # ChangeLog for sys-libs/newlib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v 1.31 2015/05/18 
16:40:17 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v 1.32 2015/05/18 
17:18:04 vapier Exp $
+
+*newlib-2.2.0.20150423 (18 May 2015)
+
+  18 May 2015; Mike Frysinger <vap...@gentoo.org> 
+newlib-2.2.0.20150423.ebuild,
+  -newlib-2.2.0.20150225.ebuild:
+  Version bump.
 
   18 May 2015; Mike Frysinger <vap...@gentoo.org> newlib-2.2.0.ebuild:
   Add a blocker against older SLOTs to help with upgrades #497344 by Alex



1.1                  sys-libs/newlib/newlib-2.2.0.20150423.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/newlib/newlib-2.2.0.20150423.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/newlib/newlib-2.2.0.20150423.ebuild?rev=1.1&content-type=text/plain

Index: newlib-2.2.0.20150423.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-libs/newlib/newlib-2.2.0.20150423.ebuild,v 1.1 
2015/05/18 17:18:04 vapier Exp $

EAPI="4"

inherit flag-o-matic toolchain-funcs eutils

if [[ ${PV} == "9999" ]] ; then
        EGIT_REPO_URI="git://sourceware.org/git/newlib.git"
        inherit git-r3
else
        SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz";
        if [[ ${PV} != *.201[5-9]???? ]] ; then
                KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
        fi
fi

export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
        if [[ ${CATEGORY} == cross-* ]] ; then
                export CTARGET=${CATEGORY#cross-}
        fi
fi

DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/";

LICENSE="NEWLIB LIBGLOSS GPL-2"
SLOT="0"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"

NEWLIBBUILD="${WORKDIR}/build"

pkg_setup() {
        # Reject newlib-on-glibc type installs
        if [[ ${CTARGET} == ${CHOST} ]] ; then
                case ${CHOST} in
                        *-newlib|*-elf) ;;
                        *) die "Use sys-devel/crossdev to build a newlib 
toolchain" ;;
                esac
        fi
}

src_prepare() {
        epatch_user
}

src_configure() {
        # we should fix this ...
        unset LDFLAGS
        CHOST=${CTARGET} strip-unsupported-flags

        local myconf=""
        [[ ${CTARGET} == "spu" ]] \
                && myconf="${myconf} --disable-newlib-multithread" \
                || myconf="${myconf} $(use_enable threads newlib-multithread)"

        mkdir -p "${NEWLIBBUILD}"
        cd "${NEWLIBBUILD}"

        ECONF_SOURCE=${S} \
        econf \
                $(use_enable unicode newlib-mb) \
                $(use_enable nls) \
                ${myconf}
}

src_compile() {
        emake -C "${NEWLIBBUILD}"
}

src_install() {
        cd "${NEWLIBBUILD}"
        emake -j1 DESTDIR="${D}" install
#       env -uRESTRICT CHOST=${CTARGET} prepallstrip
        # minor hack to keep things clean
        rm -fR "${D}"/usr/share/info
        rm -fR "${D}"/usr/info
}




Reply via email to