-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- remove armv6h #4224 - unique source name #4224 - improve pkgver/_srcver #4224 - fix source name in .SRCINFO Signed-off-by: Son Bui <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,29 @@ | ||
# Maintainer: Aurel Canciu <[email protected]> | ||
# Maintainer: Hidde Beydals <[email protected]> | ||
|
||
pkgname=flux-bin | ||
pkgver=${PKGVER} | ||
pkgrel=${PKGREL} | ||
_srcname=flux | ||
_srcver=${VERSION} | ||
pkgname=flux-bin | ||
pkgver=${_srcver//-/} | ||
pkgrel=${PKGREL} | ||
pkgdesc="Open and extensible continuous delivery solution for Kubernetes" | ||
url="https://fluxcd.io/" | ||
arch=("x86_64" "armv6h" "armv7h" "aarch64") | ||
arch=("x86_64" "armv7h" "aarch64") | ||
license=("APACHE") | ||
optdepends=('bash-completion: auto-completion for flux in Bash' | ||
'zsh-completions: auto-completion for flux in ZSH') | ||
source_x86_64=( | ||
"${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux2/releases/download/v${_srcver}/flux_${_srcver}_linux_amd64.tar.gz" | ||
) | ||
source_armv6h=( | ||
"${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux2/releases/download/v${_srcver}/flux_${_srcver}_linux_arm.tar.gz" | ||
"${pkgname}-${pkgver}_linux_amd64.tar.gz::https://github.com/fluxcd/flux2/releases/download/v${_srcver}/flux_${_srcver}_linux_amd64.tar.gz" | ||
) | ||
source_armv7h=( | ||
"${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux2/releases/download/v${_srcver}/flux_${_srcver}_linux_arm.tar.gz" | ||
"${pkgname}-${pkgver}_linux_arm.tar.gz::https://github.com/fluxcd/flux2/releases/download/v${_srcver}/flux_${_srcver}_linux_arm.tar.gz" | ||
) | ||
source_aarch64=( | ||
"${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux2/releases/download/v${_srcver}/flux_${_srcver}_linux_arm64.tar.gz" | ||
"${pkgname}-${pkgver}_linux_arm64.tar.gz::https://github.com/fluxcd/flux2/releases/download/v${_srcver}/flux_${_srcver}_linux_arm64.tar.gz" | ||
) | ||
sha256sums_x86_64=( | ||
${SHA256SUM_AMD64} | ||
) | ||
sha256sums_armv6h=( | ||
${SHA256SUM_ARM} | ||
) | ||
sha256sums_armv7h=( | ||
${SHA256SUM_ARM} | ||
) | ||
|