* update terraform to 1.10.0-1

This commit is contained in:
Alexander Baldeck 2024-12-29 22:13:13 +01:00
parent 7e0efc7d73
commit 205b359149
2 changed files with 8 additions and 15 deletions

View File

@ -1,21 +1,22 @@
pkgbase = terraform
pkgdesc = HashiCorp tool for building and updating infrastructure as code idempotently
pkgver = 1.9.2
pkgver = 1.10.0
pkgrel = 1
url = https://github.com/hashicorp/terraform
arch = x86_64
arch = powerpc64le
license = BUSL-1.1
makedepends = go
depends = glibc
optdepends = diffutils: for running `terraform fmt -diff`
options = !lto
source = terraform-1.9.2.tar.gz::https://github.com/hashicorp/terraform/archive/v1.9.2.tar.gz
source = terraform-1.10.0.tar.gz::https://github.com/hashicorp/terraform/archive/v1.10.0.tar.gz
source = terraform.bash
source = terraform.zsh
sha512sums = 66d311bd2da360dda15551ad7bd2c9008a106de3d724319493fc68335f6a0ce45d6562daf4b7d1fc856ccb23e13a6bb435cf31af177a58eed42c43289a17ad9c
sha512sums = 57fc56639e400cbbb56a9445fd163774febbf00c3d518b8087bd2391dc747c2ce35fb88fe68d7a75a273e3dd2f4a0ff57d817ad1ab350f8b5bc7edcef0257bc1
sha512sums = ea42bfc41288e5ad741fcddfbd5c1f8ba0088be0967b820db1e12e1dc13d1ba242b9cc1c247bf29c36ec59cdce76ff6703cf6b3f76cca5ec441a4927a01afe7d
sha512sums = ad991daf40f68c11fa66256177a04d97bd38d6a89c554d6261489d4de703852628ffc37429d862237ca24e15f6a7c915cfa027731189ac89a27f7b20c72ab4c9
b2sums = ee488e8ec8777b150f2f820a4549a84f46ae19232c78e8d555661a04ed2364b548ed82de901be0f81a0d6afbd042fda81ba102ed7e1318e5dfa11b54392a07e6
b2sums = 25b5d798f44ac554def747498cd1a1cd58d8c6e2e119233eb1a46a8c13af8c9d0e5f677c371843510e5bb11c89c9050cf35f9ac9ca2337a64d1acf1ad7c3cc98
b2sums = d047735bbb006e9afbaa4b18af7a7f16a205ec528e91caa61a0b663dd6e24ec1df999216f0b7bd06e3b3c087b37f6ce3aa3cf3a20c892a9cc1962d33ce1b0bcc
b2sums = d58712c8203e4a58ec68738f3d22457547a55d230018408400fd1ca433346171b72fa4a87f05efc93213c71f9757d3a8072149ca4e6894355e79f8cfae3bd55b

View File

@ -5,7 +5,7 @@
# Contributor: Jerome Leclanche <jerome@leclan.ch>
pkgname=terraform
pkgver=1.9.2
pkgver=1.10.0
pkgrel=1
pkgdesc="HashiCorp tool for building and updating infrastructure as code idempotently"
url="https://github.com/hashicorp/terraform"
@ -18,10 +18,10 @@ options=('!lto')
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz"
"terraform.bash"
"terraform.zsh")
sha512sums=('66d311bd2da360dda15551ad7bd2c9008a106de3d724319493fc68335f6a0ce45d6562daf4b7d1fc856ccb23e13a6bb435cf31af177a58eed42c43289a17ad9c'
sha512sums=('57fc56639e400cbbb56a9445fd163774febbf00c3d518b8087bd2391dc747c2ce35fb88fe68d7a75a273e3dd2f4a0ff57d817ad1ab350f8b5bc7edcef0257bc1'
'ea42bfc41288e5ad741fcddfbd5c1f8ba0088be0967b820db1e12e1dc13d1ba242b9cc1c247bf29c36ec59cdce76ff6703cf6b3f76cca5ec441a4927a01afe7d'
'ad991daf40f68c11fa66256177a04d97bd38d6a89c554d6261489d4de703852628ffc37429d862237ca24e15f6a7c915cfa027731189ac89a27f7b20c72ab4c9')
b2sums=('ee488e8ec8777b150f2f820a4549a84f46ae19232c78e8d555661a04ed2364b548ed82de901be0f81a0d6afbd042fda81ba102ed7e1318e5dfa11b54392a07e6'
b2sums=('25b5d798f44ac554def747498cd1a1cd58d8c6e2e119233eb1a46a8c13af8c9d0e5f677c371843510e5bb11c89c9050cf35f9ac9ca2337a64d1acf1ad7c3cc98'
'd047735bbb006e9afbaa4b18af7a7f16a205ec528e91caa61a0b663dd6e24ec1df999216f0b7bd06e3b3c087b37f6ce3aa3cf3a20c892a9cc1962d33ce1b0bcc'
'd58712c8203e4a58ec68738f3d22457547a55d230018408400fd1ca433346171b72fa4a87f05efc93213c71f9757d3a8072149ca4e6894355e79f8cfae3bd55b')
@ -43,15 +43,7 @@ build() {
check() {
cd "${pkgname}-${pkgver}"
# TestInit_cancelModules: https://github.com/hashicorp/terraform/issues/33347
# TestJSONHook_create: https://github.com/hashicorp/terraform/issues/34410
# TestTest/custom_condition_inputs: https://github.com/hashicorp/terraform/issues/34421
go test -mod=readonly \
-skip TestInit_cancelModules \
-skip TestMTLSServer_NoCertFails \
-skip TestJSONHook_create \
-skip TestTest/custom_condition_inputs \
-skip TestTest/custom_condition_inputs \
./...
}