Date: Thursday, July 8, 2021 @ 00:04:56
  Author: shibumi
Revision: 975319

archrelease: copy trunk to community-x86_64

Added:
  terraform/repos/community-x86_64/CHANGELOG.md
    (from rev 975318, terraform/trunk/CHANGELOG.md)
  terraform/repos/community-x86_64/PKGBUILD
    (from rev 975318, terraform/trunk/PKGBUILD)
Deleted:
  terraform/repos/community-x86_64/CHANGELOG.md
  terraform/repos/community-x86_64/PKGBUILD

--------------+
 CHANGELOG.md |   32 ++++++++++++------------
 PKGBUILD     |   74 ++++++++++++++++++++++++++++-----------------------------
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: CHANGELOG.md
===================================================================
--- CHANGELOG.md        2021-07-07 23:55:32 UTC (rev 975318)
+++ CHANGELOG.md        2021-07-08 00:04:56 UTC (rev 975319)
@@ -1,16 +0,0 @@
-## 1.0.1 (June 24, 2021)
-
-ENHANCEMENTS:
-
-* json-output: The JSON plan output now indicates which state values are 
sensitive. ([#28889](https://github.com/hashicorp/terraform/issues/28889))
-* cli: The darwin builds can now make use of the host DNS resolver, which will 
fix many network related issues on MacOS.
-
-BUG FIXES:
-
-* backend/remote: Fix faulty Terraform Cloud version check when migrating 
state to the remote backend with multiple local workspaces 
([#28864](https://github.com/hashicorp/terraform/issues/28864))
-* cli: Fix crash with deposed instances in json plan output 
([#28922](https://github.com/hashicorp/terraform/issues/28922))
-* core: Fix crash when provider modifies and unknown block during plan 
([#28941](https://github.com/hashicorp/terraform/issues/28941))
-* core: Diagnostic context was missing for some errors when validating blocks 
([#28979](https://github.com/hashicorp/terraform/issues/28979))
-* core: Fix crash when calling `setproduct` with unknown values 
([#28984](https://github.com/hashicorp/terraform/issues/28984))
-* json-output: Fix an issue where the JSON configuration representation was 
missing fully-unwrapped references. 
([#8884](https://github.com/hashicorp/terraform/issues/8884))
-* json-output: Fix JSON plan resource drift to remove unchanged resources. 
([#28975](https://github.com/hashicorp/terraform/issues/28975))

Copied: terraform/repos/community-x86_64/CHANGELOG.md (from rev 975318, 
terraform/trunk/CHANGELOG.md)
===================================================================
--- CHANGELOG.md                                (rev 0)
+++ CHANGELOG.md        2021-07-08 00:04:56 UTC (rev 975319)
@@ -0,0 +1,16 @@
+## 1.0.1 (June 24, 2021)
+
+ENHANCEMENTS:
+
+* json-output: The JSON plan output now indicates which state values are 
sensitive. ([#28889](https://github.com/hashicorp/terraform/issues/28889))
+* cli: The darwin builds can now make use of the host DNS resolver, which will 
fix many network related issues on MacOS.
+
+BUG FIXES:
+
+* backend/remote: Fix faulty Terraform Cloud version check when migrating 
state to the remote backend with multiple local workspaces 
([#28864](https://github.com/hashicorp/terraform/issues/28864))
+* cli: Fix crash with deposed instances in json plan output 
([#28922](https://github.com/hashicorp/terraform/issues/28922))
+* core: Fix crash when provider modifies and unknown block during plan 
([#28941](https://github.com/hashicorp/terraform/issues/28941))
+* core: Diagnostic context was missing for some errors when validating blocks 
([#28979](https://github.com/hashicorp/terraform/issues/28979))
+* core: Fix crash when calling `setproduct` with unknown values 
([#28984](https://github.com/hashicorp/terraform/issues/28984))
+* json-output: Fix an issue where the JSON configuration representation was 
missing fully-unwrapped references. 
([#8884](https://github.com/hashicorp/terraform/issues/8884))
+* json-output: Fix JSON plan resource drift to remove unchanged resources. 
([#28975](https://github.com/hashicorp/terraform/issues/28975))

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2021-07-07 23:55:32 UTC (rev 975318)
+++ PKGBUILD    2021-07-08 00:04:56 UTC (rev 975319)
@@ -1,37 +0,0 @@
-# Maintainer: Jerome Leclanche <[email protected]>
-# Maintainer: Christian Rebischke <[email protected]>
-# Maintainer: Daurnimator <[email protected]>
-
-pkgname=terraform
-pkgver=1.0.1
-pkgrel=1
-pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
-url="https://www.terraform.io/";
-arch=("x86_64")
-license=("MPL")
-makedepends=("go")
-depends=('glibc')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz";)
-sha512sums=('9909aa0802d2c4a77d138f4415e7d588a6bd450d0bba3adda695877f51bd41a7b9584c42291d41fbdc20fc1788c1f2bde54417c40e8c824ac4854b8670450c67')
-changelog="CHANGELOG.md"
-
-build() {
-       cd "$pkgname-$pkgver"
-       export CGO_CPPFLAGS="${CPPFLAGS}"
-       export CGO_CFLAGS="${CFLAGS}"
-       export CGO_CXXFLAGS="${CXXFLAGS}"
-       export CGO_LDFLAGS="${LDFLAGS}"
-       export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-       go build -o terraform-binary
-}
-
-check() {
-       cd "${pkgname}-${pkgver}"
-       go test -mod=readonly ./...
-}
-
-package() {
-       cd "$pkgname-$pkgver"
-       install -Dm755 terraform-binary "$pkgdir/usr/bin/terraform"
-       install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: terraform/repos/community-x86_64/PKGBUILD (from rev 975318, 
terraform/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2021-07-08 00:04:56 UTC (rev 975319)
@@ -0,0 +1,37 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Maintainer: Christian Rebischke <[email protected]>
+# Maintainer: Daurnimator <[email protected]>
+
+pkgname=terraform
+pkgver=1.0.2
+pkgrel=1
+pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
+url="https://www.terraform.io/";
+arch=("x86_64")
+license=("MPL")
+makedepends=("go")
+depends=('glibc')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz";)
+sha512sums=('d5d2db05d07e8f7266d58c9a99da86d0f67ee187a86ec467b5f4f107d75d78356e385a17221120f0c9d375389b77240de8026945fecba0bece6215c6fc544f04')
+changelog="CHANGELOG.md"
+
+build() {
+       cd "$pkgname-$pkgver"
+       export CGO_CPPFLAGS="${CPPFLAGS}"
+       export CGO_CFLAGS="${CFLAGS}"
+       export CGO_CXXFLAGS="${CXXFLAGS}"
+       export CGO_LDFLAGS="${LDFLAGS}"
+       export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+       go build -o terraform-binary
+}
+
+check() {
+       cd "${pkgname}-${pkgver}"
+       go test -mod=readonly ./...
+}
+
+package() {
+       cd "$pkgname-$pkgver"
+       install -Dm755 terraform-binary "$pkgdir/usr/bin/terraform"
+       install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Reply via email to