From: Tobias Geerinckx-Rice via Bug reports for GNU Guix <bug-guix@gnu.org>
To: Thorsten Wilms <t_w_@freenet.de>
Cc: 48589-done@debbugs.gnu.org
Subject: bug#48589: zam-plugins 3.13 hash mismatch
Date: Sat, 22 May 2021 22:00:42 +0200 [thread overview]
Message-ID: <87mtsmzggl.fsf@nckx> (raw)
In-Reply-To: <20210522212639.07dffc1e83ff9b5daeb5976c@freenet.de>
[-- Attachment #1.1: Type: text/plain, Size: 414 bytes --]
Thorsten,
Thorsten Wilms 写道:
> expected hash:
> 0bxvssqnnd7bph3w1d6xcmxradv4cqq3wyzyv1a1hfm71a0pdahs
> actual hash:
> 02blg0iqich4vx5z1ahj6avkh83yqszdiq83p9jd5qwm0i4llqjq
That's atrocious. Someone upstream changed the ‘3.13’ tag!
Luckily the attached diff shows a harmless CI change, so I've
updated the hash in commit
dac6c21623475dbd1fa9679e33649eba461dd6b2.
Thanks!
T G-R
[-- Attachment #1.2: d --]
[-- Type: text/plain, Size: 3625 bytes --]
--- /tmp/zam
+++ /gnu/store/jn3d9r416hgqj61fniq6zw9hyxxn1p4g-zam-plugins-3.13-checkout
│ --- /tmp/zam/.travis.yml
├── +++ /gnu/store/jn3d9r416hgqj61fniq6zw9hyxxn1p4g-zam-plugins-3.13-checkout/.travis.yml
│ @@ -12,29 +12,30 @@
│ services:
│ - docker
│
│ before_install:
│ - docker build -t damo22/zam-plugins-build:latest .
│
│ script:
│ - - docker run -v `pwd`:/tmp/build --entrypoint "/bin/bash" damo22/zam-plugins-build:latest -c "cd /tmp/build; CPUS=2 bash docker-script"
│ + - docker run -v `pwd`:/tmp/build --entrypoint "/bin/bash" damo22/zam-plugins-build:latest -c "cd /tmp/build; CPUS=2 TRAVIS_TAG=${TRAVIS_TAG} bash docker-script"
│
│ deploy:
│ provider: releases
│ - api_key: $RELEASES_TOKEN
│ + api_key: ${RELEASES_TOKEN}
│ file:
│ - - zam-plugins-$TRAVIS_TAG-linuxlv2.zip
│ - - zam-plugins-$TRAVIS_TAG-osxlv2.zip
│ - - zam-plugins-$TRAVIS_TAG-win32lv2.zip
│ - - zam-plugins-$TRAVIS_TAG-win64lv2.zip
│ - - zam-plugins-$TRAVIS_TAG-osxvst.zip
│ - - zam-plugins-$TRAVIS_TAG-win32vst.zip
│ - - zam-plugins-$TRAVIS_TAG-win64vst.zip
│ + - zam-plugins-${TRAVIS_TAG}-linuxlv2.zip
│ + - zam-plugins-${TRAVIS_TAG}-osxlv2.zip
│ + - zam-plugins-${TRAVIS_TAG}-win32lv2.zip
│ + - zam-plugins-${TRAVIS_TAG}-win64lv2.zip
│ + - zam-plugins-${TRAVIS_TAG}-osxvst.zip
│ + - zam-plugins-${TRAVIS_TAG}-win32vst.zip
│ + - zam-plugins-${TRAVIS_TAG}-win64vst.zip
│ skip_cleanup: true
│ overwrite: true
│ + draft: true
│ on:
│ repo: zamaudio/zam-plugins
│ tags: true
│
│ notifications:
│ email:
│ on_success: always
│ --- /tmp/zam/README.md
├── +++ /gnu/store/jn3d9r416hgqj61fniq6zw9hyxxn1p4g-zam-plugins-3.13-checkout/README.md
│ @@ -31,9 +31,9 @@
│ git submodule update --init
│ ./make-all
│
│
│ Package Maintainers:
│ ====================
│
│ - git checkout 3.10
│ + git checkout 3.13
│ make dist
│ --- /tmp/zam/docker-script
├── +++ /gnu/store/jn3d9r416hgqj61fniq6zw9hyxxn1p4g-zam-plugins-3.13-checkout/docker-script
│ @@ -72,24 +72,24 @@
│ cd ../win32
│ for f in *.lv2; do cd $f; perl -pi -e 's/\.so/\.dll/g' manifest.ttl; perl -pi -e 's/X11UI/WindowsUI/g' manifest.ttl; cd .. ; done
│ cd ../win64
│ for f in *.lv2; do cd $f; perl -pi -e 's/\.so/\.dll/g' manifest.ttl; perl -pi -e 's/X11UI/WindowsUI/g' manifest.ttl; cd .. ; done
│
│ # Release
│ cd ../linux
│ -zip -9 -r zam-plugins-$TRAVIS_TAG-linuxlv2.zip *.lv2
│ +zip -9 -r zam-plugins-${TRAVIS_TAG}-linuxlv2.zip *.lv2
│ mv *.zip ../bin
│ cd ../osx
│ -zip -9 -r zam-plugins-$TRAVIS_TAG-osxlv2.zip *.lv2
│ -zip -9 -r zam-plugins-$TRAVIS_TAG-osxvst.zip *.vst
│ +zip -9 -r zam-plugins-${TRAVIS_TAG}-osxlv2.zip *.lv2
│ +zip -9 -r zam-plugins-${TRAVIS_TAG}-osxvst.zip *.vst
│ mv *.zip ../bin
│ cd ../win32
│ -zip -9 -r zam-plugins-$TRAVIS_TAG-win32lv2.zip *.lv2
│ -zip -9 -r zam-plugins-$TRAVIS_TAG-win32vst.zip *-vst.dll
│ +zip -9 -r zam-plugins-${TRAVIS_TAG}-win32lv2.zip *.lv2
│ +zip -9 -r zam-plugins-${TRAVIS_TAG}-win32vst.zip *-vst.dll
│ mv *.zip ../bin
│ cd ../win64
│ -zip -9 -r zam-plugins-$TRAVIS_TAG-win64lv2.zip *.lv2
│ -zip -9 -r zam-plugins-$TRAVIS_TAG-win64vst.zip *-vst.dll
│ +zip -9 -r zam-plugins-${TRAVIS_TAG}-win64lv2.zip *.lv2
│ +zip -9 -r zam-plugins-${TRAVIS_TAG}-win64vst.zip *-vst.dll
│ mv *.zip ../bin
│ cd ../bin
│ ls -l
│ echo "ALL DONE!!!"
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
prev parent reply other threads:[~2021-05-22 20:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-22 19:26 bug#48589: zam-plugins 3.13 hash mismatch Thorsten Wilms
2021-05-22 20:00 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87mtsmzggl.fsf@nckx \
--to=bug-guix@gnu.org \
--cc=48589-done@debbugs.gnu.org \
--cc=me@tobias.gr \
--cc=t_w_@freenet.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).