Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

update ncurses and busybox source location #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions busybox.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
11 changes: 5 additions & 6 deletions ncurses.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: ncurses
version: 6.3
epoch: 1
version: 6.4
epoch: 0
description: "console display library"
target-architecture:
- all
Expand 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 \
Expand Down