Re: Haddock problems with Haskell-Platform2012.2.0.0

2012-06-10 Thread Katsutoshi Itoh
Thanks for your reply, Chris.

Do you know what the cause?
ghc? haskell-platform? debian? or my environment?


2012/6/8 Chris Dornan ch...@chrisdornan.com:
 ghc-pkg is warning about dangling references to missing documentation. Some
 of the packages on my (JustHub) distro do this: the Haskell Platform  dummy
 package (as you report), and GLUT rather than zlib .  AFAIK it is generally
 harmless (apart from the confusion).

 I would like to get rid of them soon on my distro (and no doubt the Debian
 people would like their packages to be warning free too).

 Chris

 -Original Message-
 From: glasgow-haskell-users-boun...@haskell.org
 [mailto:glasgow-haskell-users-boun...@haskell.org] On Behalf Of Katsutoshi
 Itoh
 Sent: 07 June 2012 23:26
 To: glasgow-haskell-users@haskell.org
 Subject: Haddock problems with Haskell-Platform2012.2.0.0

 Hi all.

 I installed ghc-7.4.1 and haskell-platform-2.12.2.0.0 on debian linux.
 I'm getting lots of complaints from 'ghc-pkg check', of the following
 form:

 
 Warning: haddock-interfaces: /usr/pkg/share/doc/haskell-
 platform-2012.2.0.0/html/haskell-platform.haddock doesn't exist or isn't a
 file
 Warning: haddock-html: /usr/pkg/share/doc/haskell-platform-2012.2.0.0/
 html doesn't exist or isn't a directory
 Warning: haddock-interfaces: /usr/pkg/share/doc/zlib-0.5.3.3/html/
 zlib.haddock doesn't exist or isn't a file
 Warning: haddock-html: /usr/pkg/share/doc/zlib-0.5.3.3/html doesn't exist or
 isn't a directory ...
 

 Any advice?

 --
 
 いとう かつとし
 cutsea...@gmail.com

 ___
 Glasgow-haskell-users mailing list
 Glasgow-haskell-users@haskell.org
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users




-- 

いとう かつとし
cutsea...@gmail.com

___
Glasgow-haskell-users mailing list
Glasgow-haskell-users@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: Haddock problems with Haskell-Platform2012.2.0.0

2012-06-10 Thread Joachim Breitner
Hi,

Am Freitag, den 08.06.2012, 08:55 +0100 schrieb Chris Dornan:
 I would like to get rid of them soon on my distro (and no doubt the Debian
 people would like their packages to be warning free too).

actually in Debian it is quite common to install the -dev package, but
not the -doc packages. Hence we have completely disabled the warning in
Debian:
http://patch-tracker.debian.org/patch/series/view/ghc/7.4.1-3/no-missing-haddock-file-warning

Greetings,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: This is a digitally signed message part
___
Glasgow-haskell-users mailing list
Glasgow-haskell-users@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


ANNOUNCE: GHC version 7.4.2

2012-06-10 Thread Paolo Capriotti
   =
The (Interactive) Glasgow Haskell Compiler -- version 7.4.2
   =

The GHC Team is pleased to announce a new patchlevel release of GHC.
This release contains a number of bugfixes relative to 7.4.1, so we
recommend upgrading.

The release notes are here:

  http://www.haskell.org/ghc/docs/7.4.2/html/users_guide/release-7-4-2.html

How to get it
~

The easy way is to go to the web page, which should be self-explanatory:

http://www.haskell.org/ghc/

We supply binary builds in the native package format for many
platforms, and the source distribution is available from the same
place.

Packages will appear as they are built - if the package for your
system isn't available yet, please try again later.


Background
~~

Haskell is a standard lazy functional programming language.

GHC is a state-of-the-art programming suite for Haskell.  Included is
an optimising compiler generating good code for a variety of
platforms, together with an interactive system for convenient, quick
development.  The distribution includes space and time profiling
facilities, a large collection of libraries, and support for various
language extensions, including concurrency, exceptions, and foreign
language interfaces (C, whatever).  GHC is distributed under a
BSD-style open source license.

A wide variety of Haskell related resources (tutorials, libraries,
specifications, documentation, compilers, interpreters, references,
contact information, links to research groups) are available from the
Haskell home page (see below).


On-line GHC-related resources
~~

Relevant URLs on the World-Wide Web:

GHC home page  http://www.haskell.org/ghc/
GHC developers' home page  http://hackage.haskell.org/trac/ghc/
Haskell home page  http://www.haskell.org/


Supported Platforms
~~~

The list of platforms we support, and the people responsible for them,
is here:

   http://hackage.haskell.org/trac/ghc/wiki/Contributors

Ports to other platforms are possible with varying degrees of
difficulty.  The Building Guide describes how to go about porting to a
new platform:

http://hackage.haskell.org/trac/ghc/wiki/Building


Developers
~~

We welcome new contributors.  Instructions on accessing our source
code repository, and getting started with hacking on GHC, are
available from the GHC's developer's site run by Trac:

  http://hackage.haskell.org/trac/ghc/


Mailing lists
~

We run mailing lists for GHC users and bug reports; to subscribe, use
the web interfaces at

http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

There are several other haskell and ghc-related mailing lists on
www.haskell.org; for the full list, see

http://www.haskell.org/mailman/listinfo/

Some GHC developers hang out on #haskell on IRC, too:

http://www.haskell.org/haskellwiki/IRC_channel

Please report bugs using our bug tracking system.  Instructions on
reporting bugs can be found here:

http://www.haskell.org/ghc/reportabug

___
Glasgow-haskell-users mailing list
Glasgow-haskell-users@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: [Haskell] ANNOUNCE: GHC version 7.4.2

2012-06-10 Thread Brent Yorgey
Thanks for the release!  One quick question -- the release notes say

  A bug in dependency analysis of type declarations in the presence
  of type families (#5826) has been fixed.

However, #5826 seems to be about something entirely different
(something about the user guide).  Does anyone know the actual ticket
being referred to?  I'd like to read it in more detail but haven't
been able to find it.

thanks,
-Brent

On Sun, Jun 10, 2012 at 08:20:18PM +0100, Paolo Capriotti wrote:
=
 The (Interactive) Glasgow Haskell Compiler -- version 7.4.2
=
 
 The GHC Team is pleased to announce a new patchlevel release of GHC.
 This release contains a number of bugfixes relative to 7.4.1, so we
 recommend upgrading.
 
 The release notes are here:
 
   http://www.haskell.org/ghc/docs/7.4.2/html/users_guide/release-7-4-2.html
 
 How to get it
 ~
 
 The easy way is to go to the web page, which should be self-explanatory:
 
 http://www.haskell.org/ghc/
 
 We supply binary builds in the native package format for many
 platforms, and the source distribution is available from the same
 place.
 
 Packages will appear as they are built - if the package for your
 system isn't available yet, please try again later.
 
 
 Background
 ~~
 
 Haskell is a standard lazy functional programming language.
 
 GHC is a state-of-the-art programming suite for Haskell.  Included is
 an optimising compiler generating good code for a variety of
 platforms, together with an interactive system for convenient, quick
 development.  The distribution includes space and time profiling
 facilities, a large collection of libraries, and support for various
 language extensions, including concurrency, exceptions, and foreign
 language interfaces (C, whatever).  GHC is distributed under a
 BSD-style open source license.
 
 A wide variety of Haskell related resources (tutorials, libraries,
 specifications, documentation, compilers, interpreters, references,
 contact information, links to research groups) are available from the
 Haskell home page (see below).
 
 
 On-line GHC-related resources
 ~~
 
 Relevant URLs on the World-Wide Web:
 
 GHC home page  http://www.haskell.org/ghc/
 GHC developers' home page  http://hackage.haskell.org/trac/ghc/
 Haskell home page  http://www.haskell.org/
 
 
 Supported Platforms
 ~~~
 
 The list of platforms we support, and the people responsible for them,
 is here:
 
http://hackage.haskell.org/trac/ghc/wiki/Contributors
 
 Ports to other platforms are possible with varying degrees of
 difficulty.  The Building Guide describes how to go about porting to a
 new platform:
 
 http://hackage.haskell.org/trac/ghc/wiki/Building
 
 
 Developers
 ~~
 
 We welcome new contributors.  Instructions on accessing our source
 code repository, and getting started with hacking on GHC, are
 available from the GHC's developer's site run by Trac:
 
   http://hackage.haskell.org/trac/ghc/
 
 
 Mailing lists
 ~
 
 We run mailing lists for GHC users and bug reports; to subscribe, use
 the web interfaces at
 
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs
 
 There are several other haskell and ghc-related mailing lists on
 www.haskell.org; for the full list, see
 
 http://www.haskell.org/mailman/listinfo/
 
 Some GHC developers hang out on #haskell on IRC, too:
 
 http://www.haskell.org/haskellwiki/IRC_channel
 
 Please report bugs using our bug tracking system.  Instructions on
 reporting bugs can be found here:
 
 http://www.haskell.org/ghc/reportabug
 
 ___
 Haskell mailing list
 hask...@haskell.org
 http://www.haskell.org/mailman/listinfo/haskell

___
Glasgow-haskell-users mailing list
Glasgow-haskell-users@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users