summaryrefslogtreecommitdiff
path: root/textproc/p5-Text-Unidecode
AgeCommit message (Collapse)AuthorFilesLines
2015-08-28Update to 1.24mef2-7/+6
-------------- 2015-08-28 Sean M. Burke sburke@cpan.org * RELEASE 1.24. Fixing a little (BIG) bug that David Cusimano is a superstar for having noticed. Ah, what a difference a ";" vs a "," makes! [https://rt.cpan.org/Public/Bug/Display.html?id=105420] * I'M BACK. After nine months of semi-catastrophic system failures, and after Voyager-style flybys of a dozen project deadlines... and now I can somehow try to get back in the swing of things. * ANOTHER superstar is Mistah Brendan Byrd who said that there are [ https://rt.cpan.org/Public/Bug/Display.html?id=102357 ] many ports of Unidecode to other languages and that I should brag about that fact, and he is very extremely correct, so now the Pod in Unidecode.pm indeed does just that. * (I got my distro-building back up and running. WOLVERIIIINES!) * I'm thinking of having future Unidecode/*.pm data files contain the canonical Unicode character name for every character as a comment. Obviously, this would make the dist pretty big. But the lib/Unidecode/*.pm files is somewhere around a meg. What's a few megs more?... with the benefit of added clarity? Everyone's a winner!
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz1-1/+2
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2015-05-10Update to 1.23mef2-6/+6
-------------- 2014-12-07 Sean M. Burke sburke@cpan.org * RELEASE 1.23. Just a bugfix version. * The bug in question: https://rt.cpan.org/Ticket/Display.html?id=97456 * Thank you very much to superstar Dagfinn Ilmari Mannsaker for noting it first *and* for providing a patch for a problem that would baffle me completely: "On perls 5.8.8 through 5.12.x, regex matches against UTF-16 surrogate characters emits a fatal "Malformed UTF-8 character" warning if warnings are enabled. ExtUtils::MakeMaker prior to 6.78 runs the test suite with -w, causing the installation to fail. The attached patch [which I applied -SMB] disables utf8 warnings while doing the regex substitution and converting the character number to a character in the test." And thank you very much to Ricardo Signes and Tim Bunce for reminding me to actually release this thang! I was stupid and forgot... for several MONTHS. * Doc: Adding mention of Tom Christiansen's "Perl Unicode Cookbook": http://www.perl.com/pub/2012/04/perlunicook-standard-preamble.html * Doc: Adding a suggestion of "use utf8;" in German example.
2014-09-16Update to 1.22wen2-6/+7
Add LICENSE Upstream changes: 2014-08-15 Sean M. Burke sburke@cpan.org * RELEASE 1.22. (The dev release works, so this is a version bump.) * See notes for 2014-07-25, because this is the first public release with significant changes since 2001! 2014-07-25 Sean M. Burke sburke@cpan.org * !DEVELOPER RELEASE! * !Release 1.20_01! * Many bugfixes. Thanks especially to Tomaolc! * Yet more *.t files added for improved sanity checking. * Shuffling around the internals of Unidecode.pm * Putting in some vacuous 0x__.pm files where previously there would just be a load failure
2014-08-11Update to 1.01wen2-7/+6
Upstream changes: 2014-06-30 Sean M. Burke sburke@cpan.org * Release 1.01 -- first official Unidecode release since 2001!!! * There are no real changes since the 2014-06-23 developer release. I'm just making this all official now. 2014-06-23 Sean M. Burke sburke@cpan.org * !DEVELOPER RELEASE! * Release 1.00_03 * Now asserting that we need at least Perl 5.8.0 An automated test system that tried running the t/*.t under a 5.6.2 spewed all kinds of crazy error messages. Hence the bump-up. So, I added assertions for the version. * I added some tests for more basic sanity assertions. 2014-06-17 Sean M. Burke sburke@cpan.org v1.00_02 - Not released. Just internal rearranging. 2014-06-13 Sean M. Burke sburke@cpan.org * !DEVELOPER RELEASE! * Release 1.00(_01!)- so many years later, finally we bump up to 1.*! * My documentation is now BRILLIANT. * Minor bugfixes. * Some code comments for clarity. * A modern test suite. * A proper release will follow in a few days.
2014-07-19Use standard email address (pkgsrc-p5-people should not be MAINTAINER).wiz1-3/+2
2014-05-29Bump for perl-5.20.0.wiz1-2/+2
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.
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
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-25Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-2/+2
are called p5-*. I hope that's all of them.
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-2/+2
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
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!
2009-05-21Donate my Perl packages to the Great Five. (Don't worry, I'll try to taketonnerre1-2/+2
care of them still.)
2009-02-24Initial import of Text::Unidecode version 0.04.tonnerre3-0/+35
It often happens that you have non-Roman text data in Unicode, but you can't display it -- usually because you're trying to show it to a user via an application that doesn't support Unicode, or because the fonts you need aren't accessible. You could represent the Unicode characters as "???????" or "\15BA\15A0\1610...", but that's nearly useless to the user who actually wants to read what the text says. What Text::Unidecode provides is a function, unidecode(...) that takes Unicode data and tries to represent it in US-ASCII characters (i.e., the universally displayable characters between 0x00 and 0x7F). The representation is almost always an attempt at transliteration -- i.e., conveying, in Roman letters, the pronunciation expressed by the text in some other writing system.