This is an automated email from the ASF dual-hosted git repository.
iwasakims pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git
The following commit(s) were added to refs/heads/master by this push:
new eece2072 BIGTOP-3829 The Phoenix component should have python3 as its
dependency (#1045)
eece2072 is described below
commit eece20729bf3a8de25feb392ab2fea1c3b7eae47
Author: Shuhei Yamasaki <[email protected]>
AuthorDate: Sun Oct 30 11:14:06 2022 +0900
BIGTOP-3829 The Phoenix component should have python3 as its dependency
(#1045)
---
bigtop-packages/src/rpm/phoenix/SPECS/phoenix.spec | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/bigtop-packages/src/rpm/phoenix/SPECS/phoenix.spec
b/bigtop-packages/src/rpm/phoenix/SPECS/phoenix.spec
index 36dcc0a4..54bb56bf 100644
--- a/bigtop-packages/src/rpm/phoenix/SPECS/phoenix.spec
+++ b/bigtop-packages/src/rpm/phoenix/SPECS/phoenix.spec
@@ -92,6 +92,12 @@ Requires: bsh-utils
Requires: coreutils
%endif
+%if 0%{?rhel} >= 8
+Requires: python3
+%else
+Requires: python
+%endif
+
%description
Phoenix is a SQL skin over HBase, delivered as a client-embedded JDBC driver.
The Phoenix query engine transforms an SQL query into one or more HBase scans,