Package Details: pulumi-language-dotnet 3.63.1-1

Git Clone URL: https://aur.archlinux.org/pulumi-language-dotnet.git (read-only, click to copy)
Package Base: pulumi-language-dotnet
Description: Modern Infrastructure as Code (Dotnet provider)
Upstream URL: https://github.com/pulumi/pulumi-dotnet
Licenses: Apache
Submitter: Sacro
Maintainer: Sacro
Last Packager: Sacro
Votes: 0
Popularity: 0.000000
First Submitted: 2023-11-04 21:18 (UTC)
Last Updated: 2024-06-05 15:30 (UTC)

Required by (0)

Sources (1)

Latest Comments

UnoSD commented on 2024-10-31 14:33 (UTC)

hi Sacro, thank you for creating this package, can you please update to fix the quotes issues and upgrade the version? I built and tested locally, this is the format-patch:

diff --git a/PKGBUILD b/PKGBUILD
index 13c513c..e3b42df 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@

 pkgname=pulumi-language-dotnet
 _reponame=pulumi-dotnet
-pkgver=3.66.1
+pkgver=3.63.1
 pkgrel=1
 pkgdesc='Modern Infrastructure as Code (Dotnet provider)'
 arch=('x86_64')
@@ -11,7 +11,7 @@ license=('Apache')
 depends=('glibc')
 makedepends=('go')
 source=("$_reponame-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('7be1dc248e6764be70a2346ec0b84cd3f4eebb68e774c04964fcb354ff8ed8f0')
+sha256sums=('ddec7c5498320e7a20e86ed5be99dc031895ff77a2af3e7d5a151d470b7e3ddd')
 options=('!lto') # disable as soon as LTO problems are resolved

 build() {
@@ -24,7 +24,10 @@ build() {
   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"

   # Build the `pulumi-language-dotnet` executable
-  go build -ldflags "-X github.com/pulumi/${_reponame}/pkg/v${pkgver%%.*}/version.Version=${pkgver} -extldflags '${LDFLAGS}'" -o "${srcdir}/${_reponame}-${pkgver}/bin/${pkgname}" "."
+  go build \
+    -ldflags "-X github.com/pulumi/${_reponame}/pkg/v${pkgver%%.*}/version.Version=${pkgver} -extldflags ${LDFLAGS}" \
+    -o "${srcdir}/${_reponame}-${pkgver}/bin/${pkgname}" \
+    "."
 }

 package() {