Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
HAWQ-1800. set version for 3.0.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
huor committed Aug 11, 2021
1 parent 8985fdd commit c5b7617
Show file tree
Hide file tree
Showing 16 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions contrib/hawq-ambari-plugin/build.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
hawq.release.version=4.0.0.0
hawq.release.version=3.0.0
hawq.common.services.version=2.0.0
pxf.release.version=3.2.1
pxf.common.services.version=3.0.0
hawq.repo.prefix=hawq
hawq.addons.repo.prefix=hawq-add-ons
repository.version=4.0.0.0
repository.version=3.0.0.0
default.stack=HDP-2.5
6 changes: 3 additions & 3 deletions contrib/hawq-ambari-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.hawq</groupId>
<artifactId>oushu-database-ambari-plugin</artifactId>
<version>4.0.0.0</version>
<name>oushu-database-ambari-plugin</name>
<artifactId>hawq-ambari-plugin</artifactId>
<version>3.0.0.0</version>
<name>hawq-ambari-plugin</name>
<url>http://maven.apache.org</url>

<properties>
Expand Down
6 changes: 3 additions & 3 deletions contrib/hawq-package/README
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Build HAWQ rpm package tarball steps:

1. Prepare a HAWQ source code tarball for rpm building.
a) Make sure the source code tarball name format is:
apache-hawq-src-%{hawq_version}-incubating.tar.gz
apache-hawq-src-%{hawq_version}.tar.gz
b) Make sure the extracted directory name format is:
apache-hawq-src-%{hawq_version}-incubating
apache-hawq-src-%{hawq_version}
c) Put the HAWQ source tarball to %{top_dir}/contrib/hawq-package folder.
Or use "HAWQ_SOURCE_TARBALL_PATH" to specify the find path of HAWQ source tarball.

Expand All @@ -35,4 +35,4 @@ Build HAWQ rpm package tarball steps:
You can set environment variable "HAWQ_RELEASE_VERSION" to specify HAWQ version.

5. You can find HAWQ/PXF/Ranger-plugin rpms tarball as:
%{top_dir}/contrib/hawq-package/apache-hawq-rpm-%{hawq_version}-incubating.tar.gz
%{top_dir}/contrib/hawq-package/apache-hawq-rpm-%{hawq_version}.tar.gz
2 changes: 1 addition & 1 deletion contrib/hawq-package/build_hawq_rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ mkdir -p rpmbuild/BUILD rpmbuild/RPMS rpmbuild/SOURCES rpmbuild/SPECS rpmbuild/S
# Copy HAWQ RPM configuration file for the build
cp hawq.spec rpmbuild/SPECS/

HAWQ_SOURCE_TARBALL_FILE=apache-hawq-src-${HAWQ_RELEASE_VERSION}-incubating.tar.gz
HAWQ_SOURCE_TARBALL_FILE=apache-hawq-src-${HAWQ_RELEASE_VERSION}.tar.gz

# Get PATH where to find HAWQ source code tarball
if [ -z ${HAWQ_SOURCE_TARBALL_PATH} ]; then
Expand Down
8 changes: 4 additions & 4 deletions contrib/hawq-package/hawq.spec
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
%define installdir /usr/local/%{name}

Name: apache-hawq
Summary: Hadoop Native SQL powered by Apache HAWQ (incubating)
Summary: Hadoop Native SQL powered by Apache HAWQ
Version: %{hawq_version}
Release: %{rpm_os_version}
License: ASL 2.0
Group: Applications/Databases
URL: http://hawq.apache.org
Prefix: /usr/local
BuildArch: %{arch}
SOURCE0 : apache-hawq-src-%{hawq_version}-incubating.tar.gz
SOURCE0 : apache-hawq-src-%{hawq_version}.tar.gz
Requires: libgsasl, krb5-libs, libicu, protobuf >= 2.5.0, json-c >= 0.9, net-snmp-libs, thrift >= 0.9.1, boost >= 1.53.0
%if %{rpm_os_version} == el6
Requires: openssl
Expand All @@ -45,7 +45,7 @@ Requires(pre): shadow-utils
AutoReqProv: no

%description
Apache HAWQ (incubating) combines exceptional MPP-based analytics
Apache HAWQ combines exceptional MPP-based analytics
performance, robust ANSI SQL compliance, Hadoop ecosystem
integration and manageability, and flexible data-store format
support, all natively in Hadoop, no connectors required.
Expand All @@ -56,7 +56,7 @@ source Greenplum® Database and PostgreSQL, HAWQ enables you to
swiftly and interactively query Hadoop data, natively via HDFS.

%prep
%setup -n %{name}-src-%{version}-incubating
%setup -n %{name}-src-%{version}

%build
export CFLAGS="-O3 -g"
Expand Down
6 changes: 3 additions & 3 deletions contrib/hawq-package/make_rpm_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ echo "Copied all the HAWQ/PXF/Range-plugin rpm packages."
ls ${RPM_PKG_DIR}/

# Make tarball for all the HAWQ/PXF/RANGER rpms
tar czvf apache-hawq-rpm-${HAWQ_RELEASE_VERSION}-incubating.tar.gz hawq_rpm_packages
tar czvf apache-hawq-rpm-${HAWQ_RELEASE_VERSION}.tar.gz hawq_rpm_packages
if [ $? != 0 ]; then
echo "Make HAWQ/PXF/Ranger-plugin rpm tarball failed."
exit $?
else
echo "Make HAWQ/PXF/Ranger-plugin rpm tarball successfully."
echo "You can find the rpm binary tarball at:"
echo "${CUR_DIR}/apache-hawq-rpm-${HAWQ_RELEASE_VERSION}-incubating.tar.gz"
ls -l apache-hawq-rpm-${HAWQ_RELEASE_VERSION}-incubating.tar.gz
echo "${CUR_DIR}/apache-hawq-rpm-${HAWQ_RELEASE_VERSION}.tar.gz"
ls -l apache-hawq-rpm-${HAWQ_RELEASE_VERSION}.tar.gz
fi

exit 0
4 changes: 2 additions & 2 deletions dist/hawq/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@

=======================================================================

Apache HAWQ (incubating) Subcomponents:
Apache HAWQ Subcomponents:

The Apache HAWQ (incubating) project contains subcomponents with
The Apache HAWQ project contains subcomponents with
separate copyright notices and license terms. Your use of the source
code for these subcomponents is subject to the terms and conditions
of the following licenses.
Expand Down
2 changes: 1 addition & 1 deletion dist/hawq/NOTICE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache HAWQ (incubating)
Apache HAWQ
Copyright 2017 The Apache Software Foundation.

This product includes software developed at
Expand Down
2 changes: 1 addition & 1 deletion getversion
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# under the License.
#

GP_VERSION="4.0.0.0"
GP_VERSION="3.0.0.0"

# GP_BUILDNUMBER=dev
if [ -f BUILD_NUMBER ] ; then
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>org.apache.hawq</groupId>
<artifactId>hawq</artifactId>
<version>2.3</version>
<version>3.0</version>
<packaging>pom</packaging>

<build>
Expand Down
2 changes: 1 addition & 1 deletion ranger-plugin/admin-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.hawq</groupId>
<artifactId>ranger-plugin</artifactId>
<version>4.0.0.0</version>
<version>3.0.0.0</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ranger-plugin/integration/admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.hawq</groupId>
<artifactId>ranger-plugin-integration</artifactId>
<version>4.0.0.0</version>
<version>3.0.0.0</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ranger-plugin/integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.hawq</groupId>
<artifactId>ranger-plugin</artifactId>
<version>4.0.0.0</version>
<version>3.0.0.0</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ranger-plugin/integration/service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.hawq</groupId>
<artifactId>ranger-plugin-integration</artifactId>
<version>4.0.0.0</version>
<version>3.0.0.0</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ranger-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.hawq</groupId>
<artifactId>ranger-plugin</artifactId>
<version>4.0.0.0</version>
<version>3.0.0.0</version>
<packaging>pom</packaging>
<name>HAWQ Ranger Plugin</name>
<description>HAWQ Ranger Plugin</description>
Expand Down
2 changes: 1 addition & 1 deletion ranger-plugin/service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.hawq</groupId>
<artifactId>ranger-plugin</artifactId>
<version>4.0.0.0</version>
<version>3.0.0.0</version>
<relativePath>..</relativePath>
</parent>
<build>
Expand Down

0 comments on commit c5b7617

Please sign in to comment.