From patchwork Thu Dec 2 23:23:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 74043 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 7552DB6EE9 for ; Fri, 3 Dec 2010 10:23:17 +1100 (EST) Received: (qmail 6306 invoked by alias); 2 Dec 2010 23:23:15 -0000 Received: (qmail 6295 invoked by uid 22791); 2 Dec 2010 23:23:14 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, TW_CC, T_RP_MATCHES_RCVD, T_TVD_MIME_NO_HEADERS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 02 Dec 2010 23:23:08 +0000 Received: from wpaz1.hot.corp.google.com (wpaz1.hot.corp.google.com [172.24.198.65]) by smtp-out.google.com with ESMTP id oB2NN6Lg018484 for ; Thu, 2 Dec 2010 15:23:06 -0800 Received: from pxi19 (pxi19.prod.google.com [10.243.27.19]) by wpaz1.hot.corp.google.com with ESMTP id oB2NN1P3021256 for ; Thu, 2 Dec 2010 15:23:05 -0800 Received: by pxi19 with SMTP id 19so1670945pxi.29 for ; Thu, 02 Dec 2010 15:23:05 -0800 (PST) Received: by 10.142.165.8 with SMTP id n8mr1149128wfe.319.1291332185263; Thu, 02 Dec 2010 15:23:05 -0800 (PST) Received: from coign.google.com ([216.239.45.130]) by mx.google.com with ESMTPS id e14sm1373919wfg.20.2010.12.02.15.23.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 02 Dec 2010 15:23:04 -0800 (PST) From: Ian Lance Taylor To: gcc-patches@gcc.gnu.org Subject: [gccgo] Add notes about contributing patches Date: Thu, 02 Dec 2010 15:23:02 -0800 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org This patch extends the README files which will be in the gcc repository to discuss contributing patches to the Go frontend and libgo. Committed to gccgo branch. Ian diff -r 7f5419c6775b go/README --- a/go/README Wed Dec 01 13:57:04 2010 -0800 +++ b/go/README Thu Dec 02 15:20:22 2010 -0800 @@ -31,3 +31,27 @@ rethinking. The frontend pays little attention to its memory usage and rarely frees any memory. The code could use a general cleanup which we have not had time to do. + +Contributing +============= + +To contribute patches to the files in this directory, please see +http://golang.org/doc/gccgo_contribute.html . + +Changes to these files require a copyright assignment to Google. This +is required to permit the changes to be copied to the gcc repository, +as Google has a copyright assignment with the Free Software +Foundation. + +If you are the copyright holder, you will need to agree to the +individual contributor license agreement at +http://code.google.com/legal/individual-cla-v1.0.html. This agreement +can be completed online. + +If your organization is the copyright holder, the organization will +need to agree to the corporate contributor license agreement at +http://code.google.com/legal/corporate-cla-v1.0.html. + +If the copyright holder for your code has already completed the +agreement in connection with another Google open source project, it +does not need to be completed again. diff -r 7f5419c6775b libgo/README --- a/libgo/README Wed Dec 01 13:57:04 2010 -0800 +++ b/libgo/README Thu Dec 02 15:20:22 2010 -0800 @@ -21,3 +21,27 @@ syscalls System call support. + +Contributing +============ + +To contribute patches to the files in this directory, please see +http://golang.org/doc/gccgo_contribute.html . + +Changes to these files require a copyright assignment to Google. This +is required to permit the changes to be copied to the gcc repository, +as Google has a copyright assignment with the Free Software +Foundation. + +If you are the copyright holder, you will need to agree to the +individual contributor license agreement at +http://code.google.com/legal/individual-cla-v1.0.html. This agreement +can be completed online. + +If your organization is the copyright holder, the organization will +need to agree to the corporate contributor license agreement at +http://code.google.com/legal/corporate-cla-v1.0.html. + +If the copyright holder for your code has already completed the +agreement in connection with another Google open source project, it +does not need to be completed again.