summaryrefslogtreecommitdiff
path: root/databases/p5-Class-DBI
AgeCommit message (Collapse)AuthorFilesLines
2016-06-08Bump PKGREVISION for perl-5.24.wiz1-2/+2
2015-11-03Add SHA512 digests for distfiles for databases categoryagc1-1/+2
Problems found with existing distfiles: distfiles/D6.data.ros.gz distfiles/cstore0.2.tar.gz distfiles/data4.tar.gz distfiles/sphinx-2.2.7-release.tar.gz No changes made to the cstore or mariadb55-client distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-07-12Comment out dependencies of the stylewiz1-2/+2
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS since pkgsrc enforces the newest perl version anyway, so they should always pick perl, but sometimes (pkg_add) don't due to the design of the {,} syntax. No effective change for the above reason. Ok joerg
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz1-2/+2
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2014-10-09Remove SVR4_PKGNAME, per discussion on tech-pkg.wiz1-2/+1
2014-05-29Bump for perl-5.20.0.wiz1-2/+2
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2013-12-09Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes.obache1-3/+3
Bump PKGREVISION for runtime dependency pattern changed packages.
2013-11-24Comment out p5-Storable dependency; included in perl since 5.7.3.wiz1-4/+3
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-2/+2
are called p5-*. I hope that's all of them.
2012-10-02Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-2/+2
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-2/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-06-20Update p5-Class-DBI to v3.0.17.he2-6/+6
Changes since v3.0.14 according to the changelog: 3.0.17 Oct 4, 2007 - Fix t/11 to cope with Class::Trigger no longer supporting multiple triggers in one shot 3.0.16 Nov 05, 2006 - Better error reporting from has_a setup failure 3.0.15 Aug 19 2006 - Fix ignorage with mutator_name and accessor_name (Ask Bjørn Hansen)
2008-06-20Add DESTDIR support.joerg1-1/+3
2007-10-25Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mkjlam1-1/+0
can handle packages having no PLIST files.
2006-10-21This package actually also needs p5-version.he1-1/+2
2006-05-05fix DEPENDS - this now needs p5-Cloneabs1-2/+3
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-16Update p5-Class-DBI to 3.0.14abs2-9/+8
3.0.14 Jan 03 2006 - Fix breakage with mutator_name (Ask Bj�rn Hansen) 3.0.13 Dec 15 2005 - Use DBI's last_insert_id() where available (David Steinbrunner) - Cope better with deleting through a might_have (Rob Brown) - Allow setting a false value or NULL in a might_have (Brad Bowman) 3.0.12 Nov 04 2005 - Use Clone instead of dclone for cloning meta info to reduce required perl version (Juan Camacho) and allow for closures (RT#15498) - Remove lots of old deprecations 3.0.11 Oct 23 2005 - search through a has_many can now take hash_ref - Fix documentation for SQL wildcards (RT#15145) 3.0.10 Oct 7 2005 - Set Storable::Deparse so that has_a subrefs can be cloned (Will Ross) - Use shorter version of mk_classdata - Include t/24 which was accidentally left out of MANIFEST in 3.0.9 3.0.9 Sep 23 2005 - Fixed bug with shared meta_info (Will Ross) - create() has been renamed to insert() to make it much clearer that it corresponds to an SQL INSERT rather than lots of different ideas as to what create() might mean. create() still (silently) works. It will give 'deprecated' warnings from 3.2.0 and will be removed no earlier than 3.4.0. The before/after create triggers have NOT been renamed yet as I'm rethinking some of that. We'll probably end up with more trigger points. Comments and suggestions welcome. 3.0.8 Sep 20 2005 - constraint exceptions now set their 'data' (Dan Collis Puro) - method created by has_many can now override method in parent class (reported by Christopher H. Laco) - factored out transform_sql for easier modification 3.0.7 Sep 17 2005 - Make Column responsible for accessor() and mutator() so they can be set up declaratively as well as programmatically (this means the second argument to accessor_name and mutator_name is now a Column object rather than its name, so you may need to check your case sensitivity) - Rename accessor/mutator_name to accessor/mutator_name_for - Document that order_by clauses in sort() are passed through - Make one-shot 'Essential' set up slightly more explicit in docs (Adam Kennedy) - Fix HasMany warning typo (argumemt) (Dan Friedman) - Remove obsolete SearchGenerator code which had leaked out 3.0.6 Sep 16 2005 - constrain_column can now take subref constraint - Document DBD::AnyData and FreeTDS issues (Matt Trout) - Factor out database error handling to _db_error() - Switch to Class::Accessor::Fast in Column and Relationship 3.0.5 Sep 14 2005 - has_many can take compile time constraints (Cees Hek) - has_many can take a cascading delete strategy (deprecating the old, undocumented, 'no_cascade_delete' option) - columns() can take Class::DBI::Column objects directly which can now in turn take options, thus allowing things like: __PACKAGE__->columns(dates => Class::DBI::Column->new( tdate => { placeholder => 'IF(1, CURDATE(), ?)' } ) 3.0.4 Sep 13 2005 Pre-Reqs - Note requirement for Scalar::Util 1.08+ (for refaddr) Refactorings - Move to pluggable Search interface (includes reworking of search approach per Tim Bunce) 3.0.3 Sep 11 2005 Bug Fixes - Ensure object is removed from index when delete()d (Tim Bunce) - clear_object_index when new relationship set up (Tim Bunce) - Fixed bug where PK values got auto-vivified (Tatsuhiko Miyagawa, Christopher L. Everett, Tim Bunce) - Removed 'AS' when aliasing tables; some databases don't like that - Properly return -1 from unchanged object updates (Kingsley Kerce) - Fixed problems with overloaded stringification of related classes (Tim Bunce) - Fixed bug where Essential might contain the PK twice Refactorings - Split live_object_key for easy subclassing (Tim Bunce) - Split out _as_hash() to return underlying data hash - Optimised _mk_column_accessors (Maurice Aubrey) - Don't hard-code relationship names (Peter Speltz) Internals - Changed error message when setting up has_a with incorrect column (Drew Taylor) Documentation - Fixed docs for after_update trigger and update (Kingsley Kerce) 3.0.2 Sep 11 2005 Code - No changes Pre-Reqs - Fixed code to explicitly need 5.6 (rather than just Makefile) - Require 'version' for new 3 part versions Tests - Fixed t/01 to check mutator_name better - Added NOT NULL to Primary in t/Blurb to avoid 0.95 regression - Added new Test base class Class::DBI::Test::SQLite - Changed all remaining uses of eq_set() to is_deeply() Documentation - Documented $obj->id() in list context (William McKee) - Documented cascading delete for might_have (Tom Hukins) - Documented MCFK better (plus fixed lots of typos etc) (Tom Hukins) - Documented DBIx::ContextualFetch better - select_val better (Dave Howorth) - Fixed misspelling of Perrin Harkins - Fixed documentation for the year constraint (Andy Lester) - Fixed set_sql documentation to explain when it creates a method - Fixed new_music documentation (Carl Johnstone) - Fixed docs for CD columns to show 'reldate' (Mark Thomas) - Fixed lots of other tiny doc issues - Fixed docs for Essential (defaults to Primary, rather than All) - Fixed docs for what gets passed to triggers (Ryan Tate) 3.0.1 Sep 11 2005 - Code is identical to 0.96 - New section added to documentation on Release Philosophy - Replace eq_set with is_deeply in t/04 to work around Test::More bug
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-2/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam1-2/+2
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc1-1/+2
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant1-1/+2
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-11-12Set version independent HOMEPAGEs.seb1-2/+2
2004-11-06Import p5-Class-DBI version 0.96.he4-0/+45
Class::DBI provides a convenient abstraction layer to a database. It not only provides a simple database to object mapping layer, but can be used to implement several higher order database functions (triggers, referential integrity, cascading delete etc.), at the application level, rather than at the database. This is particularly useful when using a database which doesn't support these (such as MySQL), or when you would like your code to be portable across multiple databases which might implement these things in different ways. In short, Class::DBI aims to make it simple to introduce 'best practice' when dealing with data stored in a relational database.