Commit graph

141435 commits

Author SHA1 Message Date
sno
228905d98c Updated devel/p5-UNIVERSAL-require to 0.13 2009-04-30 21:49:50 +00:00
sno
f392969ccd PkgSrc changes:
- Updating package for p5 module of UNIVERSAL::require from 0.11 to 0.13
  - Setting license to gnu-gpl-v2

Upstream changes:
0.13  Mon Mar 30 17:50:10 BST 2009
    Bug Fixes
    * $module->require now always resets $@ which removes a trap of using $@
      to indicate an error, rather than checking $module->require directly.
      [rt.cpan.org 44444]

0.12  Mon Mar 30 10:53:51 BST 2009
    Test Fixes
    * bleadperl introduced a new warning deprecating "use UNIVERSAL"
      (thank goodness) which interfered with t/require.t
2009-04-30 21:49:08 +00:00
sno
ea2e21d7a9 Updated databases/p5-CatalystX-CRUD-ModelAdapter-DBIC to 0.08 2009-04-30 21:43:13 +00:00
sno
a1f7487834 PkgSrc changes:
- Updating package for p5 module of CatalystX::CRUD::ModelAdapter::DBIC
    from 0.07 to 0.08
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes:
0.08    29 April 2009
        * switch to MRO::Compat from Class::C3
2009-04-30 21:42:41 +00:00
sno
f9acd67926 Updated databases/p5-CatalystX-CRUD-Model-RDBO to 0.20 2009-04-30 21:31:17 +00:00
sno
627c929aa0 PkgSrc changes:
- Updating package for p5 module of CatalystX::CRUD::Model::RDBO from
    0.19 to 0.20
  - Adjusting dependencies

Upstream changes:
0.20    29 April 2009
        * switch to MRO::Compat from Class::C3
        * fixes for CatalystX::CRUD 0.43
2009-04-30 21:30:28 +00:00
sno
27cf4df9be Updated databases/p5-Rose-DB-Object to 0.781 2009-04-30 21:27:33 +00:00
sno
345e50d53b PkgSrc changes:
- Updating package for p5 module Rose::DB::Object from 0.770 to 0.781
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes:
0.781 (04.19.2009) - John Siracusa <siracusa@gmail.com>

    * Added an explicit SQL_BLOB bind_param() argument for blob columns
      in SQLite.  (Reported by clausi)
    * Added manager_iterator_method and support for manager_count_method
      and manager_delete_method to relevant Relationship classes.
      (Patch by Peter Karman)
    * Updated test suite to consider DBD::SQLite 1.19+ non-broken.

0.780 (03.04.2009) - John Siracusa <siracusa@gmail.com>

    * Fixed a bug that caused the delete_relationships() Metadata method
      to fail in some circumstances.  (Reported by vti)
    * Fixed a few accessor/mutator mismatches in relationship methods.
      (Reported by Bharanee)

0.779 (02.26.2009) - John Siracusa <siracusa@gmail.com>

    * Added missing documentation on one-to-many and many-to-many
      relationship "iterator" and "find" method type names.
    * Corrected an error message in Rose::DB::Object::MakeMethods::Generic
      (RT 43667)

0.778 (02.06.2009) - John Siracusa <siracusa@gmail.com>

    * Added PostgreSQL's "ltree" query extensions to QueryBuilder.
      (Patch by Rick Apichairuk)
    * Improved the efficiency of the check-and-merge function used
      when related objects are added.  (Reported by Bryan Opfer)

0.777 (12.12.2008) - John Siracusa <siracusa@gmail.com>

    * Fixed a bug that caused foreign key proxy relationships to
      be clobbered if relationships were set after foreign_keys.
      (Reported by Peter Karman)

0.776 (12.09.2008) - John Siracusa <siracusa@gmail.com>

    * Fixed a bug that was preventing the use of new comparison
      operators with QueryBuilder.  (Reported by Derek Wueppelmann)
    * Added a strict_ops parameter and class method to the Manager
      to allow the policy to b changed per-call or per-class.
    * Auto-initialization under Oracle should no longer be confused
      by tables with the same names in different schemas. (Patch by
      Benjamin Hitz)
    * Removed the on-again, off-again restriction on aliasing primary
      key columns.  I think it's off for good this time.
    * Refined column alias policy to keep from appearing to override
      more granular column method name customization.
    * Overhauled related object mutator methods to better match the
      documentation and reduce unnecessary queries.
    * Fixed a bug that caused the init_with_tree() helper method to
      overwrite columns involved in relationship mapping in some
      circumstances.  (Reported by Todd Lyons)

0.775 (11.02.2008) - John Siracusa <siracusa@gmail.com>

    * The insert_or_update(), load_or_insert(), and load_or_save() helper
      methods no longer throw an exception when called on an object with
      no uniquely identifying column(s).  (Suggested by Richard Jones)
    * Added detection of minimum JSON version (2.00) to test suite and
      the Helpers module.

0.774 (10.25.2008) - John Siracusa <siracusa@gmail.com>

    * Setting objects related through a one-to-many relationship
      now does more work to ensure success.  (Reported by vti and
      David Bourget)
    * Fixed an ON DUPLICATE KEY UPDATE test to work around a MySQL
      "strict mode" quirk (or, IMO, "bug") which causes it to complain
      about a situation that is only a concern if it decided to do an
      INSERT rather than an UPDATE.  (Reported by Richard Jones)
    * Fixed a regression in t/spot-check-10.t: adding objects to
      one-to-many-related lists failed in some circumstances.
    * Updated auto-initialization examples in the synopsis.

0.773 (10.02.2008) - John Siracusa <siracusa@gmail.com>

    * Added support for multiple add_on_save calls prior to save(),
      which is how everyone expected it to behave anyway, and how the
      documentation always seemed to imply that it did work.  Well,
      now it does.
    * Pre-saved objects now get their foreign key columns hooked up
      correctly when passed as arguments to add_on_save methods.
      (Reported by George Hartzell)
    * ...-to-many related object lists will now be re-fetched on
      demand after an add_on_save and a subsequent save().
      (Reported by George Hartzell)

0.7722 (09.29.2008) - John Siracusa <siracusa@gmail.com>

    * Fixed compatibility with older versions of ExtUtils::MakeMaker.

0.7721 (09.29.2008) - John Siracusa <siracusa@gmail.com>

    * Updated distribution metadata for ExtUtils::MakeMaker 6.44.
    * Added a column type mapping for MySQL's MEDIUMINT type.
      (Reported by Andreas Dewes)

0.772 (09.26.2008) - John Siracusa <siracusa@gmail.com>

    * Altered Rose::DB::Object::Cached to override insert() and
      update methods.  (Suggested by Kevin McGrath)
    * The update() method now marks updated objects as being in the
      database (see is_in_db() in Rose::DB::Object::Util)  (Suggested
      by Kevin McGrath)
    * The insert_or_update() and insert_or_update_on_duplicate_key()
      helper methods now call save() instead of insert() or update()
      (passing the appropriate flags to cause an insert or update) in
      order also save child objects.  (Suggested by Kevin McGrath)
    * The set_column_value_modified() function in Rose::DB::Object::Util
      now also clears any "db-ready" column value the object may be
      holding for that column.
    * Added a dirty_columns() helper method (Suggested by jdv79)

0.7713 (09.16.2008) - John Siracusa <siracusa@gmail.com>

    * More test skipping fixes.

0.7712 (09.15.2008) - John Siracusa <siracusa@gmail.com>

    * Improved detection of broken DBD::SQLite versions.

0.7711 (09.15.2008) - John Siracusa <siracusa@gmail.com>

    * Fixed typos in POD.
    * Improved test skipping conditions.
    * Clarified JSON module version requirements.

0.771 (09.12.2008) - John Siracusa <siracusa@gmail.com>

    * Traversal and recursive serialization helper method added.
    * Non-persistent columns feature added.
    * Made "where" an alias for the Manager's "query" parameter.
      (Requested by Ask Bj~A,rn Hansen)
    * Documented restrictions on the Manager's "select" parameter.
    * Fixed bug that prevented CURRENT_TIMESTAMP from being properly
      inlined in queries sent to SQLite.  (RT 37224)
    * Fixed a memory leak.  (Reported by Christopher Laco)
    * The "cluck" error mode now correctly calls cluck() rather than
      croak().  (Reported by Kevin McGrath)
    * Added support for Oracle date/time column keywords.
    * Cascaded delete now properly cascades to one-to-one related objects.
      (Reported by kittens)
2009-04-30 21:26:53 +00:00
zafer
65509cc108 remove dead mirror. 2009-04-30 21:24:44 +00:00
zafer
624c5fecaf update german mirror. add belnet. 2009-04-30 21:19:27 +00:00
sno
37e72ba06b Remove dependency to textproc/p5-YAML-Syck 2009-04-30 21:17:24 +00:00
sno
87797efc38 Updated databases/p5-Rose-DB to 0.751 2009-04-30 21:16:06 +00:00
sno
b8b61cbd96 PkgSrc changes:
- Updating package for p5 module Rose::DB from 0.744 to 0.751
  - Adjusting dependencies
  - Setting license to gnu-gpl-v2

Upstream changes:
0.751 (04.19.2009) - John Siracusa <siracusa@gmail.com>

    * Worked around a mod_perl 2 issue related to PerlOptions +Parent
      http://bit.ly/160jLN (Reported by Anton)
    * Updated test suite to consider DBD::SQLite 1.19+ non-broken.

0.750 (02.26.2009) - Peter Karman <perl@peknet.com>

    * Added pg_enable_utf8 attribute.

0.749 (12.12.2008) - John Siracusa <siracusa@gmail.com>

    * Added support for many more registry entry attributes.
    * More mod_perl 2.x fixes for Rose::DB::Cache. (Reported by
      Kostas Chatzikokolakis)
    * Added apache_has_started attribute to Rose::DB::Cache to support
      mod_perl 2.x users who do not have the ability to run code on
      server startup.  (Suggested by Kostas Chatzikokolakis)

0.748 (12.09.2008) - John Siracusa <siracusa@gmail.com>

    * Fixed mod_perl 2.x support in Rose::DB::Cache. (Reported by
      Kostas Chatzikokolakis)
    * Resolved ambiguous driver_class link in POD.

0.747 (10.22.2008) - Justin Ellison <justin@techadvise.com>

    * Changed to require YAML instead of YAML::Syck, though YAML::Syck
      will be used in preference to YAML if it's present.  (RT 31535)

0.746 (09.16.2008) - Justin Ellison <justin@techadvise.com>

    * Fixed support for TIMESTAMP WITH TIME ZONE column in Oracle.

0.745 (09.12.2008) - John Siracusa <siracusa@gmail.com>

    * Added support for Oracle date/time column keywords.
    * Added methods to list cached db entries and keys.
2009-04-30 21:15:08 +00:00
zafer
2cb215ea06 remove dead mirror. 2009-04-30 21:09:48 +00:00
sno
99b97187ab Updated databases/p5-SQL-Abstract to 1.53 2009-04-30 21:08:47 +00:00
sno
5bde761389 PkgSrc changes:
- Updating package for p5 module SQL::Abstract from 1.51 to 1.53
  - Setting license to gnu-gpl-v2

Upstream changes:
revision 1.53  2009-04-30 14:58 (UTC)
----------------------------
    - make sure hash keys are sorted in all search sub-conditions
    - switch installer from EU::MM to M::I

revision 1.52  2009-04-28 23:14 (UTC)
----------------------------
    - allow -between to handle [\"", \""] and \["", @bind]
    - allow order_by to handle -asc|desc => [qw/colA colB/] (artifact from DBIx::Class)
    - more tests and clearing up of some corner cases
    - t/10test.t does not run by default (developer only, too cpu intensive)
2009-04-30 21:07:59 +00:00
zafer
92558d9654 remove dead mirrors and update master. 2009-04-30 21:07:45 +00:00
sno
a3e67ae521 Updated textproc/p5-YAML-Syck to 1.07 2009-04-30 21:01:16 +00:00
sno
f2ab040ed4 PkgSrc changes:
- Updating package for p5 module YAML::Syck and JSON::Syck to 1.07

Upstream changes since 1.05
Changes for 1.07 (JSON::Syck 0.30) - 2009-04-25
* Added the missing Loadfile function to JSON::Syck.
  Reported by: Dan McCormick
2009-04-30 21:00:18 +00:00
zafer
004c2f8a0d remove dead mirror. 2009-04-30 20:57:57 +00:00
sno
4deae97f28 Updated textproc/p5-XML-Atom to 0.34 2009-04-30 20:53:24 +00:00
sno
494a728003 PkgSrc changes:
- Updating package for p5 module of XML::Atom from 0.33 to 0.34
  - Setting license to gnu-gpl-v2

Upstream changes:
0.34  2009.04.29
    * Fixed $entry->source support (Martin Atkins)
2009-04-30 20:51:38 +00:00
zafer
5fb3c994c5 remove dead mirrors. update existing. 2009-04-30 20:50:43 +00:00
sno
92c1f07187 Updated mail/p5-Email-MIME-Modifier to 1.444 2009-04-30 20:44:53 +00:00
sno
b33ef9d5b2 PkgSrc changes:
- Updating package for p5 module of Email::MIME::Modifier to 1.444
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes since 1.443:
1.444     2009-04-29
          be compatible with (and require) Email::MIME::Encodings 1.313
2009-04-30 20:43:57 +00:00
sno
c1ca21f8cc Updated mail/p5-Email-MIME-Creator to 1.456 2009-04-30 20:38:46 +00:00
sno
20e3986556 PkgSrc changes:
- Updating package for p5 module Email::MIME::Creator from 1.455 to 1.456
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes:
1.456   2009-04-29
        correct test expectations for Encodings 1.313
2009-04-30 20:38:12 +00:00
zafer
baa1bd240f no distfile on mpg.de. master site removed. 2009-04-30 20:32:41 +00:00
sno
ba66db1f90 Updated time/p5-DateTime-Format-Pg to 0.16003 2009-04-30 20:30:36 +00:00
sno
74257203dc PkgSrc changes:
- Updating package for p5 module of DateTime::Format::Pg from 1.6002
    to 1.6003
  - Setting license to gnu-gpl-v2

Upstream changes:
0.16003  Fri Mar 27 09:30:00 2009
    - Fix handling of BC (rt #44594). Patch by Jonas Lijegren.
2009-04-30 20:29:39 +00:00
zafer
0334c3691a python.org has no ftp service. remove master site. 2009-04-30 20:27:34 +00:00
zafer
3ad436b065 fix ftp link. 2009-04-30 20:17:03 +00:00
sno
51d6ae220a Updated databases/p5-CatalystX-CRUD to 0.43 2009-04-30 20:15:39 +00:00
sno
1d2f4f5220 PkgSrc changes:
- Updating package for p5 module CatalystX::CRUD from 0.39 to 0.43
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes:
0.40    16 April 2009
        * change base Controller to call can_read() rather than can_write() in edit().
          This is because the call to edit() does not actually write anything; it's just a GET
          for a form.

0.41    21 April 2009
        * remove Catalyst::Component::ACCEPT_CONTEXT as a dependency since it has not been
          updated for Catalyst 5.8.

0.42    27 April 2009
        * revert ACCEPT_CONTEXT changes; fixes pushed to new C::C::A_C on CPAN, and added no warnings
          using Class::C3::Adopt::NEXT (thanks to t0m)
        * change from 'use Class::C3' to 'use mro "c3"' with new dep on MRO::Compat
        * added some debugging in tests

0.43    29 April 2009
        * rid of ourselves of Class::Data::Inheritable because it clashes with Catalyst::Runtime 5.8.
          Notably, it caused a strange bug in Rose::DBx::Garden::Catalyst where the MyApp->config
          class hashref would get nuked after a call to Class::C3::initialize(). Yes. That fsked up.
2009-04-30 20:14:45 +00:00
sno
d0d8100926 Updated www/p5-Catalyst-Component-ACCEPT_CONTEXT to 0.06 2009-04-30 20:07:28 +00:00
sno
6b49da8716 PkgSrc changes:
- Updating package for p5 module Catalyst::Component::ACCEPT_CONTEXT to
    0.06 from 0.05
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes:
0.06    24 April 2009
        Switch from NEXT to MRO::Compat
2009-04-30 20:06:37 +00:00
sno
c3b81ab2d6 Updated databases/p5-DBD-Oracle to 1.23 2009-04-30 20:03:08 +00:00
sno
6abce7ef58 PkgSrc changes:
- Updating package for p5 module DBD::Oracle to 1.23 from 1.22

Upstream changes:
Changes in DBD-Oracle 1.23(svn rev 12724)
  Fix from rt.cpan.org ticket #=44788 bool in_lite should be char in_literal
  Fix for UTF8 and blobs by John Scoles with Milo van der Leij
  Fix for some warnings and one bug in ocitrace.h from Charles Jardine
  Fix in case there may be a bug in 11 where the OCI_ATTR_DATA_SIZE my
      return 0 which should never happen, John Scoles
  Fix on the Makefile.PL for a possible sql bug in IC from Martin Evans
  Added a change from a suggestion from Martin Evans for making ref cursors
      faster.
  Added rt.cpan.org Ticket #=42328 ora_objects attribute for extended
      embedded objects support from Tomas Pokorny
  Fix for rt.cpan.org Ticket #=42328 user defined types from different
      schema in describe_obj from Tomas Pokorny
  Added a README for sun suggested by Jim McCullars
  Clean up of white space and formatting to 4 tabs  from John Scoles
  Fix for GCC 4.3 warnings from Eric Simon
  Standardized the dbd_verbose levels so they are all 3 and over from John
      Scoles
  Added private statement functions ora_stmt_type_name and ora_stmt_type
      from John Scoles
  Update to POD from Chris Underhill
  Added README.win64.txt with content from Alex Buttery
  Fix for rt.cpan.org Ticket #=21920 Bug with Oracle DBD for Mac OS X Instant
      Client From boingolover
  Added a few more constants to get rid of magic numbers from John Scoles
  Fix for rt.cpan.org Ticket #=38267 Inserts/Updates to BLOB's via synonyms
      fails from John Scoles
  Fix for rt.cpan.org Ticket #=39603 build problem and fix missing functions
      in oci.def from Zolt'an Sebesty'en
  Fix for rt.cpan.org Ticket #=39374 Makefile.PL: error when reducing echo
      messages from make from Tippa
  Fix for rt.cpan.org Ticket #=39232 binding large XMLTYPE fails on 64-bit
      perl from Jeff Klein
  Fix for rt.cpan.org Ticket #=38749 Warning of a NULL column in an aggregate
      function also added ora_oci_success_warn to display silent OCI warningsi
      from John Scoles
  Patch for UTF8 check on execute_array from David Mansfield and a little by
      John Scoles
2009-04-30 20:00:57 +00:00
asau
dc95703b6f Updated math/fricas to 1.0.6 2009-04-30 19:57:03 +00:00
asau
e30f319b03 Update to FriCAS 1.0.6
Notable changes (compared to 1.0.5 version) include:

- the axiom script is no longer installed (use fricas script instead)
- some undesirable simplification are no longer done by default,
  for example now asin(sin(3)) is left unevaluated
- support lambda expressions using '+->' syntax and nested functions
  in Spad
- better configure, support for Dragonfly BSD
- faster bootstrap, also parallel (this does not affect speed
  of release build)

Several bug fixes, in particular:

- fixed a regression introduced in 1.0.4 which caused equality
  for nested products to sometimes give wrong result
- corrected fixed output of floating point numbers,
- operations on differential operators like symmetric power work now
- fixed crashes related to coercing power series
- functions returning Void can be traced
2009-04-30 19:55:47 +00:00
hasso
6ecced1ba8 Updated lang/pcc-current to 0.9.9.20090430. 2009-04-30 18:51:02 +00:00
hasso
28c667861e DESTDIR ready. 2009-04-30 18:25:59 +00:00
hasso
4cd727d34d * Update to a refresh snapshot.
* Use gmake as building with bmake fails randomly.
* Make it build on DragonFly master.
2009-04-30 18:19:28 +00:00
perry
97c9c7bfee fix typo 2009-04-30 17:35:05 +00:00
hasso
3c72c30f0a Make it build on DragonFly master. 2009-04-30 17:22:06 +00:00
wiz
89094bc0da Set USE_JAVA2 to lower-case yes, per PR 41309 from Ryo HAYASAKA. 2009-04-30 17:11:46 +00:00
roy
0f6a034eeb Update to openresolv-3.3.1
Change from 3.3 is dnsmasq now finds extra dbus pidfile locations correctly
2009-04-30 16:27:11 +00:00
taca
de451a4799 Note update of www/typolight26 package to 2.6.7nb1 and
www/typolight27 package to 2.7rc2nb1.
2009-04-30 13:31:31 +00:00
taca
9bc842989a * Correct path and remove typolight 2.6.x specific description
in MESSAGE.
* Remove conflict with typolight-2*.

Bump PKGREVISION.
2009-04-30 13:15:35 +00:00
taca
83d9990e54 * Correct path in MESSAGE.
* Remove conflict with typolight-2*.
* Add a patch to fix problem that cached pages are displayed twice.

Bump PKGREVISION.
2009-04-30 13:12:40 +00:00