From 6bac8692d986c108fe016c6207bbefb0c9fbd3b4 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Thu, 20 Jul 2023 17:26:46 -0400 Subject: [PATCH] update ncurses and busybox source location Signed-off-by: Jason Hall --- busybox.yaml | 10 +++++----- ncurses.yaml | 11 +++++------ 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/busybox.yaml b/busybox.yaml index c35495e..3e8b728 100644 --- a/busybox.yaml +++ b/busybox.yaml @@ -1,7 +1,7 @@ package: name: busybox - version: 1.35.0 - epoch: 2 + version: 1.36.1 + epoch: 1 description: "swiss-army knife for embedded systems" target-architecture: - all @@ -37,13 +37,13 @@ environment: pipeline: - uses: fetch with: - uri: https://distfiles.alpinelinux.org/distfiles/edge/busybox-1.35.0.tar.bz2 - expected-sha256: faeeb244c35a348a334f4a59e44626ee870fb07b6884d68c10ae8bc19f83a694 + uri: https://distfiles.alpinelinux.org/distfiles/edge/busybox-${{package.version}}.tar.bz2 + expected-sha256: b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314 - name: Configure runs: | cp busyboxconfig .config - runs: | - make CC="${{host.triplet.gnu}}-gcc" V=1 -j$(nproc) + make CC="${{cross.triplet.gnu.glibc}}-gcc" V=1 -j$(nproc) - name: Install runs: | mkdir -p "${{targets.destdir}}"/usr/sbin diff --git a/ncurses.yaml b/ncurses.yaml index 787deea..d51eb33 100644 --- a/ncurses.yaml +++ b/ncurses.yaml @@ -1,7 +1,7 @@ package: name: ncurses - version: 6.3 - epoch: 1 + version: 6.4 + epoch: 0 description: "console display library" target-architecture: - all @@ -28,14 +28,13 @@ environment: pipeline: - uses: fetch with: -# uri: https://invisible-mirror.net/archives/ncurses/current/ncurses-${{package.version}}-20220820.tgz - uri: https://distfiles.alpinelinux.org/distfiles/edge/ncurses-${{package.version}}-20220820.tgz - expected-sha256: 7b810b01f71609fd31107a0b7794d0940d3ecc10c98ba19e83749419ba0934b9 + uri: https://distfiles.alpinelinux.org/distfiles/edge/ncurses-${{package.version}}-20230715.tgz + expected-sha256: 7a8dc72f7021815ac7d594e9bd74fc13b20ec4d84295e60c04163197e28aada7 - name: Configure runs: | ./configure \ --prefix=/usr \ - --host=${{host.triplet.gnu}} \ + --host=${{cross.triplet.gnu.glibc}} \ --mandir=/usr/share/man \ --without-ada \ --without-tests \