Commit graph

12495 commits

Author SHA1 Message Date
Roman Kulik
460a5ccce4 Updated to version 0.06000 2006-04-07 20:24:35 +00:00
Roman Kulik
b87633c1f3 Updated to version 0.11 2006-04-07 20:14:29 +00:00
Roman Kulik
ce0a2446f6 This module implements the C3 algorithm. I have broken this out
into it's own module because I found myself copying and pasting
it way too often for various needs. Most of the uses I have for
C3 revolve around class building and metamodels, but it could
also be used for things like dependency resolution as well since
it tends to do such a nice job of preserving local precendence
orderings.
2006-04-07 20:00:02 +00:00
Roman Kulik
fc5a30095a DBIx::Class::Schema::Loader automates the definition of a
DBIx::Class::Schema by scanning table schemas and setting up columns and
primary keys.

DBIx::Class::Schema::Loader supports MySQL, Postgres, SQLite and DB2.
See DBIx::Class::Schema::Loader::Generic for more, and
DBIx::Class::Schema::Loader::Writing for notes on writing your own
db-specific subclass for an unsupported db.

This module requires DBIx::Class 0.05 or later, and obsoletes
DBIx::Class::Loader for DBIx::Class version 0.05 and later.

While on the whole, the bare table definitions are fairly straightforward,
relationship creation is somewhat heuristic, especially in the choosing
of relationship types, join types, and relationship names.  The relationships
generated by this module will probably never be as well-defined as
hand-generated ones.  Because of this, over time a complex project will
probably wish to migrate off of L<DBIx::Class::Schema::Loader>.

It is designed more to get you up and running quickly against an existing
database, or to be effective for simple situations, rather than to be what
you use in the long term for a complex database/project.
2006-04-07 19:32:53 +00:00
Roman Kulik
08595c50e5 Updated to version 5.66 2006-04-07 18:59:16 +00:00
Roman Kulik
551ede0cba This module is a simple visitor implementation for Perl values.
It has a main dispatcher method, visit, which takes a single perl
value and then calls the methods appropriate for that value.
2006-04-07 18:49:04 +00:00
Roman Kulik
1feb865d97 Updated to version 1.04 2006-04-07 18:46:18 +00:00
Roman Kulik
bbf0d8fc7e According to the Test::More documentation, it is recommended to run
use_ok() inside a BEGIN block, so functions are exported at
compile-time and prototypes are properly honored.

That is, instead of writing this:

    use_ok( 'Some::Module' );
        use_ok( 'Other::Module' );

	One should write this:

	    BEGIN { use_ok( 'Some::Module' ); }
	        BEGIN { use_ok( 'Other::Module' ); }

		However, people often either forget to add BEGIN, or mistakenly group
		use_ok with other tests in a single BEGIN block, which can create subtle
		differences in execution order.

		With this module, simply change all use_ok in test scripts to use ok,
		and they will be executed at BEGIN time.  The explicit space after use
		makes it clear that this is a single compile-time action.
2006-04-07 18:18:01 +00:00
Jeremy C. Reed
2a79b328b7 Remove redundant BUILDLINK_ABI_DEPENDS.
(Not needed if BUILDLINK_API_DEPENDS is the same.)
2006-04-06 16:56:36 +00:00
Jeremy C. Reed
9fb81145dd Revert an accidental change. 2006-04-06 16:27:30 +00:00
OBATA Akio
a968e3075f added lmtp2nntp 2006-04-06 13:50:18 +00:00
OBATA Akio
8e73ea8e1a The OSSP lmtp2nntp program is an LMTP service for use in conjunction with a Mail
Transfer Agent (MTA) like Sendmail or Postfix, providing a reliable real-time
mail to news gateway. Input messages get their headers slightly reformatted to
match Usenet news article format. The article is then posted or feeded into a
remote NNTP service (like INN). Delivery must take place immediately or the
transaction fails. OSSP lmtp2nntp relies on the queueing capabilities of the MTA
in order to provide a fully reliable service. For this the program returns
proper delivery status notification which indicates successful completed action,
persistent transient failure or permanent failure.
2006-04-06 13:48:18 +00:00
Adam Ciarciński
6409044368 Imported into pkgsrc 2006-04-06 13:37:51 +00:00
Jeremy C. Reed
37f815a375 Change BUILDLINK_DEPENDS.foo to BUILDLINK_API_DEPENDS.foo.
Change BUILDLINK_RECOMMENDED.foo to BUILDLINK_ABI_DEPENDS.foo.

As discussed on tech-pkg.
2006-04-06 07:16:55 +00:00
Thomas Klausner
80d9824519 0.5.5 out. 2006-04-05 23:00:58 +00:00
Geert Hendrickx
5f64076860 seamonkey, seamonkey-bin and seamonkey-gtk1 moved to pkgsrc/www. 2006-04-05 18:51:27 +00:00
Geert Hendrickx
3b70c859ab seamonkey, seamonkey-gtk1 and seamonkey-bin have been imported in pkgsrc. 2006-04-05 18:49:24 +00:00
Geert Hendrickx
4af5c22f56 Fix path to nagios-base, too. 2006-04-05 18:46:25 +00:00
Thomas Klausner
6e440d87ac Adapt patches to current CVS version. 2006-04-05 17:19:26 +00:00
Thomas Klausner
fdeecf1348 1.3.5 out. 2006-04-05 17:18:58 +00:00
Thomas Klausner
36c5a37bcc 0.14.3 out. 2006-04-05 17:18:47 +00:00
Thomas Klausner
e9aff29162 0.1.1.17rc out. 2006-04-05 17:18:18 +00:00
Thomas Klausner
073b6ba04d Fix path to nagios-plugins. 2006-04-05 17:18:10 +00:00
Thomas Klausner
70ca9e1b9e Update to 0.5.4:
Changes:
CODE: Switched to zlib/libpng license.
GUI: Cleaned up input configuration dialog a bit.
INPUT: Added ability to calibrate joystick devices.
VIDEO: Added Blargg's 'nes_ntsc' as a selectable blitter (palettes are not supported).
VIDEO: Removed support for image offset/zooming (as these features were never used anyway).
VIDEO: Renamed 'light_adjustment' to 'brightness' and changed it's absolute range from 63 to 100.
2006-04-05 17:17:39 +00:00
Min Sik Kim
4260d28ddd ruby-sqlite3 was merged with databases/ruby-sqlite3. 2006-04-05 15:20:17 +00:00
Emil Sköldberg
8d74bff5ef Added pal. 2006-04-05 08:19:10 +00:00
Emil Sköldberg
5f0cee2030 pal is a command-line calendar program for Unix/Linux systems that can
keep track of events. It has similarities with the Unix cal command,
the more complex GNU gcal program, and the calendar program distributed
with the BSDs.
2006-04-05 08:10:26 +00:00
Geert Hendrickx
dcb55311c0 Add firefox2, firefox2-bin and firefox2-gtk1, packages for "Bon Echo" Alpha 1.
Bon Echo Alpha 1 is a developer preview release of our next generation Firefox
browser and it is being made available for testing purposes only. Bon Echo
Alpha 1 is intended for web application developers and our testing community.
Current users of Mozilla Firefox 1.x should not use Bon Echo Alpha 1.
2006-03-30 06:44:14 +00:00
Geert Hendrickx
cab3e60f49 Import Firefox 2.0alpha1 ("Bon Echo") as firefox2. This package installs the
official Linux binaries.

Bon Echo Alpha 1 is a developer preview release of our next generation Firefox
browser and it is being made available for testing purposes only. Bon Echo
Alpha 1 is intended for web application developers and our testing community.
Current users of Mozilla Firefox 1.x should not use Bon Echo Alpha 1.
2006-03-30 06:42:55 +00:00
Geert Hendrickx
395f554a2e Import Firefox 2.0alpha1 ("Bon Echo") as firefox2. This package uses gtk1.
Bon Echo Alpha 1 is a developer preview release of our next generation Firefox
browser and it is being made available for testing purposes only. Bon Echo
Alpha 1 is intended for web application developers and our testing community.
Current users of Mozilla Firefox 1.x should not use Bon Echo Alpha 1.
2006-03-30 06:41:42 +00:00
Geert Hendrickx
9226e91dfb Import Firefox 2.0alpha1 ("Bon Echo") as firefox2. This package uses gtk2.
Bon Echo Alpha 1 is a developer preview release of our next generation Firefox
browser and it is being made available for testing purposes only. Bon Echo
Alpha 1 is intended for web application developers and our testing community.
Current users of Mozilla Firefox 1.x should not use Bon Echo Alpha 1.
2006-03-30 06:40:25 +00:00
Jeremy C. Reed
a35134c07a Import of libXpm. This conflicts with graphics/xpm.
(The distfile for xpm-3.4k is over eight years old.)

XPM (X PixMap) is a format for storing and retrieving X pixmaps
to and from files.

This libXpm is from the modular Xorg X11.

This package includes the cxpm(1) tool for checking XPM files.
2006-03-30 00:03:46 +00:00
Mahesh Chittur
fe0f1a5923 ncbi mate package updated to latest build ( 20060301 ) 2006-03-29 20:43:39 +00:00
Mahesh Chittur
46cb1ed14e ncbi-bin updated to latest build ( 20060301 ) 2006-03-29 20:40:38 +00:00
Geert Hendrickx
60a8a3c3eb This doesn't belong here. 2006-03-29 20:00:01 +00:00
Geert Hendrickx
d544fee5cf Add seamonkey-bin. 2006-03-29 19:59:48 +00:00
Geert Hendrickx
f81e913a18 Import a Linux-binary package for Seamonkey (e.g. for use with Flash).
This package uses gtk2.
2006-03-29 19:58:15 +00:00
Mike M. Volokhov
82b16a2814 pkgsrc now contains updated pptp package (created from scratch, though). 2006-03-28 14:13:00 +00:00
OBATA Akio
7fca0d10e7 Update to mecab 0.90 release version.
No important changes from 0.90rc11.
2006-03-28 06:58:03 +00:00
Mahesh Chittur
4d8f8c91aa ncbi-lib upgraded to 20060301 build number 2006-03-28 05:15:17 +00:00
Evaldo Gardenali
2083db73bc Demand pkgsrc openssl 2006-03-28 01:01:16 +00:00
Evaldo Gardenali
4db23fbe6d Fix PKGNAME
Demand pkgsrc openssl
2006-03-28 00:59:38 +00:00
Todd Vierling
e91e279c22 Tor 0.1.1.x-rc, for wip until this series of versions is in "stable"
condition for inclusion in pkgsrc/net/tor.
2006-03-26 16:16:20 +00:00
Bartosz Kuzma
5cdc8ae44a granule depends on p5-XML-Parser. 2006-03-26 15:23:20 +00:00
Antoine Reilles
af912a7901 remove dependancy over zlib, since kaffe now uses its own fastjar 2006-03-26 10:36:34 +00:00
Thomas Klausner
11ec11e121 20060319 out. 2006-03-25 22:51:54 +00:00
Antoine Reilles
add78517b7 Make it work with kaffe-1.1.7-rc2 2006-03-25 19:53:33 +00:00
Antoine Reilles
69b353a89e The patches are no longer necessary
move libldtl include in makefile.common, as it ise needed for kaffe-x11
2006-03-25 19:52:48 +00:00
Evaldo Gardenali
cd150aa92b engine-pkcs11: added buildlink3.mk that was missing 2006-03-25 18:34:55 +00:00
Antoine Reilles
250a9043ff update for kaffe 1.1.7-rc2. regression tests do pass fine on -current i386 2006-03-25 14:39:15 +00:00