Date: Friday, March 17, 2023 @ 09:58:47
Author: kpcyrd
Revision: 1421246
archrelease: copy trunk to community-x86_64
Added:
apko/repos/community-x86_64/PKGBUILD
(from rev 1421245, apko/trunk/PKGBUILD)
Deleted:
apko/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 80 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 40 insertions(+), 40 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-17 09:58:13 UTC (rev 1421245)
+++ PKGBUILD 2023-03-17 09:58:47 UTC (rev 1421246)
@@ -1,40 +0,0 @@
-# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org>
-
-pkgname=apko
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="Declarative APK-based container building tool with support for
sigstore signatures"
-url="https://github.com/chainguard-dev/apko"
-arch=('x86_64')
-license=('Apache')
-depends=('apk-tools' 'alpine-keyring')
-makedepends=('go')
-source=("https://github.com/chainguard-dev/apko/archive/v${pkgver}/apko-${pkgver}.tar.gz")
-b2sums=('92ec7ffe16538859817297d5f95ecbf3d70e52403e5367b70871087309d3a181c1f9f9bddc53e3dd8e45b60cf354afa8cf5b1f441da4feaf60cb5272bb2576e5')
-
-build() {
- cd "${pkgname}-${pkgver}"
- mkdir build
- CGO_LDFLAGS="${LDFLAGS}" \
- GOFLAGS="-trimpath -buildmode=pie -mod=readonly" \
- go build -o build/ -tags -tags=pivkey,pkcs11key ./...
-
- for i in bash fish zsh; do
- build/apko completion ${i} > ./apko.${i}
- done
-}
-
-check() {
- cd "${pkgname}-${pkgver}"
- go test ./...
-}
-
-package() {
- cd "${pkgname}-${pkgver}"
- install -Dm755 build/apko "${pkgdir}"/usr/bin/apko
- install -Dm644 apko.bash
"${pkgdir}"/usr/share/bash-completion/completions/apko
- install -Dm644 apko.fish "${pkgdir}"/usr/share/fish/completions/apko.fish
- install -Dm644 apko.zsh "${pkgdir}"/usr/share/zsh/site-functions/_apko
-}
-
-# vim: ts=2 sw=2 et:
Copied: apko/repos/community-x86_64/PKGBUILD (from rev 1421245,
apko/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-17 09:58:47 UTC (rev 1421246)
@@ -0,0 +1,40 @@
+# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org>
+
+pkgname=apko
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="Declarative APK-based container building tool with support for
sigstore signatures"
+url="https://github.com/chainguard-dev/apko"
+arch=('x86_64')
+license=('Apache-2.0')
+depends=('apk-tools' 'alpine-keyring')
+makedepends=('go')
+source=("https://github.com/chainguard-dev/apko/archive/v${pkgver}/apko-${pkgver}.tar.gz")
+b2sums=('514d41a6f76c622d2a5d93c6cf56c39f27a54283a07c54cd052ef1cef5740b6484b69ece32e522f8bd02a928276ed188edacc6c00fc72abde56fb55c65305eb0')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ mkdir build
+ CGO_LDFLAGS="${LDFLAGS}" \
+ GOFLAGS="-trimpath -buildmode=pie -mod=readonly" \
+ go build -o build/ -tags -tags=pivkey,pkcs11key ./...
+
+ for i in bash fish zsh; do
+ build/apko completion ${i} > ./apko.${i}
+ done
+}
+
+check() {
+ cd "${pkgname}-${pkgver}"
+ go test ./...
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ install -Dm755 build/apko "${pkgdir}"/usr/bin/apko
+ install -Dm644 apko.bash
"${pkgdir}"/usr/share/bash-completion/completions/apko
+ install -Dm644 apko.fish "${pkgdir}"/usr/share/fish/completions/apko.fish
+ install -Dm644 apko.zsh "${pkgdir}"/usr/share/zsh/site-functions/_apko
+}
+
+# vim: ts=2 sw=2 et: