From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [elpa] master 6a77459 1/2: New gud replacement package: realgud (a front end interface to Date: Sun, 15 Feb 2015 17:33:23 -0500 Message-ID: References: <20150215121943.15106.28763@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1424039645 22977 80.91.229.3 (15 Feb 2015 22:34:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 15 Feb 2015 22:34:05 +0000 (UTC) Cc: rocky To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Feb 15 23:33:56 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YN7lE-00069H-8g for ged-emacs-devel@m.gmane.org; Sun, 15 Feb 2015 23:33:56 +0100 Original-Received: from localhost ([::1]:36824 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YN7lD-00083T-B9 for ged-emacs-devel@m.gmane.org; Sun, 15 Feb 2015 17:33:55 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36921) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YN7kz-00083D-5p for emacs-devel@gnu.org; Sun, 15 Feb 2015 17:33:42 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YN7ky-0003Hl-4T for emacs-devel@gnu.org; Sun, 15 Feb 2015 17:33:41 -0500 Original-Received: from chene.dit.umontreal.ca ([132.204.246.20]:37464) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YN7ku-0003Fz-6U; Sun, 15 Feb 2015 17:33:36 -0500 Original-Received: from pastel.home (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id t1FMXXRr021534; Sun, 15 Feb 2015 17:33:33 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id 90B061637; Sun, 15 Feb 2015 17:33:23 -0500 (EST) In-Reply-To: (Rocky Bernstein's message of "Sun, 15 Feb 2015 12:19:43 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV5218=0 X-NAI-Spam-Version: 2.3.0.9393 : core <5218> : inlines <2184> : streams <1390866> : uri <1856130> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.20 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:183124 Archived-At: > Using .gitmodules in this way is a bit of an experiment. Currently these > four projects are separate github repositories. Don't use submodules: the scripts which build the GNU ELPA packages from the elpa.git repository don't know what to do with them. As explained in elpa/README, you can either add your packages as subdirectories in the main branch (typically using something like "git subtree" or "git merge -s subtree") or add them as *branches* (called externals/). They also need to be mentioned in the elpa/externals-list file (for externals/ it's indispensible, for subtrees it's just good practice). Stefan > --- > .gitmodules | 12 ++++++++++++ > packages/load-relative | 1 + > packages/loc-changes | 1 + > packages/realgud | 1 + > packages/test-simple | 1 + > 5 files changed, 16 insertions(+), 0 deletions(-) > diff --git a/.gitmodules b/.gitmodules > new file mode 100644 > index 0000000..6d90d7e > --- /dev/null > +++ b/.gitmodules > @@ -0,0 +1,12 @@ > +[submodule "packages/test-simple"] > + path = packages/test-simple > + url = https://github.com/rocky/emacs-test-simple.git > +[submodule "packages/load-relative"] > + path = packages/load-relative > + url = https://github.com/rocky/emacs-load-relative.git > +[submodule "packages/loc-changes"] > + path = packages/loc-changes > + url = https://github.com/rocky/emacs-loc-changes.git > +[submodule "packages/realgud"] > + path = packages/realgud > + url = https://github.com/rocky/emacs-dbgr.git > diff --git a/packages/load-relative b/packages/load-relative > new file mode 160000 > index 0000000..15ffaa9 > --- /dev/null > +++ b/packages/load-relative > @@ -0,0 +1 @@ > +Subproject commit 15ffaa9ebf1b7bbfcc307d1716eec135253b3b8d > diff --git a/packages/loc-changes b/packages/loc-changes > new file mode 160000 > index 0000000..8447baf > --- /dev/null > +++ b/packages/loc-changes > @@ -0,0 +1 @@ > +Subproject commit 8447baff7cb4839ef8d1d747a14e5da85d0cee5b > diff --git a/packages/realgud b/packages/realgud > new file mode 160000 > index 0000000..d811316 > --- /dev/null > +++ b/packages/realgud > @@ -0,0 +1 @@ > +Subproject commit d811316e6a0f4eeee8a1347f504c196c86baa2cb > diff --git a/packages/test-simple b/packages/test-simple > new file mode 160000 > index 0000000..75eea25 > --- /dev/null > +++ b/packages/test-simple > @@ -0,0 +1 @@ > +Subproject commit 75eea25bae04d8e5e3e835a2770f02f0ff4602c4