Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

yq: Fix checksum mismatch of manpage distfile #27525

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions textproc/yq/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PortGroup golang 1.0
go.setup github.com/mikefarah/yq 4.45.1 v
go.package github.com/mikefarah/yq/v4
github.tarball_from archive
revision 0
revision 1

homepage https://mikefarah.gitbook.io/yq

Expand All @@ -24,8 +24,8 @@ maintainers {gmail.com:herby.gillot @herbygillot} \
openmaintainer

# use generated man page to avoid build depedency on pandoc
master_sites-append https://github.com/mikefarah/yq/releases/download/v${version}/:yqman
distfiles-append yq_man_page_only.tar.gz:yqman
master_sites-append https://github.com/mikefarah/yq/releases/download/v${version}/yq_man_page_only${extract.suffix}?dummy=:yqman
distfiles-append yq_man_page_only-${version}${extract.suffix}:yqman

build.pre_args-append \
-ldflags \"-X ${go.package}/cmd.Version=${version}\"
Expand Down Expand Up @@ -60,10 +60,10 @@ checksums ${distname}${extract.suffix} \
rmd160 36d897af3821a8744194239780256014004bfa56 \
sha256 074a21a002c32a1db3850064ad1fc420083d037951c8102adecfea6c5fd96427 \
size 299351 \
yq_man_page_only.tar.gz \
rmd160 a38c7c842b404ecc70093f0bd5c076b310549784 \
sha256 3c3a40707480ebb939922690ff38bb236f473aee1d013c3bf5d6d8b7b1ad0edc \
size 42042
yq_man_page_only-${version}${extract.suffix} \
rmd160 80766c5c1d4b41db3bcb8ae1834e60c539fff680 \
sha256 e7b8a378baa9d8ae62ce3f84f9d914616adee771902835acb3da4c87d4331bcd \
size 42037

go.vendors gopkg.in/yaml.v3 \
lock v3.0.1 \
Expand Down