[arch-commits] Commit in arm-none-eabi-newlib/repos/community-any (PKGBUILD PKGBUILD)
Anatol Pomozov
anatolik at archlinux.org
Tue Dec 30 20:56:07 UTC 2014
Date: Tuesday, December 30, 2014 @ 21:56:06
Author: anatolik
Revision: 125037
archrelease: copy trunk to community-any
Added:
arm-none-eabi-newlib/repos/community-any/PKGBUILD
(from rev 125036, arm-none-eabi-newlib/trunk/PKGBUILD)
Deleted:
arm-none-eabi-newlib/repos/community-any/PKGBUILD
----------+
PKGBUILD | 129 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 64 insertions(+), 65 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2014-12-30 20:55:55 UTC (rev 125036)
+++ PKGBUILD 2014-12-30 20:56:06 UTC (rev 125037)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov <anatol.pomozov at gmail.com>
-
-_target=arm-none-eabi
-pkgname=$_target-newlib
-pkgver=2.1.0
-pkgrel=3
-pkgdesc='A C standard library implementation intended for use on embedded systems (ARM bare metal)'
-arch=(any)
-url='http://www.sourceware.org/newlib/'
-license=(BSD)
-makedepends=($_target-gcc git)
-options=(!emptydirs !strip staticlibs !buildflags)
-# newlib 2.1.0 does not have newlib-nano integrated yet. Let's use the latest HEAD until 2.1.1 release.
-source=(git://sourceware.org/git/newlib.git#commit=0daa4d6f9b06af8530e50d0dce793ef9a5292aec)
-sha1sums=('SKIP')
-
-build() {
- rm -rf build-{newlib,nano}
- mkdir build-{newlib,nano}
-
- export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
- cd "$srcdir"/build-newlib
- ../newlib/configure \
- --target=$_target \
- --prefix=/usr \
- --disable-newlib-supplied-syscalls \
- --disable-nls \
- --enable-newlib-io-long-long \
- --enable-newlib-register-fini
- make
-
- export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
- cd "$srcdir"/build-nano
- ../newlib/configure \
- --target=$_target \
- --prefix=/usr \
- --disable-newlib-supplied-syscalls \
- --disable-nls \
- --enable-newlib-reent-small \
- --disable-newlib-fvwrite-in-streamio \
- --disable-newlib-fseek-optimization \
- --disable-newlib-wide-orient \
- --enable-newlib-nano-malloc \
- --disable-newlib-unbuf-stream-opt \
- --enable-lite-exit \
- --enable-newlib-global-atexit
- make
-}
-
-package() {
- cd "$srcdir"/build-nano
- make DESTDIR="$pkgdir" install -j1
- find "$pkgdir" -regex ".*/lib\(c\|g\|rdimon\)\.a" -exec rename .a _nano.a '{}' \;
-
- cd "$srcdir"/build-newlib
- make DESTDIR="$pkgdir" install -j1
-
- find "$pkgdir"/usr/$_target/lib \( -name "*.a" -or -name "*.o" \) -exec $_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
- rm "$pkgdir"/usr/share/info/*.info
-
- install -d "$pkgdir"/usr/share/licenses/$pkgname/
- install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ "$srcdir"/newlib/COPYING*
-}
Copied: arm-none-eabi-newlib/repos/community-any/PKGBUILD (from rev 125036, arm-none-eabi-newlib/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2014-12-30 20:56:06 UTC (rev 125037)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Anatol Pomozov <anatol.pomozov at gmail.com>
+
+_target=arm-none-eabi
+pkgname=$_target-newlib
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='A C standard library implementation intended for use on embedded systems (ARM bare metal)'
+arch=(any)
+url='http://www.sourceware.org/newlib/'
+license=(BSD)
+makedepends=($_target-gcc)
+options=(!emptydirs !strip)
+source=(ftp://sourceware.org/pub/newlib/newlib-$pkgver.tar.gz)
+sha1sums=('16fc7bc82e445341b9e741a3fc57b818691fa375')
+
+build() {
+ rm -rf build-{newlib,nano}
+ mkdir build-{newlib,nano}
+
+ export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
+ cd "$srcdir"/build-newlib
+ ../newlib-$pkgver/configure \
+ --target=$_target \
+ --prefix=/usr \
+ --disable-newlib-supplied-syscalls \
+ --disable-nls \
+ --enable-newlib-io-long-long \
+ --enable-newlib-register-fini
+ make
+
+ export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+ cd "$srcdir"/build-nano
+ ../newlib-$pkgver/configure \
+ --target=$_target \
+ --prefix=/usr \
+ --disable-newlib-supplied-syscalls \
+ --disable-nls \
+ --enable-newlib-reent-small \
+ --disable-newlib-fvwrite-in-streamio \
+ --disable-newlib-fseek-optimization \
+ --disable-newlib-wide-orient \
+ --enable-newlib-nano-malloc \
+ --disable-newlib-unbuf-stream-opt \
+ --enable-lite-exit \
+ --enable-newlib-global-atexit
+ make
+}
+
+package() {
+ cd "$srcdir"/build-nano
+ make DESTDIR="$pkgdir" install -j1
+ find "$pkgdir" -regex ".*/lib\(c\|g\|rdimon\)\.a" -exec rename .a _nano.a '{}' \;
+
+ cd "$srcdir"/build-newlib
+ make DESTDIR="$pkgdir" install -j1
+
+ find "$pkgdir"/usr/$_target/lib \( -name "*.a" -or -name "*.o" \) -exec $_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
+
+ rm "$pkgdir"/usr/share/info/*.info
+
+ install -d "$pkgdir"/usr/share/licenses/$pkgname/
+ install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ "$srcdir"/newlib-$pkgver/COPYING*
+}
More information about the arch-commits
mailing list