Package Details: flux-bin 2.3.0-1

Git Clone URL: https://aur.archlinux.org/flux-bin.git (read-only, click to copy)
Package Base: flux-bin
Description: Open and extensible continuous delivery solution for Kubernetes
Upstream URL: https://fluxcd.io/
Keywords: continuous-delivery devops flux gitops kubernetes
Licenses: Apache
Submitter: fluxcdbot
Maintainer: fluxcdbot (hiddeco, aurelcanciu)
Last Packager: fluxcdbot
Votes: 11
Popularity: 0.002193
First Submitted: 2020-12-03 10:09 (UTC)
Last Updated: 2024-05-13 13:54 (UTC)

Dependencies (2)

Required by (1)

Sources (3)

Latest Comments

1 2 Next › Last »

cwrau commented on 2024-07-09 13:45 (UTC) (edited on 2024-07-09 13:45 (UTC) by cwrau)

Could you provides and conflicts fluxcd?

diff --git a/PKGBUILD b/PKGBUILD
index 20c0882..b2e5466 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,6 +8,8 @@ _srcname=flux
 _srcver=2.3.0
 pkgdesc="Open and extensible continuous delivery solution for Kubernetes"
 url="https://fluxcd.io/"
+provides=("fluxcd")
+conflicts=("fluxcd")
 arch=("x86_64" "armv7h" "aarch64")
 license=("APACHE")
 optdepends=('bash-completion: auto-completion for flux in Bash'

That way other tools can just depend on fluxcd, however the enduser chooses to install it.

FabioLolix commented on 2023-08-09 11:22 (UTC)

Hello,

  • you can remove armv6h since that is has been removed from the distro
  • please remove ${pkgname}-${pkgver}.tar.gz:: from source_*=(), renaming all the files to the same name is detrimental if one need to use the command updpkgsums
  • improve pkgver/_srcver instead of duplicate it by using for example:
_srcver=2.0.0-rc.5
pkgver=${_srcver//-/.}

or

_srcver=2.0.0-rc.5
pkgver=${_srcver//-/}

sseneca commented on 2023-08-09 08:56 (UTC)

The validity check is what's failing for me even after I clear my AUR helper's cache - trying to figure out what's going wrong on GitHub: https://github.com/fluxcd/flux2/issues/4109

aurelcanciu commented on 2023-07-30 19:22 (UTC)

@sseneca could you please describe what issue are you having? I'm able to build the package just fine. Thanks!

sseneca commented on 2023-07-29 13:07 (UTC)

This package has been broken for soooo long. Are the maintainers not aware?

mrichetta commented on 2023-07-05 23:48 (UTC)

I think there's an issue with the latest update to 2.0.1 release, which does not exist in https://github.com/fluxcd/flux2/releases

aurelcanciu commented on 2023-04-06 22:06 (UTC)

@nemock thank you for reporting this and sorry for the trouble. I've just pushed an update which should fix the issue.

nemock commented on 2023-04-06 14:29 (UTC) (edited on 2023-04-06 14:30 (UTC) by nemock)

There is a typo in the PKGBUILD:

pkgver=2.0.0rc.1

should be:

pkgver=2.0.0-rc.1

cwrau commented on 2022-11-09 10:20 (UTC)

Could you provide completion for zsh/bash?

You can use the following snippet inside the install function;

  $srcdir/$$bin completion zsh > $srcdir/zsh_$$bin
  $srcdir/$$bin completion bash > $srcdir/bash_$$bin
  install -D -m 0644 $srcdir/zsh_$$bin $pkgdir/usr/share/zsh/site-functions/_$$bin
  install -D -m 0644 $srcdir/bash_$$bin $pkgdir/usr/share/bash-completion/completions/$$bin

replacing $$bin with flux maybe?