Repository: arrow Updated Branches: refs/heads/master 32a4d70db -> 928b63f40
ARROW-938: Fix Rat license warnings The .sgml files are generated by the GTK-Doc in c_glib. Author: Wes McKinney <[email protected]> Closes #632 from wesm/ARROW-938 and squashes the following commits: 65ca79a [Wes McKinney] Fix Rat warnings Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/928b63f4 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/928b63f4 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/928b63f4 Branch: refs/heads/master Commit: 928b63f40d4d8234644acca36d41bed9390f5f3a Parents: 32a4d70 Author: Wes McKinney <[email protected]> Authored: Tue May 2 15:59:30 2017 -0400 Committer: Wes McKinney <[email protected]> Committed: Tue May 2 15:59:30 2017 -0400 ---------------------------------------------------------------------- dev/release/run-rat.sh | 1 + dev/release/setup-gpg-agent.sh | 23 ++++++++++++++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/928b63f4/dev/release/run-rat.sh ---------------------------------------------------------------------- diff --git a/dev/release/run-rat.sh b/dev/release/run-rat.sh index 9c34e07..3ff9ef0 100755 --- a/dev/release/run-rat.sh +++ b/dev/release/run-rat.sh @@ -56,6 +56,7 @@ $RAT $1 \ -e arrow-glib-overrides.txt \ -e gtk-doc.make \ -e "*.html" \ + -e "*.sgml" \ -e "*.css" \ -e "*.png" \ -e "*.svg" \ http://git-wip-us.apache.org/repos/asf/arrow/blob/928b63f4/dev/release/setup-gpg-agent.sh ---------------------------------------------------------------------- diff --git a/dev/release/setup-gpg-agent.sh b/dev/release/setup-gpg-agent.sh index acc0809..3e31d0e 100644 --- a/dev/release/setup-gpg-agent.sh +++ b/dev/release/setup-gpg-agent.sh @@ -1,3 +1,24 @@ +#!/bin/bash +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # source me eval $(gpg-agent --daemon --allow-preset-passphrase) -gpg --use-agent -s LICENSE.txt +gpg --use-agent -s LICENSE.txt +rm -rf LICENSE.txt.gpg
