non port: devel/Makefile |
Number of commits found: 11319 (showing only 100 on this page) |
Saturday, 13 Aug 2011
|
21:07 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
|
20:47 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
|
20:44 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
|
20:36 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
|
20:33 pgj
Parse numeric literals from ByteStrings.
WWW: http://github.com/solidsnack/bytestring-nums
Obtained from: FreeBSD Haskell
|
18:36 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
|
18:08 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
|
17:05 az
MooseX::Types::LoadableClass - ClassName type constraint with coercion to load
the class.
WWW: http://search.cpan.org/dist/MooseX-Types-LoadableClass/
|
Friday, 12 Aug 2011
|
13:23 gahr
- New port: devel/cdash
CDash is an open source, web-based software testing server. CDash aggregates,
analyzes and displays the results of software testing processes submitted
from clients located around the world. Developers depend on CDash to convey
the state of a software system, and to continually improve its quality. CDash
is a part of a larger software process that integrates Kitware's CMake,
CTest, and CPack tools, as well as other external packages used to design,
manage and maintain large-scale software systems. Good examples of a CDash
are the CMake quality dashboard and the VTK quality dashboard.
WWW: http://www.cdash.org/
|
Thursday, 11 Aug 2011
|
10:56 wen
File::ShareDir::PathClass is just a wrapper around File::ShareDir
functions, transforming their return value to Path::Class objects.
This allows for easier usage of the value.
WWW: http://search.cpan.org/dist/File-ShareDir-PathClass/
|
Wednesday, 10 Aug 2011
|
16:40 swills
Sprockets is a Ruby library that preprocesses and concatenates
JavaScript source files. It takes any number of source files
and preprocesses them line-by-line in order to build a single
concatenation.
WWW: http://getsprockets.org/
PR: ports/159397
Submitted by: Mikhail T. <m.tsatsenko at gmail.com>
|
12:27 sunpoet
- Add p5-Tie-Function 0.02
Tie::Function simplifies wrapping functions in tied hash syntax so they can be
interpolated in double-quoted literals without messy intermediate variables.
WWW: http://search.cpan.org/dist/Tie-Function/
|
12:24 sunpoet
- Add p5-Hash-FieldHash 0.10
Hash::FieldHash provides the field hash mechanism which supports the inside-out
technique.
You may know Hash::Util::FieldHash. It's a very useful module, but too complex
to understand all the functions and only available in 5.10. H::U::F::Compat is
available for pre-5.10, but it seems too slow to use.
This is an alternative to H::U::F with following features:
Simpler interface
- Hash::FieldHash provides a few functions: fieldhash() and fieldhashes().
That's enough.
Higher performance
- Hash::FieldHash is faster than Hash::Util::FieldHash, because its internals
use simpler structures.
Relic support
- Although Hash::FieldHash uses a new feature introduced in Perl 5.10, the uvar
magic for hashes described in "GUTS" in Hash::Util::Fieldhash, it supports
Perl 5.8 using the traditional tie-hash layer.
WWW: http://search.cpan.org/dist/Hash-FieldHash/
|
12:13 sunpoet
- Add p5-Test-LeakTrace 0.13
Test::LeakTrace provides several functions that trace memory leaks. This module
scans arenas, the memory allocation system, so it can detect any leaked SVs in
given blocks.
Leaked SVs are SVs which are not released after the end of the scope they have
been created. These SVs include global variables and internal caches. For
example, if you call a method in a tracing block, perl might prepare a cache for
the method. Thus, to trace true leaks, no_leaks_ok() and leaks_cmp_ok() executes
a block more than once.
WWW: http://search.cpan.org/dist/Test-LeakTrace/
|
12:07 sunpoet
- Add p5-Data-Section-Simple 0.02
Data::Section::Simple is a simple module to extract data drom __DATA__ section
of the file.
WWW: http://search.cpan.org/dist/Data-Section-Simple/
|
Tuesday, 9 Aug 2011
|
12:11 wen
zope.i18n implements several APIs related to internationalization
and localization:
* Locale objects for all locales maintained by the ICU project.
* Gettext-based message catalogs for message strings.
* Locale discovery for Web-based requests.
WWW: http://www.python.org/pypi/zope.i18n
|
11:30 crees
Remove expired port
2011-08-09 devel/fossology: Broken for four months with no-one caring
PR: ports/157593
|
Monday, 8 Aug 2011
|
20:11 pav
MessagePack is a binary-based efficient data interchange format that is focused
on high performance. It is like JSON, but very fast and small.
WWW: http://pypi.python.org/pypi/msgpack-python/
PR: ports/159111
Submitted by: Andrey Zonov <andrey@zonov.org>
|
19:20 pav
py.test is a simple and popular testing tool for Python.
WWW: http://pytest.org/
PR: ports/158940
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
|
13:29 pav
GNU LIBUNISTRING - Unicode string library
This library provides functions for manipulating Unicode strings and
for manipulating C strings according to the Unicode standard.
WWW: http://www.gnu.org/software/libunistring/
PR: ports/157172
Submitted by: Takefu <takefu@airport.fm>
|
10:01 romain
Getopt::Declare is yet another command-line argument parser, one which is
specifically designed to be powerful but exceptionally easy to use. It supports
many options not supported by optparser or getoptlong as well as it has a
simpler syntax.
WWW: http://rubyforge.org/projects/getoptdeclare/
|
Saturday, 6 Aug 2011
|
08:01 tota
- Add a new port: devel/rubygem-io-like
The IO::Like module provides all of the methods of typical IO implementations
such as File; most importantly the read, write, and seek series of methods. A
class which includes IO::Like needs to provide only a few methods in order to
enable the higher level methods. Buffering is automatically provided by
default
for the methods which normally provide it in IO.
WWW: https://github.com/javanthropus/io-like
|
Friday, 5 Aug 2011
|
18:24 pgollucci
Date::Business provides the functionality to perform simple date manipulations
quickly. Support for calendar date and business date math is provided.
Business dates are weekdays only. Adding 1 to a weekend returns Monday,
subtracting 1 returns Friday.
The difference in business days between Friday and the following
Monday (using the diffb function) is one business day. The
number of business days between Friday and the following
Monday (using the betweenb function) is zero.
|
14:03 tota
- Add a new port: devel/py-funcparserlib
Parser combinators are just higher-order functions that take parsers as
their arguments and return them as result values. Parser combinators are:
* First-class values
* Extremely composable
* Tend to make the code quite compact
* Resemble the readable notation of xBNF grammars
Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that
it's very easy to write them without thinking about look-aheads and all that
hardcore parsing stuff. But the recursive descent parsing is a rather slow
method compared to LL(k) or LR(k) algorithms.
So the primary domain for funcparserlib is parsing little languages or
external
DSLs (domain specific languages).
The library itself is very small. Its source code is only 0.5 KLOC, with lots
of comments included. It features the longest parsed prefix error reporting,
as well as a tiny lexer generator for token position tracking.
WWW: http://code.google.com/p/funcparserlib/
|
Wednesday, 3 Aug 2011
|
15:46 amdmi3
- Remove antlr2-python-runtime by maintainer's request: the port is not needed
since it's contained in devel/antlr
Submitted by: arrowdodger <6yearold at gmail.com> (maintainer)
|
06:49 bapt
Removing old ruby stuff
2011-08-03 comms/ruby-serialport: Doesn't work with Ruby 1.9
2011-08-03 databases/ruby-search-namazu: Doesn't work with Ruby 1.9
2011-08-03 databases/ruby-sqlite: Doesn't work with Ruby 1.9
2011-08-03 databases/rubygem-kirbybase: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-eet: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-filelock: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-filemagic: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-metaruby: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-poll: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-rrb: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-strongtyping: Doesn't work with Ruby 1.9
2011-08-03 devel/ruby-textbuf: Doesn't work with Ruby 1.9
2011-08-03 graphics/ruby-graph: Doesn't work with Ruby 1.9
2011-08-03 graphics/ruby-libpng: Doesn't work with Ruby 1.9
2011-08-03 japanese/ruby-kakasi: Doesn't work with Ruby 1.9
2011-08-03 lang/ruby-extensions: Doesn't work with Ruby 1.9
2011-08-03 lang/ruby-lua: Doesn't work with Ruby 1.9
2011-08-03 lang/ruby-perl: Doesn't work with Ruby 1.9
2011-08-03 mail/ruby-tmail: Doesn't work with Ruby 1.9
2011-08-03 math/ruby-bitset: Doesn't work with Ruby 1.9
2011-08-03 math/ruby-bitvector: Doesn't work with Ruby 1.9
2011-08-03 math/ruby-gmp: Doesn't work with Ruby 1.9
2011-08-03 net/ruby-mpi: Doesn't work with Ruby 1.9
2011-08-03 net/ruby-nis: Doesn't work with Ruby 1.9
2011-08-03 net/ruby-pcap: Doesn't work with Ruby 1.9
2011-08-03 net/ruby-romp: Doesn't work with Ruby 1.9
2011-08-03 net/ruby-spread: Doesn't work with Ruby 1.9
2011-08-03 print/ruby-pdflib: Doesn't work with Ruby 1.9
2011-08-03 security/ruby-aes: Doesn't work with Ruby 1.9
2011-08-03 security/ruby-blowfish: Doesn't work with Ruby 1.9
2011-08-03 security/ruby-cast_256: Doesn't work with Ruby 1.9
2011-08-03 security/ruby-mcrypt: Doesn't work with Ruby 1.9
2011-08-03 security/ruby-pam: Doesn't work with Ruby 1.9
2011-08-03 sysutils/ruby-log4r: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-csv: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-formvalidator: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-gdome: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-htmltools: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-nqxml: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-quixml: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-raspell: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-tempura: Doesn't work with Ruby 1.9
2011-08-03 textproc/ruby-xtemplate: Doesn't work with Ruby 1.9
2011-08-03 www/ruby-tmpl: Doesn't work with Ruby 1.9
|
Tuesday, 2 Aug 2011
|
09:01 bapt
Remove ports BROKEN for more than 6 months
devel/simian
databases/mysql-gui-tools
Approved by: gahr (maintainer)
|
Monday, 1 Aug 2011
|
05:46 bapt
Depend on expired sql_gui port
devel/eboxy
|
05:01 bapt
Bye bye abandonwares (part 3)
2011-08-01 deskutils/gkrellm-timers: No more public distfile
2011-08-01 deskutils/multi-backgrounds-daemon: Looks like an abandonware, no
more public distfile
2011-08-01 deskutils/py-tagfu: Looks like an abandonware, no more public
distfile
2011-08-01 deskutils/taskstep: Looks like an abandonware, no more public
distfile
2011-08-01 devel/c_c++_reference: No more public distfiles
2011-08-01 devel/libcoyotl: Looks like an abandonware, no more public distfile
2011-08-01 devel/libfs++: Looks like an abandonware, no more public distfile
2011-08-01 devel/mkmf: Looks like an abandonware, no more public distfile
2011-08-01 devel/p5-Include: No more public distfiles
2011-08-01 devel/rubygem-newgem: broken since 2010/09/22
2011-08-01 devel/tpg: Looks like an abandonware, no more public distfile
2011-08-01 games/amphetamine: Looks like an abandonware, no more public distfile
2011-08-01 games/anagramarama: Looks like an abandonware, no more public
distfile
2011-08-01 games/connect4
2011-08-01 games/wrogue: No more public distfiles, looks like an abandonware
2011-08-01 graphics/xmms-msa: Looks like an abandonware, no more public distfile
2011-08-01 japanese/chimera: Look like an abandonware, no more public distifles
2011-08-01 japanese/drpl: Look like an abandonware, no more public distifles
2011-08-01 japanese/dvi2tty: Look like an abandonware, no more public distifles
2011-08-01 japanese/easypr: Look like an abandonware, no more public distifles
2011-08-01 japanese/elisp-manual: Look like an abandonware, no more public
distifles
2011-08-01 japanese/emacs-manual: Look like an abandonware, no more public
distifles
2011-08-01 japanese/ewipe: Look like an abandonware, no more public distifles
2011-08-01 japanese/ircII: Look like an abandonware, no more public distifles
2011-08-01 japanese/jhd: Look like an abandonware, no more public distifles
2011-08-01 japanese/libjconv: Look like an abandonware, no more public distifles
2011-08-01 japanese/mimekit: Look like an abandonware, no more public distifles
2011-08-01 japanese/nethack32: Look like an abandonware, no more public
distifles
2011-08-01 japanese/paledit: Look like an abandonware, no more public distifles
2011-08-01 japanese/plain2: Look like an abandonware, no more public distifles
2011-08-01 japanese/recjis: Look like an abandonware, no more public distifles
2011-08-01 japanese/typist: Look like an abandonware, no more public distifles
2011-08-01 japanese/weblint97: Look like an abandonware, no more public
distifles
2011-08-01 japanese/xmsgsaver: Look like an abandonware, no more public
distifles
2011-08-01 japanese/xshodo: Look like an abandonware, no more public distifles
2011-08-01 japanese/xvi-euc: No more public distfiles
2011-08-01 japanese/xvi-sjis: No more public distfiles
2011-08-01 japanese/xyagamo: Look like an abandonware, no more public distifles
|
02:53 sunpoet
- Sort SUBDIRs
- Fix NO_VIET_KDE coverage
|
Sunday, 31 Jul 2011
|
14:06 swills
Clio is a great way to build commandline tools.
It provides an advanced options parser with a variety of notations
suited to almost any perfered style, and provides a very rich and easy to use
library for generating console output.
WWW: http://clio.rubyforge.org
PR: ports/158743
Submitted by: Loic Pefferkorn <loic-freebsd at loicp.eu>
|
Saturday, 30 Jul 2011
|
19:19 swills
An easy to use, customizable library to easily store and retrieve application
(or library) configuration in key/value pairs.
WWW: https://github.com/oshuma/app_config/
PR: ports/159273
Submitted by: milki <milki at rescomp.berkeley.edu>
|
09:20 kwm
Update the glib and gtk stack to the lastest stable releases.
Add new ports for the new stable releases of gtk+-3.0.
Update vala to the newest stable release 0.12.1.
Thanks to pav@ for doing multiple exp-runs, and marcus@ for repo-copies.
Full contributors acknowledgment will be given in the GNOME 3 import.
|
09:07 kwm
Remove the last few gir-repository ports. They aren't used anywhere.
|
Friday, 29 Jul 2011
|
22:16 tdb
- Add new port gitolite:
Gitolite is an access control layer on top of git, which allows access control
down to the branch level, including specifying who can and cannot rewind a
given branch.
Gitolite lets you use a single user on a server to host many git repositories
and provide access to many developers, without having to give them real
userids on or shell access to the server. Authentication is most commonly done
using sshd, but you can also use httpd if you prefer.
Gitolite can restrict who can read from (clone/fetch) or write to (push) a
repository. It can also restrict who can push to what branch or tag, which is
very important in a corporate environment.
WWW: https://github.com/sitaramc/gitolite
PR: ports/159260
Submitted by: milki <milki at rescomp.berkeley.edu>
|
Wednesday, 27 Jul 2011
|
14:16 crees
Also add devel/msp430-gcc3 to build
Pointyhat to: lev
|
07:19 kuriyama
Validation::Class is a different approach to data validation, it
attempts to simplify and centralize data validation rules to ensure
DRY (don't repeat yourself) code. The primary intent of this module is
to provide a simplistic validation work-flow and promote code
(validation) reuse.
WWW: http://search.cpan.org/dist/Validation-Class/
|
Tuesday, 26 Jul 2011
|
20:31 crees
Fix INDEX build -- attach devel/msp430mcu
|
Saturday, 23 Jul 2011
|
09:22 sunpoet
- Add p5-Regexp-RegGrp 1.002
Regexp::RegGrp is a Perl modele to group regular expressions to one regular
expression.
WWW: http://search.cpan.org/dist/Regexp-RegGrp/
|
Friday, 22 Jul 2011
|
22:51 bapt
Add mdds: A collection of multi-dimensional data structure and indexing
algorithm.
|
11:35 culot
Term::Sk is a class to implement a progress indicator ("Sk" is a short form
for "Show Key"). This is used to provide immediate feedback for long running
processes.
WWW: http://search.cpan.org/dist/Term-Sk/
PR: ports/159061
Submitted by: milki <milki@rescomp.berkeley.edu>
|
Thursday, 21 Jul 2011
|
10:39 sunpoet
- Add p5-Log-Dispatch-Dir 0.10
constraints. Each message will be logged to a separate file the directory.
Logging to separate files can be useful for example when dumping whole network
responses (like HTTP::Response content).
WWW: http://search.cpan.org/dist/Log-Dispatch-Dir/
|
09:34 sunpoet
- Add p5-Taint-Util 0.08
Taint::Util wraps perl's internal routines for checking and setting the taint
flag and thus does not rely on regular expressions for untainting or odd tricks
involving eval and kill for checking whether data is tainted, instead it checks
and flips a flag on the scalar in-place.
WWW: http://search.cpan.org/dist/Taint-Util/
|
02:43 linimon
Disconnect the following deprecated ports that only work with java1.4:
devel/colorer
java/jboss3
security/jce_policy14
textproc/galax
PR: ports/158969
Submitted by: rene
|
Tuesday, 19 Jul 2011
|
23:07 ohauer
Blame displays the last modification for each line in an
RCS file. It is the RCS equivalent of CVS's annotate
command.
WWW: http://blame.sourceforge.net
PR: ports/159028
Submitted by: John Hein <jhein at symmetricom.com>
|
17:06 kmoore
- New port devel/qt4-qtsolutions-singleapplication
This is QSingleApplication class which is used to create single instance QtGui
or QtCore applications.
WWW: http://qt.gitorious.org/qt-solutions
Submitted by: yurkis@gmail.com
Reviewed by: kmoore@freebsd.org
|
Thursday, 14 Jul 2011
|
14:46 rea
New port: devel/py-smmap
PR: ports/158797
Submitted-by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Approved-by: erwin (mentor)
Feature-safe: yes
|
Monday, 11 Jul 2011
|
10:48 mm
PEAR FilterIterator implementation that filters files based
on a list of suffixes.
WWW: http://pear.phpunit.de/
|
09:42 mm
PEAR channel for the symfony project
WWW: http://pear.symfony-project.com/
|
08:37 mm
PEAR channel for PHPUnit
WWW: http://pear.phpunit.de
|
Sunday, 10 Jul 2011
|
21:40 swills
UUID - Perl extension for using UUID interfaces as defined in e2fsprogs.
WWW: http://search.cpan.org/~jnh/UUID/
|
Saturday, 9 Jul 2011
|
16:38 beech
- Exercisix is a lightweight unit-test framework for C++, designed for
test-aided development. Framework provides test discovery, textual
description as primary test identifier, terse test tools syntax,
emacs-friendly error message format, easy build without linking.
|
15:31 swills
FastRI improves on the aging RI documentation tool: much faster, needs less
RAM, "scoped" searches, e.g. get String extensions defined in a given RubyGems
package, fast full-text search, remote access via DRb (auto-discovered).
Author: Mauricio Julio Fernandez Pradier <mfp@acm.org>
WWW: http://rubygems.org/gems/fastri
|
Thursday, 7 Jul 2011
|
22:31 mm
This application provides tagging support for the other Horde applications.
WWW: http://pear.horde.org
|
22:03 beech
- Replaced by new pear install
deskutils/horde4-alarm
devel/horde4-content
devel/horde4-rdo
devel/horde4-date
devel/horde4-autoloader
devel/horde4-cache
devel/horde4-dateparser
devel/horde4-translation
devel/horde4-streamfilter
devel/horde4-constraint
devel/horde4-streamwrapper
|
21:17 mm
The timeobjects application doesn't have an interface but provides streams
of events to any applications that can consume them, notably the Horde
calendar application. It contains drivers for facebook events and weather
forecasts and can easily be extended by custom drivers.
WWW: http://www.horde.org
|
21:10 mm
This Horde package allows to generate MIME encapsuled responses to iCalendar
invitations.
WWW: http://pear.horde.org
|
21:04 mm
Horde DataTree API
WWW: http://pear.horde.org
|
20:58 mm
This Horde package provides a tree view of hierarchical information.
It allows for expanding/collapsing of branches and maintains their state.
WWW: http://pear.horde.org
|
20:47 mm
Horde package providing classes for parsing command line arguments with
various actions, providing help, grouping options, and more.
WWW: http://pear.horde.org
|
20:29 mm
Horde lightweight ORM layer
WWW: http://pear.horde.org
|
20:27 mm
These classes provide the core functionality of the
Horde Application Framework.
WWW: http://pear.horde.org
|
20:00 mm
This Horde package provides an interface to deal with reminders, alarms and
notifications through a standardized API. The following notification methods
are available at the moment: standard Horde notifications, popups, emails, sms.
WWW: http://pear.horde.org
|
19:58 mm
Horde data import and export API, with backends for:
* CSV
* TSV
* iCalendar
* vCard
* vNote
* vTodo
WWW: http://pear.horde.org
|
19:48 mm
This Horde package provides an API for dealing with iCalendar data.
WWW: http://pear.horde.org
|
19:47 mm
The Horde_History API provides a way to track changes
on arbitrary pieces of data in Horde applications.
WWW: http://pear.horde.org
|
19:29 mm
Horde library for natural-language date parsing,
with support for multiple languages and locales
WWW: http://pear.horde.org
|
19:29 mm
Horde package for creating and manipulating dates.
WWW: http://pear.horde.org
|
19:25 mm
Horde package providing common methods for handling language data,
timezones, and hostname->country lookups.
WWW: http://pear.horde.org
|
19:20 mm
This Horde package provides a simple, functional caching API, with the option
to store the cached data on the filesystem, in one of the PHP opcode cache
systems (APC, eAcclerator, XCache, or Zend Performance Suite's content cache),
memcached, or an SQL table.
WWW: http://pear.horde.org
|
19:16 mm
This package provides the controller part of an MVC system for Horde.
WWW: http://pear.horde.org
|
19:13 mm
This Horde package provides a programmatic way of building
constraints that evaluate to true or false.
WWW: http://pear.horde.org
|
19:12 mm
The Horde_Prefs package provides a common abstracted interface into
the various preferences storage mediums. It also includes all
of the functions for retrieving, storing, and checking preference values.
WWW: http://pear.horde.org
|
18:44 mm
The Horde_Notification library provides a subject-observer pattern
for raising and showing messages of different types and to different
listeners.
WWW: http://pear.horde.org
|
18:42 mm
The Horde_Serialize library provides various methods of encapsulating data.
WWW: http://pear.horde.org
|
18:39 mm
The Horde_Token:: class provides a common abstracted interface into
the various token generation mediums. It also includes all of the functions
for retrieving, storing, and checking tokens.
WWW: http://pear.horde.org
|
18:38 mm
The Horde_View library provides a simple View pattern implementation.
WWW: http://pear.horde.org
|
18:14 mm
Horde classes providing functionality for various types of applications.
WWW: http://pear.horde.org
|
18:10 mm
Horde_Cli:: API for basic command-line functionality/checks
WWW: http://pear.horde.org
|
18:09 mm
The Horde_LoginTasks library provides a set of methods for dealing with tasks
run upon login to Horde applications.
WWW: http://pear.horde.org
|
18:06 mm
Horde translation library
WWW: http://pear.horde.org
|
18:05 mm
The Horde_Lock library provides the Horde resource locking system.
WWW: http://pear.horde.org
|
18:04 mm
This package provides supporting functionality for Horde that is not tied
to Horde but is used by it.
These classes can be used outside of Horde as well.
WWW: http://pear.horde.org
|
18:02 mm
Depedency injection container for Horde.
WWW: http://pear.horde.org
|
17:59 mm
Default exception handlers for the Horde Application Framework.
WWW: http://pear.horde.org
|
17:53 mm
This Horde package provides various stream wrappers.
WWW: http://pear.horde.org
|
17:52 mm
Autoload implementation and class loading manager for Horde.
WWW: http://pear.horde.org
|
17:50 mm
This Horde package provides various stream filters.
WWW: http://pear.horde.org
|
17:44 mm
PEAR method to install Horde components into a base Horde installation.
WWW: http://pear.horde.org
|
17:34 mm
PEAR channel for the Horde framework and applications
WWW: http://pear.horde.org
|
Saturday, 2 Jul 2011
|
16:01 rene
Remove expired ports:
2011-07-01 devel/libevocosm: Looks like and abandonware
2011-07-01 devel/acovea: Looks like abandonware.
2011-07-01 devel/acovea-gtk: Looks like abandonware.
2011-06-29 sysutils/service-config: "mastersite disappeared"
|
Friday, 1 Jul 2011
|
06:38 kevlo
Initial import of iniparser-3.0
Iniparser is a free stand-alone ini file parsing library.
|
Monday, 27 Jun 2011
|
14:44 miwi
This module provides an interface to libffi which enables you to call C
functions from Pure and vice versa. It extends and complements Pure's
built-in C interface in that it also handles C structs and makes Pure
functions callable from C without writing a single line of C code.
WWW: http://docs.pure-lang.googlecode.com/hg/pure-ffi.html
PR: ports/156103
Submitted by: Zhihao Yuan <lichray at gmail.com>
|
14:36 miwi
The core idea of libee is to provide a small but hopefully convenient
API layer above the CEE standard. However, CEE is not finished. At the
time of this writing, CEE is under heavy development and even some of
its core data structures (like the data dictionary and taxonomy) have
not been fully specified. So for the time being, libee should be
thought of as a useful library that helps you get your events
normalized. If you program cleanly to libee, chances are not bad that
only relatively little effort is required to move your app over to be
CEE compliant (once the standard is out).
WWW: http://www.libee.org/
PR: ports/158344
Submitted by: Jim Riggs <ports at christianserving.org>
|
14:35 miwi
A library for some string essentials.
WWW: http://libestr.adiscon.com/
PR: ports/158345
Submitted by: Jim Riggs <ports at christianserving.org>
|
02:18 swills
Rspec-mocks provides a test-double framework for rspec including support for
method stubs, fakes, and message expectations.
WWW: https://github.com/rspec/rspec-mocks
PR: ports/157797
Submitted by: Steve Wills <swills at FreeBSD.org>
|
02:17 swills
Rspec-expectations adds should and should_not to every object and includes
RSpec::Matchers, a library of standard matchers.
WWW: https://github.com/rspec/rspec-expectations
PR: ports/157797
Submitted by: Steve Wills <swills at FreeBSD.org>
|
02:16 swills
RSpec Core provides the structure for writing executable examples of how your
code should behave.
WWW: https://github.com/rspec/rspec-core
PR: ports/157797
Submitted by: Steve Wills <swills at FreeBSD.org>
|
Sunday, 26 Jun 2011
|
08:15 miwi
git-annex allows managing files with git, without checking the file
contents into git. While that may seem paradoxical, it is useful when
dealing with files larger than git can currently easily handle, whether
due to limitations in memory, checksumming time, or disk space.
Even without file content tracking, being able to manage files with git,
move files around and delete files with versioned directory trees, and use
branches and distributed clones, are all very handy reasons to use git.
And annexed files can co-exist in the same git repository with regularly
versioned files, which is convenient for maintaining documents, Makefiles,
etc that are associated with annexed files but that benefit from full
revision control.
WWW: http://git-annex.branchable.com/
PR: ports/157077
Submitted by: frase at frase.id.au
|
07:15 miwi
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
language tool that provides a framework for constructing recognizers,
compilers, and translators from grammatical descriptions containing
C++ or Java actions.
This port is used to run python code generated by ANTLR.
WWW: http://www.antlr2.org
PR: ports/155116
Submitted by: arrowdodger <6yearold at gmail.com>
|
Number of commits found: 11319 (showing only 100 on this page) |