2014-10-09 16:07:17 by Thomas Klausner | Files touched by this commit (1163) |
Log message:
Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.
|
2014-07-28 02:32:58 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 2.023003
Update DEPENDS
Upstream changes:
2.023003 2014-07-21 21:22:27-05:00 America/Chicago
- Fix ToJSON to use accessors if it needs to (Thanks Kevin Benson!)
- Fix silly typo in ::Explain (Good catch Jonathan W. Taylor!)
2.023002 2014-06-28 15:04:15-05:00 America/Chicago
- Remove silly layer of subtesting (thanks to new features in Test::Roo)
- Remove silly sub wrapper in Explain internals (should moderately increase
performance)
2.023001 2014-06-14 12:39:08-05:00 America/Chicago
- Add handy SYNOPSIS to ::DateMethods1 (thanks for asking rjbs!)
2.023000 2014-05-26 19:33:01-05:00 America/Chicago
- Add ::Shortcut::Explain RS helper
2.022000 2014-05-03 10:39:30-05:00 CST6CDT
- Add ::Shortcut::ResultsExist RS helper (Olaf Alders)
- Add abstract to ::DateMethods1::Announcement (Gregor Herrmann)
2.021001 2014-04-06 11:43:36-05:00 America/Chicago
- Fix ::RemoveColumns to work with a specified `columns` (Anthony DeRobertis)
(Fixes GH#27) Also fixes RT#91977/GH#24)
2.021000 2014-04-01 20:12:40-05:00 America/Chicago
- Create Shortcut::Page and Shortcut::LimitedPage ResultSet helpers (wreis)
2.020001 2014-03-05 10:33:46CST-0600 America/Chicago
- Make ::DateMethods1 tests paralellizable (thanks Alexander Hartmaier!)
- fix ::Helper::ResultSet::DateMethods1 for Oracle (thanks Alexander Hartmaier!)
- fix ABSTRACT on ::Helper::ResultSet::DateMethods1
2.020000 2014-03-04 08:31:39-06:00 America/Chicago
- Add ::Helper::ResultSet::DateMethods1
- Add abstract to ::Schema::LintContents
2.019004 2014-02-14 07:53:19 America/Chicago
- Make IgnoreWantarray's search die in void context
2.019003 2014-02-07 22:21:47-06:00 America/Chicago
- Fix ->copy on rows with proxied ResultSet methods (thanks moltar for the
test!) (NOTE: This fix is what requires upgrading to DBIC 0.08260)
2.019002 2014-01-12 09:40:41 America/Chicago
- Pick SQL for random row selection in a cleaner way
- Stop using Class::MOP::load_class (RT#91035)
- Really stop using RT
2.019001 2013-11-23 10:19:28 America/Chicago
- Fix typo in ::CorrelateRelationship (Getty)
|
2014-05-30 01:38:20 by Thomas Klausner | Files touched by this commit (3049) |
Log message:
Bump for perl-5.20.0.
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-10-31 09:24:30 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 2.019000
Add missing BUILD_DEPENDS
Upstream changes:
2.019000 2013-10-17 20:36:45 America/Chicago
- Create clean_rs row shortcut (wreis)
- Create DateTime schema helper (wreis)
2.018004 2013-10-07 15:23:39 America/Chicago
- fix dep marked as test but actually runtime
2.018003 2013-09-26 08:06:03 America/Chicago
- fix method shadowing with some helpers for ::Shortcut
- ::OrderByMagic now correctly passes through arrayrefs (moltar)
- ::OrderByMagic only prefixes with CSA when needed (moltar)
|
2013-09-05 20:27:42 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.018002:
2.018002 2013-07-30 18:45:10 CST6CDT
- ::Helper::ResultSet correctly uses all Helpers (reported by moltar)
Note that some deprecated helpers were removed from ::ResultSet, so check
your code to see if you use the as_virtual_view method. If you do, replace
it with as_subselect_rs and you'll be fine.
- Fix return precedence in test (Reini Urban)
|
2013-07-03 21:07:10 by Jens Rehsack | Files touched by this commit (2) | |
Log message:
Updating package for CPAN distribution DBIx-Class-Helpers in
databases/p5-DBIx-Class-Helpers from 2.015001nb1 to 2.018001.
pkgsrc changes:
- adjust dependencies
Upstream changes:
2.018001 2013-07-02 20:40:18 CST6CDT
- Fix bug related to inheriting from ::Shortcut
2.018000 2013-06-22 17:03:29 CST6CDT
- Add ::ResultSet::Shortcut::OrderByMagic (moltar)
- Add ::ResultSet::Shortcut::Prefetch (Wallas Reis)
- Add ::ResultSet::Shortcut::HasRows (Wallas Reis)
- Add ::ResultSet::Shortcut::Limit (Wallas Reis)
- make ::ResultSet::Me more flexible (moltar)
- Fix some warnings (when using deprecated modules) (good catch Bill
Mosely)
- Fix lots of docs (moltar, Gregor Herrmann, mauke)
2.017000 2013-04-20 10:37:04 CST6CDT
- Add ::Schema::QuoteNames to force quote_names on
- Add normalize_connect_info utilitiy
2.016006 2013-04-12 09:14:23 CST6CDT
- Remove use of a private method, thus fixing Helpers on v0.08210
- Remove the last vestige of non-in-memory SQLite
- Stop using RT for bugtracking
2.016005 2013-01-23 19:00:09 CST6CDT
- Fix hash order dependency bug (Thanks Fitz Elliott!)
2.016004 2013-01-09 20:05:57 CST6CDT
- Add more storages for ::ResultSet::Random (Thanks José Diaz Seng!)
2.016003 2012-12-07 15:54:29 CST6CDT
- Fix bug in dup_check_source_auto and fk_check_source_auto. If
any of the broken things were multiple they explode in the hashref.
The solution is to force the values to be resultsets, which is how
the helper is documented anyway. (thanks MST for finding this)
2.016002 2012-11-17 15:31:12 CST6CDT
- Put MetaYAML back in dist
2.016001 2012-11-02 17:52:43 CST6CDT
- fix OnColumnChange to work with relationship based updates
so $artist->update({ cd => $cd_obj }) now correctly triggers
a change. Thanks David Schmidt for the test
- validate number of arguments to _change_column (David Schmidt)
- fix name of Helper::ResultSet::Shortcut in SYNOPSIS
2.016000 2012-10-25 21:35:05 CST6CDT
- Add Helper::ResultSet::Shortcut (Wes Malone)
|
2013-05-31 14:42:58 by Thomas Klausner | Files touched by this commit (2880) |
Log message:
Bump all packages for perl-5.18, that
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-23 18:07:13 by Aleksej Saushev | Files touched by this commit (6) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
|
2012-10-19 09:55:32 by Jens Rehsack | Files touched by this commit (3) |
Log message:
Adding new package for CPAN module DBIx::Class::Helpers version 2.015001
into databases/p5-DBIx-Class-Helpers.
Simplify the common case stuff for DBIx::Class
|