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

Levente Polyak anthraxx at gemini.archlinux.org
Wed Jul 21 14:29:35 UTC 2021


    Date: Wednesday, July 21, 2021 @ 14:29:35
  Author: anthraxx
Revision: 982127

archrelease: copy trunk to community-x86_64

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

----------+
 PKGBUILD |  142 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-07-21 14:29:31 UTC (rev 982126)
+++ PKGBUILD	2021-07-21 14:29:35 UTC (rev 982127)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Andreas 'Segaja' Schleifer <archlinux at segaja dot de>
-
-pkgname=aliyun-cli
-_gitcommit=5f1669f9b0671763151b753a23d9fbe736802384
-pkgver=3.0.81
-pkgrel=1
-pkgdesc='Alibaba Cloud CLI'
-arch=('x86_64')
-url='https://github.com/aliyun/aliyun-cli'
-license=('APACHE')
-depends=('glibc')
-makedepends=('git' 'go' 'go-bindata')
-source=("git+${url}#commit=${_gitcommit}"
-        git+https://github.com/aliyun/aliyun-openapi-meta)
-sha512sums=('SKIP'
-            'SKIP')
-b2sums=('SKIP'
-        'SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cd ${pkgname}
-  git submodule init
-  git config submodule."aliyun-openapi-meta".url "${srcdir}/aliyun-openapi-meta"
-  git submodule update --recursive
-}
-
-build() {
-  cd ${pkgname}
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw -ldflags=-linkmode=external"
-
-  echo "generating bindata..."
-  go-bindata \
-      -o resource/metas.go \
-      -pkg resource \
-      ./aliyun-openapi-meta/...
-
-  echo "building..."
-  go build \
-    -ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 'github.com/aliyun/aliyun-cli/cli.Version=${pkgver}'" \
-    -o ./out/aliyun ./main/main.go
-}
-
-check() {
-  cd ${pkgname}
-
-  # Horrible but needed for the ./cli/ tests
-  touch "${HOME}/.bashrc"
-
-  # for now can't test the `./oss/...` folder, because it needs an env file that is not so easy to have in dev
-  go test \
-    ./cli/... ./config/... ./i18n/... ./main/... ./openapi/... ./resource/...
-}
-
-package() {
-  cd ${pkgname}
-  install -Dm 755 out/aliyun "${pkgdir}/usr/bin/aliyun"
-  install -Dm 644 README*.md CHANGELOG.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 bin/README.md -t "${pkgdir}/usr/share/doc/${pkgname}/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: aliyun-cli/repos/community-x86_64/PKGBUILD (from rev 982126, aliyun-cli/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-07-21 14:29:35 UTC (rev 982127)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Andreas 'Segaja' Schleifer <archlinux at segaja dot de>
+
+pkgname=aliyun-cli
+_gitcommit=34a7ab8bf36ff9121f21b838d7c1259edd17cb43
+pkgver=3.0.82
+pkgrel=1
+pkgdesc='Alibaba Cloud CLI'
+arch=('x86_64')
+url='https://github.com/aliyun/aliyun-cli'
+license=('APACHE')
+depends=('glibc')
+makedepends=('git' 'go' 'go-bindata')
+source=("git+${url}#commit=${_gitcommit}"
+        git+https://github.com/aliyun/aliyun-openapi-meta)
+sha512sums=('SKIP'
+            'SKIP')
+b2sums=('SKIP'
+        'SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  git submodule init
+  git config submodule."aliyun-openapi-meta".url "${srcdir}/aliyun-openapi-meta"
+  git submodule update --recursive
+}
+
+build() {
+  cd ${pkgname}
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw -ldflags=-linkmode=external"
+
+  echo "generating bindata..."
+  go-bindata \
+      -o resource/metas.go \
+      -pkg resource \
+      ./aliyun-openapi-meta/...
+
+  echo "building..."
+  go build \
+    -ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 'github.com/aliyun/aliyun-cli/cli.Version=${pkgver}'" \
+    -o ./out/aliyun ./main/main.go
+}
+
+check() {
+  cd ${pkgname}
+
+  # Horrible but needed for the ./cli/ tests
+  touch "${HOME}/.bashrc"
+
+  # for now can't test the `./oss/...` folder, because it needs an env file that is not so easy to have in dev
+  go test \
+    ./cli/... ./config/... ./i18n/... ./main/... ./openapi/... ./resource/...
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm 755 out/aliyun "${pkgdir}/usr/bin/aliyun"
+  install -Dm 644 README*.md CHANGELOG.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 bin/README.md -t "${pkgdir}/usr/share/doc/${pkgname}/bin"
+}
+
+# vim: ts=2 sw=2 et:




More information about the arch-commits mailing list