Commit Graph

4932 Commits

Author SHA1 Message Date
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
simon
958f6f6316 update to version 0.97 and remove quotes around comment
similar diff by Brad, "go ahead" steven@
2007-09-10 21:02:25 +00:00
jasper
f7beae69a6 update pango to 1.16.4
"go ahead" steven@
2007-09-10 19:14:19 +00:00
jasper
da87bcceb1 update glib2 to 2.12.13
"go ahead" steven@
2007-09-10 19:13:33 +00:00
sthen
9e4869750d + p5-Class-Virtual
+ p5-Tie-Cache-LRU
+ p5-Tie-Cache-LRU-Expires
2007-09-09 23:30:22 +00:00
sthen
696b11b290 import p5-Tie-Cache-LRU-Expires
This is an expiring LRU cache, using Tie::Cache::LRU. Each entry
in this cache expires after 'EXPIRES' seconds (default 3600).
The cache is in RAM (see Tie::Cache::LRU).

ok merdely@
2007-09-09 23:27:04 +00:00
sthen
5c570055ab import p5-Tie-Cache-LRU
This is an implementation of a least-recently used (LRU) cache
keeping the cache in RAM.

ok merdely@
2007-09-09 23:26:17 +00:00
sthen
a554adf9d4 import p5-Class-Virtual
This is a base class for implementing virtual base classes (what
some people call an abstract class). Kinda kooky. It allows you to
explicitly declare what methods are virtual and that must be
implemented by subclasses. This might seem silly, since your program
will halt and catch fire when an unimplemented virtual method is
hit anyway, but there's some benefits.

The error message is more informative. Instead of the usual "Can't
locate object method" error, you'll get one explaining that a virtual
method was left unimplemented.

Subclass authors can explicitly check to make sure they've implemented
all the necessary virtual methods. When used as part of a regression
test, it will shield against the virtual method requirements changing
out from under the subclass.

Finally, subclass authors can get an explicit list of everything
they're expected to implement.

ok merdely@
2007-09-09 23:24:25 +00:00
sthen
6cb88fa781 + p5-enum 2007-09-09 23:06:08 +00:00
sthen
70f7f33835 import p5-enum
Defines a set of symbolic constants with ordered numeric values ala
C enum types. What are they good for? Typical uses would be for giving
mnemonic names to indexes of arrays.

This not only reads easier, but can also be typo-checked at compile
time when run under use strict. That is, if you misspell Days_Fri
as Days_Fry, you'll generate a compile error.

Also capable of creating ordered bitmask constants, allowing the
easy creation of bitmask constants, allowing you to efficiently store
many true/false options within a single integer.

ok merdely@
2007-09-09 23:05:17 +00:00
sthen
9fe0258f8a add p5-Tie-LLHash 2007-09-09 22:58:45 +00:00
sthen
032330cc26 import p5-Tie-LLHash
This class implements an ordered hash-like object. It's a cross
between a Perl hash and a linked list. Use it whenever you want the
speed and structure of a Perl hash, but the orderedness of a list.

ok merdely@
2007-09-09 22:54:42 +00:00
jasper
3ab83d5ed5 - update libwnck to 2.18.3
- convert to use gnome.port.mk
- re-format DESCR

ok martynas@
2007-09-09 20:28:54 +00:00
bernd
db4152cd1a Update to git-1.5.2.5.
Clean up the multiple distfile extraction mess. (prodded by espie@)
2007-09-08 11:29:40 +00:00
msf
39578dd6b4 +p5-Class-Meta
+p5-Class-Meta-Express
+p5-Data-Types
2007-09-08 02:59:52 +00:00
msf
014e902e3d initial import of Class::Meta::Express 0.04
This module provides an interface to concisely yet expressively create
classes Class::Meta. The intent is to provide a simpler, more meaningful
interface for creating Class::Meta classes while preserving the power
and flexibility of Class::Meta.
2007-09-08 01:29:48 +00:00
msf
cb9f67e394 initial import of Class::Meta 0.53 2007-09-08 01:27:42 +00:00
msf
1ae9c29e81 initial import of Data::Types 0.06
This module exports a number of functions that are useful for validating
and converting data types. It is intended for use in applications where
data types are more important than they typically are in Perl -- e.g.,
database applications.
2007-09-08 01:26:44 +00:00
steven
cbababdb50 bump pkgname because of DESCR changes 2007-09-07 20:12:55 +00:00
jasper
8ea6e0bceb - update vte to 0.16.8
- convert to use gnome.port.mk
- remove quotes from COMMENT

based on a diff by Giovanni Bechis
ok martynas@
2007-09-07 12:47:35 +00:00
naddy
95c218d114 sync FLAVORS and DESCR; from Pierre Riteau 2007-09-06 19:15:13 +00:00
simon
32aad272eb add p5-IPC-Shareable 2007-09-06 18:12:12 +00:00
simon
ca2b721685 import p5-IPC-Shareable
IPC::Shareable allows you to tie a variable to shared memory making it
easy to share the contents of that variable with other Perl processes.
Scalars, arrays, and hashes can be tied. The variable being tied may
contain arbitrarily complex data structures - including references to
arrays, hashes of hashes, etc.

ok jasper@
2007-09-06 18:10:48 +00:00