-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://issues.redhat.com/browse/RHCS-4506 #4626
https://issues.redhat.com/browse/RHCS-4506 #4626
Conversation
pki.spec
Outdated
Requires: %{product_id}-base = %{version}-%{release} | ||
Requires: jss >= 4.9.6, jss < 5.0 | ||
Requires: ldapjdk >= 4.23 | ||
Requires: %{product_id}-base >= %{version}-%{release} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For this one we probably should use =
since it comes from the same package, so we want to use the exact same version and release number:
Requires: %{product_id}-base >= %{version}-%{release}
pki.spec
Outdated
@@ -459,7 +459,7 @@ Provides: pki-tools = %{version}-%{release} | |||
|
|||
Requires: openldap-clients | |||
Requires: nss-tools >= 3.36.1 | |||
Requires: %{product_id}-base-java = %{version}-%{release} | |||
Requires: %{product_id}-base-java >= %{version}-%{release} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same thing here.
pki.spec
Outdated
Requires: %{product_id}-symkey >= %{version}-%{release} | ||
Requires: %{product_id}-tools >= %{version}-%{release} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same thing here.
pki.spec
Outdated
@@ -170,7 +170,7 @@ BuildRequires: zip | |||
BuildRequires: %{java_devel} | |||
BuildRequires: javapackages-tools | |||
BuildRequires: redhat-rpm-config | |||
BuildRequires: ldapjdk = 4.23 | |||
BuildRequires: ldapjdk >= 4.23 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can put the upper limit too if you want:
ldapjdk >= 4.23, ldapjdk < 5.0
pki.spec
Outdated
@@ -800,9 +800,9 @@ BuildArch: noarch | |||
Obsoletes: pki-console < %{version}-%{release} | |||
Provides: pki-console = %{version}-%{release} | |||
|
|||
BuildRequires: idm-console-framework = 1.3 | |||
BuildRequires: idm-console-framework >= 1.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same thing:
idm-console-framework >= 1.3, idm-console-framework < 2.0
fb9298d
to
5399676
Compare
This patch attempts to fix the dependency issues in the spec file. fixes https://issues.redhat.com/browse/RHCS-4506
5399676
to
be4f50a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks for the update!
This patch attempts to fix the dependency issues in the spec file.
fixes https://issues.redhat.com/browse/RHCS-4506