Skip to content

Commit

Permalink
chore: use same source epoch everywhere
Browse files Browse the repository at this point in the history
Also disable openssl docs building.

Signed-off-by: Noel Georgi <[email protected]>
  • Loading branch information
frezbo committed May 22, 2023
1 parent 2e46e5b commit 4c5d7fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ncurses/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ steps:
sha256: "{{ .ncurses_sha256 }}"
sha512: "{{ .ncurses_sha512 }}"
env:
SOURCE_DATE_EPOCH: "1"
SOURCE_DATE_EPOCH: {{ .BUILD_ARG_SOURCE_DATE_EPOCH }}
prepare:
- |
tar -xzf ncurses.tar.gz --strip-components=1
Expand Down
5 changes: 2 additions & 3 deletions openssl/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ steps:
sha256: "{{ .openssl_sha256 }}"
sha512: "{{ .openssl_sha512 }}"
env:
SOURCE_DATE_EPOCH: "1"
SOURCE_DATE_EPOCH: {{ .BUILD_ARG_SOURCE_DATE_EPOCH }}
prepare:
- |
mkdir openssl
Expand Down Expand Up @@ -44,8 +44,7 @@ steps:
install:
- |
cd openssl
make DESTDIR=/rootfs install
rm -rf /rootfs/toolchain/share
make DESTDIR=/rootfs install_sw
finalize:
- from: /rootfs
to: /
2 changes: 1 addition & 1 deletion perl/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ steps:
sha256: "{{ .perl_sha256 }}"
sha512: "{{ .perl_sha512 }}"
env:
SOURCE_DATE_EPOCH: "1"
SOURCE_DATE_EPOCH: {{ .BUILD_ARG_SOURCE_DATE_EPOCH }}
prepare:
- |
tar -xJf perl.tar.xz --strip-components=1
Expand Down
2 changes: 1 addition & 1 deletion python3/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ steps:
sha256: "{{ .python_sha256 }}"
sha512: "{{ .python_sha512 }}"
env:
SOURCE_DATE_EPOCH: "1"
SOURCE_DATE_EPOCH: {{ .BUILD_ARG_SOURCE_DATE_EPOCH }}
LD_LIBRARY_PATH: "/toolchain/lib"
prepare:
- |
Expand Down

0 comments on commit 4c5d7fe

Please sign in to comment.