public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-libs/newlib: newlib-2.2.0.ebuild ChangeLog
@ 2015-02-17  7:03 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2015-02-17  7:03 UTC (permalink / raw
  To: gentoo-commits

vapier      15/02/17 07:03:09

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

Revision  Changes    Path
1.27                 sys-libs/newlib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	31 Oct 2014 01:55:04 -0000	1.26
+++ ChangeLog	17 Feb 2015 07:03:09 -0000	1.27
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/newlib
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v 1.26 2014/10/31 01:55:04 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v 1.27 2015/02/17 07:03:09 vapier Exp $
+
+*newlib-2.2.0 (17 Feb 2015)
+
+  17 Feb 2015; Mike Frysinger <vapier@gentoo.org> +newlib-2.2.0.ebuild:
+  Version bump.
 
   31 Oct 2014; Mike Frysinger <vapier@gentoo.org>
   +files/newlib-2.1.0-msp430-destdir.patch, newlib-2.1.0.ebuild:



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

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

Index: newlib-2.2.0.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.ebuild,v 1.1 2015/02/17 07:03:09 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"
	KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
fi

export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
	if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; 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
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-libs/newlib: newlib-2.2.0.ebuild ChangeLog
@ 2015-05-18 16:26 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2015-05-18 16:26 UTC (permalink / raw
  To: gentoo-commits

vapier      15/05/18 16:26:10

  Modified:             newlib-2.2.0.ebuild ChangeLog
  Log:
  Stabilize for all.
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.3                  sys-libs/newlib/newlib-2.2.0.ebuild

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

Index: newlib-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/newlib/newlib-2.2.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- newlib-2.2.0.ebuild	27 Feb 2015 08:01:12 -0000	1.2
+++ newlib-2.2.0.ebuild	18 May 2015 16:26:10 -0000	1.3
@@ -1,6 +1,6 @@
 # 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.ebuild,v 1.2 2015/02/27 08:01:12 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/newlib-2.2.0.ebuild,v 1.3 2015/05/18 16:26:10 vapier Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-r3
 else
 	SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
-	KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
+	KEYWORDS="-* arm hppa m68k ~mips ppc ppc64 sh sparc x86"
 fi
 
 export CBUILD=${CBUILD:-${CHOST}}



1.30                 sys-libs/newlib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	27 Feb 2015 08:01:12 -0000	1.29
+++ ChangeLog	18 May 2015 16:26:10 -0000	1.30
@@ -1,6 +1,9 @@
 # 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.29 2015/02/27 08:01:12 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v 1.30 2015/05/18 16:26:10 vapier Exp $
+
+  18 May 2015; Mike Frysinger <vapier@gentoo.org> newlib-2.2.0.ebuild:
+  Stabilize for all.
 
   27 Feb 2015; Mike Frysinger <vapier@gentoo.org> newlib-1.18.0.ebuild,
   newlib-1.19.0.ebuild, newlib-1.20.0.ebuild, newlib-2.0.0.ebuild,





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-libs/newlib: newlib-2.2.0.ebuild ChangeLog
@ 2015-05-18 16:40 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2015-05-18 16:40 UTC (permalink / raw
  To: gentoo-commits

vapier      15/05/18 16:40:17

  Modified:             newlib-2.2.0.ebuild ChangeLog
  Log:
  Add a blocker against older SLOTs to help with upgrades #497344 by Alex Orange.
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.4                  sys-libs/newlib/newlib-2.2.0.ebuild

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

Index: newlib-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/newlib/newlib-2.2.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- newlib-2.2.0.ebuild	18 May 2015 16:26:10 -0000	1.3
+++ newlib-2.2.0.ebuild	18 May 2015 16:40:17 -0000	1.4
@@ -1,6 +1,6 @@
 # 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.ebuild,v 1.3 2015/05/18 16:26:10 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/newlib-2.2.0.ebuild,v 1.4 2015/05/18 16:40:17 vapier Exp $
 
 EAPI="4"
 
@@ -30,6 +30,9 @@
 IUSE="nls threads unicode crosscompile_opts_headers-only"
 RESTRICT="strip"
 
+# Handle the SLOT changes. #497344
+RDEPEND="!<${CATEGORY}/${PN}-2.1.0"
+
 NEWLIBBUILD="${WORKDIR}/build"
 
 pkg_setup() {



1.31                 sys-libs/newlib/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	18 May 2015 16:26:10 -0000	1.30
+++ ChangeLog	18 May 2015 16:40:17 -0000	1.31
@@ -1,6 +1,10 @@
 # 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.30 2015/05/18 16:26:10 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v 1.31 2015/05/18 16:40:17 vapier Exp $
+
+  18 May 2015; Mike Frysinger <vapier@gentoo.org> newlib-2.2.0.ebuild:
+  Add a blocker against older SLOTs to help with upgrades #497344 by Alex
+  Orange.
 
   18 May 2015; Mike Frysinger <vapier@gentoo.org> newlib-2.2.0.ebuild:
   Stabilize for all.





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-18 16:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-18 16:26 [gentoo-commits] gentoo-x86 commit in sys-libs/newlib: newlib-2.2.0.ebuild ChangeLog Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-18 16:40 Mike Frysinger (vapier)
2015-02-17  7:03 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