notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
non port: devel/Makefile

Number of commits found: 11319 (showing only 100 on this page)

[First Page]  «  72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82  »  [Last Page]

Saturday, 13 Aug 2011
21:07 pgj search for other commits by this committer
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
Original commit
20:47 pgj search for other commits by this committer
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
Original commit
20:44 pgj search for other commits by this committer
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
Original commit
20:36 pgj search for other commits by this committer
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
Original commit
20:33 pgj search for other commits by this committer
Parse numeric literals from ByteStrings.

WWW: http://github.com/solidsnack/bytestring-nums

Obtained from:  FreeBSD Haskell
Original commit
18:36 pgj search for other commits by this committer
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
Original commit
18:08 pgj search for other commits by this committer
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
Original commit
17:05 az search for other commits by this committer
MooseX::Types::LoadableClass - ClassName type constraint with coercion to load
the class.

WWW:    http://search.cpan.org/dist/MooseX-Types-LoadableClass/
Original commit
Friday, 12 Aug 2011
13:23 gahr search for other commits by this committer
- 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/
Original commit
Thursday, 11 Aug 2011
10:56 wen search for other commits by this committer
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/
Original commit
Wednesday, 10 Aug 2011
16:40 swills search for other commits by this committer
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>
Original commit
12:27 sunpoet search for other commits by this committer
- 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/
Original commit
12:24 sunpoet search for other commits by this committer
- 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/
Original commit
12:13 sunpoet search for other commits by this committer
- 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/
Original commit
12:07 sunpoet search for other commits by this committer
- 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/
Original commit
Tuesday, 9 Aug 2011
12:11 wen search for other commits by this committer
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
Original commit
11:30 crees search for other commits by this committer
Remove expired port
2011-08-09 devel/fossology: Broken for four months with no-one caring

PR:             ports/157593
Original commit
Monday, 8 Aug 2011
20:11 pav search for other commits by this committer
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>
Original commit
19:20 pav search for other commits by this committer
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>
Original commit
13:29 pav search for other commits by this committer
           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>
Original commit
10:01 romain search for other commits by this committer
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/
Original commit
Saturday, 6 Aug 2011
08:01 tota search for other commits by this committer
- 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
Original commit
Friday, 5 Aug 2011
18:24 pgollucci search for other commits by this committer
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.
Original commit
14:03 tota search for other commits by this committer
- 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/
Original commit
Wednesday, 3 Aug 2011
15:46 amdmi3 search for other commits by this committer
- 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)
Original commit
06:49 bapt search for other commits by this committer
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
Original commit
Tuesday, 2 Aug 2011
09:01 bapt search for other commits by this committer
Remove ports BROKEN for more than 6 months

devel/simian
databases/mysql-gui-tools

Approved by:    gahr (maintainer)
Original commit
Monday, 1 Aug 2011
05:46 bapt search for other commits by this committer
Depend on expired sql_gui port

devel/eboxy
Original commit
05:01 bapt search for other commits by this committer
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
Original commit
02:53 sunpoet search for other commits by this committer
- Sort SUBDIRs
- Fix NO_VIET_KDE coverage
Original commit
Sunday, 31 Jul 2011
14:06 swills search for other commits by this committer
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>
Original commit
Saturday, 30 Jul 2011
19:19 swills search for other commits by this committer
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>
Original commit
09:20 kwm search for other commits by this committer
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.
Original commit
09:07 kwm search for other commits by this committer
Remove the last few gir-repository ports. They aren't used anywhere.
Original commit
Friday, 29 Jul 2011
22:16 tdb search for other commits by this committer
- 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>
Original commit
Wednesday, 27 Jul 2011
14:16 crees search for other commits by this committer
Also add devel/msp430-gcc3 to build

Pointyhat to:   lev
Original commit
07:19 kuriyama search for other commits by this committer
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/
Original commit
Tuesday, 26 Jul 2011
20:31 crees search for other commits by this committer
Fix INDEX build -- attach devel/msp430mcu
Original commit
Saturday, 23 Jul 2011
09:22 sunpoet search for other commits by this committer
- 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/
Original commit
Friday, 22 Jul 2011
22:51 bapt search for other commits by this committer
Add mdds: A collection of multi-dimensional data structure and indexing
algorithm.
Original commit
11:35 culot search for other commits by this committer
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>
Original commit
Thursday, 21 Jul 2011
10:39 sunpoet search for other commits by this committer
- 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/
Original commit
09:34 sunpoet search for other commits by this committer
- 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/
Original commit
02:43 linimon search for other commits by this committer
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
Original commit
Tuesday, 19 Jul 2011
23:07 ohauer search for other commits by this committer
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>
Original commit
17:06 kmoore search for other commits by this committer
- 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
Original commit
Thursday, 14 Jul 2011
14:46 rea search for other commits by this committer
New port: devel/py-smmap

PR: ports/158797
Submitted-by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Approved-by: erwin (mentor)
Feature-safe: yes
Original commit
Monday, 11 Jul 2011
10:48 mm search for other commits by this committer
PEAR FilterIterator implementation that filters files based
on a list of suffixes.

WWW: http://pear.phpunit.de/
Original commit
09:42 mm search for other commits by this committer
PEAR channel for the symfony project

WWW: http://pear.symfony-project.com/
Original commit
08:37 mm search for other commits by this committer
PEAR channel for PHPUnit

WWW: http://pear.phpunit.de
Original commit
Sunday, 10 Jul 2011
21:40 swills search for other commits by this committer
UUID - Perl extension for using UUID interfaces as defined in e2fsprogs.

WWW:    http://search.cpan.org/~jnh/UUID/
Original commit
Saturday, 9 Jul 2011
16:38 beech search for other commits by this committer
- 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.
Original commit
15:31 swills search for other commits by this committer
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
Original commit
Thursday, 7 Jul 2011
22:31 mm search for other commits by this committer
This application provides tagging support for the other Horde applications.

WWW: http://pear.horde.org
Original commit
22:03 beech search for other commits by this committer
- 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
Original commit
21:17 mm search for other commits by this committer
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
Original commit
21:10 mm search for other commits by this committer
This Horde package allows to generate MIME encapsuled responses to iCalendar
invitations.

WWW: http://pear.horde.org
Original commit
21:04 mm search for other commits by this committer
Horde DataTree API

WWW: http://pear.horde.org
Original commit
20:58 mm search for other commits by this committer
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
Original commit
20:47 mm search for other commits by this committer
Horde package providing classes for parsing command line arguments with
various actions, providing help, grouping options, and more.

WWW: http://pear.horde.org
Original commit
20:29 mm search for other commits by this committer
Horde lightweight ORM layer

WWW: http://pear.horde.org
Original commit
20:27 mm search for other commits by this committer
These classes provide the core functionality of the
Horde Application Framework.

WWW: http://pear.horde.org
Original commit
20:00 mm search for other commits by this committer
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
Original commit
19:58 mm search for other commits by this committer
Horde data import and export API, with backends for:
* CSV
* TSV
* iCalendar
* vCard
* vNote
* vTodo

WWW: http://pear.horde.org
Original commit
19:48 mm search for other commits by this committer
This Horde package provides an API for dealing with iCalendar data.

WWW: http://pear.horde.org
Original commit
19:47 mm search for other commits by this committer
The Horde_History API provides a way to track changes
on arbitrary pieces of data in Horde applications.

WWW: http://pear.horde.org
Original commit
19:29 mm search for other commits by this committer
Horde library for natural-language date parsing,
with support for multiple languages and locales

WWW: http://pear.horde.org
Original commit
19:29 mm search for other commits by this committer
Horde package for creating and manipulating dates.

WWW: http://pear.horde.org
Original commit
19:25 mm search for other commits by this committer
Horde package providing common methods for handling language data,
timezones, and hostname->country lookups.

WWW: http://pear.horde.org
Original commit
19:20 mm search for other commits by this committer
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
Original commit
19:16 mm search for other commits by this committer
This package provides the controller part of an MVC system for Horde.

WWW: http://pear.horde.org
Original commit
19:13 mm search for other commits by this committer
This Horde package provides a programmatic way of building
constraints that evaluate to true or false.

WWW: http://pear.horde.org
Original commit
19:12 mm search for other commits by this committer
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
Original commit
18:44 mm search for other commits by this committer
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
Original commit
18:42 mm search for other commits by this committer
The Horde_Serialize library provides various methods of encapsulating data.

WWW: http://pear.horde.org
Original commit
18:39 mm search for other commits by this committer
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
Original commit
18:38 mm search for other commits by this committer
The Horde_View library provides a simple View pattern implementation.

WWW: http://pear.horde.org
Original commit
18:14 mm search for other commits by this committer
Horde classes providing functionality for various types of applications.

WWW: http://pear.horde.org
Original commit
18:10 mm search for other commits by this committer
Horde_Cli:: API for basic command-line functionality/checks

WWW: http://pear.horde.org
Original commit
18:09 mm search for other commits by this committer
The Horde_LoginTasks library provides a set of methods for dealing with tasks
run upon login to Horde applications.

WWW: http://pear.horde.org
Original commit
18:06 mm search for other commits by this committer
Horde translation library

WWW: http://pear.horde.org
Original commit
18:05 mm search for other commits by this committer
The Horde_Lock library provides the Horde resource locking system.

WWW: http://pear.horde.org
Original commit
18:04 mm search for other commits by this committer
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
Original commit
18:02 mm search for other commits by this committer
Depedency injection container for Horde.

WWW: http://pear.horde.org
Original commit
17:59 mm search for other commits by this committer
Default exception handlers for the Horde Application Framework.

WWW: http://pear.horde.org
Original commit
17:53 mm search for other commits by this committer
This Horde package provides various stream wrappers.

WWW: http://pear.horde.org
Original commit
17:52 mm search for other commits by this committer
Autoload implementation and class loading manager for Horde.

WWW: http://pear.horde.org
Original commit
17:50 mm search for other commits by this committer
This Horde package provides various stream filters.

WWW: http://pear.horde.org
Original commit
17:44 mm search for other commits by this committer
PEAR method to install Horde components into a base Horde installation.

WWW: http://pear.horde.org
Original commit
17:34 mm search for other commits by this committer
PEAR channel for the Horde framework and applications

WWW: http://pear.horde.org
Original commit
Saturday, 2 Jul 2011
16:01 rene search for other commits by this committer
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"
Original commit
Friday, 1 Jul 2011
06:38 kevlo search for other commits by this committer
Initial import of iniparser-3.0

Iniparser is a free stand-alone ini file parsing library.
Original commit
Monday, 27 Jun 2011
14:44 miwi search for other commits by this committer
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>
Original commit
14:36 miwi search for other commits by this committer
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>
Original commit
14:35 miwi search for other commits by this committer
A library for some string essentials.

WWW:    http://libestr.adiscon.com/

PR:             ports/158345
Submitted by:   Jim Riggs <ports at christianserving.org>
Original commit
02:18 swills search for other commits by this committer
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>
Original commit
02:17 swills search for other commits by this committer
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>
Original commit
02:16 swills search for other commits by this committer
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>
Original commit
Sunday, 26 Jun 2011
08:15 miwi search for other commits by this committer
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
Original commit
07:15 miwi search for other commits by this committer
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>
Original commit

Number of commits found: 11319 (showing only 100 on this page)

[First Page]  «  72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82  »  [Last Page]