From: Raghuram
Subject: Can we have a hierarchical packages
Date: 
Message-ID: <c08bb3ef.0310080141.664f45d@posting.google.com>
HI,
  Can we have a hierarchical packages in Common Lisp. 
  I have a package "pack1" and in pack1 i have package pack2. And few
symbols are exported from pack2.
      Now from package acl, can use symbols of pack2. I mean can i use
pack1.pack2.<symbol name> to use the symbols.

Thank you in advance.

-Raghuram

From: Erann Gat
Subject: Re: Can we have a hierarchical packages
Date: 
Message-ID: <my-first-name.my-last-name-0810030935160001@192.168.1.51>
In article <···························@posting.google.com>,
···············@yahoo.com (Raghuram) wrote:

> HI,
>   Can we have a hierarchical packages in Common Lisp. 
>   I have a package "pack1" and in pack1 i have package pack2. And few
> symbols are exported from pack2.
>       Now from package acl, can use symbols of pack2. I mean can i use
> pack1.pack2.<symbol name> to use the symbols.
> 
> Thank you in advance.
> 
> -Raghuram

You might be interested in my ILC talk.  It's about how you can implement
a hierarchical module (not package) system entirely within ANSI standard
CL.

E.
From: Pascal Bourguignon
Subject: Re: Can we have a hierarchical packages
Date: 
Message-ID: <87d6d760q4.fsf@thalassa.informatimago.com>
··························@jpl.nasa.gov (Erann Gat) writes:

> In article <···························@posting.google.com>,
> ···············@yahoo.com (Raghuram) wrote:
> 
> > HI,
> >   Can we have a hierarchical packages in Common Lisp. 
> >   I have a package "pack1" and in pack1 i have package pack2. And few
> > symbols are exported from pack2.
> >       Now from package acl, can use symbols of pack2. I mean can i use
> > pack1.pack2.<symbol name> to use the symbols.
> > 
> > Thank you in advance.
> > 
> > -Raghuram
> 
> You might be interested in my ILC talk.  It's about how you can implement
> a hierarchical module (not package) system entirely within ANSI standard
> CL.

Where can we find it?

-- 
__Pascal_Bourguignon__
http://www.informatimago.com/
Do not adjust your mind, there is a fault in reality.
From: Erann Gat
Subject: Re: Can we have a hierarchical packages
Date: 
Message-ID: <my-first-name.my-last-name-0810031135260001@k-137-79-50-101.jpl.nasa.gov>
In article <··············@thalassa.informatimago.com>, Pascal Bourguignon
<····@thalassa.informatimago.com> wrote:

> ··························@jpl.nasa.gov (Erann Gat) writes:
> 
> > In article <···························@posting.google.com>,
> > ···············@yahoo.com (Raghuram) wrote:
> > 
> > > HI,
> > >   Can we have a hierarchical packages in Common Lisp. 
> > >   I have a package "pack1" and in pack1 i have package pack2. And few
> > > symbols are exported from pack2.
> > >       Now from package acl, can use symbols of pack2. I mean can i use
> > > pack1.pack2.<symbol name> to use the symbols.
> > > 
> > > Thank you in advance.
> > > 
> > > -Raghuram
> > 
> > You might be interested in my ILC talk.  It's about how you can implement
> > a hierarchical module (not package) system entirely within ANSI standard
> > CL.
> 
> Where can we find it?

At ILC of course.

E.
From: David Golden
Subject: Re: Can we have a hierarchical packages
Date: 
Message-ID: <235b265c.0310171422.36189816@posting.google.com>
··························@jpl.nasa.gov (Erann Gat) wrote in message 
> > > You might be interested in my ILC talk.  It's about how you can implement
> > > a hierarchical module (not package) system entirely within ANSI standard
> > > CL.
> > 
> > Where can we find it?
> 
> At ILC of course.
> 

Was this found, in the end?
From: Marco Baringer
Subject: Re: Can we have a hierarchical packages
Date: 
Message-ID: <m2vfr082uz.fsf@bese.it>
···············@yahoo.com (Raghuram) writes:

>   Can we have a hierarchical packages in Common Lisp. 

google is your friend.

There is a specification here:

http://www.franz.com/support/documentation/6.1/doc/packages.htm 

And an implementation here:

http://www.tfeb.org/lisp/hax.html#HIERARCHICAL-PACKAGES 

-- 
-Marco
Ring the bells that still can ring.
Forget your perfect offering.
There is a crack in everything.
That's how the light gets in.
     -Leonard Cohen
From: Mario S. Mommer
Subject: Re: Can we have a hierarchical packages
Date: 
Message-ID: <fzbrsq7jes.fsf@cupid.igpm.rwth-aachen.de>
···············@yahoo.com (Raghuram) writes:
> HI,
>   Can we have a hierarchical packages in Common Lisp. 
>   I have a package "pack1" and in pack1 i have package pack2. And few
> symbols are exported from pack2.
>       Now from package acl, can use symbols of pack2. I mean can i use
> pack1.pack2.<symbol name> to use the symbols.
> 
> Thank you in advance.

Yes, there are hierarchical packages already available.

Look here

        http://lwn.net/2002/0404/a/lispnames.php3

for more information.
        
From: Raghuram
Subject: Re: Can we have a hierarchical packages
Date: 
Message-ID: <c08bb3ef.0310150453.38c9c4e9@posting.google.com>
Thank You all, now got the required information.

Mario S. Mommer <········@yahoo.com> wrote in message news:<··············@cupid.igpm.rwth-aachen.de>...
> ···············@yahoo.com (Raghuram) writes:
> > HI,
> >   Can we have a hierarchical packages in Common Lisp. 
> >   I have a package "pack1" and in pack1 i have package pack2. And few
> > symbols are exported from pack2.
> >       Now from package acl, can use symbols of pack2. I mean can i use
> > pack1.pack2.<symbol name> to use the symbols.
> > 
> > Thank you in advance.
> 
> Yes, there are hierarchical packages already available.
> 
> Look here
> 
>         http://lwn.net/2002/0404/a/lispnames.php3
> 
> for more information.