Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 310A6200B76 for ; Tue, 16 Aug 2016 02:05:10 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2FA51160AB8; Tue, 16 Aug 2016 00:05:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 74C55160AA7 for ; Tue, 16 Aug 2016 02:05:09 +0200 (CEST) Received: (qmail 91476 invoked by uid 500); 16 Aug 2016 00:05:08 -0000 Mailing-List: contact commits-help@hawq.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hawq.incubator.apache.org Delivered-To: mailing list commits@hawq.incubator.apache.org Received: (qmail 91467 invoked by uid 99); 16 Aug 2016 00:05:08 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Aug 2016 00:05:08 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 2A721CD644 for ; Tue, 16 Aug 2016 00:05:08 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.739 X-Spam-Level: X-Spam-Status: No, score=-3.739 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.519] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id bp1zV0uKSoi7 for ; Tue, 16 Aug 2016 00:05:04 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id B878B5FBD6 for ; Tue, 16 Aug 2016 00:05:03 +0000 (UTC) Received: (qmail 91430 invoked by uid 99); 16 Aug 2016 00:05:03 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Aug 2016 00:05:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E8ADCE0441; Tue, 16 Aug 2016 00:05:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: odiachenko@apache.org To: commits@hawq.incubator.apache.org Message-Id: <4dc2ea8e2eb44581a84853761fd77fbe@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-hawq git commit: HAWQ-1006. Fix RPM compliance in Redhat Satellite. [Forced Update!] Date: Tue, 16 Aug 2016 00:05:02 +0000 (UTC) archived-at: Tue, 16 Aug 2016 00:05:10 -0000 Repository: incubator-hawq Updated Branches: refs/heads/HAWQ-1006 9f496a7e4 -> f5ff0cc72 (forced update) HAWQ-1006. Fix RPM compliance in Redhat Satellite. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/f5ff0cc7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/f5ff0cc7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/f5ff0cc7 Branch: refs/heads/HAWQ-1006 Commit: f5ff0cc72ae3a6811d38af48084406b9e6aa3658 Parents: 189a2c3 Author: Oleksandr Diachenko Authored: Mon Aug 15 16:49:22 2016 -0700 Committer: Oleksandr Diachenko Committed: Mon Aug 15 17:02:27 2016 -0700 ---------------------------------------------------------------------- pxf/build.gradle | 4 ++++ pxf/gradle.properties | 1 + 2 files changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/f5ff0cc7/pxf/build.gradle ---------------------------------------------------------------------- diff --git a/pxf/build.gradle b/pxf/build.gradle index 23d688f..7855c29 100644 --- a/pxf/build.gradle +++ b/pxf/build.gradle @@ -472,6 +472,10 @@ task tomcatRpm(type: Rpm) { license = project.license user = 'root' permissionGroup = 'root' + packager = 'dev@hawq.incubator.apache.org' + packageDescription = 'Apache Tomcat is an open source software implementation of the Java Servlet and JavaServer Pages technologies.' + packageGroup = 'Development/Libraries' + release = project.osFamily preInstall file('tomcat/src/scripts/pre-install.sh') http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/f5ff0cc7/pxf/gradle.properties ---------------------------------------------------------------------- diff --git a/pxf/gradle.properties b/pxf/gradle.properties index 270a435..06d6c3a 100644 --- a/pxf/gradle.properties +++ b/pxf/gradle.properties @@ -24,3 +24,4 @@ hbaseVersionJar=1.1.2 hbaseVersionRPM=1.1.2 tomcatVersion=7.0.62 pxfProtocolVersion=v14 +osFamily=el6