- 5.40.1 bump (see <https://metacpan.org/release/SHAY/perl-5.40.1/view/pod/perldelta.pod>) - Add config.over to make build od perl reproducible - Removed unnecessary conversion - Add new systemtap-sdt-dtrace to build deps
22 lines
460 B
Bash
22 lines
460 B
Bash
#!/bin/sh
|
|
|
|
case "$osname" in
|
|
linux)
|
|
osvers=6.12.0
|
|
osdesc="#1 smp preempt_dynamic $osvers"
|
|
os=gnulinux
|
|
;;
|
|
esac
|
|
|
|
# set configuration time
|
|
cf_time=$(LC_ALL=C date --utc -d @$SOURCE_DATE_EPOCH)
|
|
|
|
# set generic information for reproducibility
|
|
myhostname=localhost
|
|
mydomain=
|
|
machine_uname=$(uname -m | tr '[A-Z]' '[a-z]' | sed -e "s,['/],,g")
|
|
|
|
if [ -n "$osdesc" ]; then
|
|
myuname="$osname $myhostname $osvers $osdesc $machine_uname $os "
|
|
fi
|