Send Beginners mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://www.haskell.org/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."


Today's Topics:

   1. Re:  Cabal build dependency using a git repo (Peter Jones)
   2. Re:  Cabal build dependency using a git repo (Michael Baker)
   3.  aquamacs - history interpreter (Miro Karpis)
   4. Re:  aquamacs - history interpreter (Mateusz Kowalczyk)
   5. Re:  aquamacs - history interpreter (Miro Karpis)
   6. Re:  aquamacs - history interpreter (mukesh tiwari)
   7. Re:  aquamacs - history interpreter (Miro Karpis)


----------------------------------------------------------------------

Message: 1
Date: Tue, 10 Dec 2013 08:44:19 -0700
From: Peter Jones <[email protected]>
To: [email protected]
Subject: Re: [Haskell-beginners] Cabal build dependency using a git
        repo
Message-ID: <[email protected]>
Content-Type: text/plain

Michael Baker <[email protected]> writes:
> On Mon, Dec 9, 2013 at 3:45 PM, Peter Jones <[email protected]> wrote:
>>
>> Michael Baker <[email protected]> writes:
>> > I have a library which isn't on Hackage that I would like to use as a
> build
>> > dependency in another project. In Rubygems you can provide a git
> repository
>> > in the absence of an actual Rubygems repository.
>>
>> Use a git submodule (or place the source code to the package anywhere on
>> your file system) then use `cabal sandbox add-source <path>`.  Provided
>> of course that you're using cabal sandboxes.
>
> What is commonly done if you aren't using sandboxes? I would rather
> not use them in an effort to make installing this project easier on my
> users, because the current Haskell Platform doesn't have sandboxes
> yet.

I believe it's possible to run your own installation of the Hackage
server or at least host packages on a web server under a specific
directory structure.  You can then configure cabal to fetch packages
from your private Hackage mirror.  Then you just host your private
packages and any necessary public packages.  More details:

  http://comonad.com/reader/2012/hackage-mirror/

-- 
Peter Jones, Founder, Devalot.com
Defending the honor of good code



------------------------------

Message: 2
Date: Tue, 10 Dec 2013 09:55:35 -0600
From: Michael Baker <[email protected]>
To: Peter Jones <[email protected]>,  The Haskell-Beginners Mailing
        List - Discussion of primarily beginner-level topics related to
        Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Cabal build dependency using a git
        repo
Message-ID:
        <CACwW0UasboqCgoYh3JpM_-=mq6+fyqcg0mk3yw0hoh9gnhz...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Ok, I'll try that. Thanks.


On Tue, Dec 10, 2013 at 9:44 AM, Peter Jones <[email protected]> wrote:

> Michael Baker <[email protected]> writes:
> > On Mon, Dec 9, 2013 at 3:45 PM, Peter Jones <[email protected]> wrote:
> >>
> >> Michael Baker <[email protected]> writes:
> >> > I have a library which isn't on Hackage that I would like to use as a
> > build
> >> > dependency in another project. In Rubygems you can provide a git
> > repository
> >> > in the absence of an actual Rubygems repository.
> >>
> >> Use a git submodule (or place the source code to the package anywhere on
> >> your file system) then use `cabal sandbox add-source <path>`.  Provided
> >> of course that you're using cabal sandboxes.
> >
> > What is commonly done if you aren't using sandboxes? I would rather
> > not use them in an effort to make installing this project easier on my
> > users, because the current Haskell Platform doesn't have sandboxes
> > yet.
>
> I believe it's possible to run your own installation of the Hackage
> server or at least host packages on a web server under a specific
> directory structure.  You can then configure cabal to fetch packages
> from your private Hackage mirror.  Then you just host your private
> packages and any necessary public packages.  More details:
>
>   http://comonad.com/reader/2012/hackage-mirror/
>
> --
> Peter Jones, Founder, Devalot.com
> Defending the honor of good code
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131210/b6fdcf4b/attachment-0001.html>

------------------------------

Message: 3
Date: Wed, 11 Dec 2013 09:40:41 +0100
From: Miro Karpis <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: [Haskell-beginners] aquamacs - history interpreter
Message-ID:
        <CAJnnbxF=K4J9A9toVfSC-H64-W-eF43o6aK=8-sxzgypxze...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi, please,..... I have started to use aquamacs and their haskell
interpreter. Only problem is that I don't know how to access interpreter
commands history. Usually it would be key UP/DOWN, but that will move the
cursor UP/DOWN. So,... please how can I access interpreter/console user
commands history in aquamacs?

Cheers,
Miro
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131211/d37fad25/attachment-0001.html>

------------------------------

Message: 4
Date: Wed, 11 Dec 2013 08:46:01 +0000
From: Mateusz Kowalczyk <[email protected]>
To: [email protected]
Subject: Re: [Haskell-beginners] aquamacs - history interpreter
Message-ID: <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1

On 11/12/13 08:40, Miro Karpis wrote:
> Hi, please,..... I have started to use aquamacs and their haskell
> interpreter. Only problem is that I don't know how to access interpreter
> commands history. Usually it would be key UP/DOWN, but that will move the
> cursor UP/DOWN. So,... please how can I access interpreter/console user
> commands history in aquamacs?
> 
> Cheers,
> Miro
> 
> 
> 
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
> 
Try M-p. C-c C-l seems to bring up input history.

-- 
Mateusz K.


------------------------------

Message: 5
Date: Wed, 11 Dec 2013 10:00:11 +0100
From: Miro Karpis <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] aquamacs - history interpreter
Message-ID:
        <cajnnbxewkdi5bfyxbqvnqvosqhea+rgl1zkv58orr2-rd8h...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

thanks but am new new emacs/aquamacs. What you mean by M-p C-c C-l.
Btw: am on OSX

Cheers,
Miro


On Wed, Dec 11, 2013 at 9:46 AM, Mateusz Kowalczyk
<[email protected]>wrote:

> On 11/12/13 08:40, Miro Karpis wrote:
> > Hi, please,..... I have started to use aquamacs and their haskell
> > interpreter. Only problem is that I don't know how to access interpreter
> > commands history. Usually it would be key UP/DOWN, but that will move the
> > cursor UP/DOWN. So,... please how can I access interpreter/console user
> > commands history in aquamacs?
> >
> > Cheers,
> > Miro
> >
> >
> >
> > _______________________________________________
> > Beginners mailing list
> > [email protected]
> > http://www.haskell.org/mailman/listinfo/beginners
> >
> Try M-p. C-c C-l seems to bring up input history.
>
> --
> Mateusz K.
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131211/cf6768ef/attachment-0001.html>

------------------------------

Message: 6
Date: Wed, 11 Dec 2013 14:40:28 +0530
From: mukesh tiwari <[email protected]>
To: [email protected],  The Haskell-Beginners Mailing List -
        Discussion of primarily beginner-level topics related to Haskell
        <[email protected]>
Subject: Re: [Haskell-beginners] aquamacs - history interpreter
Message-ID:
        <CAFHZvE89LPiuTaCkOzMQ4Dyq2p-6vo_kzZf+=bwq66iic4t...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

On Wed, Dec 11, 2013 at 2:30 PM, Miro Karpis <[email protected]>wrote:

> thanks but am new new emacs/aquamacs. What you mean by M-p C-c C-l.
> Btw: am on OSX
>

 I think M should be the Escape ( M-p is Escape followed by p ), C is
control ( C-c is controlled followed by c ).


> Cheers,
> Miro
>
>
> On Wed, Dec 11, 2013 at 9:46 AM, Mateusz Kowalczyk <
> [email protected]> wrote:
>
>> On 11/12/13 08:40, Miro Karpis wrote:
>> > Hi, please,..... I have started to use aquamacs and their haskell
>> > interpreter. Only problem is that I don't know how to access interpreter
>> > commands history. Usually it would be key UP/DOWN, but that will move
>> the
>> > cursor UP/DOWN. So,... please how can I access interpreter/console user
>> > commands history in aquamacs?
>> >
>> > Cheers,
>> > Miro
>> >
>> >
>> >
>> > _______________________________________________
>> > Beginners mailing list
>> > [email protected]
>> > http://www.haskell.org/mailman/listinfo/beginners
>> >
>> Try M-p. C-c C-l seems to bring up input history.
>>
>> --
>> Mateusz K.
>> _______________________________________________
>> Beginners mailing list
>> [email protected]
>> http://www.haskell.org/mailman/listinfo/beginners
>>
>
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131211/e1f538a4/attachment-0001.html>

------------------------------

Message: 7
Date: Wed, 11 Dec 2013 10:22:10 +0100
From: Miro Karpis <[email protected]>
To: mukesh tiwari <[email protected]>
Cc: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] aquamacs - history interpreter
Message-ID:
        <cajnnbxh+dooq97n2lgvzzaqtzdjfjjxtjw653mghdqk29zy...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

many thanks: it actually is M-p (cursor up) and M-n (cursor down)

found it here:
http://www.stephenwalker.com/notes/aquamacsemacs-key-binding-list/

m.


On Wed, Dec 11, 2013 at 10:10 AM, mukesh tiwari <
[email protected]> wrote:

>
>
>
> On Wed, Dec 11, 2013 at 2:30 PM, Miro Karpis <[email protected]>wrote:
>
>> thanks but am new new emacs/aquamacs. What you mean by M-p C-c C-l.
>> Btw: am on OSX
>>
>
>  I think M should be the Escape ( M-p is Escape followed by p ), C is
> control ( C-c is controlled followed by c ).
>
>
>> Cheers,
>> Miro
>>
>>
>> On Wed, Dec 11, 2013 at 9:46 AM, Mateusz Kowalczyk <
>> [email protected]> wrote:
>>
>>> On 11/12/13 08:40, Miro Karpis wrote:
>>> > Hi, please,..... I have started to use aquamacs and their haskell
>>> > interpreter. Only problem is that I don't know how to access
>>> interpreter
>>> > commands history. Usually it would be key UP/DOWN, but that will move
>>> the
>>> > cursor UP/DOWN. So,... please how can I access interpreter/console user
>>> > commands history in aquamacs?
>>> >
>>> > Cheers,
>>> > Miro
>>> >
>>> >
>>> >
>>> > _______________________________________________
>>> > Beginners mailing list
>>> > [email protected]
>>> > http://www.haskell.org/mailman/listinfo/beginners
>>> >
>>> Try M-p. C-c C-l seems to bring up input history.
>>>
>>> --
>>> Mateusz K.
>>> _______________________________________________
>>> Beginners mailing list
>>> [email protected]
>>> http://www.haskell.org/mailman/listinfo/beginners
>>>
>>
>>
>> _______________________________________________
>> Beginners mailing list
>> [email protected]
>> http://www.haskell.org/mailman/listinfo/beginners
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131211/6a312f46/attachment.html>

------------------------------

Subject: Digest Footer

_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners


------------------------------

End of Beginners Digest, Vol 66, Issue 8
****************************************

Reply via email to