Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
7.0.3_1 14 Aug 2011 11:19:17 |
pgj |
A Haskell 98 logically uninhabited data type. Used to indicate that a
given term should not exist.
WWW: http://github.com/ekmett/void
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:16:31 |
pgj |
Haskell 98 semigroups.
WWW: http://github.com/ekmett/semigroups/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 01:27:45 |
pgj |
Cross-platform library for the sendfile() system call. This library tries
to call minimum system calls which are the bottleneck of web servers.
WWW: https://github.com/kazu-yamamoto/simple-sendfile/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 23:28:56 |
pgj |
Snap Framework project starter executable and glue code library.
WWW: http://snapframework.com/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 23:26:14 |
pgj |
Snap is a simple and fast web development framework and server written in
Haskell. For more information or to download the latest version, you can visit
the Snap project website.
The Snap HTTP server is a high performance, epoll-enabled, iteratee-based web
server library written in Haskell. Together with the "snap-core" library upon
which it depends, it provides a clean and efficient Haskell programming
interface to the HTTP protocol.
Higher-level facilities for building web applications (like user/session
management, component interfaces, data modeling, etc.) are planned but not
yet implemented, so this release will mostly be of interest for those who:
* need a fast and minimal HTTP API at roughly the same level of abstraction
as Java servlets, or
* are interested in contributing to the Snap Framework project.
WWW: http://snapframework.com/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 23:18:49 |
pgj |
FFI interface to libev.
WWW: http://github.com/aycanirican/hlibev
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 21:50:10 |
pgj |
Snap is a simple and fast web development framework and server written in
Haskell.
WWW: http://snapframework.com/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 21:07:40 |
pgj |
Implements MurmurHash2, a good, fast, general-purpose, non-cryptographic
hashing function. See <http://murmurhash.googlepages.com/> for details.
This implementation is pure Haskell, so it might be a bit slower than a C
FFI binding.
WWW: http://github.com/nominolo/murmur-hash
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 21:01:57 |
pgj |
An xhtml templating system.
WWW: http://snapframework.com/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 20:47:35 |
pgj |
A simple directory-like tree datatype, with useful IO functions and Foldable
and Traversable instance.
Provides a simple data structure mirroring a directory tree on the
filesystem, as well as useful functions for reading and writing
file and directory structures in the IO monad.
WWW: http://coder.bsimmons.name/blog/2009/05/directory-tree-module-released/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 20:44:40 |
pgj |
A binary serialization library, similar to binary, that introduces an
isolate primitive for parser isolation, and replaces the asynchronous
errors with a user-handleable Either type. Similar to binary in
performance, but uses a strict ByteString instead of a lazy
ByteString, thus restricting it to operating on finite inputs.
WWW: http://hackage.haskell.org/package/cereal
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 20:36:01 |
pgj |
This package defines a class, Hashable, for types that can be converted
to a hash value. This class exists for the benefit of hashing-based data
structures. The package provides instances for basic types and a way to
combine hash values.
WWW: http://github.com/tibbe/hashable
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 20:33:23 |
pgj |
Parse numeric literals from ByteStrings.
WWW: http://github.com/solidsnack/bytestring-nums
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 19:41:48 |
pgj |
A blazingly fast HTML combinator library for the Haskell programming language.
The Text.Blaze module is a good starting point, as well as this tutorial:
<http://jaspervdj.be/blaze/tutorial.html>.
WWW: http://jaspervdj.be/blaze
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 19:37:58 |
pgj |
A fast parser combinator library, aimed particularly at dealing efficiently
with network protocols and complicated text/binary file formats.
This library is basically a translation of the original attoparsec library
to use text instead of bytestrings.
WWW: http://patch-tag.com/r/felipe/attoparsec-text/home
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 19:35:15 |
pgj |
The attoparsec-enumerator package.
WWW: http://john-millikin.com/software/attoparsec-enumerator/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 18:42:01 |
pgj |
A fast parser combinator library, aimed particularly at dealing
efficiently with network protocols and complicated text/binary file
formats.
WWW: http://hackage.haskell.org/package/attoparsec
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 18:36:10 |
pgj |
A priority search queue efficiently supports the opperations of both a
search tree and a priority queue. A 'Binding' is a product of a key and
a priority. Bindings can be inserted, deleted, modified and queried in
logarithmic time, and the binding with the least priority can be
retrieved in constant time. A queue can be built from a list of
bindings, sorted by keys, in linear time.
WWW: http://hackage.haskell.org/package/PSQueue
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Aug 2011 18:08:39 |
pgj |
Provides functions to throw and catch exceptions. Unlike the functions from
Control.Exception, which work in IO, these work in any stack of monad
transformers (from the 'transformers' package) with IO as the base monad.
You can extend this functionality to other monads, by creating an instance
of the MonadCatchIO class.
WWW: http://hackage.haskell.org/package/MonadCatchIO-transformers
Obtained from: FreeBSD Haskell |
7.0.3_1 01 Aug 2011 13:43:49 |
pgj |
This is the Haskell S3 library. It provides an interface to Amazon's Simple
Storage Service (S3), allowing Haskell developers to reliably store and
retrieve arbitrary amounts of data from anywhere on the Internet.
WWW: http://gregheartsfield.com/hS3/
Obtained from: FreeBSD Haskell |
7.0.3_1 01 Aug 2011 13:38:44 |
pgj |
DES, Blowfish, AES, TEA, SHA1, MD5, RSA, BubbleBabble, Hexdump, Support for
Word128, Word192 and Word256 and Beyond, PKCS5 Padding, Various Encryption
Modes e.g. Cipher Block Chaining all in one package, with HUnit and
QuickCheck tests, and examples.
WWW: http://hackage.haskell.org/package/Crypto
Obtained from: FreeBSD Haskell |
7.0.3_1 10 Jul 2011 21:33:00 |
ashish |
Generic HTTP types for Haskell (for both client and server code).
WWW: https://github.com/aristidb/http-types
Obtained from: FreeBSD Haskell |
7.0.3_1 10 Jul 2011 21:26:42 |
ashish |
The module Data.CaseInsensitive provides the 'CI' type constructor which can
be parameterised by a string-like type like: 'String', 'ByteString', 'Text',
etc. Comparisons of values of the resulting type will be insensitive to
cases.
WWW: http://hackage.haskell.org/package/case-insensitive
Obtained from: FreeBSD Haskell |
7.0.3_1 10 Jul 2011 02:48:21 |
ashish |
- Update print/hs-hscolour to 1.19
- Update print/hs-hscolour-docs to 1.19
- Update value of HSCOLOUR_VERSION in lang/ghc/bsd.cabal.mk
Obtained from: FreeBSD Haskell |
7.0.3_1 03 Jul 2011 22:00:49 |
ashish |
This library is a Haskell binding to the MySQL mysqlclient client library.
It is a fairly faithful, low level library that implements
most of the MySQL client API.
WWW: https://github.com/mailrank/mysql
PR: ports/157264
Submitted by: Jyun-Yan You <jyyou@cs.nctu.edu.tw> |
7.0.3_1 03 Jun 2011 17:05:33 |
ashish |
- Fix bug in installing Haskell ports when GHC is installed with NOPORTDOCS
Obtained from: FreeBSD Haskell |
7.0.3_1 25 May 2011 18:57:25 |
ashish |
- Fix lang/ghc to not install unusable haddock when NOPORTDOCS is set
- Fix lang/ghc/bsd.cabal.mk to depend on devel/hs-haddock for documentation
- Split textproc/hs-xhtml into a separate -docs port (required by haddock)
- Bump PORTREVISION of devel/hs-haskell-platform, depends on textproc/hs-xhtml
Obtained from: FreeBSD Haskell |
7.0.3 23 May 2011 00:29:15 |
ashish |
- Add missing entry for devel/hs-BNFC.
Obtained from: FreeBSD Haskell |
7.0.3 21 May 2011 02:08:40 |
ashish |
- Mark BROKEN on 9.x: does not compile
Reported by: pointyhat |
7.0.3 14 May 2011 16:34:09 |
pgj |
The 'cabal' command-line program simplifies the process of managing Haskell
software by automating the fetching, configuration, compilation and
installation of Haskell libraries and programs.
WWW: http://www.haskell.org/cabal/
Obtained from: FreeBSD Haskell |
7.0.3 13 May 2011 18:09:15 |
pgj |
- Stop processing if one of the dependencies is missing from bsd.hackage.mk
Obtained from: FreeBSD Haskell |
7.0.3 10 May 2011 02:09:04 |
pgj |
- Connect devel/hs-blaze-builder-enumerator to the build and to the Haskell
Cabal package database and therefore un-break INDEX
Reported by: erwin |
7.0.3 09 May 2011 05:28:57 |
ashish |
- Please welcome GHC 7.0.3
GHC in the ports tree has been updated to 7.0.3 and all other Haskell ports
are also updated to their corresponding Haskell Platform versions, or latest
versions.
We would like to acknowledge the support of the FreeBSD Donations Team and
Eotvos Lorand University, Faculty of Informatics who contributed to the server
that we used for testing.
We would also like to thank all the testers who tested FreeBSD Haskell ports
and provided their feedback.
PR: ports/156642
Approved by: tabthorpe (mentor)
Obtained from: FreeBSD Haskell |
6.10.4_3 04 Dec 2010 07:34:27 |
ade |
Sync to new bsd.autotools.mk |
6.10.4_3 16 Oct 2010 11:52:47 |
ade |
Punt autoconf267->autoconf268 |
6.10.4_3 15 Sep 2010 18:35:24 |
ade |
Autotools update. Read ports/UPDATING 20100915 for details.
Approved by: portmgr (for Mk/bsd.port.mk part)
Tested by: Multiple -exp runs |
6.10.4_2 08 Aug 2010 09:08:00 |
pgj |
- Bring in synch with the ports in the tree |
6.10.4_2 08 Aug 2010 08:49:38 |
pgj |
- Add DIST_SUBDIR for Haskell Cabal ports (with default of "cabal")
Suggested by: admi3 |
6.10.4_2 30 Jul 2010 08:48:26 |
pgj |
- Make standalone ports run-independent of GHC
- Make install directories explicit on configuration
- Add support for redefinition of make(1) targets |
6.10.4_2 07 Jun 2010 03:58:17 |
pgj |
Efficient algorithms for vector arrays.
WWW: http://code.haskell.org/~dolio/ |
6.10.4_2 07 Jun 2010 03:55:25 |
pgj |
An efficient implementation of Int-indexed arrays (both mutable and
immutable), with a powerful loop fusion optimization framework.
WWW: http://code.haskell.org/vector |
6.10.4_2 07 Jun 2010 03:51:31 |
pgj |
Fast, memory-efficient, low-level socket functions that use
'Data.ByteString's instead of 'String's.
WWW: http://github.com/tibbe/network-bytestring |
6.10.4_2 07 Jun 2010 03:47:52 |
pgj |
Some classes for generalized boolean operations.
WWW: http://hackage.haskell.org/package/Boolean |
6.10.4_2 07 Jun 2010 03:44:28 |
pgj |
This package provides wrappers for primitive array operations from
GHC.Prim.
WWW: http://code.haskell.org/primitive |
6.10.4_2 24 May 2010 21:52:43 |
pgj |
Rename the following Haskell ports to bring them in sync with the
HackageDB:
archivers/hs-zip-archive-ghc -> archivers/hs-zip-archive
devel/hs-binary-ghc -> devel/hs-binary
devel/darcs -> devel/hs-darcs
devel/hs-language-c-ghc -> devel/hs-language-c
devel/hs-lazysmallcheck-ghc -> devel/hs-lazysmallcheck
devel/hs-pcre-light-ghc -> devel/hs-pcre-light
devel/hs-utf8-string-ghc -> devel/hs-utf8-string
graphics/hs-HGL-ghc -> graphics/hs-HGL
ports-mgmt/porte -> ports-mgmt/hs-porte
security/hs-digest-ghc -> security/hs-digest
textproc/hs-haxml -> textproc/hs-HaXml
textproc/hs-highlighting-kate-ghc -> textproc/hs-highlighting-kate (Only the first 15 lines of the commit message are shown above ) |
6.10.4_2 22 May 2010 22:59:05 |
pgj |
- Fix ordering |
6.10.4_2 22 May 2010 22:41:50 |
pgj |
- Fix OPTIONS support for Cabal ports by introducing
bsd.cabal.options.mk
- Fix ports broken with non-default options
Triggered by: Yuri Pankov <yuri.pankov@gmail.com> |
6.10.4_2 22 May 2010 21:41:52 |
pgj |
Minimal binding to libxml2. Additional functions will be added when
needed.
WWW: http://hackage.haskell.org/package/libxml |
6.10.4_2 21 May 2010 22:03:36 |
pgj |
QuickCheck2 support for the test-framework package.
WWW: http://batterseapower.github.com/test-framework/ |
6.10.4_2 21 May 2010 22:00:21 |
pgj |
HUnit support for the test-framework package.
WWW: http://batterseapower.github.com/test-framework/ |
6.10.4_2 21 May 2010 21:57:42 |
pgj |
Allows tests such as QuickCheck properties and HUnit test cases to be
assembled into test groups, run in parallel (but reported in
deterministic order, to aid diff interpretation) and filtered and
controlled by command line options. All of this comes with colored test
output, progress reporting and test statistics output.
WWW: http://batterseapower.github.com/test-framework/ |
6.10.4_2 21 May 2010 21:53:39 |
pgj |
This is a pretty printing library based on Wadler's paper "A Prettier
Printer". It has been enhanced with support for ANSI terminal colored
output using the ansi-terminal package.
WWW: http://github.com/batterseapower/ansi-wl-pprint |
6.10.4_2 21 May 2010 21:49:50 |
pgj |
ANSI terminal support for Haskell: allows cursor movement, screen
clearing, color output showing or hiding the cursor, and changing the
title. Compatible with Windows and those Unixes with ANSI terminals, but
only GHC is supported as a compiler.
WWW: http://batterseapower.github.com/ansi-terminal |
6.10.4_2 21 May 2010 21:44:44 |
pgj |
A very simple package providing a cross-platform means of determining
the hostname.
WWW: http://hackage.haskell.org/package/hostname |
6.10.4_2 20 May 2010 15:22:30 |
pgj |
- Fix entry for c2hs |
6.10.4_2 19 May 2010 12:10:17 |
pgj |
A system-independent interface for user-level packet capture.
WWW: http://hackage.haskell.org/package/pcap
PR: ports/146655
Submitted by: Ju Pengfei <jupengfei@gmail.com> |
6.10.4_2 16 May 2010 18:05:29 |
pgj |
A Haskell client library for MPD, the Music Player Daemon.
WWW: http://github.com/joachifm/libmpd-haskell |
6.10.4_2 15 May 2010 22:14:30 |
pgj |
citeproc-hs is a library for automatically formatting bibliographic
reference citations into a variety of styles using a macro language
called Citation Style Language (CSL).
WWW: http://code.haskell.org/citeproc-hs |
6.10.4_2 15 May 2010 22:10:48 |
pgj |
The Haskell XML Toolbox bases on the ideas of HaXml and HXML, but
introduces a more general approach for processing XML with Haskell. The
Haskell XML Toolbox uses a generic data model for representing XML
documents, including the DTD subset and the document subset, in Haskell.
It contains a validating XML parser, a HTML parser, namespace support,
an XPath expression evaluator, an XSLT library, a RelaxNG schema
validator and funtions for serialization and deserialization of user
defined data. The library make extensive use of the arrow approach for
processing XML.
WWW: http://www.fh-wedel.de/~si/HXmlToolbox/index.html |
6.10.4_2 15 May 2010 19:37:40 |
pgj |
- Add devel/darcs as Cabalized package |
6.10.4_2 15 May 2010 19:23:21 |
pgj |
Haskell bindings to Chris Putnam's bibutils, a library that
interconverts between various bibliography formats using a common
MODS-format XML intermediate.
WWW: http://code.haskell.org/hs-bibutils |
6.10.4_2 15 May 2010 19:14:33 |
pgj |
libcurl is a client-side URL transfer library, supporting FTP, FTPS,
HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE.
libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading,
HTTP form based upload, proxies, cookies, user+password authentication
(Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume, http
proxy tunneling and more!
This package provides a Haskell binding to libcurl.
WWW: http://hackage.haskell.org/package/curl |
6.10.4_2 15 May 2010 19:11:40 |
pgj |
This library provides an interface to the terminfo database (via
bindings to the curses library). Terminfo allows POSIX systems to
interact with a variety of terminals using a standard set of
capabilities.
WWW: http://code.haskell.org/terminfo |
6.10.4_2 15 May 2010 19:06:57 |
pgj |
Support code for reading and manipulating hashed file storage (where
each file and directory is associated with a cryptographic hash, for
corruption-resistant storage and fast comparisons).
The supported storage formats include darcs hashed pristine, a plain
filesystem tree and an indexed plain tree (where the index maintains
hashes of the plain files and directories).
WWW: http://hackage.haskell.org/package/hashed-storage |
6.10.4_2 15 May 2010 18:56:33 |
pgj |
Data encoding library currently providing Base16, Base32, Base32Hex,
Base64, Base64Url, Base85, Python string escaping, Quoted-Printable, URL
encoding, uuencode, xxencode, and yEncoding.
WWW: http://www.haskell.org/haskellwiki/Library/Data_encoding |
6.10.4_2 15 May 2010 18:45:32 |
pgj |
- A minor fix in handling PLIST_SUBs |
6.10.4_2 12 May 2010 16:33:59 |
pgj |
Introduce a new (and hopefully better) ports infrastructure for Haskell Cabal
ports which makes possible the direct translation of Cabal package
descriptions to FreeBSD ports. It promises both easier addition and
maintenance for Cabal-based ports. |
6.10.4_2 21 Apr 2010 19:53:03 |
pgj |
- Unbreak build.
- While I am here: unbreak on 9.X as well, shrink bootstraps.
Supported by: itetcu, jacula |
6.10.4_2 19 Apr 2010 16:22:15 |
itetcu |
Broken by the recent gmp update.
Submitted by: QAT
Confirmed by: kib@ |
6.10.4_2 19 Apr 2010 10:43:43 |
ale |
Switch to use newer GMP version.
PR: ports/144487
Submitted by: ale
Approved by: portmgr (-exp run by erwin) |
6.10.4_1 06 Dec 2009 20:56:55 |
pgj |
- Update HsColour to 1.15
- Bump PORTREVISION for all affected ports
PR: ports/138567, ports/138568
Submitted by: Ashish Shukla <wahjava (at) gmail.com>
Approved by: maintainer |
6.10.4 08 Nov 2009 19:40:06 |
pgj |
- Fix installation of hs-ghc-paths as slave port when build is launched in
user mode.
PR: ports/140269
Submitted by: Makoto Kishimoto <ksmakoto(at)dd(dot)iij4u(dot)or(dot)jp> |
6.10.4 19 Sep 2009 20:16:12 |
miwi |
- Add missing testsuite
PR: 138901
Submitted by: Anatoly Borodin <anatoly.borodin@gmail.com>
Feature safe: yes |
6.10.4 02 Sep 2009 15:38:45 |
pgj |
- Update GHC and Haskell ports to 6.10.4 (for both i386 and amd64), bump
port revision where appropriate
- Add devel/hs-ghc-paths
- Add devel/hs-QuickCheck
- Add devel/hs-readline
- Add devel/hs-haskeline
- Add devel/hs-mmap
- Remove lang/ghc-doc
- Mark devel/lhs2TeX broken as it does not compile with GHC 6.10.4
- Set NHC98 as default compiler for devel/hs-hat as it does not compile
with GHC 6.10.4
PR: ports/137055, ports/137058, ports/137059, ports/137060,
ports/137061,
ports/137062, ports/137063, ports/137063, ports/137064,
ports/137065,
ports/137066, ports/137067, ports/137068, ports/137069,
ports/137070, (Only the first 15 lines of the commit message are shown above ) |
6.8.3_5 15 Aug 2009 16:09:46 |
erwin |
Mark BROKEN on 8.x: does not build |
6.8.3_5 20 Jun 2009 07:22:04 |
pgj |
- Unbreak build
Approved by: tabthorpe (mentor, implicit) |
6.8.3_5 18 Jun 2009 20:37:30 |
pav |
- Mark BROKEN: does not configure
Reported by: pointyhat, QAT |
6.8.3_5 13 May 2009 09:46:02 |
ale |
Chase libgmp and bump PORTREVISION. |
6.8.3_4 12 May 2009 11:28:17 |
itetcu |
Fix LIB_DEPENDS on devel/readline: its sh lib version was bumped recently from
5 to 6.
Forgotten by: araujo@
Reported by: QAT |
6.8.3_3 06 Mar 2009 19:31:19 |
pgj |
- Update hs-hscolour to 1.12
PR: ports/132279
Submitted by: Jacula Modyun <jacula (at) gmail (dot) com>
Approved by: tabthorpe |
6.8.3_2 05 Jan 2009 20:36:33 |
pav |
- Remove conditional checks for FreeBSD 5.x and older |
6.8.3_2 26 Oct 2008 18:14:28 |
amdmi3 |
- Update print/hs-hscolour to version 1.10.1
PR: 128344
Submitted by: Jacula Modyun <jacula at gmail dot com> (maintainer)
Approved by: obraun (for lang/ghc and devel/hs-haddock-docs) |
6.8.3_1 20 Aug 2008 00:57:32 |
ade |
Conversion from (now defunct) autoconf-2.61 to autoconf-2.62
Tested by: exp build run (erwin) |
6.8.3_1 15 Aug 2008 04:34:09 |
edwin |
[MAINTAINER UPDATE]: print/hs-hscolour updated to port version 1.10
Step 3 - lang/ghc
PR: ports/126008
Submitted by: Jacula Modyun <jacula@gmail.com> |
6.8.3 18 Jul 2008 20:05:17 |
obraun |
Upgrade ghc to 6.8.3. |
6.8.2_1 23 May 2008 20:32:10 |
obraun |
Fix plist if building with NOPORTDOCS. |
6.8.2_1 04 May 2008 19:25:37 |
obraun |
Updated haddock to 2.1.0. |
6.8.2_1 06 Mar 2008 17:03:29 |
obraun |
Install manpage only with docs (building manpage depends on textproc/libxslt). |
6.8.2_1 02 Mar 2008 19:27:25 |
obraun |
* Add to patches to fix ghc on amd64, which enables building of hs-alex,
whitespace, ...
* Bump PORTREVISION.
Obtained from: http://hackage.haskell.org/trac/ghc |
6.8.2 01 Mar 2008 13:54:34 |
obraun |
Disable WITH_DOCS on amd64.
PR: ports/121251
Submitted by: "Brian O'Hanlon" <brianpo@cmu.edu> |
6.8.2 29 Feb 2008 21:26:22 |
obraun |
Ups, forgot to remove local hack for testing in previous commit :-( |
6.8.2 29 Feb 2008 21:15:51 |
obraun |
* Add new knob WITH_DOCS to install the user
documentation and the hyperlinkable documentation, generated
by haddock and HsColour.
* Build haddock and HsColour for building documentaion only.
* Install manpage.
PR: ports/120975
Submitted by: Jacula Modyun <jacula@gmail.com> |
6.8.2 22 Feb 2008 12:00:59 |
obraun |
Welcome ghc on amd64.
Bootstrap tarball submitted by: "Thomas M. Hermann" <tmh.public@gmail.com> |
6.8.2 12 Feb 2008 02:55:51 |
vs |
Recover line lost in previous update which causes dependent ports to break
Noticed by: Erwin via Pointyhat |
6.8.2 09 Feb 2008 18:05:45 |
obraun |
* Correct pkg-plist.
* Add dependency on readline if already installed.
* Mark unbroken.
PR: ports/120360
Submitted by: Jacula Modyun <jacula@gmail.com> |
6.8.2 25 Jan 2008 20:15:26 |
erwin |
Mark BROKEN: does not deinstall |
6.8.2 04 Jan 2008 21:01:07 |
obraun |
Enable build on 7.x. |
6.8.2 31 Dec 2007 10:55:21 |
obraun |
Reactivate dependency on libgmp-port |
6.8.2 30 Dec 2007 11:37:21 |
obraun |
Update to 6.8.2. |
6.6.1_2 04 Oct 2007 01:25:18 |
edwin |
Remove always-false/true conditions based on OSVERSION 500000 |