[arch-commits] Commit in riscv64-elf-newlib/repos/community-any (PKGBUILD PKGBUILD)

Massimiliano Torromeo mtorromeo at gemini.archlinux.org
Mon Apr 25 11:46:50 UTC 2022


    Date: Monday, April 25, 2022 @ 11:46:50
  Author: mtorromeo
Revision: 1190002

archrelease: copy trunk to community-any

Added:
  riscv64-elf-newlib/repos/community-any/PKGBUILD
    (from rev 1190001, riscv64-elf-newlib/trunk/PKGBUILD)
Deleted:
  riscv64-elf-newlib/repos/community-any/PKGBUILD

----------+
 PKGBUILD |  156 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-04-25 11:46:43 UTC (rev 1190001)
+++ PKGBUILD	2022-04-25 11:46:50 UTC (rev 1190002)
@@ -1,78 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
-# Contributor: Anatol Pomozov <anatol.pomozov at gmail.com>
-
-_target=riscv64-elf
-pkgname=$_target-newlib
-pkgver=4.1.0
-pkgrel=1
-_upstream_ver=$pkgver
-pkgdesc='A C standard library implementation intended for use on embedded systems (RISCV64 bare metal)'
-arch=(any)
-url='https://www.sourceware.org/newlib/'
-license=(BSD)
-makedepends=($_target-gcc)
-options=(!emptydirs !strip)
-source=(https://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
-sha512sums=('6a24b64bb8136e4cd9d21b8720a36f87a34397fd952520af66903e183455c5cf19bb0ee4607c12a05d139c6c59382263383cb62c461a839f969d23d3bc4b1d34')
-
-build() {
-  rm -rf build-{newlib,nano}
-  mkdir build-{newlib,nano}
-
-  cd "$srcdir"/build-newlib
-
-  export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
-  ../newlib-$_upstream_ver/configure \
-    --target=$_target \
-    --prefix=/usr \
-    --enable-newlib-io-long-long \
-    --enable-newlib-io-c99-formats \
-    --enable-newlib-register-fini \
-    --enable-newlib-retargetable-locking \
-    --disable-newlib-supplied-syscalls \
-    --disable-nls
-  make
-
-  cd "$srcdir"/build-nano
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  ../newlib-$_upstream_ver/configure \
-    --target=$_target \
-    --prefix=/usr \
-    --disable-newlib-supplied-syscalls \
-    --enable-newlib-reent-small \
-    --enable-newlib-retargetable-locking \
-    --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 \
-    --enable-newlib-nano-formatted-io \
-    --disable-nls
-  make
-}
-
-package() {
-  cd "$srcdir"/build-nano
-
-  make DESTDIR="$pkgdir" install -j1
-
-  find "$pkgdir" -regex ".*/lib\(c\|g\|rdimon\)\.a" -exec rename .a _nano.a '{}' \;
-  install -d "$pkgdir"/usr/$_target/include/newlib-nano
-  install -m644 -t "$pkgdir"/usr/$_target/include/newlib-nano "$pkgdir"/usr/$_target/include/newlib.h
-
-  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 '{}' \;
-
-  install -d "$pkgdir"/usr/share/licenses/$pkgname/
-  install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ "$srcdir"/newlib-$_upstream_ver/COPYING*
-}
-

Copied: riscv64-elf-newlib/repos/community-any/PKGBUILD (from rev 1190001, riscv64-elf-newlib/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-04-25 11:46:50 UTC (rev 1190002)
@@ -0,0 +1,78 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: Anatol Pomozov <anatol.pomozov at gmail.com>
+
+_target=riscv64-elf
+pkgname=$_target-newlib
+pkgver=4.1.0
+pkgrel=2
+_upstream_ver=$pkgver
+pkgdesc='A C standard library implementation intended for use on embedded systems (RISCV64 bare metal)'
+arch=(any)
+url='https://www.sourceware.org/newlib/'
+license=(BSD)
+makedepends=($_target-gcc)
+options=(!emptydirs !strip)
+source=(https://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
+sha512sums=('6a24b64bb8136e4cd9d21b8720a36f87a34397fd952520af66903e183455c5cf19bb0ee4607c12a05d139c6c59382263383cb62c461a839f969d23d3bc4b1d34')
+
+build() {
+  rm -rf build-{newlib,nano}
+  mkdir build-{newlib,nano}
+
+  cd "$srcdir"/build-newlib
+
+  export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
+  ../newlib-$_upstream_ver/configure \
+    --target=$_target \
+    --prefix=/usr \
+    --enable-newlib-io-long-long \
+    --enable-newlib-io-c99-formats \
+    --enable-newlib-register-fini \
+    --enable-newlib-retargetable-locking \
+    --disable-newlib-supplied-syscalls \
+    --disable-nls
+  make
+
+  cd "$srcdir"/build-nano
+
+  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+  ../newlib-$_upstream_ver/configure \
+    --target=$_target \
+    --prefix=/usr \
+    --disable-newlib-supplied-syscalls \
+    --enable-newlib-reent-small \
+    --enable-newlib-retargetable-locking \
+    --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 \
+    --enable-newlib-nano-formatted-io \
+    --disable-nls
+  make
+}
+
+package() {
+  cd "$srcdir"/build-nano
+
+  make DESTDIR="$pkgdir" install -j1
+
+  find "$pkgdir" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -exec rename .a _nano.a '{}' \;
+  install -d "$pkgdir"/usr/$_target/include/newlib-nano
+  install -m644 -t "$pkgdir"/usr/$_target/include/newlib-nano "$pkgdir"/usr/$_target/include/newlib.h
+
+  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 '{}' \;
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname/
+  install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ "$srcdir"/newlib-$_upstream_ver/COPYING*
+}
+



More information about the arch-commits mailing list