pkgsrc/devel
abs 20ab64b24d Updated devel/p5-Moose to 2.0202
Also see Moose::Manual::Delta for more details of, and workarounds
for, noteworthy changes.

2.0202 Tue, Jul 26, 2011

  [BUG FIXES]

  * Be more consistent about how type constraint messages are handled.

2.0201 Fri, Jul 22, 2011

  [BUG FIXES]

  * Moose::Util::does_role shouldn't call ->does on things that don't inherit
    from Moose::Object.

  * Make ->does initialize the metaclass, so that calling it as a class method
    on a class which sets up inheritance via some method other than extends
    works properly (this fixes an issue with MooseX::Types).

  * Make Dist::CheckConflicts a runtime requirement, so moose-outdated always
    works.

2.0200 Mon, Jul 18, 2011

  [OTHER]

  * No changes from 2.0105 (other than a few minor documentation tweaks).

2.0105-TRIAL Mon, Jun 27, 2011

  [ENHANCEMENTS]

  * Moose::Util::does_role now respects overridden ->does methods. (doy)

2.0104-TRIAL Mon, Jun 20, 2011

  [OTHER]

  * Include changes from 2.0010.

2.0103-TRIAL Mon, Jun 20, 2011

  [DEPRECATIONS]

  * Several things that have been deprecated for a while have been removed. See
    the 2.0000 section in Moose::Manual::Delta for details.

  [NEW FEATURES]

  * New Moose::Util::TypeConstraints::union function for creating union type
    constraints without having to rely on the string type constraint parsing.
    This also allows for creating unions of anonymous type constraints.
    (kentnl)

  [OTHER]

  * Include changes from Moose 2.0009.

2.0102-TRIAL Sat, Jun 18, 2011

  [ENHANCEMENTS]

  * The native Array trait now has a 'first_index' method, which works just
    like the version in List::MoreUtils. (Karen Etheridge)

  * Clean up some internal code to help out extensions.

  [OTHER]

  * Include changes from Moose 2.0008.

2.0101-TRIAL Mon, Jun 06, 2011

  [OTHER]

  * Various packaging issues.

2.0100-TRIAL Mon, Jun 06, 2011

  [DEPRECATIONS]

  * Using a hand-optimized type constraint is now deprecated. In keeping with
    our release policy, this won't actually start warning until the 2.0200
    release.

  [NEW FEATURES]

  * Type constraints can now provide inlined versions, which should make
    inlined code which uses type constraints (such as accessors) faster. This
    replaces the existing hand-optimized constraint feature.  (Dave Rolsky)

  [ENHANCEMENTS]

  * Remove a lot of cases where generated methods closed over meta objects.
    Most simple cases should now only close over simple data types and
    coderefs. This should make deparsing simpler.

2.0010 Mon, Jun 20, 2011

  [BUG FIXES]

  * Fix regression in 2.0009 and 2.0103 when applying roles during init_meta in
    an exporter that also re-exports Moose or Moose::Role. (t0m, ilmari)

2.0009 Sun, Jun 19, 2011

  [BUG FIXES]

  * duck_type type constraints now report reasonable errors when given
    something which isn't an instance of an object. (t0m)

  * Moose::Util::apply_all_roles now works even if the applicant is a non-Moose
    class. (perigrin)

  * When an object is reblessed, triggers are called on attributes that are
    set during the reblessing. (Karen Etheridge).

  [OTHER]

  * Better error message if Moose->init_meta is called with a 'metaclass'
    option when that metaclass hasn't been loaded. (jasonmay)

2.0008 Thu, Jun 16, 2011

  [BUG FIXES]

  * The 'accessor' native delegation for hashrefs now allows setting the value
    to undef. (sugoik, doy)

  [ENHANCEMENTS]

  * Various generated methods have more useful context information. (doy)

2.0007 Sun, May 15, 2011

  [BUG FIXES]

  * Make sure weak attributes remain weak when cloning. (doy, rafl)

2.0006 Mon, May 09, 2011

  [BUG FIXES]

  * Revert the List::MoreUtils version bump, as it breaks backwards
    compatibility. The dependency will be bumped with Moose 2.0200.

2.0005 Mon, May 09, 2011

  [BUG FIXES]

  * Only sort the alias keys when determining caching.

2.0004 Mon, May 09, 2011

  [BUG FIXES]

  * Bump the List::MoreUtils dep to avoid buggy behavior in old versions.

  * Sort the list of roles and the alias and excludes parameters when
    determining caching, since their order doesn't matter.

2.0003 Mon, May 09, 2011

  [BUG FIXES]

  * Applying multiple role objects (rather than role names) at once no longer
    skips every other role. (rjbs)

  * Caching of anon classes now works more sanely in the presence of role
    application parameters - alias and excludes options are taken into account,
    and caching is disabled entirely if other parameters exist. Asking for
    caching (instead of just not weakening) when parameters are given will
    begin warning in Moose 2.0200. (doy, autarch)

2.0002 Thu, Apr 28, 2011

  [ENHANCEMENTS]

  * Provide definition context information for constructors and destructors, so
    that they will show up as something other than "generated method (unknown
    origin)". Also, add the package that accessors are defined in to their
    definition context.

  * Use Devel::PartialDump in type constraint error messages, if it is
    installed.

  [BUG FIXES]

  * Stop hiding warnings produced by throwing errors in DEMOLISH methods.

  * The 'reset' native delegation for Counter attributes will now also respect
    builders (previously, it only respected defaults).

2.0001 Fri, Apr 22, 2011

  [ENHANCEMENTS]

  * Anonymous classes and roles now have a unified implementation in
    Class::MOP::Package. This means that anonymous packages are now also
    possible. (Shawn M Moore, doy)

  [BUG FIXES]

  * No longer call XSLoader from multiple places, as this causes issues on
    older perls. (doy, ribasushi)

  * Moose::Meta::Role->create now accepts the 'roles' parameter, as it was
    documented to. (Chris Weyl)

  * Depend on Eval::Closure 0.04, which fixes some issues in mod_perl
    environments. (doy, mateu)

2.0000 Mon, Apr 11, 2011

  [API CHANGES]

  * The RegexpRef type constraint now accepts regular expressions blessed into
    other classes, such as those found in pluggable regexp engines.
    Additionally the 'Object' constraint no longer rejects objects implemented
    as a blessed regular expression. (David Leadbeater)

  [OTHER]

  * Moose::Manual::Support now explicitly states when major releases are
    allowed to happen (January, April, July, or October).

1.9906-TRIAL Mon, Apr 04, 2011

  [OTHER]

  * Update conflicts list.
  * Minor pod updates.

1.9905-TRIAL Mon, Mar 28, 2011

  [NEW FEATURES]

  * The Moose::Meta::Role::Attribute class now has an original_role method
    which returns the role which first defined an attribute. See the docs for
    details. (Dave Rolsky)

  * Moose::Util::MetaRole will make sure that the class to which you're
    applying metaroles or base class roles can actually have them applied. If
    not (it's not a Moose class, it has a non-Moose metaclass, etc.), then it
    gives a useful error message. Previously, this would just end up dying in
    the MetaRole code without a useful message. (Dave Rolsky)

  [BUG FIXES]

  * When a role had its own applied_attribute metaclass (usually from MetaRole
    application), that metaclass would get lost when that role participated in
    role composition. It was also lost if that role was consumed by some other
    role. Both of these cases have been fixed. Attributes are always applied
    with the applied_attribute metaclass of the role which originally defined
    them. (Dave Rolsky)

1.9904-TRIAL Fri, Mar 04, 2011

  [BUG FIXES]

  * Reinitializing anonymous roles used to accidentally clear out the role's
    stash in some circumstances. This is now fixed. (doy)

  * The Int type constraint now rejects integers with trailing newlines.
    (Matthew Horsfall)

1.9903-TRIAL Mon, Feb 28, 2011

  [BUG FIXES]

  * Reverse the order that Moose::Exporter 'also' exports are dispatched. When
    trying to re-export from a package that itself exported a modified set of
    Moose sugar, you'd get the original Moose sugar instead of the overrides.
    There are also now tests for this. (perigrin)

  * Don't initialize lazy attributes with defaults in the constructor (for
    immutable classes). (mo)

  * When reinitializing meta objects for classes and roles, we failed to
    preserve roles and role applications. This led to weird bugs. Many MooseX
    modules end up reinitializing your class or role. (Dave Rolsky)

1.9902-TRIAL Mon, Jan 03, 2011

  [OTHER]

  * Fix generation of CCFLAGS.

  * Add a bit more Dist::Zilla functionality.

1.9901-TRIAL Mon, Jan 03, 2011

  [OTHER]

  * Fix some indexing issues.

  * Fix a few issues with the conflict checking stuff.

1.9900-TRIAL Sat, Jan 01, 2011

  [OTHER]

  * The entire Class::MOP distribution has been merged with Moose. In the
    future, the Class::MOP code itself will be merged into Moose, and
    eventually the Class::MOP namespace will disappear entirely. For the
    current release, we have simply changed how Class::MOP is
    distributed. (Dave Rolsky).

  * Switched to Dist::Zilla for development. However, we still have a minimal
    Makefile.PL in the repository that can be used for development. (Dave
    Rolsky)

  [API CHANGES]

  * Roles now have their own default attribute metaclass to use during
    application to a class, rather than just using the class's
    attribute_metaclass. This is also overridable via ::MetaRole, with the
    applied_attribute key in the role_metaroles hashref (doy).

  * The internal code used to generate inlined methods (accessor, constructor,
    etc.) has been massively rewritten. MooseX modules that do inlining will
    almost certainly need to be updated as well.

  [ENHANCEMENTS]

  * We now load the roles needed for native delegations only as needed. This
    speeds up the compilation time for Moose itself. (doy)


1.25 Fri, Apr 1, 2011

  [BUG FIXES]

  * Reinitializing anonymous roles used to accidentally clear out the role's
    stash in some circumstances. This is now fixed. (doy) (backported from
    1.9904)


1.24 Tue, Feb 24, 2011

  [BUG FIXES]

  * Reverse the order that Moose::Exporter 'also' exports are dispatched. When
    trying to re-export from a package that itself exported a modified set of
    Moose sugar, you'd get the original Moose sugar instead of the overrides.
    There are also now tests for this. (perigrin) (backported from 1.9903)


1.23 Sun, Feb 13, 2011

  [PACKAGING FIX]

  * The 1.22 release had a bad MANIFEST. This has been fixed.


1.22 Sun, Feb 13, 2011

  [BUG FIXES]

  * When reinitializing meta objects for classes and roles, we failed to
    preserve roles and role applications. This led to weird bugs. Many MooseX
    modules end up reinitializing your class or role. (Dave Rolsky) (backported
    from 1.9903)

1.21 Wed, Nov 24, 2010

  [ENHANCEMENTS]

  * The Support manual has been updated to reflect our new major/minor version
    policy. (Chris Prather)

  * The Contributing manual has been updated to reflect workflow changes based
    on this new support policy. (doy)

  [BUG FIXES]

  * The role attribute metaclass did not inherit from Class::MOP::Object,
    which could cause errors when trying to resolve metaclass compatibility
    issues. Reported by Daniel Ruoso. (doy)

  * The lazy_build feature was accidentally removed from all the docs. Now
    it's listed in Moose.pm again. (Chris Prather)

1.20 Fri, Nov 19, 2010

  [BUG FIXES]

  * When using native delegations, if an array or hash ref member failed a
    type constraint check, Moose ended up erroring out with "Can't call method
    "get_message" on unblessed reference" instead of generating a useful error
    based on the failed type constraint. Reported by t0m. RT #63113. (Dave
    Rolsky)

1.19 Tue, Nov 2, 2010

  [BUG FIXES]

  * There was still one place in the code trying to load Test::Exception
    instead of Test::Fatal. (Karen Etheridge)


1.18 Sun, Oct 31, 2010

  [ENHANCEMENTS]

  * Type constraint objects now have an assert_coerce method which will either
    return a valid value or throw an error. (rjbs)

  * We now warn when an accessor for one attribute overwrites an accessor for
    another attribute. RT #57510. (Dave Rolsky)

  [BUG FIXES]

  * The native Array and Hash delegation methods now coerce individual new
    members if the _member type_ has a coercion. In other words, if the array
    reference is defined as an ArrayRef[DateTime], and you've defined a
    coercion from Int to DateTime, then pushing an integer via a delegation
    method will coerce the integer to a DateTime object. Reported by Karen
    Etheridge. RT #62351. (Dave Rolsky)

  * An attribute using native delegations did not always properly coerce and
    type check a lazily set default value. (doy and Dave Rolsky)

  * Using a regexp to define delegations for a class which was not yet loaded
    did not actually work, but did not explicitly fail. However, it caused an
    error when the class was loaded later. Reported by Max Kanat-Alexander. RT
    #60596. (Dave Rolsky)

  * Attempting to delegate to a class or role which is not yet loaded will now
    throw an explicit error. (Dave Rolsky)

  * Attempting to set lazy_build in an inherited attribute was ignored. RT
    #62057. (perigrin)

  [OTHER]

  * The Moose test suite now uses Test::Fatal instead of
    Test::Exception. (rjbs)

1.17 Tue, Oct 19, 2010

  [BUG FIXES]

  * Make native delegation inlining work with instance metaclasses where slot
    access is an do {} block, like Kioku. This fixes the use of native
    delegations together with Kioku. (Scott, doy)

1.16 Mon, Oct 18, 2010

  [ENHANCEMENTS]

  * Almost every native delegation method which changes the attribute value
    now has an explicitly documented return value. In general, this return
    value matches what Perl would return for the same operation. (Dave Rolsky)

  * Lots of work on native delegation documentation, including documenting
    what arguments each native delegation method allows or requires. (Dave
    Rolsky)

  * Passing an odd number of args to ->new() now gives a more useful warning
    than Perl's builtin warning. Suggested by Sir Robert Burbridge. (Dave
    Rolsky)

  * Allow disabling stack traces by setting an environment variable. See
    Moose::Error::Default for details. This feature is considered
    experimental, and may change in a future release. (Marcus Ramberg)

  * The deprecation warning for using alias and excludes without a leading
    dash now tells you the role being applied and what it was being applied
    to. (mst).

  [BUG FIXES]

  * A number of native trait methods which expected strings as arguments did
    not allow the empty string. This included Array->join, String->match,
    String->replace, and String->substr. Reported by Whitney Jackson. RT
    #61962. (Dave Rolsky)

  * 'no Moose' no longer inadvertently removes imports it didn't create
    itself. RT #60013. (Florian Ragwitz, doy)

  * Roles now support passing an array reference of method names to method
    modifier sugar functions. (doy)

  * Native traits no longer use optimized inlining routines if the instance
    requests it (in particular, if inline_get_slot_value doesn't return
    something that can be assigned to). This should fix issues with
    KiokuDB::Class. (doy)

  * We now ignore all Class::MOP and Moose classes when determining what
    package called a deprecated feature. This should make the deprecation
    warnings saner, and make it possible to turn them off more easily. (Dave
    Rolsky)

  * The deprecated "default is" warning no longer happens if the attribute has
    any accessor method defined (accessor, reader, writer). Also, this warning
    only happens when a method that was generated because of the "default is"
    gets called, rather than when the attribute is defined. (Dave Rolsky)

  * The "default default" code for some native delegations no longer issues a
    deprecation warning when the attribute is required or has a builder. (Dave
    Rolsky)

  * Setting a "default default" caused a fatal error if you used the builder
    or lazy_build options for the attribute. Reported by Kent Fredric. RT
    #59613. (Dave Rolsky)

1.15 Tue, Oct 5, 2010

  [API CHANGES]

  * Major changes to Native Traits, most of which make them act more like
    "normal" attributes. This should be mostly compatible with existing code,
    but see Moose::Manual::Delta for details.

  * A few native traits (String, Counter, Bool) provide default values of "is"
    and "default" when you created an attribute. Allowing them to provide
    these values is now deprecated. Supply the value yourself when creating
    the attribute.

  * New option 'trait_aliases' for Moose::Exporter, which will allow you to
    generate non-global aliases for your traits (and allow your users to
    rename the aliases, etc). (doy)

  * 'use Moose' and 'use Moose::Role' now accept a '-meta_name' option, to
    determine which name to install the 'meta' name under. Passing 'undef'
    to this option will suppress generation of the meta method entirely. (doy)

  * Moose now warns if it overwrites an existing method named "meta" in your
    class when you "use Moose". (doy)

  [ENHANCEMENTS]

  * Native Trait delegations are now all generated as inline code. This should
    be much faster than the previous method of delegation. In the best case,
    native trait methods will be very highly optimized.

  * Reinitializing a metaclass no longer removes the existing method and
    attribute objects (it instead fixes them so they are correct for the
    reinitialized metaclass). This should make the order of loading many
    MooseX modules less of an issue. (doy)

  * The Moose::Manual docs have been revised and updated. (Dave Rolsky)

  [BUG FIXES]

  * If an attribute was weak, setting it to a non-ref value after the object
    was constructed caused an error. Now we only call weaken when the new
    value is a reference.

  * t/040_type_constraints/036_match_type_operator.t failed on 5.13.5+. Fixed
    based on a patch from Andreas Koenig.
2011-08-23 09:08:12 +00:00
..
accerciser recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
acme
acr Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
acunia-jam
adocman Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
aegis recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ald * marked as user-destdir ready. 2011-03-01 09:06:41 +00:00
allegro Deal with C99 vs GNU89 inline semantic 2011-08-20 15:28:09 +00:00
anjuta recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
apache-ant Updated devel/apache-ant to 1.8.2 2011-04-15 14:47:17 +00:00
apache-ant15
apache-ivy Added devel/apache-ivy version 2.2.0 2011-04-15 09:39:31 +00:00
apache-maven
apel Update apel to 10.8. 2011-03-23 14:55:01 +00:00
apr Update "apr" package to version 1.4.5. Change since version 1.4.4: 2011-05-22 22:41:00 +00:00
apr-util recursive bump from icu shlib major bump. 2011-06-10 21:57:06 +00:00
apr0 Changes 2.0.64: 2010-11-01 18:03:03 +00:00
arena
argp
argtable
ArX recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
as31 Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
asm2html
astyle
at-spi recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
atf Update to 0.14: 2011-06-14 13:55:15 +00:00
atk Use patch provided by the ATK maintainers to fix GNOME bug 654767. Tested 2011-07-18 12:02:02 +00:00
atkmm Changes 2.22.5: 2011-05-12 11:10:35 +00:00
autoconf Update to 2.68, requested by adam for pkg-config-0.25. 2010-09-24 09:46:42 +00:00
autoconf213
autogen -add portability fixes, avoid picking up bash 2011-07-08 11:44:02 +00:00
automake Recognize newer python versions. Fixed in upstream git, slightly differently. 2010-10-17 00:39:32 +00:00
automake14 Add fix for the vulnerability reported in CVE-2009-4029 taken from the 2011-06-10 09:43:41 +00:00
automoc4 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
avl
avltree Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
bcc
bglibs
bin86
binutils Fix build with gcc-4.5. 2011-08-22 08:51:46 +00:00
bison Do not install yacc.1. Addresses PR 45161 by Thomas Cort. 2011-08-06 17:15:42 +00:00
blame
blib recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
bmake Update version in Makefile 2011-06-18 22:43:34 +00:00
boa-constructor recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
boehm-gc Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
boost-build Changes 1.46.0: 2011-02-24 11:05:34 +00:00
boost-docs Changes 1.45.0: 2010-11-26 21:07:00 +00:00
boost-headers Changes 1.46.1: 2011-03-18 07:49:44 +00:00
boost-jam Forgot to mention compiler.mk 2011-03-31 06:17:12 +00:00
boost-libs Changes 1.46.0: 2011-02-24 11:05:34 +00:00
boost-python Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
bouml png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
buddy
bugzilla
bugzilla3
bullet Set LICENSE. 2010-09-03 23:04:02 +00:00
byacc Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
bzr Change MAINTAINER on bzr packages. 2010-12-06 13:57:27 +00:00
bzr-explorer Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
bzr-gtk Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
bzr-svn Update bzr-svn to 1.0.2, for compatible with bzr-2.1. 2011-07-22 14:17:37 +00:00
bzrtools Change MAINTAINER on bzr packages. 2010-12-06 13:57:27 +00:00
c-cpp-reference
c4
cbrowser
ccache Update to 3.1.4, inspired by PR 44659 by Marko Schuetz Schmuck: 2011-03-02 06:40:51 +00:00
cdecl
cdk
cfitsio Update to 3.280: 2011-08-06 15:44:20 +00:00
cflow recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cflow-mode
cgdb
check Update check to 0.9.8. 2010-08-18 04:36:13 +00:00
chmlib
chrpath
clib Import clib version 0.2.2. 2010-04-27 23:52:53 +00:00
clisp-pcre Import CLISP PCRE module as devel/clisp-pcre. 2010-07-09 18:59:48 +00:00
clisp-syscalls Fix build on SunOS. 2011-04-20 18:57:22 +00:00
clisp-wildcard Add package for wildcard module of lang/clisp. Remove conflicting option 2011-04-20 18:50:00 +00:00
clisp-zlib Import CLISP zlib module as devel/clisp-zlib. 2010-07-09 18:56:31 +00:00
cmake Changes 2.8.5: 2011-07-31 22:04:03 +00:00
cmake-mode
cmph Update devel/cmph to 1.1 and add a support for the "test" target. 2011-05-22 11:33:31 +00:00
coccinelle Update to 0.2.3. 2010-08-07 14:23:23 +00:00
coconut recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
codeville
cogito REPLACE_BASH; REPLACE_PERL. USE_TOOLS+=perl:run. PKGREVISION -> 3. 2011-06-19 19:34:52 +00:00
colordiff
compiz-bcop recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
compizconfig-backend-gconf recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
confuse recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cook recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cppcheck Update to 1.48. Ok reed except for the cmake dependency :) 2011-05-29 11:52:12 +00:00
cppunit devel/cppunit misses a destructor declaration for one of its classes. 2011-06-28 09:28:24 +00:00
cproto Update cproto to 4.7i. 2010-08-15 02:31:53 +00:00
cpuflags fix PLIST for last 2010-12-06 10:56:31 +00:00
cqual
cscope Install some emacs support files. Requested by Stefan in PR 44250. 2010-12-18 13:06:04 +00:00
cssc set LICENSE. 2011-02-02 11:31:17 +00:00
ctemplate CTemplate is a simple but powerful template language for C++. It emphasizes 2011-05-12 12:32:09 +00:00
cunit
cut
cutter Update cutter to 1.1.8. 2011-08-02 12:15:00 +00:00
cvs2cl
cvs2html
cvs2p4
cvs2svn
cvsclone
cvsd
cvsdiff2patch Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
cvsgraph png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
cvslock
cvsps
cvsup Sprinkle a few ${DESTDIR}. Most probably not enough, but I can't test this. 2011-04-07 13:17:14 +00:00
cvsup-bin
cvsup-gui
cvsup-gui-bin
cvsutils
cvsync recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cxref
darcs recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
darts
dconf recursive bump from gettext-lib shlib bump. 2011-04-22 14:40:40 +00:00
dconf-editor recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ddd Update to DDD 3.1.12 from PR pkg/43402 (David H. Gutteridge) 2010-06-02 13:34:34 +00:00
dejagnu
dev86
devhelp recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
device-driver-doc-de
devIL oops - forgot a libungif reference 2011-03-10 10:35:03 +00:00
dia2code
diffuse Update to 0.4.5. 2011-07-13 14:45:39 +00:00
diffutils recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
distcc recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
distcc-pump recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
distccmon-gnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
distccmon-gtk recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
dlcompat
dmake
dmalloc
doc++ recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
dotconf import dotconf 2010-11-04 16:57:00 +00:00
doxygen Fix build with clang 2011-08-20 15:29:01 +00:00
doxymacs
easygit Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
eclipse
edcommon
eet Mechanically replace references to graphics/jpeg with the suitable 2010-12-23 11:44:24 +00:00
eina
electric-fence Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
elf
elfsh
elib
emacs-ilisp
emacs20-elib
epydoc
equeue
eric3 Add user-destdir installation support. 2011-03-11 12:02:50 +00:00
eric4 update to 4.4.15 2011-06-09 16:44:10 +00:00
error service suspended. fetch from backup. 2011-03-11 11:19:55 +00:00
ethos recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ETL
etrace REPLACE_PYTHON. Depend on python. PKGREVISION -> 1. 2011-06-19 19:40:36 +00:00
exctags
exempi update to 2.1.1 2010-11-16 13:50:56 +00:00
ExmanIDE
fann
fann-devel
fastdep
ffcall
fhist recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
flex recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
flexdock
flim Fix PLIST for emacs versions coming with md4/ntlm/sasl-ntlm.elc. 2010-07-24 06:57:42 +00:00
florist recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
fortran-utils
fossil Update to Fossil 1.18 (2011-07-13) 2011-08-17 13:42:50 +00:00
frama-c recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
fromcvs
ftnchek
g-wrap recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
GConf update to 2.32.3 2011-05-13 17:07:27 +00:00
GConf-ui reset PKGREV for base pkg update 2011-05-13 17:08:10 +00:00
gconfmm disable API doc build -- this is generally a mess, and it is broken 2011-05-11 15:26:18 +00:00
gcvs recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdb recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdb6 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdbada recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdl recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
geany Update geany to 0.20. 2011-05-12 13:12:18 +00:00
generate Correction to the home page and distribution site. 2010-09-30 18:30:20 +00:00
gentle
gettext Fix buidling on Mac OS X 10.7 2011-08-05 00:36:09 +00:00
gettext-asprintf Changes 0.18.1: 2011-04-12 17:41:28 +00:00
gettext-lib Added BUILDLINK_ABI_DEPENDS 2011-04-15 09:24:33 +00:00
gettext-m4 Changes 0.18.1: 2011-04-12 17:41:28 +00:00
gettext-tools Fix build on OpenSolaris-based distribibutions. 2011-08-22 21:53:40 +00:00
gflib
giblib png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
gindent recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
glade recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
glade3 recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
glib
glib2 Get rid of pkg-config build dependency. 2011-08-04 23:52:04 +00:00
glibmm Changes 2.28.2: 2011-07-15 12:22:08 +00:00
global Update GNU GLOBAL from 5.4 to 5.9.3. 2011-01-19 04:24:15 +00:00
gmake Do not use strndup on MirBSD, it used to be broken. Fixes lots of 2011-07-09 16:25:35 +00:00
gmock Import gmock-1.6.0 (googlemock) as devel/gmock from wip/gmock 2011-07-29 15:18:29 +00:00
gmp allow to use gmp/mpfr/mpc which comes with the system (eg on 2011-07-08 09:40:57 +00:00
gnatpython Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
gnome-build recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
gnome-common
gnustep-base recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gnustep-examples Update gnustep-examples to 1.3.0. This includes a couple more examples 2011-04-07 02:17:00 +00:00
gnustep-make Update gnustep-make to 2.4.0. Notable changes include: 2011-04-07 01:41:31 +00:00
gnustep-objc
gnustep-objc-lf2
gob2 Fix bug that was emitting #line directives with a line number of 0, which 2011-08-01 05:03:44 +00:00
gobject-introspection Drop buildlink to graphics/cairo to reduce dependency. 2011-08-09 16:28:03 +00:00
googletest Update to 1.6.0 2011-05-13 10:54:39 +00:00
Gorm Update Gorm to 1.2.12. Notable changes include: 2011-04-07 02:20:30 +00:00
gperf
gprbuild-aux add gprbuild-aux-20101120, a Multi-language project builder, 2011-02-03 19:04:02 +00:00
gps fix a typo, PR#45135. 2011-07-24 13:11:43 +00:00
gputils Fix INSTALLATION_DIRS assignment. 2011-05-14 20:15:28 +00:00
gsoap Update gsoup to 2.7.17. 2010-09-18 12:11:36 +00:00
gst-plugins0.10-pango reset PKGREV for base pkg update 2011-05-18 09:48:59 +00:00
gtexinfo recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gtl Update gtl to 1.2.4. 2011-04-16 11:05:49 +00:00
guile-fcgi
guile-gnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
guile-gtk recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
guile-lib
guile-slib Support user-destdir. 2011-06-15 12:52:59 +00:00
guile-www Update to 2.31. Adjust HOMEPAGE/etc. Add TEST_TARGET. 2011-05-31 11:53:52 +00:00
guile16-gtk recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
haskell-mode
hdf Mechanically replace references to graphics/jpeg with the suitable 2010-12-23 11:44:24 +00:00
hdf5 Don't reverse CPPFLAGS. 2010-04-24 21:27:36 +00:00
heirloom-getopt DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-libcommon DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-what DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
hg-git Make it work with mercurial 1.8. 2011-03-08 09:38:18 +00:00
hoe Update hoe pacakge to 2.12.0. 2011-08-17 13:19:49 +00:00
hptools
ht
hugs-HUnit
hugs-unix
idiff
idutils recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
imake When using clang, use devel/ucpp as the C preprocessor, as clang's cpp 2011-07-26 16:05:27 +00:00
intel2gas
isect
its4
jam
java-subversion recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
javacc
javadeps
jflex
js2-mode
kdbg recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
kdesdk3 need dependency on bash for REPLACE_BASH to work properly. 2011-07-03 02:08:08 +00:00
kdesdk4 need dependency on bash for REPLACE_BASH to work properly. 2011-07-03 02:08:08 +00:00
kdevelop
kdevelop-base recursive bump from icu shlib major bump. 2011-06-10 21:57:06 +00:00
kdevelop4 recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
kdevplatform recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
kdiff3 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ko-po-check Remove PYTHON_VERSION_ACCEPTED, just not compatible with python23. 2011-06-14 09:54:55 +00:00
kscope recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
kyua-cli Initial import of kyua-cli, version 0.1: 2011-07-08 09:49:11 +00:00
lcc Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
lcov Upgrade lcov to 1.9. Branch coverage analysis added and defaults to on. 2010-12-06 19:19:15 +00:00
ldapsdk
ldpc update ldpc package to pkgrevision 1 2011-02-10 16:15:36 +00:00
lemon
libarena Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
libargparse
libast png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
libatomic_ops
libbegemot Fix build on SunOS. 2011-05-14 20:21:19 +00:00
libbinio
libblkid Avoid installing some files not in PLIST, namely language and hwclock files. 2011-01-08 22:30:38 +00:00
libbonobo recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libbonoboui recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libcfg+
libcompizconfig recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libconfig Drop maintainership on these packages, I am no longer interested. 2010-05-07 08:34:22 +00:00
libctl
libdaemon
libdatrie Update libdatrie to 0.2.4. 2010-08-05 12:50:27 +00:00
libdbusmenu-qt need qmake to build, add buildlink to qt4-tools. 2011-07-04 11:34:21 +00:00
libdnsres revbump(1) for devel/libevent update. 2011-02-11 21:22:02 +00:00
libdockapp Add comment to patch. regen checksum. 2011-05-04 19:23:08 +00:00
libebml Fix patching on Mac OSX; fix installing the library; fix some pkglint issues 2011-03-18 12:42:13 +00:00
libelf Package owner resigned. Change to pkgsrc-users 2010-08-28 09:16:35 +00:00
libetm
libev Update libev to version 4.04. 2011-03-06 16:09:42 +00:00
libevent Fix the interpreter of event_rpcgen.py to point to a known Python binary. 2011-04-23 21:17:28 +00:00
libextractor recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libf2c Like lang/f2c, disable -Werror when building with clang. 2011-07-19 13:53:30 +00:00
libffi The library uses m68k_sync_icache from libm68k on NetBSD/m68k. 2011-04-24 09:51:29 +00:00
libfirm
libFoundation
libFoundation-examples
libftdi buildlink for liftdi 2010-10-23 15:34:34 +00:00
libgail-gnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgcroots Update libgcroots to 0.2.3. 2011-05-26 09:23:16 +00:00
libgee recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libgetopt
libglade recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libglademm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libgnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgnomemm recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgnomeui recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgnomeuimm recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgphoto2 add back devel/libusb/buildlink3.mk so this builds on NetBSD 5.99.51 again 2011-05-01 10:19:52 +00:00
libgsf Workaround for PR#41475 is not required anymore. 2011-06-06 07:55:54 +00:00
libgsf-gnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgweather recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
libhfs Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
libiberty
libidn Changes 1.22: 2011-05-05 07:46:44 +00:00
libixp
libjit
libjudy Closes PR pkg/44851, oked by wiz@ and reed@ 2011-05-07 09:59:16 +00:00
libltdl
libmaa Closes PR pkg/44850, oked by wiz@ and reed@ 2011-05-07 10:06:02 +00:00
libmatchbox Fix build with png-1.5. 2011-01-29 11:09:44 +00:00
libmcs Fix library names on SunOS. 2011-04-21 14:25:09 +00:00
libmemcache
libmemmgr
libmimedir
libmm
libmowgli Fix library soname on SunOS. 2011-04-21 20:29:20 +00:00
libmtp Fix build on SunOS. 2011-04-21 15:06:04 +00:00
libnet10
libnet11
libnjb
libntlm Changes 1.2: 2011-01-28 07:44:25 +00:00
liboil Drop lvalue cast to allow building with Clang. 2011-07-19 13:57:17 +00:00
liboop
libosip Updated libosip to 3.5.0 2011-02-19 17:02:57 +00:00
libowfat
libportlib
libproplist
librfuncs move BUILDLINK_LDFLAGS definition from bl3.mk to builtin.mk -- in theory, 2010-08-30 17:27:11 +00:00
librlog
librsync recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
librxspencer
libscsi This package is BSD-specific; set ONLY_FOR_PLATFORM. 2010-10-31 09:08:11 +00:00
libsexy recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libsexymm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libsigc++ Changes 2.2.9: 2011-03-10 11:03:11 +00:00
libsigc++1
libsigsegv Update to libsigsegv 2.10 2011-04-06 21:51:14 +00:00
libslang
libslang2 Fix interpreter path 2011-06-10 10:14:14 +00:00
libsmi Add fix for CVE-2010-2891 taken from Debian's GIT repository. 2010-11-23 11:30:50 +00:00
libstash
libstatgrab Updating devel/libstatgrab from 0.16 to 0.17 2010-08-24 06:33:10 +00:00
libstree
libstroke
libtai Fix void main, which clang won't accept. While here, fix an LP64 issue 2011-08-01 05:37:12 +00:00
libtar
libtecla
libthai Update libthai to 0.1.15. 2011-04-06 11:13:32 +00:00
libthrift Fixes PLIST for perl option with perl!=5.12.x by using PLIST_SUBST variables. 2011-08-19 12:37:09 +00:00
libtool Add MirBSD support to libtool. The patches are based on the ones from MirPorts, 2011-05-14 16:49:45 +00:00
libtool-base Add MirBSD support to libtool. The patches are based on the ones from MirPorts, 2011-05-14 16:49:45 +00:00
libtool-info
libts
libusb Fix broken variable expansion. 2011-04-21 14:46:29 +00:00
libuuid Changes 2.19.1: 2011-05-12 12:26:15 +00:00
libuxre Regexp library from heirloom collection aware of utf-8 2011-05-28 09:48:07 +00:00
libview recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libvolume_id Fix build on SunOS. 2011-07-26 14:17:52 +00:00
libwhisker2
libwnck recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libxenserver recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
lincvs
lmdbg Using REPLACE_INTERPRETER does not magically generate a dependence on the 2011-07-03 02:00:40 +00:00
locktests POSIX locks stress-test 2011-05-03 12:32:40 +00:00
log4cplus Import log4cplus version 1.0.4. 2011-04-27 15:05:06 +00:00
log4cxx Disable build/install of doxygen-built HTML docs. 2011-02-18 18:00:43 +00:00
log4shib Minor Makefile tweak 2011-07-28 21:54:08 +00:00
ltsa
lua-alt-getopt Update HOMEPAGE and MASTER_SITES per Aleksey Cheusov in PR 44729. 2011-03-16 23:14:55 +00:00
lua-filesystem Import lua-filesystem-1.5.0 as devel/lua-filesystem. 2010-09-21 09:30:41 +00:00
lua-lrexlib Add {,nb*} suffix to dependencies. Approved by joerg@ 2011-07-29 22:09:15 +00:00
lua-lrexlib-onig Lrexlib is a binding of three regular expression library APIs 2011-07-24 08:50:40 +00:00
lua-lrexlib-pcre Lrexlib is a binding of three regular expression library APIs 2011-07-24 08:49:29 +00:00
lua-lrexlib-posix Lrexlib is a binding of three regular expression library APIs 2011-07-24 08:50:03 +00:00
lua-mode Update to 20110121: 2011-02-11 10:05:30 +00:00
lua-stdlib Dependency on lua-lrexlib-pcre was added. 2011-07-25 20:10:50 +00:00
lua-stdlib-doc
lwp devel/lwp: 2.4 -> 2.6 2011-03-11 19:57:59 +00:00
m4 Update to 1.4.16: 2011-03-16 14:31:46 +00:00
m17n-lib recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
makedepend Update to 1.0.3: 2010-12-02 14:46:39 +00:00
makedepf90 Update HOMEPAGE and MASTER_SITES. 2010-07-16 12:00:27 +00:00
maketool recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
mantis No need to buildlink with database library. 2010-09-30 08:27:52 +00:00
matio
mdds Update to 0.5.3: 2011-08-06 10:53:30 +00:00
meld Update to 1.5.2: 2011-08-06 10:45:21 +00:00
mell
memcached Updated devel/memcached to 1.4.5 2011-05-27 11:58:52 +00:00
menhir Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
mercurial Update to 1.9.1: 2011-08-06 10:21:19 +00:00
mico DESTDIR support 2010-07-07 01:13:08 +00:00
mk-configure Fix two pkglint warnings: LICENCE line position, comment in patch 2011-05-22 15:23:31 +00:00
mkcmd Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
mono-addins recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
mono-tools recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
monodevelop recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
monodevelop-database recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
monotone recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
monotone-server Set EXTRACT_SUFX so it uses the same tarball as monotone. 2011-04-03 08:58:00 +00:00
monotone-viz recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
mph
mr Update to 1.04. From the changelog: 2011-06-21 02:57:11 +00:00
mscgen Initial import of mscgen-0.20, packaged for wip by Jan Danielsson. 2011-05-15 11:10:58 +00:00
msgpack Update msgpack to 0.5.6. 2011-05-06 05:48:11 +00:00
nana
nant recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
nasm
nbitools check-interpreter fix. 2011-07-03 19:45:14 +00:00
nbpatch From PR 43188: basename(3) and dirname(3) are in libgen on IRIX 2010-05-02 22:33:27 +00:00
ncc
ncurses Changes 5.9: 2011-04-06 14:02:47 +00:00
ncursesw Changes 5.8: 2011-02-28 11:02:46 +00:00
netbeans-ide Add openjdk7 to PKG_JVMS_ACCEPTED - from Nathanial Sloss 2011-08-16 08:38:07 +00:00
netbsd-iscsi-lib Update to 20110222. 2011-02-22 13:33:22 +00:00
netcdf "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
newfile * Add two CONFLICTS patterns: 2010-09-13 14:39:30 +00:00
newt recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
noweb Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
nqc
nsis Reset maintainer. 2010-11-01 00:08:09 +00:00
nspr Version bump due to firefox update. 2011-08-18 18:31:34 +00:00
nspr-reference
nss Version bump due to firefox update. 2011-08-18 18:31:34 +00:00
ObjectiveLib
ocaml-findlib Check-point ocamlfind buildlink3.mk; overwrite "ocamlfind install" command 2011-06-15 05:25:46 +00:00
ocaml-lwt
ode
ogre png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
omake Update to 0.9.8.6rc1 and add lots of upstream SVN patches to make 2010-12-17 09:40:14 +00:00
opal CFLAGS+=-D__STDC_CONSTANT_MACROS so that UINT64_C() is defined for C++ 2011-02-06 08:00:05 +00:00
opencm
opengrok recursive bump from icu shlib major bump. 2011-06-10 21:57:06 +00:00
orc update to 0.4.14 2011-05-18 09:58:39 +00:00
ossp-uuid
p4
p4-docs
p4d
p4pr
p4web
p5-accessors Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Acme-PlayCode Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Annotate Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-C3 Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-CheckDigits Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Dependency Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Diff Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-HowSimilar Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Merge Revision bump after updating perl to 5.14.1 2011-08-07 05:49:30 +00:00
p5-aliased Revision bump after updating perl to 5.14.1 2011-08-07 05:49:30 +00:00
p5-AnnoCPAN-Perldoc Revision bump after updating perl to 5.14.1 2011-08-07 05:49:30 +00:00
p5-Any-Moose Changes 0.15: 2011-08-07 05:59:47 +00:00
p5-AnyEvent Adjust package name to deal with Perl version numbering 2011-08-13 17:53:07 +00:00
p5-AnyEvent-AIO Revision bump after updating perl to 5.14.1 2011-08-07 06:52:49 +00:00
p5-AnyEvent-IRC Revision bump after updating perl to 5.14.1 2011-08-07 06:52:49 +00:00
p5-App-Cache Revision bump after updating perl to 5.14.1 2011-08-07 06:52:49 +00:00
p5-App-CLI Changes 0.31: 2011-08-07 06:58:43 +00:00
p5-App-Cmd Changes 0.311: 2011-08-07 07:04:29 +00:00
p5-App-cpanminus Changes 1.4008: 2011-08-07 07:08:26 +00:00
p5-App-cpanoutdated Changes 0.18: 2011-08-07 07:43:34 +00:00
p5-App-FatPacker As noted in Changes, no longer needs p5-File-Path >= 2.07. 2011-08-07 10:04:33 +00:00
p5-App-perlbrew Update to 0.28, add some missing dependencies. 2011-08-16 21:11:30 +00:00
p5-AppConfig Revision bump after updating perl to 5.14.1 2011-08-07 07:55:16 +00:00
p5-AppConfig-Std Revision bump after updating perl to 5.14.1 2011-08-07 07:55:16 +00:00
p5-Array-Compare Revision bump after updating perl to 5.14.1 2011-08-07 07:55:16 +00:00
p5-Array-Diff As noted in Changes, require p5-Algorithm-Diff 1.19. 2011-08-07 10:01:09 +00:00
p5-Array-RefElem Revision bump after updating perl to 5.14.1 2011-08-07 08:01:11 +00:00
p5-asa Changes 1.03: 2011-08-07 08:02:38 +00:00
p5-Async-Interrupt Revision bump after updating perl to 5.14.1 2011-08-07 08:03:22 +00:00
p5-AtExit Revision bump after updating perl to 5.14.1 2011-08-07 08:05:31 +00:00
p5-Attribute-Handlers Changes 0.91: 2011-08-07 08:07:00 +00:00
p5-Attribute-Lexical As Changes 0.004, require newser Lexical::SealREquireHints, it's 0.005 2011-08-07 09:54:14 +00:00
p5-autobox Changes 2.75: 2011-08-07 08:14:48 +00:00
p5-autobox-Core Revision bump after updating perl to 5.14.1 2011-08-07 08:15:28 +00:00
p5-autodie Revision bump after updating perl to 5.14.1 2011-08-07 08:16:40 +00:00
p5-AutoLoader Changes 5.71: 2011-08-07 08:18:18 +00:00
p5-AutoXS-Header Revision bump after updating perl to 5.14.1 2011-08-07 08:19:30 +00:00
p5-B-Compiling Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-B-Hooks-EndOfScope Revision bump after updating perl to 5.14.1 2011-08-09 06:52:35 +00:00
p5-B-Hooks-OP-Annotation Changes 0.44: 2011-08-09 07:35:41 +00:00
p5-B-Hooks-OP-Check Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Hooks-OP-Check-StashChange Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Hooks-OP-PPAddr Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Hooks-Parser Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Keywords Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Utils Changes 0.15: 2011-08-09 07:55:51 +00:00
p5-BackPAN-Index Changes 0.40: 2011-08-09 09:04:26 +00:00
p5-Bit-Vector Revision bump after updating perl to 5.14.1 2011-08-09 09:11:32 +00:00
p5-boolean Changes 0.27: 2011-08-09 09:14:11 +00:00
p5-BSD-Resource Revision bump after updating perl to 5.14.1 2011-08-09 09:15:01 +00:00
p5-Cache Revision bump after updating perl to 5.14.1 2011-08-09 09:15:01 +00:00
p5-Cache-Cache Revision bump after updating perl to 5.14.1 2011-08-09 09:15:01 +00:00
p5-Cache-FastMmap Changes 1.39: 2011-08-09 09:19:45 +00:00
p5-Cache-Memcached Revision bump after updating perl to 5.14.1 2011-08-09 09:20:58 +00:00
p5-Cache-Simple-TimedExpiry Revision bump after updating perl to 5.14.1 2011-08-09 09:20:58 +00:00
p5-capitalization Revision bump after updating perl to 5.14.1 2011-08-09 09:20:58 +00:00
p5-Capture-Tiny Changes 0.11: 2011-08-09 09:25:28 +00:00
p5-Carp-Assert Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Carp-Assert-More Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Carp-Clan Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Carp-REPL Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-CLASS Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Class-Accessor Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Class-Accessor-Chained Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Class-Accessor-Grouped As noted in Changes 0.10003, only require MRO::Compat for older perls, 2011-08-09 09:54:15 +00:00
p5-Class-Accessor-Named Revision bump after updating perl to 5.14.1 2011-08-09 09:43:06 +00:00
p5-Class-Adapter Changes 1.08: 2011-08-09 09:44:33 +00:00
p5-Class-Autouse Changes 2.00: 2011-08-09 09:46:31 +00:00
p5-Class-Base Revision bump after updating perl to 5.14.1 2011-08-09 10:00:16 +00:00
p5-Class-C3 Revision bump after updating perl to 5.14.1 2011-08-09 10:00:16 +00:00
p5-Class-C3-Adopt-NEXT Revision bump after updating perl to 5.14.1 2011-08-09 10:00:16 +00:00
p5-Class-C3-Componentised Changes 1.001000: 2011-08-09 10:08:01 +00:00
p5-Class-C3-XS Revision bump after updating perl to 5.14.1 2011-08-09 10:09:20 +00:00
p5-Class-Container Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Data-Accessor Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Data-Inheritable Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-ErrorHandler Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Factory Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Factory-Util Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Field Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Fields Changes 0.204: 2011-08-10 04:14:11 +00:00
p5-Class-Gomor Revision bump after updating perl to 5.14.1 2011-08-10 04:14:51 +00:00
p5-Class-Inner Revision bump after updating perl to 5.14.1 2011-08-10 04:14:51 +00:00
p5-Class-InsideOut Revision bump after updating perl to 5.14.1 2011-08-10 04:14:51 +00:00
p5-Class-Inspector Changes 1.25: 2011-08-10 04:17:23 +00:00
p5-Class-ISA Revision bump after updating perl to 5.14.1 2011-08-10 04:18:22 +00:00
p5-Class-Loader Revision bump after updating perl to 5.14.1 2011-08-10 04:18:22 +00:00
p5-Class-MakeMethods Revision bump after updating perl to 5.14.1 2011-08-10 04:18:22 +00:00
p5-Class-Method-Modifiers Changes 1.07: 2011-08-10 04:23:14 +00:00
p5-Class-MethodMaker Update to 2.18. Addresses PR 45224. 2011-08-08 20:44:51 +00:00
p5-Class-Mix Revision bump after updating perl to 5.14.1 2011-08-10 04:24:24 +00:00
p5-Class-MOP Changes 1.12: 2011-08-10 04:30:01 +00:00
p5-Class-ObjectTemplate Revision bump after updating perl to 5.14.1 2011-08-10 04:31:04 +00:00
p5-Class-OOorNO Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-ReturnValue Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Singleton Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Std Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Throwable Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Trigger Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Unload Changes 0.07: 2011-08-10 06:35:42 +00:00
p5-Class-Virtual Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-WhiteHole Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-XML Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-XPath Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-XSAccessor Changes 1.11: 2011-08-10 06:42:39 +00:00
p5-Class-XSAccessor-Array Revision bump after updating perl to 5.14.1 2011-08-10 06:43:11 +00:00
p5-Clone Revision bump after updating perl to 5.14.1 2011-08-06 20:00:57 +00:00
p5-Clone-PP Revision bump after updating perl to 5.14.1 2011-08-06 20:00:57 +00:00
p5-common-sense Ouch: commit distinfo as well 2011-08-10 08:46:11 +00:00
p5-Compress-PPMd Revision bump after updating perl to 5.14.1 2011-08-10 06:45:27 +00:00
p5-Compress-Raw-Bzip2 Changes 2.037: 2011-08-10 06:47:42 +00:00
p5-Compress-Raw-Zlib Changes 2.037: 2011-08-10 06:49:29 +00:00
p5-Config-Any Changes 0.23: 2011-08-10 08:16:42 +00:00
p5-Config-Auto Changes 0.38: 2011-08-10 08:20:17 +00:00
p5-Config-AutoConf Changes 0.16: 2011-08-10 08:22:50 +00:00
p5-Config-Find Revision bump after updating perl to 5.14.1 2011-08-10 08:24:35 +00:00
p5-Config-General Changes 2.50: 2011-08-10 08:26:25 +00:00
p5-Config-GitLike Changes 1.05: 2011-08-10 08:30:07 +00:00
p5-Config-INI Changes 0.18: 2011-08-10 08:33:08 +00:00
p5-Config-IniFiles Changes 2.68: 2011-08-10 08:34:33 +00:00
p5-Config-Std Changes 0.900: 2011-08-10 08:37:14 +00:00
p5-Config-Tiny Changes 2.14: 2011-08-10 08:38:37 +00:00
p5-constant Changes 1.21: 2011-08-10 08:39:56 +00:00
p5-Context-Preserve Revision bump after updating perl to 5.14.1 2011-08-10 08:40:57 +00:00
p5-Contextual-Return Revision bump after updating perl to 5.14.1 2011-08-10 08:40:57 +00:00
p5-Coro Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-CPAN Changes 1.9800: 2011-08-10 09:52:50 +00:00
p5-CPAN-Checksums Changes 2.07: 2011-08-10 10:00:00 +00:00
p5-CPAN-DistnameInfo Changes 0.12: 2011-08-10 10:01:37 +00:00
p5-CPAN-FindDependencies Revision bump after updating perl to 5.14.1 2011-08-10 10:06:58 +00:00
p5-CPAN-Inject Changes 1.13: 2011-08-10 10:11:59 +00:00
p5-CPAN-Meta Initial import of CPAN-Meta-2.112150. 2011-08-16 21:30:20 +00:00
p5-CPAN-Reporter Update to 1.2002. 2011-08-16 21:39:41 +00:00
p5-Curses Revision bump after updating perl to 5.14.1 2011-08-11 17:05:19 +00:00
p5-Curses-UI Revision bump after updating perl to 5.14.1 2011-08-11 17:05:19 +00:00
p5-Curses-UI-POE Revision bump after updating perl to 5.14.1 2011-08-11 17:05:19 +00:00
p5-Data-Alias Changes 1.15: 2011-08-11 17:09:33 +00:00
p5-Data-Buffer Revision bump after updating perl to 5.14.1 2011-08-11 17:10:40 +00:00
p5-Data-Compare Revision bump after updating perl to 5.14.1 2011-08-11 17:10:40 +00:00
p5-Data-Denter Revision bump after updating perl to 5.14.1 2011-08-11 17:10:40 +00:00
p5-Data-Dump Changes 1.19: 2011-08-11 17:14:09 +00:00
p5-Data-Dump-Streamer Changes 2.32: 2011-08-11 17:17:29 +00:00
p5-Data-Dumper-Concise Changes 2.020: 2011-08-11 17:20:00 +00:00
p5-Data-Dumper-Names Revision bump after updating perl to 5.14.1 2011-08-11 17:21:06 +00:00
p5-Data-Hierarchy Revision bump after updating perl to 5.14.1 2011-08-12 06:15:06 +00:00
p5-Data-OptList Changes 0.107: 2011-08-12 06:27:04 +00:00
p5-Data-Page Revision bump after updating perl to 5.14.1 2011-08-12 06:28:39 +00:00
p5-Data-Pageset Revision bump after updating perl to 5.14.1 2011-08-12 06:28:39 +00:00
p5-Data-Peek Changes 0.33: 2011-08-12 06:30:57 +00:00
p5-Data-Section Changes 0.101.621: 2011-08-16 08:22:51 +00:00
p5-Data-Serializer Changes 0.59: 2011-08-12 06:34:44 +00:00
p5-Data-ShowTable Revision bump after updating perl to 5.14.1 2011-08-12 06:37:04 +00:00
p5-Data-Taxi Changes 0.96: 2011-08-12 06:38:28 +00:00
p5-Data-TemporaryBag Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Data-UUID Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Data-Visitor Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Business Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Calc Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Calc-XS Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Manip Changes 6.24: 2011-08-12 06:52:03 +00:00
p5-Date-Simple Revision bump after updating perl to 5.14.1 2011-08-12 06:53:37 +00:00
p5-Debug-Client Changes 0.12: 2011-08-12 06:55:53 +00:00
p5-Declare-Constraints-Simple Revision bump after updating perl to 5.14.1 2011-08-12 06:56:59 +00:00
p5-Devel-Autoflush Revision bump after updating perl to 5.14.1 2011-08-12 06:56:59 +00:00
p5-Devel-Caller Revision bump after updating perl to 5.14.1 2011-08-12 06:56:59 +00:00
p5-Devel-Checklib Changes 0.93: 2011-08-12 07:05:32 +00:00
p5-Devel-CheckOS Changes 1.64: 2011-08-12 07:07:33 +00:00
p5-Devel-Cover Changes 0.79: 2011-08-12 07:17:27 +00:00
p5-Devel-Cycle Revision bump after updating perl to 5.14.1 2011-08-12 07:18:35 +00:00
p5-Devel-Declare Changes 0.006005: 2011-08-12 07:23:28 +00:00
p5-Devel-Dumpvar Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-ebug Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-EvalContext Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-Events Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-Events-Objects Revision bump after updating perl to 5.14.1 2011-08-12 07:36:06 +00:00
p5-Devel-FindRef Revision bump after updating perl to 5.14.1 2011-08-12 07:36:06 +00:00
p5-Devel-Gladiator Revision bump after updating perl to 5.14.1 2011-08-12 07:36:06 +00:00
p5-Devel-GlobalDestruction Changes 0.04: 2011-08-12 07:40:48 +00:00
p5-Devel-Leak-Object Revision bump after updating perl to 5.14.1 2011-08-12 07:42:49 +00:00
p5-Devel-LexAlias Revision bump after updating perl to 5.14.1 2011-08-12 08:21:32 +00:00
p5-Devel-NYTProf Changes 4.06: 2011-08-12 08:24:55 +00:00
p5-Devel-PartialDump Changes 0.15: 2011-08-12 08:27:58 +00:00
p5-Devel-PatchPerl Initial import of p5-Devel-PatchPerl-0.52. 2011-08-16 20:25:25 +00:00
p5-Devel-PPPort Update p5-Devel-PPPort to version 3.19.03. Chance since version 3.19.03: 2011-08-06 10:02:34 +00:00
p5-Devel-Profile Revision bump after updating perl to 5.14.1 2011-08-12 08:29:30 +00:00
p5-Devel-Refactor Revision bump after updating perl to 5.14.1 2011-08-12 08:29:30 +00:00
p5-Devel-REPL Changes 1.003.012: 2011-08-12 11:40:55 +00:00
p5-Devel-Size Changes 0.77: 2011-08-12 11:43:55 +00:00
p5-Devel-SmallProf Revision bump after updating perl to 5.14.1 2011-08-12 11:45:31 +00:00
p5-Devel-StackTrace Changes 1.27: 2011-08-12 11:47:39 +00:00
p5-Devel-StackTrace-AsHTML Changes 0.11: 2011-08-12 11:49:35 +00:00
p5-Devel-StackTrace-WithLexicals Changes 0.10: 2011-08-12 11:50:51 +00:00
p5-Devel-Symdump Revision bump after updating perl to 5.14.1 2011-08-12 11:51:39 +00:00
p5-Devel-Trace Changes 0.11: unknown 2011-08-12 11:56:24 +00:00
p5-Devel-TraceUse Changes 2.05: 2011-08-12 11:58:10 +00:00
p5-Dir-Self Revision bump after updating perl to 5.14.1 2011-08-12 11:59:16 +00:00
p5-Dist-CheckConflicts Initial import of p5-Dist-CheckConflicts-0.02: 2011-08-16 20:50:54 +00:00
p5-enum Revision bump after updating perl to 5.14.1 2011-08-09 07:33:08 +00:00
p5-Error Revision bump after updating perl to 5.14.1 2011-08-12 11:59:16 +00:00
p5-EV Changes 4.03: 2011-08-12 12:02:11 +00:00
p5-Eval-Closure Tune down requirements 2011-08-23 08:53:08 +00:00
p5-Event Changes 1.20: unknown 2011-08-12 12:03:39 +00:00
p5-Event-ExecFlow Revision bump after updating perl to 5.14.1 2011-08-12 12:13:52 +00:00
p5-Event-RPC Revision bump after updating perl to 5.14.1 2011-08-12 12:13:52 +00:00
p5-ex-lib Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Exception-Class Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Exception-Handler Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Expect Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Expect-Simple Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Exporter-Lite Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-ExtUtils-AutoInstall Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-ExtUtils-CBuilder Changes 0.28.02.02: 2011-08-12 12:41:03 +00:00
p5-ExtUtils-Command Changes 1.17: 2011-08-12 12:44:03 +00:00
p5-ExtUtils-Depends Changes 0.304: 2011-08-12 12:46:08 +00:00
p5-ExtUtils-Embed Revision bump after updating perl to 5.14.1 2011-08-12 12:49:40 +00:00
p5-ExtUtils-F77 Changes 1.17: 2011-08-12 12:53:06 +00:00
p5-ExtUtils-Install Revision bump after updating perl to 5.14.1 2011-08-12 12:54:07 +00:00
p5-ExtUtils-MakeMaker Add two missing dependencies; fixes conflict with p5-File-Copy-Recursive. 2011-08-16 21:37:44 +00:00
p5-ExtUtils-Manifest Changes 1.59: 2011-08-12 13:44:25 +00:00
p5-ExtUtils-ModuleMaker Correct LICENSE 2011-08-12 13:50:23 +00:00
p5-ExtUtils-ModuleMaker-TT Revision bump after updating perl to 5.14.1 2011-08-12 13:53:57 +00:00
p5-ExtUtils-ParseXS Changes 3.03: 2011-08-12 13:58:47 +00:00
p5-ExtUtils-PkgConfig Revision bump after updating perl to 5.14.1 2011-08-12 18:47:30 +00:00
p5-ExtUtils-XSBuilder Revision bump after updating perl to 5.14.1 2011-08-12 18:47:30 +00:00
p5-ExtUtils-XSpp perl-5.14.1 contains sufficient ExtUtils::ParseXS. Bump PKGREVISION. 2011-08-17 03:05:15 +00:00
p5-File-BaseDir Revision bump after updating perl to 5.14.1 2011-08-12 18:57:13 +00:00
p5-File-BOM Revision bump after updating perl to 5.14.1 2011-08-12 18:57:13 +00:00
p5-File-ChangeNotify Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:30:36 +00:00
p5-File-chdir Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-ConfigDir Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-DesktopEntry Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-DirCompare Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-DirSync Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-Find-Rule Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-Find-Rule-Age Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-Find-Rule-Perl Changes 1.10: 2011-08-12 19:20:05 +00:00
p5-File-Find-Rule-Permissions Revision bump after updating perl to 5.14.1 2011-08-12 19:21:45 +00:00
p5-File-Find-Rule-PPI Changes 1.06: 2011-08-13 07:46:03 +00:00
p5-File-Find-Rule-VCS Changes 1.08: 2011-08-13 07:47:41 +00:00
p5-File-Flat Revision bump after updating perl to 5.14.1 2011-08-13 07:48:46 +00:00
p5-File-FlockDir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-HomeDir Changes 0.98: 2011-08-13 07:54:44 +00:00
p5-File-LibMagic Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-Listing Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-MimeInfo Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-Modified Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-Next Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-NFSLock Changes 1.21: 2011-08-13 08:20:29 +00:00
p5-File-Path Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Path-Expand Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Path-Tiny Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-PathConvert Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Policy Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-pushd Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Save-Home Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-ShareDir Changes 1.03: 2011-08-13 08:44:01 +00:00
p5-File-Slurp Changes 9999.19: 2011-08-16 07:00:59 +00:00
p5-File-Temp Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Tempdir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Touch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Type Added LICENSE 2011-08-16 07:31:04 +00:00
p5-File-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Which Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FileHandle-Fmode Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FileHandle-Unget Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FileKGlob Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Filesys-Notify-Simple Changes 0.07: 2011-08-16 07:47:25 +00:00
p5-Format-Human-Bytes Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FreezeThaw Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Getopt-ArgvFile Added LICENSE 2011-08-16 07:57:18 +00:00
p5-Getopt-Euclid Changes 0.2.7 2011-08-16 07:58:55 +00:00
p5-Getopt-Long Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Getopt-Long-Descriptive Depend on the same p5-Params-Validate version as Makefile.PL does. 2011-08-16 08:22:07 +00:00
p5-Getopt-Mixed Added LICENSE 2011-08-16 08:01:43 +00:00
p5-Getopt-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-gettext Added LICENSE 2011-08-16 08:01:43 +00:00
p5-Git-CPAN-Patch Changes 0.6.1: 2011-08-16 08:30:16 +00:00
p5-glib2 Changes 1.224: 2011-08-16 08:36:10 +00:00
p5-Gnome2 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Gnome2-GConf Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Graph Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Gtk2-GladeXML Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Guard Changes 1.022: 2011-08-16 09:37:17 +00:00
p5-Hash-Case Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hash-Flatten Update to 1.19: 2011-08-17 09:42:44 +00:00
p5-Hash-Merge Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hash-MoreUtils Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hash-MultiValue Update to 0.09: 2011-08-17 09:43:46 +00:00
p5-Hash-Util-FieldHash-Compat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Heap Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hook-LexWrap Update to 0.24: 2011-08-17 09:44:49 +00:00
p5-IMDB-Film Update to 0.50: 2011-08-16 22:40:51 +00:00
p5-Inline Update to 0.48: 2011-08-17 11:43:59 +00:00
p5-InlineX-C2XS Update to 0.16: 2011-08-17 11:57:17 +00:00
p5-Internals Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-AIO Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-All Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Capture Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-CaptureOutput Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Compress Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Digest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Handle-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-InSitu Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Interactive Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-LockedFile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Multiplex Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Null Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Pager Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Pipeline Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Prompt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-String Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-stringy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Stty Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Tee Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-TieCombine Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Tty Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Zlib Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Cmd Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-DirQueue Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-PubSub Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Run Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Run3 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Shareable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-SharedCache Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-ShareLite Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Signal Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-System-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-SysV Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LDAP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LEOCHARRE-CLI2 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LEOCHARRE-Debug Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LEOCHARRE-Dir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Lexical-Persistence Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Lexical-SealRequireHints Update p5-Lexical-SealRequireHints to 0.005. 2011-08-14 16:26:57 +00:00
p5-lib-abs Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-List-MoreUtils Updated devel/p5-List-MoreUtils to 0.33 2011-08-23 08:59:04 +00:00
p5-local-lib Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Locale-Msgfmt Update to 0.15: 2011-08-16 22:12:12 +00:00
p5-Locale-PO Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Agent Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Any Update to 0.13: 2011-08-17 11:58:20 +00:00
p5-Log-Any-Adapter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Any-Adapter-Dispatch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Any-Adapter-Log4perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch-Config Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch-DBI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch-FileRotate Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Log4perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-LogLite Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Report Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Trace Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mac-Carbon Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mac-SystemDirectory Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Make Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Memoize Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Memoize-ExpireLRU Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Memoize-Memcached Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Method-Signatures-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mixin-ExtraFields Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mixin-ExtraFields-Param Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mixin-Linewise Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Modern-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Build Update p5-Module-Build to 0.38000 (upstream 0.3800). 2011-08-15 04:22:56 +00:00
p5-Module-CoreList Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-CPANTS-Analyse Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Dependency Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-ExtractUse Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Find Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install Update to 1.01: 2011-08-16 20:16:51 +00:00
p5-Module-Install-PadrePlugin Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install-RTx Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install-Substitute Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install-XSUtil Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Load Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Manifest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Pluggable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Refresh Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-ScanDeps Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Starter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Starter-PBP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Versions Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Versions-Report Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Moose Updated devel/p5-Moose to 2.0202 2011-08-23 09:08:12 +00:00
p5-Moose-Autobox Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Moose-Policy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-App-Cmd Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-AttributeHelpers Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Attributes-Curried Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-ClassAttribute Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-ConfigFromFile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Declare Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Emulate-Class-Accessor-Fast Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-FollowPBP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Getopt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-InsideOut Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-LazyRequire Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Meta-TypeConstraint-ForceCoercion Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Method-Signatures Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-MethodAttributes Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-MultiInitArg Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-NonMoose Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Object-Pluggable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Param Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Params-Validate Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Role-Parameterized Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Role-WithOverloading Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-SemiAffordanceAccessor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-SimpleConfig Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Singleton Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-StrictConstructor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Traits Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Traits-Pluggable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-Common Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-JSON Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-Path-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-Structured Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-URI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mouse Update "p5-Mouse-0.93" package 0.93. Changes since version 0.70: 2011-08-06 10:16:56 +00:00
p5-MouseX-Types Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MRO-Compat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-namespace-autoclean Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-namespace-clean Updated devel/p5-namespace-clean to 0.21 2011-08-18 11:53:02 +00:00
p5-Net-CIDR Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-LDAP-Batch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-LDAP-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-LDAP-Server-Test Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-Netmask Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-NEXT Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Declare Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Event Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-InsideOut Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Realize-Later Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Signature Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-OLE-Storage_Lite Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-OOTools Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Package-Constants Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Package-DeprecationManager Updated devel/p5-Package-DeprecationManager to 0.11 2011-08-23 08:56:26 +00:00
p5-Package-Generator Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Package-Stash Update to 0.31: 2011-08-16 21:01:49 +00:00
p5-Package-Stash-XS Initial import of p5-Package-Stash-XS-0.23: 2011-08-16 20:57:51 +00:00
p5-PadWalker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-pango Update to 1.222: 2011-08-16 22:13:54 +00:00
p5-PAR Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PAR-Dist Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parallel-ForkManager Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parallel-Prefork Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Params-Classify Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Params-Coerce Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Params-Util Update to 1.04. Set LICENSE. 2011-08-16 22:42:25 +00:00
p5-Params-Validate Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:30:36 +00:00
p5-parent Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-CPAN-Meta Changes 1.4401: 2011-08-10 11:38:29 +00:00
p5-Parse-CPAN-Packages Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-ErrorString-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-ExuberantCTags Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-Method-Signatures Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-RecDescent Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-Yapp Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PatchReader Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Class-File-Stat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Dispatcher Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Dispatcher-Declarative Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PathTools Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl-APIReference Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl-Critic Update to 1.116: 2011-08-16 23:01:57 +00:00
p5-perl-headers Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl-MinimumVersion Update to 1.28: 2011-08-16 23:03:03 +00:00
p5-Perl-Tidy Update to 20101217: 2011-08-16 23:04:17 +00:00
p5-Perl-Version Update to 1.011: 2011-08-16 23:05:28 +00:00
p5-Perl6-Export Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl6-Export-Attrs Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl6-Junction Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl6-Slurp Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-eol Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-gzip Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-via-Bzip2 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-via-dynamic Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-via-symlink Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PHP-Serialization Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-pip Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE Changes 1.312: 2011-08-06 13:24:20 +00:00
p5-POE-Component-Cron Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE-Component-Pluggable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE-Component-Schedule Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE-Test-Loops Changes 1.312: 2011-08-06 13:15:54 +00:00
p5-PPI Update to 1.215: 2011-08-16 22:48:24 +00:00
p5-PPI-PowerToys Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PPI-XS Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PPIx-Regexp Update to 0.021: 2011-08-16 22:52:41 +00:00
p5-PPIx-Utilities Update to 1.1.0: 2011-08-16 22:56:04 +00:00
p5-prefork Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Probe-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Background Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Daemon Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-InvokeEditor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-PID-File Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Pidfile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-ProcessTable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Queue Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Wait3 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-WaitStat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PV Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Readonly Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Readonly-XS Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-Assemble Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-MatchContext Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-Parser Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-Shellish Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Return-Value Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Rose-Object Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Safe-Hole Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-sapnwrfc Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scalar-Defer Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scalar-List-Utils Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scalar-Util-Refcount Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Schedule-RateLimiter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scope-Guard Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scope-Upper Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SDL Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Set-IntSpan Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Set-Object Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Set-Scalar Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Shell-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-ShipIt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-signatures Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Smart-Comments Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Software-License Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Sort-Maker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Sort-Versions Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Spiffy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Spoon Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Storable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-String-Escape Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-String-Format Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-String-PerlIdentifier Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Sub-Exporter Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Identify Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Install Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Installer Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Name Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Override Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Uplevel Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-subversion Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SUPER Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:30:36 +00:00
p5-SVN-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SVN-Dump Update to 0.05: 2011-08-16 23:06:31 +00:00
p5-SVN-Mirror Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SVN-Notify Update to 2.82: 2011-08-16 23:09:33 +00:00
p5-SVN-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-TAP-Formatter-HTML Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-TAP-Harness-Archive Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Task-Weaken Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tee Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-Handy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-HashMerge Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-ListMoreUtils Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-ListUtil Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-VMethods Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ANSIColor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Cap Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ProgressBar Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Prompt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadKey Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadLine Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadLine-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadPassword Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Screen Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Shell Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ShellUI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Size Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Aggregate Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Approx Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Assertions Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Base Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-CheckManifest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-ClassAPI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Cmd Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Compile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Deep Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Differences Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Distribution Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Exception Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Expect Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Fatal Added devel/p5-Test-Fatal version 0.006 2011-08-16 11:57:59 +00:00
p5-Test-File-Contents Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Fixture-DBIC-Schema Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Harness Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-HexString Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Inline Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Inter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Kwalitee Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-LeakTrace Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Log4perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-LongString Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Manifest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Memory-Cycle Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-MinimumVersion Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Mock-LWP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-MockModule Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-MockObject Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Most Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-NoWarnings Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Object Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Output Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Perl-Critic Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:30:36 +00:00
p5-Test-Pod Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Pod-Coverage Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Pod-Spelling-CommonMistakes Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-POE-Client-TCP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-POE-Server-TCP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Reporter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Requires Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Script Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Script-Run Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-SharedFork Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Spec Initial import of p5-Test-Spec-0.38: 2011-08-16 21:04:55 +00:00
p5-Test-SubCalls Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Taint Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-TempDir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Tester Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Trap Initial import of p5-Test-Trap-0.2.1. 2011-08-16 20:40:16 +00:00
p5-Test-Unit Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-use-ok Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-UseAllModules Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Warn Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Weaken Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-WWW-Selenium Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-YAML-Meta Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-YAML-Valid Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Throwable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Array-AsHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Array-Sorted Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Cache Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Cache-LRU Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Cache-LRU-Expires Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-File Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-IxHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-LLHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-RefHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-RefHash-Weak Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-RegexpHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-ToObject Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tree-DAG_Node Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tree-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tree-Simple-VisitorFactory Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Try-Tiny Updated devel/p5-Try-Tiny to 0.09 2011-08-16 11:54:30 +00:00
p5-TryCatch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-can Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-isa Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-moniker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-require Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UUID-Tiny Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Variable-Magic Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-VCP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-VCP-Dest-svk Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-version Changes 0.9300: 2011-08-10 06:24:06 +00:00
p5-Want Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-WeakRef Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Wx-Perl-DataWalker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-XSLoader Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
palmpower
pango recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
pangomm 2.28.2: 2011-05-12 11:15:43 +00:00
papaya * remove a redundant link in texinfo file. 2011-07-06 13:17:46 +00:00
pardiff
patch Update "patch" package to version 2.5.9. Changes since version 2.5.4: 2011-07-09 10:32:17 +00:00
patchutils Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
pcc-libs Initial import of pcc-libs 1.0.0 into the packages collection. 2011-04-10 10:40:45 +00:00
pccts update to 1.33.33 2011-03-11 14:49:03 +00:00
pcl-cvs service suspended. fetch from backup. 2011-03-11 11:19:55 +00:00
pcre Update to 8.13. Add comments to patches. 2011-08-22 12:58:08 +00:00
pcre++
pcre-ocaml
pdcurses Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
pedisassem
php-gettext recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
php-gmp Revert revision of several PHP extensions after both core PHP packages 2010-07-24 22:24:21 +00:00
php-libawl Update AWL to 0.45. 2010-11-12 18:20:19 +00:00
php-memcache Update php-memcache package to 2.2.6. 2010-12-19 03:00:52 +00:00
php-mode
php-pcntl
php-posix
php-shmop Add a patch to fix bug #54193 (Integer overflow in shmop_read()) referring 2011-03-21 16:08:28 +00:00
php-sysvmsg
php-sysvsem
php-sysvshm
physfs
picp
picprg
pilrc recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
pipestatus
pkg-config Squash a C++ism: Variable declarations only at the beginning of a block. 2010-12-10 07:45:56 +00:00
ply Update ply to version 3.3. 2010-08-29 11:00:31 +00:00
pmccabe
poco Bring in boost-license, 1.0. Certified by OSI as an Open Source 2011-02-06 18:54:49 +00:00
popt recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
prcs Instead of trying to guess which platforms will choke on an explicit 2010-07-31 21:37:25 +00:00
ProjectCenter Update ProjectCenter to 0.6.0. Changes are mainly bugfixes and minor 2011-04-07 02:23:06 +00:00
psvn
pth don't install the pthread drop-in emulation header and library in case 2010-09-07 10:46:47 +00:00
pthread-sem
pthread-stublib
ptlib Need flex, PR#43537 by Aleksey Cheusov. 2010-06-27 11:14:50 +00:00
pvs pvs needs tex-amsmath, not the entire teTeX. 2011-02-19 00:42:21 +00:00
pwlib Add destdir installation support. 2011-03-21 12:27:11 +00:00
py-argparse Fix HOMEPAGE. 2010-07-24 17:46:59 +00:00
py-at-spi recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-babel Update py-babel to 0.9.5. 2010-04-21 06:01:51 +00:00
py-checker
py-cheetah Changes 2.4.2: 2011-04-08 12:54:20 +00:00
py-compizconfig recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-coverage add py-coverage-3.3.1, a module that measures code coverage, from 2010-08-10 17:03:39 +00:00
py-ctypes
py-curses Install standard python modules into usual location instead of site-packages. 2011-05-04 11:38:05 +00:00
py-cursespanel Install standard python modules into usual location instead of site-packages. 2011-05-04 11:38:05 +00:00
py-cython Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-darcsver Express dependency on py-expat. 2010-09-26 13:53:47 +00:00
py-dulwich dulwich-0.6.0: 2010-06-14 10:15:15 +00:00
py-expect Fix build with modern libtool by using -module and correct arguments. 2010-07-21 14:11:16 +00:00
py-fann
py-funcparserlib Import py-funcparserlib-0.3.5 as devel/py-funcparserlib. 2011-07-15 13:34:02 +00:00
py-game recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-generate
py-gobject update to 2.28.4 2011-05-13 17:14:42 +00:00
py-gobject-shared sync w/ base pkg update 2011-05-13 17:15:13 +00:00
py-idle
py-InlineEgg
py-jersey Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-kjbuckets
py-kqueue
py-logilab-astng Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-logilab-common Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-mako Mako is a template library written in Python. It provides a familiar, non-XML 2011-02-11 08:24:02 +00:00
py-mock Import py26-mock-0.7.0b4 as devel/py-mock. 2011-01-29 14:53:14 +00:00
py-msgpack Import py-msgpack-0.1.9 as devel/py-msgpack. 2011-06-13 12:20:20 +00:00
py-multiprocessing add py-multiprocessing-2.6.2.1, a threading package which was 2010-11-02 19:20:16 +00:00
py-newt Drop PYTHON_VERSION_ACCEPTED, just "Doesn't support Python 2.3". 2011-06-14 09:51:45 +00:00
py-nose Update py-nose to 0.11.3. 2010-04-19 11:40:16 +00:00
py-Optik
py-pexpect Added LICENSE 2011-04-15 13:43:13 +00:00
py-pqueue
py-Pyro
py-pysvn recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
py-pytemplate
py-pyutil Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-quixote
py-readline Install standard python modules into usual location instead of site-packages. 2011-05-04 11:38:05 +00:00
py-rope Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-setuptools This package now needs "py-expat" under Mac OS X for Python 2.6.* because 2010-09-04 15:57:16 +00:00
py-setuptools_trial Fix pattern. [Hi gdt!] 2010-07-25 17:08:08 +00:00
py-subversion recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
py-subvertpy Update py-subvertpy to 0.8.2. 2011-07-22 14:54:45 +00:00
py-sysctl Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-testtools Import py-testtools-0.9.11 as devel/py-testtools. 2011-07-22 14:15:01 +00:00
py-unit
py-unitgui
py-urwid Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-usb
py-windbg recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-xdg Update py-xdg to 0.19. 2010-08-14 12:39:01 +00:00
py-zconfig
py-ZopeInterface update to 3.6.1 2010-06-16 14:33:54 +00:00
python-mode
qbzr Change MAINTAINER on bzr packages. 2010-12-06 13:57:27 +00:00
qconf recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
qof recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
qtscriptgenerator recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
quilt Update to version 0.48. 2010-11-22 09:32:24 +00:00
ragel Update ragel to 6.6. 2011-05-02 12:42:20 +00:00
rake Reduce patch file since newer rubygems handles gemspec better. 2011-08-12 16:01:39 +00:00
rapidsvn recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
ratfor
RBTools RBTools provides the post-review command: 2011-01-30 00:55:59 +00:00
rcs
rdp
re2c
readline Changes 6.2: 2011-02-23 11:00:17 +00:00
refinecvs Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
Renaissance
roundup Update roundup to 1.4.19. Set LICENSE. 2011-07-17 02:24:13 +00:00
rox-lib recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
rpc2 devel/rpc2: 2.7 -> 2.10 2011-03-11 20:01:47 +00:00
rscode
rsltc * convert bison dependency from BUILD_DEPENDS to USE_TOOLS. 2010-09-26 11:03:05 +00:00
rt-mysql * add destdir installation support. 2011-03-21 11:39:27 +00:00
rt-pgsql
rt3 Upstream announce message: 2011-04-16 09:41:19 +00:00
RTFM
RTx-RightsMatrix Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
RTx-Shredder Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
rubigen Switch to use RUBY_RAILS. 2011-03-28 14:08:38 +00:00
ruby-abstract * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:08:46 +00:00
ruby-activemodel Update ruby-activemodel package to 3.0.10. 2011-08-17 14:17:16 +00:00
ruby-activesupport Update ruby-activesupport package to 2.3.14. 2011-08-17 14:12:03 +00:00
ruby-activesupport3 Update ruby-activesupport3 package to 3.0.10. 2011-08-17 14:16:45 +00:00
ruby-amstd * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:10:59 +00:00
ruby-assistance * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:11:58 +00:00
ruby-bsearch * Add LICENSE. 2010-09-10 05:12:28 +00:00
ruby-byaccr
ruby-cmd * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:13:12 +00:00
ruby-curses * Remove RUBY_HAS_ARCHLIB. 2010-09-10 03:31:12 +00:00
ruby-debug Restrict dependency to ruby-debug-base package. 2011-08-12 16:25:03 +00:00
ruby-debug-base Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-debug-extra Update ruby-debug-extra package to 0.10.4. 2011-06-19 15:27:19 +00:00
ruby-debug-ide Update patch for latest rubygems. No functional change. 2011-08-12 16:26:48 +00:00
ruby-deprecated Avoid to define constant Deprecate since it is conflict with rubygems. 2011-08-12 15:56:38 +00:00
ruby-dhaka * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:32:22 +00:00
ruby-eet Pass CCDLFLAGS to C compiler to fix recent build problem. 2011-08-12 16:29:04 +00:00
ruby-eventmachine Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-extlib Current version of this package dosen't have any dependency to 2011-08-12 16:11:33 +00:00
ruby-facade Update ruby-facade package to 1.0.5. 2010-12-04 03:56:47 +00:00
ruby-ffi Update ruby-ffi package to 1.0.9. 2011-06-17 15:14:40 +00:00
ruby-flexmock Update ruby-flexmock package to 0.9.0. 2011-06-17 15:31:39 +00:00
ruby-gemcutter Update ruby-gemcutter to 0.7.0. 2011-08-12 16:30:00 +00:00
ruby-getopt Update devel/ruby-getopt package to 1.4.1. 2011-08-12 16:31:07 +00:00
ruby-gettext * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:41:27 +00:00
ruby-gettext-activerecord Switch to use RUBY_RAILS. 2011-03-27 15:51:49 +00:00
ruby-gettext-rails Switch to use RUBY_RAILS. 2011-03-27 15:51:49 +00:00
ruby-gnome2-atk Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-gnome2-gio Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-gnome2-glib Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-gnome2-pango Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-heckle Add dependency to hoe due to gemspec. 2011-08-12 16:31:45 +00:00
ruby-highline Update ruby-highline package to 1.6.2. 2011-06-17 15:34:02 +00:00
ruby-i18n Add a note to be careful for updating this package. 2011-06-10 03:46:09 +00:00
ruby-inline Update ruby-inline package to 3.9.0. 2011-06-17 15:35:49 +00:00
ruby-linecache Update ruby-linecache package to 0.46. 2011-06-19 10:36:43 +00:00
ruby-little-plugger Importing ruby-little-plugger 1.1.2. 2010-09-12 01:32:06 +00:00
ruby-locale * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:51:37 +00:00
ruby-locale-rails * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:52:09 +00:00
ruby-lockfile Importing devel/ruby-lockfile 1.4.3. 2010-09-12 01:32:55 +00:00
ruby-log4r Update ruby-log4r package to 1.1.9. 2010-12-04 04:01:06 +00:00
ruby-logging Update devel/ruby-logging to 1.4.3. 2010-09-10 13:51:45 +00:00
ruby-loquacious Importing ruby-loquacious version 1.8.1. 2011-08-12 16:04:22 +00:00
ruby-memcache Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-memoize Import ruby-memoize-1.3.1 as devel/ruby-memoize. 2011-02-25 02:34:13 +00:00
ruby-metaid Remove empty value of LICENSE. 2010-09-23 09:22:13 +00:00
ruby-mkrf * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:59:06 +00:00
ruby-mocha Update ruby-mocha package to 0.9.12. 2011-06-18 01:47:54 +00:00
ruby-mode Update ruby-mode to use bundled in Ruby 1.9.2, ruby-mode-1.9.2pl0. 2010-09-15 12:17:35 +00:00
ruby-ncurses Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-needle * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:04:02 +00:00
ruby-ole Import ruby-ole-1.2.11.1 as devel/ruby-ole. 2011-04-13 13:04:30 +00:00
ruby-parser Update ruby-parser package to 2.1.0. 2011-08-17 13:26:14 +00:00
ruby-parsetree Update ruby-parsetree package to 3.0.7. 2011-06-18 01:50:36 +00:00
ruby-pathname2 Update ruby-pathname2 package to 1.6.4. 2011-06-18 01:51:40 +00:00
ruby-pkg-config Update ruby-pkg-config to 1.1.1. 2011-05-03 09:49:03 +00:00
ruby-polyglot Update devel/ruby-polyglot pacakge to 0.3.2. 2011-08-12 16:33:05 +00:00
ruby-posix-spawn Import ruby19-posix-spawn-0.3.6 as devel/ruby-posix-spawn. 2011-08-21 04:57:36 +00:00
ruby-priority-queue Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-racc Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-railties Update ruby-railties package to 3.0.10. 2011-08-17 14:20:04 +00:00
ruby-rbtree Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-rbx-require-relative Import ruby18-rbx-require-relative pacakge version 0.0.5. 2011-06-19 10:32:17 +00:00
ruby-rcov Update devel/ruby-rcov package to 0.9.10. 2011-08-12 16:36:01 +00:00
ruby-rcsparse Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-rd-mode * Add LICENSE. 2010-09-10 06:20:13 +00:00
ruby-rdoc Update devel/ruby-rdoc package to 3.9.2. 2011-08-13 02:05:42 +00:00
ruby-readline * Remove RUBY_HAS_ARCHLIB. 2010-09-10 03:32:30 +00:00
ruby-rgl Update devel/ruby-rgl pacakge to 0.4.0. 2010-09-10 06:21:16 +00:00
ruby-rspec Update ruby-rspec package to 2.6.0. 2011-06-18 03:56:28 +00:00
ruby-rspec-core Importing ruby-rspec-core version 2.6.4, part of ruby-rspec 2.6.0. 2011-06-18 03:45:15 +00:00
ruby-rspec-expectations Importing ruby-rspec-expectations version 2.6.0, part of ruby-rspec 2.6.0. 2011-06-18 03:46:40 +00:00
ruby-rspec-mocks Importing ruby-rspec-mocks version 2.6.0, part of ruby-rspec 2.6.0. 2011-06-18 03:47:40 +00:00
ruby-rspec-rails Importing rspec-rails version 2.6.1, it is for Ruby on Rails 3. 2011-06-18 04:03:39 +00:00
ruby-rspec-rails1 Remove unneeded dependency. No PKGREVISION bump with short time slot. 2011-06-18 03:29:27 +00:00
ruby-rspec1 Small correction of dependency's pattern. 2011-06-18 03:31:07 +00:00
ruby-SDL recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ruby-setup * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:26:00 +00:00
ruby-sexp-processor Update ruby-sexp-processor package to 3.0.6. 2011-08-17 13:24:39 +00:00
ruby-simple_uuid Remove GEM_CLEANBUILD since it is pure ruby extension. 2011-08-20 15:17:27 +00:00
ruby-stream No need to patch gemspec since newer rubygems handles gracefully. 2011-08-12 16:37:05 +00:00
ruby-subexec Update devel/ruby-subexec package to 0.1.0. 2011-03-23 16:22:37 +00:00
ruby-subversion recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
ruby-templater Fix the real problem, spelling error in the category Makefile 2011-08-13 23:27:11 +00:00
ruby-termcolor Update devel/ruby-termcolor to 1.2.1. 2010-09-10 06:29:40 +00:00
ruby-test-spec Update devel/ruby-test-spec to 0.10.0. 2010-09-10 06:30:47 +00:00
ruby-test-unit Update ruby-test-unit package to 2.3.2. 2011-08-17 13:28:21 +00:00
ruby-thor Update ruby-thor package to 0.14.6. 2010-12-04 04:03:53 +00:00
ruby-thrift Update ruby-thrift pacakge to 0.6.0. 2011-06-18 02:01:06 +00:00
ruby-thrift_client Update devel/ruby-thrift_client package to 0.6.3. 2011-08-12 16:38:48 +00:00
ruby-uuidtools Update ruby-uuidtools to 2.1.2. 2011-06-17 13:38:33 +00:00
ruby-validatable * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:34:24 +00:00
ruby2ruby Refelect dependency due to gemspec. 2011-08-12 16:39:31 +00:00
rubyforge * Add CONFLICTS a pattern matches previous package name 2010-09-13 14:12:14 +00:00
rudiments
rvm devel/rvm: 1.14 -> 1.17 2011-03-11 20:04:46 +00:00
rx
sablecc
sapnwrfcsdk
scintilla recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
scmcvs Fixes build on SUA 6.0. 2011-02-12 01:58:54 +00:00
scmgit nbtar and gtar(1) produce identical trees, drop EXTRACT_USING. 2011-08-08 14:00:00 +00:00
scmgit-base Revision bump after updating perl5 to 5.14.1. 2011-08-17 02:55:21 +00:00
scmgit-docs Changes 1.7.6: 2011-07-08 11:14:43 +00:00
scons PR/43759: update scons to 1.3.1. Changes (windows-only omitted): 2011-03-12 16:04:58 +00:00
sdcc * set LICENSE=gnu-gpl-v2 2011-03-11 11:36:28 +00:00
SDL Adjust assembler constraint to work with Clang. From FreeBSD. 2011-08-02 17:02:38 +00:00
SDL-intro-en
SDL-intro-ko
SDL_gfx Update to 2.0.22: 2010-09-12 21:54:26 +00:00
SDL_Pango recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
SDL_ttf Changes 2.0.10: 2010-07-23 13:22:12 +00:00
SDLmm
semantic
semi
sfio Add user-destdir installation support. 2011-03-21 08:47:12 +00:00
sgb Use an absolute path to invoke tex. 2010-06-13 19:07:24 +00:00
sgi-stl
sgi-stl-docs
silc-toolkit Changes 1.1.10 (toolkit): 2010-08-30 11:17:16 +00:00
slib Update to 3b3 (pkgsrc 3.2.3): 2010-08-16 08:29:26 +00:00
sml-mode
snappy Initial import of snappy version 1.0.1 into the packages collection. 2011-04-05 05:34:16 +00:00
sparse
sparsehash Add LICENSE 2011-05-29 15:12:26 +00:00
spiff
spin Initial import of spin version 5.2.5 into the Packages Collection. 2010-10-24 18:54:12 +00:00
splint
st Not MAKE_JOBS_SAFE 2011-06-19 05:59:25 +00:00
stgit Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
stlport exactly set --mode and --tag for libtool. 2010-09-26 11:27:21 +00:00
stooop
subversion Update subversion pacakges to 1.6.17. 2011-06-03 13:26:49 +00:00
subversion-base recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
sunifdef Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
svk Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
swig Add a patch for Ruby's GC processing: [ruby-dev:40823]. 2010-04-12 13:57:59 +00:00
swt recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
syncdir
sysexits
tailor This is a Python egg, so s/extension/egg in Makefile, to install egg info files 2010-06-04 20:01:00 +00:00
tavrasm
tcl-tclcl
tcllib
tclreadline
teem Add upstream bug report URL. 2011-08-04 23:58:35 +00:00
tet3 LICENSE=artistic 2011-03-07 05:37:41 +00:00
tex-multido Import tex-multido-1.42 as devel/tex-multido. 2011-03-16 17:49:02 +00:00
tex-multido-doc Import tex-multido-doc-1.42 as devel/tex-multido-doc. 2011-03-16 17:49:10 +00:00
tex-pst-uml Import tex-pst-uml-0.83 as devel/tex-pst-uml. 2011-03-18 21:49:31 +00:00
tex-pst-uml-doc Import tex-pst-uml-doc-0.83 as devel/tex-pst-uml-doc. 2011-03-18 21:49:41 +00:00
tig Fix broken build. 2011-07-31 22:15:36 +00:00
tkcvs Improve DESCR based on HOMEPAGE. Prompted by Snader_LB. 2011-08-16 10:52:42 +00:00
tkdiff Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
tla Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
tmake Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
topgit
tpasm
tre recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
treecc Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
trio
tvision marked as user-destdir installation ready. 2011-03-07 05:58:35 +00:00
ucl
ucpp
unidiff
uno Not MAKE_JOBS_SAFE. 2010-07-21 10:09:46 +00:00
valgrind * LICENSE=gnu-gpl-v2 2011-03-21 08:24:38 +00:00
valide recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
vanessa_adt Changes 0.0.8: 2010-06-02 12:42:38 +00:00
vanessa_logger Changes 0.0.8: 2010-06-02 12:42:14 +00:00
vanessa_socket recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
vtcl
wide
xdelta
xdelta3 Update to 3.0z: 2010-11-23 17:20:04 +00:00
xfce4-dev-tools recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
xfconf Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
xmake service suspended. fetch from backup. 2011-03-11 11:19:55 +00:00
xorg-util-macros
xsd Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
xulrunner DragonFly build fix. From Rumko in private mail. 2011-08-21 23:21:33 +00:00
xulrunner192 Fix build of legacy mozilla packages and rename the PKGBASE 2011-08-20 13:05:49 +00:00
xxgdb
yasm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
z80-asm
ZenTest Update devel/ZenTest package to 4.6.1. 2011-08-13 02:06:29 +00:00
zlib On at least OS X 10.4 the builtin zlib does not provide all the symbols 2010-12-14 19:51:45 +00:00
zzuf Updte zzuf to 0.12. 2010-12-25 11:00:51 +00:00
Makefile +p5-Eval-Closure 2011-08-23 08:50:43 +00:00