Up to [cvs.NetBSD.org] / pkgsrc / devel / p5-Scalar-List-Utils
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.56 / (download) - annotate - [select for diffs], Thu Jul 6 09:39:59 2023 UTC (2 months, 3 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
HEAD
Changes since 1.55: +2 -1
lines
Diff to previous 1.55 (colored)
*: recursive bump for perl 5.38
Revision 1.55 / (download) - annotate - [select for diffs], Sat May 20 07:00:38 2023 UTC (4 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base,
pkgsrc-2023Q2
Changes since 1.54: +2 -3
lines
Diff to previous 1.54 (colored)
p5-Scalar-List-Utils: update to 1.63. 1.63 -- 2022-08-08 [BUGFIXES] * Fix off-by-one in stack handling of head() / tail() (RT143905) * Fix documentation copy-paste error about builtin::reftype * Ensure exotic_names.t will work on EBCDIC platforms * Add basic Github CI workflow 1.62 -- 2022-03-17 [CHANGES] * Prepare for perl 5.35.10 release: + Skip the tainted tests if your perl was built without taint support + Document the existence of the `builtin::` equivalents for several Scalar::Util functions 1.61 -- 2022-02-16 [BUGFIXES] * Fix some more signed comparison warnings (Perl5 #19429)
Revision 1.54 / (download) - annotate - [select for diffs], Tue Jun 28 11:33:11 2022 UTC (15 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3
Changes since 1.53: +2 -1
lines
Diff to previous 1.53 (colored)
*: recursive bump for perl 5.36
Revision 1.53 / (download) - annotate - [select for diffs], Sun Oct 24 08:30:50 2021 UTC (23 months ago) by wen
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Changes since 1.52: +2 -3
lines
Diff to previous 1.52 (colored)
Update to 1.60 Upstream changes: 1.60 -- 2021-10-08 [BUGFIXES] * Quiet some -Wsign-compare warnings by using `int` instead of `UV` (RT136985) * Quiet a -Wmaybe-uninitialized warning by ensuring a variable is always initialised, because the compiler can't always determine this is safe (RT139356) * Avoid SIGFPE in product(-1, ...) (RT139601) 1.59 -- 2021-09-12 [CHANGES] * Removed Scalar::Util::isbool() as the API design for older perls isn't quite clear, and it doesn't do anything useful on any currently-released perl version * Tidy up the unnecessary bits of @EXPORT_FAIL * Use the new G_LIST constant rather than G_ARRAY 1.58 -- 2021-09-12 (bad release because I forgot to `git push`) 1.57 -- 2021-09-11 [CHANGES] * Added Scalar::Util::isbool() to track new core-supported boolean value nature on scalars * Fix various typoes in docs, code comments, etc... * Removed code conditional on whether SvWEAKREF is supported, as every perl since v5.6 supports it [BUGFIXES] * Fix segfaults when an undefined subroutine is passed to block-taking subs (thanks ilmari) * Correct refcount handling on hv_store_ent to PL_DBsub in set_subname() (thanks nwc10) * Don't rely on Scalar::Util functions when unit-testing List::Util ones (thanks haarg)
Revision 1.52 / (download) - annotate - [select for diffs], Mon May 24 19:51:30 2021 UTC (2 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2
Changes since 1.51: +2 -1
lines
Diff to previous 1.51 (colored)
*: recursive bump for perl 5.34
Revision 1.51 / (download) - annotate - [select for diffs], Thu Apr 1 07:06:30 2021 UTC (2 years, 5 months ago) by wen
Branch: MAIN
Changes since 1.50: +2 -3
lines
Diff to previous 1.50 (colored)
Update to 1.56 Upstream changes: 1.56 -- 2021-03-30 [CHANGES] * Added `List::Util::zip`, `List::Util::mesh` and related functions (RT129479) * Updated embedded ppport.h for Devel::PPPort v3.62
Revision 1.50 / (download) - annotate - [select for diffs], Mon Aug 31 18:08:49 2020 UTC (3 years ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3
Changes since 1.49: +2 -1
lines
Diff to previous 1.49 (colored)
*: bump PKGREVISION for perl-5.32.
Revision 1.49 / (download) - annotate - [select for diffs], Sat Apr 18 13:54:33 2020 UTC (3 years, 5 months ago) by mef
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base,
pkgsrc-2020Q2
Changes since 1.48: +2 -2
lines
Diff to previous 1.48 (colored)
(devel/p5-Scalar-List-Utils) Updated to 1.55 1.55 -- 2020-04-09 [CHANGES] * Added List::Util::uniqint * Improvements to List::Util::uniqnum handling of floating-point values on odd platform configurations (thanks sisyphus) * Improvements to $RAND-based unit tests
Revision 1.48 / (download) - annotate - [select for diffs], Sun Mar 22 21:21:45 2020 UTC (3 years, 6 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base,
pkgsrc-2020Q1
Changes since 1.47: +2 -2
lines
Diff to previous 1.47 (colored)
p5-Scalar-List-Utils: Update to 1.54 1.54 -- 2020-02-02 15:47 [CHANGES] * Added List::Util::reductions (RT128237) * Added List::Util::sample (RT131535) * Recognise $List::Util::RAND as a source of randomness for sampling functions (RT131536) [BUGFIXES] * Document the difference between ref() and reftype() on precompiled qr// regexps (RT127963) * Various improvements to List::Util::uniqnum() to handle stringified Inf and NaN, negative zero * Detect platform NV size and number of digits required to calculate uniqueness
Revision 1.47 / (download) - annotate - [select for diffs], Sun Oct 27 14:22:59 2019 UTC (3 years, 11 months ago) by mef
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base,
pkgsrc-2019Q4
Changes since 1.46: +2 -2
lines
Diff to previous 1.46 (colored)
(devel/p5-Scalar-List-Utils) Updated 1.52 to 1.53 1.53 -- 2019-10-24 10:41:12 [BUGFIXES] * Handle Unicode package names in Scalar::Util::blessed (GH #81)
Revision 1.46 / (download) - annotate - [select for diffs], Fri Aug 23 11:55:39 2019 UTC (4 years, 1 month ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q3-base,
pkgsrc-2019Q3
Changes since 1.45: +2 -2
lines
Diff to previous 1.45 (colored)
p5-Scalar-List-Utils: updated to 1.52 1.52: [BUGFIXES] * Fix uniqnum() on large stringified integers on long- and quad-double perls
Revision 1.45 / (download) - annotate - [select for diffs], Sun Aug 11 10:15:45 2019 UTC (4 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.44: +2 -3
lines
Diff to previous 1.44 (colored)
p5-Scalar-List-Utils: updated to 1.51 1.51: [CHANGES] * Add TO_JSON to List::Util::_Pair * Various minor docs fixes [BUGFIXES] * Don't segfault in subname() on deleted stashes * Fix uniqnum for large floats and numeric strings
Revision 1.44 / (download) - annotate - [select for diffs], Wed Aug 22 09:44:36 2018 UTC (5 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3
Changes since 1.43: +2 -1
lines
Diff to previous 1.43 (colored)
Recursive bump for perl5-5.28.0
Revision 1.43 / (download) - annotate - [select for diffs], Sun Feb 25 17:31:14 2018 UTC (5 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1
Changes since 1.42: +2 -2
lines
Diff to previous 1.42 (colored)
p5-Scalar-List-Utils: update to 1.50. 1.50 -- 2018-02-20 19:13:27 [CHANGES] * Added head() and tail() functions (thanks preaction) * Support binary and Unicode in symbol names for set_subname() [BUGFIXES] * Fix building with C++ and C89 compilers * Fix uniq() test for old Test::More * Fix example get_code_info for unnamed subs (RT#116962) * Fixes for symbol names containing ' characters * Don't leak SVs from sum0/product1 when called with zero args (RT#124017) * Use sv_rvunweaken() in Scalar::Util::unweaken() (thanks ilmari) * Misc. fixes for perl 5.6
Revision 1.42 / (download) - annotate - [select for diffs], Sun Sep 10 21:36:54 2017 UTC (6 years ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base,
pkgsrc-2017Q4,
pkgsrc-2017Q3-base,
pkgsrc-2017Q3
Changes since 1.41: +2 -2
lines
Diff to previous 1.41 (colored)
Updated p5-Scalar-List-Utils to 1.49. 1.49 -- 2017-09-08 12:25:54 [CHANGES] * Fixes for unit tests to pass on perl 5.6.2 * Fix typo in documentation
Revision 1.41 / (download) - annotate - [select for diffs], Sun Jun 25 07:10:19 2017 UTC (6 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base,
pkgsrc-2017Q2
Changes since 1.40: +2 -3
lines
Diff to previous 1.40 (colored)
Updated p5-Scalar-List-Utils to 1.48. 1.48 -- 2017/06/23 17:29:42 [CHANGES] * Note in documentation that outer function's @_ can be accessed in some blocks, but ought not be (thanks wchristian) [BUGFIXES] * Ensure pairmap extends its stack correctly (thanks davem) * Fix name of List::Util::unpairs in its error messages
Revision 1.40 / (download) - annotate - [select for diffs], Mon Jun 5 14:23:34 2017 UTC (6 years, 3 months ago) by ryoon
Branch: MAIN
Changes since 1.39: +2 -1
lines
Diff to previous 1.39 (colored)
Recursive revbump from lang/perl5 5.26.0
Revision 1.39 / (download) - annotate - [select for diffs], Fri Dec 30 00:51:29 2016 UTC (6 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base,
pkgsrc-2017Q1
Changes since 1.38: +2 -2
lines
Diff to previous 1.38 (colored)
Updated p5-Scalar-List-Utils to 1.47. 1.47 -- 2016/12/22 18:54:45 [CHANGES] * Make XS code ppport.h-free when in core [BUGFIXES] * Fix compliling on C++11 * Perform taint checks using $^X instead of some %ENV key because of the Test::Simple vars (RT119169)
Revision 1.38 / (download) - annotate - [select for diffs], Mon Oct 3 12:38:44 2016 UTC (6 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q4-base,
pkgsrc-2016Q4
Changes since 1.37: +2 -3
lines
Diff to previous 1.37 (colored)
Updated p5-Scalar-List-Utils to 1.46. 1.46 -- 2016/09/28 23:17:07 [CHANGES] * Remember to add unpairs and uniq to SYNOPSIS * Document the behaviour of uniqnum() on NaN [BUGFIXES] * C89 fixes * Various internal bugfixes backported from perl core
Revision 1.37 / (download) - annotate - [select for diffs], Sat Sep 17 15:28:54 2016 UTC (7 years ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2016Q3-base,
pkgsrc-2016Q3
Changes since 1.36: +2 -2
lines
Diff to previous 1.36 (colored)
Requires C99.
Revision 1.36 / (download) - annotate - [select for diffs], Wed Jun 8 19:23:29 2016 UTC (7 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q2-base,
pkgsrc-2016Q2
Changes since 1.35: +2 -1
lines
Diff to previous 1.35 (colored)
Bump PKGREVISION for perl-5.24.
Revision 1.35 / (download) - annotate - [select for diffs], Fri Apr 8 15:12:10 2016 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.34: +2 -2
lines
Diff to previous 1.34 (colored)
Updated p5-Scalar-List-Utils to 1.45 1.45 -- 2016/03/25 16:09:40 [CHANGES] * Renamed existing uniq() to uniqstr() * Canonicalise undef to {empty string,zero} in uniq{str,num}() * Add a new uniq() with more DWIMish semantics around undef [BUGFIXES] * Fix uses of GET magic by the uniq*() family of functions. GET magic is now always invoked exactly once if it exists. 1.44 -- 2016/03/17 23:08:46 [CHANGES] * Added List::Util::uniq() and uniqnum() (with thanks to randir and ilmari for assistance writing code and tests)
Revision 1.34 / (download) - annotate - [select for diffs], Wed Feb 10 07:33:27 2016 UTC (7 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base,
pkgsrc-2016Q1
Changes since 1.33: +2 -3
lines
Diff to previous 1.33 (colored)
Update p5-Scalar-List-Utils to 1.43: 1.43 -- 2016/02/08 15:05:23 [CHANGES] * Updated documentation * Added MIN_PERL_VERSION to Makefile.PL * Added "use warnings" to all tests * Added MANIEST.SKIP patterns for common editor backup/swapfiles * Test product(0,0) (RT105415) [BUGFIXES] * Fix build on non-C99 compilers * Avoid divide-by-zero exception if product()'s accumulator is IV zero (RT105415) * Possible fix for SvTEMP issues in first and any/all/none/notall (RT96343)
Revision 1.33 / (download) - annotate - [select for diffs], Fri Jun 12 10:49:42 2015 UTC (8 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base,
pkgsrc-2015Q4,
pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2
Changes since 1.32: +2 -1
lines
Diff to previous 1.32 (colored)
Recursive PKGREVISION bump for all packages mentioning 'perl', having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
Revision 1.32 / (download) - annotate - [select for diffs], Fri Apr 24 15:58:27 2015 UTC (8 years, 5 months ago) by mef
Branch: MAIN
Changes since 1.31: +3 -3
lines
Diff to previous 1.31 (colored)
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)
Revision 1.31 / (download) - annotate - [select for diffs], Sun Jan 4 12:26:36 2015 UTC (8 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base,
pkgsrc-2015Q1
Changes since 1.30: +2 -4
lines
Diff to previous 1.30 (colored)
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)
Revision 1.30 / (download) - annotate - [select for diffs], Thu Oct 9 13:44:44 2014 UTC (8 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base,
pkgsrc-2014Q4
Changes since 1.29: +1 -2
lines
Diff to previous 1.29 (colored)
Remove SVR4_PKGNAME, per discussion on tech-pkg.
Revision 1.29 / (download) - annotate - [select for diffs], Thu May 29 23:36:16 2014 UTC (9 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base,
pkgsrc-2014Q3,
pkgsrc-2014Q2-base,
pkgsrc-2014Q2
Changes since 1.28: +2 -1
lines
Diff to previous 1.28 (colored)
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.
Revision 1.28 / (download) - annotate - [select for diffs], Sun Feb 16 20:58:12 2014 UTC (9 years, 7 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base,
pkgsrc-2014Q1
Changes since 1.27: +2 -2
lines
Diff to previous 1.27 (colored)
Adjust path of .packlist file
Revision 1.27 / (download) - annotate - [select for diffs], Sun Feb 16 19:30:35 2014 UTC (9 years, 7 months ago) by sno
Branch: MAIN
Changes since 1.26: +4 -3
lines
Diff to previous 1.26 (colored)
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)
Revision 1.26 / (download) - annotate - [select for diffs], Mon Oct 21 18:03:42 2013 UTC (9 years, 11 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base,
pkgsrc-2013Q4
Changes since 1.25: +10 -12
lines
Diff to previous 1.25 (colored)
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)
Revision 1.25 / (download) - annotate - [select for diffs], Thu Aug 15 02:43:24 2013 UTC (10 years, 1 month ago) by wen
Branch: MAIN
CVS Tags: pkgsrc-2013Q3-base,
pkgsrc-2013Q3
Changes since 1.24: +2 -3
lines
Diff to previous 1.24 (colored)
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)
Revision 1.24 / (download) - annotate - [select for diffs], Fri May 31 12:40:42 2013 UTC (10 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q2-base,
pkgsrc-2013Q2
Changes since 1.23: +2 -2
lines
Diff to previous 1.23 (colored)
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.
Revision 1.23 / (download) - annotate - [select for diffs], Wed Oct 31 11:18:55 2012 UTC (10 years, 10 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base,
pkgsrc-2013Q1,
pkgsrc-2012Q4-base,
pkgsrc-2012Q4
Changes since 1.22: +1 -2
lines
Diff to previous 1.22 (colored)
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Revision 1.22 / (download) - annotate - [select for diffs], Wed Oct 3 21:55:34 2012 UTC (10 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.21: +2 -1
lines
Diff to previous 1.21 (colored)
Bump all packages that use perl, or depend on a p5-* package, or are called p5-*. I hope that's all of them.
Revision 1.21 / (download) - annotate - [select for diffs], Mon Sep 10 14:25:44 2012 UTC (11 years ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base,
pkgsrc-2012Q3
Changes since 1.20: +2 -3
lines
Diff to previous 1.20 (colored)
Updating package for CPAN modules Scalar::Util and List::Util in devel/p5-Scalar-List-Utils from 1.23nb2 to 1.25. upstream changes since 1.23 (remind that n.mm_oo are developer releases): 1.25 -- Sat Mar 24 13:10:13 UTC 2012 * Restore back-compat. to perl 5.6 (thanks to Zefram) 1.24 -- Thu Mar 22 18:10:10 UTC 2012 * Update to 1.24 release version (no other changes since 1.23_04). 1.23_04 -- Sat Mar 10 00:16:16 UTC 2012 * RT#72700 Fix off-by-two on string literal length 1.23_03 -- Tue Sep 14 10:09:59 CDT 2010 * Min perl version supported for build is not 5.008 * Dropped the pure-Perl implementation of both Scalar::- and List::Util. * RT#61118 Fix assumption in sum() that once magic, always magic 1.23_02 -- Tue Mar 30 11:09:15 CDT 2010 * Fix first() and reduce() to check the callback first; &first(1) is now illigal. [gfx] * Fix reduce() to allow XSUB callbacks [gfx] * Fix first() to allow XSUB callbacks [gfx] * Resolve RT #55763: tainted() doesn't do SvGETMAGIC(sv) [gfx] * define CvISXSUB so older perl versions will still compile 1.23_01 -- Mon Mar 22 08:24:11 CDT 2010 * Add failing tests; SVt_RV is not directly SvROK [gfx] * Implement openhandle() in XS (with extra tests) [gfx] * Modernize *.pm [gfx] * Modernize ListUtil.xs [gfx] * Add ppport.h [gfx] * Fix an overloading issue on sum(), and add tests for overloading [gfx] * Small tweaks for minstr()/maxstr() [gfx] * Optimize dualvar() [gfx] * Use sv_copypv() instead of SvPV() and sv_setpv() [gfx] * avoid non-portable warnings
Revision 1.20 / (download) - annotate - [select for diffs], Sun Aug 14 12:26:34 2011 UTC (12 years, 1 month ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base,
pkgsrc-2012Q2,
pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3
Changes since 1.19: +2 -2
lines
Diff to previous 1.19 (colored)
Revision bump after updating perl5 to 5.14.1.
Revision 1.19 / (download) - annotate - [select for diffs], Sat Aug 21 16:34:23 2010 UTC (13 years, 1 month ago) by seb
Branch: MAIN
CVS Tags: pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3
Changes since 1.18: +2 -1
lines
Diff to previous 1.18 (colored)
Bump the PKGREVISION for all packages which depend directly on perl, to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
Revision 1.18 / (download) - annotate - [select for diffs], Mon Mar 15 16:18:26 2010 UTC (13 years, 6 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1
Changes since 1.17: +2 -2
lines
Diff to previous 1.17 (colored)
Updating devel/p5-Scalar-List-Utils from 1.22 to 1.23 Upstream changes: 1.23 -- Wed Mar 10 20:50:00 CST 2010 * Add a test file to ensure 'GETMAGIC' called once [gfx] * "GETMAGIC" should be called only once [gfx] * Use PERL_NO_GET_CONTEXT for efficiency (see perlguts) [gfx] * Don't care about dVAR. ExtUtils::ParseXS deals with it. [gfx] * t/p_max.t, t/p_min.t fail on perl5.8.1. [tokuhirom] * avoid non-portable warnings * Fix PP::reftype in edge cases [gfx]
Revision 1.17 / (download) - annotate - [select for diffs], Sat Nov 21 15:33:04 2009 UTC (13 years, 10 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base,
pkgsrc-2009Q4
Changes since 1.16: +3 -3
lines
Diff to previous 1.16 (colored)
Updating devel/p5-Scalar-List-Utils from 1.21 to 1.22 pkgsrc changes: - Adjusting license definition Upstream changes: 1.22 -- Sat Nov 14 09:26:15 CST 2009 * silence a compiler warning about an unreferenced local variable [Steve Hay] * RT#51484 Preserve utf8 flag of string passed to dualvar() * RT#51454 Check first argument to first/reduce is a code reference * RT#50528 [PATCH] p_tainted.t fix for VMS [Craig A. Berry] * RT#48550 fix pure perl looks_like_number not to match non-ascii digits
Revision 1.16 / (download) - annotate - [select for diffs], Wed May 20 07:52:00 2009 UTC (14 years, 4 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2
Changes since 1.15: +2 -2
lines
Diff to previous 1.15 (colored)
pkgsrc changes: - Updating package for p5 modules {Scalar,List}::Util from 1.20 to 1.21 Upstream changes: 1.21 -- Mon May 18 10:32:14 CDT 2009 * Change build system for perl-only install not to need to modify blib * When building inside perl, tests for weaken should be always run (Alexandr Ciornii)
Revision 1.15 / (download) - annotate - [select for diffs], Sun May 17 14:08:10 2009 UTC (14 years, 4 months ago) by sno
Branch: MAIN
Changes since 1.14: +3 -3
lines
Diff to previous 1.14 (colored)
PkgSrc changes: - Updating package for perl modules List::Util and Scalar::Util to 1.20 from 1.19 (which is in perl core, too) - Setting license to gnu-gpl-v2 Upstream changes: 1.20 -- Wed May 13 16:42:53 CDT 2009 *** NOTE*** This distribution now requires perl 5.6 or greater Bug Fixes * Fixed stack pop issue in POP_MULTICALL * Fixed error reporting in import when XS not compiled * Check first argument to reduce is a CODE reference to avoid segfault * Handle overloaded and tied values * Fix tainted test to run on Win32 Enhancements * Added List::Util::XS so authors can depend on XS version * Removed need for dummy methods in UNIVERSAL for perl-only code
Revision 1.14 / (download) - annotate - [select for diffs], Sun Oct 19 19:17:59 2008 UTC (14 years, 11 months ago) by he
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4
Changes since 1.13: +2 -1
lines
Diff to previous 1.13 (colored)
Bump the PKGREVISION for all packages which depend directly on perl, to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
Revision 1.13 / (download) - annotate - [select for diffs], Sun Apr 6 15:32:11 2008 UTC (15 years, 5 months ago) by heinz
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.12: +3 -1
lines
Diff to previous 1.12 (colored)
The package supports installation to DESTDIR. A C compiler is required.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Feb 18 02:04:56 2007 UTC (16 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3,
pkgsrc-2007Q2-base,
pkgsrc-2007Q2,
pkgsrc-2007Q1-base,
pkgsrc-2007Q1
Changes since 1.11: +2 -2
lines
Diff to previous 1.11 (colored)
Update to 1.19: 1.19 -- Sun Dec 10 09:58:03 CST 2006 Bug Fixes * Fix invalid conversion from `const char*' to `char*' warnings * Avoid Makefile error when building on Win32 * Fix undefined symbol error for perl < 5.9.0 * Fix hardcoded "/" in a filepath that causes p_tainted.t to fail on VMS Documentation * Document that reduce calls BLOCK in a scalar context * Add SEE ALSO sections to docs Enhancements * A new regression test for readonly, taking a reference to a constant passed to a sub
Revision 1.11 / (download) - annotate - [select for diffs], Sat Mar 4 21:29:24 2006 UTC (17 years, 6 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2,
pkgsrc-2006Q1-base,
pkgsrc-2006Q1
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
Revision 1.10 / (download) - annotate - [select for diffs], Tue Jan 3 17:33:46 2006 UTC (17 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
Update to 1.18: 1.18 -- Fri Nov 25 09:30:29 CST 2005 Bug Fixes * Fix pure-perl version of refaddr to avoid blessing an un-blessed reference * Fix memory leak in first() and reduce() * Pure perl version of looks_like_number now matches XS version for references and undef. It will now return undef Enhancements * Support for using XSLoader instead of DynaLoader * Use new multicall API
Revision 1.9 / (download) - annotate - [select for diffs], Wed Nov 23 22:12:15 2005 UTC (17 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base,
pkgsrc-2005Q4
Changes since 1.8: +2 -3
lines
Diff to previous 1.8 (colored)
Update to 1.17: 1.17 -- Mon May 23 08:55:26 CDT 2005 Bug Fixes * Update XS code to declare PERL_UNUSED_DECL conditionally 1.16 -- Fri May 20 10:22:49 CDT 2005 Bug Fixes * Change to refaddr.t test to avoid false errors on some 64 bit platforms * Fix all perl only tests to work when in the core build environment * Fix looks like number test to work for 5.8.5 and above 1.15 -- Fri May 13 11:01:15 CDT 2005 Bug Fixes * Fixed memory leak in first() Enhancements * Converted tests to use Test::More * Improved test coverage * Changed Makefile.PL to use Module::Install * Refactor use of Sv..X() macros to be Sv.._set() * Changes from Jarkko for Symbian port of Perl * Documentation updates to weaken()
Revision 1.8 / (download) - annotate - [select for diffs], Sat Aug 6 06:19:13 2005 UTC (18 years, 1 month ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base,
pkgsrc-2005Q3
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (colored)
Bump the PKGREVISIONs of all (638) packages that hardcode the locations of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
Revision 1.7 / (download) - annotate - [select for diffs], Wed Jul 13 18:01:28 2005 UTC (18 years, 2 months ago) by jlam
Branch: MAIN
Changes since 1.6: +2 -2
lines
Diff to previous 1.6 (colored)
Turn PERL5_PACKLIST into a relative path instead of an absolute path. These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
Revision 1.6 / (download) - annotate - [select for diffs], Mon Apr 11 21:45:34 2005 UTC (18 years, 5 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.5: +1 -2
lines
Diff to previous 1.5 (colored)
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
Revision 1.5 / (download) - annotate - [select for diffs], Wed Feb 23 16:34:00 2005 UTC (18 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (colored)
Update HOMEPAGE.
Revision 1.4 / (download) - annotate - [select for diffs], Sat Dec 25 03:14:15 2004 UTC (18 years, 9 months ago) by jlam
Branch: MAIN
Changes since 1.3: +2 -3
lines
Diff to previous 1.3 (colored)
Update devel/p5-Scalar-List-Utils to 1.14. Changes from version 1.13 are minor bug fixes.
Revision 1.3 / (download) - annotate - [select for diffs], Mon Dec 20 11:31:02 2004 UTC (18 years, 9 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base,
pkgsrc-2004Q4
Changes since 1.2: +2 -1
lines
Diff to previous 1.2 (colored)
since perl is now built with threads on most platforms, the perl archlib module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
Revision 1.2 / (download) - annotate - [select for diffs], Mon Feb 16 21:33:03 2004 UTC (19 years, 7 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base,
pkgsrc-2004Q3,
pkgsrc-2004Q2-base,
pkgsrc-2004Q2,
pkgsrc-2004Q1-base,
pkgsrc-2004Q1
Changes since 1.1: +14 -11
lines
Diff to previous 1.1 (colored)
Newly imported misc/p5-Scalar-List-Utils is just an update of devel/p5-Scalar-List-Utils. Merge them. p5-Scalar-List-Utils shouldn't have been imported into pkgsrc-wip in the first place. Pointed out by Adrian Portelli.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Aug 30 19:01:32 2003 UTC (20 years, 1 month ago) by he
Branch: TNF
CVS Tags: pkgsrc-base,
pkgsrc-2003Q4-base,
pkgsrc-2003Q4
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Import p5-Scalar-List-Utils version 1.12. This distribution is a replacement for the builtin distribution. This package contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the use of a keyword, and the size so small such that being individual extensions would be wasteful.
Revision 1.1 / (download) - annotate - [select for diffs], Sat Aug 30 19:01:32 2003 UTC (20 years, 1 month ago) by he
Branch: MAIN
Initial revision