non port: devel/Makefile |
Number of commits found: 11319 (showing only 100 on this page) |
Friday, 4 Aug 2006
|
15:02 itetcu
This is a very preliminary release of CamlJava, an OCaml/Java
interface based on the following schema:
Caml/C interface JNI (Java Native Interface)
Caml <------------------> C <-----------------------------> Java
Currently, CamlJava provides a low-level, weakly-typed OCaml interface
very similar to the JNI. Java object references are mapped to an
abstract type, and various JNI-like operations are provided to allow
Java method invocation, field access, and more. A basic callback
facility (allowing Java code to invoke methods on Caml objects) is
also provided, although some stub Java code must be written by hand.
In the future, a higher-level, strongly-typed interface will be
provided, whereas Java classes are mapped directly to Caml classes.
This raises fairly delicate type mapping issues, though, so don't hold
your breath.
WWW: http://caml.inria.fr/
PR: ports/101147
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
|
11:10 philip
Add p5-DateTime-Calendar-Discordian:
A module that implements the Discordian calendar made popular(?) in the
"Illuminatus!" trilogy by Robert Shea and Robert Anton Wilson and by the
Church of the SubGenius.
Very useful during codefreeze to tell the testing-team why the build is
failing or why there are regressions. :-)
|
Thursday, 3 Aug 2006
|
14:17 novel
GTK+ front-end to ACOVEA.
WWW: http://www.coyotegulch.com/products/acovea/acovea-gtk.html
PR: ports/101257
Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
|
11:01 jkoshy
Remove a duplicate port; I hadn't noticed that it was already
present as "textproc/libtre".
Submitted by: Nicolas Rachinsky <nicolas-0 at ml.turing-complete.org>
|
06:16 clsung
Add p5-SVN-Agent 0.02, simple svn manipulation.
PR: ports/100136
Submitted by: Yuan-Chung Hsiao <ychsiao at ychsiao.org>
|
Wednesday, 2 Aug 2006
|
11:43 jkoshy
Add a port for 'tre', an LGPL'ed regex library. From the port's
description:
TRE is a lightweight, robust, and efficient POSIX compliant regexp
matching library supporting:
- approximate (fuzzy) matching,
- strict standards conformance,
- predicable and modest memory consumption,
- wide-character and multibyte character support,
- binary pattern and data support,
- thread-safe implementation.
At the core of TRE is a new algorithm for regular expression matching
with submatch addressing. The algorithm uses linear worst-case time
in the length of the text being searched, and quadratic worst-case
time in the length of the used regular expression.
|
11:13 sat
devel/p5-Readonly-XS is included in devel/p5-Readonly
Reported by: skv
Pointy hat to: sat
|
10:27 novel
ACOVEA (Analysis of Compiler Options via Evolutionary Algorithm)
implements a genetic algorithm to find the "best" options for
compiling programs with the GNU Compiler Collection (GCC) C and C++
compilers. "Best", in this context, is defined as those options
that produce the fastest executable program from a given source
code. Acovea is a C++ framework that can be extended to test other
programming languages and non-GCC compilers.
WWW: http://www.coyotegulch.com/products/acovea/index.html
PR: ports/101211
Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
|
10:19 sat
Add port devel/p5-Readonly-XS:
The Readonly module (q.v.) is an effective way to create non-modifiable
variables. However, it's relatively slow.
The reason it's slow is that is implements the read-only-ness of variables
via tied objects. This mechanism is inherently slow. Perl simply has to do
a lot of work under the hood to make tied variables work.
This module corrects the speed problem, at least with respect to scalar
variables. When Readonly::XS is installed, Readonly uses it to access the
internals of scalar variables. Instead of creating a scalar variable object
and tying it, Readonly simply flips the SvREADONLY bit in the scalar's
FLAGS structure.
Readonly arrays and hashes are not sped up by this, since the SvREADONLY
flag only works for scalars. Arrays and hashes always use the tie interface.
Why implement this as a separate module? Because not everyone can use XS.
Not everyone has a C compiler. Also, installations with a statically-linked
perl may not want to recompile their perl binary just for this module.
Rather than render Readonly.pm useless for these people, the XS portion was
put into a separate module.
WWW: http://search.cpan.org/dist/Readonly-XS/
Justification: socialtext dependency
|
08:43 novel
Evocosm is a set of classes that abstract the fundamental
components of an evolutionary algorithm:
-- Random Numbers
-- Validation
-- Floating- Point Chromosomes
-- Roulette Wheels
-- Organisms
-- Fitness Landscapes
-- Evocosms
-- Fitness Scaling
-- Migration
-- Selecting Survivors
-- Reproduction
-- Mutation Operators
WWW: http://www.coyotegulch.com/products/libevocosm/index.html
PR: ports/101210
Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
|
08:12 novel
The Coyotl library collects several C++ tools that have proven useful
in many of my programs, but which aren't "big enough" to warrant
an individual library.
Key features of Coyotl include:
-- A polymorphic collection of the best psuedorandom number generators,
including the Mersenne Twister and Marsaglia's favorites.
-- Utilities for floating-point numbers, including additional functions
for trigonometry, least common multiple, greatest common denominator,
rounding, and other purposes.
-- A simple cross-platform command-line parser.
-- A framework for generating random rectangular mazes.
-- A template for fixed-point math based on different integer sizes
and decimal point locations.
-- Templatized sorting utilities (designed before Std. C++'s <algorithms>,
but still useful)
-- Validation tools for "Design by Contract" programming.
WWW: http://www.coyotegulch.com/products/libcoyotl/index.html
PR: ports/101209
Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
|
01:21 ijliao
add p5-AI-Prolog 0.734
Perl extension for logic programming
PR: 101019
|
01:18 ijliao
add p5-Hash-AsObject 0.05
Hashes with accessors/mutators
PR: 101017
|
01:16 ijliao
add p5-aliased 0.20
Use shorter versions of class names
PR: 101016
|
Tuesday, 1 Aug 2006
|
20:45 sat
Add port devel/p5-Log-Dispatch-Email-EmailSend:
This is a subclass of Log::Dispatch::Email that implements the
send_email method using the Email::Send module.
WWW: http://search.cpan.org/dist/Log-Dispatch-Email-EmailSend/
|
20:12 sat
Add port devel/p5-Linux-Pid:
Why should one use a module to get the PID and the PPID of a process
where there are the $$ variable and the getppid() builtin? (Not
mentioning the equivalent POSIX::getpid() and POSIX::getppid()
functions.)
In fact, this is useful on Linux, with multithreaded programs. Linux'
C library, using the linux thread model, returns different values of
the PID and the PPID from different threads. (Other thread models such
as NPTL don't have the same behaviour). This module forces perl to
call the underlying C functions getpid() and getppid().
WWW: http://search.cpan.org/dist/Linux-Pid/
|
16:54 garga
Add p5-Logfile-Rotate 1.04, perl module to rotate logfiles.
|
14:15 sat
Add port devel/p5-Class-Field:
Class::Field exports two subroutines, field and const. These
functions are used to declare fields and constants in your class.
Class::Field generates custom code for each accessor that is
optimized for speed.
WWW: http://search.cpan.org/dist/Class-Field/
|
13:29 clsung
Add p5-IPC-Mmap-Share 0.03, safely share structures among processes
using anonymous mmap.
PR: ports/100417
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
13:25 clsung
- this p5- Module has been renamed to IPC-Mmap-Share(ports/100417)
- fresh port, no need to repocopy
|
12:55 clsung
Add p5-Tie-Simple 1.03, variable ties made easier: much, much, much
easier.
PR: ports/101156
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
12:38 clsung
Add p5-Term-Menus 1.16, create Powerful Terminal, Console and CMD
Enviroment Menus.
PR: ports/101143
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
11:20 acm
New port: devel/pikdev
PiKdev is a simple graphic IDE for the development of PIC-based applications.
It currently supports assembly language. C language is also supported for PIC
18 devices. PiKdev is developed in C++ under Linux, FreeBSD and is based on
the KDE environment.
WWW: http://pikdev.free.fr/
Approved by: garga (mentor)
|
07:16 clsung
- p5-POE-Component-RSSAggregator provide
Watch Muliple RSS Feeds for New Headlines
- a non-blocking way to watch multiple RSS sources with one process
|
04:22 aaron
Adding port devel/libs11n, A C++ library for easily serializing a wide
variety of objects.
|
01:52 ijliao
add p5-Sub-Multi 0.002
Data::Bind-based multi-sub dispatch
|
Monday, 31 Jul 2006
|
18:40 novel
This package generates a comprehensive information page for your current
PEAR install.
* The format for the page is similar to that for phpinfo() except using PEAR
colors.
* Has complete PEAR Credits (based on the packages you have installed).
* Will show if there is a newer version than the one presently installed
(and what its state is)
* Each package has an anchor in the form pkg_PackageName - where PackageName
is a case-sensitive PEAR package name
With a few parameters, the entire package.xml is automatically updated with a
listing of all files in a package.
WWW: http://pear.php.net/package/PEAR_Info/
PR: ports/101102
Submitted by: chinsan <chinsan.tw at gmail.com>
|
Saturday, 29 Jul 2006
|
20:15 itetcu
libftdi - A library (using libusb) to talk to FTDI's FT2232C,
FT232BM and FT245BM type chips including the popular bitbang mode.
Note: When you get a -5 error "can't claim usb device" during
ftdi_usb_open(), make sure the kernel ftdi_sio driver is unloaded.
WWW: http://www.intra2net.com/de/produkte/opensource/ftdi/
PR: ports/100982
Submitted by: Olexandr Davydenko <o.davydenko at gmail.com>
|
Wednesday, 26 Jul 2006
|
19:44 mnag
* MOVED
- Add entry about viewcvs->viewvc
- Fix last entry. s|ports/sysutils/e17-module|sysutils/e17-module| [1]
Pointy hat to: itectu [1]
* devel/viewcvs
- Remove port
* net-mgmt/rancid
- Change to devel/viewvc in pkg-message
|
19:38 novel
This module is designed to parse a configuration file in the same syntax
used by the Apache web server (see http://httpd.apache.org for
details). This allows you to build applications which can be easily
managed by experienced Apache admins. Also, by using this module,
you'll benefit from the support for nested blocks with built-in
parameter inheritance. This can greatly reduce the amount or repeated
information in your configuration files.
A good reference to the Apache configuration file format can be found
here:
http://httpd.apache.org/docs-2.0/configuring.html
WWW: http://search.cpan.org/~samtregar/Config-ApacheFormat-1.2/
PR: ports/100885
Submitted by: Martin Tournoij <carpetsmoker at gmail.com>
|
Tuesday, 25 Jul 2006
|
21:21 miwi
pefile is a Python module to read and work with PE files. Most of the
information in the PE Header is accessible, as well as all the sections,
section's information and data.
WWW: http://dkbza.org/pefile.html
PR: ports/100393
Submitted by: Antoine Brodin <antoine.brodin(at)laposte.net>
Approved by: krion (mentor)
|
20:58 ehaupt
Add p5-Test-MockRandom 0.99, replaces random number generation with
non-random number generation.
PR: 100749
Submitted by: Jin-Shan Tseng <tjs at cdpa.nsysu.edu.tw>
|
20:57 ehaupt
Add p5-Test-Number-Delta 0.18, compare the difference between two
numbers within a specified amount.
PR: 100698
Submitted by: Jin-Shan Tseng <tjs at cdpa.nsysu.edu.tw>
|
17:39 aaron
Adding port devel/ccrtp, Implementation of the real-time transport
protocol.
PR: ports/97508
Submitted by: acm
|
Monday, 24 Jul 2006
|
17:48 vanilla
Add engrave 20060719, a library for editing the contents of an edje .eet
file.
PR: ports/100573
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
|
06:16 clsung
Add p5-Class-Accessor-Named 0.003, better profiling output for
Class::Accessor.
PR: ports/100655
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
Sunday, 23 Jul 2006
|
06:46 clsung
Add p5-Env-Path 0.16, advanced operations on path variables.
PR: ports/100653
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
06:33 clsung
Add p5-Devel-Messenger 0.01, let Your Code Talk to You.
PR: ports/100618
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
Saturday, 22 Jul 2006
|
19:45 sat
Add port devel/py-fusefs:
FUSE Python bindings
WWW: http://fuse.sourceforge.net/wiki/index.php/FusePython
|
08:57 miwi
Add fistgen language for describing stackable filesystems.
FiST (File System Translator) is a language for describing stackable file
systems. Fistgen is the FiST language code translator. This package includes
sources for fistgen and stackable templates for several operating systems.
Author: Erez Zadok <ezk@cs.sunysb.edu>
WWW: http://www.filesystems.org/
PR: ports/100580
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
|
Friday, 21 Jul 2006
|
16:27 clsung
Add p5-Scalar-Defer 0.04, calculate values on demand.
PR: ports/100597
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
16:14 clsung
- Add p5-Make-Cache 1.041, Caching of object and test run information.
|
15:32 clsung
Add p5-IPC-Open3-Simple 0.04, a simple alternative to IPC::Open3.
PR: ports/100627
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
14:58 clsung
Add p5-File-HStore 0.08, store files on a filesystem using a very simple
hash-based storage.
PR: ports/100622
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
14:09 clsung
Add p5-Class-InsideOut 1.00, a safe, simple inside-out object
construction kit.
PR: ports/100596
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
13:56 clsung
Add p5-SVN-Statistics 0.031, SVN::Statistics - perl module to create
subversion statistics.
PR: ports/100134
Submitted by: Yuan-Chung Hsiao <ychsiao at ychsiao.org>
|
Wednesday, 19 Jul 2006
|
22:56 clsung
Add p5-Params-Classify 0.000, argument type classification.
PR: ports/100546
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
22:54 clsung
Add p5-File-Find-Rule-Filesys-Virtual 1.22, file::Find::Rule adapted to
Filesys::Virtual.
PR: ports/100542
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
15:35 clsung
Add p5-Log-Simple 1.8, basic runtime logger.
PR: ports/100537
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
08:04 clsung
Add p5-Test-Output 0.10, utilities to test STDOUT and STDERR messages.
PR: ports/100515
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
02:29 clsung
Add p5-Object-Declare 0.08, declarative object constructor.
PR: ports/100503
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
01:08 clsung
Add p5-Time-Duration-Parse 0.02, parse string that represents time
duration.
PR: ports/100470
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
00:15 shaun
Add devel/p5-UI-Dialog.
UI::Dialog is an OOPerl wrapper for the various dialog applications.
These dialog backends are currently supported: Zenity, XDialog, GDialog,
KDialog, CDialog, and Whiptail. There is also an ASCII backend provided
as a last resort interface for the console based dialog variants.
PR: ports/97598
Submitted by: Dmitry Karasik <dmitry@karasik.eu.org>
Approved by: ahze (mentor, implicit)
|
Monday, 17 Jul 2006
|
01:09 clsung
Add p5-Class-Multimethods-Pure 0.11, method-ordered multimethod
dispatch.
PR: ports/100375
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
01:05 clsung
Add p5-Test-Singleton 1.03, test for Singleton classes.
PR: ports/100370
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
00:56 clsung
Add p5-Luka 1.06, exception handling and reporting framework.
PR: ports/100342
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
Sunday, 16 Jul 2006
|
15:23 clsung
Add p5-Test-HasVersion 0.01, check Perl modules have version numbers.
PR: ports/100368
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
Saturday, 15 Jul 2006
|
09:15 clsung
Add p5-IPC-Mmap-SimpleShare 0.03, safely share structures among
processes using anonymous mmap.
PR: ports/100257
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
08:35 itetcu
WSGIUtils is a package of standalone utility libraries that ease the development
of simple WSGI programs.
The package is divided into two main components which can be used individualy or
in combination.
wsgiServer is a multi-threaded WSGI web server based on SimpleHTTPServer.
wsgiAdaptor is a simple WSGI application that provides basic authentication,
signed cookies and persistent sessions.
WWW: http://www.owlfish.com/software/wsgiutils/
PR: ports/99488
Submitted by: Jordi Haarman
|
08:27 itetcu
SimpleTAL is a stand alone Python implementation of the TAL, TALES and METAL
specifications used in Zope to power HTML and XML templates. SimpleTAL is an
idependent implementation of TAL; there are no dependencies on Zope nor is any
of the Zope work re-used.
WWW: http://www.owlfish.com/software/simpleTAL/
PR: ports/99489
Submitted by: Jordi Haarman
|
05:37 clsung
Add p5-IPC-Mmap 0.11, provides a minimal mmap() interface for both POSIX
and Win32.
PR: ports/100256
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
04:55 clsung
Add p5-Clone-More 0.90.2, perl module for natively copying Perl data
structures.
PR: ports/100252
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
02:08 rafan
Add p5-File-Find-Object 0.0.3, an object oriented File::Find
replacement.
PR: ports/100314
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
02:07 rafan
Add p5-File-Slurp-Tree 1.24, slurp and emit file trees as nested hashes.
PR: ports/100310
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
Friday, 14 Jul 2006
|
21:23 erwin
Add p5-Clone-Fast 0.90.1, natively copying Perl data structures.
PR: ports/100308
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
21:21 erwin
Dir::Project provides a way to locate a source-controlled directory
(CVS, Subversion, Perforce, etc) using only the current working
directory (cd). This prevents users from having to set other
environment variables when they switch between areas, and allows
scripts and such inside the directory to be executed without changing
the user's PATH.
WWW: http://search.cpan.org/dist/Dir-Project/
PR: ports/100307
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
16:02 erwin
Sometimes you want to make sure that your "faster" algorithm really is
faster than the old way. This lets you check. It might also be useful
to check that your super whizzo XS or Inline::C version is actually
faster.
This module is based on the standard Benchmark module. If you have
lots of timings to compare and you don't want to keep running the same
benchmarks all the time, you can pass in a result object from
Benchmark::timethis() instead of sub routine reference.
Author: Fergal Daly <fergal@esatclear.ie>
WWW: http://search.cpan.org/dist/Test-Benchmark/
PR: ports/100218
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
15:57 rafan
Add p5-Data-Bind 0.27, a perl module to bind and alias variables.
PR: ports/100096
Submitted by: Ying-Chieh Chen
|
15:26 clsung
Add p5-IO-Toolkit 1.008, IO::Toolkit - Perl extension to create
logfiles.
PR: ports/100132
Submitted by: Yuan-Chung Hsiao <ychsiao at ychsiao.org>
|
Thursday, 13 Jul 2006
|
23:38 rafan
Add p5-Term-Encoding 0.01, detect encoding of the current terminal.
PR: ports/100175
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
18:31 novel
Makes sure that all of the modules that are 'use'd are listed
in the Makefile.PL as dependencies.
WWW: http://search.cpan.org/dist/Test-Dependencies/
PR: ports/100154
Submitted by: Jin-Shan Tseng <tjs at cdpa.nsysu.edu.tw>
|
18:18 novel
rpm-build-perl is required to build Perl RPM packages;
it contains scripts for automatic dependency tracking,
RPM macros for Perl.
WWW: http://search.cpan.org/dist/rpm-build-perl/
PR: ports/100153
Submitted by: Jin-Shan Tseng <tjs at cdpa.nsysu.edu.tw>
|
02:34 clsung
Add p5-Devel-LexAlias 0.04, a perl module which does alias lexical
variables.
PR: ports/100094
Submitted by: Ying-Chieh Chen
|
01:01 clsung
Add p5-Devel-Caller 0.11, a perl module which is meatier versions of
caller.
PR: ports/100093
Submitted by: Ying-Chieh Chen
|
00:47 garga
Add p5-Taint-Runtime 0.02, runtime enable/disable taint checking.
|
Wednesday, 12 Jul 2006
|
23:51 clsung
Add p5-Module-Dependency 1.84, collection of modules for examining
dependencies.
PR: ports/100135
Submitted by: Cheng-Lung Sung
|
05:28 hq
PMD scans Java source code and looks for potential problems like:
* Possible bugs - empty try/catch/finally/switch statements
* Dead code - unused local variables, parameters and private methods
* Suboptimal code - wasteful String/StringBuffer usage
* Overcomplicated expressions - unnecessary if statements, for loops
that could be while loops
* Duplicate code - copied/pasted code means copied/pasted bugs
WWW: http://pmd.sourceforge.net/
PR: 99907
Submitted by: Alex Varju <freebsd-ports@varju.ca>
|
Tuesday, 11 Jul 2006
|
19:19 itetcu
FSF gcc-4.1 for PowerPC/RS6000 cross-development. This port brings C, C++ and
ObjectiveC compillers without target libraries (i.e libstdc++ isn't included).
It can be used to cross-compile operating system kernels (e.g. Linux, L4, etc)
for this architecture.
WWW: http://gcc.gnu.org/
PR: ports/94682
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
|
18:28 itetcu
GNU binutils for PowerPC/RS6000 cross-development.
Prerequisite for the GCC for PowerPC/RS6000 cross-compilation environment.
WWW: http://sources.redhat.com/binutils/
PR: ports/94681
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
|
15:55 clsung
Add p5-Config-INI-Simple 0.01, simple reading and writing from an INI
file.
PR: ports/100078
Submitted by: Gea-Suan Lin <gslin at gslin.org>
|
07:29 clsung
Add monotone-viz 0.14, visual interface for Monotone VCS with revision
graphs.
PR: ports/99722
Submitted by: Tarasov Alexey <master at preved.cn>
|
Sunday, 9 Jul 2006
|
11:58 skv
Add p5-POE-Stage 0.0082, base class for formalized POE components.
|
Saturday, 8 Jul 2006
|
23:49 itetcu
Standalone library to control various widely available Freescale's mpc8xx
based boards. This code was derived from mpcbdm patch by Frank Przybylski.
This allows using this code separately from gdb, for example, to load
firmware to the board, or retrive information about it.
The package includes example "mpc8xx" program, that displays information
about connected board using libmpcbdm library.
The schematic of adapter itself can be found at project homepage.
Author: Erwin Rol <erwin@muffin.org>
WWW: http://libmpc8xx.sourceforge.net/
PR: ports/99406
Submitted by: Stanislav Sedov <stas at fonon.realnet>
|
08:34 erwin
Reconnect devel/otrs now that is has replaced www/otrs.
|
Thursday, 6 Jul 2006
|
17:49 garga
OUnit is a unit testing framework for Objective Caml, inspired by
the JUnit tool for Java, and the HUnit tool for Haskell.
WWW: http://home.wanadoo.nl/maas/ocaml
PR: ports/93957
Submitted by: Meikel Brandmeyer <ocaml-ounit-port at kotka.de>
|
05:30 ahze
temporarily disconnect devel/otrs to fix index build since
www/otrs is a dupe in index. I disconnected devel/otrs since
it looks like www/otrs was commited first and www/otrs listed
in modules while devel/otrs isn't.
Reported by: erwin index build email
|
Wednesday, 5 Jul 2006
|
20:20 jmelo
- New port: libepp-nicbr
This is the LIBEPP-NICBR C++ library that partially implements the Extensible
Provisioning Protocol (EPP), as described in the Internet Drafts RFC3730bis to
RFC3734bis and RFC3735.
RFC3731bis - EPP Domain Name Mapping - was implemented with hosts as attributes
of the Domain Object.
In order to conform to the .BR model, extensions to the EPP Domain Name and
Contact Mapping were made (draft-neves-epp-brdomain and draft-neves-epp-brorg),
supported since version 0.2. The documentation for these extensions is
available at EPP References [1].
[1]
http://registro.br/epp/rfc-EN.html
WWW: http://registro.br/epp/
|
17:15 skv
Add otrs 2.0.4, Open Ticket Request System.
|
Monday, 3 Jul 2006
|
00:22 alepulver
PDCurses is a public domain curses library for Win32, DOS, OS/2 and X11,
implementing most of the functions available in System V R4 curses. It
supports most compilers for these platforms. The X11 port allows existing
text-mode curses programs to be re-compiled and linked with PDCurses to
produce native X11 applications.
WWW: http://pdcurses.sourceforge.net/
|
00:21 alepulver
Replacement for the GNU regex library.
WWW: http://directory.fsf.org/rx.html
|
Sunday, 2 Jul 2006
|
10:33 itetcu
Leaftag is a library and set of utilities for tagging files on the desktop.
libleaftag is the core tagging library. It's GObject-based and provides a
simple means for tagging and untagging files, retrieving lists of tags, and
generally manipulating the database.
Project homepage:
WWW: http://www.chipx86.com/wiki/Leaftag
PR: ports/98113
Submitted by: Khairil Yusof <kaeru@inigo-tech.com>
|
Saturday, 1 Jul 2006
|
07:30 clsung
Add ruby-game 1.1.0, a game-development extension and library for the
ruby language.
PR: ports/98729
Submitted by: Jona Joachim <walkingshadow AT grummel dot net>
|
06:11 novel
A Time::Clock object is a twenty-four hour clock with nanosecond precision
and wrap-around. It is a clock only; it has absolutely no concept of dates.
Vagaries of date/time such as leap seconds and daylight savings time are
unsupported.
WWW: http://search.cpan.org/dist/Time-Clock/
PR: ports/99667
Submitted by: Zach Thompson <hideo@lastamericanempire.com>
|
Thursday, 29 Jun 2006
|
11:08 garga
LiON (Lund's Input Output Library) is a C library to quickly develop
programs that are event-driven, networked, non-blocking and portable.
It includes a simple API to do any networking, file I/O and pipes.
It is multiplatform and runs on POSIX-like systems and Windows.
WWW: http://www.lundman.net/wiki/index.php/LiON
PR: ports/99589
Submitted by: Marco Molteni <molterSPAM@gufiSPAM.org>
|
10:59 itetcu
Tailor is a tool to migrate changesets between ArX, Bazaar, Bazaar-NG,
CVS, Codeville, Darcs, Git, Mercurial, Monotone, Subversion and Tla
repositories.
WWW: http://www.darcs.net/DarcsWiki/Tailor/VersionOne
PR: ports/99035
Submitted by: Rui Lopes <rgl ruilopes com>
|
Wednesday, 28 Jun 2006
|
02:50 clsung
Add p5-Log-Accounting-SVN 0.01, perl module for accounting SVN
repository.
PR: ports/99525
Submitted by: Yuan-Chung Hsiao & <ychsiao@ychsiao.org>
|
00:41 clsung
Add p5-SVN-Log 0.03, SVN::Log - Extract change logs from a Subversion
server.
PR: ports/99526
Submitted by: Yuan-Chung Hsiao <ychsiao@ychsiao.org>
|
Tuesday, 27 Jun 2006
|
09:11 novel
Date_Holidays helps you calculating the dates and titles of holidays
and other special celebrations. The calculation is driver-based so
it is easy to add new drivers that calculate a country's holidays.
The methods of the class can be used to get a holiday's date and
title in various languages.
WWW: http://pear.php.net/package/Date_Holidays
PR: ports/99069
Submitted by: Thomas Abthorpe <thomas@goodking.ca>
|
Monday, 26 Jun 2006
|
15:59 garga
Add fpc-gconf , free Pascal interface to GConf.
PR: ports/99308
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
Sunday, 25 Jun 2006
|
16:23 aaron
Adding port devel/p5-Package-Constants, List all constants declared in a
package.
Approved by: tobez (implicit)
|
Number of commits found: 11319 (showing only 100 on this page) |