mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
package/check: don't conflict with release archive
In commit ee93213d18
(package/check: fix compile issue due to missing
source file), we switched from using the released tarball, to using the
autogenerated tarball from github.
However, that means that the filename of the archive did not change,
while its content did change. The hash was promptly updated, but that
means that the archive we cache on s.b.o (and possibly the one users
may also already have locally) will not match the new hash (and
conversely).
So we switch to using the sha1-hash of the commit corresponding to the
tag.
Reported-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Waldemar Brodkorb <wbx@openadk.org>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
624814f4ec
commit
87bc648720
@ -1,4 +1,4 @@
|
||||
# Locally computed
|
||||
sha256 998d355294bb94072f40584272cf4424571c396c631620ce463f6ea97aa67d2e check-0.15.2.tar.gz
|
||||
sha256 20e7360f5774844c09fde696e5bf71d061e9f53b3d763d886d3318d8893fdda4 check-11970a7e112dfe243a2e68773f014687df2900e8.tar.gz
|
||||
# License files, locally calculated
|
||||
sha256 a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861 COPYING.LESSER
|
||||
|
@ -4,7 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CHECK_VERSION = 0.15.2
|
||||
# This is the same as tag 0.15.2, but we can't use it, as to avoid conflict
|
||||
# with the released tarball that was incomplete
|
||||
CHECK_VERSION = 11970a7e112dfe243a2e68773f014687df2900e8
|
||||
CHECK_SITE = $(call github,libcheck,check,$(CHECK_VERSION))
|
||||
CHECK_INSTALL_STAGING = YES
|
||||
CHECK_DEPENDENCIES = host-pkgconf
|
||||
|
Loading…
Reference in New Issue
Block a user