rdate: 0.9 -> 0.10

This commit is contained in:
Tim Biermann 2021-12-13 11:53:51 +01:00
parent 003223e092
commit b48b63b530
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 16 additions and 16 deletions

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqr9HPQJdr6+Ue7GKQFWZARuK8ST6a9y5cSqduqoIiMfWPasTogZUMZqFT4z05oI+nwhz4Ixde7b+w/LckW+NFAo=
SHA256 (Pkgfile) = 1cde000f59e63c88aa33166c527046f6fd438a6a6769a24c1f8f7c6a3ee2f93e
RWRJc1FUaeVeqkcajSrTJ/E1Mgh+AWmtbXdzrq1V2besVq1z/s8VLrF+2b3FSD1KjrJFfVfRkRjwfg3LM5X0RrGA1eCOTQGxFAc=
SHA256 (Pkgfile) = dadf1dad1a7fc049af2b72acf011099be3b0bb2492294dc9a7c379f17f2f9bb2
SHA256 (.footprint) = 79491872e3f3d7fcf8b9bb31cccdf16a41987da60df1d6d451d9b62f0335d7d5
SHA256 (outils-0.9.tar.gz) = b7afdf1a0d11b9d5a0e1ea165ad2841e32b21245ec573170cb6498a13bf43b73
SHA256 (outils-0.10.tar.gz) = 6b5101e805c1baa8ca7111b4df8260bfa1b2b7b8670ed341af7233a9971706d4
SHA256 (ntpleaps.patch) = 057258ba8907bf4cda09d30d84a4500b4faa213f959d0cd98a87321637c86d25
SHA256 (rdate) = b050a5e063a5b0b8ce6dde657729335ce7dc3eb02e002fb35f37aa0ef71d3aa1

View File

@ -1,23 +1,23 @@
# Description: Time setting software implementing RFC 868 (inetd time) and RFC 2030 (SNTP/NTP) protocols
# URL: https://github.com/leahneukirchen/outils
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://github.com/leahneukirchen/outils
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=rdate
version=0.9
version=0.10
release=1
source=(https://github.com/leahneukirchen/outils/archive/v$version/outils-$version.tar.gz
ntpleaps.patch rdate)
source=(https://github.com/leahneukirchen/outils/archive/v$version/outils-$version.tar.gz
ntpleaps.patch rdate)
build() {
cd outils-$version
cd outils-$version
# FS1462
patch -p0 -d src/usr.sbin/rdate -i $SRC/ntpleaps.patch
# FS1462
patch -p0 -d src/usr.sbin/rdate -i $SRC/ntpleaps.patch
make PREFIX=/usr src/usr.sbin/rdate/rdate
make PREFIX=/usr src/usr.sbin/rdate/rdate
install -d $PKG/{usr/{bin,share/man/man8},etc/cron/daily}
install -m 0755 src/usr.sbin/rdate/rdate $PKG/usr/bin
install -m 0644 src/usr.sbin/rdate/rdate.8 $PKG/usr/share/man/man8
install -m 0755 $SRC/rdate $PKG/etc/cron/daily
install -d $PKG/{usr/{bin,share/man/man8},etc/cron/daily}
install -m 0755 src/usr.sbin/rdate/rdate $PKG/usr/bin
install -m 0644 src/usr.sbin/rdate/rdate.8 $PKG/usr/share/man/man8
install -m 0755 $SRC/rdate $PKG/etc/cron/daily
}