From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,c6567772e9f3871d X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,UTF8 Path: g2news1.google.com!news4.google.com!feeder1.cambriumusenet.nl!feed.tweaknews.nl!193.201.147.78.MISMATCH!feeder.news-service.com!aioe.org!.POSTED!not-for-mail From: =?utf-8?Q?Yannick_Duch=C3=AAne_=28Hibou57?= =?utf-8?Q?=29?= Newsgroups: comp.lang.ada Subject: Re: organizing deep source trees with child packages Date: Thu, 13 Oct 2011 03:27:47 +0200 Organization: Ada @ Home Message-ID: References: <21c9e6bb-f4f7-4a00-bde7-68f2c1a42d01@q13g2000vby.googlegroups.com> NNTP-Posting-Host: 6i38pu6ziujRbXQdDKlgmg.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes Content-Transfer-Encoding: Quoted-Printable X-Complaints-To: abuse@aioe.org User-Agent: Opera Mail/11.51 (Linux) X-Notice: Filtered by postfilter v. 0.8.2 Xref: g2news1.google.com comp.lang.ada:21402 Date: 2011-10-13T03:27:47+02:00 List-Id: Le Thu, 13 Oct 2011 01:38:27 +0200, Greg Moncreaff a= = =C3=A9crit: > e.g. I would like something like > > foo/bar/narf/narf-able.ads > foo/bar/narf/narf-able.adb > foo/bar/narf/narf-baker.ads > foo/bar/narf/narf-baker.adb > foo/bar/narf/narf-charlie.ads > foo/bar/narf/narf-charlie.adb Or even foo/bar/narf/able.ads foo/bar/narf/able.adb foo/bar/narf/baker.ads foo/bar/narf/baker.adb foo/bar/narf/charlie.ads foo/bar/narf/charlie.adb I opened a similar thread some months ago. This is all about GNAT = convention, not Ada. For OS with symbolic (not shortcuts, which are not = = the same), you may use two directory hierarchies, one using symbolic lin= ks = to the other (ex foo/bar/narf/able.ads would be a link to = foo-bar-narf-able.ads). Or alternatively, use a smart outliner or explor= er = in your text editor or IDE, which will interpret GNAT file name conventi= on = and turn these into a view with nested directories. I still not solved the case myself, I feel the way using symbolic links = = too much heavy, and the way relying on a smart outliner or browser in an= = editor, not so smart for others, as this depends on a specific tool. On = = the other hand, this is the best solution to me, as people feeling a nee= d = for it would enjoy it, while people not disturbed by overlong file names= = could go without it. Or else a specific GNAT branch patched for this single purpose ? -- = =E2=80=9CSyntactic sugar causes cancer of the semi-colons.=E2=80=9D [Ep= igrams on = Programming =E2=80=94 Alan J. =E2=80=94 P. Yale University] =E2=80=9CStructured Programming supports the law of the excluded muddle.= =E2=80=9D [Idem] Java: Write once, Never revisit