Commit graph

5991 commits

Author SHA1 Message Date
bsiegert
89e813e329 Add MirBSD support and unbreak build on MirOS. No-op on other platforms
so no PKGREVISION bump.
2012-07-10 19:14:47 +00:00
marino
794849a103 textproc/xmlada: Build with USE_LANGUAGES+= ada
1) Remove lang/gnat-aux dependency
2) USE_LANGUAGES+= ada (invokes lang/gcc-aux dependency)
3) Improve shared library rpath definition required when built by compiler
   not installed at ${LOCALBASE}
4) Restore use of pkgsrc wrappers
2012-07-08 20:03:08 +00:00
sno
fd1456a9a3 Updating package for Perl 5 module Convert::ASN1 in textproc/p5-Convert-ASN1
from 0.22nb2 to 0.26.

pkgsrc notes:
- ignoring requirement bump of Math::BigInt to 1.997, because it's neither
  documented why and the test succeed with bundled 1.994, too
  (skip updating lang/perl5 to 5.16.0 for now ^^)

Upstream changes:
0.26 -- Sat Jun 09 13:30:16 CDT 2012
  * Avoid Modification of a read-only value attempted errors
  * dump Data::Dumper strings when rtest fails
  * Add tests from Crypt::X509 that found the last Modification of a read-only value attempted error

0.25 -- Fri Jun 08 19:31:59 CDT 2012
  * fix a spelling mistake [gregor herrmann]
  * Add use strict and fix errors
  * Fix decoding of indefinite sequences with ANY
  * POD additions for ANY
  * EXPLICIT ops must pass their cVAR to their child op
  * Swallow a , after a }

0.24 -- Mon Jun 04 17:11:08 CDT 2012
  * spelling fix [gregor herrmann]
  * Added tests for extension markers (fails currently) [Niels Laukens]
  * Bugfix for extension markerss in SETs and CHOICEs [Niels Laukens]
  * Skip attempting to encode opEXTENSIONS inside of CHOICE
  * Support for default explicit tagging [Peter Mogensen]
  * Added tests and doc for explicit tagging [Peter Mogensen]
  * Add new opEXPLICIT for sequences that are inserted for EXPLICIT tags

0.23 -- Thu May 03 16:32:46 CDT 2012
 * Added support for EXTENSION MARKERS (...) (Niels Laukens)
 * Switch to Dist::Zilla for building
2012-07-06 13:13:08 +00:00
sno
b88513b16a Updating package for Perl 5 modules Filter::Util::Call/Filter::Util::Exec...
in textproc/p5-Filter from 1.39 to 1.45.

Upstream changes:
1.45 2012-06-19 rurban
----
  * Sync perlfilter.pod with core improvements

1.44 2012-06-18 rurban
----
  * Sync t/call.t with core fixes in 2adbc9b6

1.43 21 Feb 2012 rurban
----
  * Fix more windows tests:
    http://www.cpantesters.org/cpan/report/9e790a72-6bf5-1014-9f3b-641f296be760

1.42 20 Feb 2012 rurban
----
  * Improve t/tee.t test 5 on windows which allows all Administrator
    members read-access [RT #75164]

1.41 18 Feb 2012 rurban
----
  * Hide example packages from the pause indexer

1.40 9 Feb 2012 rurban
----
  * Fix tee and all tests to work with Perl 5.14 and higher.
    PVIO has no IV field anymore, so abuse the empty IoOFP,
    which is only used for printing, not reading.
    Fixes [RT #56875] and more.
    Tested for 5.6.2, 5.8.4, 5.8.5, 5.8.8, 5.8.9, 5.10.1, 5.12.4,
    5.14.2, 5.15.7
2012-07-06 13:05:33 +00:00
sno
88732a1ae7 Updating package for Perl 5 module Pod::Simple in textproc/p5-Pod-Simple
from 3.19 to 3.22.

Upstream changes:
2012-05-27   David E. Wheeler <david@justatheory.org>
	* Release 3.22

	Fix but where Pod::Simple would whine about non-ASCII bytes in
	code or comments. Now only does so for Pod (in the absence of an
	"=encoding" tag. Broken in 3.21. Grant McLean.

2012-05-23   David E. Wheeler <david@justatheory.org>
	* Release 3.21

	NOTE: COMPATABILITY CHANGE: The 'codes_in_verbatim' option in
	Pod::Simple::XHTML is no longer enabled by default. This brings it
	agreement with the other formatting classes, and eliminates
	unexpected behavior in XHTML-formatted Pod. Users who depended on
	this functionality can still get it by enabling
	'codes_in_verbatim' in their code.

	Fixed some typos in the documentation. Thanks to Jonathan Yu via
	the Debian packagers via Florian Ragwitz (RT #75532).

	Now emit a warning the first time a non-ASCII byte is encountered
	when no "=encoding" has been seen. Grant McLean.

	When a non-ASCII byte is encounted before an "=encoding" line has
	been seen, a heuristic (as described in perlpodspec) is applied to
	select UTF-8 encoding if the non-ASCII bytes form a valid UTF-8
	byte sequence, or Latin-1 otherwise. Grant McLean.

	Added 'handle_code' method to Pod::Simple::XHTML. This allows
	subclasses to override the handling of verbatim blocks, and makes
	for a more cohesive interface, to boot. Gisle Aas.

	Subsequent text segments are now joined together and passed as a
	single unit to text handling code. This makes it easier for custom
	handlers to process complete blocks of text in a single call to
	'handle_text', rather than in dribs and drabs. Gisle Aas.

	Replaced naive text wrapping code in Pod::Simple::DumpAsXML with
	Text::Wrap, which was already used for similar purposes elsewhere
	in Pod::Simple. Gisle Aas.

2012-03-01   David E. Wheeler <david@justatheory.org>
	* Release 3.20

	Removed use of 'done_testing' in t/xhtml15.t, which was added in
	v3.19. Thanks to Paul Howarth for the catch.

	Fixed quoting of links in a regular expression Pod::Simple::Text.
	Reported by Father Chrysostomos.

	Fix test failure on case-insensitive, non-case-preserving file systems
	(VMS I'm looking at *you*). Patch from Craig A. Berry.

	Pod::Simple::HTML no longer emits "href='#___top'" if a TOC
	(index) is not output. Patch from Rick Myers.

	Fixed links in the TOC of XHTML output to use IDs derived from encoded
	text, rather than raw Pod, so that it will link to the ID actually
	generated for the section. Thanks to Randy Stauner for the report
	(with test case!) (RT #72544).

	PullParser now throws an exception on an attempt to set a source
	more than once. Necessary because data from the previous source
	will be cached, so the new source would be ignored anyway. Create a
	new PullParser, instead. Thanks to Paul Boldra for the report (RT
	#74265).
2012-07-06 12:59:37 +00:00
sno
09a83bad57 Updating package for Perl 5 module Regexp::Common in
textproc/p5-Regexp-Common from 2011041701 to 2011121001.

Upstream changes:
Version 2011121001 Sat Dec 10 21:32:49 CET 2011
+ Fixed a few cases where $[ was used instead of $].
  (RT 73033 by Father Chrysostomos <sprout@cpan.org>)
+ Typo fix in docs (P Ramakers <pramakers@gmail.com>)
+ Add an explicite 1 to end the main module; otherwise it may fail under Mason
  (Luciano Rocha <luciano.rocha@booking.com>)
2012-07-06 12:54:50 +00:00
sno
e27052d7a1 Updating package for Perl 5 module XML::Simple in textproc/p5-XML-Simple
from 2.18nb4 to 2.20.

pkgsrc changes:
- update dependencies

Upstream changes:
2.20      2012-06-20 22:00:13 Pacific/Auckland
  - Suppress warning from empty CDATA section (RT#58359 from Juan Antonio
    Navarro Pérez)

2.19_02   2012-06-19 20:33:53 Pacific/Auckland
  - Reinstate XML::SAX::Expat dependency
  - Fix warnings tests (broken in 2.19_01) which rely on global $^W

2.19_01   2012-06-17 23:27:22 Pacific/Auckland
  - Use lexical filehandles instead of old-style fileglobs (RT#77787 from
    Quanah)
  - Restrict scope of :strict mode to calling package (RT#41562 from Hannu
    Aronsson)
  - Fix POD typo (RT#45414 from Anirvan Chatterjee)
  - Update POD to reflect best practise regarding :strict and options
  - Change minimum Perl requirement to 5.008
  - Switch to using Dist::Zilla for release management
2012-07-06 12:49:04 +00:00
sno
95373ac011 Updating package for Perl 5 module XML::LibXML in textproc/p5-XML-LibXML
from 1.96nb1 to 2.00.01 (upstream 2.0001).

Upstream changes:
2.0001          Wed Jun 20 19:40:05 IDT 2012
    - Remove the leftover perl-libxml-libxml.h from the distribution.
        - https://rt.cpan.org/Ticket/Display.html?id=77924
        - Thanks to Martin Mann for the report.

2.0000          Tue Jun 19 23:04:23 IDT 2012
    - Fix warnings that appear when compiling using the clang C compiler by
    default.
        - https://rt.cpan.org/Ticket/Display.html?id=77802
        - Thanks to duvny for the report, and to seldon, doy and Zefram
        for their assistance in fixing the warnings.
    - Fix tests and run-time errors when Hash::FieldHash is installed
    by no longer using Hash::FieldHash.
        - https://rt.cpan.org/Ticket/Display.html?id=77576
        - Thanks to hsk@fli-leibniz.de for reporting it, and to
        Father Chrysostomos ( http://search.cpan.org/~sprout/ ) and
        Mons Anderson for some diagnosis.

1.99            Thu May 31 10:21:23 IDT 2012
    - Apply a patch from Mons Anderson ( mons@cpan.org ) for fixing the
    overloading.
        - t/62overload.t
        - Thanks to Mons.
    - Fix test failures (and general functionality) on 64-bit big endian
    platforms
        - https://rt.cpan.org/Ticket/Display.html?id=77340
        - Thanks to Gregor Herrmann and Niko Tyni from the
        Debian Perl group.

1.98            Sun May 13 21:02:14 IDT 2012
    - Make sure parse_string() and load_xml() also accept references to
    strings (to avoid unnecessary copying).
        - See: https://rt.cpan.org/Ticket/Display.html?id=64051

1.97            Mon Apr 30 20:31:24 IDT 2012
    - Apply a test and a fix to correct keep_blanks having no effect on
    parse_balanced_chunk.
        - fixes https://rt.cpan.org/Ticket/Display.html?id=76696
        - Add t/30keep_blanks.t .
        - Thanks to SREZIC for the report, the test and the fix.
2012-07-06 12:40:18 +00:00
sno
514a707b62 Updating package for Perl 5 module XML::SAX in textproc/p5-XML-SAX
from 0.96nb6 to 0.99.

pkgsrc changes:
- importing new package for extracted XML::SAX::Base module

Upstream changes (not noted by Author!):
- extracted XML::SAX::Base and XML::SAX::Exception module
- improved/fixed CDSect parsing
2012-07-06 12:37:33 +00:00
sno
871aef4739 Added textproc/p5-XML-SAX-Base version 1.08 2012-07-06 12:31:16 +00:00
sno
43f5c6939c Re-importing package for Perl 5 module XML::SAX::Base version 1.08 into
textproc/p5-XML-SAX-Base, because scheduled update of XML::SAX to 0.96
in textproc/p5-XML-SAX extracted XML::SAX::Base into an own distribution
again.

This module has a very simple task - to be a base class for PerlSAX drivers
and filters. It's default behaviour is to pass the input directly to the
output unchanged. It can be useful to use this module as a base class so
you don't have to, for example, implement the characters() callback.
2012-07-06 12:31:01 +00:00
sno
0f7f0ac4e4 Updating package for Perl 5 module YAML in textproc/p5-YAML from 0.80
to 0.81.

Upstream changes:
version: 0.81
date:    Thu Apr 19 11:03:38 PDT 2012
changes:
- Patch from https://rt.cpan.org/Public/Bug/Display.html?id=74826
- YAML::Mo uses Safe Mo https://rt.cpan.org/Public/Bug/Display.html?id=76664
2012-07-06 12:03:41 +00:00
sno
cfc4a905b5 Updating package for Perl 5 module YAML in textproc/p5-YAML from 0.80
to 0.81.

Upstream changes:
version: 0.81
date:    Thu Apr 19 11:03:38 PDT 2012
changes:
- Patch from https://rt.cpan.org/Public/Bug/Display.html?id=74826
- YAML::Mo uses Safe Mo https://rt.cpan.org/Public/Bug/Display.html?id=76664
2012-07-06 12:02:23 +00:00
sno
4a7b70fe39 Updating package for Perl 5 module Text::CSV_XS in textproc/p5-Text-CSV_XS
from 0.88 to 0.90.

Upstream changes since 0.88:
0.90	- 2012-06-15, H.Merijn Brand
    * Drop 5.005 support (5.6.1 is now minimum)
    * Introduce record_number
    * Try harder to get the complete input parsed for the current record
      when hitting errors on parsing seekable IO (only works in 5.14.0 and up)
    * Tested with perl 5.6.1 .. 5.17.0 (99 versions of perl) on Linux, HP-UX,
      AIX, and Windows
    * SvSETMAGIC was missing for tied variables causing weird actions at a
      distance, e.g. in printf (Thanks TonyC for finding this)
    * UTF8 flag was not always reset when using bound variables (TonyC)
2012-07-06 08:26:29 +00:00
dholland
77ef9d7b88 Functions with empty args should be declared (void), not (). Fixes build
of lang/parrot. PKGREVISION -> 1.
2012-07-06 04:54:25 +00:00
sno
626697a591 Added textproc/p5-Pod-Eventual version 0.093.330 2012-07-05 15:17:21 +00:00
sno
683a4907cf Importing packafe for Perl 5 module Pod::Eventual version 0.093330 from
CPAN into textproc/p5-Pod-Eventual.

POD is a pretty simple format to write, but it can be a big pain to deal
with reading it and doing anything useful with it. Most existing POD
parsers care about semantics, like whether a =item occurred after an =over
but before a back, figuring out how to link a L<>, and other things like
that.

Pod::Eventual is much less ambitious and much more stupid. Fortunately,
stupid is often better. (That's what I keep telling myself, anyway.)

Pod::Eventual reads line-based input and produces events describing each
POD paragraph or directive it finds. Once complete events are immediately
passed to the handle_event method. This method should be implemented by
Pod::Eventual subclasses. If it isn't, Pod::Eventual's own handle_event
will be called, and will raise an exception.
2012-07-05 15:17:06 +00:00
sno
b3d69e30ec Added textproc/p5-String-Flogger version 1.101242 2012-07-05 13:43:08 +00:00
sno
b13296b7ba Importing package for Perl 5 module String::Flogger version 1.101242 from
CPAN into textproc/p5-String-Flogger.

String::Flogger provides string munging for loggers.
2012-07-05 13:42:47 +00:00
sno
7eb00b7a2a Added textproc/p5-String-Errf version 0.006 2012-07-05 11:17:01 +00:00
sno
f3a1c23379 Importing Perl 5 module String::Errf version 0.006 from CPAN into
textproc/p5-String-Errf.

String::Errf provides errf, a simple string formatter that works something
like sprintf. It is implemented using String::Formatter and Sub::Exporter.
2012-07-05 11:16:46 +00:00
sno
f4989f6883 Added textproc/p5-String-Formatter version 0.102082 2012-07-05 11:04:53 +00:00
sno
c51983a574 Importing package for Perl 5 module String::Formatter version 0.102082
from CPAN into textproc/p5-String-Formatter.

String::Formatter is a tool for building sprintf-like formatting routines.
It supports named or positional formatting, custom conversions, fixed
string interpolation, and simple width-matching out of the box. It is easy
to alter its behavior to write new kinds of format string expanders. For
most cases, it should be easy to build all sorts of formatters out of the
options built into String::Formatter.
2012-07-05 11:04:38 +00:00
drochner
2a88d5b5ec update to 3.4.2
changes:
-minor feature additions
-bugfixes/cleanup
-translation updates
2012-07-04 19:56:38 +00:00
adam
c20fee7eed Changes 49.1.2:
* 9242 ICU4C fails to parse pattern containing EEE properly whilst ICU4J parses it successfully
* 9258 Number format performance
* 9283 uregex_open fails for look-behind assertion + case-insensitive
* 9284 Date format roundtrip test failure
* 9295 HPPA endianness detection
* 9313 Problem building ICU4C with Cygwin/MSVC
* 9332 Linux s390 endianness detection
* 9336 Problem building ICU4C 49.1.1 on zOS
2012-07-03 18:37:26 +00:00
adam
866b730e71 Revbump after updating boost 2012-07-02 13:37:35 +00:00
wiz
fe7465b435 Update to 2.0.8:
2012-06-24 Raptor2 Version 2.0.8 Released

   Added support for RDFa 1.1 via updated librdfa
   Multiple portability fixes for Windows and Solarises. (Daniel Richard G.)
   Multiple minor fixes and improvements
   Fixed reported issues: 0000381, 0000487, 0000505 and 0000507
2012-07-01 15:50:58 +00:00
wiz
74d9be3033 Update to 2.8.0:
2.8.0: May 23 2012

    Features: - add lzma compression support (Anders F Bjorklund)
    Documentation: xmlcatalog: Add uri and delegateURI to possible add types in man page. (Ville Skyttä), Update README.tests (Daniel Veillard), URI handling code is not OOM resilient (Daniel Veillard), Fix an error in comment (Daniel Veillard), Fixed bug #617016 (Daniel Mustieles), Fixed two typos in the README document (Daniel Neel), add generated html files (Anders F Bjorklund), Clarify the need to use xmlFreeNode after xmlUnlinkNode (Daniel Veillard), Improve documentation a bit (Daniel Veillard), Updated URL for lxml python bindings (Daniel Veillard)
    Portability: Restore code for Windows compilation (Daniel Veillard), Remove git error message during configure (Christian Dywan), xmllint: Build fix for endTimer if !defined(HAVE_GETTIMEOFDAY) (Patrick R. Gansterer), remove a bashism in confgure.in (John Hein), undef ERROR if already defined (Patrick R. Gansterer), Fix library problems with mingw-w64 (Michael Cronenworth), fix windows build. ifdef addition from bug 666491 makes no sense (Rob Richards), prefer native threads on win32 (Sam Thursfield), Allow to compile with Visual Studio 2010 (Thomas Lemm), Fix mingw's snprintf configure check (Andoni Morales), fixed a 64bit big endian issue (Marcus Meissner), Fix portability failure if netdb.h lacks NO_ADDRESS (Daniel Veillard), Fix windows build from lzma addition (Rob Richards), autogen: Only check for libtoolize (Colin Walters), Fix the Windows build files (Patrick von Reth), 634846 Remove a linking option breaking Windows VC10 (Daniel Veillard), 599241 fix an initialization problem on Win64 (Andrew W. Nosenko), fix win build (Rob Richards)
    Bug fixes: Part for rand_r checking missing (Daniel Veillard), Cleanup on randomization (Daniel Veillard), Fix undefined reference in python module (Pacho Ramos), Fix a race in xmlNewInputStream (Daniel Veillard), Fix weird streaming RelaxNG errors (Noam), Fix various bugs in new code raised by the API checking (Daniel Veillard), Fix various problems with "make dist" (Daniel Veillard), Fix a memory leak in the xzlib code (Daniel Veillard), HTML parser error with <noscript> in the <head> (Denis Pauk), XSD: optional element in complex type extension (Remi Gacogne), Fix html serialization error and htmlSetMetaEncoding() (Daniel Veillard), Fix a wrong return value in previous patch (Daniel Veillard), Fix an uninitialized variable use (Daniel Veillard), Fix a compilation problem with --minimum (Brandon Slack), Remove redundant and ungarded include of resolv.h (Daniel Veillard), xinclude with parse="text" does not use the entity loader (Shaun McCance), Allow to parse 1 byte HTML files (Denis Pauk), Patch that fixes the skipping of the HTML_PARSE_NOIMPLIED flag (Martin Schröder), Avoid memory leak if xmlParserInputBufferCreateIO fails (Lin Yi-Li), Prevent an infinite loop when dumping a node with encoding problems (Timothy Elliott), xmlParseNodeInContext problems with an empty document (Tim Elliott), HTML element position is not detected propperly (Pavel Andrejs), Fix an off by one pointer access (Jüri Aedla), Try to fix a problem with entities in SAX mode (Daniel Veillard), Fix a crash with xmllint --path on empty results (Daniel Veillard), Fixed bug #667946 (Daniel Mustieles), Fix a logic error in Schemas Component Constraints (Ryan Sleevi), Fix a wrong enum type use in Schemas Types (Nico Weber), Fix SAX2 builder in case of undefined attributes namespace (Daniel Veillard), Fix SAX2 builder in case of undefined element namespaces (Daniel Veillard), fix reference to STDOUT_FILENO on MSVC (Tay Ray Chuan), fix a pair of possible out of array char references (Daniel Veillard), Fix an allocation error when copying entities (Daniel Veillard), Make sure the parser returns when getting a Stop order (Chris Evans), Fix some potential problems on reallocation failures(parser.c) (Xia Xinfeng), Fix a schema type duration comparison overflow (Daniel Veillard), Fix an unimplemented part in RNG value validation (Daniel Veillard), Fix missing error status in XPath evaluation (Daniel Veillard), Hardening of XPath evaluation (Daniel Veillard), Fix an off by one error in encoding (Daniel Veillard), Fix RELAX NG include bug #655288 (Shaun McCance), Fix XSD validation bug #630130 (Toyoda Eizi), Fix some potential problems on reallocation failures (Chris Evans), __xmlRaiseError: fix use of the structured callback channel (Dmitry V. Levin), __xmlRaiseError: fix the structured callback channel's data initialization (Dmitry V. Levin), Fix memory corruption when xmlParseBalancedChunkMemoryInternal is called from xmlParseBalancedChunk (Rob Richards), Small fix for previous commit (Daniel Veillard), Fix a potential freeing error in XPath (Daniel Veillard), Fix a potential memory access error (Daniel Veillard), Reactivate the shared library versionning script (Daniel Veillard)
    Improvements: use mingw C99 compatible functions {v}snprintf instead those from MSVC runtime (Roumen Petrov), New symbols added for the next release (Daniel Veillard), xmlTextReader bails too quickly on error (Andy Lutomirski), Use a hybrid allocation scheme in xmlNodeSetContent (Conrad Irwin), Use buffers when constructing string node lists. (Conrad Irwin), Add HTML parser support for HTML5 meta charset encoding declaration (Denis Pauk), wrong message for double hyphen in comment XML error (Bryan Henderson), Fix "make tst" to grab lzma lib too (Daniel Veillard), Add "whereis" command to xmllint shell (Ryan), Improve xmllint shell (Ryan), add function xmlTextReaderRelaxNGValidateCtxt() (Noam Postavsky), Add --system support to autogen.sh (Daniel Veillard), Add hash randomization to hash and dict structures (Daniel Veillard), included xzlib in dist (Anders F Bjorklund), move xz/lzma helpers to separate included files (Anders F Bjorklund), add generated devhelp files (Anders F Bjorklund), add XML_WITH_LZMA to api (Anders F Bjorklund), autogen.sh: Honor NOCONFIGURE environment variable (Colin Walters), Improve the error report on undefined REFs (Daniel Veillard), Add exception for new W3C PI xml-model (Daniel Veillard), Add options to ignore the internal encoding (Daniel Veillard), testapi: use the right type for the check (Stefan Kost), various: handle return values of write calls (Stefan Kost), testWriter: xmltefan Kost), xmlmemory: add a cast as size_t has no portable printf modifier (Stefan Kost), __xmlRaiseError: remove redundant schannel initialization (Dmitry V. Levin), __xmlRaiseError: do cheap code check early (Dmitry V. Levin)
    Cleanups: Cleanups be Weber), Cleanups of lzma support (Daniel Veillard), Augment the list of ignored files (Daniel Veillard), python: remove unused variable (Stefan Kost), python: flag two unused args (Stefan Kost), configure: acconfig.h is deprecated since autoconf-2.50 (Stefan Kost), xpath: remove unused variable (Stefan Kost)
2012-07-01 14:26:32 +00:00
asau
4f8c86238e Document licence (MIT). 2012-06-27 14:15:31 +00:00
joerg
2e3d9161e0 Fix build with C99 compiler. 2012-06-25 11:47:22 +00:00
jperkin
4d4045e59a Add missing INSTALLATION_DIRS. 2012-06-24 07:36:17 +00:00
wiz
56914947d9 openbsd just removed mac68k support.
From jmc@openbsd.
Bump version.
2012-06-20 23:27:35 +00:00
taca
c01737dd25 Remove PHP 5.2.x supporting code. 2012-06-18 15:14:19 +00:00
cheusov
1789d4eca5 Fix bug in dictl reported in Debian Linux (bug# 677868).
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677868
Dump pkgrevision for dict-client
2012-06-17 13:18:42 +00:00
taca
edecddb1c3 php-pspell build with php5 fine. I misstook something.
So, remove restriction of php-pspell and revert php5-extensions/Makefile.
2012-06-16 09:56:03 +00:00
taca
f8b98b4dc3 Allow build with php54. 2012-06-16 05:26:34 +00:00
taca
af866eed0c Use bundled version instead of PECL release for PHP 5.2.x. 2012-06-16 03:02:09 +00:00
sbd
cdfc7f300d Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
sbd
189021dea0 Add missing archivers/xz buildlink.
Bump PKGREVISION
2012-06-14 07:39:36 +00:00
taca
07eb61960b Update ruby-rdtool to 0.6.37.
= CHANGES
:0.6.37
  * Fix rd2man-lib for Ruby1.9.1
:0.6.36
  * Fix rd2man-lib for Ruby1.9.1, remove invalid @filename.
:0.6.35
  * Fix rd2man-lib for Ruby1.9.1. Thanks to Salvatore Bonaccorso.
    See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676154
2012-06-13 14:43:24 +00:00
taca
4eeda758d9 Update ruby-nokogiri to 1.5.4.
== 1.5.4 / unreleased

* Features

  * The "nokogiri" script now has more verbose output when passed the `--rng` option. #675 (Thanks, Dan Radez!)
  * Build support on hardened Debian systems that use `-Werror=format-security`. #680.
  * Better build support for systems with pkg-config. #584
  * Better build support for systems with multiple iconv installations.

* Bugfixes

  * Segmentation fault when creating a comment node for a DocumentFragment. #677, #678.
  * Treat '.' as xpath in at() and search(). #690

  * [MRI, Security] Default parse options for XML documents were
    changed to not make network connections during document parsing,
    to avoid XXE vulnerability. #693

    To re-enable this behavior, the configuration method `nononet` may
    be called, like this:

    Nokogiri::XML::Document.parse(xml) { |config| config.nononet }

    Insert your own joke about double-negatives here.
2012-06-13 14:42:40 +00:00
taca
67c9e7474e Update ruby-kramdown to 0.13.7.
kramdown 0.13.7 released

This release, aside from fixing bugs and some other minor changes, adds a new
converter for removing HTML tags from an element tree. This means that one can
now do

	kramdown -i html -o remove_html_tags,kramdown my_document.html

and get a nice kramdown document from a full HTML document!

Changes

1 major change

  * Implemented RemoveHtmlTags converter for removing HTML tags from an
    element tree (fixes bug RF#29282 requested by Bernard Potocki)

3 minor changes

  * Updated kramdown binary to support multiple, chained output formats

  * Added a new option for setting a default coderay highlighting language
    (requested by Lou Quillio)

  * Feature request RF#29575: Added support for &shy; soft-hyphen entity
    (requested by Alexander Gro©Î)

5 bug fixes

  * Fixed bug RF#29576: Footnotes in headers resulted in duplicated id attr in
    TOC (reported by korthaerd)
  * Multi-line titles in links are now correctly parsed
  * DOCTYPE declaration is now correctly parsed independent of case
  * Setting of nil options works now by using the String ¡Ænil¡Ç
  * Fixed table-of-content test cases (test went green although the meaning of
    the test was not satisfied due to copy-paste - d¡Çoh!)

1 documentation fix

  * Fixed bug RF#29577: sidebar link to news page was broken for HTML pages in
    sub directories (reported by korthaerd)
2012-06-13 14:41:03 +00:00
wiz
2f9e0bbe6e Add inet6 to default suggested options. It's 2012. 2012-06-12 15:45:54 +00:00
obache
f716ce9213 Update mecab to 0.994.
* add relearning function
* add automatic estimation of word cost for user dictionary
2012-06-10 11:54:44 +00:00
wiz
10f1920dfa + ocaml-text. 2012-06-04 14:28:35 +00:00
wiz
bcef6e5136 Initial import of ocaml-text, packaged by Jaap Boender.
OCaml-Text is an OCaml library for dealing with Unicode.
2012-06-04 14:28:15 +00:00
wiz
8be5b88ca5 + ocaml-tyxml. 2012-06-04 13:13:38 +00:00
wiz
8290a81be8 Initial import of ocaml-tyxml, packaged by Jaap Boender in PR 45546:
TyXML is an OCaml library that allows you to build XML trees whose validity is
insured by the typechecker. It supports XHTML 1.0 and 1.1, HTML5 and SVG
(partial).
2012-06-04 13:13:14 +00:00
wiz
ca30597041 Update to 2.8.0:
2.8.0: May 23 2012

    Features: - add lzma compression support (Anders F Bjorklund)

    Documentation: xmlcatalog: Add uri and delegateURI to possible
    add types in man page. (Ville Skyttä), Update README.tests
    (Daniel Veillard), URI handling code is not OOM resilient
    (Daniel Veillard), Fix an error in comment (Daniel Veillard),
    Fixed bug #617016 (Daniel Mustieles), Fixed two typos in the
    README document (Daniel Neel), add generated html files (Anders
    F Bjorklund), Clarify the need to use xmlFreeNode after
    xmlUnlinkNode (Daniel Veillard), Improve documentation a bit
    (Daniel Veillard), Updated URL for lxml python bindings (Daniel
    Veillard)

    Portability: Restore code for Windows compilation (Daniel
    Veillard), Remove git error message during configure (Christian
    Dywan), xmllint: Build fix for endTimer if !defined(HAVE_GETTIMEOFDAY)
    (Patrick R. Gansterer), remove a bashism in confgure.in (John
    Hein), undef ERROR if already defined (Patrick R. Gansterer),
    Fix library problems with mingw-w64 (Michael Cronenworth), fix
    windows build. ifdef addition from bug 666491 makes no sense
    (Rob Richards), prefer native threads on win32 (Sam Thursfield),
    Allow to compile with Visual Studio 2010 (Thomas Lemm), Fix
    mingw's snprintf configure check (Andoni Morales), fixed a
    64bit big endian issue (Marcus Meissner), Fix portability
    failure if netdb.h lacks NO_ADDRESS (Daniel Veillard), Fix
    windows build from lzma addition (Rob Richards), autogen: Only
    check for libtoolize (Colin Walters), Fix the Windows build
    files (Patrick von Reth), 634846 Remove a linking option breaking
    Windows VC10 (Daniel Veillard), 599241 fix an initialization
    problem on Win64 (Andrew W. Nosenko), fix win build (Rob
    Richards)

    Bug fixes: Part for rand_r checking missing (Daniel Veillard),
    Cleanup on randomization (Daniel Veillard), Fix undefined
    reference in python module (Pacho Ramos), Fix a race in
    xmlNewInputStream (Daniel Veillard), Fix weird streaming RelaxNG
    errors (Noam), Fix various bugs in new code raised by the API
    checking (Daniel Veillard), Fix various problems with "make
    dist" (Daniel Veillard), Fix a memory leak in the xzlib code
    (Daniel Veillard), HTML parser error with <noscript> in the
    <head> (Denis Pauk), XSD: optional element in complex type
    extension (Remi Gacogne), Fix html serialization error and
    htmlSetMetaEncoding() (Daniel Veillard), Fix a wrong return
    value in previous patch (Daniel Veillard), Fix an uninitialized
    variable use (Daniel Veillard), Fix a compilation problem with
    --minimum (Brandon Slack), Remove redundant and ungarded include
    of resolv.h (Daniel Veillard), xinclude with parse="text" does
    not use the entity loader (Shaun McCance), Allow to parse 1
    byte HTML files (Denis Pauk), Patch that fixes the skipping of
    the HTML_PARSE_NOIMPLIED flag (Martin Schröder), Avoid memory
    leak if xmlParserInputBufferCreateIO fails (Lin Yi-Li), Prevent
    an infinite loop when dumping a node with encoding problems
    (Timothy Elliott), xmlParseNodeInContext problems with an empty
    document (Tim Elliott), HTML element position is not detected
    propperly (Pavel Andrejs), Fix an off by one pointer access
    (Jüri Aedla), Try to fix a problem with entities in SAX mode
    (Daniel Veillard), Fix a crash with xmllint --path on empty
    results (Daniel Veillard), Fixed bug #667946 (Daniel Mustieles),
    Fix a logic error in Schemas Component Constraints (Ryan Sleevi),
    Fix a wrong enum type use in Schemas Types (Nico Weber), Fix
    SAX2 builder in case of undefined attributes namespace (Daniel
    Veillard), Fix SAX2 builder in case of undefined element
    namespaces (Daniel Veillard), fix reference to STDOUT_FILENO
    on MSVC (Tay Ray Chuan), fix a pair of possible out of array
    char references (Daniel Veillard), Fix an allocation error when
    copying entities (Daniel Veillard), Make sure the parser returns
    when getting a Stop order (Chris Evans), Fix some potential
    problems on reallocation failures(parser.c) (Xia Xinfeng), Fix
    a schema type duration comparison overflow (Daniel Veillard),
    Fix an unimplemented part in RNG value validation (Daniel
    Veillard), Fix missing error status in XPath evaluation (Daniel
    Veillard), Hardening of XPath evaluation (Daniel Veillard),
    Fix an off by one error in encoding (Daniel Veillard), Fix
    RELAX NG include bug #655288 (Shaun McCance), Fix XSD validation
    bug #630130 (Toyoda Eizi), Fix some potential problems on
    reallocation failures (Chris Evans), __xmlRaiseError: fix use
    of the structured callback channel (Dmitry V. Levin),
    __xmlRaiseError: fix the structured callback channel's data
    initialization (Dmitry V. Levin), Fix memory corruption when
    xmlParseBalancedChunkMemoryInternal is called from
    xmlParseBalancedChunk (Rob Richards), Small fix for previous
    commit (Daniel Veillard), Fix a potential freeing error in
    XPath (Daniel Veillard), Fix a potential memory access error
    (Daniel Veillard), Reactivate the shared library versionning
    script (Daniel Veillard)

    Improvements: use mingw C99 compatible functions {v}snprintf
    instead those from MSVC runtime (Roumen Petrov), New symbols
    added for the next release (Daniel Veillard), xmlTextReader
    bails too quickly on error (Andy Lutomirski), Use a hybrid
    allocation scheme in xmlNodeSetContent (Conrad Irwin), Use
    buffers when constructing string node lists. (Conrad Irwin),
    Add HTML parser support for HTML5 meta charset encoding
    declaration (Denis Pauk), wrong message for double hyp"whereis"
    command to xmllint shell (Ryan), Improve xmllint shell (Ryan),
    add function xmlTextReaderRelaxNGValidateCtxt() (Noam Postavsky),
    Add --system support to autogen.sh (Daniel Veillard), Add hash
    randomization to hash and dict structures (Daniel Veillard),
    included xzlib in dist (Anders F Bjorklund), move xz/lzma
    helpers to separate included files (Anders F Bjorklund), add
    generated devhelp files (Anders F Bjorklund), add XML_WITH_LZMA
    to api (Anders F Bjorklund), autogen.sh: Honor NOCONFIGURE
    environment variable (Colin Walters), Improve the error report
    on undefined REFs (Daniel Veillard), Add exception for new W3C
    PI xml-model (Daniel Veillard), Add options to ignore the
    internal encoding (Daniel Veillard), testapi: use the right
    type for the check (Stefan Kost), various: handle return values
    of write calls (Stefan Kost), testWriter:
    xmlTextWriterWriteFormatElement wants an int instead of a long
    int (Stefan Kost), runxmlconf: update to latest testsuite
    version (Stefan Kost), configure: add -Wno-long-long to CFLAGS
    (Stefan Kost), configure: support silent automake rules if
    possible (Stefan Kost), xmlmemory: add a cast as size_t has no
    portable printf modifier (Stefan Kost), __xmlRaiseError: remove
    redundant schannel initialization (Dmitry V. Levin), __xmlRaiseError:
    do cheap code check early (Dmitry V. Levin)

    Cleanups: Cleanups before 2.8.0-rc2 (Daniel Veillard), Avoid
    an extra operation (Daniel Veillard), Remove vestigial
    de-ANSI-fication support. (Javier Jardón), autogen.sh: Fix
    typo (Javier Jardón), Do not use unsigned but unsigned int
    (Daniel Veillard), Remove two references to u_short (Daniel
    Veillard), Fix -Wempty-body warning from clang (Nico Weber),
    Cleanups of lzma support (Daniel Veillard), Augment the list
    of ignored files (Daniel Veillard), python: remove unused
    variable (Stefan Kost), python: flag two unused args (Stefan
    Kost), configure: acconfig.h is deprecated since autoconf-2.50
    (Stefan Kost), xpath: remove unused variable (Stefan Kost)
2012-06-03 22:18:33 +00:00
wiz
b1bdfef08b Update to 3.3.1: fixes a broken pkgconfig file. 2012-06-03 20:05:58 +00:00