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: 12245 (showing only 100 on this page)

[First Page]  «  92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102  »  [Last Page]

Monday, 16 Mar 2009
15:06 tabthorpe search for other commits by this committer
Driver based class to calculate holidays in Italy.

WWW:    http://pear.php.net/package/Date_Holidays_Italy/
Original commit
08:07 nivit search for other commits by this committer
Fabric is a simple pythonic remote deployment tool.

It is designed to upload files to, and run shell commands on, a number
of servers in parallel or serially. These commands are grouped in tasks
(regular python functions) and specified in a 'fabfile.'

This is called remote automation, and the primary use case is deploying
applications to multiple similar hosts.

WWW:    http://www.nongnu.org/fab/

PR:             ports/132653
Submitted by:   Yi-Jheng Lin <yzlin at cs.nctu.edu.tw>
Original commit
Sunday, 15 Mar 2009
19:52 miwi search for other commits by this committer
Perl module for ptrace(2). i386 arch only.

WWW:    http://search.cpan.org/dist/FreeBSD-i386-Ptrace/

PR:             ports/132647
Submitted by:   TAKAHASHI Kaoru <kaoru at kaisei.org>
Original commit
17:17 miwi search for other commits by this committer
Unloads the given class by clearing out its symbol table and removing
it from %INC.

SYNOPSIS

    use Class::Unload;
    use Class::Inspector;

    use Some::Class;

    Class::Unload->unload( 'Some::Class' );
    Class::Inspector->loaded( 'Some::Class' ); # Returns false

    require Some::Class; # Reloads the class

WWW: http://search.cpan.org/dist/Class-Unload/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:16 miwi search for other commits by this committer
The Class::XSAccessor::Array module implements fast XS accessors both
for getting at and setting an object attribute. Additionally, the module
supports mutators and simple predicates (has_foo() like tests
for definedness of an attributes). The module works only with objects that
are implemented as arrays.

A simple benchmark showed more than a factor of two performance advantage over
writing accessors in Perl.

WWW: http://search.cpan.org/dist/Class-XSAccessor-Array/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:16 miwi search for other commits by this committer
Devel::CheckOS provides a more friendly interface to $^O, and also lets you
check for various OS "families" such as "Unix", which includes things like
Linux, Solaris, AIX etc.

WWW: http://search.cpan.org/dist/Devel-CheckOS/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:15 miwi search for other commits by this committer
Many tools need to be equally useful both on ordinary files, and on code that
has been checked out from revision control systems.

File::Find::Rule::VCS provides quick and convenient methods to exclude the
version control directories of several major Version Control Systems (currently
CVS, subversion, and Bazaar).

WWW: http://search.cpan.org/dist/File-Find-Rule-VCS/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:15 miwi search for other commits by this committer
File::ShareDir::PAR provides the same functionality as File::ShareDir but tries
hard to be compatible with PAR packaged applications.

The problem is, that the concept of having a distribution or module specific
share directory becomes a little hazy when you're loading everything from
a single file. PAR uses an @INC hook to intercept any attempt to load a module.
File::ShareDir uses the directory structure that is typically found in the
directories that are listed in @INC for storing the shared data. In a PAR
enviroment, this is not necessarily possible.

WARNING:
This module contains highly experimental code. If you want to load
modules from .par files using PAR and then access their shared directory
using File::ShareDir, you probably have no choice but to use it.

WWW: http://search.cpan.org/dist/File-ShareDir-PAR/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:14 miwi search for other commits by this committer
Devel::Dumpvar is a pure object-orientated reimplementation of the dumpvar.pl
script. This makes it much more versatile version to use for dumping information
to debug log files or other uses where is no need to reassemble the data.

WWW: http://search.cpan.org/dist/Devel-Dumpvar/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:13 miwi search for other commits by this committer
Module::Extract is a convenience base class for creating module that work with
Perl distributions. Its purpose is to take care of the mechanisms of locating
and extracting a Perl distribution so that your module can do something specific
to the distribution.

This module was originally created to provide an abstraction for the extraction
logic for both Module::Inspector and Module::P4P and to allow additional
features to be added in the future without having to modify both of them,
because the general problem of "locate, download, and expand a distribution"
is one that is almost ideal for adding additional features down the line.

WWW: http://search.cpan.org/dist/Module-Extract/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:13 miwi search for other commits by this committer
Module::Manifest is a simple utility module created originally for use
in Module::Inspector. It allows you to load the MANIFEST file that comes
in a Perl distribution tarball, examine the contents, and perform some
simple tasks.

Granted, the functionality needed to do this is quite simple, but the Perl
distribution MANIFEST specification contains a couple of little idiosyncracies,
such as line comments and space-seperated inline comments.

WWW: http://search.cpan.org/dist/Module-Manifest/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:13 miwi search for other commits by this committer
Module::Inspector provides a wrapper around various modules used to read and
examine the different parts of a Perl module distribution tarball, and can
inspect a module unrolled on disk, in a repository checkout, or just look
directly inside a tarball. It also rovides a companion to the Class::Inspector
API for accessing information on class after installation.

WWW: http://search.cpan.org/dist/Module-Inspector/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:12 miwi search for other commits by this committer
This is a small convenience module created originally as part
of Module::Inspector but released seperately, in the hope that people might
find it useful in other contexts.

WWW: http://search.cpan.org/dist/Module-Math-Depends/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:11 miwi search for other commits by this committer
Test::Compile lets you check the validity of a Perl module file or Perl script
file, and report its results in standard Test::Simple fashion.

WWW: http://search.cpan.org/dist/Test-Compile/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
17:11 miwi search for other commits by this committer
Parse::ErrorString::Perl is a module for parsing Perl interpreter
error messages.

WWW: http://search.cpan.org/dist/Parse-ErrorString-Perl/

PR:             ports/132406
Submitted by:   Cezary Morga <cm at therek.net>
Original commit
Saturday, 14 Mar 2009
18:29 lippe search for other commits by this committer
Exuberant Ctags supports indexing of many modern programming languages. Python
is a powerful scriptable dynamic language. Using Python to access Ctags index
file is a natural fit in extending an application's capability to examine
source code.

WWW:    http://www.python.org/pypi/python-ctags/

PR:             ports/131983
Submitted by:   Aaron Diep <ahkdiep@gmail.com>
Reviewed by:    myself
Original commit
15:19 pgj search for other commits by this committer
Lazy SmallCheck is a library for exhaustive, demand-driven testing of
Haskell programs.  It is based on the idea that if a property holds for
a partially-defined input then it must also hold for all fully-defined
refinements of the that input.  Compared to `eager' input generation as
in SmallCheck, Lazy SmallCheck may require significantly fewer
test-cases to verify a property for all inputs up to a given depth.

WWW: http://www.cs.york.ac.uk/~mfn/lazysmallcheck/

Approved by:    gabor
Original commit
13:37 miwi search for other commits by this committer
Test::Mock::LWP provides easy mocking of LWP packages:
HTTP::Request, HTTP::Response, LWP and LWP::UserAgent.

WWW:    http://search.cpan.org/dist/Test-Mock-LWP/

PR:             ports/132589
Submitted by:   TAKAHASHI Kaoru <kaoru at kaisei.org>
Original commit
04:29 kuriyama search for other commits by this committer
Add p5-Test-TCP 0.02, perl extension for testing TCP program.
Original commit
Friday, 13 Mar 2009
23:29 kuriyama search for other commits by this committer
Add p5-local-lib 1.003002, perl extension to create and use a local lib/
with PERL5LIB.
Original commit
Thursday, 12 Mar 2009
16:52 miwi search for other commits by this committer
Simple .ini files emitter and parser for Perl.

WWW:    http://search.cpan.org/dist/Config-INI/

PR:             ports/132496
Submitted by:   bapt <baptiste.daroussin at gmail.com>
Original commit
16:51 miwi search for other commits by this committer
With Mixin::Linewise::Readers and Mixin::Linewise::Writers, you can just write
a method to handle handles, and methods for handling strings and filenames are
added for you.

WWW:    http://search.cpan.org/~rjbs/Mixin-Linewise/

PR:             ports/132495
Submitted by:   bapt <baptiste.daroussin at gmail.com>
Original commit
Wednesday, 11 Mar 2009
16:53 miwi search for other commits by this committer
This module provides an API for parts of the perl parser. It can be
used to modify code while it's being parsed.

WWW:    http://search.cpan.org/dist/B-Hooks-Parser/

PR:             ports/132532
Submitted by:   Gea-Suan Lin <gslin at gslin.org>
Original commit
16:53 miwi search for other commits by this committer
PL_check is an array indexed by opcode number (op_type) that contains
function pointers invoked as the last stage of optree compilation,
per op.

WWW:    http://search.cpan.org/dist/B-OPCheck/

PR:             ports/132531
Submitted by:   Gea-Suan Lin <gslin at gslin.org>
Original commit
10:31 lth search for other commits by this committer
Add easygit 0.98, easy wrapper for git.
Original commit
Monday, 9 Mar 2009
21:44 miwi search for other commits by this committer
2009-02-15 ftp/downloader: sources unavailable - website dissappeared
2009-03-04 devel/rubygem-mojombo-grit: Obsolete, use devel/rubygem-grit instead
2009-03-08 mail/postfix1: Not supported anymore by vendor. Please choose a new
one version.
2009-03-08 mail/postfix21: Not supported anymore by vendor. Please choose a new
one version.
2009-03-08 mail/postfix22: Not supported anymore by vendor. Please choose a new
one version.
2009-03-01 www/rubygem-actionwebservice: from rails 2.0 www/rubygem-rails use
www/rubygem-activeresource instead
Original commit
16:23 pgj search for other commits by this committer
The program bisonc++ creates a C++ parser function and -class having a
cleaner setup than the code generated by Alain Coetmeur's bison++.
Furthermore, since bisonc++ more closely follows current-day ideas about
C++ programming its code is easier to read.

WWW: http://bisoncpp.sourceforge.net/

Approved by:    tabthorpe
Original commit
16:22 pgj search for other commits by this committer
Bobcat is an acronym of `Brokken's Own Base Classes And Templates'.  It
is a shared library implementing C++ classes that are frequently used in
software developed by Frank Brokken.  Frank's existing programs will
depend on `bobcat' in the near future.

WWW: http://bobcat.sourceforge.net/

Approved by:    tabthorpe
Original commit
16:16 pgj search for other commits by this committer
Add icmake (missed from the last commit)

Approved by:    tabthorpe
Original commit
Sunday, 8 Mar 2009
23:28 kuriyama search for other commits by this committer
Add p5-Data-Localize 0.00004, perl extension for alternate data
localization API.
Original commit
14:31 kuriyama search for other commits by this committer
Add rubygem-ditz 0.5, simple, light-weight distributed issue tracker.
Original commit
Saturday, 7 Mar 2009
13:05 gerald search for other commits by this committer
Remove devel/prcs and devel/tvision per expiration note.
Original commit
Friday, 6 Mar 2009
19:53 pgj search for other commits by this committer
Cppcheck is a tool for static C/C++ code analysis, and it tries to
detect bugs that your compiler do not see.  Checks for: memory leaks,
mismatching allocation-deallocation, buffer overrun, and many more.

Cppcheck is versatile.  You can check non-standard code that includes
various compiler extensions, inline assembly code, etc.

The goal is no false positives.

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

Approved by:    tabthorpe
Original commit
19:46 pgj search for other commits by this committer
Language C is a Haskell library for the analysis and generation of C
code.  It features a complete, well tested parser and pretty printer for
all of C99 and a large set of GNU extensions.

WWW: http://www.sivity.net/projects/language.c/

Approved by:    tabthorpe
Original commit
15:30 wxs search for other commits by this committer
Remove devel/p5-Getopt-Mixed: expired on 2007-04-23.  Please use
Getopt::Long which supports both long and short options.
Original commit
10:08 ale search for other commits by this committer
Update to 5.2.9 release and re-add pcre extension.
Original commit
Monday, 2 Mar 2009
02:09 kuriyama search for other commits by this committer
Add p5-CHI 0.10, perl extension for unified cache interface.
Original commit
Sunday, 1 Mar 2009
22:45 kuriyama search for other commits by this committer
Add p5-Hash-MoreUtils 0.01, perl extension to provide the stuff missing
in Hash::Util.
Original commit
15:29 miwi search for other commits by this committer
SOAP-WSDL provides a SOAP client with WSDL support.

WWW: http://search.cpan.org/dist/SOAP-WSDL/

PR:             ports/132214
Submitted by:   Wen Heping <wenheping at gmail.com>
Original commit
Saturday, 28 Feb 2009
19:47 miwi search for other commits by this committer
This module provides a faster but less secure version of Class::Std.

WWW: http://search.cpan.org/dist/Class-Std-Fast/

PR:             ports/132197
Submitted by:   Wen Heping <wenheping at gmail.com>
Original commit
Friday, 27 Feb 2009
10:24 jadawin search for other commits by this committer
Pytemplate is a small project intending to give python developpers a starting
framework. It permits to create properly scripts without struggling with
configuration files, logging properties development. They are already available
through a main class that the new script will inherit.

WWW: http://bulot.org/wiki/doku.php?id=projects:python:pytemplate

PR:             ports/132121
Submitted by:   Benoit Calvez <benoit at litchis.org>
Original commit
07:20 kuriyama search for other commits by this committer
Add p5-Test-LoadAllModules 0.02, perl extension to do use_ok for modules
in search path.
Original commit
02:17 clsung search for other commits by this committer
- Utilities for gdata on rails
Original commit
Thursday, 26 Feb 2009
16:05 lth search for other commits by this committer
Add p5-Parse-CPAN-Meta 0.04, parse META.yml and other similar CPAN
metadata files.
Original commit
12:10 araujo search for other commits by this committer
Nemiver is an on-going effort to write a standalone graphical debugger that
integrates well in the GNOME desktop environment. It currently features a
backend which uses the well known GNU Debugger gdb to debug C / C++ programs.

WWW:    http://www.gnome.org/projects/nemiver/

PR:             ports/124291
Submitted by:   Romain Tartiere <romain@blogreen.org>
Original commit
Wednesday, 25 Feb 2009
12:55 lth search for other commits by this committer
Add p5-MooseX-Log-Log4perl 0.31, a logging role for Moose based on
Original commit
12:13 lth search for other commits by this committer
Add p5-MooseX-SimpleConfig 0.03, a Moose role for setting attributes
from a simple configfile.
Original commit
Monday, 23 Feb 2009
21:39 lth search for other commits by this committer
Add p5-Test-POE-Server-TCP 0.18, a POE Component providing TCP server
services for test cases.
Original commit
01:56 kuriyama search for other commits by this committer
Add p5-Any-Moose 0.04, perl extension for/to use Moose or Mouse modules.
Original commit
Sunday, 22 Feb 2009
02:04 timur search for other commits by this committer
Add new module 'boolean' which provides Boolean type for Perl.
Original commit
Saturday, 21 Feb 2009
19:01 gabor search for other commits by this committer
PWLib is a multi-platform code library that can be used to write
applications that will compile and run on the BSD Unixes, Windows, Linux
and a few other Unix variants. It was developed by Equivalence Ltd Pty.

It is used by the OpenH323 library.

WWW: http://www.openh323.org/

PR:             ports/131129
Submitted by:   "Eric L. Chen" <d9364104@mail.nchu.edu.tw>
Original commit
Friday, 20 Feb 2009
02:32 kuriyama search for other commits by this committer
Add p5-Test-Most 0.21, perl extension for most commonly needed test
functions and features.
Original commit
Sunday, 15 Feb 2009
23:55 miwi search for other commits by this committer
The itools library offers a collection of packages covering
a wide range of capabilities. Including support for many file
formats (XML, CSV, HTML, etc.), a virtual file system (itools.vfs),
the simple template language (STL), an index and search engine,
and much more.

WWW:    http://www.hforge.org/itools

PR:             ports/131480
Submitted by:   Wen Heping <wenheping at gmail.com>
Original commit
Saturday, 14 Feb 2009
22:58 makc search for other commits by this committer
Update PyQt4 ports to 4.4.4, new ports:
devel/py-qt4-help
multimedia/py-qt4-phonon
textproc/py-qt4-xmlpatterns
www/py-qt4-webkit

Update QScintilla2 to 2.3.2, PyQt3 to 3.17.6, PyKDE3 to 3.16.2.

Pass maintainership to kde@FreeBSD.org. Thanks Danny Ricin for his great work.

PR:             based on ports/130219
Submitted by:   Dima Panov" <fluffy at fluffy.khv.ru>
Original commit
16:43 olgeni search for other commits by this committer
Remove broken port.
Original commit
Friday, 13 Feb 2009
16:38 miwi search for other commits by this committer
2009-02-09 audio/xmms-imms: does not configure or build
2009-02-10 devel/libgnugetopt: was only relevant on FreeBSD 4.x
2009-01-19 games/planeshift: Depends on broken, expired port
2009-02-12 net-mgmt/nfsen-devel: no separate development version exists anymore
2009-01-19 www/ocaml-wdialog: has been broken for more than 6 months
2008-12-21 news/sabnzbd: no longer developed, use news/sabnzbdplus instead
Original commit
09:38 kuriyama search for other commits by this committer
Add p5-MouseX-Types 0.01, perl extension to organize your Mouse types in
libraries.
Original commit
Wednesday, 11 Feb 2009
20:14 stas search for other commits by this committer
- Add devel/ruby-locale2, the pure ruby library which provides basic APIs for
localization.

Author: Masao Mutoh <mutoh at highway.ne.jp>
WWW:    http://www.yotabanana.com/hiki/ruby-locale.html
Original commit
Tuesday, 10 Feb 2009
14:01 miwi search for other commits by this committer
Smart hashes merging

WWW:    http://search.cpan.org/dist/Hash-Union/

PR:             ports/131553
Submitted by:   Oleg A. Mamontov <oleg at mamontov.net>
Original commit
Monday, 9 Feb 2009
22:33 miwi search for other commits by this committer
RPyC(pronounced like 'are-pie-see'), or Remote Python Call, is a
transparent and symmetrical python library for remote procedure
calls, clustering and distributed-computing. RPyC makes use of
object-proxying, a technique that employs python's dynamic nature,
to overcome the physical boundaries between processes and computers,
so that remote objects can be manipulated as if they were local.

WWW:    http://pypi.python.org/pypi/RPyC/

PR:             ports/130775
Submitted by:   Wen Heping <wenheping at gmail.com>
Original commit
13:10 miwi search for other commits by this committer
rlock creates NFS safe lockfiles. it can optionally run a program while
holding the lock, ensuring lockfile removal on program exit. if a program
is specified to be run rlock will spawn a background thread to kept the
lockfile 'fresh' by touching it at a regular interval. in this way a lease
is maintained on the lockfile and other processes attempting to obtain the
lock can determine that it is in use.

WWW:    http://www.codeforpeople.com/lib/ruby/lockfile/

PR:             ports/131023
Submitted by:   Dennis Herrmann <adox at mcx2.org>
Original commit
Sunday, 8 Feb 2009
15:48 gabor search for other commits by this committer
Andrew's Web Libraries are a set of hopefully lightweight libraries for
handling a variety of useful things for web programming, including:

- Session management
- User management
- DB Records
- Simple reporting
- DB Schema Updating
- iCalendar parsing

WWW: http://rscds.sourceforge.net/

PR:             ports/131090
Submitted by:   Cristiano Rolim Pereira <cristianorolim at hotmail.com>
Original commit
03:14 pgollucci search for other commits by this committer
- devel/libslang2 has completely replaced devel/libslang which has not been
  released in ~5yrs.

- WITH_SLANG2 is now no longer a valid ports knob
- WITH_SLANG implies devel/libslang2 now
- devel/libslang -> devel/libslang2 is a SHARED LIB bump
  so bump PORTREVISION for affected ports

- Take MAINTAINER for most unmaintained ports in this chain
- some SF macro conversions

- BROKEN with devel/libslang2 and DEPRECATE
    math/slsc (abandoned upstream)
- BROKEN with devel/libslang2
    japanese/slirc

PR:             ports/125255
Reviewed by:    garga (libslang maintainer), portmgr (pav)
Exp Run by:     pav
Original commit
Saturday, 7 Feb 2009
02:07 pgj search for other commits by this committer
- Resurrect deleted port as it does build now
- Update to 2.06
- Add support for AMD64
- Fix hmake dependency
- Better management of configuration options (thanks to gabor)

Approved by:    gabor
Original commit
Friday, 6 Feb 2009
15:34 tobez search for other commits by this committer
Add devel/p5-Badger 0.05, a Perl Application Programming Toolkit.
Original commit
Wednesday, 4 Feb 2009
09:55 jadawin search for other commits by this committer
aspects is a lightweight approach to aspect oriented programming (AOP) in
Python.The aspects.py library provides means to intercept function calls.
Functions and methods (also in Python standard library and third party code)
can be wrapped so that when they are called, the wrap is invoked first.

WWW:    http://www.cs.tut.fi/~ask/aspects/index.shtml

PR:             ports/131319
Submitted by:   Sofian Brabez <sbrabez at gmail.com>
Original commit
02:13 clsung search for other commits by this committer
Templater is a powerful code generation framework. It declarative
rules for generators, supports generators discovery in gems, has idea
of actions other than template rendering and is open for extension.

WWW: http://templater.rubyforge.org/
Original commit
Tuesday, 3 Feb 2009
22:38 miwi search for other commits by this committer
2009-01-19 games/emacs-chess: has been broken for more than 6 months
2009-02-01 devel/subversion-devel: Use devel/subversion or
devel/subversion-freebsd instead of this port
2009-01-19 devel/hs-hat: has been broken for more than 6 months
2009-01-19 devel/hs-hpl: has been broken for more than 6 months
2009-01-19 databases/mysqlbigram: has been broken for more than 6 months
2009-01-19 mail/claws-mail-clamav: has been broken for more than 6 months
2009-01-19 mail/sylpheed2-devel: has been broken for more than 6 months
2009-01-19 www/pecl-mnogosearch: has been broken for more than 6 months
2009-01-31 x11-fonts/mathfonts: This port was supported by Mozilla 1.8
(including Firefox 2.0) - to be replaced by  STIX fonts for Firefox 3.x
2009-01-19 x11-wm/fluxspace: has been broken for more than 6 months
2009-01-31 x11-wm/expocity: project has been abandoned
2009-01-19 x11/bbuname: has been broken for more than 6 months
2009-01-19 security/squidclam: has been broken for more than 6 months
2009-01-19 print/virtualpaper: depends on broken, expired port
2009-01-19 print/ifhp: has been broken for more than 6 months
2009-01-19 net-p2p/peercast: has been forbidden for more than 6 months
2009-01-19 palm/pdbc: has been broken for more than 6 months
2009-01-19 net-mgmt/NeTraMet: has been broken for more than 6 months
2009-01-19 net-im/sulci: has been broken for more than 6 months
2009-01-19 multimedia/mjpegtools-yuvfilters: has been broken for more than 6
months
2009-01-19 multimedia/helixplayer: has been broken for more than 6 months
2009-01-19 lang/quack: has been broken for more than 6 months
2009-01-19 misc/pybliographer: has been broken for more than 6 months
2009-01-19 net/versuch: has been broken for more than 6 months
2009-01-19 net/py-mantissa: has been broken for more than 6 months
2009-01-19 net/libunpipc: has been broken for more than 6 months
2009-01-19 net/gnometelnet: has been broken for more than 6 months
2009-01-19 net/gacxtool: depends on expired, broken port
2009-01-19 devel/py-coro: has been broken for more than 6 months
2009-01-19 chinese/stardict2-dict-zh_TW: has been broken for more than 6 months
2009-01-19 x11-themes/gtk-industrial-theme: has been broken for more than 6
months
Original commit
05:34 clsung search for other commits by this committer
sexp_processor branches from ParseTree bringing all the generic sexp
processing tools with it. Sexp, SexpProcessor, Environment, etc... all
for your language processing pleasure

WWW: http://rubyforge.org/projects/parsetree/
Original commit
Monday, 2 Feb 2009
17:24 garga search for other commits by this committer
Data::Dumper::Perltidy encapsulates both Data::Dumper and
Perl::Tidy to provide a function that stringifies a Perl
data structure in a pretty printed format.

WWW:    http://search.cpan.org/dist/Data-Dumper-Perltidy/

PR:             ports/131165
Submitted by:   Murilo Opsfelder <mopsfelder at gmail.com>
Original commit
17:22 garga search for other commits by this committer
Using this module it does the ini configuration file parsing,
with an addon facility of regex kind of search. This module
aims out doing a regex search for Sections, and Parameters
of the Ini configuration file. It does the Perl regex matching,
nothing external. So whoever knows the Perl basic regex can
use this feature.

WWW:    http://search.cpan.org/dist/Config-IniRegEx/

PR:             ports/131155
Submitted by:   Murilo Opsfelder <mopsfelder at gmail.com>
Original commit
Sunday, 1 Feb 2009
21:52 pav search for other commits by this committer
- Rename devel/libmcve to devel/libmonetra
Original commit
Thursday, 29 Jan 2009
06:58 lwhsu search for other commits by this committer
Add gearmand 0.2, gearman C Server and Library.

PR:             ports/131088
Submitted by:   Gea-Suan Lin <gslin at gslin.org>
Original commit
Tuesday, 27 Jan 2009
19:22 pgollucci search for other commits by this committer
The same as lib, but makes relative path absolute

WWW:    http://search.cpan.org/dist/ex-lib/

PR:             ports/131001
Submitted by:   Mons Anderson <mons at cpan.org>
Original commit
16:26 glarkin search for other commits by this committer
SVN-Hooks is a Perl framework for creating Subversion hooks.

It comes with a bunch of plugins (actually, sub-modules of SVN::Hooks)
that implement some of the most used standalone Subversion hooks
available, such as pre-commit hooks for enforcing:

- the log message format
- property settings
- the repository structure
- restrictions on the modification of repository areas (e.g., /tags)
- restrictions on filenames
- the integration with ticketing systems

It also comes with post-commit hooks for:

- sending commit emails
- updating configuration files in the server from changes made in
  the repository

But as a framework, it can be extended to implement all types of
hooks.

WWW:    http://search.cpan.org/dist/SVN-Hooks/
Original commit
14:48 glarkin search for other commits by this committer
SVN-Look is a caching wrapper aroung the svnlook command.

The svnlook command is the workhorse of Subversion hook scripts,
being used to gather all sorts of information about a repository,
its revisions, and its transactions.

This script provides a simple object oriented interface to a specific
svnlook invocation, to make it easier to hook writers to get and
use the information they need.  Moreover, all the information
gathered buy calling the svnlook command is cached in the object,
avoiding repetitious calls.

WWW:    http://search.cpan.org/dist/SVN-Look/
Original commit
Monday, 26 Jan 2009
22:48 pgollucci search for other commits by this committer
- Fix INDEX
- relocate net/p5-IO-MultiPipe -> devel/p5-IO-MultiPipe

Pointhat:       me :(
Original commit
Friday, 23 Jan 2009
16:28 flz search for other commits by this committer
- Update X.org ports to 7.4+ (few ports are more recent than the katamari).
- Bump PORTREVISION for all ports depending on libglut since the shlib
version number went from 4 to 3.
- Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't
installed anymore.
- Couple of ports fixes (mostly missing xorg components added to USE_XORG).
Original commit
14:23 kuriyama search for other commits by this committer
Add p5-Data-Visitor-Encode 0.10002, perl extension to encode/decode
values in a structure.
Original commit
13:52 kuriyama search for other commits by this committer
Add p5-Data-Util 0.50, perl extension for utilities for data and data
types.
Original commit
Thursday, 22 Jan 2009
06:42 kuriyama search for other commits by this committer
Add p5-Module-Setup 0.06, perl extension for a simple module maker.
Original commit
03:10 kuriyama search for other commits by this committer
Add p5-MouseX-Getopt 0.03, perl extension for a Mouse role to process
command line options.
Original commit
03:05 kuriyama search for other commits by this committer
Add p5-Module-Collect 0.05, perl extension to collect module files from
some directories.
Original commit
02:24 kuriyama search for other commits by this committer
Add p5-Log-Dispatch-Colorful 0.01, perl extension for logging to screen.
Original commit
02:23 kuriyama search for other commits by this committer
Add p5-Module-Install-AuthorTests 0.002, perl extension to designate
tests only run by module authors.
Original commit
02:21 kuriyama search for other commits by this committer
Add p5-IPC-System-Simple 1.17, perl extension to run commands simply
with detailed diagnostics.
Original commit
Wednesday, 21 Jan 2009
20:28 bsam search for other commits by this committer
Remove the port. It was incorporated to every linux base port,
hence it conflicts with every port upon which it should depend.

Inspirited by:  QAT
Original commit
13:32 kuriyama search for other commits by this committer
Add p5-Class-Method-Modifiers-Fast 0.03, perl extension to provide
Moose-like method modifiers.
Original commit
13:28 kuriyama search for other commits by this committer
Add p5-Carp-Always 0.09, perl extension to warn and die noisily with
stack backtraces.
Original commit
Tuesday, 20 Jan 2009
22:43 kuriyama search for other commits by this committer
Perl extension to abstract Moose role attribute setting from file.
Original commit
04:36 kuriyama search for other commits by this committer
Perl extension to locate and use lib directories.
Original commit
Monday, 19 Jan 2009
22:02 nivit search for other commits by this committer
pip is a replacement for easy_install. It uses mostly the same techniques
for finding packages, so packages that were made easy_installable should
be pip-installable as well.

pip is meant to improve on easy_install. Some of the improvements:

    * All packages are downloaded before installation. Partially-completed
      installation doesn't occur as a result.
    * Care is taken to present useful output on the console.
    * The reasons for actions are kept track of. For instance, if a package
      is being installed, pip keeps track of why that package was required.
    * Error messages should be useful.
    * Packages don't have to be installed as egg archives, they can be
      installed flat (while keeping the egg metadata).

WWW:    http://pip.openplans.org/
Original commit
12:50 garga search for other commits by this committer
This is a rather simple module that abstracts the task of figuring out
the current system uptime, in seconds. It was born out of a desire to do
this on non-Linux systems, without SNMP. If you want to use SNMP,
there are pleanty of modules on CPAN already.

WWW:    http://search.cpan.org/dist/Unix-Uptime/

PR:             ports/130739
Submitted by:   Murilo Opsfelder <mopsfelder at gmail.com>
Original commit
Sunday, 18 Jan 2009
22:23 beech search for other commits by this committer
Lwt (the abbreviation stands for Light-Weight Threading) is a cooperative
threading library for Ocaml.

PR:             ports/125362
Submitted by:   jaapb at kerguelen.org
Original commit
22:23 makc search for other commits by this committer
Connect devel/kdesvn-kde4 to build.

Approved by:    miwi (implicit)
Original commit
19:43 pgollucci search for other commits by this committer
o Remove devel/apr-svn and replace with devel/apr
o devel/apr:
  defaults changed: WITH_BDB=yes [1]
  convert APR_UTIL_* flags to KNOBS flag names
  optionify and add IPV6, NDBM, LDAP, MYSQL, PGSQL
o Remove devel/apr-svn and replace with devel/apr
o devel/apr:
  defaults changed: WITH_BDB=yes [1]
  convert APR_UTIL_* flags to KNOBS flag names
  optionify and add IPV6, NDBM, LDAP, MYSQL, PGSQL
  (sqlite,orcale,freetds,odbc -- PATCHES welcome, MAINTAINER does not use)
  GMAKE is not needed, so remove it
  split ./configure args into apr and apr-util args, they do not accept all the
same options
  standardize on naming apr and apu to match other oses and the C code.
  create APR_WRKDIR And APU_WRKDIR for simplicity
  delete pre-extract target
  bump PORTREVISION

  NOTE: port still breaks hier(7), need to fix

o devel/kdesvn, devel/rapidsvn, devel/subcommander*, devel/subversion*
  devel/apr-svn -> devel/apr
  (subversion will pull in devel/apr)

Notes: dev@apr.apache.org, trunk in svn is as of TODAY(2008/01/03) 2.0.x, ports
infra needs to prep for
       [devel/apr-0,] devel/apr-1, devel/apr-2

Helpful for PRs:    ports/117596, ports/83644, ports/96749, ports/110651,
ports/118003, ports/128078
Fixes PRs:          ports/126053 [1]
Requeted by:        many on ports@, many on #bsdports [1]
Exp Run by :        pav
Original commit
Wednesday, 14 Jan 2009
06:37 acm search for other commits by this committer
- Now It is part of x11-toolkits/fpc-gnome1
Original commit
04:38 acm search for other commits by this committer
- New port: devel/fpc-fcl-process

Free Pascal unit to start and manipulate other programs
Original commit
03:57 acm search for other commits by this committer
- Repocopy from net/fpc-libasync to devel/fpc-fcl/async
Original commit
02:31 acm search for other commits by this committer
- New port: devel/fpc-symbolic

 FreePascal unit for simple expression parsing and evaluating
Original commit

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

[First Page]  «  92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102  »  [Last Page]