Commit Graph

4954 Commits

Author SHA1 Message Date
bernd
d345fec8a4 Update to ruby-daemons-1.0.8. 2007-09-27 18:56:32 +00:00
bernd
0c7dddf195 Update to ruby-gem_plugin-0.2.2. 2007-09-27 18:53:53 +00:00
steven
99504fb70f no runtime dependency on python.
ok bernd@
2007-09-27 11:54:56 +00:00
bernd
a5f5c27f6b + ruby-rcov 2007-09-26 17:21:07 +00:00
bernd
a2de2b942e Initial import of ruby-rcov-0.8.0.2.
A code coverage tool for Ruby featuring fast execution, multiple
analysis modes, cross-referenced XHTML and several kinds of text
reports, easy automation with Rake and Rant.

Submitted and maintained by markus@.

ok sturm@
2007-09-26 17:17:22 +00:00
bernd
c7dd7aecd5 + ruby-uuidtools 2007-09-26 16:49:04 +00:00
bernd
e2ef2b3a37 Initial import of ruby-uuidtools-1.0.1.
UUIDTools was designed to be a simple library for generating any of the
various types of UUIDs (or GUIDs if you prefer to call them that).
It conforms to RFC 4122 whenever possible.
2007-09-26 16:46:48 +00:00
bernd
015beb387f Update to libidn-1.1, mention the new license (GPLv3), drop maintainership.
Tested and ok steven@.
2007-09-26 05:05:40 +00:00
merdely
da16530e0b Add p5-Tie-Cache 2007-09-26 02:36:03 +00:00
merdely
937b0d5f65 Add Tie::Cache as a dependency for "an additional speed boost when
caching static data"

ok simon@
2007-09-25 22:16:03 +00:00
merdely
8e64585139 This module implements a least recently used (LRU) cache in memory
through a tie interface. Any time data is stored in the tied hash, that
key/value pair has an entry time associated with it, and as the cache
fills up, those members of the cache that are the oldest are removed to
make room for new entries.

So, the cache only "remembers" the last written entries, up to the size
of the cache. This can be especially useful if you access great amounts
of data, but only access a minority of the data a majority of the time.

ok simon@
2007-09-25 22:11:54 +00:00
merdely
637c8bc061 Update to 0.12
From Volker.Wiegand
ok steven@, jasper@
2007-09-24 14:41:56 +00:00
merdely
d258205c1c Tweak HOMEPAGE and MASTER_SITES.
ok MAINTAINER (Will Maier) and simon@
2007-09-23 17:07:21 +00:00
pvalchev
4967057365 update to sdl-1.2.12. long due update, possible now since the macppc
X acceleration bug is now gone (thanks for ajacoutot for endless testing
of this issue), diff from brad
2007-09-22 01:12:38 +00:00
merdely
c12619bb77 Add libconfig 2007-09-21 20:23:50 +00:00
merdely
74893583cf Libconfig is a simple library for manipulating structured configuration
files. This file format is more compact and more readable than XML. And
unlike XML, it is type-aware, so it is not necessary to do string
parsing in application code.

Libconfig is very compact - just 25K for the stripped C shared library
(one-fifth the size of the expat XML parser library) and 39K for the
stripped C++ shared library. This makes it well-suited for
memory-constrained systems like handheld devices.

From Will Maier (MAINTAINER)

tweaks and ok sturm@ and kili@
2007-09-21 20:19:05 +00:00
steven
42d2d25b03 update to 0.73 2007-09-21 07:38:11 +00:00
msf
63db7b990e +p5-Expect-Simple
+p5-Test-Expect
2007-09-21 05:55:37 +00:00
msf
9e809e073e initial import of Test::Expect 0.30
Test::Expect is a module for automated driving and testing of
terminal-based programs. It is handy for testing interactive programs
which have a prompt, and is based on the same concepts as the Tcl Expect
tool. As in Expect::Simple, the Expect object is made available for
tweaking.
2007-09-21 02:41:48 +00:00
msf
22f30638f6 initial import of Expect::Simple 0.03
Expect::Simple is a wrapper around the Expect module which should
suffice for simple applications. It hides most of the Expect machinery;
the Expect object is available for tweaking if need be.
2007-09-21 02:38:59 +00:00
msf
5becbc2d29 use MASTER_SITE_RUBYFORGE 2007-09-20 12:48:05 +00:00
steven
20b11768fd update to 1.3.7
from maintainer Vlad Glagolev
2007-09-20 12:41:06 +00:00
msf
92205c62a2 use MASTER_SITE_RUBYFORGE 2007-09-20 12:33:32 +00:00
steven
7b6672e379 update to 1.2.10
tested and ok merdely@, simon@
2007-09-20 10:18:37 +00:00
steven
a5f69b4f28 update to 1.2.11
tested and ok merdely@, simon@
2007-09-20 10:17:21 +00:00
martynas
799cddec5f update to 2.14.0; REGRESS_FLAGS tweak and ok jasper@ 2007-09-19 13:19:50 +00:00
martynas
1e7fe25a2f update to 2.14.3; ok jasper@ 2007-09-19 13:11:09 +00:00
naddy
a01a0850ad adapt FLAC support to the FLAC 1.1.3+ API 2007-09-18 18:33:25 +00:00
naddy
68ccde1d59 adapt FLAC support to the FLAC 1.1.3+ API; ok mgrimm@ 2007-09-18 18:29:14 +00:00
kurt
d9e46b09e2 - fix patch borked by cvs changing cvs tag upon commit (i.e. $Revision$).
breakage reported by RD Thrush rd at thrush.com
2007-09-17 13:31:20 +00:00
naddy
827a4ca6e0 use autoconf instead of directly patching configure; it's more maintainable 2007-09-16 16:45:59 +00:00
simon
026a13bf4d remove surrounding quotes from COMMENT/PERMIT_*/BROKEN 2007-09-16 11:14:46 +00:00
simon
66ede79a7e remove surrounding quotes from COMMENT/BROKEN/PERMIT_* 2007-09-16 09:25:09 +00:00
simon
a8d100e201 import p5-Test-Group
Test::Group allows for grouping together related tests in a standard
Test::More-style script.  It provides a bunch of maintainability and
scalability advantages to large test suites.

feedback & ok merdely@
2007-09-16 09:24:46 +00:00
merdely
376b75df06 Remove quotes surrounding COMMENT*/PERMIT_*/BROKEN 2007-09-16 02:52:56 +00:00
jolan
e5e845bb1c +luarings 2007-09-15 09:49:18 +00:00
jolan
eb55afd6aa resurrect the luarings port now that a lua 5.1 compatible version has
been released

submitted by pedro martelletto
2007-09-15 09:48:31 +00:00
steven
9d99902589 +mowgli 2007-09-14 21:17:28 +00:00
steven
06ea21cd06 import mowgli 0.4.0
libmowgli is a class library containing performance and usability
oriented extensions to C.
2007-09-14 21:16:14 +00:00
steven
f500152424 update to 0.5.0 2007-09-14 21:04:13 +00:00
jasper
05971da8fa add goffice 2007-09-14 06:39:51 +00:00
msf
dad981ac61 +p5-TAP-Parser 2007-09-14 06:27:13 +00:00
msf
a9f81439f9 initial import of TAP::Parser 0.54
TAP::Parser is designed as a replacement for Test::Harness.
2007-09-14 05:53:04 +00:00
sthen
31ad962cce +cutils 2007-09-13 21:46:15 +00:00
sthen
60dc7fa60c import cutils, from maintainer Paul Irofti with tweaks by myself
* cdecl and cundecl - decode and encode C type declarations
    * cobfusc - make a C source file unreadable but compilable
    * chilight - highlight C source files
    * cunloop - unloop C loops
    * yyextract - extract grammar rules from yacc grammar
    * yyref - yacc grammar reference program 

ok steven@
2007-09-13 21:44:27 +00:00
martynas
1b4976c3fb This shouldn't have gone in. Sorry. 2007-09-13 21:26:55 +00:00
martynas
cc712183c4 Import goffice-0.2.2, to be used for gnumeric and gnucash.
GOffice is a library of document-centric objects and utilities building
on top of GLib and Gtk+.

- fix cairo for gnucash, asked by todd@
tweaks/ok jasper@, todd@, alek@
2007-09-13 21:23:00 +00:00
djm
122a32371a make glib2 use /dev/arandom instead of /dev/urandom; ok jasper@ 2007-09-13 10:51:13 +00:00
steven
7f695d3c05 tweak FULLPKGNAME to allow coexistence of unflavored and mt flavor
suggestion from kurt@, ok kurt@ merdely@
2007-09-11 20:20:51 +00:00
steven
9be5e6fb4d revert FULLPKGNAME change so unflavored and mt flavor can coexist again 2007-09-11 19:16:47 +00:00