-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sandro Bonazzola <[email protected]>
- Loading branch information
1 parent
539922b
commit 4cf2091
Showing
2 changed files
with
15 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
Name: cockpit-ovirt | ||
Version: @PACKAGE_RPM_VERSION@ | ||
Release: @PACKAGE_RPM_RELEASE@%{?release_suffix}%{?checkout}%{?dist} | ||
Release: @PACKAGE_RPM_RELEASE@%{?dist} | ||
Summary: Dashboard for Cockpit based on %{product} | ||
License: ASL 2.0 | ||
URL: https://gerrit.ovirt.org/gitweb?p=cockpit-ovirt.git;a=summary | ||
|
@@ -26,7 +26,7 @@ ExclusiveArch: %{nodejs_arches} noarch | |
%endif | ||
|
||
# nodejs-modules embeds yarn and requires nodejs | ||
BuildRequires: ovirt-engine-nodejs-modules >= 2.0.45 | ||
BuildRequires: ovirt-engine-nodejs-modules >= 2.2.0 | ||
|
||
%if 0%{?enable_autotools} | ||
BuildRequires: autoconf | ||
|
@@ -40,8 +40,8 @@ BuildArch: noarch | |
|
||
Requires: cockpit | ||
Requires: cockpit-storaged | ||
Requires: ovirt-hosted-engine-setup >= 2.5.0 | ||
Requires: otopi >= 1.9.0 | ||
Requires: ovirt-hosted-engine-setup >= 2.6.1 | ||
Requires: otopi >= 1.10.0 | ||
|
||
Requires: ansible-core | ||
|
||
|
@@ -98,7 +98,12 @@ __EOF__ | |
%dir %attr(700, root, root) %{_sharedstatedir}/ovirt-hosted-engine-setup/cockpit | ||
|
||
%changelog | ||
* Mon Mar 21 2022 Sandro Bonazzola <[email protected]> - 0.16.0-1 | ||
- Updated nodejs build deps | ||
- Updated deps for oVirt 4.5.0 | ||
|
||
* Tue Aug 03 2021 Aviv Turgeman <[email protected]> - 0.15.1-1 | ||
- Bump to 0.15.1 | ||
|
||
* Tue May 04 2021 Sandro Bonazzola <[email protected]> - 0.15.0-1 | ||
- Javascript dependencies updates | ||
|
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,5 +1,5 @@ | ||
dnl | ||
dnl Copyright 2016-2019 Red Hat Inc. | ||
dnl Copyright 2016-2021 Red Hat Inc. | ||
dnl | ||
dnl Licensed under the Apache License, Version 2.0 (the "License"); | ||
dnl you may not use this file except in compliance with the License. | ||
|
@@ -17,15 +17,15 @@ dnl | |
AC_PREREQ(2.60) | ||
|
||
define([VERSION_MAJOR], [0]) | ||
define([VERSION_MINOR], [15]) | ||
define([VERSION_FIX], [2]) | ||
define([VERSION_MINOR], [16]) | ||
define([VERSION_FIX], [0]) | ||
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX) | ||
define([VERSION_RELEASE], [0.0]) | ||
define([VERSION_SUFFIX],[_master]) | ||
define([VERSION_RELEASE], [1]) | ||
define([VERSION_SUFFIX],[]) | ||
|
||
AC_INIT([cockpit-ovirt], VERSION_NUMBER[]VERSION_SUFFIX, [[email protected]]) | ||
PACKAGE_RPM_VERSION="VERSION_NUMBER" | ||
PACKAGE_RPM_RELEASE="VERSION_RELEASE.$(echo VERSION_SUFFIX | sed 's/^_//')" | ||
PACKAGE_RPM_RELEASE="VERSION_RELEASE" | ||
AC_SUBST([VERSION_NUMBER]) | ||
AC_SUBST([PACKAGE_RPM_VERSION]) | ||
AC_SUBST([PACKAGE_RPM_RELEASE]) | ||
|