Date: Sunday, August 1, 2021 @ 11:33:47
  Author: daurnimator
Revision: 991949

archrelease: copy trunk to community-x86_64

Added:
  terraform/repos/community-x86_64/CHANGELOG.md
    (from rev 991947, terraform/trunk/CHANGELOG.md)
  terraform/repos/community-x86_64/PKGBUILD
    (from rev 991947, terraform/trunk/PKGBUILD)
  terraform/repos/community-x86_64/terraform.bash
    (from rev 991947, terraform/trunk/terraform.bash)
  terraform/repos/community-x86_64/terraform.fish
    (from rev 991947, terraform/trunk/terraform.fish)
  terraform/repos/community-x86_64/terraform.zsh
    (from rev 991947, terraform/trunk/terraform.zsh)
Deleted:
  terraform/repos/community-x86_64/CHANGELOG.md
  terraform/repos/community-x86_64/PKGBUILD

----------------+
 CHANGELOG.md   |   32 +++++++++----------
 PKGBUILD       |   89 +++++++++++++++++++++++++++++++------------------------
 terraform.bash |    1 
 terraform.fish |    9 +++++
 terraform.zsh  |    3 +
 5 files changed, 80 insertions(+), 54 deletions(-)

Deleted: CHANGELOG.md
===================================================================
--- CHANGELOG.md        2021-08-01 11:33:42 UTC (rev 991948)
+++ CHANGELOG.md        2021-08-01 11:33:47 UTC (rev 991949)
@@ -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 991947, 
terraform/trunk/CHANGELOG.md)
===================================================================
--- CHANGELOG.md                                (rev 0)
+++ CHANGELOG.md        2021-08-01 11:33:47 UTC (rev 991949)
@@ -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-08-01 11:33:42 UTC (rev 991948)
+++ PKGBUILD    2021-08-01 11:33:47 UTC (rev 991949)
@@ -1,38 +0,0 @@
-# Maintainer: Jerome Leclanche <jer...@leclan.ch>
-# Maintainer: Christian Rebischke <chris.rebisc...@archlinux.org>
-# Maintainer: Daurnimator <daurnima...@archlinux.org>
-
-pkgname=terraform
-pkgver=1.0.3
-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=('037d1a42a79b1e441245f28c5548245ddf5f5000510563508fb1e2503563dc4b27d1451ad25afd3cdb18bc004e83cc692101fd90f51c3e4e836905fd7e0cadcb')
-b2sums=('748e7e9438f6f3a80f87dd03cb7319cf5c84383261951f964fbcb5349bef8a508c38581cb9b18ae0e6279829ffc9f36c377a5cd05d45ed11f257beee437b8de0')
-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 991947, 
terraform/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2021-08-01 11:33:47 UTC (rev 991949)
@@ -0,0 +1,51 @@
+# Maintainer: Jerome Leclanche <jer...@leclan.ch>
+# Maintainer: Christian Rebischke <chris.rebisc...@archlinux.org>
+# Maintainer: Daurnimator <daurnima...@archlinux.org>
+
+pkgname=terraform
+pkgver=1.0.3
+pkgrel=2
+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";
+        "terraform.bash"
+        "terraform.fish"
+        "terraform.zsh")
+sha512sums=('037d1a42a79b1e441245f28c5548245ddf5f5000510563508fb1e2503563dc4b27d1451ad25afd3cdb18bc004e83cc692101fd90f51c3e4e836905fd7e0cadcb'
+            
'ea42bfc41288e5ad741fcddfbd5c1f8ba0088be0967b820db1e12e1dc13d1ba242b9cc1c247bf29c36ec59cdce76ff6703cf6b3f76cca5ec441a4927a01afe7d'
+            
'44b387fbd7b6abb8f524999d3d5f14fd4d5be54b2b34336a708c6a493c93c886a7230d3102601604f62cf95c53e91de683919213d0e1473ee84e606030d249e3'
+            
'ad991daf40f68c11fa66256177a04d97bd38d6a89c554d6261489d4de703852628ffc37429d862237ca24e15f6a7c915cfa027731189ac89a27f7b20c72ab4c9')
+b2sums=('748e7e9438f6f3a80f87dd03cb7319cf5c84383261951f964fbcb5349bef8a508c38581cb9b18ae0e6279829ffc9f36c377a5cd05d45ed11f257beee437b8de0'
+        
'd047735bbb006e9afbaa4b18af7a7f16a205ec528e91caa61a0b663dd6e24ec1df999216f0b7bd06e3b3c087b37f6ce3aa3cf3a20c892a9cc1962d33ce1b0bcc'
+        
'd3655f23ba8893d0f8c6cd5e8b42fae473ccfbc77d97b7424aa1f0d0057bfed6cb4d2505e74dd89099c39af6bc03b92eddedae5bb2821ff905d06b5e311be1f0'
+        
'd58712c8203e4a58ec68738f3d22457547a55d230018408400fd1ca433346171b72fa4a87f05efc93213c71f9757d3a8072149ca4e6894355e79f8cfae3bd55b')
+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() {
+    install -Dm644 terraform.bash 
"$pkgdir/usr/share/bash-completion/completions/terraform"
+    install -Dm644 terraform.fish 
"${pkgdir}/usr/share/fish/vendor_completions.d/terraform.fish"
+    install -Dm644 terraform.zsh 
"$pkgdir/usr/share/zsh/site-functions/_terraform"
+
+       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/terraform.bash (from rev 991947, 
terraform/trunk/terraform.bash)
===================================================================
--- terraform.bash                              (rev 0)
+++ terraform.bash      2021-08-01 11:33:47 UTC (rev 991949)
@@ -0,0 +1 @@
+complete -C /usr/bin/terraform terraform

Copied: terraform/repos/community-x86_64/terraform.fish (from rev 991947, 
terraform/trunk/terraform.fish)
===================================================================
--- terraform.fish                              (rev 0)
+++ terraform.fish      2021-08-01 11:33:47 UTC (rev 991949)
@@ -0,0 +1,9 @@
+
+function __complete_terraform
+    set -lx COMP_LINE (string join ' ' (commandline -o))
+    test (commandline -ct) = ""
+    and set COMP_LINE "$COMP_LINE "
+    /usr/bin/terraform
+end
+complete -c terraform -a "(__complete_terraform)"
+

Copied: terraform/repos/community-x86_64/terraform.zsh (from rev 991947, 
terraform/trunk/terraform.zsh)
===================================================================
--- terraform.zsh                               (rev 0)
+++ terraform.zsh       2021-08-01 11:33:47 UTC (rev 991949)
@@ -0,0 +1,3 @@
+#compdef terraform
+autoload -U +X bashcompinit && bashcompinit
+complete -o nospace -C /usr/bin/terraform terraform

Reply via email to