[Haskell-cafe] Request for comments: dbus-core 0.9

2011-07-15 Thread John Millikin
I think I'm pretty close to releasing the next version of my D-Bus library, dbus-core. This is a big release that changes a lot of the API, so I'd like to see if anybody 1) has any problems with the new APIs or 2) has any suggested improvements. haddock:

Re: [Haskell-cafe] HaskellDB DB Layout Description

2011-07-15 Thread Mats Rauhala
On 18:12 Sat 09 Jul , Tom Murphy wrote: Hi, I've found good explanations of the HaskellDB combinators, but I can't find good information about how to correctly define the database layout. Can anyone point me to a resource, or give a quick example? Thanks! Tom Hello, I wrote a

[Haskell-cafe] GHC API output files options problem

2011-07-15 Thread Marianna Rapoport
Hi all, we are working on a Haskell support plugin for IntelliJ IDEA, and need to provide correct compilation of Haskell programs. We compile the latter using GHC API, with options specifying .hi and .o paths. For some reason, unlike a standalone GHC compilation, GHC API ignores the values of

[Haskell-cafe] ANNOUNCE: docidx-1.0.0

2011-07-15 Thread Andy Gimblett
Hi all. I'd like to announce docidx, a new tool for Haskell documentation: http://hackage.haskell.org/package/docidx http://github.com/gimbo/docidx.hs docidx is a program which creates a static HTML page indexing your installed packages, with links to your local haddock docs and to

[Haskell-cafe] How to determine minimal dependency of package

2011-07-15 Thread yi huang
I'm writing my first haskell package, how do i determine the minimal dependency of it, for example, it use Data.Data, how do i know which version of base package first introduce Data.Data module, i can't find the answer with google. -- http://www.yi-programmer.com/blog/

Re: [Haskell-cafe] How to determine minimal dependency of package

2011-07-15 Thread Anthony Cowley
On Fri, Jul 15, 2011 at 10:48 AM, yi huang yi.codepla...@gmail.com wrote: I'm writing my first haskell package, how do i determine the minimal dependency of it, for example, it use Data.Data, how do i know which version of base package  first introduce Data.Data module, i can't find the answer

Re: [Haskell-cafe] How to determine minimal dependency of package

2011-07-15 Thread Daniel Patterson
Based on the package versioning policy [1], A.B is a major version, so if you know that it works with 1.2, then it is reasonably safe to specify the range = 1.2 1.3, as no major api breaking changes should occur within the 1.2 range (ie, 1.2.1 to 1.2.2, etc) 1.

[Haskell-cafe] Domain-Specific Languages: Call for Participation

2011-07-15 Thread Chung-chieh Shan
DSL 2011: IFIP Working Conference on Domain-Specific Languages 6-8 September 2011, Bordeaux, France Call for Participation: Online registration deadline July 30, 2011 Details of the program and accommodation are available at http://dsl2011.bordeaux.inria.fr. == Invited Speakers ==

Re: [Haskell-cafe] ANNOUNCE: docidx-1.0.0

2011-07-15 Thread Jack Henahan
I've been using docidx for a while now. It's a great little tool. I highly recommend to anyone looking for a centralized documentation tool. Jack On Jul 15, 2011, at 8:38 AM, Andy Gimblett wrote: Hi all. I'd like to announce docidx, a new tool for Haskell documentation:

Re: [Haskell-cafe] Animas/Yampa: ArrowChoice?

2011-07-15 Thread Edward Amsden
On Fri, Jul 15, 2011 at 12:56 AM, Jason Dagit dag...@gmail.com wrote: On Thu, Jul 14, 2011 at 5:04 PM, Ertugrul Soeylemez e...@ertes.de wrote: Hello all, I really like the way Animas (fork of Yampa) represents reactive systems, and I would love to write some of my simulations using it. Hi.

Re: [Haskell-cafe] How to determine minimal dependency of package

2011-07-15 Thread Ivan Lazar Miljenovic
On 16 July 2011 01:04, Daniel Patterson lists.hask...@dbp.mm.st wrote: Based on the package versioning policy [1], A.B is a major version, so if you know that it works with 1.2, then it is reasonably safe to specify the range = 1.2 1.3, as no major api breaking changes should occur within the