Next | Query returned 64 messages, browsing 31 to 40 | Previous

History of commit frequency

CVS Commit History:


   2015-04-24 17:58:27 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Update to 1.42
--------------
1.42 -- 2015/04/23 01:25:55
        [CHANGES]
         * Added List::Util::unpairs() - the inverse of pairs()
         * Documentation to pre-warn users about the possible behaviour in a
           later version where the pair* higher-order functionals are no longer
           transparent to $_

        [BUGFIXES]
         * Silence some warnings at test time
         * Ensure that the List::Util we're loading the XS via is a sufficient
           version when Scalar::Util or Sub::Util load it (RT100863)
   2015-01-04 13:26:36 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 1.41:

1.41 -- 2014/09/05 15:49:50
	[BUGFIXES]
	 * Avoid pre-C99 declaration after statements (RT98624)
	 * Fix use of GetMagic in List::Util::reduce (RT63211)

1.40 -- 2014/08/30 11:36:36
	[CHANGES]
	 * Added entire new module, Sub::Util to contain functions related
	   to CODE refs
	 * Added subname inspired by Sub::Identify
	 * Added set_subname copied and renamed from Sub::Name
	 * Also moved set_prototype into Sub::Name, with back-compat wrapper
	   in Scalar::Util
	 * Added prototype wrapper of CODE::prototype, for completeness
	 * Nicer module documentation format, allows neater use of L</...>

	[THANKS]
	 * This change was written at the YAPC::EU 2014 Hackathon hosted by
	   Liz Mattijsen and Wendy van Dijk; much thanks to them for being its
	   catalyst.

1.39 -- 2014/06/05 15:54:59
	[CHANGES]
	 * Have pairs() return blessed objects that recognise ->key and
	   ->value as well as being two-element ARRAYs
	 * Booleanise the result of looks_like_number() so as not to
	   accidentally leak abstraction (RT94806)
	 * Document the version each function was added in (RT96220)

	[BUGFIXES]
	 * Try to preserve UV precision in sum() where possible (RT95902)
	 * Document known lexical capture in pairmap bug RT95409
	 * SvGETMAGIC() in set_prototype() (RT72080)
   2014-10-09 15:45:06 by Thomas Klausner | Files touched by this commit (456)
Log message:
Remove SVR4_PKGNAME, per discussion on tech-pkg.
   2014-05-30 01:38:20 by Thomas Klausner | Files touched by this commit (3049)
Log message:
Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
   2014-02-16 21:58:12 by Jens Rehsack | Files touched by this commit (1)
Log message:
Adjust path of .packlist file
   2014-02-16 20:30:35 by Jens Rehsack | Files touched by this commit (3) | Package updated
Log message:
Updating package for Perl5 modules Scalar::Util and List::Util from CPAN
in devel/p5-Scalar-List-Utils from 1.35 to 1.38.

Upstream changes:
1.38 -- 2014/01/22 15:33:24
        [BUGFIXES]
         * Avoid Perl_ckwarn() in unweaken() because it's missing on older
           perls; ckWARN() like the rest of the code (RT92363)

1.37 -- 2014/01/21 14:44:34
        [BUGFIXES]
         * Fix unweaken() for perls < 5.14; need to use sv_setsv() to undef
           rather than sv_clear() (RT92226)

1.36 -- 2014/01/16 15:40:47
        [CHANGES]
         * Added Scalar::Util::unweaken()
         * Various documentation changes/updates
        [BUGFIXES]
         * Correct uses of overload operators in unit tests (RT91969)
   2013-10-21 20:03:42 by Jens Rehsack | Files touched by this commit (2)
Log message:
Updating package for CPAN distribution for Scalar-List-Utils in
devel/p5-Scalar-List-Utils from 1.31 to 1.35.

pkgsrc changes:
- updating URI's & co
- removing pkgviews stuff (removed from generator)

Upstream changes:
1.35 -- Sat Oct 19 01:35 UTC 2013
  * Added List::Util::product()
  * Ensure that List::Util::{any,all,none,notall} return PL_sv_{yes,no}
  * Implement reduce() and first() even in the absence of MULTICALL

1.34 -- Wed Oct 16 13:04 UTC 2013
  * Avoid C99/C++-style comments in XS code
  * Fix dualvar tests for perl 5.6; fix skip() test counts in dualvar.t
  * Neater documentation examples of other functions that can be built using
    reduce

1.33 -- Sun Oct 13 01:35 UTC 2013
  * Added any, all, none, notall list reduction functions
    (inspired by List::MoreUtils)

1.32 -- Sun Aug 31 23:48 UTC 2013
  * Skip pairmap()'s MULTICALL implementation 5.8.9 / 5.10.0 as it doesn't
    work (RT87857)
  * Comment on the fact that package "0" is defined but false (RT88201)
  * TODO test in t/readonly.t now passes since 5.19.3 (RT88223)
   2013-08-15 04:43:24 by Wen Heping | Files touched by this commit (2) | Package updated
Log message:
Update to 1.31

Upstream changes:
1.31 -- Wed Aug 14 20:38 UTC 2013

  * Bugfix pairmap to return list length in scalar context
  * Added "Odd number of elements" warnings to all pair* functions

1.30 -- Mon Aug 05 13:09 UTC 2013

  * Added pairfirst
  * Added MULTICALL implementations to pairmap/pairgrep/pairfirst
  * Fix declaration-after-code for C99-challenged compilers
  * Documentation updates to List::Util

1.29 -- Thu Aug 01 13:40 UTC 2013

  * Bugfix to pairmap/pairgrep when stack moves beneath them during operation

1.28 -- Thu Aug 01 12:19 UTC 2013
  -- BROKEN; do not use. See 1.29

  * Added pairgrep, pairmap, pairs (inspired by List::Pairwise)
  * Added pairkeys and pairvalues

1.26_001 -- Sun Dec 23 15:58

  * Fix multicall refcount bug RT#80646

1.26 -- Sun Dec 16 19:39

  * Merge patch from JDHEDDEN - Add Scalar::Util::isdual() RT#76150

1.25_01 -- Wed Nov 21 09:47

  * Fix a hash order dependency bug t/tainted.t
    (Currently this is a core only version to fix perl5 smokes)
   2013-05-31 14:42:58 by Thomas Klausner | Files touched by this commit (2880)
Log message:
Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
   2012-10-31 12:19:55 by Aleksej Saushev | Files touched by this commit (1460)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Next | Query returned 64 messages, browsing 31 to 40 | Previous