[arch-commits] Commit in loki/repos/community-x86_64 (14 files)

2020-12-27 Thread Daurnimator via arch-commits
Date: Monday, December 28, 2020 @ 04:12:01
  Author: daurnimator
Revision: 794334

archrelease: copy trunk to community-x86_64

Added:
  loki/repos/community-x86_64/PKGBUILD
(from rev 794333, loki/trunk/PKGBUILD)
  loki/repos/community-x86_64/loki.service
(from rev 794333, loki/trunk/loki.service)
  loki/repos/community-x86_64/loki.sysusers
(from rev 794333, loki/trunk/loki.sysusers)
  loki/repos/community-x86_64/loki.tmpfiles
(from rev 794333, loki/trunk/loki.tmpfiles)
  loki/repos/community-x86_64/promtail.service
(from rev 794333, loki/trunk/promtail.service)
  loki/repos/community-x86_64/promtail.sysusers
(from rev 794333, loki/trunk/promtail.sysusers)
  loki/repos/community-x86_64/promtail.tmpfiles
(from rev 794333, loki/trunk/promtail.tmpfiles)
Deleted:
  loki/repos/community-x86_64/PKGBUILD
  loki/repos/community-x86_64/loki.service
  loki/repos/community-x86_64/loki.sysusers
  loki/repos/community-x86_64/loki.tmpfiles
  loki/repos/community-x86_64/promtail.service
  loki/repos/community-x86_64/promtail.sysusers
  loki/repos/community-x86_64/promtail.tmpfiles

---+
 PKGBUILD  |  173 +++-
 loki.service  |   55 
 loki.sysusers |2 
 loki.tmpfiles |2 
 promtail.service  |   52 +++
 promtail.sysusers |4 -
 promtail.tmpfiles |2 
 7 files changed, 150 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-28 04:09:41 UTC (rev 794333)
+++ PKGBUILD2020-12-28 04:12:01 UTC (rev 794334)
@@ -1,82 +0,0 @@
-# Maintainer: Daurnimator 
-# Maintainer: Jelle van der Waa 
-
-pkgname=('loki' 'promtail' 'logcli')
-pkgver=1.5.0
-pkgrel=2
-pkgdesc='like Prometheus, but for logs'
-url='https://github.com/grafana/loki'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'systemd')
-source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
-promtail.sysusers promtail.service promtail.tmpfiles
-loki.sysusers loki.service loki.tmpfiles)
-sha512sums=('31d61ba9cb47afeb0971fe35347683cf96e3b7a4da44b640b0065e64268109c2a1e9011f94d3fcf7912e98f8b079a001cd892a06e3f8d11796f23c8acfc93fff'
-
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
-
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
-
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
-
'f00b3cb64b71d3ca5a422a2bdff1f81a3e2707c4f73bcb27e24338eabff039b96125c847aaae43c9b22ccc47f89585118c1d0e0b29c4eb7b6f9260c68f8a8324'
-
'3c40d70366ee0ac3d11c87a818d82dfb4e64143e905187b287f7716ee009640bab6676b8a348e526458a00e4cff35fbd8e9d81bdaa6db38a5d673294f09e6638'
-
'de40d1e6752edbf8c21317ce1ee10f98dfc869e569c07092c613f7144e261e9438683a145a2e0e37e2a9fc758c5c2f02e1d0ac1c60347e98b147e4a550ec6040')
-
-build() {
-  cd loki-$pkgver
-
-  for cmd in loki promtail logcli; do
-go build \
-  -trimpath \
-  -buildmode=pie \
-  -mod=readonly \
-  -modcacherw \
-  -ldflags " \
- -X github.com/grafana/loki/pkg/build.Version=$pkgver
- -X github.com/grafana/loki/pkg/build.BuildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH})
- -extldflags ${LDFLAGS}" \
-  ./cmd/"$cmd"
-  done
-}
-
-check() {
-  cd loki-$pkgver
-
-  go test -v $(go list  ./... | grep -v "distributor")
-}
-
-package_loki() {
-  backup=('etc/loki/loki.yaml')
-
-  cd loki-$pkgver
-
-  install -Dm755 -t "$pkgdir"/usr/bin loki
-
-  install -Dm644 cmd/loki/loki-local-config.yaml $pkgdir/etc/loki/loki.yaml
-
-  install -Dm644 ${srcdir}/loki.sysusers "$pkgdir/usr/lib/sysusers.d/loki.conf"
-  install -Dm644 ${srcdir}/loki.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/loki.conf"
-  install -Dm644 ${srcdir}/loki.service 
"$pkgdir/usr/lib/systemd/system/loki.service"
-}
-
-package_promtail() {
-  pkgdesc="An agent which ships the contents of local logs to a private Loki 
instance or Grafana Cloud"
-  backup=('etc/loki/promtail.yaml')
-
-  cd loki-$pkgver
-
-  install -Dm755 -t "$pkgdir"/usr/bin promtail
-
-  install -Dm644 cmd/promtail/promtail-local-config.yaml 
$pkgdir/etc/loki/promtail.yaml
-
-  install -Dm644 ${srcdir}/promtail.sysusers 
"$pkgdir/usr/lib/sysusers.d/promtail.conf"
-  install -Dm644 ${srcdir}/promtail.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/promtail.conf"
-  install -Dm644 ${srcdir}/promtail.service 
"$pkgdir/usr/lib/systemd/system/promtail.service"
-}
-
-package_logcli() {
-  pkgdesc="A command-line for loki"
-
-  cd loki-$pkgver
-
-  install -Dm755 -t "$pkgdir"/usr/bin logcli
-}

Copied: loki/repos/community-x86_64/PKGBUILD (from rev 794333, 

[arch-commits] Commit in loki/trunk (PKGBUILD loki.service promtail.service)

2020-12-27 Thread Daurnimator via arch-commits
Date: Monday, December 28, 2020 @ 04:09:41
  Author: daurnimator
Revision: 794333

upgpkg: loki 2.1.0-1

Modified:
  loki/trunk/PKGBUILD
  loki/trunk/loki.service
  loki/trunk/promtail.service

--+
 PKGBUILD |   27 ++-
 loki.service |1 +
 promtail.service |2 +-
 3 files changed, 20 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-28 03:42:06 UTC (rev 794332)
+++ PKGBUILD2020-12-28 04:09:41 UTC (rev 794333)
@@ -1,9 +1,9 @@
 # Maintainer: Daurnimator 
 # Maintainer: Jelle van der Waa 
 
-pkgname=('loki' 'promtail' 'logcli')
-pkgver=1.5.0
-pkgrel=2
+pkgname=('loki' 'loki-canary' 'promtail' 'logcli')
+pkgver=2.1.0
+pkgrel=1
 pkgdesc='like Prometheus, but for logs'
 url='https://github.com/grafana/loki'
 arch=('x86_64')
@@ -13,18 +13,18 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
 promtail.sysusers promtail.service promtail.tmpfiles
 loki.sysusers loki.service loki.tmpfiles)
-sha512sums=('31d61ba9cb47afeb0971fe35347683cf96e3b7a4da44b640b0065e64268109c2a1e9011f94d3fcf7912e98f8b079a001cd892a06e3f8d11796f23c8acfc93fff'
+sha512sums=('e488e393bf123b1f822e1dc304c3938f67c3872e9fc33b0caf377927d97cecb0a191c4ff42bf4e7d573a87d03adbef170dbcfbadf206022a5c29205dc36c12ce'
 
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
-
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
+
'b63ee3f5c3948f50f1ea46247c5e828f6f0b48294e3ccfe190c13516d24dcecd17ecb985e53048654f843f953625de6a0a8c1edd8adbe1b15edb877e6aa63af4'
 
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
 
'f00b3cb64b71d3ca5a422a2bdff1f81a3e2707c4f73bcb27e24338eabff039b96125c847aaae43c9b22ccc47f89585118c1d0e0b29c4eb7b6f9260c68f8a8324'
-
'3c40d70366ee0ac3d11c87a818d82dfb4e64143e905187b287f7716ee009640bab6676b8a348e526458a00e4cff35fbd8e9d81bdaa6db38a5d673294f09e6638'
+
'41726c7c0a13f672ee0ab58e8decc5c3bd7558d7efdc219dc16f567895c9fdfc44eb730c7ea426edc9e778bbe45c58570986f7141946f3b3f78f563441a86901'
 
'de40d1e6752edbf8c21317ce1ee10f98dfc869e569c07092c613f7144e261e9438683a145a2e0e37e2a9fc758c5c2f02e1d0ac1c60347e98b147e4a550ec6040')
 
 build() {
   cd loki-$pkgver
 
-  for cmd in loki promtail logcli; do
+  for cmd in loki loki-canary promtail logcli; do
 go build \
   -trimpath \
   -buildmode=pie \
@@ -33,7 +33,8 @@
   -ldflags " \
  -X github.com/grafana/loki/pkg/build.Version=$pkgver
  -X github.com/grafana/loki/pkg/build.BuildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH})
- -extldflags ${LDFLAGS}" \
+ -linkmode external
+ -extldflags \"${LDFLAGS}\"" \
   ./cmd/"$cmd"
   done
 }
@@ -41,7 +42,7 @@
 check() {
   cd loki-$pkgver
 
-  go test -v $(go list  ./... | grep -v "distributor")
+  go test -v ./...
 }
 
 package_loki() {
@@ -58,6 +59,14 @@
   install -Dm644 ${srcdir}/loki.service 
"$pkgdir/usr/lib/systemd/system/loki.service"
 }
 
+package_loki-canary() {
+  pkgdesc="A standalone app that audits the log capturing performance of Loki"
+
+  cd loki-$pkgver
+
+  install -Dm755 -t "$pkgdir"/usr/bin loki-canary
+}
+
 package_promtail() {
   pkgdesc="An agent which ships the contents of local logs to a private Loki 
instance or Grafana Cloud"
   backup=('etc/loki/promtail.yaml')

Modified: loki.service
===
--- loki.service2020-12-28 03:42:06 UTC (rev 794332)
+++ loki.service2020-12-28 04:09:41 UTC (rev 794333)
@@ -1,5 +1,6 @@
 [Unit]
 Description=Loki is a horizontally-scalable, highly-available, multi-tenant 
log aggregation system
+Documentation=https://grafana.com/docs/loki/latest/
 After=network.target
 
 [Service]

Modified: promtail.service
===
--- promtail.service2020-12-28 03:42:06 UTC (rev 794332)
+++ promtail.service2020-12-28 04:09:41 UTC (rev 794333)
@@ -1,6 +1,6 @@
 [Unit]
 Description=promtail is the agent responsible for gathering logs and sending 
them to Loki.
-Documentation=https://github.com/grafana/loki/blob/master/docs/promtail.md
+Documentation=https://grafana.com/docs/loki/latest/clients/promtail/
 
 [Service]
 Type=simple


[arch-commits] Commit in terraform/trunk (CHANGELOG.md PKGBUILD)

2020-12-27 Thread Daurnimator via arch-commits
Date: Sunday, December 27, 2020 @ 23:50:32
  Author: daurnimator
Revision: 794079

upgpkg: terraform 0.14.3-1

Modified:
  terraform/trunk/CHANGELOG.md
  terraform/trunk/PKGBUILD

--+
 CHANGELOG.md |   23 +++
 PKGBUILD |4 ++--
 2 files changed, 25 insertions(+), 2 deletions(-)

Modified: CHANGELOG.md
===
--- CHANGELOG.md2020-12-27 23:50:27 UTC (rev 794078)
+++ CHANGELOG.md2020-12-27 23:50:32 UTC (rev 794079)
@@ -1,3 +1,26 @@
+## 0.14.3 (December 17, 2020)
+
+ENHANCEMENTS:
+
+* `terraform output`: Now supports a new "raw" mode, activated by the `-raw` 
option, for printing out the raw string representation of a particular output 
value. ([#27212](https://github.com/hashicorp/terraform/issues/27212))
+
+Only primitive-typed values have a string representation, so this 
formatting mode is not compatible with complex types. The `-json` mode is still 
available as a general way to get a machine-readable representation of an 
output value of any type.
+
+* config: `for_each` now allows maps whose _element values_ are sensitive, as 
long as the element keys and the map itself are not sensitive. 
([#27247](https://github.com/hashicorp/terraform/issues/27247))
+
+BUG FIXES:
+
+* config: Fix `anytrue` and `alltrue` functions when called with values which 
are not known until apply. 
([#27240](https://github.com/hashicorp/terraform/issues/27240))
+* config: Fix `sum` function when called with values which are not known until 
apply. Also allows `sum` to cope with numbers too large to represent in 
float64, along with correctly handling errors around infinite values. 
([#27249](https://github.com/hashicorp/terraform/issues/27249))
+* config: Fixed panic when referencing sensitive values in resource `count` 
expressions ([#27238](https://github.com/hashicorp/terraform/issues/27238))
+* config: Fix incorrect attributes in diagnostics when validating objects 
([#27010](https://github.com/hashicorp/terraform/issues/27010))
+* core: Prevent unexpected updates during plan when multiple sensitive values 
are involved ([#27318](https://github.com/hashicorp/terraform/issues/27318))
+* dependencies: Fix several small bugs related to the use of `sensitive` 
values with expressions and functions.
+* lang: Fix panic when calling `coalescelist` with a `null` argument 
([#26988](https://github.com/hashicorp/terraform/issues/26988))
+* `terraform apply`: `-refresh=false` was skipped when running apply directly 
([#27233](https://github.com/hashicorp/terraform/issues/27233))
+* `terraform init`: setting `-get-plugins` to `false` will now cause a 
warning, as this flag has been a no-op since 0.13.0 and usage is better served 
through using `provider_installation` blocks 
([#27092](https://github.com/hashicorp/terraform/issues/27092))
+* `terraform init` and other commands which interact with the dependency lock 
file: These will now generate a normal error message if the lock file is 
incorrectly a directory, rather than crashing as before. 
([#27250](https://github.com/hashicorp/terraform/issues/27250))
+
 ## 0.14.2 (December 08, 2020)
 
 BUG FIXES:

Modified: PKGBUILD
===
--- PKGBUILD2020-12-27 23:50:27 UTC (rev 794078)
+++ PKGBUILD2020-12-27 23:50:32 UTC (rev 794079)
@@ -3,7 +3,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=terraform
-pkgver=0.14.2
+pkgver=0.14.3
 pkgrel=1
 pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
 url="https://www.terraform.io/;
@@ -12,7 +12,7 @@
 makedepends=("go")
 depends=('glibc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha512sums=('15f3bc0b9f4a9ebe6aa27f63806083ef018ef52d1424fb0e80892f3aefb6fba45660dab01da16bc39defdfbc212a714e61fe8bf8fe7206e9fc3db9074be3c655')
+sha512sums=('fdfc82d74f530ccb984223f5d988a059ad61a6316892077a8fda13bca0b3726a31eeba714a397de82abb42b4fac537c267082da3fd0b3243231be279cc02556b')
 changelog="CHANGELOG.md"
 
 build() {


[arch-commits] Commit in terraform/repos/community-x86_64 (4 files)

2020-12-27 Thread Daurnimator via arch-commits
Date: Sunday, December 27, 2020 @ 23:51:24
  Author: daurnimator
Revision: 794082

archrelease: copy trunk to community-x86_64

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

--+
 CHANGELOG.md |  251 +++--
 PKGBUILD |   74 
 2 files changed, 174 insertions(+), 151 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2020-12-27 23:51:18 UTC (rev 794081)
+++ CHANGELOG.md2020-12-27 23:51:24 UTC (rev 794082)
@@ -1,114 +0,0 @@
-## 0.14.2 (December 08, 2020)
-
-BUG FIXES:
-
-* backend/remote: Disable the remote backend version compatibility check for 
workspaces set to use the "latest" pseudo-version. 
([#27199](https://github.com/hashicorp/terraform/issues/27199))
-* providers/terraform: Disable the remote backend version compatibility check 
for the `terraform_remote_state` data source. This check is unnecessary, 
because the data source is read-only by definition. 
([#27197](https://github.com/hashicorp/terraform/issues/27197))
-
-## 0.14.1 (December 08, 2020)
-
-ENHANCEMENTS:
-
-* backend/remote: When using the enhanced remote backend with commands which 
locally modify state, verify that the local Terraform version and the 
configured remote workspace Terraform version are compatible. This prevents 
accidentally upgrading the remote state to an incompatible version. The check 
is skipped for commands which do not write state, and can also be disabled by 
the use of a new command-line flag, `-ignore-remote-version`. 
([#26947](https://github.com/hashicorp/terraform/issues/26947))
-
-BUG FIXES:
-
-* configs: Fix for errors when using multiple layers of sensitive input 
variables ([#27095](https://github.com/hashicorp/terraform/issues/27095))
-* configs: Fix error when using sensitive input variables in conditionals 
([#27107](https://github.com/hashicorp/terraform/issues/27107))
-* core: Fix permanent diff when a resource changes only in sensitivity, for 
example due to changing the sensitivity of a variable or output used as an 
attribute value. ([#27128](https://github.com/hashicorp/terraform/issues/27128))
-* core: Fix issues where `ignore_changes` appears to not work, or causes 
validation errors with some resources. 
([#27141](https://github.com/hashicorp/terraform/issues/27141))
-* `terraform fmt`: Fix incorrect formatting with attribute expressions 
enclosed in parentheses. 
([#27040](https://github.com/hashicorp/terraform/issues/27040))
-
-## 0.14.0 (December 02, 2020)
-
-NEW FEATURES:
-* Terraform now supports marking input variables as sensitive, and will 
propagate that sensitivity through expressions that derive from sensitive input 
variables.
-
-* `terraform init` will now generate a lock file in the configuration 
directory which you can check in to your version control so that Terraform can 
make the same version selections in future. 
([#26524](https://github.com/hashicorp/terraform/issues/26524))
-
-If you wish to retain the previous behavior of always taking the newest 
version allowed by the version constraints on each install, you can run 
`terraform init -upgrade` to see that behavior.
-
-* Terraform will now support reading and writing all compatible state files, 
even from future versions of Terraform. This means that users of Terraform 
0.14.0 will be able to share state files with future Terraform versions until a 
new state file format version is needed. We have no plans to change the state 
file format at this time. 
([#26752](https://github.com/hashicorp/terraform/issues/26752))
-
-UPGRADE NOTES:
-* Outputs that reference sensitive values (which includes variables marked as 
sensitive, other module outputs marked as `sensitive`, or attributes a provider 
defines as `sensitive` if the `provider_sensitive_attrs` experiment is 
activated) must _also_ be defined as sensitive, or Terraform will error at plan.
-* The `version` argument inside provider configuration blocks has been 
documented as deprecated since Terraform 0.12. As of 0.14 it will now also 
generate an explicit deprecation warning. To avoid the warning, use [provider 
requirements](https://www.terraform.io/docs/configuration/provider-requirements.html)
 declarations instead. 
([#26135](https://github.com/hashicorp/terraform/issues/26135))
-* The official MacOS builds of Terraform now require MacOS 10.12 Sierra or 
later. ([#26357](https://github.com/hashicorp/terraform/issues/26357))
-* TLS certificate verification for outbound HTTPS requests from Terraform CLI 
no longer treats the certificate's "common name" as a valid hostname when the 
certificate lacks any "subject alternative name" entries for 

[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-12-21 Thread Daurnimator via arch-commits
Date: Monday, December 21, 2020 @ 13:15:22
  Author: daurnimator
Revision: 781013

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 781011, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-21 13:15:18 UTC (rev 781012)
+++ PKGBUILD2020-12-21 13:15:22 UTC (rev 781013)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.9
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('cc80321ecda99d9b66b4c2e5243ae595513e4f26916a44414f9b33dcd3a3a36e23795a2b7e9c12b67c9b89b67643f4b1491f7af0707a2ae139b6479d4cddcf29')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 781011, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-21 13:15:22 UTC (rev 781013)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.10
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('150a4e19c83da0c3086479ade2f7664ee3b485298791634046e38af5c084e45ee989fdbe4b8b0838e955f02611e6640845ee491f735cd802343f6fad1f02e3fc')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/trunk (PKGBUILD)

2020-12-21 Thread Daurnimator via arch-commits
Date: Monday, December 21, 2020 @ 13:14:29
  Author: daurnimator
Revision: 781010

upgpkg: chezmoi 1.8.10-1

Modified:
  chezmoi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-21 13:14:10 UTC (rev 781009)
+++ PKGBUILD2020-12-21 13:14:29 UTC (rev 781010)
@@ -3,7 +3,7 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.8.9
+pkgver=1.8.10
 pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('cc80321ecda99d9b66b4c2e5243ae595513e4f26916a44414f9b33dcd3a3a36e23795a2b7e9c12b67c9b89b67643f4b1491f7af0707a2ae139b6479d4cddcf29')
+sha512sums=('150a4e19c83da0c3086479ade2f7664ee3b485298791634046e38af5c084e45ee989fdbe4b8b0838e955f02611e6640845ee491f735cd802343f6fad1f02e3fc')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in firefox-extension-passff/repos/community-any (2 files)

2020-12-21 Thread Daurnimator via arch-commits
Date: Monday, December 21, 2020 @ 13:11:12
  Author: daurnimator
Revision: 781005

archrelease: copy trunk to community-any

Added:
  firefox-extension-passff/repos/community-any/PKGBUILD
(from rev 781003, firefox-extension-passff/trunk/PKGBUILD)
Deleted:
  firefox-extension-passff/repos/community-any/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-21 13:11:00 UTC (rev 781004)
+++ PKGBUILD2020-12-21 13:11:12 UTC (rev 781005)
@@ -1,21 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Willem Mulder <14mrh4...@gmail.com>
-
-pkgname=firefox-extension-passff
-pkgver=1.10.4
-pkgrel=1
-pkgdesc="zx2c4 pass manager addon for firefox"
-url="https://github.com/passff/passff;
-license=('GPL2')
-arch=('any')
-groups=('firefox-addons')
-replaces=('firefox-passff')
-depends=('firefox' 'passff-host')
-source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
-sha512sums=('0aef5dfc48f4984f8655655eb51d6a79fddf3ef93ff89ffe546ea9c8b8cf6b18930ba4ae5c41492c97cd65f01e249b84f3cd2cd5ae7ca2016a7d1a71ee5c689f')
-noextract=("$pkgname-$pkgver.xpi")
-
-package() {
-install -Dm644 "$pkgname-$pkgver.xpi" \
-"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
-}

Copied: firefox-extension-passff/repos/community-any/PKGBUILD (from rev 781003, 
firefox-extension-passff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-21 13:11:12 UTC (rev 781005)
@@ -0,0 +1,21 @@
+# Maintainer: Daurnimator 
+# Contributor: Willem Mulder <14mrh4...@gmail.com>
+
+pkgname=firefox-extension-passff
+pkgver=1.10.5
+pkgrel=1
+pkgdesc="zx2c4 pass manager addon for firefox"
+url="https://github.com/passff/passff;
+license=('GPL2')
+arch=('any')
+groups=('firefox-addons')
+replaces=('firefox-passff')
+depends=('firefox' 'passff-host')
+source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
+sha512sums=('dc73a9e106c8fc859066b45185d40c99dfb134ae0e7912867da30303a83fa2630143150208f2dfa6c31777490d29ce3c70498cb1df4369071d186bda1b72b7a2')
+noextract=("$pkgname-$pkgver.xpi")
+
+package() {
+install -Dm644 "$pkgname-$pkgver.xpi" \
+"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
+}


[arch-commits] Commit in firefox-extension-passff/trunk (PKGBUILD)

2020-12-21 Thread Daurnimator via arch-commits
Date: Monday, December 21, 2020 @ 13:10:21
  Author: daurnimator
Revision: 781001

upgpkg: firefox-extension-passff 1.10.5-1

Modified:
  firefox-extension-passff/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-21 13:09:23 UTC (rev 781000)
+++ PKGBUILD2020-12-21 13:10:21 UTC (rev 781001)
@@ -2,7 +2,7 @@
 # Contributor: Willem Mulder <14mrh4...@gmail.com>
 
 pkgname=firefox-extension-passff
-pkgver=1.10.4
+pkgver=1.10.5
 pkgrel=1
 pkgdesc="zx2c4 pass manager addon for firefox"
 url="https://github.com/passff/passff;
@@ -12,7 +12,7 @@
 replaces=('firefox-passff')
 depends=('firefox' 'passff-host')
 
source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
-sha512sums=('0aef5dfc48f4984f8655655eb51d6a79fddf3ef93ff89ffe546ea9c8b8cf6b18930ba4ae5c41492c97cd65f01e249b84f3cd2cd5ae7ca2016a7d1a71ee5c689f')
+sha512sums=('dc73a9e106c8fc859066b45185d40c99dfb134ae0e7912867da30303a83fa2630143150208f2dfa6c31777490d29ce3c70498cb1df4369071d186bda1b72b7a2')
 noextract=("$pkgname-$pkgver.xpi")
 
 package() {


[arch-commits] Commit in zig/repos/community-x86_64 (4 files)

2020-12-13 Thread Daurnimator via arch-commits
Date: Monday, December 14, 2020 @ 03:25:22
  Author: daurnimator
Revision: 774780

archrelease: copy trunk to community-x86_64

Added:
  zig/repos/community-x86_64/PKGBUILD
(from rev 774779, zig/trunk/PKGBUILD)
  zig/repos/community-x86_64/resolve_DNS.patch
(from rev 774779, zig/trunk/resolve_DNS.patch)
Deleted:
  zig/repos/community-x86_64/PKGBUILD
  zig/repos/community-x86_64/resolve_DNS.patch

---+
 PKGBUILD  |  102 ++--
 resolve_DNS.patch |   46 +++
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:24:10 UTC (rev 774779)
+++ PKGBUILD2020-12-14 03:25:22 UTC (rev 774780)
@@ -1,51 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Marc Tiehuis 
-
-pkgname=zig
-pkgver=0.7.0
-pkgrel=1
-pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
-arch=('x86_64')
-url='https://ziglang.org/'
-license=('MIT')
-depends=('clang' 'llvm-libs' 'lld')
-makedepends=('cmake' 'llvm')
-source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
-"resolve_DNS.patch")
-sha256sums=('0efd2cf6c3b05723db80e9cf193bc55150bba84ca41f855a90f53fc756445f83'
-'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
-
-prepare() {
-cd "$pkgname-$pkgver"
-# https://github.com/ziglang/zig/issues/6898
-patch -p1 < ../resolve_DNS.patch
-}
-
-build() {
-cd "$pkgname-$pkgver"
-
-mkdir -p build
-cd build
-# The zig CMakeLists uses build type Debug if not set
-# override it back to None so makepkg env vars are respected
-cmake \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DZIG_PREFER_CLANG_CPP_DYLIB=ON \
-..
-make
-}
-
-check() {
-cd "$pkgname-$pkgver/build"
-
-./zig build test
-}
-
-package() {
-cd "$pkgname-$pkgver"
-
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-make -C build DESTDIR="$pkgdir" install
-}

Copied: zig/repos/community-x86_64/PKGBUILD (from rev 774779, 
zig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:25:22 UTC (rev 774780)
@@ -0,0 +1,51 @@
+# Maintainer: Daurnimator 
+# Contributor: Marc Tiehuis 
+
+pkgname=zig
+pkgver=0.7.1
+pkgrel=1
+pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
+arch=('x86_64')
+url='https://ziglang.org/'
+license=('MIT')
+depends=('clang' 'llvm-libs' 'lld')
+makedepends=('cmake' 'llvm')
+source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
+"resolve_DNS.patch")
+sha256sums=('2db3b944ab368d955b48743d9f7c963b8f96de1a441ba5a35e197237cc6dae44'
+'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
+
+prepare() {
+cd "$pkgname-$pkgver"
+# https://github.com/ziglang/zig/issues/6898
+patch -p1 < ../resolve_DNS.patch
+}
+
+build() {
+cd "$pkgname-$pkgver"
+
+mkdir -p build
+cd build
+# The zig CMakeLists uses build type Debug if not set
+# override it back to None so makepkg env vars are respected
+cmake \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DZIG_PREFER_CLANG_CPP_DYLIB=ON \
+..
+make
+}
+
+check() {
+cd "$pkgname-$pkgver/build"
+
+./zig build test
+}
+
+package() {
+cd "$pkgname-$pkgver"
+
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+make -C build DESTDIR="$pkgdir" install
+}

Deleted: resolve_DNS.patch
===
--- resolve_DNS.patch   2020-12-14 03:24:10 UTC (rev 774779)
+++ resolve_DNS.patch   2020-12-14 03:25:22 UTC (rev 774780)
@@ -1,23 +0,0 @@
-diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig
-index 9f40bb5a3..15dd8c920 100644
 a/lib/std/net/test.zig
-+++ b/lib/std/net/test.zig
-@@ -106,18 +106,6 @@ test "resolve DNS" {
- }
- }
- 
--// Resolve localhost, this should not fail.
--{
--const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
--const localhost_v6 = try net.Address.parseIp("::2", 80);
--
--const result = try net.getAddressList(testing.allocator, "localhost", 
80);
--defer result.deinit();
--for (result.addrs) |addr| {
--if (addr.eql(localhost_v4) or addr.eql(localhost_v6)) break;
--} else @panic("unexpected address for localhost");
--}
--
- {
- // The tests are required to work even when there is no Internet 
connection,
- // so some of these errors we must accept and skip the test.

Copied: zig/repos/community-x86_64/resolve_DNS.patch (from rev 774779, 
zig/trunk/resolve_DNS.patch)

[arch-commits] Commit in zig/trunk (PKGBUILD)

2020-12-13 Thread Daurnimator via arch-commits
Date: Monday, December 14, 2020 @ 03:24:10
  Author: daurnimator
Revision: 774779

upgpkg: zig 0.7.1-1

Modified:
  zig/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:20:59 UTC (rev 774778)
+++ PKGBUILD2020-12-14 03:24:10 UTC (rev 774779)
@@ -2,7 +2,7 @@
 # Contributor: Marc Tiehuis 
 
 pkgname=zig
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'llvm')
 source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
 "resolve_DNS.patch")
-sha256sums=('0efd2cf6c3b05723db80e9cf193bc55150bba84ca41f855a90f53fc756445f83'
+sha256sums=('2db3b944ab368d955b48743d9f7c963b8f96de1a441ba5a35e197237cc6dae44'
 'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
 
 prepare() {


[arch-commits] Commit in yq/repos/community-any (PKGBUILD PKGBUILD)

2020-12-13 Thread Daurnimator via arch-commits
Date: Sunday, December 13, 2020 @ 09:47:23
  Author: daurnimator
Revision: 773969

archrelease: copy trunk to community-any

Added:
  yq/repos/community-any/PKGBUILD
(from rev 773968, yq/trunk/PKGBUILD)
Deleted:
  yq/repos/community-any/PKGBUILD

--+
 PKGBUILD |   67 +++--
 1 file changed, 35 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-13 09:46:26 UTC (rev 773968)
+++ PKGBUILD2020-12-13 09:47:23 UTC (rev 773969)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Caleb Maclennan 
-
-pkgname=yq
-pkgver=2.11.1
-pkgrel=1
-pkgdesc="Command-line YAML/XML processor - jq wrapper for YAML/XML documents"
-arch=('any')
-url="https://github.com/kislyuk/yq;
-license=('Apache')
-depends=('jq' 'python-setuptools' 'python-yaml' 'python-xmltodict'
- 'python-argcomplete')
-checkdepends=('python-toml')
-optdepends=('python-toml')
-source=("https://files.pythonhosted.org/packages/source/y/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('74f64e3784a34d8a18efd8addc83cf5ca3478a0a69517d70fd9158a3809f99e0')
-b2sums=('4b51652958121c16462304d21ebe545cca835b6c189a6d7550c7ea0ffc8b7088a02eb61ee412295d85d502a339ec3ccbc67b8dc12cd45a07246cbafa7d7feaf7')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-  python test/test.py
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: yq/repos/community-any/PKGBUILD (from rev 773968, yq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-13 09:47:23 UTC (rev 773969)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Maintainer: Daurnimator 
+# Maintainer: Polyzen 
+# Contributor: Caleb Maclennan 
+
+pkgname=yq
+pkgver=2.11.1
+pkgrel=2
+pkgdesc="Command-line YAML/XML processor - jq wrapper for YAML/XML documents"
+arch=('any')
+url="https://github.com/kislyuk/yq;
+license=('Apache')
+depends=('jq' 'python-setuptools' 'python-yaml' 'python-xmltodict'
+ 'python-argcomplete')
+checkdepends=('python-toml')
+optdepends=('python-toml')
+source=("https://files.pythonhosted.org/packages/source/y/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('74f64e3784a34d8a18efd8addc83cf5ca3478a0a69517d70fd9158a3809f99e0')
+b2sums=('4b51652958121c16462304d21ebe545cca835b6c189a6d7550c7ea0ffc8b7088a02eb61ee412295d85d502a339ec3ccbc67b8dc12cd45a07246cbafa7d7feaf7')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python test/test.py
+}
+
+package() {
+  cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in yq/trunk (PKGBUILD)

2020-12-13 Thread Daurnimator via arch-commits
Date: Sunday, December 13, 2020 @ 09:46:26
  Author: daurnimator
Revision: 773968

use python hashseed to make reproducible

Modified:
  yq/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-13 09:39:50 UTC (rev 773967)
+++ PKGBUILD2020-12-13 09:46:26 UTC (rev 773968)
@@ -1,9 +1,11 @@
 # Maintainer: Felix Yan 
+# Maintainer: Daurnimator 
+# Maintainer: Polyzen 
 # Contributor: Caleb Maclennan 
 
 pkgname=yq
 pkgver=2.11.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Command-line YAML/XML processor - jq wrapper for YAML/XML documents"
 arch=('any')
 url="https://github.com/kislyuk/yq;
@@ -28,5 +30,6 @@
 
 package() {
   cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }


[arch-commits] Commit in kustomize/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-12-13 Thread Daurnimator via arch-commits
Date: Sunday, December 13, 2020 @ 08:07:40
  Author: daurnimator
Revision: 773873

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 773872, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-13 08:06:51 UTC (rev 773872)
+++ PKGBUILD2020-12-13 08:07:40 UTC (rev 773873)
@@ -1,56 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=3.8.7
-pkgrel=1
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('23272b3e7ff688f09825b5d636eb2d55dc8eb8cffe2fef0eba1c5c64604db552abd955f81bd09f84cd670db1f9a36e4b87141fa18bc89d83cb8e0da554a2a1fb')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  # install completions
-  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
-  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
-  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
-  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
-  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
-  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
-
-  # install binary
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 773872, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-13 08:07:40 UTC (rev 773873)
@@ -0,0 +1,56 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=3.9.0
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d773a5358993dfe6f72cc24f9b869b24885c25b58e713d619b5f15693da448e959b85b261a7bb02a53fea63099ba472b355a88a72b3d2d011519cfd05fa7684b')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  # install completions
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
+  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
+  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
+  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
+  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
+  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
+
+  # install binary
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in kustomize/trunk (PKGBUILD)

2020-12-13 Thread Daurnimator via arch-commits
Date: Sunday, December 13, 2020 @ 08:06:51
  Author: daurnimator
Revision: 773872

upgpkg: kustomize 3.9.0-1

Modified:
  kustomize/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-13 07:22:45 UTC (rev 773871)
+++ PKGBUILD2020-12-13 08:06:51 UTC (rev 773872)
@@ -2,7 +2,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=kustomize
-pkgver=3.8.7
+pkgver=3.9.0
 pkgrel=1
 pkgdesc="Template-free customization of Kubernetes YAML manifests"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('23272b3e7ff688f09825b5d636eb2d55dc8eb8cffe2fef0eba1c5c64604db552abd955f81bd09f84cd670db1f9a36e4b87141fa18bc89d83cb8e0da554a2a1fb')
+sha512sums=('d773a5358993dfe6f72cc24f9b869b24885c25b58e713d619b5f15693da448e959b85b261a7bb02a53fea63099ba472b355a88a72b3d2d011519cfd05fa7684b')
 
 build(){
   cd "kustomize-kustomize-v${pkgver}/kustomize"


[arch-commits] Commit in argocd-cli/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-12-09 Thread Daurnimator via arch-commits
Date: Thursday, December 10, 2020 @ 01:53:28
  Author: daurnimator
Revision: 772963

archrelease: copy trunk to community-x86_64

Added:
  argocd-cli/repos/community-x86_64/PKGBUILD
(from rev 772962, argocd-cli/trunk/PKGBUILD)
Deleted:
  argocd-cli/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-10 01:52:45 UTC (rev 772962)
+++ PKGBUILD2020-12-10 01:53:28 UTC (rev 772963)
@@ -1,44 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=argocd-cli
-pkgver=1.7.8
-pkgrel=1
-pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
-arch=('x86_64')
-url='https://argoproj.github.io/argo-cd/'
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;)
-sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f')
-
-build() {
-  cd "argo-cd-$pkgver"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  go run github.com/gobuffalo/packr/packr build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
-  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -linkmode=external \
-  -extldflags \"${LDFLAGS}\"" \
-./cmd/argocd
-
-  ./argocd completion bash > argocd.bash
-  ./argocd completion zsh > argocd.zsh
-}
-
-package() {
-  cd "argo-cd-$pkgver"
-
-  install -D argocd "$pkgdir/usr/bin/argocd"
-  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
-  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
-}

Copied: argocd-cli/repos/community-x86_64/PKGBUILD (from rev 772962, 
argocd-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-10 01:53:28 UTC (rev 772963)
@@ -0,0 +1,44 @@
+# Maintainer: Daurnimator 
+
+pkgname=argocd-cli
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
+arch=('x86_64')
+url='https://argoproj.github.io/argo-cd/'
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;)
+sha512sums=('d8f687a5ecae06e168a0f1354dfa6ab2203fc56924dddcbf97967e96ee3222b01d42065d91132b38ea43176aa06e690bde11012680fbc7d10ec2bc490e9238b0')
+
+build() {
+  cd "argo-cd-$pkgver"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  go run github.com/gobuffalo/packr/packr build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
+  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
+  -linkmode=external \
+  -extldflags \"${LDFLAGS}\"" \
+./cmd/argocd
+
+  ./argocd completion bash > argocd.bash
+  ./argocd completion zsh > argocd.zsh
+}
+
+package() {
+  cd "argo-cd-$pkgver"
+
+  install -D argocd "$pkgdir/usr/bin/argocd"
+  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
+  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
+}


[arch-commits] Commit in argocd-cli/trunk (PKGBUILD)

2020-12-09 Thread Daurnimator via arch-commits
Date: Thursday, December 10, 2020 @ 01:52:45
  Author: daurnimator
Revision: 772962

upgpkg: argocd-cli 1.8.0-1

Modified:
  argocd-cli/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-10 01:07:53 UTC (rev 772961)
+++ PKGBUILD2020-12-10 01:52:45 UTC (rev 772962)
@@ -1,7 +1,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=argocd-cli
-pkgver=1.7.8
+pkgver=1.8.0
 pkgrel=1
 pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;)
-sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f')
+sha512sums=('d8f687a5ecae06e168a0f1354dfa6ab2203fc56924dddcbf97967e96ee3222b01d42065d91132b38ea43176aa06e690bde11012680fbc7d10ec2bc490e9238b0')
 
 build() {
   cd "argo-cd-$pkgver"


[arch-commits] Commit in terraform/repos/community-x86_64 (4 files)

2020-12-09 Thread Daurnimator via arch-commits
Date: Wednesday, December 9, 2020 @ 12:08:55
  Author: daurnimator
Revision: 772607

archrelease: copy trunk to community-x86_64

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

--+
 CHANGELOG.md |  207 +++--
 PKGBUILD |   74 ++--
 2 files changed, 151 insertions(+), 130 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2020-12-09 12:07:28 UTC (rev 772606)
+++ CHANGELOG.md2020-12-09 12:08:55 UTC (rev 772607)
@@ -1,93 +0,0 @@
-## 0.14.0 (December 02, 2020)
-
-NEW FEATURES:
-* Terraform now supports marking input variables as sensitive, and will 
propagate that sensitivity through expressions that derive from sensitive input 
variables.
-
-* `terraform init` will now generate a lock file in the configuration 
directory which you can check in to your version control so that Terraform can 
make the same version selections in future. 
([#26524](https://github.com/hashicorp/terraform/issues/26524))
-
-If you wish to retain the previous behavior of always taking the newest 
version allowed by the version constraints on each install, you can run 
`terraform init -upgrade` to see that behavior.
-
-* Terraform will now support reading and writing all compatible state files, 
even from future versions of Terraform. This means that users of Terraform 
0.14.0 will be able to share state files with future Terraform versions until a 
new state file format version is needed. We have no plans to change the state 
file format at this time. 
([#26752](https://github.com/hashicorp/terraform/issues/26752))
-
-UPGRADE NOTES:
-* Outputs that reference sensitive values (which includes variables marked as 
sensitive, other module outputs marked as `sensitive`, or attributes a provider 
defines as `sensitive` if the `provider_sensitive_attrs` experiment is 
activated) must _also_ be defined as sensitive, or Terraform will error at plan.
-* The `version` argument inside provider configuration blocks has been 
documented as deprecated since Terraform 0.12. As of 0.14 it will now also 
generate an explicit deprecation warning. To avoid the warning, use [provider 
requirements](https://www.terraform.io/docs/configuration/provider-requirements.html)
 declarations instead. 
([#26135](https://github.com/hashicorp/terraform/issues/26135))
-* The official MacOS builds of Terraform now require MacOS 10.12 Sierra or 
later. ([#26357](https://github.com/hashicorp/terraform/issues/26357))
-* TLS certificate verification for outbound HTTPS requests from Terraform CLI 
no longer treats the certificate's "common name" as a valid hostname when the 
certificate lacks any "subject alternative name" entries for the hostname. TLS 
server certificates must list their hostnames as a "DNS name" in the subject 
alternative names field. 
([#26357](https://github.com/hashicorp/terraform/issues/26357))
-* Outbound HTTPS requests from Terraform CLI now enforce [RFC 
8446](https://tools.ietf.org/html/rfc8446)'s client-side downgrade protection 
checks. This should not significantly affect normal operation, but may result 
in connection errors in environments where outgoing requests are forced through 
proxy servers and other "middleboxes", if they have behavior that resembles a 
downgrade attack. 
([#26357](https://github.com/hashicorp/terraform/issues/26357))
-* Terraform's HTTP client code is now slightly stricter than before in HTTP 
header parsing, but in ways that should not affect typical server 
implementations: Terraform now trims only _ASCII_ whitespace characters, and 
does not allow `Transfer-Encoding: identity`. 
([#26357](https://github.com/hashicorp/terraform/issues/26357))
-* The `terraform 0.13upgrade` subcommand and the associated upgrade mechanisms 
are no longer available. Complete the v0.13 upgrade process before upgrading to 
Terraform v0.14.
-* The `debug` command, which did not offer additional functionality, has been 
removed.
-
-ENHANCEMENTS:
-
-* config: Added `sensitive` argument for variable blocks, which supresses 
output where that variable is used 
([#26183](https://github.com/hashicorp/terraform/pull/26183))
-* config: Added `alltrue` and `anytrue` functions, which serve as a sort of 
dynamic version of the `&&` and `||` or operators, respectively. These are 
intended to allow evaluating boolean conditions, such as in variable 
`validation` blocks, across all of the items in a collection using `for` 
expressions. ([#25656](https://github.com/hashicorp/terraform/issues/25656)], 
[[#26498](https://github.com/hashicorp/terraform/issues/26498))
-* config: New functions `textencodebase64` and `textdecodebase64` 

[arch-commits] Commit in terraform/trunk (CHANGELOG.md PKGBUILD)

2020-12-09 Thread Daurnimator via arch-commits
Date: Wednesday, December 9, 2020 @ 12:07:28
  Author: daurnimator
Revision: 772606

upgpkg: terraform 0.14.2-1

Modified:
  terraform/trunk/CHANGELOG.md
  terraform/trunk/PKGBUILD

--+
 CHANGELOG.md |   21 +
 PKGBUILD |4 ++--
 2 files changed, 23 insertions(+), 2 deletions(-)

Modified: CHANGELOG.md
===
--- CHANGELOG.md2020-12-09 12:02:15 UTC (rev 772605)
+++ CHANGELOG.md2020-12-09 12:07:28 UTC (rev 772606)
@@ -1,3 +1,24 @@
+## 0.14.2 (December 08, 2020)
+
+BUG FIXES:
+
+* backend/remote: Disable the remote backend version compatibility check for 
workspaces set to use the "latest" pseudo-version. 
([#27199](https://github.com/hashicorp/terraform/issues/27199))
+* providers/terraform: Disable the remote backend version compatibility check 
for the `terraform_remote_state` data source. This check is unnecessary, 
because the data source is read-only by definition. 
([#27197](https://github.com/hashicorp/terraform/issues/27197))
+
+## 0.14.1 (December 08, 2020)
+
+ENHANCEMENTS:
+
+* backend/remote: When using the enhanced remote backend with commands which 
locally modify state, verify that the local Terraform version and the 
configured remote workspace Terraform version are compatible. This prevents 
accidentally upgrading the remote state to an incompatible version. The check 
is skipped for commands which do not write state, and can also be disabled by 
the use of a new command-line flag, `-ignore-remote-version`. 
([#26947](https://github.com/hashicorp/terraform/issues/26947))
+
+BUG FIXES:
+
+* configs: Fix for errors when using multiple layers of sensitive input 
variables ([#27095](https://github.com/hashicorp/terraform/issues/27095))
+* configs: Fix error when using sensitive input variables in conditionals 
([#27107](https://github.com/hashicorp/terraform/issues/27107))
+* core: Fix permanent diff when a resource changes only in sensitivity, for 
example due to changing the sensitivity of a variable or output used as an 
attribute value. ([#27128](https://github.com/hashicorp/terraform/issues/27128))
+* core: Fix issues where `ignore_changes` appears to not work, or causes 
validation errors with some resources. 
([#27141](https://github.com/hashicorp/terraform/issues/27141))
+* `terraform fmt`: Fix incorrect formatting with attribute expressions 
enclosed in parentheses. 
([#27040](https://github.com/hashicorp/terraform/issues/27040))
+
 ## 0.14.0 (December 02, 2020)
 
 NEW FEATURES:

Modified: PKGBUILD
===
--- PKGBUILD2020-12-09 12:02:15 UTC (rev 772605)
+++ PKGBUILD2020-12-09 12:07:28 UTC (rev 772606)
@@ -3,7 +3,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=terraform
-pkgver=0.14.0
+pkgver=0.14.2
 pkgrel=1
 pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
 url="https://www.terraform.io/;
@@ -12,7 +12,7 @@
 makedepends=("go")
 depends=('glibc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha512sums=('4318ac4583e56c4d6c1b7faa6f14b28d7bb75c330ab1e537f0edeeae3758f479236f86c11d121efb622495ec70b0d51215facf96a0daecc68c8927466b6fabcf')
+sha512sums=('15f3bc0b9f4a9ebe6aa27f63806083ef018ef52d1424fb0e80892f3aefb6fba45660dab01da16bc39defdfbc212a714e61fe8bf8fe7206e9fc3db9074be3c655')
 changelog="CHANGELOG.md"
 
 build() {


[arch-commits] Commit in terraform/repos/community-x86_64 (5 files)

2020-12-04 Thread Daurnimator via arch-commits
Date: Friday, December 4, 2020 @ 08:58:43
  Author: daurnimator
Revision: 769913

archrelease: copy trunk to community-x86_64

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

--+
 2.patch  |   42 ---
 CHANGELOG.md |  301 +
 PKGBUILD |   81 +++
 3 files changed, 130 insertions(+), 294 deletions(-)

Deleted: 2.patch
===
--- 2.patch 2020-12-04 08:57:40 UTC (rev 769912)
+++ 2.patch 2020-12-04 08:58:43 UTC (rev 769913)
@@ -1,42 +0,0 @@
-From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
-From: Kevin Burke 
-Date: Sun, 12 Jul 2020 14:35:27 -0700
-Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
-
-I verified that the code itself does not have similar assertions about
-the error message that would break if a different string was returned
-for the error message.
-
-Fixes #25553.

- helper/schema/provider_test.go | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
-index 01ee82a1f4d..13809b35bbf 100644
 a/helper/schema/provider_test.go
-+++ b/helper/schema/provider_test.go
-@@ -3,7 +3,7 @@ package schema
- import (
-   "fmt"
-   "reflect"
--  "strings"
-+  "regexp"
-   "testing"
-   "time"
- 
-@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
-   if err == nil {
-   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
-   }
--  expectedErrMsg := "time: invalid duration invalid"
--  if !strings.Contains(err.Error(), expectedErrMsg) {
--  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
-+  // Go 1.15 added quotes around the invalid duration value. You can 
remove
-+  // the regex once Go 1.14 and below are no longer supported.
-+  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
-+  if !expectedErrMsg.MatchString(err.Error()) {
-+  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
-   err.Error(),
-   expectedErrMsg)
-   }

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2020-12-04 08:57:40 UTC (rev 769912)
+++ CHANGELOG.md2020-12-04 08:58:43 UTC (rev 769913)
@@ -1,208 +0,0 @@
-## 0.13.5 (October 21, 2020)
-
-BUG FIXES:
-
-* terraform: fix issue where the provider configuration was not properly 
attached to the configured provider source address by localname 
([#26567](https://github.com/hashicorp/terraform/issues/26567))
-* core: fix a performance issue when a resource contains a very large and 
deeply nested schema 
([#26577](https://github.com/hashicorp/terraform/issues/26577))
-* backend/azurerm: fix an issue when using the metadata host to lookup 
environments ([#26463](https://github.com/hashicorp/terraform/issues/26463))
-
-## 0.13.4 (September 30, 2020)
-
-UPGRADE NOTES:
-
-* The built-in vendor (third-party) provisioners, which include `habitat`, 
`puppet`, `chef`, and `salt-masterless` are now deprecated and will be removed 
in a future version of Terraform. More information [on 
Discuss](https://discuss.hashicorp.com/t/notice-terraform-to-begin-deprecation-of-vendor-tool-specific-provisioners-starting-in-terraform-0-13-4/13997).
-* Deprecated interpolation-only expressions are detected in more contexts in 
addition to resources and provider configurations. Module calls, data sources, 
outputs, and locals are now also covered. Terraform also detects 
interpolation-only expressions in complex values such as lists and objects. An 
expression like `"${foo}"` should be rewritten as just `foo`. 
([#27272](https://github.com/hashicorp/terraform/issues/27272)] 
[[#26334](https://github.com/hashicorp/terraform/issues/26334))
-
-BUG FIXES:
-
-* command: Include schemas from required but unused providers in the output of 
`terraform providers schema`. This allows development tools such as the 
Terraform language server to offer autocompletion for the first resource for a 
given provider. ([#26318](https://github.com/hashicorp/terraform/issues/26318))
-* core: create_before_destroy status is now updated in the state during 
refresh ([#26343](https://github.com/hashicorp/terraform/issues/26343))
-* core: data sources using `depends_on`, either directly or through their 
modules, are no longer are forced to wait until apply by other planned data 
source reads 

[arch-commits] Commit in terraform/trunk (25555.patch CHANGELOG.md PKGBUILD)

2020-12-04 Thread Daurnimator via arch-commits
Date: Friday, December 4, 2020 @ 08:57:40
  Author: daurnimator
Revision: 769912

upgpkg: terraform 0.14.0-1

Modified:
  terraform/trunk/CHANGELOG.md
  terraform/trunk/PKGBUILD
Deleted:
  terraform/trunk/2.patch

--+
 2.patch  |   42 -
 CHANGELOG.md |  249 +++--
 PKGBUILD |   17 +--
 3 files changed, 72 insertions(+), 236 deletions(-)

Deleted: 2.patch
===
--- 2.patch 2020-12-04 08:41:16 UTC (rev 769911)
+++ 2.patch 2020-12-04 08:57:40 UTC (rev 769912)
@@ -1,42 +0,0 @@
-From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
-From: Kevin Burke 
-Date: Sun, 12 Jul 2020 14:35:27 -0700
-Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
-
-I verified that the code itself does not have similar assertions about
-the error message that would break if a different string was returned
-for the error message.
-
-Fixes #25553.

- helper/schema/provider_test.go | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
-index 01ee82a1f4d..13809b35bbf 100644
 a/helper/schema/provider_test.go
-+++ b/helper/schema/provider_test.go
-@@ -3,7 +3,7 @@ package schema
- import (
-   "fmt"
-   "reflect"
--  "strings"
-+  "regexp"
-   "testing"
-   "time"
- 
-@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
-   if err == nil {
-   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
-   }
--  expectedErrMsg := "time: invalid duration invalid"
--  if !strings.Contains(err.Error(), expectedErrMsg) {
--  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
-+  // Go 1.15 added quotes around the invalid duration value. You can 
remove
-+  // the regex once Go 1.14 and below are no longer supported.
-+  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
-+  if !expectedErrMsg.MatchString(err.Error()) {
-+  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
-   err.Error(),
-   expectedErrMsg)
-   }

Modified: CHANGELOG.md
===
--- CHANGELOG.md2020-12-04 08:41:16 UTC (rev 769911)
+++ CHANGELOG.md2020-12-04 08:57:40 UTC (rev 769912)
@@ -1,208 +1,93 @@
-## 0.13.5 (October 21, 2020)
+## 0.14.0 (December 02, 2020)
 
-BUG FIXES:
-
-* terraform: fix issue where the provider configuration was not properly 
attached to the configured provider source address by localname 
([#26567](https://github.com/hashicorp/terraform/issues/26567))
-* core: fix a performance issue when a resource contains a very large and 
deeply nested schema 
([#26577](https://github.com/hashicorp/terraform/issues/26577))
-* backend/azurerm: fix an issue when using the metadata host to lookup 
environments ([#26463](https://github.com/hashicorp/terraform/issues/26463))
-
-## 0.13.4 (September 30, 2020)
-
-UPGRADE NOTES:
-
-* The built-in vendor (third-party) provisioners, which include `habitat`, 
`puppet`, `chef`, and `salt-masterless` are now deprecated and will be removed 
in a future version of Terraform. More information [on 
Discuss](https://discuss.hashicorp.com/t/notice-terraform-to-begin-deprecation-of-vendor-tool-specific-provisioners-starting-in-terraform-0-13-4/13997).
-* Deprecated interpolation-only expressions are detected in more contexts in 
addition to resources and provider configurations. Module calls, data sources, 
outputs, and locals are now also covered. Terraform also detects 
interpolation-only expressions in complex values such as lists and objects. An 
expression like `"${foo}"` should be rewritten as just `foo`. 
([#27272](https://github.com/hashicorp/terraform/issues/27272)] 
[[#26334](https://github.com/hashicorp/terraform/issues/26334))
-
-BUG FIXES:
-
-* command: Include schemas from required but unused providers in the output of 
`terraform providers schema`. This allows development tools such as the 
Terraform language server to offer autocompletion for the first resource for a 
given provider. ([#26318](https://github.com/hashicorp/terraform/issues/26318))
-* core: create_before_destroy status is now updated in the state during 
refresh ([#26343](https://github.com/hashicorp/terraform/issues/26343))
-* core: data sources using `depends_on`, either directly or through their 
modules, are no longer are forced to wait until apply by other planned data 
source reads ([#26375](https://github.com/hashicorp/terraform/issues/26375))
-
-## 0.13.3 (September 16, 2020)
-
-BUG FIXES:
-
-* build: fix crash with terraform binary on openBSD 
([#26250](https://github.com/hashicorp/terraform/issues/26250))
-* core: prevent 

[arch-commits] Commit in lua-fifo/repos (community-any community-any/PKGBUILD)

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 13:31:19
  Author: daurnimator
Revision: 766562

archrelease: copy trunk to community-any

Added:
  lua-fifo/repos/community-any/
  lua-fifo/repos/community-any/PKGBUILD
(from rev 766561, lua-fifo/trunk/PKGBUILD)

--+
 PKGBUILD |   42 ++
 1 file changed, 42 insertions(+)

Copied: lua-fifo/repos/community-any/PKGBUILD (from rev 766561, 
lua-fifo/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-11-30 13:31:19 UTC (rev 766562)
@@ -0,0 +1,42 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-fifo' 'lua51-fifo' 'lua52-fifo' 'lua53-fifo')
+pkgver=0.2
+pkgrel=1
+arch=('any')
+url='https://github.com/daurnimator/fifo.lua'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/daurnimator/fifo.lua/archive/$pkgver.tar.gz;)
+sha256sums=('85cad0c2f9eac1cd3e08c5134feb655e0b928e1e22363c3ef3293a194c0eb53f')
+
+package_lua-fifo() {
+   pkgdesc='Fifo library for Lua 5.4'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.4/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-fifo() {
+   pkgdesc='Fifo library for Lua 5.1'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.1/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-fifo() {
+   pkgdesc='Fifo library for Lua 5.2'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.2/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-fifo() {
+   pkgdesc='Fifo library for Lua 5.3'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.3/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in (4 files)

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 13:29:56
  Author: daurnimator
Revision: 766561

Move lua-fifo from community

Added:
  lua-fifo/
  lua-fifo/repos/
  lua-fifo/trunk/
  lua-fifo/trunk/PKGBUILD

--+
 PKGBUILD |   42 ++
 1 file changed, 42 insertions(+)

Added: lua-fifo/trunk/PKGBUILD
===
--- lua-fifo/trunk/PKGBUILD (rev 0)
+++ lua-fifo/trunk/PKGBUILD 2020-11-30 13:29:56 UTC (rev 766561)
@@ -0,0 +1,42 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-fifo' 'lua51-fifo' 'lua52-fifo' 'lua53-fifo')
+pkgver=0.2
+pkgrel=1
+arch=('any')
+url='https://github.com/daurnimator/fifo.lua'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/daurnimator/fifo.lua/archive/$pkgver.tar.gz;)
+sha256sums=('85cad0c2f9eac1cd3e08c5134feb655e0b928e1e22363c3ef3293a194c0eb53f')
+
+package_lua-fifo() {
+   pkgdesc='Fifo library for Lua 5.4'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.4/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-fifo() {
+   pkgdesc='Fifo library for Lua 5.1'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.1/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-fifo() {
+   pkgdesc='Fifo library for Lua 5.2'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.2/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-fifo() {
+   pkgdesc='Fifo library for Lua 5.3'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.3/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in firefox-extension-passff/repos/community-any (2 files)

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 11:50:02
  Author: daurnimator
Revision: 766554

archrelease: copy trunk to community-any

Added:
  firefox-extension-passff/repos/community-any/PKGBUILD
(from rev 766553, firefox-extension-passff/trunk/PKGBUILD)
Deleted:
  firefox-extension-passff/repos/community-any/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 11:49:20 UTC (rev 766553)
+++ PKGBUILD2020-11-30 11:50:02 UTC (rev 766554)
@@ -1,21 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Willem Mulder <14mrh4...@gmail.com>
-
-pkgname=firefox-extension-passff
-pkgver=1.10.3
-pkgrel=1
-pkgdesc="zx2c4 pass manager addon for firefox"
-url="https://github.com/passff/passff;
-license=('GPL2')
-arch=('any')
-groups=('firefox-addons')
-replaces=('firefox-passff')
-depends=('firefox' 'passff-host')
-source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
-sha512sums=('23935f761954d4b4666b5fcfeda69d5967e38903d3b7ceb6f70b93778a7aed6f8257c1df0f0bc25bfd625bffe2e2a81507fdc433e040a129912004c0ce052967')
-noextract=("$pkgname-$pkgver.xpi")
-
-package() {
-install -Dm644 "$pkgname-$pkgver.xpi" \
-"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
-}

Copied: firefox-extension-passff/repos/community-any/PKGBUILD (from rev 766553, 
firefox-extension-passff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 11:50:02 UTC (rev 766554)
@@ -0,0 +1,21 @@
+# Maintainer: Daurnimator 
+# Contributor: Willem Mulder <14mrh4...@gmail.com>
+
+pkgname=firefox-extension-passff
+pkgver=1.10.4
+pkgrel=1
+pkgdesc="zx2c4 pass manager addon for firefox"
+url="https://github.com/passff/passff;
+license=('GPL2')
+arch=('any')
+groups=('firefox-addons')
+replaces=('firefox-passff')
+depends=('firefox' 'passff-host')
+source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
+sha512sums=('0aef5dfc48f4984f8655655eb51d6a79fddf3ef93ff89ffe546ea9c8b8cf6b18930ba4ae5c41492c97cd65f01e249b84f3cd2cd5ae7ca2016a7d1a71ee5c689f')
+noextract=("$pkgname-$pkgver.xpi")
+
+package() {
+install -Dm644 "$pkgname-$pkgver.xpi" \
+"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
+}


[arch-commits] Commit in firefox-extension-passff/trunk (PKGBUILD)

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 11:49:20
  Author: daurnimator
Revision: 766553

upgpkg: firefox-extension-passff 1.10.4-1

Modified:
  firefox-extension-passff/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 10:54:09 UTC (rev 766552)
+++ PKGBUILD2020-11-30 11:49:20 UTC (rev 766553)
@@ -2,7 +2,7 @@
 # Contributor: Willem Mulder <14mrh4...@gmail.com>
 
 pkgname=firefox-extension-passff
-pkgver=1.10.3
+pkgver=1.10.4
 pkgrel=1
 pkgdesc="zx2c4 pass manager addon for firefox"
 url="https://github.com/passff/passff;
@@ -12,7 +12,7 @@
 replaces=('firefox-passff')
 depends=('firefox' 'passff-host')
 
source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
-sha512sums=('23935f761954d4b4666b5fcfeda69d5967e38903d3b7ceb6f70b93778a7aed6f8257c1df0f0bc25bfd625bffe2e2a81507fdc433e040a129912004c0ce052967')
+sha512sums=('0aef5dfc48f4984f8655655eb51d6a79fddf3ef93ff89ffe546ea9c8b8cf6b18930ba4ae5c41492c97cd65f01e249b84f3cd2cd5ae7ca2016a7d1a71ee5c689f')
 noextract=("$pkgname-$pkgver.xpi")
 
 package() {


[arch-commits] Commit in lua-binaryheap/repos (community-any community-any/PKGBUILD)

2020-11-26 Thread Daurnimator via arch-commits
Date: Thursday, November 26, 2020 @ 14:13:42
  Author: daurnimator
Revision: 763537

archrelease: copy trunk to community-any

Added:
  lua-binaryheap/repos/community-any/
  lua-binaryheap/repos/community-any/PKGBUILD
(from rev 763536, lua-binaryheap/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: lua-binaryheap/repos/community-any/PKGBUILD (from rev 763536, 
lua-binaryheap/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-11-26 14:13:42 UTC (rev 763537)
@@ -0,0 +1,38 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-binaryheap' 'lua51-binaryheap' 'lua52-binaryheap' 
'lua53-binaryheap')
+pkgver=0.4
+pkgrel=2
+arch=('any')
+url='https://github.com/Tieske/binaryheap.lua'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Tieske/binaryheap.lua/archive/version_0v4.tar.gz;)
+sha256sums=('10b1b6c6f2d22560f512f9896a6672ec5ae0eea1390ff8e662be1d5d9625b438')
+
+package_lua-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.4'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.4/binaryheap.lua"
+}
+
+package_lua51-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.1'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.1/binaryheap.lua"
+}
+
+package_lua52-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.2'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.2/binaryheap.lua"
+}
+
+package_lua53-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.3'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.3/binaryheap.lua"
+}


[arch-commits] Commit in (4 files)

2020-11-26 Thread Daurnimator via arch-commits
Date: Thursday, November 26, 2020 @ 14:12:14
  Author: daurnimator
Revision: 763536

Add lua-binaryheap

Dependency of lua-http

Added:
  lua-binaryheap/
  lua-binaryheap/repos/
  lua-binaryheap/trunk/
  lua-binaryheap/trunk/PKGBUILD

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: lua-binaryheap/trunk/PKGBUILD
===
--- lua-binaryheap/trunk/PKGBUILD   (rev 0)
+++ lua-binaryheap/trunk/PKGBUILD   2020-11-26 14:12:14 UTC (rev 763536)
@@ -0,0 +1,38 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-binaryheap' 'lua51-binaryheap' 'lua52-binaryheap' 
'lua53-binaryheap')
+pkgver=0.4
+pkgrel=2
+arch=('any')
+url='https://github.com/Tieske/binaryheap.lua'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Tieske/binaryheap.lua/archive/version_0v4.tar.gz;)
+sha256sums=('10b1b6c6f2d22560f512f9896a6672ec5ae0eea1390ff8e662be1d5d9625b438')
+
+package_lua-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.4'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.4/binaryheap.lua"
+}
+
+package_lua51-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.1'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.1/binaryheap.lua"
+}
+
+package_lua52-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.2'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.2/binaryheap.lua"
+}
+
+package_lua53-binaryheap() {
+   pkgdesc='Binary heap implementation for Lua 5.3'
+
+   cd "binaryheap.lua-version_0v4"
+   install -Dm644 src/binaryheap.lua 
"$pkgdir/usr/share/lua/5.3/binaryheap.lua"
+}


[arch-commits] Commit in lua-basexx/repos (community-any community-any/PKGBUILD)

2020-11-26 Thread Daurnimator via arch-commits
Date: Thursday, November 26, 2020 @ 14:03:25
  Author: daurnimator
Revision: 763535

archrelease: copy trunk to community-any

Added:
  lua-basexx/repos/community-any/
  lua-basexx/repos/community-any/PKGBUILD
(from rev 763534, lua-basexx/trunk/PKGBUILD)

--+
 PKGBUILD |   42 ++
 1 file changed, 42 insertions(+)

Copied: lua-basexx/repos/community-any/PKGBUILD (from rev 763534, 
lua-basexx/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-11-26 14:03:25 UTC (rev 763535)
@@ -0,0 +1,42 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-basexx' 'lua51-basexx' 'lua52-basexx' 'lua53-basexx')
+pkgver=0.4.1
+pkgrel=2
+arch=('any')
+url='https://github.com/aiq/basexx'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/aiq/basexx/archive/v$pkgver.tar.gz;)
+sha256sums=('ff62b00446df1181a9cd20ba970c3c8493165d262142e10d069ee3de6337dfe6')
+
+package_lua-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.4'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.4/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.1'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.1/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.2'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.2/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.3'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.3/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in (4 files)

2020-11-26 Thread Daurnimator via arch-commits
Date: Thursday, November 26, 2020 @ 14:02:15
  Author: daurnimator
Revision: 763534

Add lua-basexx

Dependency for knot-resolver and lua-http

Added:
  lua-basexx/
  lua-basexx/repos/
  lua-basexx/trunk/
  lua-basexx/trunk/PKGBUILD

--+
 PKGBUILD |   42 ++
 1 file changed, 42 insertions(+)

Added: lua-basexx/trunk/PKGBUILD
===
--- lua-basexx/trunk/PKGBUILD   (rev 0)
+++ lua-basexx/trunk/PKGBUILD   2020-11-26 14:02:15 UTC (rev 763534)
@@ -0,0 +1,42 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-basexx' 'lua51-basexx' 'lua52-basexx' 'lua53-basexx')
+pkgver=0.4.1
+pkgrel=2
+arch=('any')
+url='https://github.com/aiq/basexx'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/aiq/basexx/archive/v$pkgver.tar.gz;)
+sha256sums=('ff62b00446df1181a9cd20ba970c3c8493165d262142e10d069ee3de6337dfe6')
+
+package_lua-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.4'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.4/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.1'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.1/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.2'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.2/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-basexx() {
+   pkgdesc='A Lua library which provides base2(bitfield), base16(hex), 
base32(crockford/rfc), base64(rfc/url), base85(z85) decoding and encoding for 
Lua 5.3'
+
+   cd "basexx-$pkgver"
+   install -Dm644 lib/basexx.lua "$pkgdir/usr/share/lua/5.3/basexx.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in lua-psl/repos (community-x86_64 community-x86_64/PKGBUILD)

2020-11-26 Thread Daurnimator via arch-commits
Date: Thursday, November 26, 2020 @ 13:56:54
  Author: daurnimator
Revision: 763533

archrelease: copy trunk to community-x86_64

Added:
  lua-psl/repos/community-x86_64/
  lua-psl/repos/community-x86_64/PKGBUILD
(from rev 763532, lua-psl/trunk/PKGBUILD)

--+
 PKGBUILD |   60 
 1 file changed, 60 insertions(+)

Copied: lua-psl/repos/community-x86_64/PKGBUILD (from rev 763532, 
lua-psl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-11-26 13:56:54 UTC (rev 763533)
@@ -0,0 +1,60 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-psl' 'lua51-psl' 'lua52-psl' 'lua53-psl')
+pkgver=0.3
+pkgrel=2
+arch=('x86_64')
+url='https://github.com/daurnimator/lua-psl'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('libpsl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/daurnimator/lua-psl/archive/v$pkgver.tar.gz;)
+sha256sums=('c7d529d33fcd9d898668014d174ed1dc1257e9076da98729d94a4e8b8d231d40')
+
+build() {
+   cd "lua-psl-$pkgver"
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -o psl/psl.o -c psl/psl.c
+   gcc -shared $LDFLAGS -o psl.so psl/psl.o -lpsl
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -I/usr/include/lua5.1 -o psl/psl.o -c 
psl/psl.c
+   gcc -shared $LDFLAGS -o psl-5.1.so psl/psl.o -lpsl
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -I/usr/include/lua5.2 -o psl/psl.o -c 
psl/psl.c
+   gcc -shared $LDFLAGS -o psl-5.2.so psl/psl.o -lpsl
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -I/usr/include/lua5.3 -o psl/psl.o -c 
psl/psl.c
+   gcc -shared $LDFLAGS -o psl-5.3.so psl/psl.o -lpsl
+}
+
+package_lua-psl() {
+   pkgdesc='libpsl bindings for Lua 5.4'
+
+   cd "lua-psl-$pkgver"
+   install -D psl.so "$pkgdir/usr/lib/lua/5.4/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-psl() {
+   pkgdesc='libpsl bindings for Lua 5.1'
+
+   cd "lua-psl-$pkgver"
+   install -D psl-5.1.so "$pkgdir/usr/lib/lua/5.1/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-psl() {
+   pkgdesc='libpsl bindings for Lua 5.2'
+
+   cd "lua-psl-$pkgver"
+   install -D psl-5.2.so "$pkgdir/usr/lib/lua/5.2/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-psl() {
+   pkgdesc='libpsl bindings for Lua 5.3'
+
+   cd "lua-psl-$pkgver"
+   install -D psl-5.3.so "$pkgdir/usr/lib/lua/5.3/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in (lua-psl lua-psl/repos lua-psl/trunk lua-psl/trunk/PKGBUILD)

2020-11-26 Thread Daurnimator via arch-commits
Date: Thursday, November 26, 2020 @ 13:54:53
  Author: daurnimator
Revision: 763532

Add lua-psl

Optional dependency for knot-resolver

Added:
  lua-psl/
  lua-psl/repos/
  lua-psl/trunk/
  lua-psl/trunk/PKGBUILD

--+
 PKGBUILD |   60 
 1 file changed, 60 insertions(+)

Added: lua-psl/trunk/PKGBUILD
===
--- lua-psl/trunk/PKGBUILD  (rev 0)
+++ lua-psl/trunk/PKGBUILD  2020-11-26 13:54:53 UTC (rev 763532)
@@ -0,0 +1,60 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-psl' 'lua51-psl' 'lua52-psl' 'lua53-psl')
+pkgver=0.3
+pkgrel=2
+arch=('x86_64')
+url='https://github.com/daurnimator/lua-psl'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('libpsl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/daurnimator/lua-psl/archive/v$pkgver.tar.gz;)
+sha256sums=('c7d529d33fcd9d898668014d174ed1dc1257e9076da98729d94a4e8b8d231d40')
+
+build() {
+   cd "lua-psl-$pkgver"
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -o psl/psl.o -c psl/psl.c
+   gcc -shared $LDFLAGS -o psl.so psl/psl.o -lpsl
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -I/usr/include/lua5.1 -o psl/psl.o -c 
psl/psl.c
+   gcc -shared $LDFLAGS -o psl-5.1.so psl/psl.o -lpsl
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -I/usr/include/lua5.2 -o psl/psl.o -c 
psl/psl.c
+   gcc -shared $LDFLAGS -o psl-5.2.so psl/psl.o -lpsl
+
+   gcc -fPIC $CPPFLAGS $CFLAGS -I/usr/include/lua5.3 -o psl/psl.o -c 
psl/psl.c
+   gcc -shared $LDFLAGS -o psl-5.3.so psl/psl.o -lpsl
+}
+
+package_lua-psl() {
+   pkgdesc='libpsl bindings for Lua 5.4'
+
+   cd "lua-psl-$pkgver"
+   install -D psl.so "$pkgdir/usr/lib/lua/5.4/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-psl() {
+   pkgdesc='libpsl bindings for Lua 5.1'
+
+   cd "lua-psl-$pkgver"
+   install -D psl-5.1.so "$pkgdir/usr/lib/lua/5.1/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-psl() {
+   pkgdesc='libpsl bindings for Lua 5.2'
+
+   cd "lua-psl-$pkgver"
+   install -D psl-5.2.so "$pkgdir/usr/lib/lua/5.2/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-psl() {
+   pkgdesc='libpsl bindings for Lua 5.3'
+
+   cd "lua-psl-$pkgver"
+   install -D psl-5.3.so "$pkgdir/usr/lib/lua/5.3/psl.so"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-21 Thread Daurnimator via arch-commits
Date: Saturday, November 21, 2020 @ 13:37:25
  Author: daurnimator
Revision: 758484

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 758483, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-21 13:36:45 UTC (rev 758483)
+++ PKGBUILD2020-11-21 13:37:25 UTC (rev 758484)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.8
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('3eaef846d4140223fd900b374c492c3019f59b85bd7ca549acb4e87fa492a735ff1b13adf21304c9f43dd39bfea6d38289b9619d7f765fa9c4aaf72f4caa0a2c')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 758483, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-21 13:37:25 UTC (rev 758484)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.9
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('cc80321ecda99d9b66b4c2e5243ae595513e4f26916a44414f9b33dcd3a3a36e23795a2b7e9c12b67c9b89b67643f4b1491f7af0707a2ae139b6479d4cddcf29')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/trunk (PKGBUILD)

2020-11-21 Thread Daurnimator via arch-commits
Date: Saturday, November 21, 2020 @ 13:36:45
  Author: daurnimator
Revision: 758483

upgpkg: chezmoi 1.8.9-1

Modified:
  chezmoi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-21 13:26:56 UTC (rev 758482)
+++ PKGBUILD2020-11-21 13:36:45 UTC (rev 758483)
@@ -3,7 +3,7 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.8.8
+pkgver=1.8.9
 pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('3eaef846d4140223fd900b374c492c3019f59b85bd7ca549acb4e87fa492a735ff1b13adf21304c9f43dd39bfea6d38289b9619d7f765fa9c4aaf72f4caa0a2c')
+sha512sums=('cc80321ecda99d9b66b4c2e5243ae595513e4f26916a44414f9b33dcd3a3a36e23795a2b7e9c12b67c9b89b67643f4b1491f7af0707a2ae139b6479d4cddcf29')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in argocd-cli/repos/community-x86_64 (4 files)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 23:40:18
  Author: daurnimator
Revision: 754266

archrelease: copy trunk to community-x86_64

Added:
  argocd-cli/repos/community-x86_64/PKGBUILD
(from rev 754264, argocd-cli/trunk/PKGBUILD)
Deleted:
  argocd-cli/repos/community-x86_64/PKGBUILD
  argocd-cli/repos/community-x86_64/argocd.bash
  argocd-cli/repos/community-x86_64/argocd.zsh

-+
 PKGBUILD|   90 --
 argocd.bash |1 
 argocd.zsh  |3 -
 3 files changed, 44 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-14 23:40:10 UTC (rev 754265)
+++ PKGBUILD2020-11-14 23:40:18 UTC (rev 754266)
@@ -1,46 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=argocd-cli
-pkgver=1.7.8
-pkgrel=1
-pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
-arch=('x86_64')
-url='https://argoproj.github.io/argo-cd/'
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
-"argocd.bash"
-"argocd.zsh")
-sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f'
-
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
-
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
-
-build() {
-  cd "argo-cd-$pkgver"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  go run github.com/gobuffalo/packr/packr build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
-  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -linkmode=external \
-  -extldflags \"${LDFLAGS}\"" \
-./cmd/argocd
-}
-
-package() {
-  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
-  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
-
-  cd "argo-cd-$pkgver"
-
-  install -D argocd "$pkgdir/usr/bin/argocd"
-}

Copied: argocd-cli/repos/community-x86_64/PKGBUILD (from rev 754264, 
argocd-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-14 23:40:18 UTC (rev 754266)
@@ -0,0 +1,44 @@
+# Maintainer: Daurnimator 
+
+pkgname=argocd-cli
+pkgver=1.7.8
+pkgrel=1
+pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
+arch=('x86_64')
+url='https://argoproj.github.io/argo-cd/'
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;)
+sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f')
+
+build() {
+  cd "argo-cd-$pkgver"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  go run github.com/gobuffalo/packr/packr build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
+  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
+  -linkmode=external \
+  -extldflags \"${LDFLAGS}\"" \
+./cmd/argocd
+
+  ./argocd completion bash > argocd.bash
+  ./argocd completion zsh > argocd.zsh
+}
+
+package() {
+  cd "argo-cd-$pkgver"
+
+  install -D argocd "$pkgdir/usr/bin/argocd"
+  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
+  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
+}

Deleted: argocd.bash
===
--- argocd.bash 2020-11-14 23:40:10 UTC (rev 754265)
+++ argocd.bash 2020-11-14 23:40:18 UTC (rev 754266)
@@ -1 +0,0 @@
-source <(argocd completion bash)

Deleted: argocd.zsh
===
--- argocd.zsh  2020-11-14 23:40:10 UTC (rev 754265)
+++ argocd.zsh  2020-11-14 23:40:18 UTC (rev 754266)
@@ -1,3 +0,0 @@
-#compdef argocd
-
-source <(argocd completion zsh)


[arch-commits] Commit in argocd-cli/trunk (PKGBUILD argocd.bash argocd.zsh)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 23:39:15
  Author: daurnimator
Revision: 754264

Remove indirection in shell completion files

Modified:
  argocd-cli/trunk/PKGBUILD
Deleted:
  argocd-cli/trunk/argocd.bash
  argocd-cli/trunk/argocd.zsh

-+
 PKGBUILD|   16 +++-
 argocd.bash |1 -
 argocd.zsh  |3 ---
 3 files changed, 7 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-14 23:37:12 UTC (rev 754263)
+++ PKGBUILD2020-11-14 23:39:15 UTC (rev 754264)
@@ -9,12 +9,8 @@
 license=('Apache')
 makedepends=('go')
 depends=('glibc')
-source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
-"argocd.bash"
-"argocd.zsh")
-sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f'
-
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
-
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
+source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;)
+sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f')
 
 build() {
   cd "argo-cd-$pkgver"
@@ -34,13 +30,15 @@
   -linkmode=external \
   -extldflags \"${LDFLAGS}\"" \
 ./cmd/argocd
+
+  ./argocd completion bash > argocd.bash
+  ./argocd completion zsh > argocd.zsh
 }
 
 package() {
-  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
-  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
-
   cd "argo-cd-$pkgver"
 
   install -D argocd "$pkgdir/usr/bin/argocd"
+  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
+  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
 }

Deleted: argocd.bash
===
--- argocd.bash 2020-11-14 23:37:12 UTC (rev 754263)
+++ argocd.bash 2020-11-14 23:39:15 UTC (rev 754264)
@@ -1 +0,0 @@
-source <(argocd completion bash)

Deleted: argocd.zsh
===
--- argocd.zsh  2020-11-14 23:37:12 UTC (rev 754263)
+++ argocd.zsh  2020-11-14 23:39:15 UTC (rev 754264)
@@ -1,3 +0,0 @@
-#compdef argocd
-
-source <(argocd completion zsh)


[arch-commits] Commit in kustomize/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 23:37:12
  Author: daurnimator
Revision: 754263

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 754262, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-14 23:36:25 UTC (rev 754262)
+++ PKGBUILD2020-11-14 23:37:12 UTC (rev 754263)
@@ -1,56 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=3.8.6
-pkgrel=2
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('35837895b5fabc16ff70e870dad29abf051585ebd3120f26a59b3ac5148aab6a3bdabfc55ee03d428701ba98ce95fad2c007f853e9292edf47ad2a8ba3f74031')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  # install completions
-  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
-  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
-  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
-  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
-  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
-  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
-
-  # install binary
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 754262, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-14 23:37:12 UTC (rev 754263)
@@ -0,0 +1,56 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=3.8.7
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('23272b3e7ff688f09825b5d636eb2d55dc8eb8cffe2fef0eba1c5c64604db552abd955f81bd09f84cd670db1f9a36e4b87141fa18bc89d83cb8e0da554a2a1fb')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  # install completions
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
+  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
+  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
+  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
+  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
+  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
+
+  # install binary
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in kustomize/trunk (PKGBUILD)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 23:36:25
  Author: daurnimator
Revision: 754262

upgpkg: kustomize 3.8.7-1

Modified:
  kustomize/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-14 23:35:30 UTC (rev 754261)
+++ PKGBUILD2020-11-14 23:36:25 UTC (rev 754262)
@@ -2,8 +2,8 @@
 # Maintainer: Daurnimator 
 
 pkgname=kustomize
-pkgver=3.8.6
-pkgrel=2
+pkgver=3.8.7
+pkgrel=1
 pkgdesc="Template-free customization of Kubernetes YAML manifests"
 arch=('x86_64')
 url="https://github.com/kubernetes-sigs/kustomize;
@@ -11,7 +11,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('35837895b5fabc16ff70e870dad29abf051585ebd3120f26a59b3ac5148aab6a3bdabfc55ee03d428701ba98ce95fad2c007f853e9292edf47ad2a8ba3f74031')
+sha512sums=('23272b3e7ff688f09825b5d636eb2d55dc8eb8cffe2fef0eba1c5c64604db552abd955f81bd09f84cd670db1f9a36e4b87141fa18bc89d83cb8e0da554a2a1fb')
 
 build(){
   cd "kustomize-kustomize-v${pkgver}/kustomize"


[arch-commits] Commit in argocd-cli/repos/community-x86_64 (6 files)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 23:27:49
  Author: daurnimator
Revision: 754251

archrelease: copy trunk to community-x86_64

Added:
  argocd-cli/repos/community-x86_64/PKGBUILD
(from rev 754249, argocd-cli/trunk/PKGBUILD)
  argocd-cli/repos/community-x86_64/argocd.bash
(from rev 754249, argocd-cli/trunk/argocd.bash)
  argocd-cli/repos/community-x86_64/argocd.zsh
(from rev 754250, argocd-cli/trunk/argocd.zsh)
Deleted:
  argocd-cli/repos/community-x86_64/PKGBUILD
  argocd-cli/repos/community-x86_64/argocd.bash
  argocd-cli/repos/community-x86_64/argocd.zsh

-+
 PKGBUILD|   92 +-
 argocd.bash |2 -
 argocd.zsh  |6 +--
 3 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-14 23:27:27 UTC (rev 754250)
+++ PKGBUILD2020-11-14 23:27:49 UTC (rev 754251)
@@ -1,46 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=argocd-cli
-pkgver=1.7.6
-pkgrel=1
-pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
-arch=('x86_64')
-url='https://argoproj.github.io/argo-cd/'
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
-"argocd.bash"
-"argocd.zsh")
-sha512sums=('6f57d042fe2c38614c1d1b1e30f4209cd8aa437860f756fd9096539494680706f6ef9c28007a53246d3ee521ec454d23af22bf1683bf52c504cf9d05b78a5c32'
-
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
-
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
-
-build() {
-  cd "argo-cd-$pkgver"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  go run github.com/gobuffalo/packr/packr build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
-  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -linkmode=external
-  -extldflags \"${LDFLAGS}\"" \
-./cmd/argocd
-}
-
-package() {
-  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
-  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
-
-  cd "argo-cd-$pkgver"
-
-  install -D argocd "$pkgdir/usr/bin/argocd"
-}

Copied: argocd-cli/repos/community-x86_64/PKGBUILD (from rev 754249, 
argocd-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-14 23:27:49 UTC (rev 754251)
@@ -0,0 +1,46 @@
+# Maintainer: Daurnimator 
+
+pkgname=argocd-cli
+pkgver=1.7.8
+pkgrel=1
+pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
+arch=('x86_64')
+url='https://argoproj.github.io/argo-cd/'
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
+"argocd.bash"
+"argocd.zsh")
+sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f'
+
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
+
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
+
+build() {
+  cd "argo-cd-$pkgver"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  go run github.com/gobuffalo/packr/packr build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
+  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
+  -linkmode=external \
+  -extldflags \"${LDFLAGS}\"" \
+./cmd/argocd
+}
+
+package() {
+  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
+  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
+
+  cd "argo-cd-$pkgver"
+
+  install -D argocd "$pkgdir/usr/bin/argocd"
+}

Deleted: argocd.bash
===
--- argocd.bash 2020-11-14 23:27:27 UTC (rev 754250)

[arch-commits] Commit in argocd-cli/trunk (PKGBUILD)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 23:26:49
  Author: daurnimator
Revision: 754248

upgpkg: argocd-cli 1.7.8-1

Modified:
  argocd-cli/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-14 23:26:05 UTC (rev 754247)
+++ PKGBUILD2020-11-14 23:26:49 UTC (rev 754248)
@@ -1,7 +1,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=argocd-cli
-pkgver=1.7.6
+pkgver=1.7.8
 pkgrel=1
 pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 
source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
 "argocd.bash"
 "argocd.zsh")
-sha512sums=('6f57d042fe2c38614c1d1b1e30f4209cd8aa437860f756fd9096539494680706f6ef9c28007a53246d3ee521ec454d23af22bf1683bf52c504cf9d05b78a5c32'
+sha512sums=('2d3fe2f90188192769d4f6bdf28e36b6c7dfa98b21e2cd88c56e1a97e3ed4bcacc23b9e09a48a17872113571833fcaefa4a4f71726cf9bff71c9aa816045a05f'
 
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
 
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
 
@@ -31,7 +31,7 @@
 -ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
   -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
   -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -linkmode=external
+  -linkmode=external \
   -extldflags \"${LDFLAGS}\"" \
 ./cmd/argocd
 }


[arch-commits] Commit in wishbone-utils/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 11:26:30
  Author: daurnimator
Revision: 754058

archrelease: copy trunk to community-x86_64

Added:
  wishbone-utils/repos/community-x86_64/PKGBUILD
(from rev 754057, wishbone-utils/trunk/PKGBUILD)
Deleted:
  wishbone-utils/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-14 11:25:30 UTC (rev 754057)
+++ PKGBUILD2020-11-14 11:26:30 UTC (rev 754058)
@@ -1,30 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Daurnimator
-
-pkgname=wishbone-utils
-pkgver=0.7.5
-pkgrel=1
-pkgdesc='Utilities for working with a Wishbone bridge'
-arch=(x86_64)
-url="https://github.com/litex-hub/wishbone-utils;
-license=(BSD)
-depends=(glibc gcc-libs)
-makedepends=(rust)
-source=($pkgname-$pkgver.tar.gz::https://github.com/litex-hub/wishbone-utils/archive/v$pkgver.tar.gz)
-sha512sums=('7652fefbd70714480cdc9ecc21f78c0d5ee248067c30ac48a4d548bbaceeecb5850a86ee27f953f0d8c3150e4a4c8ef607bcdddac837af206ee6de4792e8d9f2')
-
-build() {
-  cd $pkgname-$pkgver/wishbone-tool
-  cargo build --release --locked
-}
-
-check() {
-  cd $pkgname-$pkgver/wishbone-tool
-  cargo test --release --locked
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm 755 wishbone-tool/target/release/wishbone-tool -t 
"${pkgdir}/usr/bin/"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: wishbone-utils/repos/community-x86_64/PKGBUILD (from rev 754057, 
wishbone-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-14 11:26:30 UTC (rev 754058)
@@ -0,0 +1,30 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Daurnimator
+
+pkgname=wishbone-utils
+pkgver=0.7.8
+pkgrel=1
+pkgdesc='Utilities for working with a Wishbone bridge'
+arch=(x86_64)
+url="https://github.com/litex-hub/wishbone-utils;
+license=(BSD)
+depends=(glibc gcc-libs)
+makedepends=(rust)
+source=($pkgname-$pkgver.tar.gz::https://github.com/litex-hub/wishbone-utils/archive/v$pkgver.tar.gz)
+sha512sums=('ca61e335f97c3e5ed0b02d71601c4d2102c87ea40051f7345514c1624c06bdaa47bb6acca66c0709968c9e39faf570f49e5ec81cb444909029498043240e506d')
+
+build() {
+  cd $pkgname-$pkgver/wishbone-tool
+  cargo build --release --locked
+}
+
+check() {
+  cd $pkgname-$pkgver/wishbone-tool
+  cargo test --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm 755 wishbone-tool/target/release/wishbone-tool -t 
"${pkgdir}/usr/bin/"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in wishbone-utils/trunk (PKGBUILD)

2020-11-14 Thread Daurnimator via arch-commits
Date: Saturday, November 14, 2020 @ 11:25:30
  Author: daurnimator
Revision: 754057

upgpkg: wishbone-utils 0.7.8-1

Modified:
  wishbone-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-14 11:17:10 UTC (rev 754056)
+++ PKGBUILD2020-11-14 11:25:30 UTC (rev 754057)
@@ -2,7 +2,7 @@
 # Maintainer: Daurnimator
 
 pkgname=wishbone-utils
-pkgver=0.7.5
+pkgver=0.7.8
 pkgrel=1
 pkgdesc='Utilities for working with a Wishbone bridge'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc gcc-libs)
 makedepends=(rust)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/litex-hub/wishbone-utils/archive/v$pkgver.tar.gz)
-sha512sums=('7652fefbd70714480cdc9ecc21f78c0d5ee248067c30ac48a4d548bbaceeecb5850a86ee27f953f0d8c3150e4a4c8ef607bcdddac837af206ee6de4792e8d9f2')
+sha512sums=('ca61e335f97c3e5ed0b02d71601c4d2102c87ea40051f7345514c1624c06bdaa47bb6acca66c0709968c9e39faf570f49e5ec81cb444909029498043240e506d')
 
 build() {
   cd $pkgname-$pkgver/wishbone-tool


[arch-commits] Commit in zig/repos/community-testing-x86_64 (4 files)

2020-11-09 Thread Daurnimator via arch-commits
Date: Monday, November 9, 2020 @ 12:35:23
  Author: daurnimator
Revision: 746877

archrelease: copy trunk to community-testing-x86_64

Added:
  zig/repos/community-testing-x86_64/PKGBUILD
(from rev 746876, zig/trunk/PKGBUILD)
  zig/repos/community-testing-x86_64/resolve_DNS.patch
(from rev 746876, zig/trunk/resolve_DNS.patch)
Deleted:
  zig/repos/community-testing-x86_64/PKGBUILD
  zig/repos/community-testing-x86_64/resolve_DNS.patch

---+
 PKGBUILD  |  102 ++--
 resolve_DNS.patch |   46 +++
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-09 12:31:27 UTC (rev 746876)
+++ PKGBUILD2020-11-09 12:35:23 UTC (rev 746877)
@@ -1,51 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Marc Tiehuis 
-
-pkgname=zig
-pkgver=0.6.0+03ae77b8b
-pkgrel=1
-pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
-arch=('x86_64')
-url='https://ziglang.org/'
-license=('MIT')
-depends=('clang' 'llvm-libs' 'lld')
-makedepends=('cmake' 'llvm')
-source=("https://ziglang.org/builds/zig-$pkgver.tar.xz;
-"resolve_DNS.patch")
-sha256sums=('a97eead39292edac077dfe6643a8786f37820da95f597ec7804f3d34783a0d9a'
-'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
-
-prepare() {
-cd "$pkgname-$pkgver"
-# https://github.com/ziglang/zig/issues/6898
-patch -p1 < ../resolve_DNS.patch
-}
-
-build() {
-cd "$pkgname-$pkgver"
-
-mkdir -p build
-cd build
-# The zig CMakeLists uses build type Debug if not set
-# override it back to None so makepkg env vars are respected
-cmake \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DZIG_PREFER_CLANG_CPP_DYLIB=ON \
-..
-make
-}
-
-check() {
-cd "$pkgname-$pkgver/build"
-
-./zig build test
-}
-
-package() {
-cd "$pkgname-$pkgver"
-
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-make -C build DESTDIR="$pkgdir" install
-}

Copied: zig/repos/community-testing-x86_64/PKGBUILD (from rev 746876, 
zig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-09 12:35:23 UTC (rev 746877)
@@ -0,0 +1,51 @@
+# Maintainer: Daurnimator 
+# Contributor: Marc Tiehuis 
+
+pkgname=zig
+pkgver=0.7.0
+pkgrel=1
+pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
+arch=('x86_64')
+url='https://ziglang.org/'
+license=('MIT')
+depends=('clang' 'llvm-libs' 'lld')
+makedepends=('cmake' 'llvm')
+source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
+"resolve_DNS.patch")
+sha256sums=('0efd2cf6c3b05723db80e9cf193bc55150bba84ca41f855a90f53fc756445f83'
+'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
+
+prepare() {
+cd "$pkgname-$pkgver"
+# https://github.com/ziglang/zig/issues/6898
+patch -p1 < ../resolve_DNS.patch
+}
+
+build() {
+cd "$pkgname-$pkgver"
+
+mkdir -p build
+cd build
+# The zig CMakeLists uses build type Debug if not set
+# override it back to None so makepkg env vars are respected
+cmake \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DZIG_PREFER_CLANG_CPP_DYLIB=ON \
+..
+make
+}
+
+check() {
+cd "$pkgname-$pkgver/build"
+
+./zig build test
+}
+
+package() {
+cd "$pkgname-$pkgver"
+
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+make -C build DESTDIR="$pkgdir" install
+}

Deleted: resolve_DNS.patch
===
--- resolve_DNS.patch   2020-11-09 12:31:27 UTC (rev 746876)
+++ resolve_DNS.patch   2020-11-09 12:35:23 UTC (rev 746877)
@@ -1,23 +0,0 @@
-diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig
-index 9f40bb5a3..15dd8c920 100644
 a/lib/std/net/test.zig
-+++ b/lib/std/net/test.zig
-@@ -106,18 +106,6 @@ test "resolve DNS" {
- }
- }
- 
--// Resolve localhost, this should not fail.
--{
--const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
--const localhost_v6 = try net.Address.parseIp("::2", 80);
--
--const result = try net.getAddressList(testing.allocator, "localhost", 
80);
--defer result.deinit();
--for (result.addrs) |addr| {
--if (addr.eql(localhost_v4) or addr.eql(localhost_v6)) break;
--} else @panic("unexpected address for localhost");
--}
--
- {
- // The tests are required to work even when there is no Internet 
connection,
- // so some of these errors we must accept and skip the test.

Copied: zig/repos/community-testing-x86_64/resolve_DNS.patch (from 

[arch-commits] Commit in zig/trunk (PKGBUILD)

2020-11-09 Thread Daurnimator via arch-commits
Date: Monday, November 9, 2020 @ 09:45:23
  Author: daurnimator
Revision: 746776

upgpkg: zig 0.7.0-1

Modified:
  zig/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 09:45:11 UTC (rev 746775)
+++ PKGBUILD2020-11-09 09:45:23 UTC (rev 746776)
@@ -2,7 +2,7 @@
 # Contributor: Marc Tiehuis 
 
 pkgname=zig
-pkgver=0.6.0+03ae77b8b
+pkgver=0.7.0
 pkgrel=1
 pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
 arch=('x86_64')
@@ -10,9 +10,9 @@
 license=('MIT')
 depends=('clang' 'llvm-libs' 'lld')
 makedepends=('cmake' 'llvm')
-source=("https://ziglang.org/builds/zig-$pkgver.tar.xz;
+source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
 "resolve_DNS.patch")
-sha256sums=('a97eead39292edac077dfe6643a8786f37820da95f597ec7804f3d34783a0d9a'
+sha256sums=('0efd2cf6c3b05723db80e9cf193bc55150bba84ca41f855a90f53fc756445f83'
 'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
 
 prepare() {


[arch-commits] Commit in zig/repos (3 files)

2020-11-08 Thread Daurnimator via arch-commits
Date: Sunday, November 8, 2020 @ 13:35:27
  Author: daurnimator
Revision: 746563

archrelease: copy trunk to community-staging-x86_64

Added:
  zig/repos/community-staging-x86_64/
  zig/repos/community-staging-x86_64/PKGBUILD
(from rev 746562, zig/trunk/PKGBUILD)
  zig/repos/community-staging-x86_64/resolve_DNS.patch
(from rev 746562, zig/trunk/resolve_DNS.patch)

---+
 PKGBUILD  |   51 +++
 resolve_DNS.patch |   23 +++
 2 files changed, 74 insertions(+)

Copied: zig/repos/community-staging-x86_64/PKGBUILD (from rev 746562, 
zig/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 13:35:27 UTC (rev 746563)
@@ -0,0 +1,51 @@
+# Maintainer: Daurnimator 
+# Contributor: Marc Tiehuis 
+
+pkgname=zig
+pkgver=0.6.0+03ae77b8b
+pkgrel=1
+pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
+arch=('x86_64')
+url='https://ziglang.org/'
+license=('MIT')
+depends=('clang' 'llvm-libs' 'lld')
+makedepends=('cmake' 'llvm')
+source=("https://ziglang.org/builds/zig-$pkgver.tar.xz;
+"resolve_DNS.patch")
+sha256sums=('a97eead39292edac077dfe6643a8786f37820da95f597ec7804f3d34783a0d9a'
+'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
+
+prepare() {
+cd "$pkgname-$pkgver"
+# https://github.com/ziglang/zig/issues/6898
+patch -p1 < ../resolve_DNS.patch
+}
+
+build() {
+cd "$pkgname-$pkgver"
+
+mkdir -p build
+cd build
+# The zig CMakeLists uses build type Debug if not set
+# override it back to None so makepkg env vars are respected
+cmake \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DZIG_PREFER_CLANG_CPP_DYLIB=ON \
+..
+make
+}
+
+check() {
+cd "$pkgname-$pkgver/build"
+
+./zig build test
+}
+
+package() {
+cd "$pkgname-$pkgver"
+
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+make -C build DESTDIR="$pkgdir" install
+}

Copied: zig/repos/community-staging-x86_64/resolve_DNS.patch (from rev 746562, 
zig/trunk/resolve_DNS.patch)
===
--- community-staging-x86_64/resolve_DNS.patch  (rev 0)
+++ community-staging-x86_64/resolve_DNS.patch  2020-11-08 13:35:27 UTC (rev 
746563)
@@ -0,0 +1,23 @@
+diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig
+index 9f40bb5a3..15dd8c920 100644
+--- a/lib/std/net/test.zig
 b/lib/std/net/test.zig
+@@ -106,18 +106,6 @@ test "resolve DNS" {
+ }
+ }
+ 
+-// Resolve localhost, this should not fail.
+-{
+-const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
+-const localhost_v6 = try net.Address.parseIp("::2", 80);
+-
+-const result = try net.getAddressList(testing.allocator, "localhost", 
80);
+-defer result.deinit();
+-for (result.addrs) |addr| {
+-if (addr.eql(localhost_v4) or addr.eql(localhost_v6)) break;
+-} else @panic("unexpected address for localhost");
+-}
+-
+ {
+ // The tests are required to work even when there is no Internet 
connection,
+ // so some of these errors we must accept and skip the test.


[arch-commits] Commit in zig/trunk (PKGBUILD resolve_DNS.patch)

2020-11-08 Thread Daurnimator via arch-commits
Date: Sunday, November 8, 2020 @ 13:34:46
  Author: daurnimator
Revision: 746562

upgpkg: zig 0.6.0+03ae77b8b-1 upgrade to snapshot of master for LLVM11 compat

Added:
  zig/trunk/resolve_DNS.patch
Modified:
  zig/trunk/PKGBUILD

---+
 PKGBUILD  |   16 
 resolve_DNS.patch |   23 +++
 2 files changed, 35 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 13:25:57 UTC (rev 746561)
+++ PKGBUILD2020-11-08 13:34:46 UTC (rev 746562)
@@ -2,8 +2,8 @@
 # Contributor: Marc Tiehuis 
 
 pkgname=zig
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.6.0+03ae77b8b
+pkgrel=1
 pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
 arch=('x86_64')
 url='https://ziglang.org/'
@@ -10,9 +10,17 @@
 license=('MIT')
 depends=('clang' 'llvm-libs' 'lld')
 makedepends=('cmake' 'llvm')
-source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;)
-sha256sums=('5d167dc19354282dd35dd17b38e99e1763713b9be8a4ba9e9e69284e059e7204')
+source=("https://ziglang.org/builds/zig-$pkgver.tar.xz;
+"resolve_DNS.patch")
+sha256sums=('a97eead39292edac077dfe6643a8786f37820da95f597ec7804f3d34783a0d9a'
+'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
 
+prepare() {
+cd "$pkgname-$pkgver"
+# https://github.com/ziglang/zig/issues/6898
+patch -p1 < ../resolve_DNS.patch
+}
+
 build() {
 cd "$pkgname-$pkgver"
 

Added: resolve_DNS.patch
===
--- resolve_DNS.patch   (rev 0)
+++ resolve_DNS.patch   2020-11-08 13:34:46 UTC (rev 746562)
@@ -0,0 +1,23 @@
+diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig
+index 9f40bb5a3..15dd8c920 100644
+--- a/lib/std/net/test.zig
 b/lib/std/net/test.zig
+@@ -106,18 +106,6 @@ test "resolve DNS" {
+ }
+ }
+ 
+-// Resolve localhost, this should not fail.
+-{
+-const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
+-const localhost_v6 = try net.Address.parseIp("::2", 80);
+-
+-const result = try net.getAddressList(testing.allocator, "localhost", 
80);
+-defer result.deinit();
+-for (result.addrs) |addr| {
+-if (addr.eql(localhost_v4) or addr.eql(localhost_v6)) break;
+-} else @panic("unexpected address for localhost");
+-}
+-
+ {
+ // The tests are required to work even when there is no Internet 
connection,
+ // so some of these errors we must accept and skip the test.


[arch-commits] Commit in terraform/repos/community-x86_64 (6 files)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 03:14:16
  Author: daurnimator
Revision: 739069

archrelease: copy trunk to community-x86_64

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

--+
 2.patch  |   84 +--
 CHANGELOG.md |  408 +
 PKGBUILD |   88 ++--
 3 files changed, 294 insertions(+), 286 deletions(-)

Deleted: 2.patch
===
--- 2.patch 2020-11-02 03:12:33 UTC (rev 739068)
+++ 2.patch 2020-11-02 03:14:16 UTC (rev 739069)
@@ -1,42 +0,0 @@
-From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
-From: Kevin Burke 
-Date: Sun, 12 Jul 2020 14:35:27 -0700
-Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
-
-I verified that the code itself does not have similar assertions about
-the error message that would break if a different string was returned
-for the error message.
-
-Fixes #25553.

- helper/schema/provider_test.go | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
-index 01ee82a1f4d..13809b35bbf 100644
 a/helper/schema/provider_test.go
-+++ b/helper/schema/provider_test.go
-@@ -3,7 +3,7 @@ package schema
- import (
-   "fmt"
-   "reflect"
--  "strings"
-+  "regexp"
-   "testing"
-   "time"
- 
-@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
-   if err == nil {
-   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
-   }
--  expectedErrMsg := "time: invalid duration invalid"
--  if !strings.Contains(err.Error(), expectedErrMsg) {
--  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
-+  // Go 1.15 added quotes around the invalid duration value. You can 
remove
-+  // the regex once Go 1.14 and below are no longer supported.
-+  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
-+  if !expectedErrMsg.MatchString(err.Error()) {
-+  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
-   err.Error(),
-   expectedErrMsg)
-   }

Copied: terraform/repos/community-x86_64/2.patch (from rev 739068, 
terraform/trunk/2.patch)
===
--- 2.patch (rev 0)
+++ 2.patch 2020-11-02 03:14:16 UTC (rev 739069)
@@ -0,0 +1,42 @@
+From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
+From: Kevin Burke 
+Date: Sun, 12 Jul 2020 14:35:27 -0700
+Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
+
+I verified that the code itself does not have similar assertions about
+the error message that would break if a different string was returned
+for the error message.
+
+Fixes #25553.
+---
+ helper/schema/provider_test.go | 10 ++
+ 1 file changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
+index 01ee82a1f4d..13809b35bbf 100644
+--- a/helper/schema/provider_test.go
 b/helper/schema/provider_test.go
+@@ -3,7 +3,7 @@ package schema
+ import (
+   "fmt"
+   "reflect"
+-  "strings"
++  "regexp"
+   "testing"
+   "time"
+ 
+@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
+   if err == nil {
+   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
+   }
+-  expectedErrMsg := "time: invalid duration invalid"
+-  if !strings.Contains(err.Error(), expectedErrMsg) {
+-  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
++  // Go 1.15 added quotes around the invalid duration value. You can 
remove
++  // the regex once Go 1.14 and below are no longer supported.
++  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
++  if !expectedErrMsg.MatchString(err.Error()) {
++  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
+   err.Error(),
+   expectedErrMsg)
+   }

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2020-11-02 03:12:33 UTC (rev 739068)
+++ CHANGELOG.md2020-11-02 03:14:16 UTC (rev 739069)
@@ -1,200 +0,0 @@
-## 0.13.4 (September 30, 2020)
-

[arch-commits] Commit in terraform/trunk (CHANGELOG.md)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 03:12:33
  Author: daurnimator
Revision: 739068

upgpkg: terraform 0.13.5-1

Modified:
  terraform/trunk/CHANGELOG.md

--+
 CHANGELOG.md |8 
 1 file changed, 8 insertions(+)

Modified: CHANGELOG.md
===
--- CHANGELOG.md2020-11-02 03:00:01 UTC (rev 739067)
+++ CHANGELOG.md2020-11-02 03:12:33 UTC (rev 739068)
@@ -1,3 +1,11 @@
+## 0.13.5 (October 21, 2020)
+
+BUG FIXES:
+
+* terraform: fix issue where the provider configuration was not properly 
attached to the configured provider source address by localname 
([#26567](https://github.com/hashicorp/terraform/issues/26567))
+* core: fix a performance issue when a resource contains a very large and 
deeply nested schema 
([#26577](https://github.com/hashicorp/terraform/issues/26577))
+* backend/azurerm: fix an issue when using the metadata host to lookup 
environments ([#26463](https://github.com/hashicorp/terraform/issues/26463))
+
 ## 0.13.4 (September 30, 2020)
 
 UPGRADE NOTES:


[arch-commits] Commit in terraform/trunk (PKGBUILD)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 03:00:01
  Author: daurnimator
Revision: 739067

upgpkg: terraform 0.13.5-1

Modified:
  terraform/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-02 02:56:30 UTC (rev 739066)
+++ PKGBUILD2020-11-02 03:00:01 UTC (rev 739067)
@@ -2,7 +2,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=terraform
-pkgver=0.13.4
+pkgver=0.13.5
 pkgrel=1
 pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
 url="https://www.terraform.io/;
@@ -12,7 +12,7 @@
 depends=('glibc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;
"2.patch")
-sha512sums=('e02cb2a9967a923b918e64acd2ffa6f8a8a03676e5207d238a6cf215f4e5cb0e1db3ac9760792187757a8f18d9d23cbfd44c1ce5d6d5bacf70786ef473824dc3'
+sha512sums=('d8af93023275b5aa50ef0dbb66fcc834593ad598300a1c38bfcf2b9bd43bc84eab81a5e63bef29701b2a078019e4b7223cae2a846ef7680a6105b5f90790b41c'
 
'bb88abb0b57d2a1f779df2036fe529cb17c95fbfc8831a79fdb7a97a7790d3e7247998c2757d7dd7c6193dd48bc99893363363dcf2b26f6d1ecc6f4cb2568c2a')
 changelog="CHANGELOG.md"
 


[arch-commits] Commit in kustomize/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 02:56:30
  Author: daurnimator
Revision: 739066

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 739065, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-02 02:55:41 UTC (rev 739065)
+++ PKGBUILD2020-11-02 02:56:30 UTC (rev 739066)
@@ -1,47 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=3.8.5
-pkgrel=1
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('ebf6b57fc7bd1a7facf9fe4fda4c984c05c3603fe6786d32bd2ebf7fae960de95563fa53adf3d99dd10643663c93867871a08b505c0b3470cf9be477ee54501e')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 739065, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-02 02:56:30 UTC (rev 739066)
@@ -0,0 +1,47 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=3.8.6
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('35837895b5fabc16ff70e870dad29abf051585ebd3120f26a59b3ac5148aab6a3bdabfc55ee03d428701ba98ce95fad2c007f853e9292edf47ad2a8ba3f74031')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in kustomize/trunk (PKGBUILD)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 02:55:41
  Author: daurnimator
Revision: 739065

upgpkg: kustomize 3.8.6-1

Modified:
  kustomize/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-02 01:42:03 UTC (rev 739064)
+++ PKGBUILD2020-11-02 02:55:41 UTC (rev 739065)
@@ -2,7 +2,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=kustomize
-pkgver=3.8.5
+pkgver=3.8.6
 pkgrel=1
 pkgdesc="Template-free customization of Kubernetes YAML manifests"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('ebf6b57fc7bd1a7facf9fe4fda4c984c05c3603fe6786d32bd2ebf7fae960de95563fa53adf3d99dd10643663c93867871a08b505c0b3470cf9be477ee54501e')
+sha512sums=('35837895b5fabc16ff70e870dad29abf051585ebd3120f26a59b3ac5148aab6a3bdabfc55ee03d428701ba98ce95fad2c007f853e9292edf47ad2a8ba3f74031')
 
 build(){
   cd "kustomize-kustomize-v${pkgver}/kustomize"


[arch-commits] Commit in httpie/repos/community-any (PKGBUILD PKGBUILD)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 00:01:06
  Author: daurnimator
Revision: 739060

archrelease: copy trunk to community-any

Added:
  httpie/repos/community-any/PKGBUILD
(from rev 739059, httpie/trunk/PKGBUILD)
Deleted:
  httpie/repos/community-any/PKGBUILD

--+
 PKGBUILD |   81 -
 1 file changed, 43 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-02 00:00:03 UTC (rev 739059)
+++ PKGBUILD2020-11-02 00:01:06 UTC (rev 739060)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Daniel Micay 
-# Contributor: Thomas Weißschuh 
-
-pkgname=httpie
-pkgver=2.3.0
-pkgrel=1
-pkgdesc="cURL for humans"
-url="https://github.com/jakubroztocil/httpie;
-depends=('python-requests' 'python-pygments' 'python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock')
-conflicts=(python-httpie)
-replaces=(python-httpie python2-httpie)
-license=('BSD')
-arch=('any')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('f25005e2c1cf1c5031e26bc6a4d00820df8b77f5')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/httpie/LICENSE"
-  python3 setup.py install --root="$pkgdir" --optimize=1
-
-  # Fix upstream, include them in MANIFEST.in and use data_files in setup.py 
to install them automatically
-  # TODO: add zsh support
-  install -Dm644 extras/httpie-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/http
-  install -Dm644 extras/httpie-completion.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/http.fish
-}
-
-check() {
-  cd $pkgname-$pkgver
-  PYTHONDONTWRITEBYTECODE=1 python3 setup.py test
-}

Copied: httpie/repos/community-any/PKGBUILD (from rev 739059, 
httpie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-02 00:01:06 UTC (rev 739060)
@@ -0,0 +1,43 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: daurnimator 
+# Contributor: Daniel Micay 
+# Contributor: Thomas Weißschuh 
+
+pkgname=httpie
+pkgver=2.3.0
+pkgrel=2
+pkgdesc="cURL for humans"
+url="https://github.com/jakubroztocil/httpie;
+depends=('python-requests'
+ 'python-requests-toolbelt'
+ 'python-pygments'
+ 'python-pysocks'
+ 'python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock')
+conflicts=(python-httpie)
+replaces=(python-httpie python2-httpie)
+license=('BSD')
+arch=('any')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
+sha1sums=('f25005e2c1cf1c5031e26bc6a4d00820df8b77f5')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/httpie/LICENSE"
+  python3 setup.py install --root="$pkgdir" --optimize=1
+
+  # Fix upstream, include them in MANIFEST.in and use data_files in setup.py 
to install them automatically
+  # TODO: add zsh support
+  install -Dm644 extras/httpie-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/http
+  install -Dm644 extras/httpie-completion.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/http.fish
+}
+
+check() {
+  cd $pkgname-$pkgver
+  PYTHONDONTWRITEBYTECODE=1 python3 setup.py test
+}


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 00:00:03
  Author: daurnimator
Revision: 739059

upgpkg: httpie 2.3.0-2

Add missing dependencies

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-01 22:49:15 UTC (rev 739058)
+++ PKGBUILD2020-11-02 00:00:03 UTC (rev 739059)
@@ -1,13 +1,18 @@
 # Maintainer: Jelle van der Waa 
+# Maintainer: daurnimator 
 # Contributor: Daniel Micay 
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
-depends=('python-requests' 'python-pygments' 'python-setuptools')
+depends=('python-requests'
+ 'python-requests-toolbelt'
+ 'python-pygments'
+ 'python-pysocks'
+ 'python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock')
 conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)


[arch-commits] Commit in chezmoi/trunk (PKGBUILD)

2020-10-30 Thread Daurnimator via arch-commits
Date: Saturday, October 31, 2020 @ 03:54:51
  Author: daurnimator
Revision: 737414

upgpkg: chezmoi 1.8.8-1

Modified:
  chezmoi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-31 00:01:58 UTC (rev 737413)
+++ PKGBUILD2020-10-31 03:54:51 UTC (rev 737414)
@@ -3,7 +3,7 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.8.7
+pkgver=1.8.8
 pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('bb1da178cc73a37d5b7bedd2a74d6f1eef3dcc28224dabaacdc8645e802d892810d8d8c5df2f9e3eb684f4a5ee409ab2c0bfb754f6fad65285dc7bb739bb12e6')
+sha512sums=('3eaef846d4140223fd900b374c492c3019f59b85bd7ca549acb4e87fa492a735ff1b13adf21304c9f43dd39bfea6d38289b9619d7f765fa9c4aaf72f4caa0a2c')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-30 Thread Daurnimator via arch-commits
Date: Saturday, October 31, 2020 @ 03:55:33
  Author: daurnimator
Revision: 737415

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 737414, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-31 03:54:51 UTC (rev 737414)
+++ PKGBUILD2020-10-31 03:55:33 UTC (rev 737415)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.7
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('bb1da178cc73a37d5b7bedd2a74d6f1eef3dcc28224dabaacdc8645e802d892810d8d8c5df2f9e3eb684f4a5ee409ab2c0bfb754f6fad65285dc7bb739bb12e6')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 737414, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-31 03:55:33 UTC (rev 737415)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.8
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('3eaef846d4140223fd900b374c492c3019f59b85bd7ca549acb4e87fa492a735ff1b13adf21304c9f43dd39bfea6d38289b9619d7f765fa9c4aaf72f4caa0a2c')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in httpie/repos/community-any (PKGBUILD PKGBUILD)

2020-10-29 Thread Daurnimator via arch-commits
Date: Thursday, October 29, 2020 @ 12:53:58
  Author: daurnimator
Revision: 736503

archrelease: copy trunk to community-any

Added:
  httpie/repos/community-any/PKGBUILD
(from rev 736502, httpie/trunk/PKGBUILD)
Deleted:
  httpie/repos/community-any/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-29 12:53:06 UTC (rev 736502)
+++ PKGBUILD2020-10-29 12:53:58 UTC (rev 736503)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Daniel Micay 
-# Contributor: Thomas Weißschuh 
-
-pkgname=httpie
-pkgver=2.2.0
-pkgrel=2
-pkgdesc="cURL for humans"
-url="https://github.com/jakubroztocil/httpie;
-depends=('python-requests' 'python-pygments' 'python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock')
-conflicts=(python-httpie)
-replaces=(python-httpie python2-httpie)
-license=('BSD')
-arch=('any')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('361033d7e8575c5adeaf37acc445f3d0530e51d7')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/httpie/LICENSE"
-  python3 setup.py install --root="$pkgdir" --optimize=1
-
-  # Fix upstream, include them in MANIFEST.in and use data_files in setup.py 
to install them automatically
-  # TODO: add zsh support
-  install -Dm644 extras/httpie-completion.bash 
$pkgdir/usr/share/bash-completion/completions/http
-  install -Dm644 extras/httpie-completion.fish 
$pkgdir/usr/share/fish/vendor_completions.d/http.fish
-}
-
-check() {
-  cd $pkgname-$pkgver
-  PYTHONDONTWRITEBYTECODE=1 python3 setup.py test
-}

Copied: httpie/repos/community-any/PKGBUILD (from rev 736502, 
httpie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-29 12:53:58 UTC (rev 736503)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Daniel Micay 
+# Contributor: Thomas Weißschuh 
+
+pkgname=httpie
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="cURL for humans"
+url="https://github.com/jakubroztocil/httpie;
+depends=('python-requests' 'python-pygments' 'python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock')
+conflicts=(python-httpie)
+replaces=(python-httpie python2-httpie)
+license=('BSD')
+arch=('any')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
+sha1sums=('f25005e2c1cf1c5031e26bc6a4d00820df8b77f5')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/httpie/LICENSE"
+  python3 setup.py install --root="$pkgdir" --optimize=1
+
+  # Fix upstream, include them in MANIFEST.in and use data_files in setup.py 
to install them automatically
+  # TODO: add zsh support
+  install -Dm644 extras/httpie-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/http
+  install -Dm644 extras/httpie-completion.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/http.fish
+}
+
+check() {
+  cd $pkgname-$pkgver
+  PYTHONDONTWRITEBYTECODE=1 python3 setup.py test
+}


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-10-29 Thread Daurnimator via arch-commits
Date: Thursday, October 29, 2020 @ 12:53:06
  Author: daurnimator
Revision: 736502

upgpkg: httpie 2.3.0-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-29 12:08:52 UTC (rev 736501)
+++ PKGBUILD2020-10-29 12:53:06 UTC (rev 736502)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=2.2.0
-pkgrel=2
+pkgver=2.3.0
+pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('361033d7e8575c5adeaf37acc445f3d0530e51d7')
+sha1sums=('f25005e2c1cf1c5031e26bc6a4d00820df8b77f5')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in dos2unix/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-13 Thread Daurnimator via arch-commits
Date: Tuesday, October 13, 2020 @ 09:48:21
  Author: daurnimator
Revision: 723811

archrelease: copy trunk to community-x86_64

Added:
  dos2unix/repos/community-x86_64/PKGBUILD
(from rev 723810, dos2unix/trunk/PKGBUILD)
Deleted:
  dos2unix/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   63 ++---
 1 file changed, 32 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-13 09:47:29 UTC (rev 723810)
+++ PKGBUILD2020-10-13 09:48:21 UTC (rev 723811)
@@ -1,31 +0,0 @@
-# Contributor: Bartłomiej Piotrowski
-# Contributor: Renato Garcia 
-# Contributor: Gerson E. Ruotolo 
-# Maintainer: Jelle van der Waa 
-
-pkgname=dos2unix
-pkgver=7.4.1
-pkgrel=2
-pkgdesc='Text file format converter'
-arch=('x86_64')
-url='https://waterlan.home.xs4all.nl/dos2unix.html'
-license=('BSD')
-depends=('glibc')
-makedepends=('perl')
-conflicts=('hd2u')
-source=(https://waterlan.home.xs4all.nl/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
-validpgpkeys=('F8F1BEA490496A09CCA328CC38C1F572B12725BE')
-md5sums=('6b402c10899416707da60188cd6bb0f3'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  make LDFLAGS_USER=${LDFLAGS}
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  install -D -m644 COPYING.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: dos2unix/repos/community-x86_64/PKGBUILD (from rev 723810, 
dos2unix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-13 09:48:21 UTC (rev 723811)
@@ -0,0 +1,32 @@
+# Contributor: Bartłomiej Piotrowski
+# Contributor: Renato Garcia 
+# Contributor: Gerson E. Ruotolo 
+# Maintainer: Jelle van der Waa 
+# Maintainer: Daurnimator 
+
+pkgname=dos2unix
+pkgver=7.4.2
+pkgrel=1
+pkgdesc='Text file format converter'
+arch=('x86_64')
+url='https://waterlan.home.xs4all.nl/dos2unix.html'
+license=('BSD')
+depends=('glibc')
+makedepends=('perl')
+conflicts=('hd2u')
+source=(https://waterlan.home.xs4all.nl/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+validpgpkeys=('F8F1BEA490496A09CCA328CC38C1F572B12725BE')
+md5sums=('4e8f8c230a72753b307fab69f8121ba4'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  make LDFLAGS_USER=${LDFLAGS}
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -D -m644 COPYING.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in dos2unix/trunk (PKGBUILD)

2020-10-13 Thread Daurnimator via arch-commits
Date: Tuesday, October 13, 2020 @ 09:47:29
  Author: daurnimator
Revision: 723810

upgpkg: dos2unix 7.4.2-1

Modified:
  dos2unix/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-13 08:56:37 UTC (rev 723809)
+++ PKGBUILD2020-10-13 09:47:29 UTC (rev 723810)
@@ -2,10 +2,11 @@
 # Contributor: Renato Garcia 
 # Contributor: Gerson E. Ruotolo 
 # Maintainer: Jelle van der Waa 
+# Maintainer: Daurnimator 
 
 pkgname=dos2unix
-pkgver=7.4.1
-pkgrel=2
+pkgver=7.4.2
+pkgrel=1
 pkgdesc='Text file format converter'
 arch=('x86_64')
 url='https://waterlan.home.xs4all.nl/dos2unix.html'
@@ -15,7 +16,7 @@
 conflicts=('hd2u')
 
source=(https://waterlan.home.xs4all.nl/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
 validpgpkeys=('F8F1BEA490496A09CCA328CC38C1F572B12725BE')
-md5sums=('6b402c10899416707da60188cd6bb0f3'
+md5sums=('4e8f8c230a72753b307fab69f8121ba4'
  'SKIP')
 
 build() {


[arch-commits] Commit in terraform/repos/community-x86_64 (6 files)

2020-10-13 Thread Daurnimator via arch-commits
Date: Tuesday, October 13, 2020 @ 07:54:06
  Author: daurnimator
Revision: 723803

archrelease: copy trunk to community-x86_64

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

--+
 2.patch  |   84 ++--
 CHANGELOG.md |  378 ++---
 PKGBUILD |   88 ++---
 3 files changed, 286 insertions(+), 264 deletions(-)

Deleted: 2.patch
===
--- 2.patch 2020-10-13 07:53:08 UTC (rev 723802)
+++ 2.patch 2020-10-13 07:54:06 UTC (rev 723803)
@@ -1,42 +0,0 @@
-From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
-From: Kevin Burke 
-Date: Sun, 12 Jul 2020 14:35:27 -0700
-Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
-
-I verified that the code itself does not have similar assertions about
-the error message that would break if a different string was returned
-for the error message.
-
-Fixes #25553.

- helper/schema/provider_test.go | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
-index 01ee82a1f4d..13809b35bbf 100644
 a/helper/schema/provider_test.go
-+++ b/helper/schema/provider_test.go
-@@ -3,7 +3,7 @@ package schema
- import (
-   "fmt"
-   "reflect"
--  "strings"
-+  "regexp"
-   "testing"
-   "time"
- 
-@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
-   if err == nil {
-   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
-   }
--  expectedErrMsg := "time: invalid duration invalid"
--  if !strings.Contains(err.Error(), expectedErrMsg) {
--  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
-+  // Go 1.15 added quotes around the invalid duration value. You can 
remove
-+  // the regex once Go 1.14 and below are no longer supported.
-+  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
-+  if !expectedErrMsg.MatchString(err.Error()) {
-+  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
-   err.Error(),
-   expectedErrMsg)
-   }

Copied: terraform/repos/community-x86_64/2.patch (from rev 723802, 
terraform/trunk/2.patch)
===
--- 2.patch (rev 0)
+++ 2.patch 2020-10-13 07:54:06 UTC (rev 723803)
@@ -0,0 +1,42 @@
+From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
+From: Kevin Burke 
+Date: Sun, 12 Jul 2020 14:35:27 -0700
+Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
+
+I verified that the code itself does not have similar assertions about
+the error message that would break if a different string was returned
+for the error message.
+
+Fixes #25553.
+---
+ helper/schema/provider_test.go | 10 ++
+ 1 file changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
+index 01ee82a1f4d..13809b35bbf 100644
+--- a/helper/schema/provider_test.go
 b/helper/schema/provider_test.go
+@@ -3,7 +3,7 @@ package schema
+ import (
+   "fmt"
+   "reflect"
+-  "strings"
++  "regexp"
+   "testing"
+   "time"
+ 
+@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
+   if err == nil {
+   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
+   }
+-  expectedErrMsg := "time: invalid duration invalid"
+-  if !strings.Contains(err.Error(), expectedErrMsg) {
+-  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
++  // Go 1.15 added quotes around the invalid duration value. You can 
remove
++  // the regex once Go 1.14 and below are no longer supported.
++  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
++  if !expectedErrMsg.MatchString(err.Error()) {
++  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
+   err.Error(),
+   expectedErrMsg)
+   }

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2020-10-13 07:53:08 UTC (rev 723802)
+++ CHANGELOG.md2020-10-13 07:54:06 UTC (rev 723803)
@@ -1,178 +0,0 @@
-## 0.13.3 (Unreleased)
-
-## 

[arch-commits] Commit in terraform/trunk (CHANGELOG.md PKGBUILD)

2020-10-13 Thread Daurnimator via arch-commits
Date: Tuesday, October 13, 2020 @ 07:53:08
  Author: daurnimator
Revision: 723802

upgpkg: terraform 0.13.4-1

Modified:
  terraform/trunk/CHANGELOG.md
  terraform/trunk/PKGBUILD

--+
 CHANGELOG.md |   24 +++-
 PKGBUILD |4 ++--
 2 files changed, 25 insertions(+), 3 deletions(-)

Modified: CHANGELOG.md
===
--- CHANGELOG.md2020-10-13 06:12:06 UTC (rev 723801)
+++ CHANGELOG.md2020-10-13 07:53:08 UTC (rev 723802)
@@ -1,5 +1,27 @@
-## 0.13.3 (Unreleased)
+## 0.13.4 (September 30, 2020)
 
+UPGRADE NOTES:
+
+* The built-in vendor (third-party) provisioners, which include `habitat`, 
`puppet`, `chef`, and `salt-masterless` are now deprecated and will be removed 
in a future version of Terraform. More information [on 
Discuss](https://discuss.hashicorp.com/t/notice-terraform-to-begin-deprecation-of-vendor-tool-specific-provisioners-starting-in-terraform-0-13-4/13997).
+* Deprecated interpolation-only expressions are detected in more contexts in 
addition to resources and provider configurations. Module calls, data sources, 
outputs, and locals are now also covered. Terraform also detects 
interpolation-only expressions in complex values such as lists and objects. An 
expression like `"${foo}"` should be rewritten as just `foo`. 
([#27272](https://github.com/hashicorp/terraform/issues/27272)] 
[[#26334](https://github.com/hashicorp/terraform/issues/26334))
+
+BUG FIXES:
+
+* command: Include schemas from required but unused providers in the output of 
`terraform providers schema`. This allows development tools such as the 
Terraform language server to offer autocompletion for the first resource for a 
given provider. ([#26318](https://github.com/hashicorp/terraform/issues/26318))
+* core: create_before_destroy status is now updated in the state during 
refresh ([#26343](https://github.com/hashicorp/terraform/issues/26343))
+* core: data sources using `depends_on`, either directly or through their 
modules, are no longer are forced to wait until apply by other planned data 
source reads ([#26375](https://github.com/hashicorp/terraform/issues/26375))
+
+## 0.13.3 (September 16, 2020)
+
+BUG FIXES:
+
+* build: fix crash with terraform binary on openBSD 
([#26250](https://github.com/hashicorp/terraform/issues/26250))
+* core: prevent create_before_destroy cycles by not connecting module close 
nodes to resource instance destroy nodes 
([#26186](https://github.com/hashicorp/terraform/issues/26186))
+* core: fix error where plan action changes from CreateThenDelete to 
DeleteThenCreate ([#26192](https://github.com/hashicorp/terraform/issues/26192))
+* core: fix Cycle when create_before_destroy status wasn't checked from state 
([#26263](https://github.com/hashicorp/terraform/issues/26263))
+* core: fix "inconsistent final plan" error when changing the number of 
referenced resources to 0 
([#26264](https://github.com/hashicorp/terraform/issues/26264))
+* states/remote: fix `state push -force` to work for all backends 
([#26190](https://github.com/hashicorp/terraform/issues/26190))
+
 ## 0.13.2 (September 02, 2020)
 
 NEW FEATURES:

Modified: PKGBUILD
===
--- PKGBUILD2020-10-13 06:12:06 UTC (rev 723801)
+++ PKGBUILD2020-10-13 07:53:08 UTC (rev 723802)
@@ -2,7 +2,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=terraform
-pkgver=0.13.3
+pkgver=0.13.4
 pkgrel=1
 pkgdesc="HashiCorp tool for building and updating infrastructure as code 
idempotently"
 url="https://www.terraform.io/;
@@ -12,7 +12,7 @@
 depends=('glibc')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;
"2.patch")
-sha512sums=('64ee5e74e592265e47778dbc5ad2decc61f5e79514c26782128931be180131ef2ab611dbf4cf46875419157b2957b54688ed4026a80812faf3678cb26c2d7f27'
+sha512sums=('e02cb2a9967a923b918e64acd2ffa6f8a8a03676e5207d238a6cf215f4e5cb0e1db3ac9760792187757a8f18d9d23cbfd44c1ce5d6d5bacf70786ef473824dc3'
 
'bb88abb0b57d2a1f779df2036fe529cb17c95fbfc8831a79fdb7a97a7790d3e7247998c2757d7dd7c6193dd48bc99893363363dcf2b26f6d1ecc6f4cb2568c2a')
 changelog="CHANGELOG.md"
 


[arch-commits] Commit in luarocks/repos/community-any (14 files)

2020-10-10 Thread Daurnimator via arch-commits
Date: Saturday, October 10, 2020 @ 11:08:27
  Author: daurnimator
Revision: 723088

archrelease: copy trunk to community-any

Added:
  luarocks/repos/community-any/PKGBUILD
(from rev 723087, luarocks/trunk/PKGBUILD)
  luarocks/repos/community-any/luarocks-admin.bash
(from rev 723087, luarocks/trunk/luarocks-admin.bash)
  luarocks/repos/community-any/luarocks-admin.fish
(from rev 723087, luarocks/trunk/luarocks-admin.fish)
  luarocks/repos/community-any/luarocks-admin.zsh
(from rev 723087, luarocks/trunk/luarocks-admin.zsh)
  luarocks/repos/community-any/luarocks.bash
(from rev 723087, luarocks/trunk/luarocks.bash)
  luarocks/repos/community-any/luarocks.fish
(from rev 723087, luarocks/trunk/luarocks.fish)
  luarocks/repos/community-any/luarocks.zsh
(from rev 723087, luarocks/trunk/luarocks.zsh)
Deleted:
  luarocks/repos/community-any/PKGBUILD
  luarocks/repos/community-any/luarocks-admin.bash
  luarocks/repos/community-any/luarocks-admin.fish
  luarocks/repos/community-any/luarocks-admin.zsh
  luarocks/repos/community-any/luarocks.bash
  luarocks/repos/community-any/luarocks.fish
  luarocks/repos/community-any/luarocks.zsh

-+
 PKGBUILD|  130 +-
 luarocks-admin.bash |2 
 luarocks-admin.fish |2 
 luarocks-admin.zsh  |6 +-
 luarocks.bash   |2 
 luarocks.fish   |2 
 luarocks.zsh|6 +-
 7 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-10 11:06:37 UTC (rev 723087)
+++ PKGBUILD2020-10-10 11:08:27 UTC (rev 723088)
@@ -1,65 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Chris Brannon 
-# Contributor: Geoffroy Carrier 
-
-pkgname=luarocks
-pkgver=3.3.1
-pkgrel=2
-pkgdesc='Deployment and management system for Lua modules'
-backup=(etc/luarocks/config-5.{1,2,3,4}.lua)
-arch=('any')
-url='https://luarocks.org/'
-license=('custom')
-replaces=('luarocks5.1' 'luarocks5.2')
-depends=('coreutils' # need chmod, md5sum
- 'curl' # need one of curl or wget
- 'lua'
- 'unzip' # need unzip and zip or lua-zlib
- 'zip')
-optdepends=('cvs: for fetching sources from CVS repositories'
-'git: for fetching sources from git repositories'
-'mercurial: for fetching sources from mercurial repositories'
-'cmake: for building rocks that use the cmake build system'
-'lua-sec: HTTPS support')
-source=("https://luarocks.org/releases/$pkgname-$pkgver.tar.gz"{,.asc}
-"luarocks.bash"
-"luarocks.fish"
-"luarocks.zsh"
-"luarocks-admin.bash"
-"luarocks-admin.fish"
-"luarocks-admin.zsh")
-sha512sums=('0a695ceb30ae575cbca52abd2aad9675e33a234c53c5d1e125442d874c21e0e3cf6157431f07085e4311f81833680366adfe5c626a66cb5880380b48899a116a'
-'SKIP'
-
'b34ea6fde901f531f841784c7f75dec3f72ac055333fd1dbafbb2da5f5963b2dd4b89e28d2099e57d201877d0b00ae44bd2aced92ab41ef7a775c8f452985d3a'
-
'57378406df3a0454ef46b3b97aaf92bbf2f597ed8216a33757e351efbb151f1fc44ef0ad33f24031eb62f70d3737bf02fb72c3682ea1d533aa9495ca11566ed5'
-
'4a24e6f44c13711ba42eab155d7e5699707e9b8d00158104065ce01d8cfdbe5ea9c1e4f12ed10b324caa076b6862a630a4638092827698a5455181e38d821869'
-
'b43ccd818c3022b63690b6d060940bbbfd2775b1c174b9e99c8162ea0e746b276b4414c2489156e6bb9eae9ce41d83481022a5a757ea94b62074a6c8c57e9c5a'
-
'6b52bd6f446586c3e7d5dbe1ba870e5e37c5bb9cdd5e5878959fa1c151b5a43d8b37c1dc43de46ff2c70c1f57c0429a85c382f53390179609a2880e5aa089497'
-
'f6ab6c652680ce83a3277a2aec4400d234ddfc17c62f44190928a53b7146c38f8a779aedc1c71fed3dd2f1833e1ca924080e98ecf7462274b0d9acb07f90')
-validpgpkeys=('8460980B2B79786DE0C7FCC83FD8F43C2BB3C478')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make ./build/luarocks ./build/luarocks-admin ./build/config-5.4.lua
-  make LUA_VERSION=5.1 LUA_INTERPRETER=lua5.1 LUA_INCDIR=/usr/include/lua5.1 
./build/config-5.1.lua
-  make LUA_VERSION=5.2 LUA_INTERPRETER=lua5.2 LUA_INCDIR=/usr/include/lua5.2 
./build/config-5.2.lua
-  make LUA_VERSION=5.3 LUA_INTERPRETER=lua5.3 LUA_INCDIR=/usr/include/lua5.3 
./build/config-5.3.lua
-}
-
-package() {
-  install -Dm644 luarocks.bash 
"$pkgdir/usr/share/bash-completion/completions/luarocks"
-  install -Dm644 luarocks.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/luarocks.fish"
-  install -Dm644 luarocks.zsh "$pkgdir/usr/share/zsh/site-functions/_luarocks"
-  install -Dm644 luarocks-admin.bash 
"$pkgdir/usr/share/bash-completion/completions/luarocks-admin"
-  install -Dm644 luarocks-admin.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/luarocks-admin.fish"
-  install -Dm644 luarocks-admin.zsh 
"$pkgdir/usr/share/zsh/site-functions/_luarocks-admin"
-
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" 

[arch-commits] Commit in luarocks/trunk (PKGBUILD)

2020-10-10 Thread Daurnimator via arch-commits
Date: Saturday, October 10, 2020 @ 11:06:37
  Author: daurnimator
Revision: 723087

upgpkg: luarocks 3.4.0-1

Modified:
  luarocks/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-10 11:01:03 UTC (rev 723086)
+++ PKGBUILD2020-10-10 11:06:37 UTC (rev 723087)
@@ -4,8 +4,8 @@
 # Contributor: Geoffroy Carrier 
 
 pkgname=luarocks
-pkgver=3.3.1
-pkgrel=2
+pkgver=3.4.0
+pkgrel=1
 pkgdesc='Deployment and management system for Lua modules'
 backup=(etc/luarocks/config-5.{1,2,3,4}.lua)
 arch=('any')
@@ -29,7 +29,7 @@
 "luarocks-admin.bash"
 "luarocks-admin.fish"
 "luarocks-admin.zsh")
-sha512sums=('0a695ceb30ae575cbca52abd2aad9675e33a234c53c5d1e125442d874c21e0e3cf6157431f07085e4311f81833680366adfe5c626a66cb5880380b48899a116a'
+sha512sums=('111ef93cbc4c0d79fdb26d9696b76e6b9e7fb1e30029db43feae9622cc6dd89991f1a62f87af0ca11f4043cb0d445ec73c5edf53e1af5f0d9bc4f756d4c18151'
 'SKIP'
 
'b34ea6fde901f531f841784c7f75dec3f72ac055333fd1dbafbb2da5f5963b2dd4b89e28d2099e57d201877d0b00ae44bd2aced92ab41ef7a775c8f452985d3a'
 
'57378406df3a0454ef46b3b97aaf92bbf2f597ed8216a33757e351efbb151f1fc44ef0ad33f24031eb62f70d3737bf02fb72c3682ea1d533aa9495ca11566ed5'


[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-10 Thread Daurnimator via arch-commits
Date: Saturday, October 10, 2020 @ 10:45:41
  Author: daurnimator
Revision: 723078

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 723077, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-10 10:44:51 UTC (rev 723077)
+++ PKGBUILD2020-10-10 10:45:41 UTC (rev 723078)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.6
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('88327047a81344c450e23b709d572c9dc9da00df47ca7c2e207df511a99deda78a9f7d04ac8b9648ffe0efaf75354f810c2419c2939780aee212b38021987ee3')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 723077, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-10 10:45:41 UTC (rev 723078)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.7
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('bb1da178cc73a37d5b7bedd2a74d6f1eef3dcc28224dabaacdc8645e802d892810d8d8c5df2f9e3eb684f4a5ee409ab2c0bfb754f6fad65285dc7bb739bb12e6')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/trunk (PKGBUILD)

2020-10-10 Thread Daurnimator via arch-commits
Date: Saturday, October 10, 2020 @ 10:43:52
  Author: daurnimator
Revision: 723076

upgpkg: chezmoi 1.8.7-1

Modified:
  chezmoi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-10 10:23:05 UTC (rev 723075)
+++ PKGBUILD2020-10-10 10:43:52 UTC (rev 723076)
@@ -3,7 +3,7 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.8.6
+pkgver=1.8.7
 pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('88327047a81344c450e23b709d572c9dc9da00df47ca7c2e207df511a99deda78a9f7d04ac8b9648ffe0efaf75354f810c2419c2939780aee212b38021987ee3')
+sha512sums=('bb1da178cc73a37d5b7bedd2a74d6f1eef3dcc28224dabaacdc8645e802d892810d8d8c5df2f9e3eb684f4a5ee409ab2c0bfb754f6fad65285dc7bb739bb12e6')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in kustomize/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-10 Thread Daurnimator via arch-commits
Date: Saturday, October 10, 2020 @ 09:14:20
  Author: daurnimator
Revision: 722999

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 722997, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-10 09:14:14 UTC (rev 722998)
+++ PKGBUILD2020-10-10 09:14:20 UTC (rev 722999)
@@ -1,47 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=3.8.5
-pkgrel=1
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('ebf6b57fc7bd1a7facf9fe4fda4c984c05c3603fe6786d32bd2ebf7fae960de95563fa53adf3d99dd10643663c93867871a08b505c0b3470cf9be477ee54501e')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 722997, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-10 09:14:20 UTC (rev 722999)
@@ -0,0 +1,47 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=3.8.5
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('ebf6b57fc7bd1a7facf9fe4fda4c984c05c3603fe6786d32bd2ebf7fae960de95563fa53adf3d99dd10643663c93867871a08b505c0b3470cf9be477ee54501e')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in kustomize/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-10 Thread Daurnimator via arch-commits
Date: Saturday, October 10, 2020 @ 09:03:45
  Author: daurnimator
Revision: 722990

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 722989, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-10 09:02:30 UTC (rev 722989)
+++ PKGBUILD2020-10-10 09:03:45 UTC (rev 722990)
@@ -1,47 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=3.8.3
-pkgrel=1
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3a7450c0036d22438aa8968bfa893e21f0859c3a82477e26499e12bf6abe9714f8693f499e552f25fb80809247514c584c4429fda44adeca913b43eae1834a0c')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 722989, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-10 09:03:45 UTC (rev 722990)
@@ -0,0 +1,47 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=3.8.5
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('ebf6b57fc7bd1a7facf9fe4fda4c984c05c3603fe6786d32bd2ebf7fae960de95563fa53adf3d99dd10643663c93867871a08b505c0b3470cf9be477ee54501e')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in kustomize/trunk (PKGBUILD)

2020-10-10 Thread Daurnimator via arch-commits
Date: Saturday, October 10, 2020 @ 08:58:08
  Author: daurnimator
Revision: 722979

upgpkg: kustomize 3.8.5-1

Modified:
  kustomize/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-10 08:57:42 UTC (rev 722978)
+++ PKGBUILD2020-10-10 08:58:08 UTC (rev 722979)
@@ -2,7 +2,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=kustomize
-pkgver=3.8.3
+pkgver=3.8.5
 pkgrel=1
 pkgdesc="Template-free customization of Kubernetes YAML manifests"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3a7450c0036d22438aa8968bfa893e21f0859c3a82477e26499e12bf6abe9714f8693f499e552f25fb80809247514c584c4429fda44adeca913b43eae1834a0c')
+sha512sums=('ebf6b57fc7bd1a7facf9fe4fda4c984c05c3603fe6786d32bd2ebf7fae960de95563fa53adf3d99dd10643663c93867871a08b505c0b3470cf9be477ee54501e')
 
 build(){
   cd "kustomize-kustomize-v${pkgver}/kustomize"


[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-04 Thread Daurnimator via arch-commits
Date: Monday, October 5, 2020 @ 01:58:17
  Author: daurnimator
Revision: 718680

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 718679, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-05 01:27:11 UTC (rev 718679)
+++ PKGBUILD2020-10-05 01:58:17 UTC (rev 718680)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.6
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('88327047a81344c450e23b709d572c9dc9da00df47ca7c2e207df511a99deda78a9f7d04ac8b9648ffe0efaf75354f810c2419c2939780aee212b38021987ee3')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 718679, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-05 01:58:17 UTC (rev 718680)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.6
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('88327047a81344c450e23b709d572c9dc9da00df47ca7c2e207df511a99deda78a9f7d04ac8b9648ffe0efaf75354f810c2419c2939780aee212b38021987ee3')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-28 Thread Daurnimator via arch-commits
Date: Tuesday, September 29, 2020 @ 03:00:08
  Author: daurnimator
Revision: 713657

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 713656, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-29 02:59:17 UTC (rev 713656)
+++ PKGBUILD2020-09-29 03:00:08 UTC (rev 713657)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.5
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('705e10c77c95e5f067adf973ea30cf79cff3a2466da3edc1babd7f08c4ed821da3769b5315c55c424ac6440874f29329d5ae15a15ecd3ea3ceaeac429464df45')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 713656, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-29 03:00:08 UTC (rev 713657)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.6
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('88327047a81344c450e23b709d572c9dc9da00df47ca7c2e207df511a99deda78a9f7d04ac8b9648ffe0efaf75354f810c2419c2939780aee212b38021987ee3')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/trunk (PKGBUILD)

2020-09-28 Thread Daurnimator via arch-commits
Date: Tuesday, September 29, 2020 @ 02:59:17
  Author: daurnimator
Revision: 713656

upgpkg: chezmoi 1.8.6-1

Modified:
  chezmoi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-29 01:42:33 UTC (rev 713655)
+++ PKGBUILD2020-09-29 02:59:17 UTC (rev 713656)
@@ -3,7 +3,7 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.8.5
+pkgver=1.8.6
 pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('705e10c77c95e5f067adf973ea30cf79cff3a2466da3edc1babd7f08c4ed821da3769b5315c55c424ac6440874f29329d5ae15a15ecd3ea3ceaeac429464df45')
+sha512sums=('88327047a81344c450e23b709d572c9dc9da00df47ca7c2e207df511a99deda78a9f7d04ac8b9648ffe0efaf75354f810c2419c2939780aee212b38021987ee3')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in argocd-cli/repos/community-x86_64 (6 files)

2020-09-27 Thread Daurnimator via arch-commits
Date: Sunday, September 27, 2020 @ 11:58:35
  Author: daurnimator
Revision: 712616

archrelease: copy trunk to community-x86_64

Added:
  argocd-cli/repos/community-x86_64/PKGBUILD
(from rev 712614, argocd-cli/trunk/PKGBUILD)
  argocd-cli/repos/community-x86_64/argocd.bash
(from rev 712615, argocd-cli/trunk/argocd.bash)
  argocd-cli/repos/community-x86_64/argocd.zsh
(from rev 712615, argocd-cli/trunk/argocd.zsh)
Deleted:
  argocd-cli/repos/community-x86_64/PKGBUILD
  argocd-cli/repos/community-x86_64/argocd.bash
  argocd-cli/repos/community-x86_64/argocd.zsh

-+
 PKGBUILD|   92 +-
 argocd.bash |2 -
 argocd.zsh  |6 +--
 3 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-27 11:58:10 UTC (rev 712615)
+++ PKGBUILD2020-09-27 11:58:35 UTC (rev 712616)
@@ -1,46 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=argocd-cli
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
-arch=('x86_64')
-url='https://argoproj.github.io/argo-cd/'
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
-"argocd.bash"
-"argocd.zsh")
-sha512sums=('77a5978ec396599a45ba3ac297bff65e1b21a7596995cd6643d5ed712a52b461eeb2b0279b773f9bf26dbab9136398014b856596afb6d54b09b46b7711075b85'
-
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
-
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
-
-build() {
-  cd "argo-cd-$pkgver"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  go run github.com/gobuffalo/packr/packr build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
-  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -linkmode=external
-  -extldflags \"${LDFLAGS}\"" \
-./cmd/argocd
-}
-
-package() {
-  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
-  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
-
-  cd "argo-cd-$pkgver"
-
-  install -D argocd "$pkgdir/usr/bin/argocd"
-}

Copied: argocd-cli/repos/community-x86_64/PKGBUILD (from rev 712614, 
argocd-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-27 11:58:35 UTC (rev 712616)
@@ -0,0 +1,46 @@
+# Maintainer: Daurnimator 
+
+pkgname=argocd-cli
+pkgver=1.7.6
+pkgrel=1
+pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
+arch=('x86_64')
+url='https://argoproj.github.io/argo-cd/'
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
+"argocd.bash"
+"argocd.zsh")
+sha512sums=('6f57d042fe2c38614c1d1b1e30f4209cd8aa437860f756fd9096539494680706f6ef9c28007a53246d3ee521ec454d23af22bf1683bf52c504cf9d05b78a5c32'
+
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
+
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
+
+build() {
+  cd "argo-cd-$pkgver"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  go run github.com/gobuffalo/packr/packr build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
+  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
+  -linkmode=external
+  -extldflags \"${LDFLAGS}\"" \
+./cmd/argocd
+}
+
+package() {
+  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
+  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
+
+  cd "argo-cd-$pkgver"
+
+  install -D argocd "$pkgdir/usr/bin/argocd"
+}

Deleted: argocd.bash
===
--- argocd.bash 2020-09-27 11:58:10 UTC (rev 712615)
+++ 

[arch-commits] Commit in firefox-extension-passff/repos/community-any (2 files)

2020-09-27 Thread Daurnimator via arch-commits
Date: Sunday, September 27, 2020 @ 11:58:10
  Author: daurnimator
Revision: 712615

archrelease: copy trunk to community-any

Added:
  firefox-extension-passff/repos/community-any/PKGBUILD
(from rev 712614, firefox-extension-passff/trunk/PKGBUILD)
Deleted:
  firefox-extension-passff/repos/community-any/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-27 11:57:42 UTC (rev 712614)
+++ PKGBUILD2020-09-27 11:58:10 UTC (rev 712615)
@@ -1,21 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Willem Mulder <14mrh4...@gmail.com>
-
-pkgname=firefox-extension-passff
-pkgver=1.10
-pkgrel=2
-pkgdesc="zx2c4 pass manager addon for firefox"
-url="https://github.com/passff/passff;
-license=('GPL2')
-arch=('any')
-groups=('firefox-addons')
-replaces=('firefox-passff')
-depends=('firefox' 'passff-host')
-source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
-sha512sums=('3c21b0b0ecafdc8944505d993080c6153916ea3b54ffbfcb03cd640824b32c69f22837dcfbe29481d63e8390e78d6175ee1d4cfaecd52c9852e9ad6088ec109f')
-noextract=("$pkgname-$pkgver.xpi")
-
-package() {
-install -Dm644 "$pkgname-$pkgver.xpi" \
-"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
-}

Copied: firefox-extension-passff/repos/community-any/PKGBUILD (from rev 712614, 
firefox-extension-passff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-27 11:58:10 UTC (rev 712615)
@@ -0,0 +1,21 @@
+# Maintainer: Daurnimator 
+# Contributor: Willem Mulder <14mrh4...@gmail.com>
+
+pkgname=firefox-extension-passff
+pkgver=1.10.3
+pkgrel=1
+pkgdesc="zx2c4 pass manager addon for firefox"
+url="https://github.com/passff/passff;
+license=('GPL2')
+arch=('any')
+groups=('firefox-addons')
+replaces=('firefox-passff')
+depends=('firefox' 'passff-host')
+source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
+sha512sums=('23935f761954d4b4666b5fcfeda69d5967e38903d3b7ceb6f70b93778a7aed6f8257c1df0f0bc25bfd625bffe2e2a81507fdc433e040a129912004c0ce052967')
+noextract=("$pkgname-$pkgver.xpi")
+
+package() {
+install -Dm644 "$pkgname-$pkgver.xpi" \
+"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
+}


[arch-commits] Commit in argocd-cli/trunk (PKGBUILD)

2020-09-27 Thread Daurnimator via arch-commits
Date: Sunday, September 27, 2020 @ 11:57:42
  Author: daurnimator
Revision: 712614

upgpkg: argocd-cli 1.7.6-1

Modified:
  argocd-cli/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-27 11:57:18 UTC (rev 712613)
+++ PKGBUILD2020-09-27 11:57:42 UTC (rev 712614)
@@ -1,7 +1,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=argocd-cli
-pkgver=1.7.0
+pkgver=1.7.6
 pkgrel=1
 pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 
source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
 "argocd.bash"
 "argocd.zsh")
-sha512sums=('77a5978ec396599a45ba3ac297bff65e1b21a7596995cd6643d5ed712a52b461eeb2b0279b773f9bf26dbab9136398014b856596afb6d54b09b46b7711075b85'
+sha512sums=('6f57d042fe2c38614c1d1b1e30f4209cd8aa437860f756fd9096539494680706f6ef9c28007a53246d3ee521ec454d23af22bf1683bf52c504cf9d05b78a5c32'
 
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
 
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
 


[arch-commits] Commit in firefox-extension-passff/trunk (PKGBUILD)

2020-09-27 Thread Daurnimator via arch-commits
Date: Sunday, September 27, 2020 @ 11:57:18
  Author: daurnimator
Revision: 712613

upgpkg: firefox-extension-passff 1.10.3-1

Modified:
  firefox-extension-passff/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-27 11:50:50 UTC (rev 712612)
+++ PKGBUILD2020-09-27 11:57:18 UTC (rev 712613)
@@ -2,8 +2,8 @@
 # Contributor: Willem Mulder <14mrh4...@gmail.com>
 
 pkgname=firefox-extension-passff
-pkgver=1.10
-pkgrel=2
+pkgver=1.10.3
+pkgrel=1
 pkgdesc="zx2c4 pass manager addon for firefox"
 url="https://github.com/passff/passff;
 license=('GPL2')
@@ -12,7 +12,7 @@
 replaces=('firefox-passff')
 depends=('firefox' 'passff-host')
 
source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi;)
-sha512sums=('3c21b0b0ecafdc8944505d993080c6153916ea3b54ffbfcb03cd640824b32c69f22837dcfbe29481d63e8390e78d6175ee1d4cfaecd52c9852e9ad6088ec109f')
+sha512sums=('23935f761954d4b4666b5fcfeda69d5967e38903d3b7ceb6f70b93778a7aed6f8257c1df0f0bc25bfd625bffe2e2a81507fdc433e040a129912004c0ce052967')
 noextract=("$pkgname-$pkgver.xpi")
 
 package() {


[arch-commits] Commit in argocd-cli/repos/community-x86_64 (6 files)

2020-08-25 Thread Daurnimator via arch-commits
Date: Wednesday, August 26, 2020 @ 05:39:41
  Author: daurnimator
Revision: 688903

archrelease: copy trunk to community-x86_64

Added:
  argocd-cli/repos/community-x86_64/PKGBUILD
(from rev 688902, argocd-cli/trunk/PKGBUILD)
  argocd-cli/repos/community-x86_64/argocd.bash
(from rev 688902, argocd-cli/trunk/argocd.bash)
  argocd-cli/repos/community-x86_64/argocd.zsh
(from rev 688902, argocd-cli/trunk/argocd.zsh)
Deleted:
  argocd-cli/repos/community-x86_64/PKGBUILD
  argocd-cli/repos/community-x86_64/argocd.bash
  argocd-cli/repos/community-x86_64/argocd.zsh

-+
 PKGBUILD|   91 +-
 argocd.bash |2 -
 argocd.zsh  |6 +--
 3 files changed, 50 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-26 05:38:12 UTC (rev 688902)
+++ PKGBUILD2020-08-26 05:39:41 UTC (rev 688903)
@@ -1,45 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=argocd-cli
-pkgver=1.6.2
-pkgrel=1
-pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
-arch=('x86_64')
-url='https://argoproj.github.io/argo-cd/'
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
-"argocd.bash"
-"argocd.zsh")
-sha512sums=('a89758bdcfc73fecafc1faf91dea4791e7e8bac11217fd5a990da3ebf64cd5022122db8bf568b1a6f8f4283070ac23c919fc179175d485312f072f4e02e908a0'
-
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
-
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
-
-build() {
-  cd "argo-cd-$pkgver"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  go run github.com/gobuffalo/packr/packr build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
-  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -extldflags ${LDFLAGS}" \
-./cmd/argocd
-}
-
-package() {
-  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
-  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
-
-  cd "argo-cd-$pkgver"
-
-  install -D argocd "$pkgdir/usr/bin/argocd"
-}

Copied: argocd-cli/repos/community-x86_64/PKGBUILD (from rev 688902, 
argocd-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-26 05:39:41 UTC (rev 688903)
@@ -0,0 +1,46 @@
+# Maintainer: Daurnimator 
+
+pkgname=argocd-cli
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
+arch=('x86_64')
+url='https://argoproj.github.io/argo-cd/'
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
+"argocd.bash"
+"argocd.zsh")
+sha512sums=('77a5978ec396599a45ba3ac297bff65e1b21a7596995cd6643d5ed712a52b461eeb2b0279b773f9bf26dbab9136398014b856596afb6d54b09b46b7711075b85'
+
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
+
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
+
+build() {
+  cd "argo-cd-$pkgver"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  go run github.com/gobuffalo/packr/packr build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
+  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
+  -linkmode=external
+  -extldflags \"${LDFLAGS}\"" \
+./cmd/argocd
+}
+
+package() {
+  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
+  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
+
+  cd "argo-cd-$pkgver"
+
+  install -D argocd "$pkgdir/usr/bin/argocd"
+}

Deleted: argocd.bash
===
--- argocd.bash 2020-08-26 05:38:12 UTC (rev 688902)
+++ argocd.bash 2020-08-26 05:39:41 UTC 

[arch-commits] Commit in argocd-cli/trunk (PKGBUILD)

2020-08-25 Thread Daurnimator via arch-commits
Date: Wednesday, August 26, 2020 @ 05:38:12
  Author: daurnimator
Revision: 688902

upgpkg: argocd-cli 1.7.0-1

Modified:
  argocd-cli/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-26 05:32:26 UTC (rev 688901)
+++ PKGBUILD2020-08-26 05:38:12 UTC (rev 688902)
@@ -1,7 +1,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=argocd-cli
-pkgver=1.6.2
+pkgver=1.7.0
 pkgrel=1
 pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 
source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
 "argocd.bash"
 "argocd.zsh")
-sha512sums=('a89758bdcfc73fecafc1faf91dea4791e7e8bac11217fd5a990da3ebf64cd5022122db8bf568b1a6f8f4283070ac23c919fc179175d485312f072f4e02e908a0'
+sha512sums=('77a5978ec396599a45ba3ac297bff65e1b21a7596995cd6643d5ed712a52b461eeb2b0279b773f9bf26dbab9136398014b856596afb6d54b09b46b7711075b85'
 
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
 
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
 
@@ -31,7 +31,8 @@
 -ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
   -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
   -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -extldflags ${LDFLAGS}" \
+  -linkmode=external
+  -extldflags \"${LDFLAGS}\"" \
 ./cmd/argocd
 }
 


[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-08-25 Thread Daurnimator via arch-commits
Date: Wednesday, August 26, 2020 @ 05:32:26
  Author: daurnimator
Revision: 688901

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 688900, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-26 05:31:20 UTC (rev 688900)
+++ PKGBUILD2020-08-26 05:32:26 UTC (rev 688901)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.4
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('fc434a7a4005f3a9589b34822c7aeea7dfed65ffa441005c31728ad5ab398dfa91aad37d062c2ce681fe726091a7cae642289ae705050ae9729046b50c35')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 688900, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-26 05:32:26 UTC (rev 688901)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.5
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('705e10c77c95e5f067adf973ea30cf79cff3a2466da3edc1babd7f08c4ed821da3769b5315c55c424ac6440874f29329d5ae15a15ecd3ea3ceaeac429464df45')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/trunk (PKGBUILD)

2020-08-25 Thread Daurnimator via arch-commits
Date: Wednesday, August 26, 2020 @ 05:31:20
  Author: daurnimator
Revision: 688900

upgpkg: chezmoi 1.8.5-1

Modified:
  chezmoi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-26 01:17:47 UTC (rev 688899)
+++ PKGBUILD2020-08-26 05:31:20 UTC (rev 688900)
@@ -3,7 +3,7 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.8.4
+pkgver=1.8.5
 pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('fc434a7a4005f3a9589b34822c7aeea7dfed65ffa441005c31728ad5ab398dfa91aad37d062c2ce681fe726091a7cae642289ae705050ae9729046b50c35')
+sha512sums=('705e10c77c95e5f067adf973ea30cf79cff3a2466da3edc1babd7f08c4ed821da3769b5315c55c424ac6440874f29329d5ae15a15ecd3ea3ceaeac429464df45')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in lua-alt-getopt/repos/community-any (4 files)

2020-08-17 Thread Daurnimator via arch-commits
Date: Monday, August 17, 2020 @ 13:27:51
  Author: daurnimator
Revision: 682627

archrelease: copy trunk to community-any

Added:
  lua-alt-getopt/repos/community-any/LICENSE
(from rev 682626, lua-alt-getopt/trunk/LICENSE)
  lua-alt-getopt/repos/community-any/PKGBUILD
(from rev 682626, lua-alt-getopt/trunk/PKGBUILD)
Deleted:
  lua-alt-getopt/repos/community-any/LICENSE
  lua-alt-getopt/repos/community-any/PKGBUILD

--+
 LICENSE  |   14 +-
 PKGBUILD |   83 +
 2 files changed, 53 insertions(+), 44 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-08-17 13:26:26 UTC (rev 682626)
+++ LICENSE 2020-08-17 13:27:51 UTC (rev 682627)
@@ -1,7 +0,0 @@
-Copyright © 2008 Lua.org, PUC-Rio.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE. 

Copied: lua-alt-getopt/repos/community-any/LICENSE (from rev 682626, 
lua-alt-getopt/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-08-17 13:27:51 UTC (rev 682627)
@@ -0,0 +1,7 @@
+Copyright © 2008 Lua.org, PUC-Rio.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE. 

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-17 13:26:26 UTC (rev 682626)
+++ PKGBUILD2020-08-17 13:27:51 UTC (rev 682627)
@@ -1,37 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Daurnimator 
-# Old Maintainer: Gustavo Alvarez 
-# contributor: Cameron Banta 
-
-pkgbase=lua-alt-getopt
-pkgname=(lua51-alt-getopt lua52-alt-getopt lua53-alt-getopt)
-pkgver=0.7.0
-pkgrel=9
-pkgdesc="Lua module for processing options similar to getopt_long(3)"
-license=('MIT')
-arch=('any')
-url="http://luaforge.net/projects/alt-getopt/;
-source=("http://mova.org/~cheusov/pub/lua_alt_getopt/lua-alt-getopt-${pkgver}.tar.gz;
-'LICENSE')
-sha512sums=('379db696180e2bbb6e472ebe56e921c9736ee89ad673b296d0e580f100617a10dd5b44fdd665298ac87a44bbf8b5c330696653ec6d62ccaebc22120debf3c91f'
-
'f4c04e8a6bdbc737e04672f7751fcfb709e34c87df69ddfada0b0e22480f5ffd7daf21f266699e5b2955ff781f5a4aa574a614646896d12c994bc7b9282b0f67')
-
-package_lua51-alt-getopt() {
-  cd "${pkgbase}-${pkgver}"
-  install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.1/alt_getopt.lua"
-  install -Dm644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_lua52-alt-getopt() {
-  cd "${pkgbase}-${pkgver}"
-  install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.2/alt_getopt.lua"
-  install -Dm644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_lua53-alt-getopt() {
-  cd "${pkgbase}-${pkgver}"
-  install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.3/alt_getopt.lua"
-  install -Dm644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# Library does not support lua5.4

Copied: 

[arch-commits] Commit in lua-alt-getopt/trunk (PKGBUILD)

2020-08-17 Thread Daurnimator via arch-commits
Date: Monday, August 17, 2020 @ 13:26:26
  Author: daurnimator
Revision: 682626

upgpkg: lua-alt-getopt 0.8.0-1

Modified:
  lua-alt-getopt/trunk/PKGBUILD

--+
 PKGBUILD |   35 ++-
 1 file changed, 22 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-17 12:59:19 UTC (rev 682625)
+++ PKGBUILD2020-08-17 13:26:26 UTC (rev 682626)
@@ -3,35 +3,44 @@
 # Old Maintainer: Gustavo Alvarez 
 # contributor: Cameron Banta 
 
-pkgbase=lua-alt-getopt
-pkgname=(lua51-alt-getopt lua52-alt-getopt lua53-alt-getopt)
-pkgver=0.7.0
-pkgrel=9
+pkgname=(lua-alt-getopt lua51-alt-getopt lua52-alt-getopt lua53-alt-getopt)
+pkgver=0.8.0
+pkgrel=1
 pkgdesc="Lua module for processing options similar to getopt_long(3)"
 license=('MIT')
 arch=('any')
-url="http://luaforge.net/projects/alt-getopt/;
-source=("http://mova.org/~cheusov/pub/lua_alt_getopt/lua-alt-getopt-${pkgver}.tar.gz;
-'LICENSE')
-sha512sums=('379db696180e2bbb6e472ebe56e921c9736ee89ad673b296d0e580f100617a10dd5b44fdd665298ac87a44bbf8b5c330696653ec6d62ccaebc22120debf3c91f'
-
'f4c04e8a6bdbc737e04672f7751fcfb709e34c87df69ddfada0b0e22480f5ffd7daf21f266699e5b2955ff781f5a4aa574a614646896d12c994bc7b9282b0f67')
+url="https://github.com/cheusov/lua-alt-getopt;
+source=("https://github.com/cheusov/lua-alt-getopt/archive/${pkgver}.tar.gz;)
+sha512sums=('1c0768e98793ee060a8a70bc47355abf5feac3b51d9844a26816267c0901df9f30c9ef3280766dec2c5b754123ca548c8f49cb294bf4f04c378c62ea377e09de')
 
 package_lua51-alt-getopt() {
+  pkgdesc="$pkgdesc for Lua 5.1"
+
   cd "${pkgbase}-${pkgver}"
   install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.1/alt_getopt.lua"
-  install -Dm644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
 
 package_lua52-alt-getopt() {
+  pkgdesc="$pkgdesc for Lua 5.2"
+
   cd "${pkgbase}-${pkgver}"
   install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.2/alt_getopt.lua"
-  install -Dm644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
 
 package_lua53-alt-getopt() {
+  pkgdesc="$pkgdesc for Lua 5.3"
+
   cd "${pkgbase}-${pkgver}"
   install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.3/alt_getopt.lua"
-  install -Dm644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
 
-# Library does not support lua5.4
+package_lua-alt-getopt() {
+  pkgdesc="$pkgdesc for Lua 5.4"
+
+  cd "${pkgbase}-${pkgver}"
+  install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.4/alt_getopt.lua"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in chezmoi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-08-13 Thread Daurnimator via arch-commits
Date: Thursday, August 13, 2020 @ 13:19:32
  Author: daurnimator
Revision: 677245

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 677244, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-13 13:17:46 UTC (rev 677244)
+++ PKGBUILD2020-08-13 13:19:32 UTC (rev 677245)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.8.3
-pkgrel=2
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('f4cbc733347d66eb909158c6879c8d4f2851c3458539ed0e6a99ffea863832f7ed35a6031f22ac6838d352ce96316432fd7f6f749d13d8df8735bf037c11a165')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--tags noupgrade,noembeddocs \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 677244, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-13 13:19:32 UTC (rev 677245)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.8.4
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha512sums=('fc434a7a4005f3a9589b34822c7aeea7dfed65ffa441005c31728ad5ab398dfa91aad37d062c2ce681fe726091a7cae642289ae705050ae9729046b50c35')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-tags noupgrade,noembeddocs \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in chezmoi/trunk (PKGBUILD)

2020-08-13 Thread Daurnimator via arch-commits
Date: Thursday, August 13, 2020 @ 13:17:46
  Author: daurnimator
Revision: 677244

upgpkg: chezmoi 1.8.4-1

Modified:
  chezmoi/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-13 13:17:34 UTC (rev 677243)
+++ PKGBUILD2020-08-13 13:17:46 UTC (rev 677244)
@@ -3,8 +3,8 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.8.3
-pkgrel=2
+pkgver=1.8.4
+pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
 url='https://www.chezmoi.io/'
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha512sums=('f4cbc733347d66eb909158c6879c8d4f2851c3458539ed0e6a99ffea863832f7ed35a6031f22ac6838d352ce96316432fd7f6f749d13d8df8735bf037c11a165')
+sha512sums=('fc434a7a4005f3a9589b34822c7aeea7dfed65ffa441005c31728ad5ab398dfa91aad37d062c2ce681fe726091a7cae642289ae705050ae9729046b50c35')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in luasocket/repos (2 files)

2020-08-02 Thread Daurnimator via arch-commits
Date: Sunday, August 2, 2020 @ 11:26:47
  Author: daurnimator
Revision: 667616

archrelease: copy trunk to community-staging-x86_64

Added:
  luasocket/repos/community-staging-x86_64/
  luasocket/repos/community-staging-x86_64/PKGBUILD
(from rev 667615, luasocket/trunk/PKGBUILD)

--+
 PKGBUILD |   63 +
 1 file changed, 63 insertions(+)

Copied: luasocket/repos/community-staging-x86_64/PKGBUILD (from rev 667615, 
luasocket/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-02 11:26:47 UTC (rev 667616)
@@ -0,0 +1,63 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Anders Bergh 
+
+pkgbase=luasocket
+pkgname=(lua-socket lua51-socket lua52-socket lua53-socket)
+pkgver=20200329
+_commit=5b18e475f38fcf28429b1cc4b17baee3b9793a62
+pkgrel=1
+pkgdesc='Networking support library for the Lua language'
+arch=('x86_64')
+url='https://github.com/diegonehab/luasocket'
+license=('MIT')
+#options=('debug')
+makedepends=('lua' 'lua51' 'lua52' 'lua53' 'git')
+source=("git+https://github.com/diegonehab/luasocket.git#commit=${_commit};)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a luasocket luasocket-51
+  cp -a luasocket luasocket-52
+  cp -a luasocket luasocket-53
+}
+
+build() {
+  cd "$srcdir"/luasocket-51
+  MYCFLAGS="$CFLAGS" MYLDFLAGS=$LDFLAGS make LUAV=5.1 linux
+
+  cd "$srcdir"/luasocket-52
+  MYCFLAGS="$CFLAGS" MYLDFLAGS=$LDFLAGS make LUAV=5.2 linux
+
+  cd "$srcdir"/luasocket-53
+  MYCFLAGS="$CFLAGS" MYLDFLAGS=$LDFLAGS make LUAV=5.3 linux
+
+  cd "$srcdir"/luasocket
+  MYCFLAGS="$CFLAGS" MYLDFLAGS=$LDFLAGS make LUAV=5.4 linux
+}
+
+package_lua51-socket() {
+  replaces=('luasocket')
+  conflicts=('luasocket')
+
+  cd luasocket-51
+  make DESTDIR="$pkgdir" LUAV=5.1 prefix=/usr install-unix
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-socket() {
+  cd luasocket-52
+  make DESTDIR="$pkgdir" LUAV=5.2 prefix=/usr install-unix
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-socket() {
+  cd luasocket-53
+  make DESTDIR="$pkgdir" LUAV=5.3 prefix=/usr install-unix
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua-socket() {
+  cd luasocket
+  make DESTDIR="$pkgdir" LUAV=5.4 prefix=/usr install-unix
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in luasocket/trunk (PKGBUILD)

2020-08-02 Thread Daurnimator via arch-commits
Date: Sunday, August 2, 2020 @ 11:25:49
  Author: daurnimator
Revision: 667615

upgpkg: luasocket 20200329-1

Modified:
  luasocket/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-02 11:04:14 UTC (rev 667614)
+++ PKGBUILD2020-08-02 11:25:49 UTC (rev 667615)
@@ -3,9 +3,9 @@
 
 pkgbase=luasocket
 pkgname=(lua-socket lua51-socket lua52-socket lua53-socket)
-pkgver=20190219
-_commit=144fa01c2f204e3b1b13c834f2644d100dba701b
-pkgrel=3
+pkgver=20200329
+_commit=5b18e475f38fcf28429b1cc4b17baee3b9793a62
+pkgrel=1
 pkgdesc='Networking support library for the Lua language'
 arch=('x86_64')
 url='https://github.com/diegonehab/luasocket'


[arch-commits] Commit in argocd-cli/repos/community-x86_64 (6 files)

2020-07-31 Thread Daurnimator via arch-commits
Date: Saturday, August 1, 2020 @ 04:28:12
  Author: daurnimator
Revision: 667149

archrelease: copy trunk to community-x86_64

Added:
  argocd-cli/repos/community-x86_64/PKGBUILD
(from rev 667148, argocd-cli/trunk/PKGBUILD)
  argocd-cli/repos/community-x86_64/argocd.bash
(from rev 667148, argocd-cli/trunk/argocd.bash)
  argocd-cli/repos/community-x86_64/argocd.zsh
(from rev 667148, argocd-cli/trunk/argocd.zsh)
Deleted:
  argocd-cli/repos/community-x86_64/PKGBUILD
  argocd-cli/repos/community-x86_64/argocd.bash
  argocd-cli/repos/community-x86_64/argocd.zsh

-+
 PKGBUILD|   90 +-
 argocd.bash |2 -
 argocd.zsh  |6 +--
 3 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-01 04:27:06 UTC (rev 667148)
+++ PKGBUILD2020-08-01 04:28:12 UTC (rev 667149)
@@ -1,45 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=argocd-cli
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
-arch=('x86_64')
-url='https://argoproj.github.io/argo-cd/'
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
-"argocd.bash"
-"argocd.zsh")
-sha512sums=('1a01fbb16dc05abc7f8a56e1b2b3fe8f1b093823d482ee5ca842f6943b253ae9548a6667cf2ac1aa89e24ebca5825b53a20a0e8031c6167055cc55ae45e6'
-
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
-
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
-
-build() {
-  cd "argo-cd-$pkgver"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  go run github.com/gobuffalo/packr/packr build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
-  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
-  -extldflags ${LDFLAGS}" \
-./cmd/argocd
-}
-
-package() {
-  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
-  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
-
-  cd "argo-cd-$pkgver"
-
-  install -D argocd "$pkgdir/usr/bin/argocd"
-}

Copied: argocd-cli/repos/community-x86_64/PKGBUILD (from rev 667148, 
argocd-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-01 04:28:12 UTC (rev 667149)
@@ -0,0 +1,45 @@
+# Maintainer: Daurnimator 
+
+pkgname=argocd-cli
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
+arch=('x86_64')
+url='https://argoproj.github.io/argo-cd/'
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
+"argocd.bash"
+"argocd.zsh")
+sha512sums=('a89758bdcfc73fecafc1faf91dea4791e7e8bac11217fd5a990da3ebf64cd5022122db8bf568b1a6f8f4283070ac23c919fc179175d485312f072f4e02e908a0'
+
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
+
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
+
+build() {
+  cd "argo-cd-$pkgver"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  go run github.com/gobuffalo/packr/packr build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X github.com/argoproj/argo-cd/common.version=${pkgver} \
+  -X github.com/argoproj/argo-cd/common.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -X github.com/argoproj/argo-cd/common.gitTag=${pkgver} \
+  -extldflags ${LDFLAGS}" \
+./cmd/argocd
+}
+
+package() {
+  install -Dm644 argocd.bash 
"$pkgdir/usr/share/bash-completion/completions/argocd"
+  install -Dm644 argocd.zsh "$pkgdir/usr/share/zsh/site-functions/_argocd"
+
+  cd "argo-cd-$pkgver"
+
+  install -D argocd "$pkgdir/usr/bin/argocd"
+}

Deleted: argocd.bash
===
--- argocd.bash 2020-08-01 04:27:06 UTC (rev 667148)
+++ argocd.bash 2020-08-01 04:28:12 UTC (rev 667149)
@@ -1 +0,0 @@
-source 

[arch-commits] Commit in argocd-cli/trunk (PKGBUILD)

2020-07-31 Thread Daurnimator via arch-commits
Date: Saturday, August 1, 2020 @ 04:27:06
  Author: daurnimator
Revision: 667148

upgpkg: argocd-cli 1.6.2-1

Modified:
  argocd-cli/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-01 04:16:08 UTC (rev 667147)
+++ PKGBUILD2020-08-01 04:27:06 UTC (rev 667148)
@@ -1,7 +1,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=argocd-cli
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc="Declarative continuous deployment for Kubernetes command line utility"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 
source=("argo-cd-${pkgver}.tar.gz::https://github.com/argoproj/argo-cd/archive/v${pkgver}.tar.gz;
 "argocd.bash"
 "argocd.zsh")
-sha512sums=('1a01fbb16dc05abc7f8a56e1b2b3fe8f1b093823d482ee5ca842f6943b253ae9548a6667cf2ac1aa89e24ebca5825b53a20a0e8031c6167055cc55ae45e6'
+sha512sums=('a89758bdcfc73fecafc1faf91dea4791e7e8bac11217fd5a990da3ebf64cd5022122db8bf568b1a6f8f4283070ac23c919fc179175d485312f072f4e02e908a0'
 
'5e751e78965b00f767aff90df435aba57aefa6f6d599807ddfda243ff95e0366636da2b2b5af2e9b389ab9efec23ee049f27e6a7defb8d3cb308693495b8a762'
 
'28568c83720793cdb5e77ec9c4aa5f1f4757ed665e84d807b8a4fe8377497f462fd33faf4bf076cf0a910e6b4d756ab31d66b1cf5643a3744bd0fa2b62287754')
 


[arch-commits] Commit in lua-filesystem/repos/community-staging-x86_64 (4 files)

2020-07-31 Thread Daurnimator via arch-commits
Date: Friday, July 31, 2020 @ 13:29:58
  Author: daurnimator
Revision: 666188

archrelease: copy trunk to community-staging-x86_64

Added:
  lua-filesystem/repos/community-staging-x86_64/LICENSE
(from rev 666187, lua-filesystem/trunk/LICENSE)
  lua-filesystem/repos/community-staging-x86_64/PKGBUILD
(from rev 666187, lua-filesystem/trunk/PKGBUILD)
Deleted:
  lua-filesystem/repos/community-staging-x86_64/LICENSE
  lua-filesystem/repos/community-staging-x86_64/PKGBUILD

--+
 LICENSE  |   44 +++
 PKGBUILD |  112 ++---
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-07-31 13:28:58 UTC (rev 666187)
+++ LICENSE 2020-07-31 13:29:58 UTC (rev 666188)
@@ -1,22 +0,0 @@
-Copyright (C) 2004-2007 The Kepler Project.
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use, copy,
-modify, merge, publish, distribute, sublicense, and/or sell copies
-of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
-BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
-ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-

Copied: lua-filesystem/repos/community-staging-x86_64/LICENSE (from rev 666187, 
lua-filesystem/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-07-31 13:29:58 UTC (rev 666188)
@@ -0,0 +1,22 @@
+Copyright (C) 2004-2007 The Kepler Project.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use, copy,
+modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-31 13:28:58 UTC (rev 666187)
+++ PKGBUILD2020-07-31 13:29:58 UTC (rev 666188)
@@ -1,56 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Sergej Pupykin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Chris Brannon 
-# Contributor: Paulo Matias 
-# Contributor: Anders Bergh 
-
-pkgbase=lua-filesystem
-pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
-pkgver=1.8.0
-_tag=${pkgver//./_}
-pkgrel=2
-pkgdesc='File System Library for the Lua Programming Language'
-arch=('x86_64')
-url='http://keplerproject.github.io/luafilesystem/'
-license=('MIT')
-makedepends=('lua' 'lua51' 'lua52' 'lua53')
-source=("$pkgbase-${_tag}.tar.gz::https://github.com/keplerproject/luafilesystem/archive/v${_tag}.tar.gz;)
-sha256sums=('16d17c788b8093f2047325343f5e9b74cccb1ea96001e45914a58bbae8932495')
-
-build() {
-  cp -a luafilesystem-${_tag} luafilesystem-${_tag}-51
-  make -C luafilesystem-${_tag}-51 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.1
-
-  cp -a luafilesystem-${_tag} luafilesystem-${_tag}-52
-  make -C luafilesystem-${_tag}-52 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.2
-
-  cp -a luafilesystem-${_tag} luafilesystem-${_tag}-53
-  make -C luafilesystem-${_tag}-53 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.3
-
-  make -C luafilesystem-${_tag} PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.4
-}
-
-package_lua-filesystem() {
-  cd luafilesystem-${_tag}
-  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.4 install
-  install -Dm644 LICENSE 

[arch-commits] Commit in lua-filesystem/trunk (PKGBUILD)

2020-07-31 Thread Daurnimator via arch-commits
Date: Friday, July 31, 2020 @ 13:28:58
  Author: daurnimator
Revision: 666187

upgpkg: lua-filesystem 1.8.0-3: fix missing split package

Modified:
  lua-filesystem/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-31 13:20:15 UTC (rev 666186)
+++ PKGBUILD2020-07-31 13:28:58 UTC (rev 666187)
@@ -6,10 +6,10 @@
 # Contributor: Anders Bergh 
 
 pkgbase=lua-filesystem
-pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
+pkgname=(lua-filesystem lua51-filesystem lua52-filesystem lua53-filesystem)
 pkgver=1.8.0
 _tag=${pkgver//./_}
-pkgrel=2
+pkgrel=3
 pkgdesc='File System Library for the Lua Programming Language'
 arch=('x86_64')
 url='http://keplerproject.github.io/luafilesystem/'


[arch-commits] Commit in kustomize/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-07-31 Thread Daurnimator via arch-commits
Date: Friday, July 31, 2020 @ 12:55:01
  Author: daurnimator
Revision: 666162

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 666161, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   90 ++---
 1 file changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-31 12:54:28 UTC (rev 666161)
+++ PKGBUILD2020-07-31 12:55:01 UTC (rev 666162)
@@ -1,45 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=3.6.1
-pkgrel=1
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("kustomize-${pkgver}.tar.gz::https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}.tar.gz;)
-sha512sums=('f21130a1d425998e7be36882e21e951783f876164fd4c0e119d0cccd761591fced66cf0b841593503f1f594c604b3a5fe2bf1dfbed33ba98228b71d683c9ca93')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 666161, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-31 12:55:01 UTC (rev 666162)
@@ -0,0 +1,45 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("kustomize-${pkgver}.tar.gz::https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}.tar.gz;)
+sha512sums=('715c8e6ce90004c4eadb9d620149391ef2f098f8a1f106d9a58345789b3c79753e63ddfd74fcff1bb2ac3e4e391c450b9dd3cd8a829abc5c20be4e61fa6508f4')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}


[arch-commits] Commit in kustomize/trunk (PKGBUILD)

2020-07-31 Thread Daurnimator via arch-commits
Date: Friday, July 31, 2020 @ 12:53:51
  Author: daurnimator
Revision: 666159

upgpkg: kustomize 3.8.1-1

Modified:
  kustomize/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-31 12:53:19 UTC (rev 666158)
+++ PKGBUILD2020-07-31 12:53:51 UTC (rev 666159)
@@ -2,7 +2,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=kustomize
-pkgver=3.6.1
+pkgver=3.8.1
 pkgrel=1
 pkgdesc="Template-free customization of Kubernetes YAML manifests"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("kustomize-${pkgver}.tar.gz::https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}.tar.gz;)
-sha512sums=('f21130a1d425998e7be36882e21e951783f876164fd4c0e119d0cccd761591fced66cf0b841593503f1f594c604b3a5fe2bf1dfbed33ba98228b71d683c9ca93')
+sha512sums=('715c8e6ce90004c4eadb9d620149391ef2f098f8a1f106d9a58345789b3c79753e63ddfd74fcff1bb2ac3e4e391c450b9dd3cd8a829abc5c20be4e61fa6508f4')
 
 build(){
   cd "kustomize-kustomize-v${pkgver}/kustomize"


[arch-commits] Commit in zig/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-07-31 Thread Daurnimator via arch-commits
Date: Friday, July 31, 2020 @ 12:04:38
  Author: daurnimator
Revision: 666154

archrelease: copy trunk to community-x86_64

Added:
  zig/repos/community-x86_64/PKGBUILD
(from rev 666153, zig/trunk/PKGBUILD)
Deleted:
  zig/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-31 12:02:17 UTC (rev 666153)
+++ PKGBUILD2020-07-31 12:04:38 UTC (rev 666154)
@@ -1,43 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Marc Tiehuis 
-
-pkgname=zig
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
-arch=('x86_64')
-url='https://ziglang.org/'
-license=('MIT')
-depends=('clang' 'llvm-libs' 'lld')
-makedepends=('cmake' 'llvm')
-source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;)
-sha256sums=('5d167dc19354282dd35dd17b38e99e1763713b9be8a4ba9e9e69284e059e7204')
-
-build() {
-cd "$pkgname-$pkgver"
-
-mkdir -p build
-cd build
-# The zig CMakeLists uses build type Debug if not set
-# override it back to None so makepkg env vars are respected
-cmake \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DZIG_PREFER_CLANG_CPP_DYLIB=ON \
-..
-make
-}
-
-check() {
-cd "$pkgname-$pkgver/build"
-
-./zig build test
-}
-
-package() {
-cd "$pkgname-$pkgver"
-
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-make -C build DESTDIR="$pkgdir" install
-}

Copied: zig/repos/community-x86_64/PKGBUILD (from rev 666153, 
zig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-31 12:04:38 UTC (rev 666154)
@@ -0,0 +1,43 @@
+# Maintainer: Daurnimator 
+# Contributor: Marc Tiehuis 
+
+pkgname=zig
+pkgver=0.6.0
+pkgrel=2
+pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
+arch=('x86_64')
+url='https://ziglang.org/'
+license=('MIT')
+depends=('clang' 'llvm-libs' 'lld')
+makedepends=('cmake' 'llvm')
+source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;)
+sha256sums=('5d167dc19354282dd35dd17b38e99e1763713b9be8a4ba9e9e69284e059e7204')
+
+build() {
+cd "$pkgname-$pkgver"
+
+mkdir -p build
+cd build
+# The zig CMakeLists uses build type Debug if not set
+# override it back to None so makepkg env vars are respected
+cmake \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DZIG_PREFER_CLANG_CPP_DYLIB=ON \
+..
+make
+}
+
+check() {
+cd "$pkgname-$pkgver/build"
+
+./zig build test
+}
+
+package() {
+cd "$pkgname-$pkgver"
+
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+make -C build DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in zig/trunk (PKGBUILD)

2020-07-31 Thread Daurnimator via arch-commits
Date: Friday, July 31, 2020 @ 12:02:17
  Author: daurnimator
Revision: 666153

upgpkg: zig 0.6.0-2: rebuild for LLVM 10.0.1

Modified:
  zig/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-31 11:23:08 UTC (rev 666152)
+++ PKGBUILD2020-07-31 12:02:17 UTC (rev 666153)
@@ -3,7 +3,7 @@
 
 pkgname=zig
 pkgver=0.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
 arch=('x86_64')
 url='https://ziglang.org/'


[arch-commits] Commit in lua-cqueues/repos/community-staging-x86_64 (2 files)

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 13:14:47
  Author: daurnimator
Revision: 665347

archrelease: copy trunk to community-staging-x86_64

Added:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD
(from rev 665346, lua-cqueues/trunk/PKGBUILD)
Deleted:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 13:12:59 UTC (rev 665346)
+++ PKGBUILD2020-07-26 13:14:47 UTC (rev 665347)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
-pkgver=20200726
-pkgrel=1
-arch=('x86_64')
-url='http://25thandclement.com/~william/projects/cqueues.html'
-license=('MIT')
-makedepends=('lua' 'lua51' 'lua52' 'lua53')
-depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
-md5sums=('fb21e8404cea86191e9658669eb44118')
-
-build() {
-   cd "cqueues-rel-$pkgver"
-   make prefix=/usr
-}
-
-package_lua-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.4
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua51-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.1
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.2
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua53-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.3
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: lua-cqueues/repos/community-staging-x86_64/PKGBUILD (from rev 665346, 
lua-cqueues/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 13:14:47 UTC (rev 665347)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
+pkgver=20200726
+pkgrel=2
+arch=('x86_64')
+url='http://25thandclement.com/~william/projects/cqueues.html'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('openssl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
+md5sums=('fb21e8404cea86191e9658669eb44118')
+
+build() {
+   cd "cqueues-rel-$pkgver"
+   make prefix=/usr
+}
+
+package_lua-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.4'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.4
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.1
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.2
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.3
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in lua-cqueues/trunk (PKGBUILD)

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 13:12:59
  Author: daurnimator
Revision: 665346

upgpkg: lua-cqueues 20200726-2: fix pkgdesc for Lua 5.4 split package

Modified:
  lua-cqueues/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:58:23 UTC (rev 665345)
+++ PKGBUILD2020-07-26 13:12:59 UTC (rev 665346)
@@ -2,7 +2,7 @@
 
 pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
 pkgver=20200726
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='http://25thandclement.com/~william/projects/cqueues.html'
 license=('MIT')
@@ -17,7 +17,7 @@
 }
 
 package_lua-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.4'
 
cd "cqueues-rel-$pkgver"
make DESTDIR="$pkgdir" prefix=/usr install5.4


[arch-commits] Commit in lua-cqueues/repos/community-staging-x86_64 (2 files)

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 11:46:10
  Author: daurnimator
Revision: 665333

archrelease: copy trunk to community-staging-x86_64

Added:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD
(from rev 665332, lua-cqueues/trunk/PKGBUILD)
Deleted:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |  107 +++--
 1 file changed, 49 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 11:45:42 UTC (rev 665332)
+++ PKGBUILD2020-07-26 11:46:10 UTC (rev 665333)
@@ -1,58 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
-pkgver=20200603
-pkgrel=2
-arch=('x86_64')
-url='http://25thandclement.com/~william/projects/cqueues.html'
-license=('MIT')
-makedepends=('lua' 'lua51' 'lua52' 'lua53')
-depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;
-   
"lua54.patch::https://src.fedoraproject.org/rpms/lua-cqueues/raw/5d7117c6ac061cc185f45af448845b0943577b58/f/lua-cqueues-20200603-lua-5.4.patch;)
-md5sums=('1c93648a274e780542b617d4729d4427'
- '4eba795b85b147b2ea3fedac94bf5567')
-
-prepare() {
-   # https://github.com/wahern/cqueues/issues/239
-   # 
https://src.fedoraproject.org/rpms/lua-cqueues/c/5d7117c6ac061cc185f45af448845b0943577b58?branch=master
-   cd "cqueues-rel-$pkgver"
-   patch -p1 < ../lua54.patch
-}
-
-build() {
-   cd "cqueues-rel-$pkgver"
-   make prefix=/usr
-}
-
-package_lua-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.4
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua51-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.1
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.2
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua53-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.3
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: lua-cqueues/repos/community-staging-x86_64/PKGBUILD (from rev 665332, 
lua-cqueues/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 11:46:10 UTC (rev 665333)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
+pkgver=20200726
+pkgrel=1
+arch=('x86_64')
+url='http://25thandclement.com/~william/projects/cqueues.html'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('openssl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
+md5sums=('fb21e8404cea86191e9658669eb44118')
+
+build() {
+   cd "cqueues-rel-$pkgver"
+   make prefix=/usr
+}
+
+package_lua-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.4
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.1
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.2
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.3
+   install -Dm644 LICENSE 

[arch-commits] Commit in lua-cqueues/trunk (PKGBUILD)

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 11:45:42
  Author: daurnimator
Revision: 665332

upgpkg: lua-cqueues 20200726-1

Modified:
  lua-cqueues/trunk/PKGBUILD

--+
 PKGBUILD |   17 -
 1 file changed, 4 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 10:51:09 UTC (rev 665331)
+++ PKGBUILD2020-07-26 11:45:42 UTC (rev 665332)
@@ -1,25 +1,16 @@
 # Maintainer: Daurnimator 
 
 pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
-pkgver=20200603
-pkgrel=2
+pkgver=20200726
+pkgrel=1
 arch=('x86_64')
 url='http://25thandclement.com/~william/projects/cqueues.html'
 license=('MIT')
 makedepends=('lua' 'lua51' 'lua52' 'lua53')
 depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;
-   
"lua54.patch::https://src.fedoraproject.org/rpms/lua-cqueues/raw/5d7117c6ac061cc185f45af448845b0943577b58/f/lua-cqueues-20200603-lua-5.4.patch;)
-md5sums=('1c93648a274e780542b617d4729d4427'
- '4eba795b85b147b2ea3fedac94bf5567')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
+md5sums=('fb21e8404cea86191e9658669eb44118')
 
-prepare() {
-   # https://github.com/wahern/cqueues/issues/239
-   # 
https://src.fedoraproject.org/rpms/lua-cqueues/c/5d7117c6ac061cc185f45af448845b0943577b58?branch=master
-   cd "cqueues-rel-$pkgver"
-   patch -p1 < ../lua54.patch
-}
-
 build() {
cd "cqueues-rel-$pkgver"
make prefix=/usr


[arch-commits] Commit in lua-filesystem/repos (3 files)

2020-07-09 Thread Daurnimator via arch-commits
Date: Thursday, July 9, 2020 @ 13:43:53
  Author: daurnimator
Revision: 661823

archrelease: copy trunk to community-staging-x86_64

Added:
  lua-filesystem/repos/community-staging-x86_64/
  lua-filesystem/repos/community-staging-x86_64/LICENSE
(from rev 661822, lua-filesystem/trunk/LICENSE)
  lua-filesystem/repos/community-staging-x86_64/PKGBUILD
(from rev 661822, lua-filesystem/trunk/PKGBUILD)

--+
 LICENSE  |   22 ++
 PKGBUILD |   56 
 2 files changed, 78 insertions(+)

Copied: lua-filesystem/repos/community-staging-x86_64/LICENSE (from rev 661822, 
lua-filesystem/trunk/LICENSE)
===
--- community-staging-x86_64/LICENSE(rev 0)
+++ community-staging-x86_64/LICENSE2020-07-09 13:43:53 UTC (rev 661823)
@@ -0,0 +1,22 @@
+Copyright (C) 2004-2007 The Kepler Project.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use, copy,
+modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+

Copied: lua-filesystem/repos/community-staging-x86_64/PKGBUILD (from rev 
661822, lua-filesystem/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-09 13:43:53 UTC (rev 661823)
@@ -0,0 +1,56 @@
+# Maintainer: Daurnimator 
+# Contributor: Sergej Pupykin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Chris Brannon 
+# Contributor: Paulo Matias 
+# Contributor: Anders Bergh 
+
+pkgbase=lua-filesystem
+pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
+pkgver=1.8.0
+_tag=${pkgver//./_}
+pkgrel=2
+pkgdesc='File System Library for the Lua Programming Language'
+arch=('x86_64')
+url='http://keplerproject.github.io/luafilesystem/'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+source=("$pkgbase-${_tag}.tar.gz::https://github.com/keplerproject/luafilesystem/archive/v${_tag}.tar.gz;)
+sha256sums=('16d17c788b8093f2047325343f5e9b74cccb1ea96001e45914a58bbae8932495')
+
+build() {
+  cp -a luafilesystem-${_tag} luafilesystem-${_tag}-51
+  make -C luafilesystem-${_tag}-51 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.1
+
+  cp -a luafilesystem-${_tag} luafilesystem-${_tag}-52
+  make -C luafilesystem-${_tag}-52 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.2
+
+  cp -a luafilesystem-${_tag} luafilesystem-${_tag}-53
+  make -C luafilesystem-${_tag}-53 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.3
+
+  make -C luafilesystem-${_tag} PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.4
+}
+
+package_lua-filesystem() {
+  cd luafilesystem-${_tag}
+  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.4 install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-filesystem() {
+  cd luafilesystem-${_tag}-51
+  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.1 install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua52-filesystem() {
+  cd luafilesystem-${_tag}-52
+  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.2 install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua53-filesystem() {
+  cd luafilesystem-${_tag}-53
+  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.3 install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in lua-filesystem/trunk (PKGBUILD)

2020-07-09 Thread Daurnimator via arch-commits
Date: Thursday, July 9, 2020 @ 13:43:24
  Author: daurnimator
Revision: 661822

upgpkg: lua-filesystem 1.8.0-2: Tidy up and rebuild for Lua 5.4

Modified:
  lua-filesystem/trunk/PKGBUILD

--+
 PKGBUILD |   19 ++-
 1 file changed, 14 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-09 13:38:10 UTC (rev 661821)
+++ PKGBUILD2020-07-09 13:43:24 UTC (rev 661822)
@@ -1,5 +1,5 @@
-# Maintainer: Sergej Pupykin 
 # Maintainer: Daurnimator 
+# Contributor: Sergej Pupykin 
 # Contributor: Bartłomiej Piotrowski 
 # Contributor: Chris Brannon 
 # Contributor: Paulo Matias 
@@ -9,12 +9,12 @@
 pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
 pkgver=1.8.0
 _tag=${pkgver//./_}
-pkgrel=1
+pkgrel=2
 pkgdesc='File System Library for the Lua Programming Language'
 arch=('x86_64')
 url='http://keplerproject.github.io/luafilesystem/'
 license=('MIT')
-makedepends=('lua' 'lua51' 'lua52')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
 
source=("$pkgbase-${_tag}.tar.gz::https://github.com/keplerproject/luafilesystem/archive/v${_tag}.tar.gz;)
 sha256sums=('16d17c788b8093f2047325343f5e9b74cccb1ea96001e45914a58bbae8932495')
 
@@ -25,12 +25,15 @@
   cp -a luafilesystem-${_tag} luafilesystem-${_tag}-52
   make -C luafilesystem-${_tag}-52 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.2
 
-  make -C luafilesystem-${_tag} PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.3
+  cp -a luafilesystem-${_tag} luafilesystem-${_tag}-53
+  make -C luafilesystem-${_tag}-53 PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.3
+
+  make -C luafilesystem-${_tag} PREFIX=/usr LIB_OPTION="-shared ${LDFLAGS}" 
LUA_VERSION=5.4
 }
 
 package_lua-filesystem() {
   cd luafilesystem-${_tag}
-  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.3 install
+  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.4 install
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
@@ -45,3 +48,9 @@
   make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.2 install
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
+
+package_lua53-filesystem() {
+  cd luafilesystem-${_tag}-53
+  make DESTDIR="$pkgdir" PREFIX=/usr LUA_VERSION=5.3 install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in luaexpat/repos (2 files)

2020-07-09 Thread Daurnimator via arch-commits
Date: Thursday, July 9, 2020 @ 13:38:10
  Author: daurnimator
Revision: 661821

archrelease: copy trunk to community-staging-x86_64

Added:
  luaexpat/repos/community-staging-x86_64/
  luaexpat/repos/community-staging-x86_64/PKGBUILD
(from rev 661820, luaexpat/trunk/PKGBUILD)

--+
 PKGBUILD |   67 +
 1 file changed, 67 insertions(+)

Copied: luaexpat/repos/community-staging-x86_64/PKGBUILD (from rev 661820, 
luaexpat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-09 13:38:10 UTC (rev 661821)
@@ -0,0 +1,67 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Daurnimator 
+# Contributor: Lucas Hermann Negri 
+
+pkgbase=luaexpat
+pkgname=(lua-expat lua51-expat lua52-expat lua53-expat)
+pkgver=1.3.0
+pkgrel=5
+pkgdesc='SAX XML parser based on the Expat library'
+arch=('x86_64')
+url='http://matthewwild.co.uk/projects/luaexpat/'
+license=('MIT')
+depends=('expat')
+makedepends=('gcc' 'lua' 'lua51' 'lua52' 'lua53')
+source=("http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;)
+sha512sums=('91884653310e2dc89ade6d1653875ac8607640a21853d3ccb1fd0f833812e41981fad5c40101732ec249104d2c50c9a332208d1e44423b8428065a223c60b4ae')
+
+prepare() {
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-52
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-53
+}
+
+build() {
+  # 5.1
+  cd "$srcdir"/$pkgbase-$pkgver-51
+  make LUA_V=5.1 COMMON_CFLAGS="$CPPFLAGS -fPIC"
+
+  # 5.2
+  cd "$srcdir"/$pkgbase-$pkgver-52
+  make LUA_V=5.2 COMMON_CFLAGS="$CPPFLAGS -fPIC"
+
+  # 5.3
+  cd "$srcdir"/$pkgbase-$pkgver-53
+  make LUA_V=5.3 COMMON_CFLAGS="$CPPFLAGS -fPIC"
+
+  # 5.4
+  cd "$srcdir"/$pkgbase-$pkgver
+  make LUA_V=5.4 COMMON_CFLAGS="$CPPFLAGS -fPIC"
+}
+
+package_lua-expat() {
+  cd $pkgbase-$pkgver
+  make LUA_V=5.4 DESTDIR="$pkgdir" install
+  install -Dm0644 doc/us/license.html 
"$pkgdir/usr/share/licenses/$pkgname/license.html"
+}
+
+package_lua51-expat() {
+  replaces=('luaexpat')
+  conflicts=('luaexpat')
+
+  cd $pkgbase-$pkgver-51
+  make LUA_V=5.1 DESTDIR="$pkgdir" install
+  install -Dm0644 doc/us/license.html 
"$pkgdir/usr/share/licenses/$pkgname/license.html"
+}
+
+package_lua52-expat() {
+  cd $pkgbase-$pkgver-52
+  make LUA_V=5.2 DESTDIR="$pkgdir" install
+  install -Dm0644 doc/us/license.html 
"$pkgdir/usr/share/licenses/$pkgname/license.html"
+}
+
+package_lua53-expat() {
+  cd $pkgbase-$pkgver-53
+  make LUA_V=5.3 DESTDIR="$pkgdir" install
+  install -Dm0644 doc/us/license.html 
"$pkgdir/usr/share/licenses/$pkgname/license.html"
+}


[arch-commits] Commit in luaexpat/trunk (PKGBUILD)

2020-07-09 Thread Daurnimator via arch-commits
Date: Thursday, July 9, 2020 @ 13:37:45
  Author: daurnimator
Revision: 661820

upgpkg: luaexpat 1.3.0-5: Tidy up and rebuild for Lua 5.4

Modified:
  luaexpat/trunk/PKGBUILD

--+
 PKGBUILD |   37 +
 1 file changed, 21 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-09 13:08:10 UTC (rev 661819)
+++ PKGBUILD2020-07-09 13:37:45 UTC (rev 661820)
@@ -1,15 +1,17 @@
 # Maintainer: Sergej Pupykin 
+# Maintainer: Daurnimator 
 # Contributor: Lucas Hermann Negri 
 
 pkgbase=luaexpat
-pkgname=(lua-expat lua51-expat lua52-expat)
+pkgname=(lua-expat lua51-expat lua52-expat lua53-expat)
 pkgver=1.3.0
-pkgrel=4
+pkgrel=5
 pkgdesc='SAX XML parser based on the Expat library'
 arch=('x86_64')
 url='http://matthewwild.co.uk/projects/luaexpat/'
 license=('MIT')
-makedepends=('gcc' 'lua' 'lua51' 'lua52' 'expat')
+depends=('expat')
+makedepends=('gcc' 'lua' 'lua51' 'lua52' 'lua53')
 source=("http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;)
 
sha512sums=('91884653310e2dc89ade6d1653875ac8607640a21853d3ccb1fd0f833812e41981fad5c40101732ec249104d2c50c9a332208d1e44423b8428065a223c60b4ae')
 
@@ -16,35 +18,34 @@
 prepare() {
   cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
   cp -a $pkgbase-$pkgver $pkgbase-$pkgver-52
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-53
 }
 
 build() {
   # 5.1
-  msg2 "Building $pkgbase with lua 5.1"
   cd "$srcdir"/$pkgbase-$pkgver-51
-  make LUA_V=5.1
+  make LUA_V=5.1 COMMON_CFLAGS="$CPPFLAGS -fPIC"
 
   # 5.2
-  msg2 "Building $pkgbase with lua 5.2"
   cd "$srcdir"/$pkgbase-$pkgver-52
-  make LUA_V=5.2 CFLAGS='-DLUA_32BITS'
+  make LUA_V=5.2 COMMON_CFLAGS="$CPPFLAGS -fPIC"
 
   # 5.3
-  msg2 "Building $pkgbase with lua 5.3"
-  cd "$srcdir/$pkgbase-$pkgver"
-  make LUA_V=5.3 CFLAGS='-DLUA_32BITS'
+  cd "$srcdir"/$pkgbase-$pkgver-53
+  make LUA_V=5.3 COMMON_CFLAGS="$CPPFLAGS -fPIC"
+
+  # 5.4
+  cd "$srcdir"/$pkgbase-$pkgver
+  make LUA_V=5.4 COMMON_CFLAGS="$CPPFLAGS -fPIC"
 }
 
 package_lua-expat() {
-  depends=('lua' 'expat')
-
   cd $pkgbase-$pkgver
-  make LUA_V=5.3 DESTDIR="$pkgdir" install
+  make LUA_V=5.4 DESTDIR="$pkgdir" install
   install -Dm0644 doc/us/license.html 
"$pkgdir/usr/share/licenses/$pkgname/license.html"
 }
 
 package_lua51-expat() {
-  depends=('lua51' 'expat')
   replaces=('luaexpat')
   conflicts=('luaexpat')
 
@@ -54,9 +55,13 @@
 }
 
 package_lua52-expat() {
-  depends=('lua52' 'expat')
-
   cd $pkgbase-$pkgver-52
   make LUA_V=5.2 DESTDIR="$pkgdir" install
   install -Dm0644 doc/us/license.html 
"$pkgdir/usr/share/licenses/$pkgname/license.html"
 }
+
+package_lua53-expat() {
+  cd $pkgbase-$pkgver-53
+  make LUA_V=5.3 DESTDIR="$pkgdir" install
+  install -Dm0644 doc/us/license.html 
"$pkgdir/usr/share/licenses/$pkgname/license.html"
+}


[arch-commits] Commit in passff-host/repos/community-any (PKGBUILD PKGBUILD)

2020-07-09 Thread Daurnimator via arch-commits
Date: Thursday, July 9, 2020 @ 12:39:28
  Author: daurnimator
Revision: 661813

archrelease: copy trunk to community-any

Added:
  passff-host/repos/community-any/PKGBUILD
(from rev 661812, passff-host/trunk/PKGBUILD)
Deleted:
  passff-host/repos/community-any/PKGBUILD

--+
 PKGBUILD |   80 +++--
 1 file changed, 41 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-09 12:39:00 UTC (rev 661812)
+++ PKGBUILD2020-07-09 12:39:28 UTC (rev 661813)
@@ -1,39 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Jaron Kent-Dobias 
-# Contributor: arcnmx 
-
-pkgname=passff-host
-pkgver=1.2.1
-pkgrel=2
-epoch=1
-pkgdesc="PassFF native messaging host application for Firefox, Chromium, 
Chrome, Vivaldi"
-url="https://github.com/passff/passff-host;
-license=(GPL2)
-depends=('python')
-arch=('any')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/passff/passff-host/archive/${pkgver}.tar.gz;)
-sha256sums=('9ad2fd45764283fd327819f79acc1ed39ad14e939120d4bcda6c0510cae39252')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  sed -i -e 's/PLACEHOLDER/\/usr\/share\/passff\/passff.py/' 'src/passff.json'
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -Dm 755 "src/passff.py" "${pkgdir}/usr/share/passff/passff.py"
-  python -O -m compileall "${pkgdir}/usr/share/passff/passff.py"
-
-  install -Dm 644 "src/passff.json" "${pkgdir}/usr/share/passff/passff.json"
-  for d in \
-'/etc/chromium/native-messaging-hosts' \
-'/etc/opt/chrome/native-messaging-hosts' \
-'/usr/lib/mozilla/native-messaging-hosts' \
-'/etc/vivaldi/native-messaging-hosts' \
-  ; do
-mkdir -p "${pkgdir}/${d}/"
-ln -s '/usr/share/passff/passff.json' "${pkgdir}/${d}/passff.json"
-  done
-}

Copied: passff-host/repos/community-any/PKGBUILD (from rev 661812, 
passff-host/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-09 12:39:28 UTC (rev 661813)
@@ -0,0 +1,41 @@
+# Maintainer: Daurnimator 
+# Contributor: Jaron Kent-Dobias 
+# Contributor: arcnmx 
+
+pkgname=passff-host
+pkgver=1.2.1
+pkgrel=3
+epoch=1
+pkgdesc="PassFF native messaging host application for Firefox, Chromium, 
Chrome, Vivaldi"
+url="https://github.com/passff/passff-host;
+license=(GPL2)
+depends=('pass' 'python')
+optdepends=('pass-otp')
+arch=('any')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/passff/passff-host/archive/${pkgver}.tar.gz;)
+sha256sums=('9ad2fd45764283fd327819f79acc1ed39ad14e939120d4bcda6c0510cae39252')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  sed -i -e "s/_VERSIONHOLDER_/${pkgver}/g" 'src/passff.py'
+  sed -i -e 's/PLACEHOLDER/\/usr\/share\/passff\/passff.py/' 'src/passff.json'
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  install -Dm 755 "src/passff.py" "${pkgdir}/usr/share/passff/passff.py"
+  python -O -m compileall "${pkgdir}/usr/share/passff/passff.py"
+
+  install -Dm 644 "src/passff.json" "${pkgdir}/usr/share/passff/passff.json"
+  for d in \
+'/etc/chromium/native-messaging-hosts' \
+'/etc/opt/chrome/native-messaging-hosts' \
+'/usr/lib/mozilla/native-messaging-hosts' \
+'/etc/vivaldi/native-messaging-hosts' \
+  ; do
+mkdir -p "${pkgdir}/${d}/"
+ln -s '/usr/share/passff/passff.json' "${pkgdir}/${d}/passff.json"
+  done
+}


  1   2   3   >