Commit graph

261633 commits

Author SHA1 Message Date
Gabor Pali
c1a5228441 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
2011-08-13 21:07:39 +00:00
Gabor Pali
5742fc75c5 An xhtml templating system.
WWW: http://snapframework.com/

Obtained from:	FreeBSD Haskell
2011-08-13 21:01:57 +00:00
Gabor Pali
1ca1d55acd Contains renderers and parsers for both XML and HTML 5 document fragments,
which share data structures wo that it's easy to work with both.  Document
fragments are bits of documents, which are not constrained by some of the
high-level structure rules (in particular, they may contain more than one
root element).

WWW: http://hackage.haskell.org/package/xmlhtml

Obtained from:	FreeBSD Haskell
2011-08-13 20:59:10 +00:00
Koop Mast
8cc0dbf548 Update to 9.6.1.
PR:		ports/159718
Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru>
2011-08-13 20:58:26 +00:00
Gabor Pali
81135b07c6 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
2011-08-13 20:47:35 +00:00
Gabor Pali
f7cecff29d 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
2011-08-13 20:44:40 +00:00
Gabor Pali
d3d5c35b1d - Update textproc/hs-case-insensitive to 0.3.0.1
Obtained from:	FreeBSD Haskell
2011-08-13 20:41:05 +00:00
Gabor Pali
3b4bf11e3a 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
2011-08-13 20:36:01 +00:00
Gabor Pali
52f3ff5d86 Parse numeric literals from ByteStrings.
WWW: http://github.com/solidsnack/bytestring-nums

Obtained from:	FreeBSD Haskell
2011-08-13 20:33:23 +00:00
Koop Mast
6adc6d8381 Update to 0.10.1.
PR:		ports/159733
Submitted by:	David Thiel <lx@FreeBSD.org>
2011-08-13 20:04:44 +00:00
Gabor Pali
1eba923158 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
2011-08-13 19:41:48 +00:00
Gabor Pali
f2e1b36450 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
2011-08-13 19:37:58 +00:00
Gabor Pali
6f1c542521 The attoparsec-enumerator package.
WWW: http://john-millikin.com/software/attoparsec-enumerator/

Obtained from:	FreeBSD Haskell
2011-08-13 19:35:15 +00:00
Gabor Pali
177dc280cf - Update devel/hs-enumerator to 0.4.13.1
Obtained from:	FreeBSD Haskell
2011-08-13 19:30:43 +00:00
Gabor Pali
111611d493 - Chase recent update of devel/hs-MonadCatchIO-mtl 2011-08-13 19:22:56 +00:00
Sergey Skvortsov
0141712d75 Update to 1.4.2
Changes:	http://pgfoundry.org/frs/shownotes.php?release_id=1863
PR:		ports/158657
Submitted by:	"Mikhail T." <m.tsatsenko@gmail.com>
2011-08-13 18:54:29 +00:00
Sergey Skvortsov
ae8e433c67 Update to 1.0.21
PR:		ports/159257
Submitted by:	Ismail YENIGUL <ismail.yenigul@surgate.com>
2011-08-13 18:45:32 +00:00
Gabor Pali
690407d24c 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
2011-08-13 18:42:01 +00:00
Gabor Pali
161cdfdab6 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
2011-08-13 18:36:10 +00:00
Sergey Skvortsov
0b20c1f462 Update to 3.6.6
Changes:	http://www.bugzilla.org/releases/3.6.6/release-notes.html
Security:	http://www.vuxml.org/freebsd/dc8741b9-c5d5-11e0-8a8e-00151735203a.html
2011-08-13 18:25:03 +00:00
Sergey Skvortsov
a95da70810 Update to 4.0.2
Changes:	http://www.bugzilla.org/releases/4.0.2/release-notes.html
Security:	http://www.vuxml.org/freebsd/dc8741b9-c5d5-11e0-8a8e-00151735203a.html
PR:		ports/159576
Submitted by:	Peter Vereshagin <peter@vereshagin.org>
2011-08-13 18:24:21 +00:00
Sergey Skvortsov
dabcf20f07 Document "bugzilla" - multiple vulnerabilities. 2011-08-13 18:19:06 +00:00
Gabor Pali
a1faf30452 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
2011-08-13 18:08:39 +00:00
Gabor Pali
d071efbea1 - Update to 0.3.0.4
Obtained from:	FreeBSD Haskell
2011-08-13 18:01:07 +00:00
Andrej Zverev
457724d7a7 - Update to 0.35002 2011-08-13 17:53:42 +00:00
Steve Wills
2173405bb1 Nagios plugin for checking tftp servers. This plugin can retrieve a file and
compare the size with a given value.

WWW: http://mathias-kettner.de/download/check_tftp

PR:		ports/159737
Submitted by:	hr <holgerrepp at googlemail.com>
2011-08-13 17:29:20 +00:00
Andrej Zverev
088efcd3a7 MooseX::Types::LoadableClass - ClassName type constraint with coercion to load
the class.

WWW:    http://search.cpan.org/dist/MooseX-Types-LoadableClass/
2011-08-13 17:05:46 +00:00
Chris Rees
bc8dd1b931 - Update to 0.143p2 ('borrowing' obrien's cool patchlevel code from editors/vim)
- Add missing fontconfig dependency
- Use PORTDOCS/PORTEXAMPLES
- Use PATCHDIR (not FILESDIR)
- Use COPYTREE_SHARE (not cp -R)

Mostly based on:
PR:		ports/153645
Submitted by:	Emmanuel Vadot <elbarto@arcadebsd.org> (maintainer), acm
Approved by:	maintainer timeout (8 weeks)
2011-08-13 17:04:38 +00:00
Steve Wills
9f200b37ad - Update to 0.43a
Changes:	http://cpansearch.perl.org/dist/Spreadsheet-Read/Changes
2011-08-13 16:40:06 +00:00
Steve Wills
3429c69bda - Update to 1.2002 2011-08-13 16:37:28 +00:00
Koop Mast
0759ef151b Update to 0.135.
Add optional GTK+3 UI option.
Add LICENSE.

PR:		ports/159723 (based on)
Submitted by:	"Conrad J. Sabatier" <conrads@cox.net>
2011-08-13 15:37:58 +00:00
Steve Wills
0ef44efb9c - Use xerces-c 3 [1]
- Pass maintainership back to Janos Mohacsi <janos.mohacsi@bsd.hu> [2]

PR:		ports/159715 [1]
Submitted by:	Janos Mohacsi <janos.mohacsi@bsd.hu> [1]
Approved by:	maintainer (me) [2]
2011-08-13 15:31:57 +00:00
Steve Wills
68739caa74 - Use xerces-c 3 [1]
- Pass maintainership back to Janos Mohacsi <janos.mohacsi@bsd.hu> [2]

PR:		ports/159714 [1]
Submitted by:	Janos Mohacsi <janos.mohacsi@bsd.hu> [1]
Approved by:	maintainer (me) [2]
2011-08-13 15:31:12 +00:00
Chris Rees
abec10d6c4 Update to 6.1.6
Changelog:	http://www.sympa.org/distribution/latest-stable/NEWS
2011-08-13 15:23:56 +00:00
Chris Rees
3fb14bc535 Document dtc security issues
PR:		ports/159736
Submitted by:	Ansgar Burchardt <ansgar@debian.org>
2011-08-13 15:02:29 +00:00
Chris Rees
b9a2a0ef4d Update to 1.4.0
PR:		ports/159590
Submitted by:	Jesse <jessefrgsmith@yahoo.ca> (maintainer)
2011-08-13 14:58:57 +00:00
Koop Mast
41ffb56fb7 Update to 0.90.
sort pkg-plist

PR:		ports/158902
Submitted by:	Jin-Sih Lin <linpct@gmail.com>
2011-08-13 14:48:47 +00:00
Koop Mast
b5762224ee Update to 3.12.10.
PR:		ports/159080
Submitted by:	flo@
2011-08-13 14:46:35 +00:00
Dirk Meyer
b4ce38fd98 - update to 1.0.0 2011-08-13 14:30:25 +00:00
Steve Wills
aaef4d0786 The Marionette Collective
A modern scalable datacenter orchestration framework

WWW: http://marionette-collective.org/

PR:		ports/159673
Submitted by:	Russell Jackson <raj at csub.edu>
2011-08-13 14:28:34 +00:00
Dirk Meyer
04634f325b - update to 1.0.Alpha4.0 2011-08-13 13:45:49 +00:00
Marius Strobl
6d494b813f Allow to build on powerpc64.
Approved by:	netchild
2011-08-13 13:39:14 +00:00
Marius Strobl
cdf7ac1d28 - Allow to build on powerpc64.
- Revert the hack allowing to cross-compile FreeBSD/i386 releases on amd64
  as it caused more problems than it solved. As of r224838 all of head,
  stable/8 and stable/7 are switch to use use makefs(8) instead of mkisofs(8)
  so this hack is no longer necessary.

Approved by:    netchild
2011-08-13 13:37:20 +00:00
Marius Strobl
2116aee741 - Allow to build on powerpc64. [1]
- Revert the hack allowing to cross-compile FreeBSD/i386 releases on amd64
  as it caused more problems than it solved. As of r224838 all of head,
  stable/8 and stable/7 are switch to use use makefs(8) instead of mkisofs(8)
  so this hack is no longer necessary. [2]

PR:             159671 [1], 151486 [2], 152309 [2], probably some more for [2]
Approved by:    netchild
2011-08-13 13:34:50 +00:00
Jun Kuriyama
e188034a30 This module allows Perl programs to conveniently read information from
font files. All the font access is done through the FreeType2 library,
which supports many formats. It can render images of characters with
high-quality hinting and antialiasing, extract metrics information,
and extract the outlines of characters in scalable formats like
TrueType.

WWW: http://search.cpan.org/dist/Font-FreeType/
2011-08-13 13:14:29 +00:00
Sunpoet Po-Chuan Hsieh
194434eff5 - Update to 3.03
PR:		ports/159706
Submitted by:	sunpoet (myself)
Approved by:	demon (maintainer)
2011-08-13 13:02:13 +00:00
Brendan Fabeny
229491d0ef bump PORTREVISION after patching headers 2011-08-13 12:29:58 +00:00
Brendan Fabeny
0734034886 Adjust headers for use with lang/gcc46
Reported by:	gerald, pav
2011-08-13 12:23:12 +00:00
Koop Mast
4b0715c853 Update to 0.6.2.
Project moved to SF, update urls.
2011-08-13 12:13:34 +00:00
Sunpoet Po-Chuan Hsieh
a001555510 - Update to 2011.08.13 2011-08-13 11:32:20 +00:00