[vlc-commits] [Git][videolan/vlc][3.0.x] 2 commits: contrib: tremor: use git integrity check
Steve Lhomme (@robUx4)
gitlab at videolan.org
Tue Oct 15 13:16:59 UTC 2024
Steve Lhomme pushed to branch 3.0.x at VideoLAN / VLC
Commits:
af4a6fc9 by Steve Lhomme at 2024-10-15T12:30:10+00:00
contrib: tremor: use git integrity check
We can't validate the checksum of the local tarball.
Different versions of xz may produce different checksums.
Ref. #28825
- - - - -
e8cc58ca by Steve Lhomme at 2024-10-15T12:30:10+00:00
contrib: pthreads: use git integrity check
We can't validate the checksum of the local tarball.
Different versions of xz may produce different checksums.
Ref. #28825
- - - - -
3 changed files:
- − contrib/src/pthreads/SHA512SUMS
- contrib/src/pthreads/rules.mak
- contrib/src/tremor/rules.mak
Changes:
=====================================
contrib/src/pthreads/SHA512SUMS deleted
=====================================
@@ -1 +0,0 @@
-4e2ffbb6cbe59c65f60d3f0035d1c2065b14ad16a63ae7a297f5c61d83b8e1b6847e3579996b91b2b9d807e3b9c1de2c60ee01a3349c9dd5f6e13d36f25221ea mingw-w64-2c35e8ff0d33916bd490e8932cba2049cd1af3d0.tar.xz
=====================================
contrib/src/pthreads/rules.mak
=====================================
@@ -34,6 +34,8 @@ $(TARBALLS)/mingw-w64-v$(MINGW64_VERSION).tar.bz2:
# .sum-pthreads: mingw-w64-v$(MINGW64_VERSION).tar.bz2
.sum-pthreads: mingw-w64-$(MINGW64_HASH).tar.xz
+ $(call check_githash,$(MINGW64_HASH))
+ touch $@
# pthreads: mingw-w64-v$(MINGW64_VERSION).tar.bz2 .sum-pthreads
pthreads: mingw-w64-$(MINGW64_HASH).tar.xz .sum-pthreads
=====================================
contrib/src/tremor/rules.mak
=====================================
@@ -11,7 +11,7 @@ $(TARBALLS)/tremor-git.tar.xz:
$(call download_git,$(TREMOR_URL),master,$(TREMOR_HASH))
.sum-tremor: tremor-git.tar.xz
- $(warning Integrity check skipped.)
+ $(call check_githash,$(TREMOR_HASH))
touch $@
tremor: tremor-git.tar.xz .sum-tremor
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/c0438390cc8f551dbaef0131fa5e054c82f9fc12...e8cc58caff295e99cbefc8608021dfc83ad8bfa4
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/c0438390cc8f551dbaef0131fa5e054c82f9fc12...e8cc58caff295e99cbefc8608021dfc83ad8bfa4
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list