From d9f4b6f3d98d75302c8be3e37d7f18285d48b195fd1606bf70157354892a9343 Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Wed, 24 Aug 2022 10:02:04 +0000 Subject: [PATCH 1/2] Accepting request 999016 from home:manfred-h:devel:kubic - autocomplete files have been removed; obsolete bash-completion and zsh-completion sub-packages. - Update to version 0.145.3: * Bump github.com/hashicorp/go-version from 1.4.0 to 1.6.0 by @dependabot in #183 * fix doc link error and style error by @yxxhero in #217 * fix(doc): add missing version field in the release template example by @lemeurherve in #228 * update readme about image repo and fix link error by @yxxhero in #224 * fix: use helm secrets view rather than helm secrets dec to decrypt by @philomory in #201 * add Go lint by @yxxhero in #169 * Include the working helmfile ver in the bug report by @mumoshu in #237 * update Readmd.md by @yxxhero in #236 * feat: bump chartify to v0.10.0 to support OCI registry for adhoc dependencies by @toVersus in #238 * on canary build, version should show "0.0.0-dev" by @itscaro in #162 * Add integration test for #238 with local docker registry as a OCI-based helm chart repo by @mumoshu in #239 * chore: clean up snapshot test by @toVersus in #241 * doc: getting start adds repositories configuration by @xiaomudk in #240 * Use cobra by @yxxhero in #234 * E2E helmfile-template testing with local chart repo server by @mumoshu in #245 * correct --help cli arg regression by @jouve in #252 * revert environment long option from --env to --environment by @jouve in #250 * test: Add unit tests for ChartExport by @xiaomudk in #256 * test: Add unit tests for ChartPull by @xiaomudk in #257 * fix: OCI Url and Version parse error by @xiaomudk in #258 * Implement readDirEntries method by @vasicvuk in #254 * remove selector override in cmd/apply by @jouve in #266 * update doccs/index.md about CLI ref by @yxxhero in #264 * fix: needs error with context that includes slash by @sergeief in #268 * Bump k8s.io/apimachinery from 0.23.4 to 0.24.3 by @dependabot in #230 * Add flags about need for lint subcmd by @yxxhero in #273 * fix go.mod by @yxxhero in #275 * Refactor cobra flag default values for readability by @yxxhero in #274 * build(deps): bump go.uber.org/zap from 1.21.0 to 1.22.0 by @dependabot in #280 * Add file existence check for remote values by @kuzaxak in #284 * Update ArchLinux installation instructions by @AnatolyRugalev in #282 * Fix Inclusion of Releases for Other Environments by @dackroyd in #276 * Cleanup pkg/config/config.go by @yxxhero in #287 * update golang lint by @yxxhero in #288 * Refactor 'images' workflow, include Ubuntu image to push by @pathob in #262 * build(deps): bump github.com/mattn/go-isatty from 0.0.14 to 0.0.16 by @dependabot in #293 * fix tag miss in docker build by @yxxhero in #294 OBS-URL: https://build.opensuse.org/request/show/999016 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=60 --- _service | 2 +- _servicedata | 2 +- helmfile-0.145.2.tar.gz | 3 -- helmfile-0.145.3.tar.gz | 3 ++ helmfile.changes | 67 +++++++++++++++++++++++++++++++++++++++++ helmfile.spec | 42 +++----------------------- vendor.tar.gz | 4 +-- 7 files changed, 78 insertions(+), 45 deletions(-) delete mode 100644 helmfile-0.145.2.tar.gz create mode 100644 helmfile-0.145.3.tar.gz diff --git a/_service b/_service index 1359fc8..84923e5 100644 --- a/_service +++ b/_service @@ -5,7 +5,7 @@ .git @PARENT_TAG@ v(.*) - v0.145.2 + v0.145.3 enable diff --git a/_servicedata b/_servicedata index 2a880be..8a90243 100644 --- a/_servicedata +++ b/_servicedata @@ -1,4 +1,4 @@ https://github.com/helmfile/helmfile.git - 9179cfb55f734b809729f76d8edca36c18e7ea30 \ No newline at end of file + 295d54d8386c5af126bfff032f6506b4cca651e3 \ No newline at end of file diff --git a/helmfile-0.145.2.tar.gz b/helmfile-0.145.2.tar.gz deleted file mode 100644 index e3af964..0000000 --- a/helmfile-0.145.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:546e8792eb6e4514490c91d9137d08b9c4b5d4ca1c98a4a452463df23df33ccd -size 299538 diff --git a/helmfile-0.145.3.tar.gz b/helmfile-0.145.3.tar.gz new file mode 100644 index 0000000..bcf1f05 --- /dev/null +++ b/helmfile-0.145.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4dd493c77d8dc427ab79e84f413e6e355f174cb312f6e3d5b72d8beeb1f5406 +size 349699 diff --git a/helmfile.changes b/helmfile.changes index 9ee1544..f946c60 100644 --- a/helmfile.changes +++ b/helmfile.changes @@ -1,3 +1,70 @@ +------------------------------------------------------------------- +Wed Aug 24 09:49:47 UTC 2022 - manfred.h@gmx.net + +- autocomplete files have been removed; obsolete bash-completion + and zsh-completion sub-packages. + +------------------------------------------------------------------- +Wed Aug 24 09:26:33 UTC 2022 - manfred.h@gmx.net + +- Update to version 0.145.3: + * Bump github.com/hashicorp/go-version from 1.4.0 to 1.6.0 by + @dependabot in #183 + * fix doc link error and style error by @yxxhero in #217 + * fix(doc): add missing version field in the release template + example by @lemeurherve in #228 + * update readme about image repo and fix link error by @yxxhero + in #224 + * fix: use helm secrets view rather than helm secrets dec to + decrypt by @philomory in #201 + * add Go lint by @yxxhero in #169 + * Include the working helmfile ver in the bug report by + @mumoshu in #237 + * update Readmd.md by @yxxhero in #236 + * feat: bump chartify to v0.10.0 to support OCI registry for adhoc + dependencies by @toVersus in #238 + * on canary build, version should show "0.0.0-dev" by @itscaro in + #162 + * Add integration test for #238 with local docker registry as a + OCI-based helm chart repo by @mumoshu in #239 + * chore: clean up snapshot test by @toVersus in #241 + * doc: getting start adds repositories configuration by @xiaomudk + in #240 + * Use cobra by @yxxhero in #234 + * E2E helmfile-template testing with local chart repo server by + @mumoshu in #245 + * correct --help cli arg regression by @jouve in #252 + * revert environment long option from --env to --environment by + @jouve in #250 + * test: Add unit tests for ChartExport by @xiaomudk in #256 + * test: Add unit tests for ChartPull by @xiaomudk in #257 + * fix: OCI Url and Version parse error by @xiaomudk in #258 + * Implement readDirEntries method by @vasicvuk in #254 + * remove selector override in cmd/apply by @jouve in #266 + * update doccs/index.md about CLI ref by @yxxhero in #264 + * fix: needs error with context that includes slash by @sergeief + in #268 + * Bump k8s.io/apimachinery from 0.23.4 to 0.24.3 by @dependabot + in #230 + * Add flags about need for lint subcmd by @yxxhero in #273 + * fix go.mod by @yxxhero in #275 + * Refactor cobra flag default values for readability by @yxxhero + in #274 + * build(deps): bump go.uber.org/zap from 1.21.0 to 1.22.0 by + @dependabot in #280 + * Add file existence check for remote values by @kuzaxak in #284 + * Update ArchLinux installation instructions by @AnatolyRugalev + in #282 + * Fix Inclusion of Releases for Other Environments by @dackroyd + in #276 + * Cleanup pkg/config/config.go by @yxxhero in #287 + * update golang lint by @yxxhero in #288 + * Refactor 'images' workflow, include Ubuntu image to push by + @pathob in #262 + * build(deps): bump github.com/mattn/go-isatty from 0.0.14 to + 0.0.16 by @dependabot in #293 + * fix tag miss in docker build by @yxxhero in #294 + ------------------------------------------------------------------- Tue Jul 26 07:50:07 UTC 2022 - manfred.h@gmx.net diff --git a/helmfile.spec b/helmfile.spec index f387cb3..9e56015 100644 --- a/helmfile.spec +++ b/helmfile.spec @@ -17,9 +17,9 @@ # -%define git_commit 96174e422940db988b78c555f668e9d635dbfd91 +%define git_commit e44a915d4024a161d2a5642cf078038ea314fc72 Name: helmfile -Version: 0.145.2 +Version: 0.145.3 Release: 0 Summary: Deploy Kubernetes Helm Charts License: MIT @@ -31,6 +31,8 @@ Requires: helm BuildRequires: golang-packaging BuildRequires: xz BuildRequires: golang(API) >= 1.16 +Obsoletes: %{name}-bash-completion +Obsoletes: %{name}-zsh-completion %{go_nostrip} %{go_provides} @@ -44,26 +46,6 @@ Helmfile is a declarative spec for deploying helm charts. It lets you... To avoid upgrades for each iteration of helm, the helmfile executable delegates to helm - as a result, helm must be installed. -%package bash-completion -Summary: Bash Completion for %{name} -Group: System/Shells -Requires: %{name} = %{version} -Supplements: packageand(%{name}:bash-completion) -BuildArch: noarch - -%description bash-completion -Bash command line completion support for %{name}. - -%package zsh-completion -Summary: Zsh Completion for %{name} -Group: System/Shells -Requires: %{name} = %{version} -Supplements: packageand(%{name}:zsh) -BuildArch: noarch - -%description zsh-completion -Zsh command line completion support for %{name}. - %prep %setup -qa1 @@ -74,26 +56,10 @@ go build -mod=vendor -buildmode=pie make TAG=v%{version} install mkdir -p %{buildroot}%{_bindir} install -m755 ${HOME}/go/bin/helmfile %{buildroot}/%{_bindir}/helmfile -mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions -install -m644 autocomplete/helmfile_bash_autocomplete \ - %{buildroot}%{_datarootdir}/bash-completion/completions/%{name} -mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d -install -m644 autocomplete/helmfile_zsh_autocomplete \ - %{buildroot}%{_datarootdir}/zsh_completion.d/_%{name} %files %doc README.md %license LICENSE %{_bindir}/helmfile -%files bash-completion -%defattr(-,root,root) -%dir %{_datarootdir}/bash-completion/completions/ -%{_datarootdir}/bash-completion/completions/%{name} - -%files zsh-completion -%defattr(-,root,root) -%dir %{_datarootdir}/zsh_completion.d/ -%{_datarootdir}/zsh_completion.d/_%{name} - %changelog diff --git a/vendor.tar.gz b/vendor.tar.gz index e2db977..f4c5952 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1884cd4d96228db0d1e3a36057440e56de489d3cb79086ab5910060076e9f1ab -size 6926674 +oid sha256:a6531d93a8581522826b6378d74fbd3011b769ab07bbb39d62a3671de32f7c8c +size 10860597 From 66b195aba1aacc031684c6bbce39115eb3e03d73a42f533c75b43d20af5efa29 Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Wed, 24 Aug 2022 11:48:50 +0000 Subject: [PATCH 2/2] Accepting request 999049 from home:manfred-h:devel:kubic - autocomplete files have been removed; obsolete bash-completion and zsh-completion sub-packages older than this version. OBS-URL: https://build.opensuse.org/request/show/999049 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=61 --- helmfile.changes | 2 +- helmfile.spec | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helmfile.changes b/helmfile.changes index f946c60..bac6b0b 100644 --- a/helmfile.changes +++ b/helmfile.changes @@ -2,7 +2,7 @@ Wed Aug 24 09:49:47 UTC 2022 - manfred.h@gmx.net - autocomplete files have been removed; obsolete bash-completion - and zsh-completion sub-packages. + and zsh-completion sub-packages older than this version. ------------------------------------------------------------------- Wed Aug 24 09:26:33 UTC 2022 - manfred.h@gmx.net diff --git a/helmfile.spec b/helmfile.spec index 9e56015..1124561 100644 --- a/helmfile.spec +++ b/helmfile.spec @@ -31,8 +31,8 @@ Requires: helm BuildRequires: golang-packaging BuildRequires: xz BuildRequires: golang(API) >= 1.16 -Obsoletes: %{name}-bash-completion -Obsoletes: %{name}-zsh-completion +Obsoletes: %{name}-bash-completion < %{version} +Obsoletes: %{name}-zsh-completion < %{version} %{go_nostrip} %{go_provides}