Commit graph

7 commits

Author SHA1 Message Date
asau
e1ab7079b6 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
hiramatsu
da33f9a8ad Update p5-boolean to 0.28.
Changes from previous:
----------------------
version: 0.28
date:    Mon Sep 12 13:51:47 CEST 2011
changes:
- Added -truth option.
- This idea was inspired by https://rt.cpan.org/Ticket/Display.html?id=65536
- Awesome idea!
- Released from Liz++&Wendy++ downstairs bathroom
2011-12-09 02:08:33 +00:00
adam
00b16a23a3 Changes 0.27:
* Switch to Module::Package at YAPC 2011 ++

Changes 0.26:
* Fixed doc bug reported by KENTNL++
* Tweaked Makefile.PL

Changes 0.25:
* Fixed a bug caused by Readonly::XS (schwern++)
* Removed the new methods and autobox methods.
  They didn't add much except confusion.
* Documented that you can use isTrue and isFalse as methods.
* '&boolean(1,2,3) now dies like boolean(1,2,3)'
* '&boolean() now dies like boolean()'

Changes 0.24:
* '@Schwern++ found out how to make true and false immutable.
  Kudos to #strategicdata++.'
* Document the boolean() function.
* Added is_true and is_false methods.
* Added boolean, is_true, and is_false autobox methods
2011-08-09 09:14:11 +00:00
sno
8e9fd8d93e Updating devel/p5-boolean from 0.20nb1 to 0.23
Upstream changes:
---
version: 0.23
date:    Thu Sep 16 19:27:54 PDT 2010
changes:
- Weird macosx dist bug broke everything. Worked around.
---
version: 0.22
date:    Wed Sep 15 00:21:20 PDT 2010
changes:
- Update copyright years.
---
version: 0.21
date:    Mon Sep 13 18:40:21 PDT 2010
changes:
- Add a boolean($) coercer export function
- Add many more tests (from 20 to 55 tests)
- Add prototypes to all exports functions
- Overload not and ! to return boolean
2010-09-17 05:48:13 +00:00
seb
c3f1e700ad 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!
2010-08-21 16:32:42 +00:00
abs
d99267d354 Added devel/p5-boolean version 0.20
Most programming languages have a native Boolean data type. Perl
does not.

Perl has a simple and well known Truth System. The following scalar
values are false:

    $false1 = undef;
    $false2 = 0;
    $false3 = 0.0;
    $false4 = '';
    $false5 = '0';

Every other scalar value is true.

This module provides basic Boolean support, by defining two special
objects: true and false.
2009-02-13 23:40:27 +00:00