- weldr: Use assert.Contains instead of IsStringInSlice (bcl)
- Add missing projects depsolve command (bcl) - Add support for projects info --distro=DISTRO-NAME (bcl) - Add support for projects list --distro=DISTRO-NAME (bcl) - Add support for modules info --distro=DISTRO-NAME (bcl) - weldr: Add distros to testState (bcl) - Add support for modules list --distro=DISTRO-NAME (bcl) - weldr: Add AppendQuery helper function (bcl) - Add support for compose types --distro=DISTRO-NAME (bcl) - composer-cli: Add distros list command (bcl) - weldr: Add ListDistros function and tests (bcl) - Makefile: Add scratch-srpm and scratch-rpm targets (bcl) - Print filename for compose results (bcl) - ExcuteTests - return the correct error variables in case of errors (atodorov) - The rpm package should obsolete composer-cli from lorax (bcl) - tests: Enable CodeCov.io (atodorov) - actions: Install lint using GOPATH (bcl)
This commit is contained in:
parent
eb8546165b
commit
e9f328afba
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
||||
/gpg-117E8C168EFE3A7F.key
|
||||
/weldr-client-35.1.tar.gz
|
||||
/weldr-client-35.2.tar.gz
|
||||
/weldr-client-35.2.tar.gz.asc
|
||||
|
||||
4
sources
4
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (gpg-117E8C168EFE3A7F.key) = 36712a4e05cbb2ca139e777d8b2abe4ee0536f970208c2c2c1a50a2294979b828a9d6abcbad1dce3cc015a0c4364ab87ab04cb459811ad3aca5cf6611093b9bd
|
||||
SHA512 (weldr-client-35.1.tar.gz) = 8508b446c44eae917710083c8185054e3a89f799723b71e2d0069ce35c653ea2adabcab3b8d7d9a903f127798368933ba765c603ebed4fe3f6c6187c032a793c
|
||||
SHA512 (weldr-client-35.2.tar.gz) = 15be056982683b9b8d5485ff9aa48dff237a48c3ee9d104c0de16898653facb0a63371a8d31bdf3fb19034022411c8d77e2358b22de52d23768cc7363f4926de
|
||||
SHA512 (weldr-client-35.2.tar.gz.asc) = 7aabc7faaedc8c1d87a7b182348aa11a52db8425c7327fe52c560d2a861643e27f6d53628d4261027b092198003f02f12ad3ccb98f8f4ce8ce9e1f39fd67b556
|
||||
|
||||
@ -1,18 +1,22 @@
|
||||
# Pass --with tests to rpmbuild to build composer-cli-tests
|
||||
%bcond_with tests
|
||||
# Pass --without signed to skip gpg signed tar.gz (DO NOT DO THAT IN PRODUCTION)
|
||||
%bcond_without signed
|
||||
|
||||
%global goipath github.com/osbuild/weldr-client
|
||||
|
||||
Name: weldr-client
|
||||
Version: 35.1
|
||||
Release: 3%{?dist}
|
||||
Version: 35.2
|
||||
Release: 1%{?dist}
|
||||
# Upstream license specification: Apache-2.0
|
||||
License: ASL 2.0
|
||||
Summary: Command line utility to control osbuild-composer
|
||||
Url: %{gourl}
|
||||
Source0: https://github.com/osbuild/weldr-client/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||
%if %{with signed}
|
||||
Source1: https://github.com/osbuild/weldr-client/releases/download/v%{version}/%{name}-%{version}.tar.gz.asc
|
||||
Source2: https://keys.openpgp.org/vks/v1/by-fingerprint/117E8C168EFE3A7F#/gpg-117E8C168EFE3A7F.key
|
||||
%endif
|
||||
|
||||
Obsoletes: composer-cli < 35.0
|
||||
Provides: composer-cli = %{version}-%{release}
|
||||
@ -37,7 +41,9 @@ BuildRequires: gnupg2
|
||||
Command line utility to control osbuild-composer
|
||||
|
||||
%prep
|
||||
%if %{with signed}
|
||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||
%endif
|
||||
%if 0%{?rhel}
|
||||
%forgeautosetup -p1
|
||||
%else
|
||||
@ -121,27 +127,22 @@ composer-cli package.
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 35.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Apr 22 2021 Brian C. Lane <bcl@redhat.com> - 35.1-2
|
||||
- Obsolete composer-cli < 35.0 instead of 34.0
|
||||
Patch until next upstream release
|
||||
|
||||
* Mon Apr 12 2021 Brian C. Lane <bcl@redhat.com> - 35.1-1
|
||||
- New release: 35.1 (bcl)
|
||||
- spec: Change release back to 1 (bcl)
|
||||
- spec: Move testify BuildRequires into fedora block (bcl)
|
||||
- vendor: Add vendored dependencies for RHEL (bcl)
|
||||
- tools: Add prepare-source.sh vendoring helper script (bcl)
|
||||
- Makefile: skip vendor directory for check target (bcl)
|
||||
- spec: Bump release to 2 (bcl)
|
||||
- spec: Fix BuildRequires for tests (bcl)
|
||||
- Makefile: Remove executable from bash completion (bcl)
|
||||
- Makefile: Only use GOBUILDFLAGS (bcl)
|
||||
- spec: Bump release to 2 (bcl)
|
||||
- spec: Add doc files (bcl)
|
||||
- spec: Add gpg signature verification (bcl)
|
||||
- spec: Use git-core instead of git (bcl)
|
||||
- spec: Set License to Apache 2.0 (bcl)
|
||||
- spec: Update Source urls with new project location (bcl)
|
||||
* Mon Aug 23 2021 Brian C. Lane <bcl@redhat.com> - 35.2-1
|
||||
- New release: 35.2 (bcl)
|
||||
- weldr: Use assert.Contains instead of IsStringInSlice (bcl)
|
||||
- Add missing projects depsolve command (bcl)
|
||||
- Add support for projects info --distro=DISTRO-NAME (bcl)
|
||||
- Add support for projects list --distro=DISTRO-NAME (bcl)
|
||||
- Add support for modules info --distro=DISTRO-NAME (bcl)
|
||||
- weldr: Add distros to testState (bcl)
|
||||
- Add support for modules list --distro=DISTRO-NAME (bcl)
|
||||
- weldr: Add AppendQuery helper function (bcl)
|
||||
- Add support for compose types --distro=DISTRO-NAME (bcl)
|
||||
- composer-cli: Add distros list command (bcl)
|
||||
- weldr: Add ListDistros function and tests (bcl)
|
||||
- Makefile: Add scratch-srpm and scratch-rpm targets (bcl)
|
||||
- Print filename for compose results (bcl)
|
||||
- ExcuteTests - return the correct error variables in case of errors (atodorov)
|
||||
- The rpm package should obsolete composer-cli from lorax (bcl)
|
||||
- tests: Enable CodeCov.io (atodorov)
|
||||
- actions: Install lint using GOPATH (bcl)
|
||||
Loading…
Reference in New Issue
Block a user