Age | Commit message (Collapse) | Author | Files | Lines |
|
reduce autotools requirements and make sure pthreads are used.
TODO: libixion support (once it is added to pkgsrc)
|
|
(The timestamp in the gzip header changed from January 2005 to November
2007; go figure.)
To cope with this, set DIST_SUBDIR, update the distinfo, and bump
PKGREVISION to 5.
|
|
* merge NKF_python
* improve guess option
* misc bug fixes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This is the Chinese PinYin / Bopomofo (a.k.a Zhuying) conversion library.
You can easily write an application which handles the Chinese with it.
|
|
|
|
|
|
|
|
0.99 Sun Sep 1 12:46:14 2013
- by default out-of-range values are treated as if it were U+FFFD
when UCA_Version >= 22.
- supported overriding out-of-range values (see 'overrideOut' in POD).
- modified tests: override.t, illegal.t in t.
0.98 Sat Jun 15 19:44:06 2013
- typo (see [rt.cpan.org #85655] typo fixes)
|
|
0.37 Mon Sep 2 07:40 2013 (AMS time)
- Windows and C89 fixes
- Band-aid: Skip test failing due to hash-randomization [Zefram]
|
|
0.37 Mon Sep 2 07:40 2013 (AMS time)
- Remove spurious SvREFCOUNT_dec, previously causing
memory management problems on some vary invalid
input data.
- Fixed a memory leak on exception.
|
|
0.18 Mon Jul 23 2012
- Add IO::Wrap dependency to Makefile.PL (RT78412).
- Change longname() to detect names in newer versions of Outlook.
(RT78484)
|
|
1.123 2013-09-06
- Fixed pod error in debinhex and added pod tests
|
|
|
|
manipulation. Changes include:
- Improved support for various inputs.
- Refactorting
- Bug fixes
|
|
## 0.1.2 (2013-08-12)
Features:
- Add license to gemspec.
- Adjust dependencies for Ruby 1.8 to satisfy bundler.
|
|
|
|
non-fatal.
|
|
Upstream changes:
0.09 CHANGES:
* Add ->chroma method to HSV and HSL spaces
* Add distance metrics in HSV and HSL spaces
* Allow palette spaces to perform custom closest-match in any color
space by using its distance metric
|
|
Upstream changes:
1.122 2013-08-25
- Added unit tests for OO and CRC code
1.121 2013-08-23
- Changes file reformatted thanks to Neil Bowers (NEILB)
- Moved to Dist::Zilla's OurPkgVersion for keeping $VERSIONs in sync
1.120 2013-08-22
- First CPAN release by Stephen Nelson (STEPHEN),
who's now maintaining this module.
|
|
maintainership (all this okayed by the old maintainer, Jeremy C. Reed).
Changes from 0.9.2 include (apart from various bugfixes):
- WPX_SEEK_END for WPXMemoryInputStream (Laurent Alonso)
- Metadata for wpd2html (David Hislop)
- Change source code layout so that public headers be in inc/ and its
subdirectories
- libwpd.h and libwpd-stream.h are not generated headers anymore
- Change the way we get version from libwpd build
- Improvements to WPXOLEStream class
- Added MPL2+ to the licenses libwpd is released under
- Revert an accidental ABI change in WPXPropertyList
- Link the Windows static libraries with DLL runtimes
- libwpd-stream: Add experimental support for ZIP storages
- libwpd-stream: Add WPX_SEEK_END to the WPXSeekType enum
(Be sure that you are at offset 0 using it and check return value
in order to be compatible with lower versions of libwpd)
- New Visual Studio 2008 and Visual Studio 2010 build files
- Don't output points as integer. This solves some rounding issues along
with possibility of writing 10.5 point font size (Fridrich)
- General improvement of code quality by buiding with -Weffc++ option (Fridrich)
- Improvement of textbox code (Laurent Alonso)
- Improvement of arabic charset mapping (Smokey Ardisson)
- Build system rewrite and improvement (Tomas Chvatal)
- Cleanup of return values (Thomas Klausner)
- Conversion of extended characters in WP 42 parser (Fridrich)
|
|
|
|
(libreoffice dependency).
|
|
|
|
Mac documents. Dependency of libreoffice.
(pkglint complains about C not being added to USE_LANGUAGES; this is fine,
the package only uses C++)
|
|
|
|
documents (used by libreoffice).
(pkglint complains about c not being added to USE_LANGUAGES; this is fine,
as the package only uses c++)
|
|
Upstream changes:
1.35 Tue Aug 13 19:50:55 PDT 2013
- improve conversion of certain composed characters to MARC8
Some characters should not be fully decomposed
before converting them to MARC8. This patch adds
a table of such characters, based on Annex A of
http://www.loc.gov/marc/marbi/2006/2006-04.html
and on some sample records provided by Jason
Stephenson of MVLC.
- recognize G0 and G1 characters properly
When converting from MARC8 to UTF8, MARC::Charset now
properly recognizes if a (single-byte) MARC8 character falls
in G0 or G1.
This is part of the fix for RT#63271 (converting characters
in the Extended Cyrillic character set), but should also
fix similar issues with converting characters in the extended
Arabic set.
This commit also means that all MARC8 character sets that support
both G0 and G1 wll be properly converted, regardless of whether
they're currently set as the G0 or G1 character set. For example,
it is now possible to convert Extended Latin as G0 or Basic Latin
as G1.
This fixes RT#63271
- have MARC::Charset::Code->marc_value() handle G0/G1 conversion
Since there's at present no need to do things like have
ANSEL be the G0 character set when converting from UTF8 to
MARC8, this commit centralizes the logic for deciding
whether to return the G0 or G1 MARC8 representation of a
character.
Also add MARC::Charset::Code->g0_marc_value(), which returns
the G0 representation of the character for use by the
character DB.
- New test cases for converting Vietnamese and Extended Cyrillic
text.
1.34 Mon Feb 11 09:10:35 PST 2013
- RT#83257: use AnyDBM_File rather than hardcode GDBM_File
To improve portability, use AnyDBM_File to select a DBM
rather than rely on GDBM_File. GDBM_File apparently used
to be a core module, but not all distributions included it,
particularly OS X. In any event, GDBM_File is no longer
core.
This patch also includes a tweak to allow MARC::Charset to
work with NDBM_File and ODBM_File, neither of which
support 'exists'.
I've tested MARC::Charset successfully on the following
DBMs:
- GDBM_File
- DB_File
- NDBM_File
- ODBM_File
- SDBM_File
This is also my preferred order; SDBM_File is selected last
because it produces the biggest data file on disk.
- RT#38912: fix mapping of double diacritics (ligature and double
tilde).
Thanks to Thomas P. Ventimiglia for the bug report and test case.
|
|
Bump PKGREVISION.
Reported upstream at https://bugs.freedesktop.org/show_bug.cgi?id=67714
|
|
skf (1.99.6)
* Fix typo on LWL error process
* Fix cygwin python3 compilation
-- Seiji Kaneko <efialtes@sourceforge.jp> Fri, 26 Jul 2013 23:13:36 +0900
skf (1.99.5)
* Fix x-0213 unicode mapping
* further nkf-compatibility
* fix utf-16 code detection is escaping too early.
* support UTF-32 input
|
|
|
|
|
|
* Install to 'site' instead of 'perl' when perl version is 5.12+
|
|
|
|
Bump PKGREVISION.
|
|
|
|
This module provide user-defined Unicode properties that deal with
width status of East Asian characters, as specified in
http://www.unicode.org/unicode/reports/tr11/.
|
|
from 1.29nb2 to 1.30.
Upstream changes:
1.30 2013-06-15
* Add support for Cpanel::JSON::XS and JSON::PP. Fixes RT#85424 &
RT#67967. (perigrin)
* Fix documentation bug RT#86065.
|
|
from 2.330nb2 (upstream: 2.33) to 2.340 (upstream: 2.34).
Upstream changes from 2.33:
2.34 Thu May 23 11:30:34 CEST 2013
- work around bugs in perl 5.18 breaking more than 100
widely used modules, without a fix in sight because
p5pers don't care about CPAN anymore.
- when canonicalising, only allocate up to 64 hash key
pointers on the stack. for larger hashes, use the heap,
to avoid using too much stackspace.
- discuss the problem with setlocale (reported by a few victims).
|
|
2.58nb1 to 2.59.
Upstream changes:
2.59 Wed Jun 5 14:35:54 2013
- PUREPERL_ONLY support was not supported...
and finally remove all PP options from Makefile.PL.
- recommend JSON::XS instead of conditionally requiring it
patched by miyagaw
( for example, $ cpanm --with-recommends JSON)
- Hide more packages from PAUSE (and other stuff)
patched by miyagawa
|
|
Version 1.43 Jun 4, 2013
* Add explicit include syntax for prepending, replacing or appending to
generated output for a section.
|
|
|
|
converters/p5-Sereal-Encoder.
This library implements an efficient, compact-output, and feature-rich
serializer using a binary protocol called Sereal. Its sister module
Sereal::Decoder implements a decoder for this format. The two are released
separately to allow for independent and safer upgrading.
The Sereal protocol version emitted by this encoder implementation is
currently protocol version 1.
|
|
converters/p5-Sereal-Decoder.
This library implements a deserializer for an efficient, compact-output,
and feature-rich binary protocol called Sereal. Its sister module
Sereal::Encoder implements an encoder for this format. The two are released
separately to allow for independent and safer upgrading.
The Sereal protocol version that is compatible with this decoder
implementation is currently protocol version 1. As it stands, it will
refuse to attempt to decode future versions of the protocol, but there
is likely going to be an option to decode the parts of the input that
are compatible with version 1 of the protocol. The protocol was designed
to allow for this.
|
|
Version 1.43 Jun 4, 2013
* Add explicit include syntax for prepending, replacing or appending to
generated output for a section.
|