Message ID | 20220722110103.4068083-1-john@metanate.com |
---|---|
State | Superseded |
Headers | show |
Series | package/fscryptctl: bump to v1.0.0 | expand |
Hello John, On Fri, 22 Jul 2022 12:01:03 +0100 John Keeping <john@metanate.com> wrote: > -FSCRYPTCTL_VERSION = f037dcf4354ce8f25d0f371b58dfe7a7ac27576f > +FSCRYPTCTL_VERSION = v1.0.0 > FSCRYPTCTL_SITE = $(call github,google,fscryptctl,$(FSCRYPTCTL_VERSION)) Thanks a lot! However, we want this to look like this: FSCRYPTCTL_VERSION = 1.0.0 FSCRYPTCTL_SITE = $(call github,google,fscryptctl,v$(FSCRYPTCTL_VERSION)) This allows the version field to properly match against values reported by release-monitoring.org, thanks to not having the "v" prefix. This will need an update in the hash file, of course, as the tarball name will also be without the "v". Thanks! Thomas
diff --git a/package/fscryptctl/fscryptctl.hash b/package/fscryptctl/fscryptctl.hash index b06b96c10f..6dc62a8485 100644 --- a/package/fscryptctl/fscryptctl.hash +++ b/package/fscryptctl/fscryptctl.hash @@ -1,3 +1,3 @@ # Locally calculated -sha256 970a8febbcbf315313711d8a7ee3d954dea593d8087744d3cba65f6cb4bebcc1 fscryptctl-f037dcf4354ce8f25d0f371b58dfe7a7ac27576f.tar.gz +sha256 3828d5ad9b93664b9fec0174fc5d8e96d7b021a7896da74efe18fabe5f01d638 fscryptctl-v1.0.0.tar.gz sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE diff --git a/package/fscryptctl/fscryptctl.mk b/package/fscryptctl/fscryptctl.mk index 4275bf2b83..8cc4dfdd8f 100644 --- a/package/fscryptctl/fscryptctl.mk +++ b/package/fscryptctl/fscryptctl.mk @@ -4,7 +4,7 @@ # ################################################################################ -FSCRYPTCTL_VERSION = f037dcf4354ce8f25d0f371b58dfe7a7ac27576f +FSCRYPTCTL_VERSION = v1.0.0 FSCRYPTCTL_SITE = $(call github,google,fscryptctl,$(FSCRYPTCTL_VERSION)) FSCRYPTCTL_LICENSE = Apache-2.0 FSCRYPTCTL_LICENSE_FILES = LICENSE
Bump to a tagged release, pulling in about 4 years of development. Note that v1 encryption policies have been deprecated and removed in this release. Since the previous version in Buildroot is old enough not to have support for v2 policies, this is an incompatible update. There are unlikely to be many v1 users and the format has some known vulnerabilities so no compatibility option is included. Signed-off-by: John Keeping <john@metanate.com> --- package/fscryptctl/fscryptctl.hash | 2 +- package/fscryptctl/fscryptctl.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)