Commit graph

5313 commits

Author SHA1 Message Date
Jung-uk Kim
22d92b7cd6 liblangtag is an interface library to access/deal with tags for identifying
languages, which is described in RFC 5646.

WWW: http://tagoh.bitbucket.org/liblangtag/
2013-02-20 07:27:18 +00:00
Martin Wilke
f3edd7f795 Extension to OCaml for deriving functions from type declarations. Includes
derivers for pretty-printing, type-safe marshalling with structure-sharing,
dynamic typing, equality, and more. This is a version of the deriving library
adapted for use with Ocsigen.

WWW: http://github.com/hnrgrgr/deriving

PR:		ports/176162
Submitted by:	Jaap Boender <jaapb@kerguelen.org>
2013-02-19 16:27:17 +00:00
Martin Wilke
8a38f1d4c7 The PHP Project Wizard (PPW) is a commandline tool that can be used to generate
the scripts and configuration files necessary for the build automation of a PHP
project.

WWW: https://github.com/sebastianbergmann/php-project-wizard

PR:		ports/176074
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2013-02-18 01:05:35 +00:00
Pawel Pekala
0ad73f737a Crossroads I/O ("libxs") is a library for building scalable and high
performance distributed applications.  It fits between classic BSD sockets,
JMS/AMQP-style message queues, and enterprise message-oriented middleware.

Crossroads I/O extends the standard socket interfaces with features
traditionally provided by specialised messaging middleware products,
providing an abstraction of asynchronous message queues, multiple messaging
patterns, message filtering (subscriptions), seamless access to multiple
transport protocols, and more.

Crossroads I/O provides a native C API for applications.  Support for many
more languages is provided by the community through language bindings which
can be found at the Crossroads website.

WWW: http://www.crossroads.io/

PR:		ports/175488
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-02-17 14:08:11 +00:00
Jun Kuriyama
cd55a3e587 This module iterates over files and directories to identify ones
matching a user-defined set of rules.  The API is based heavily on
File::Find::Rule, but with more explicit distinction between matching
rules and options that influence how directories are searched.  A
Path::Iterator::Rule object is a collection of rules (match criteria)
with methods to add additional criteria.  Options that control
directory traversal are given as arguments to the method that
generates an iterator.

WWW: http://search.cpan.org/dist/Path-Iterator-Rule/
2013-02-16 03:03:06 +00:00
Jun Kuriyama
6800bb7aae Portable filename comparison.
Many cross-platform test failures -- particularly on Win32 -- are due
to hard-coded file paths being used in comparison tests.

This simple module provides some handy functions to convert all those
path separators automatically so filename tests will just DWIM.

WWW: http://search.cpan.org/dist/Test-Filename/
2013-02-16 02:32:13 +00:00
Martin Wilke
ccda776bb7 Bluelet is a simple, pure-Python solution for writing intelligible asynchronous
socket applications.

WWW: https://github.com/sampsyo/bluelet

PR:		ports/176108
Submitted by:	Mark Felder <feld@feld.me>
2013-02-15 02:49:05 +00:00
Martin Wilke
438824d9a7 Bam is a fast and flexible build system. Bam uses Lua to describe the build
process.  It takes its inspiration for the script files from scons.  While
scons focuses on being 100% correct when building, bam makes a few sacrifices
to acquire fast full and incremental build times.

WWW: http://matricks.github.com/bam/

PR:		ports/175857
Submitted by:	Timothy Beyer <beyert@cs.ucr.edu>
2013-02-12 12:12:10 +00:00
Martin Wilke
4d6e173681 Library and tooling to access the Windows XML Event Log (EVTX) format
WWW: http://code.google.com/p/libevtx/

PR:		ports/176007
Submitted by:	Antoine Brodin <antoine@FreeBSD.org>
2013-02-12 10:31:09 +00:00
Anton Berezin
d67d99ef5e Add devel/p5-Devel-Hide 0.0009, a Perl module that, for testing purposes,
forces the unavailability of specified Perl modules.
2013-02-11 11:11:59 +00:00
Greg Lehey
7c2eb40759 New port, a 6000 line replacement for getopt(3).
This is a dependency of graphics/hugin.

Approved by:	edwin@
2013-02-11 05:30:00 +00:00
Martin Wilke
0c5625a7a0 This is a library that includes all the code I tend to carry from project to
project for wrapping POSIX APIs for C++.  Where possible, things are
implemented inline so that there is minimal to no cost above and beyond using
the good old C APIs.

WWW: https://github.com/rescrv/po6

PR:		ports/174794
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-02-10 14:31:22 +00:00
Martin Wilke
e3076d0e12 CityHash provides hash functions for strings. The functions mix the
input bits thoroughly but are not suitable for cryptography.  See
"Hash Quality," below, for details on how CityHash was tested and so on.

Functions by CityHash:

- CityHash32() returns a 32-bit hash.
- CityHash64() and similar return a 64-bit hash.
- CityHash128() and similar return a 128-bit hash and are tuned for
strings of at least a few hundred bytes.  Depending on your compiler
and hardware, it's likely faster than CityHash64() on sufficiently long
strings.  It's slower than necessary on shorter strings, but we expect
that case to be relatively unimportant.
- CityHashCrc128() and similar are variants of CityHash128() that depend
on _mm_crc32_u64(), an intrinsic that compiles to a CRC32 instruction
on some CPUs.  However, none of the functions we provide are CRCs.
- CityHashCrc256() is a variant of CityHashCrc128() that also depends
on _mm_crc32_u64().  It returns a 256-bit hash.

All members of the CityHash family were designed with heavy reliance
on previous work by Austin Appleby, Bob Jenkins, and others.
For example, CityHash32 has many similarities with Murmur3a.

WWW: http://code.google.com/p/cityhash/

PR:		ports/174793
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-02-10 14:30:35 +00:00
Dmitry Sivachenko
d06897aea3 Python bindings for chromium compact language detector library.
WWW: http://pypi.python.org/pypi/chromium_compact_language_detector
2013-02-09 19:11:54 +00:00
Dmitry Sivachenko
e35c497d2c A port from the CLD (Compact Language Detector) library embedded in
Google's Chromium browser.  The library detects the language from
provided UTF8 text (plain text or HTML).

https://code.google.com/p/chromium-compact-language-detector/
2013-02-08 11:43:14 +00:00
Martin Wilke
6f073fb0f0 Selenium2Library is a web testing library for Robot Framework that leverages
the Selenium 2 (WebDriver) libraries from the Selenium project.

It is modeled after (and forked from) the SeleniumLibrary library, but
re-implemented to use Selenium 2 and WebDriver technologies.

WWW: https://github.com/rtomac/robotframework-selenium2library/

PR:		ports/175787
Submitted by:	Vladimir Chukharev
2013-02-08 09:38:17 +00:00
Martin Wilke
3ab0d26f9e Robot Framework is a generic test automation framework for acceptance testing
and acceptance test-driven development (ATDD). It has easy-to-use tabular test
data syntax and utilizes the keyword-driven testing approach. Its testing
capabilities can be extended by test libraries implemented either with Python
or Java, and users can create new keywords from existing ones using the same
syntax that is used for creating test cases.

WWW: http://robotframework.org

PR:		ports/175786
Submitted by:	Vladimir Chukharev
2013-02-08 09:37:21 +00:00
Martin Wilke
6c66bd5138 This extension provides API for communicating with ZooKeeper service.
WWW: http://pecl.php.net/package/zookeeper

PR:		ports/175917
Submitted by:	Gea-Suan Lin <gslin@gslin.org>
2013-02-08 09:09:47 +00:00
Anton Berezin
5ccdda5493 Add devel/p5-Path-Tiny 0.004, a Perl module for working with
file paths.
2013-02-06 13:09:28 +00:00
Dmitry Marakasov
837a83397d osc is a command-line client fot openSUSE build service. It is
written in Python, and in addition to the commandline interface it
also provides a Python module, for use by other Python programs.

osc is a subversion-like client. It serves as client for the source
code repository component of the build service, and it is used to
edit metadata or query about build results.

WWW: http://en.opensuse.org/openSUSE:OSC
2013-02-06 00:30:44 +00:00
Gabor Pali
c731105b7f - Fix breakage in the DYNAMIC-enabled ports triggered by the recent
devel/libffi update
- Enable multithreaded build for lang/ghc (i.e. mark MAKE_JOBS_SAFE)

Please note that port revision for all the Haskell ports without version
changes are bumped.

New ports (20):

devel/hs-MonadRandom                     0.1.8
devel/hs-base64-conduit                  0.5.1
devel/hs-bifunctors                      3.2
devel/hs-either                          3.1
devel/hs-errors                          1.3.1
devel/hs-generic-deriving                1.4.0
devel/hs-lens                            3.8.5
devel/hs-profunctor-extras               3.3
devel/hs-profunctors                     3.2
devel/hs-reflection                      1.1.6
devel/hs-timezone-olson                  0.1.2
devel/hs-timezone-series                 0.1.2
math/hs-comonads-fd                      3.0.1
math/hs-groupoids                        3.0.1.1
math/hs-nats                             0.1
math/hs-semigroupoid-extras              3.0.1
security/hs-cipher-rc4                   0.1.2
security/hs-crypto-numbers               0.1.3
security/hs-crypto-pubkey                0.1.2
security/hs-crypto-random-api            0.2.0

Updated ports (107):

archivers/hs-zip-archive                 0.1.2.1          --> 0.1.3.3
archivers/hs-zlib-bindings               0.1.1.2          --> 0.1.1.3
audio/hs-libmpd                          0.8.0.1          --> 0.8.0.2
benchmarks/hs-criterion                  0.6.2.0          --> 0.6.2.1
converters/hs-aeson                      0.6.0.2_2        --> 0.6.1.0
converters/hs-dataenc                    0.14.0.4         --> 0.14.0.5
databases/hs-persistent                  1.0.2.2          --> 1.1.4
databases/hs-persistent-sqlite           1.0.1            --> 1.1.2
databases/hs-persistent-template         1.0.0.2          --> 1.1.2.1
devel/hs-BNFC                            2.4.2.1_1        --> 2.6.0.3
devel/hs-Boolean                         0.1.1            --> 0.1.2
devel/hs-TypeCompose                     0.9.7            --> 0.9.9
devel/hs-ansi-terminal                   0.5.5_5          --> 0.5.5.1
devel/hs-ansi-wl-pprint                  0.6.4_3          --> 0.6.6
devel/hs-basic-prelude                   0.3.1.0          --> 0.3.2.0
devel/hs-checkers                        0.2.9_2          --> 0.3.1
devel/hs-classy-prelude                  0.4.1            --> 0.4.3
devel/hs-classy-prelude-conduit          0.4.1            --> 0.4.3
devel/hs-conduit                         0.5.5            --> 0.5.6
devel/hs-configurator                    0.2.0.1          --> 0.2.0.2
devel/hs-cpphs                           1.15             --> 1.16
devel/hs-edit-distance                   0.2.1.1          --> 0.2.1.2
devel/hs-file-embed                      0.0.4.6          --> 0.0.4.7
devel/hs-filestore                       0.5.0.1          --> 0.6
devel/hs-fsnotify                        0.0.4            --> 0.0.6
devel/hs-ghc-paths                       0.1.0.8_5        --> 0.1.0.9
devel/hs-git-annex                       3.20121211       --> 3.20130124
devel/hs-hashable                        1.1.2.5          --> 1.2.0.5
devel/hs-hastache                        0.4.2            --> 0.5.0
devel/hs-hlint                           1.8.39           --> 1.8.43
devel/hs-hoogle                          4.2.14           --> 4.2.15
devel/hs-hspec                           1.4.2            --> 1.4.3
devel/hs-largeword                       1.0.3            --> 1.0.4
devel/hs-lifted-base                     0.2              --> 0.2.0.2
devel/hs-monad-logger                    0.2.3            --> 0.2.3.2
devel/hs-optparse-applicative            0.4.2            --> 0.5.2.1
devel/hs-pool-conduit                    0.1.0.3          --> 0.1.1
devel/hs-project-template                0.1.0.1          --> 0.1.1
devel/hs-silently                        1.2.4            --> 1.2.4.1
devel/hs-smallcheck                      0.6.1_2          --> 0.6.2
devel/hs-system-fileio                   0.3.10           --> 0.3.11
devel/hs-unix-compat                     0.4.0.0          --> 0.4.1.0
devel/hs-unordered-containers            0.2.2.1          --> 0.2.3.0
devel/hs-vault                           0.2.0.1          --> 0.2.0.4
devel/hs-void                            0.5.8            --> 0.5.11
devel/hs-word8                           0.0.2            --> 0.0.3
mail/hs-mime-types                       0.1.0.0          --> 0.1.0.2
math/hs-categories                       1.0.4            --> 1.0.5
math/hs-comonad                          3.0.0.2          --> 3.0.1.1
math/hs-comonad-transformers             3.0              --> 3.0.1
math/hs-distributive                     0.2.2_2          --> 0.3
math/hs-pointed                          3.0.1            --> 3.0.2
math/hs-semigroupoids                    3.0.0.1          --> 3.0.2
math/hs-semigroups                       0.8.4.1          --> 0.9
net/hs-network-conduit                   0.6.1.1          --> 0.6.2.2
net/hs-simple-sendfile                   0.2.8            --> 0.2.10
print/hs-hscolour                        1.20.3,1         --> 1.20.3_1,1
security/hs-certificate                  1.3.3            --> 1.3.5
security/hs-cipher-aes                   0.1.5            --> 0.1.7
security/hs-clientsession                0.8.0.1          --> 0.8.1
security/hs-cprng-aes                    0.2.4            --> 0.3.4
security/hs-crypto-conduit               0.4.1            --> 0.4.3
security/hs-cryptocipher                 0.3.6            --> 0.4.0
security/hs-cryptohash                   0.7.9            --> 0.8.3
security/hs-pem                          0.1.1_2          --> 0.1.2
security/hs-skein                        0.1.0.10         --> 0.1.0.11
security/hs-tls                          1.0.2            --> 1.1.1
security/hs-tls-extra                    0.5.0            --> 0.6.1
sysutils/hs-angel                        0.3.3            --> 0.3.4
textproc/hs-Diff                         0.1.3_3          --> 0.2.0
textproc/hs-attoparsec                   0.10.2.0_2       --> 0.10.3.0
textproc/hs-blaze-html                   0.5.1.1          --> 0.5.1.3
textproc/hs-blaze-markup                 0.5.1.2          --> 0.5.1.4
textproc/hs-case-insensitive             0.4.0.3          --> 0.4.0.4
textproc/hs-citeproc-hs                  0.3.6            --> 0.3.7
textproc/hs-double-conversion            0.2.0.5          --> 0.2.0.6
textproc/hs-highlighting-kate            0.5.3.3          --> 0.5.3.5
textproc/hs-hs-bibutils                  4.15             --> 4.16
textproc/hs-regex-pcre-builtin           0.94.4.3.8.31    --> 0.94.4.5.8.31
textproc/hs-texmath                      0.6.1.1          --> 0.6.1.3
textproc/hs-yaml                         0.8.1.1          --> 0.8.2
www/hs-gitit                             0.10.0.2         --> 0.10.1.2
www/hs-hamlet                            1.1.1.1          --> 1.1.3.1
www/hs-heist                             0.8.2            --> 0.11.0
www/hs-hjsmin                            0.1.3            --> 0.1.4
www/hs-http-conduit                      1.8.4.3          --> 1.8.7
www/hs-http-date                         0.0.3            --> 0.0.4
www/hs-http-reverse-proxy                0.1.0.6          --> 0.1.1.1
www/hs-shakespeare-js                    1.1.0            --> 1.1.1
www/hs-snap                              0.9.2.2          --> 0.11.0
www/hs-wai-app-static                    1.3.0.4          --> 1.3.1_1
www/hs-wai-extra                         1.3.0.4          --> 1.3.2
www/hs-warp                              1.3.5            --> 1.3.7.1
www/hs-xss-sanitize                      0.3.2_2          --> 0.3.3
www/hs-yesod                             1.1.4.1          --> 1.1.7.2
www/hs-yesod-auth                        1.1.2            --> 1.1.3
www/hs-yesod-core                        1.1.6.1          --> 1.1.7.1
www/hs-yesod-default                     1.1.2            --> 1.1.3
www/hs-yesod-form                        1.2.0.1          --> 1.2.0.2
www/hs-yesod-persistent                  1.1.0            --> 1.1.0.1
www/hs-yesod-platform                    1.1.5            --> 1.1.7.2
www/hs-yesod-static                      1.1.1.1          --> 1.1.1.2
www/hs-yesod-test                        0.3.1.1          --> 0.3.3
x11-wm/hs-xmonad                         0.10_4           --> 0.11
x11-wm/hs-xmonad-contrib                 0.10_4           --> 0.11
x11/hs-X11                               1.5.0.1_3        --> 1.6.0.2
x11/hs-xmobar                            0.14_3           --> 0.16

Obtained from:	FreeBSD Haskell
2013-02-05 22:26:31 +00:00
Michael Scheidell
d0152cc47a This package provides a unified command line interface to many Amazon Web
Services.
The currently supported services include:
* Amazon Elastic Compute Cloud (Amazon EC2)
* Elastic Load Balancing
* Auto Scaling
* AWS CloudFormation
* AWS Elastic Beanstalk
* Amazon Simple Notification Service (Amazon SNS)
* Amazon Simple Queue Service (Amazon SQS)
* Amazon Relational Database Service (Amazon RDS)
... and more.

WWW: http://aws.amazon.com/cli/

PR:		ports/174674
Submitted by:	Alexey V. Degtyarev <alexey@renatasystems.org>
2013-02-05 13:23:54 +00:00
Max Brazhnikov
fa57f02868 Merge from area51 repository:
- Update ports:
	KDevelop to 4.4.1
	KDevPlatform and KDevelop-PHP to 1.4.1
- Trim Makefile header
- Convert to new options framework
- Add NSL option
- Add new port devel/kdevelop-custom-buildsystem

Courtesy of:	avilla
2013-02-05 11:38:34 +00:00
Pietro Cerutti
32832fe3b8 - Nuke devel/kBuild-devel -- use devel/kBuild instead 2013-02-05 11:18:30 +00:00
Mikhail Teterin
fe8e26f42a Add port tcl-mmap -- Tcl interface to mmap(2). 2013-02-05 00:15:35 +00:00
Sofian Brabez
4f36f96f5f posix_ipc is a Python module (written in C) that permits creation and
manipulation of POSIX inter-process semaphores, shared memory and message queues
on platforms supporting the POSIX Realtime Extensions a.k.a. POSIX 1003.1b-1993.

WWW: http://semanchuk.com/philip/posix_ipc/

PR:		ports/171507
Submitted by:	Kubilay Kocak <koobs.freebsd@gmail.com>
2013-02-04 23:29:20 +00:00
Max Brazhnikov
e10626bad5 Add more ports that should have been committed along with last KDE update.
Noticed by:	beat
Pointyhat to: 	me
2013-02-04 12:45:22 +00:00
Martin Wilke
4094312bf9 Library and tooling to access the Windows Event Log (EVT) format
WWW: http://code.google.com/p/libevt/

PR:		ports/175416
Submitted by:	antoine@FreeBSD.org
2013-02-04 04:24:54 +00:00
Max Brazhnikov
52e8a321a0 Add new ports required for deskutils/kdepim4.
Reminded by:	rakuco
Pointyhat to: 	me
2013-02-03 20:40:57 +00:00
Max Brazhnikov
cb8b1428c6 KDE/FreeBSD team presents KDE SC 4.9.5 ports!
- kdebindings ports have been renamed to match upstream.
- kdemultimedia and kdenetwork have been split.
- New port games/pairs added.
- Trim Makefile header
- Convert to new option framework
- New USE_KDE4 components: libkcddb, libkcompactdisc
- Update:
	databases/akonadi to 1.9.0
	devel/grantlee to 0.3.0
	textproc/rasqal to 0.9.30
	textproc/redland-bindings to 1.0.16.1
	textproc/soprano to 2.9.0
	x11-toolkits/attica to 0.4.1

The area51 repository features commits by Schaich Alonso, avilla, dbn,
jhale, makc and rakuco.

Contributors:
- Oleg Sidorkin
- Tobias Berner
- Kurt Jaeger
2013-02-03 20:10:37 +00:00
Max Brazhnikov
481aa3dd68 KDE/FreeBSD team presents:
SIP 4.14.3
 QScintilla 2.7
 PyQt 4.9.6

The area51 repository features commits by jhale and myself.

Changes:
- Trim Makefile header
- Convert to new option framework
2013-02-03 18:16:07 +00:00
Sunpoet Po-Chuan Hsieh
3e5240565e - Add p5-Media-Type-Simple 0.02
Media::Type::Simple gives a simple functions for obtaining common file
extensions from media types, and from obtaining media types from file
extensions.

It is also relaxed with respect to having multiple media types associated with a
file extension, or multiple extensions associated with a media type, and it
includes media types for encodings such as gzip. It is defined this way in the
default data, but this does not meet your needs, then you can have it use a
system file (e.g. /etc/mime.types) or custom data.

By default, there is a functional interface, although you can also use an
object-oriented inteface. (Different objects will not share the same data.)

WWW: http://search.cpan.org/dist/Media-Type-Simple/
2013-02-01 21:29:38 +00:00
Brooks Davis
529da1f624 As long promised, remove llvm-gcc4 in favor of the dragonegg gcc plugin.
Remove llvm29 as it is ancient and only existed to support llvm-gcc4.
2013-02-01 14:48:06 +00:00
Vanilla I. Shu
109b5aab9c Add avro 1.7.3, data serialization system.
PR:		ports/175566
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-02-01 13:30:16 +00:00
Vanilla I. Shu
c0646a89dd Add py-avro 1.7.3, data serialization system for python.
PR:		ports/175565
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-02-01 12:54:00 +00:00
Alexey Dokuchaev
88db7a71ee Add libdatrie 0.2.6, a double-array trie implementation library. 2013-02-01 04:54:31 +00:00
Ruslan Makhmatkhanov
cf5ca31771 Low-level, data-driven core of boto 3.
WWW: https://github.com/boto/botocore

PR:		174673
Submitted by:	Alexey V. Degtyarev <alexey@renatasystems.org>
2013-01-31 19:20:46 +00:00
Vanilla I. Shu
0da441f125 Add nglogc 1.1.0, flexible C logging API.
PR:		ports/175691
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-01-31 00:58:29 +00:00
Sunpoet Po-Chuan Hsieh
fa6a11449d - Add p5-Test-Fixme 0.08
When coding it is common to come up against problems that need to be addressed
but that are not a big deal at the moment. What generally happens is that the
coder adds comments like:

# FIXME - what about windows that are bigger than the screen?
# FIXME - add checking of user priviledges here.

Test::Fixme allows you to add a test file that ensures that none of these get
forgotten in the module.

WWW: http://search.cpan.org/dist/Test-Fixme/
2013-01-30 19:45:24 +00:00
Sunpoet Po-Chuan Hsieh
b90f1d112b - Add p5-IO-Prompt-Tiny 0.001
IO::Prompt::Tiny is an extremely simple prompting module, based on the extremely
simple prompt offered by ExtUtils::MakeMaker.In many cases, that's all you need
and this module gives it to you without all the overhead of ExtUtils::MakeMaker
just to prompt for input.

It doesn't do any validation, coloring, menus, timeouts, or any of the wild,
crazy, cool stuff that other prompting modules do. It just prompts with a
default. That's it!

WWW: http://search.cpan.org/dist/IO-Prompt-Tiny/
2013-01-30 16:39:57 +00:00
Vanilla I. Shu
fceebadcc7 Add pecl-ev 0.2.2, libev extension for PHP.
PR:		ports/175124
Submitted by:	John Chen <johnpupu@gmail.com>
2013-01-27 14:55:46 +00:00
Vanilla I. Shu
a491c2942d Add avro-cpp 1.7.3, data serialization system for C++.
PR:		ports/175563
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-01-27 14:31:37 +00:00
Vanilla I. Shu
8bf577a27d Add avro-c 1.7.3, data serialization system for ANSI C.
PR:		ports/175562
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2013-01-27 14:29:10 +00:00
Baptiste Daroussin
bf25f6b6b4 2012-10-20 multimedia/libdvdplay: No more public_distfiles
www/p5-Bundle-Sledge
2012-07-11 devel/p5-Class-Fields: considered obsolete by upstream
2013-01-27 12:07:22 +00:00
Chris Rees
a3eae0be2b Add slave for subversion, to build a package with no dependencies.
This can be easily installed once the package builds are back up, and makes
a fast installation of Subversion much easier.

The reason that LATEST_LINK is explicitly set is to work around the
OPTIONS / UNIQUENAME issues.

Reviewed by:	lev (but all bugs are mine)
2013-01-24 19:33:46 +00:00
Gordon Tetlow
4ee9299ea0 Remove devel/p4v. Perforce stopped making FreeBSD builds about 4 years ago.
PR:		ports/165023
2013-01-23 07:49:45 +00:00
Steve Wills
5b7b677c62 Add rubygem-pry-remote-em 0.7.3, connect to Pry remotely using
EventMachine.

PR:		ports/172116
Submitted by:	Kimo <kimor79@yahoo.com>
2013-01-23 02:33:20 +00:00
Lars Thegler
d22ffa8857 Add p5-Module-CPANfile 0.9007, parse cpanfile. 2013-01-22 13:20:14 +00:00
Romain Tartière
7f6765ae29 NDesk.Options is a callback-based program option parser for C#.
WWW:	http://www.ndesk.org/Options
2013-01-21 14:14:17 +00:00
Jun Kuriyama
ab7c6a55e9 This module generates accessors for your class in the same spirit as
Class::Accessor does.  While the latter deals with accessors for
scalar values, this module provides accessor makers for rather
flexible constructors.

WWW: http://search.cpan.org/dist/Class-Accessor-Constructor/
2013-01-18 11:41:18 +00:00
Jun Kuriyama
65e8e3d6a7 Hierarchy-wide accumulation of list and hash results.
This is a mixin class.  By inheriting from it you get two methods that
are able to accumulate hierarchy-wide list and hash results.

WWW: http://search.cpan.org/dist/Data-Inherited/
2013-01-18 11:33:02 +00:00
Jun Kuriyama
64d139e3e8 Measure size of Perl OPs and SVs. B::Size2 is a fork of B::Size 0.09.
WWW: http://search.cpan.org/dist/B-Size2/
2013-01-17 22:58:54 +00:00
Marcus von Appen
64b06282d8 liblognorm shall help to make sense out of syslog data, or, actually,
any event data that is present in text form.

In short words, one will be able to throw arbitrary log message to liblognorm,
one at a time, and for each message it will output well-defined name-value
pairs and a set of tags describing the message.

WWW: http://www.liblognorm.com

PR:		ports/173544
Submitted by:	Paul Schmehl <pauls@utdallas.edu>
2013-01-15 15:46:16 +00:00
Jason Helfman
5100a06934 - add new port: devel/ruby-build
ruby-build is a rbenv plugin that provides a rbenv install command to compile
and install different versions of Ruby on UNIX-like systems. You can also use
ruby-build without rbenv in environments where you need precise control over
Ruby version installation.

WWW: https://github.com/sstephenson/ruby-build

PR:		174980
Submitted by:	fmb@onibox.net
2013-01-14 23:49:12 +00:00
Frederic Culot
bec6473093 A Future object represents an operation that is currently in progress,
or has recently completed. Library functions that perform asynchronous
operations would use Future objects to allow calling programs to control
or wait for those operations to complete.

WWW: http://search.cpan.org/dist/Future/

This new module is needed to update devel/p5-CPS.
2013-01-14 13:50:02 +00:00
Anton Berezin
ae9d9a9110 Add devel/p5-namespace-sweep 0.006, a Perl module to
sweep up imported subs in your classes.
2013-01-14 11:37:27 +00:00
Jun Kuriyama
b89405b44b Test::PerlTidy - check that all your files are tidy.
WWW: http://search.cpan.org/dist/Test-PerlTidy/
2013-01-14 09:18:08 +00:00
Steve Wills
7d13fe2e18 Add p5-syntax 0.004, activate syntax extensions in Perl.
PR:		ports/175160
Submitted by:	Po-Chien Lin <linpc@cs.nctu.edu.tw>
2013-01-14 03:31:31 +00:00
Rene Ladan
93e97ef93a Remove expired port:
2013-01-07 devel/titano: Dead upstream since 2001
2013-01-13 22:48:52 +00:00
Rene Ladan
1071a300c7 Remove expired port:
2013-01-12 devel/lbpp: Dead upstream since 2001
2013-01-13 22:44:20 +00:00
Brooks Davis
eaca7581b2 In preparation for updating llvm and clang to 3.2, create temporary
ports of 3.1 so ports that don't yet work with 3.2 continue to work.
2013-01-10 16:19:44 +00:00
Max Brazhnikov
868160c9cb Add new port devel/libregf:
Library and tools to support the Windows NT Registry File (REGF) format.

WWW: http://code.google.com/p/libregf/

PR:		ports/174614
Submitted by:	antoine@
2013-01-09 00:08:40 +00:00
Anton Berezin
a424db8b4c Add devel/p5-No-Worries 0.8,
a collection of Perl modules that ease coding by providing consistent
convenient functions to perform frequently used programming tasks.

It is added to the ports collection because other modules by the same
author depend on this one.
2013-01-08 09:13:09 +00:00
Tom Judge
a64486ec8e FcntlLock is a module to do file locking in an object oriented fashion using
the fcntl(2) system call. This allows locks on parts of a file as well as on
the whole file and overcomes some known problems with flock(2), on which Perls
flock() function is based by default.

WWW: http://search.cpan.org/dist/File-FcntlLock/
2013-01-07 19:37:10 +00:00
Anton Berezin
e2788b2dbf Add devel/p5-Object-Tiny-Lvalue 1.07, a Perl module very similar to the
existing devel/p5-Object-Tiny, but adjusted to create accessors that
return lvalues.
2013-01-07 10:38:17 +00:00
Ruslan Makhmatkhanov
0e47ba8f6e JavaScript minifier.
WWW: http://pypi.python.org/pypi/jsmin

PR:		174564
Submitted by:	Po-Chien Lin <linpc@cs.nctu.edu.tw>
2013-01-07 06:16:27 +00:00
Beat Gaetzi
6d1b66d327 - Restore entry for looks and remove nonexisting one for jgoodies-looks to
fix INDEX.

Pointyhat to:	mi
2013-01-06 13:14:05 +00:00
Mikhail Teterin
b56b5eceba Add decompiler for Python's .pyc and .pyo files. 2013-01-06 03:30:35 +00:00
Ruslan Makhmatkhanov
1686770cf8 Copy/Paste Detector (CPD) for PHP code.
WWW: https://github.com/sebastianbergmann/phpcpd

PR:		172774
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2013-01-02 20:16:29 +00:00
Ruslan Makhmatkhanov
fb892b06f4 FinderFacade is a convenience wrapper for Symfony's Finder component.
WWW: https://github.com/sebastianbergmann/finder-facade

PR:		172772
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2013-01-02 18:34:58 +00:00
Ruslan Makhmatkhanov
87920a9a72 Symfony Finder Component
WWW: http://pear.symfony.com/

PR:		172771
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2013-01-02 18:18:15 +00:00
Ruslan Makhmatkhanov
e2caaaacb8 phploc is a tool for quickly measuring the size and analyzing the structure of
a PHP project.

WWW: https://github.com/sebastianbergmann/phploc

PR:		172768
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2013-01-02 17:55:26 +00:00
Jason Helfman
112115bd25 - add new port : devel/rbenv
rbenv lets you easily switch between multiple versions of Ruby.
It's simple, unobtrusive, and follows the UNIX tradition of
single-purpose tools that do one thing well.

WWW: https://github.com/sstephenson/rbenv

PR:		174735
Submitted by:	fmb@onibox.net
2013-01-02 07:40:39 +00:00
Pawel Pekala
c9e60eb625 test_helpers is an extension for the PHP Interpreter to ease
testing of PHP code.

WWW: https://github.com/sebastianbergmann/php-test-helpers

PR:		ports/172491
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2012-12-29 12:18:56 +00:00
Bryan Drewery
442ff315e6 Chipmunk is a simple, lightweight, fast and portable 2D rigid body physics
library written in C. It's licensed under the unrestrictive, OSI approved MIT
license.

WWW: http://chipmunk-physics.net/

PR:		ports/174465
Submitted by:	"Tim &#268;as" <ports@stdrand.com>
2012-12-28 15:57:37 +00:00
Bryan Drewery
3eda15b483 Sort SUBDIR listing 2012-12-28 15:54:54 +00:00
Jun Kuriyama
e7099ba051 AnyEvent::MessagePack is MessagePack stream serializer/deserializer
for AnyEvent.

WWW: http://search.cpan.org/dist/AnyEvent-MessagePack/
2012-12-24 10:52:25 +00:00
Pawel Pekala
7897354104 A free test coverage analysis tool for C++. Analogous to purecov but quite
different in implementation. This tool does its job by instrumenting the
source as you compile. You can thus add your own instrumentation to every
line on the fly.

WWW: http://sourceforge.net/projects/covtool/

PR:		ports/174234
Submitted by:	novator24 <novator24@gmail.com>
2012-12-22 15:56:21 +00:00
Chris Rees
19948f49d0 KLEE is a symbolic virtual machine built on top of the
LLVM compiler infrastructure, and available under the
UIUC open source license.

WWW:	http://klee.llvm.org/

PR:		ports/174274
Submitted by:	arrowdodger <6yearold@gmail.com>
2012-12-22 15:01:26 +00:00
Matthias Andree
76635b6520 Add new port devel/lua-lgi.
LGI is a gobject-introspection based dynamic Lua binding to GObject-based
libraries. It allows using GObject-based libraries directly from Lua.

WWW: https://github.com/pavouk/lgi

PR:		ports/174597
Submitted by:	Maxim Andreev <andreevmaxim@gmail.com>
2012-12-22 13:40:50 +00:00
Mikhail Teterin
3b178d1aa6 Begin renewal of devel/looks by creating a port of jgoodies-common,
which installs a JAR used by all of JGoodies packages.
2012-12-22 05:41:09 +00:00
Pawel Pekala
f831299f4c Library and tools to access the Windows Shortcut File (LNK) Format
WWW: http://code.google.com/p/liblnk/

PR:		ports/174035
Submitted by:	antoine@FreeBSD.org
2012-12-20 17:39:05 +00:00
Gabor Pali
f6f83c9efc - Update The Glorious Glasgow Haskell Compiler to version 7.4.2
- Update Haskell Platform to version 2012.4.0.0
- Update Gtk2Hs to 0.12.4
- Transfer maintainership of math/hs-math-functions to haskell@ [1]

Please note that port revisions for all the Haskell ports without version
changes are bumped.

Some further highlights of the update:
- Trim Makefile headers
- Enable dynamic libraries and dynamic linking by default
- Enable bootstrapping by versions of GHC and HsColour already installed
- Use GCC and binutils from ports

New ports (32):

devel/hs-List                            0.5.1
devel/hs-ReadArgs                        1.2.1
devel/hs-SafeSemaphore                   0.9.0
devel/hs-activehs-base                   0.3.0.2
devel/hs-async                           2.0.1.3
devel/hs-basic-prelude                   0.3.1.0
devel/hs-classy-prelude                  0.4.1
devel/hs-classy-prelude-conduit          0.4.1
devel/hs-data-pprint                     0.2.1.4
devel/hs-date-cache                      0.3.0
devel/hs-fsnotify                        0.0.4
devel/hs-hinotify                        0.3.5
devel/hs-hspec-expectations              0.3.0.3
devel/hs-kqueue                          0.1.2.4
devel/hs-monad-logger                    0.2.3
devel/hs-optparse-applicative            0.4.2
devel/hs-project-template                0.1.0.1
devel/hs-setenv                          0.1.0
devel/hs-simple-reflect                  0.2
devel/hs-threads                         0.5.0.1
devel/hs-time-compat                     0.1.0.2
devel/hs-unix-time                       0.1.4
devel/hs-word8                           0.0.2
graphics/hs-dia-base                     0.1.1.2
graphics/hs-dia-functions                0.2.1.3
mail/hs-mime-types                       0.1.0.0
net/hs-network-info                      0.2.0.3
net/hs-network-multicast                 0.0.7
security/hs-cipher-aes                   0.1.5
textproc/hs-hexpat                       0.20.3
www/hs-activehs                          0.3.0.1
www/hs-http-reverse-proxy                0.1.0.6

Updated ports (211):

archivers/hs-tar                         0.4.0.0_1        --> 0.4.0.1
archivers/hs-zip-archive                 0.1.1.8_1        --> 0.1.2.1
archivers/hs-zlib                        0.5.3.3_1        --> 0.5.4.0
archivers/hs-zlib-bindings               0.1.0.1_1        --> 0.1.1.2
archivers/hs-zlib-conduit                0.4.0.2          --> 0.5.0.3
archivers/hs-zlib-enum                   0.2.2.1_1        --> 0.2.3
audio/hs-libmpd                          0.8.0_1          --> 0.8.0.1
benchmarks/hs-criterion                  0.6.0.1_2        --> 0.6.2.0
converters/hs-dataenc                    0.14.0.3_2       --> 0.14.0.4
converters/hs-json                       0.5_1            --> 0.7
databases/hs-persistent                  0.9.0.4_1        --> 1.0.2.2
databases/hs-persistent-sqlite           0.9.0.2_1        --> 1.0.1
databases/hs-persistent-template         0.9.0.2_1        --> 1.0.0.2
devel/hs-Boolean                         0.0.1_5          --> 0.1.1
devel/hs-DeepArrow                       0.3.5_2          --> 0.3.7
devel/hs-HUnit                           1.2.4.2_2        --> 1.2.5.1
devel/hs-MemoTrie                        0.5_1            --> 0.6.1
devel/hs-MissingH                        1.1.1.0_2        --> 1.2.0.0
devel/hs-MonadCatchIO-mtl                0.3.0.4_3        --> 0.3.0.5
devel/hs-QuickCheck                      2.4.2_1          --> 2.5.1.1
devel/hs-Stream                          0.4.6_2          --> 0.4.6.1
devel/hs-TypeCompose                     0.9.1_2          --> 0.9.7
devel/hs-abstract-deque                  0.1.5_1          --> 0.1.6
devel/hs-alex                            3.0.1_1          --> 3.0.2
devel/hs-arrows                          0.4.4.0_4        --> 0.4.4.1
devel/hs-asn1-data                       0.6.1.3_1        --> 0.7.1
devel/hs-base-unicode-symbols            0.2.2.3_2        --> 0.2.2.4
devel/hs-base64-bytestring               0.1.2.0          --> 1.0.0.0
devel/hs-blaze-builder-conduit           0.4.0.2_1        --> 0.5.0.3
devel/hs-blaze-builder-enumerator        0.2.0.4_1        --> 0.2.0.5
devel/hs-blaze-textual                   0.2.0.6_2        --> 0.2.0.8
devel/hs-bytestring-nums                 0.3.5_2          --> 0.3.6
devel/hs-c2hs                            0.16.3_3         --> 0.16.4
devel/hs-cmdargs                         0.9.5_1          --> 0.10.1
devel/hs-conduit                         0.4.2_1          --> 0.5.5
devel/hs-configurator                    0.2.0.0_2        --> 0.2.0.1
devel/hs-cpphs                           1.14             --> 1.15
devel/hs-darcs                           2.8.1_1          --> 2.8.3
devel/hs-data-default                    0.4.0_1          --> 0.5.0
devel/hs-directory-tree                  0.10.1           --> 0.11.0
devel/hs-edit-distance                   0.2.1_1          --> 0.2.1.1
devel/hs-fast-logger                     0.0.2_2          --> 0.3.1
devel/hs-file-embed                      0.0.4.4_1        --> 0.0.4.6
devel/hs-filemanip                       0.3.5.2_6        --> 0.3.6.2
devel/hs-filestore                       0.5_1            --> 0.5.0.1
devel/hs-filesystem-conduit              0.4.0_1          --> 0.5.0.2
devel/hs-gconf                           0.12.1_3         --> 0.12.1.1
devel/hs-ghc-events                      0.4.0.0_2        --> 0.4.2.0
devel/hs-ghc-mtl                         1.0.1.1_2        --> 1.0.1.2
devel/hs-gio                             0.12.3_1         --> 0.12.4
devel/hs-git-annex                       3.20120807       --> 3.20121211
devel/hs-glib                            0.12.3.1_1       --> 0.12.4
devel/hs-gtk2hs-buildtools               0.12.3.1_1       --> 0.12.4
devel/hs-haddock                         2.10.0_1         --> 2.11.0
devel/hs-happy                           1.18.9_1         --> 1.18.10
devel/hs-hashable                        1.1.2.3_1        --> 1.1.2.5
devel/hs-hashed-storage                  0.5.9_2          --> 0.5.10
devel/hs-hashtables                      1.0.1.6_1        --> 1.0.1.8
devel/hs-haskell-src-exts                1.13.3_1         --> 1.13.5
devel/hs-hastache                        0.4.1            --> 0.4.2
devel/hs-hint                            0.3.3.4_1        --> 0.3.3.5
devel/hs-hlint                           1.8.30           --> 1.8.39
devel/hs-hoogle                          4.2.11_1         --> 4.2.14
devel/hs-hslogger                        1.1.5_2          --> 1.2.1
devel/hs-hspec                           1.2.0.1          --> 1.4.2
devel/hs-language-javascript             0.5.4_1          --> 0.5.7
devel/hs-largeword                       1.0.1_2          --> 1.0.3
devel/hs-lifted-base                     0.1.1_1          --> 0.2
devel/hs-logict                          0.5.0.1_1        --> 0.5.0.2
devel/hs-monad-control                   0.3.1.3_1        --> 0.3.1.4
devel/hs-mtl                             2.1.1_1          --> 2.1.2
devel/hs-murmur-hash                     0.1.0.5_2        --> 0.1.0.6
devel/hs-parallel                        3.2.0.2_1        --> 3.2.0.3
devel/hs-pool-conduit                    0.1.0.2_1        --> 0.1.0.3
devel/hs-primitive                       0.4.1_2          --> 0.5.0.1
devel/hs-resource-pool                   0.2.1.0_1        --> 0.2.1.1
devel/hs-resourcet                       0.3.3.1          --> 0.4.4
devel/hs-silently                        1.2.0.2          --> 1.2.4
devel/hs-split                           0.1.4.3          --> 0.2.1.1
devel/hs-stm                             2.3_1            --> 2.4
devel/hs-syb                             0.3.6.1_1        --> 0.3.7
devel/hs-syb-with-class                  0.6.1.3_2        --> 0.6.1.4
devel/hs-system-fileio                   0.3.8            --> 0.3.10
devel/hs-system-filepath                 0.4.6_1          --> 0.4.7
devel/hs-tagged                          0.4.2.1_1        --> 0.4.4
devel/hs-temporary                       1.1.2.3_1        --> 1.1.2.4
devel/hs-terminfo                        0.3.2.4          --> 0.3.2.5
devel/hs-test-framework                  0.6_1            --> 0.8
devel/hs-test-framework-hunit            0.2.7_2          --> 0.3.0
devel/hs-test-framework-quickcheck2      0.2.12.2_1       --> 0.3.0.1
devel/hs-text                            0.11.2.0_1       --> 0.11.2.3
devel/hs-threadscope                     0.2.1_3          --> 0.2.2
devel/hs-uniplate                        1.6.7_1          --> 1.6.10
devel/hs-unix-compat                     0.3.0.1_1        --> 0.4.0.0
devel/hs-unordered-containers            0.2.1.0_1        --> 0.2.2.1
devel/hs-uuagc                           0.9.40.3_1       --> 0.9.42.2
devel/hs-uuagc-cabal                     1.0.2.0_2        --> 1.0.4.0
devel/hs-vault                           0.2.0.0_1        --> 0.2.0.1
devel/hs-vector                          0.9.1_2          --> 0.10.0.1
devel/hs-vector-algorithms               0.5.4_1          --> 0.5.4.2
devel/hs-void                            0.5.6            --> 0.5.8
ftp/hs-curl                              1.3.7_3          --> 1.3.8
graphics/hs-cairo                        0.12.3.1_1       --> 0.12.4
lang/hs-unlambda                         0.1_6            --> 0.1.3
mail/hs-email-validate                   0.2.8_1          --> 0.3.2
mail/hs-mime                             0.3.3.2          --> 0.3.4
mail/hs-mime-mail                        0.4.1.1_2        --> 0.4.1.2
math/hs-categories                       1.0.3_1          --> 1.0.4
math/hs-comonad                          1.1.1.6_1        --> 3.0.0.2
math/hs-comonad-transformers             2.1.2            --> 3.0
math/hs-data-lens                        2.10.0_1         --> 2.10.2
math/hs-data-lens-template               2.1.5_1          --> 2.1.7
math/hs-math-functions                   0.1.1.1_2        --> 0.1.1.2 [1]
math/hs-mwc-random                       0.12.0.0_1       --> 0.12.0.1
math/hs-pointed                          2.1.0.2_1        --> 3.0.1
math/hs-semigroupoids                    1.3.4            --> 3.0.0.1
math/hs-semigroups                       0.8.3.2_1        --> 0.8.4.1
math/hs-statistics                       0.10.1.0_1       --> 0.10.2.0
math/hs-vector-space                     0.8.2            --> 0.8.6
multimedia/hs-gstreamer                  0.12.1.1_1       --> 0.12.1.2
net/hs-network                           2.3.0.13_1       --> 2.3.1.0
net/hs-network-conduit                   0.4.0.1_1        --> 0.6.1.1
net/hs-pcap                              0.4.5.1_4        --> 0.4.5.2
net/hs-sendfile                          0.7.6_1          --> 0.7.8
net/hs-simple-sendfile                   0.2.4            --> 0.2.8
net/hs-socks                             0.4.1_1          --> 0.4.2
print/hs-hscolour                        1.20.2,1         --> 1.20.3,1
security/hs-Crypto                       4.2.5_1          --> 4.2.5.1
security/hs-HsOpenSSL                    0.10.3.2         --> 0.10.3.3
security/hs-RSA                          1.2.1.0_1        --> 1.2.2.0
security/hs-SHA                          1.5.0.1_1        --> 1.6.1
security/hs-certificate                  1.2.3_1          --> 1.3.3
security/hs-clientsession                0.7.5_1          --> 0.8.0.1
security/hs-cprng-aes                    0.2.3_2          --> 0.2.4
security/hs-crypto-conduit               0.3.2_1          --> 0.4.1
security/hs-crypto-pubkey-types          0.1.1_1          --> 0.2.0
security/hs-cryptocipher                 0.3.5            --> 0.3.6
security/hs-cryptohash                   0.7.5_1          --> 0.7.9
security/hs-digest                       0.0.1.1_1        --> 0.0.1.2
security/hs-monadcryptorandom            0.4.1_1          --> 0.5
security/hs-pureMD5                      2.1.0.3_2        --> 2.1.2.1
security/hs-pwstore-fast                 2.2_2            --> 2.3
security/hs-skein                        0.1.0.7_1        --> 0.1.0.10
security/hs-tls                          0.9.5_1          --> 1.0.2
security/hs-tls-extra                    0.4.6_1          --> 0.5.0
sysutils/hs-angel                        0.3.2_1          --> 0.3.3
textproc/hs-HStringTemplate              0.6.8_2          --> 0.6.12
textproc/hs-attoparsec-conduit           0.4.0.1_1        --> 0.5.0.3
textproc/hs-attoparsec-enumerator        0.3_2            --> 0.3.1
textproc/hs-blaze-html                   0.5.0.0          --> 0.5.1.1
textproc/hs-blaze-markup                 0.5.1.0_1        --> 0.5.1.2
textproc/hs-case-insensitive             0.4.0.1_2        --> 0.4.0.3
textproc/hs-citeproc-hs                  0.3.4_1          --> 0.3.6
textproc/hs-double-conversion            0.2.0.4_2        --> 0.2.0.5
textproc/hs-highlighting-kate            0.5.1_1          --> 0.5.3.3
textproc/hs-hs-bibutils                  4.12_4           --> 4.15
textproc/hs-html-conduit                 0.0.1_1          --> 0.1.0.4
textproc/hs-hxt                          9.2.2_1          --> 9.3.1.1
textproc/hs-lhs2tex                      1.17_4           --> 1.18.1
textproc/hs-pandoc                       1.9.4.2          --> 1.9.4.5
textproc/hs-parsec                       3.1.2_1          --> 3.1.3
textproc/hs-regex-pcre-builtin           0.94.2.1.7.7_4   --> 0.94.4.3.8.31
textproc/hs-regex-posix                  0.95.1_2         --> 0.95.2
textproc/hs-stringsearch                 0.3.6.3_2        --> 0.3.6.4
textproc/hs-tagsoup                      0.12.6_2         --> 0.12.8
textproc/hs-tagstream-conduit            0.3.2_1          --> 0.5.3
textproc/hs-texmath                      0.6.0.6_1        --> 0.6.1.1
textproc/hs-xml-conduit                  0.7.0.3_1        --> 1.0.3.3
textproc/hs-xml-types                    0.3.2            --> 0.3.3
textproc/hs-xmlhtml                      0.2.0.2          --> 0.2.0.3
textproc/hs-yaml                         0.7.0.3          --> 0.8.1.1
www/hs-HTTP                              4000.2.3_1       --> 4000.2.5
www/hs-authenticate                      1.2.1.1_1        --> 1.3.2
www/hs-cookie                            0.4.0_1          --> 0.4.0.1
www/hs-gitit                             0.10.0.1         --> 0.10.0.2
www/hs-hamlet                            1.0.1.4          --> 1.1.1.1
www/hs-happstack                         7.0.0_1          --> 7.0.1
www/hs-happstack-server                  7.0.3            --> 7.1.1
www/hs-heist                             0.8.1.1          --> 0.8.2
www/hs-hjsmin                            0.1.2_1          --> 0.1.3
www/hs-http-conduit                      1.4.1.10         --> 1.8.4.3
www/hs-http-date                         0.0.2_1          --> 0.0.3
www/hs-http-server                       1_5              --> 1.0.1
www/hs-http-types                        0.6.11_1         --> 0.7.3.0.1
www/hs-path-pieces                       0.1.1_1          --> 0.1.2
www/hs-shakespeare                       1.0.0.2_1        --> 1.0.2
www/hs-shakespeare-css                   1.0.1.2_1        --> 1.0.2
www/hs-shakespeare-js                    1.0.0.3_1        --> 1.1.0
www/hs-shakespeare-text                  1.0.0.2_1        --> 1.0.0.5
www/hs-snap                              0.9.0.1          --> 0.9.2.2
www/hs-snap-core                         0.9.0            --> 0.9.2.2
www/hs-snap-server                       0.9.0            --> 0.9.2.4
www/hs-wai                               1.2.0.3          --> 1.3.0.1
www/hs-wai-app-static                    1.2.0.4          --> 1.3.0.4
www/hs-wai-extra                         1.2.0.5          --> 1.3.0.4
www/hs-wai-logger                        0.1.4_1          --> 0.3.0
www/hs-wai-test                          1.2.0.2_1        --> 1.3.0
www/hs-warp                              1.2.2            --> 1.3.5
www/hs-yesod                             1.0.1.6_1        --> 1.1.4.1
www/hs-yesod-auth                        1.0.2.1_1        --> 1.1.2
www/hs-yesod-core                        1.0.1.2_1        --> 1.1.6.1
www/hs-yesod-default                     1.0.1.1_1        --> 1.1.2
www/hs-yesod-form                        1.0.0.4_1        --> 1.2.0.1
www/hs-yesod-json                        1.0.0.1_1        --> 1.1.2
www/hs-yesod-persistent                  1.0.0.1_1        --> 1.1.0
www/hs-yesod-platform                    1.0.5            --> 1.1.5
www/hs-yesod-routes                      1.0.1.2_1        --> 1.1.1.1
www/hs-yesod-static                      1.0.0.3_1        --> 1.1.1.1
www/hs-yesod-test                        0.2.1            --> 0.3.1.1
x11-toolkits/hs-gtk                      0.12.3.1         --> 0.12.4
x11-toolkits/hs-pango                    0.12.3_1         --> 0.12.4

Removed ports (1):

textproc/hs-xml2html                     0.1.2.3_1

Approved by:	wen (maintainer) [1]
Obtained from:	FreeBSD Haskell
2012-12-20 02:23:04 +00:00
Ruslan Makhmatkhanov
5a277829b8 A fast Documentation generator for PHP Code using standard technology (SRC,
DOCBLOCK, XML and XSLT) with event based processing.

WWW: http://phpdox.de/

PR:		172767
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2012-12-19 20:09:39 +00:00
Ruslan Makhmatkhanov
ea29a60149 The classes contained within this repository extend the standard XSLTProcess to
use exceptions at all occasions of errors instead of PHP warnings, notices or
semi completed transformations. They also add various custom methods and short-
cuts for convinience and to allow a nicer API to implement callbacks to the PHP
stack.

WWW: https://github.com/theseer/fXSL/

PR:		172766
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2012-12-19 20:08:40 +00:00
Ruslan Makhmatkhanov
499f3eadf8 An Extension to PHP's standard DOM to add various convinience methods and
exceptions by default.

WWW: https://github.com/theseer/fDOMDocument/

PR:		172765
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2012-12-19 20:07:45 +00:00
Ruslan Makhmatkhanov
a17288e71f A recursive directory scanner and filter.
WWW: https://github.com/theseer/DirectoryScanner/

PR:		172762
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2012-12-19 20:05:43 +00:00
Baptiste Daroussin
73ce74bbae DeforaOS system library
PR:		ports/172987
Submitted by:	Olivier Cochard-Labbe <olivier@cochard.me>
2012-12-19 00:49:34 +00:00
Martin Matuska
d233d23153 Rename horde4-* apps to horde-* 2012-12-18 07:29:02 +00:00
Pawel Pekala
2e49ed2685 Pirum is a simple PEAR channel server manager.
WWW: http://pirum.sensiolabs.org/

PR:		ports/171749
Submitted by:	Gasol Wu <gasol.wu@gmail.com>
2012-12-17 16:32:27 +00:00
Steven Kreuzer
199257ebcd Clone Digger aims to detect similar code in Python and Java programs.
The synonyms for the term "similar code" are "clone" and "duplicate code".

WWW:	http://clonedigger.sourceforge.net/
2012-12-17 16:13:08 +00:00
Martin Matuska
07c5fe7fe6 Remove devel/pear-Horde_DataTree, obsolete in Horde5 2012-12-16 10:49:49 +00:00
Jason Helfman
3c5395e9db - add new port: devel/libslave
This is a library that allows any arbitrary C++ application to connect
to a Mysql replication master and read/parse the replication binary
logs.

In effect, any application can now act like a Mysql replication slave,
without having to compile or link with any Mysql server code.

One important use-case for this library is for receiving changes in
the master database in real-time, without having the store the
master's data on the client server.

WWW: https://github.com/Begun/libslave

PR:		174335
Submitted by:	g.veniamin@googlemail.com
2012-12-15 08:11:02 +00:00
Jason Helfman
78877facff - add new port: devel/cocaine-core
Your personal app engine. Technically speaking, it's an open-source cloud
platform enabling you to build your own PaaS clouds using simple yet
effective dynamic components.

WWW: http://reverbrain.com/cocaine/

PR:		174301
Submitted by:	g.veniamin@googlemail.com
2012-12-15 07:26:57 +00:00
Anton Berezin
c28e0167f4 Add devel/p5-Data-Thunk 0.07, a Perl module implementing lazy evaluation. 2012-12-13 10:36:08 +00:00
Anton Berezin
9217d0ff50 Add devel/p5-UNIVERSAL-ref 0.14, a Perl module that turns the ref()
builtin function into a multimethod.
2012-12-13 10:28:44 +00:00
Anton Berezin
e3d0316981 Add devel/p5-Devel-Refcount 0.09, a perl module to obtain the REFCNT
value of a Perl variable.
2012-12-13 09:48:57 +00:00
Jose Alonso Cardenas Marquez
8dcfc1b32a - New port: devel/fpc-fcl-extra
Free Pascal Component Library
2012-12-12 20:25:47 +00:00
Martin Matuska
8388f6b147 Horde library for parsing timezone databases and generating
VTIMEZONE iCalendar components.

WWW: http://pear.horde.org
2012-12-12 14:50:49 +00:00
Martin Matuska
029ee1cea4 An Horde object-oriented interface to assist in creating and storing PHP
stream resources, and to provide utility methods to access and manipulate
the stream contents.

WWW: http://pear.horde.org
2012-12-12 14:49:52 +00:00