Commit graph

5947 commits

Author SHA1 Message Date
gls
0d7bdeb258 Update textproc/py-cssutils to 0.9.9.
Pkgsrc changes:
---------------

Deal with /usr/bin/env python

Upstream changes:
-----------------

0.9.9 final 120131
    - FEATURE: Implemented API for ``MarginRule`` objects inside ``CSSPageRule``, see http://www.w3.org/TR/css3-page/. You can also use e.g. ``CSSPageRule['@top-left']`` to retrieve the MarginRule it it is set etc. All dict like methods should be there. If a margin is set twice or more all properties are merged into a single margin rule. Double set properties are all kept though (see below).

    - FEATURE: ``parseStyle()`` has optional parameter ``validate=False`` now too to disable validation (default is always ``True``).

    - FEATURE: ``CSSStyleDeclaration.setProperty`` has new option ``replace=True``. if True (DEFAULT) the given property will replace a present property. If False a new property will be added always. The difference to `normalize` is that two or more properties with the same name may be set, useful for e.g. stuff like::

            background: red;
            background: rgba(255, 0, 0, 0.5);

      which defines the same property but only capable UAs use the last property value, older ones use the first value.

    + CHANGE: @rules attribute ``atkeyword`` value is now normalized. The actual keyword (example ``@IMPorT``) is kept and is optionally reserialized but in the example ``atkeyword == '@import'``

    - BUGFIX: 'auto' is now an invalid CSSPageRule pagename.
    - BUGFIX: Fixed issue for GoogleAppEngine (GAE) which somehow handles codecs differently. ``parseUrl`` should work now.

0.9.8
-----
0.9.8 final 111210
    - FEATURE: Feature Request (#4) to be able to disable validation of a stylesheet has been implemented. Add Parameter ``validate=False`` for parsing.

    + BUGFIX: Fixed #5 Unicode escaping inside strings. Thanks to Simon Sapin
    + BUGFIX: The integer is optional in counter-reset and counter-increment, and not only on the first counter. Thanks to Simon Sapin
    + BUGFIX: Fix for unicode replacements by Denis Bilenko, thanks!  https://bitbucket.org/cthedot/cssutils/pull-request/1/fix-a-bug-in-regex-which-accidentally

    - IMPROVEMENT: ``parseStyle`` moved to CSSParser, thanks to Simon Sapin

0.9.8a3 110727
    + BUGFIX: Fixed validation of ``size`` property (thanks to Simon Sapin)
	+ BUGFIX: Fixed Issue #55 (thanks to Simon Sapin): `outline-color` property was missing from validation.
    + BUGFIX: Fixed resolution of encoding detection of a stylesheet which did not use @charset in certain circumstances (mainly when imported sheets use different encoding than importing one which should be quite rare actually).

    - FEATURE: Added ``URIValue.absoluteUri`` (thanks to Simon Sapin)
    - FEATURE: Issue #53 feature request: Added new Preference option ``cssutils.ser.prefs.indentClosingBrace``. Defines if closing brace of block is indented to match indentation of the block (default) oder match indentation of selector.
    - FEATURE: Feature request: Added new Preference option ``cssutils.ser.prefs.omitLeadingZero``. Defines if values between -1 and 1 should omit the 0, like ``.5px``. Minified settings do this, else 0 is kept by default.

    + CHANGE (minor): Some error messages have slightly changed due to a simpler compatibility to Python 3. Problem are any ``u'...'`` texts inside error messages which now are simplified, some without and quotes. Changed are e.g. error messages by ``Property``.

    - **IMPROVEMENT**: Python 3 support. At least the unittests run in Python 2.5, 2.6, 2.7, 3.2 and Jython 2.5.1 now. Both encutils (with support by Fredrik Hedman, thanks!) and cssutils (thanks to Jaraco) and the CSS codec (thanks to Walter Dörwald) seem to work with Python 3 (tested on Python 3.2.1 Win64). Tests use Mock instead of MiniMock now as former is available for Python 2.x and 3.x.

    - **IMPROVEMENT**: Parsing of longer (and probably invalid) ``font`` or ``font-family`` values was *extremely* slow due to a very complex regex. This has been changed and parsing of specific stylesheets using these values should be much faster now. (``macros[Profiles.CSS_LEVEL_2]['font-family']`` is gone so if you used this in your own validation modules you need to check the source in `profiles.py`.)

    - IMPROVEMENT: Fixed Issue #54 (thanks to Simon Sapin): Short hand like `#f80` color value object have correct red, green and blue property values now. Also ``hsl()`` and ``hsla()`` colors report (almost) correct values (due to rounding problems).

    - **Source control has moved to bitbucket https://bitbucket.org/cthedot/cssutils**. Older Issues are currently still at Google Code, newer at Bitbucket. Please do not use Google Code for new issue reports anymore!

0.9.8a2 110611
    - BUGFIX: Fixed Issue #59 which showed a rather strange problem with longer space separated lists of font-family values being so slow to actually stop parsing.

    - BUGFIX/IMPROVEMENT: Fixed Issue #48. ``CSSParser.parseUrl()`` uses the defined fetcher of this parser *for the initial stylesheet* at url too and not just the imported sheets *from* this sheet.

    - BUGFIX: Fixed Issue #50 which prevented cssutils parsing the acid2.css file correctly. Problem were selectors starting directly with ``[class]`` (an attribute selector).

    + **API CHANGE (major)**
        (Known) named colors are parsed as ColorValue objects now. These are the 16 simple colors (black, white, etc) and `transparent` but not all Extended color keywords yet. Also changed ``ColorValue.type`` to ``Value.COLOR_VALUE``. ColorValue has additional properties ``red, green, blue, alpha`` and ``colorType`` which is one of IDENT, HASH or FUNCTION for now.

    + API CHANGE (minor)
        Removed already DEPRECATED ``cssutils.parse`` and ``CSSParser.parse``. Use the more specific functions/methods ``parseFile parseString parseUrl`` instead.

        Removed already DEPRECATED  ``cssutils.log.setlog`` and ``.setloglevel``. Use ``.setLog`` and ``.setLevel`` instead.

        Removed already DEPRECATED  ``cssutils.ser.keepUnkownAtRules`` (note the typo). Use ``.keepUnknownAtRules`` instead.

    - IMPROVEMENT: Added validation profiles for some properties from `CSS Backgrounds and Borders Module Level 3 <http://www.w3.org/TR/css3-background/>`__, `CSS3 Basic User Interface Module <http://www.w3.org/TR/css3-ui/#resize>`__, `CSS Text Level 3 <http://www.w3.org/TR/css3-text/>`__
        mainly  `cursor`, `outline`, `resize`, `box-shadow`, `text-shadow`

0.9.8a1 101212
    + **API CHANGE (major)**
        replace CSSValue with PropertyValue, Value and other classes.

        NEW CLASSES:
            :class:`cssutils.css.PropertyValue`
                replaces CSSValue and CSSValueList

                - is iterable (iterates over all single Value objects which in soruce CSS might be separated by "," "/" or " "
                - a comma separated list of IDENT values is no longer handled as a single String (e.g. ``Arial, sans-serif``)

            :class:`cssutils.css.Value`
                replaces CSSPrimitiveValue with separate ``value`` and ``type`` info (value is typed, so e.g. string for e.g. STRING, IDENT or URI values, int or float) and is base class for more specific values like:

            :class:`cssutils.css.URIValue`
                replaces CSSPrimitiveValue, additional attribute ``uri``

            :class:`cssutils.css.DimensionValue`
                replaces CSSPrimitiveValue, additional attribute ``dimension``

            :class:`cssutils.css.ColorValue`
                replaces CSSPrimitiveValue, additional attribute ``red``, ``green``, ``blue`` and ``alpha``

                **TODO: Not yet complete, only rgb, rgba, hsl, hsla and has values use this object and color and alpha information no done yet!**

            :class:`cssutils.css.CSSFunction`
                replaces CSSPrimitiveValue function, not complete yet

            also renamed ``ExpressionValue`` to :class:`cssutils.css.MSValue` with new API

    - IMPROVEMENT/CHANGE: Validation of color values is tighter now. Values like ``hsl(1, 2, 3)`` do not validate as it must be ``hsl(1, 2%, 3%)``. This mostly effects HSL/A and RGB/A notation.

    - **IMPROVEMENT**: New Value parsing and API accelerate parsing of style declarations which take about 20-30% less time now. Of course this depends on the complexity of your styles.

    + BUGFIX: fixes issue #41, #42, #45, #46
        PropertyValue.value returns value without any comments now, else use PropertyValue.cssText

    - FEATURE: ``cssutils.replaceUrls()`` accepts as first argument a `cssutils.css.CSSStyleSheet` but now also a
        :class:`cssutils.css.CSSStyleDeclaration` object, so may be used like the following which is useful when you work with HTML style attributes::

                >>> style = cssutils.parseStyle("background-image: url(1.png), url('2.png')")
                >>> cssutils.replaceUrls(style, lambda url: 'prefix/'+url)
                >>> print style.cssText
                background-image: url(prefix/1.png), url(prefix/2.png)

        (I omitted the validation error message as more than one background-image is not yet defined in the cssutils validator but does parse through without problems)

    + CHANGE: explicit `+` of any dimension, percentage of number value is kept now instead of being stripped as if put explicitly in the author SHOULD have meant something ;)
2012-05-05 15:20:07 +00:00
adam
4f28a674e4 Changes 1.16.41:
* xmlrpc, xmlrpc_pstream client programs: fix bug in display of unprintable
  ASCII as \xHH: shows \xff where it should be something else.
2012-05-04 11:18:22 +00:00
obache
299b38ff53 Add a http site to MASTER_SITES to avoid dependency on curl. 2012-05-04 08:43:28 +00:00
drochner
5cb3fa5999 update to 0.6.5
change: minor bugfix
2012-04-30 14:25:06 +00:00
taca
eef8925198 Update stringex to 1.3.3.
Exact changes are unavailable.

Several bug fixes.
2012-04-29 14:35:56 +00:00
taca
283afb75ff Update ruby-rdtool to 0.6.33.
= CHANGES
:0.6.33
  * Typo fixed
  * Remove makerdtool.rb, merge Rake task.
:0.6.32
  * Fix for Ruby 1.9.1. Thanks to Shin-ya Murakami
  * Update Rakefile to create gem and .tar.gz, no longer needed jeweler.
  * Add RD::Version into rd/version.rb
2012-04-29 14:33:27 +00:00
taca
d79938f338 Update ruby-fast-stemmer to 1.0.1.
One bug fix: don't mutate the original string.
2012-04-29 14:32:22 +00:00
taca
decf56a108 Update ruby-coderay package to 1.0.6.
Changes in 1.0.6

* New option :break_lines for the HTML encoder (splits tokens at line
  breaks). [GH-15, thanks to Etienne Massip]
* Improved speed of :line_numbers => :inline option for the HTML encoder.
* Fixed wrong HTML file type. (was :page) [GH-16, thanks to Doug Hammond]
* The CSS Scanner now highlights tokens like url(...) as :function instead of
  :string. [GH-13, thanks to Joel Holdbrooks]
2012-04-29 14:29:35 +00:00
obache
57fbf0694c Update groonga to 2.0.2.
Release 2.0.2 - 2012/04/29
--------------------------

Improvements
^^^^^^^^^^^^

* [pkg-config] Removed needless MessagePack dependency.
* [rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]
* [rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu]
* [groonga] Improved daemoinzed timing. Groonga server daemonizes
  after socket is listened. It means that groonga server is ready when
  groonga server is daemonized. [#1326]
* [admin] Supported suggest in groonga administration page.
* [dump] Ignored MeCab tokenizer load error.
* Supported CMake.
* [load] Supported error report when a column value can't be set.
* Supported similar search. ``select --filter "column *S 'TEXT'"``
  is the similar search syntax. [#1342]
* [apt][yum] Changed package sign key.
* Supported Ubuntu Precise Pangolin.
* [apt] Added a new groonga-keyring deb package for the groonga's
  package sign key.

Fixes
^^^^^

* [deb][rpm] Used ``--bind-address`` option instead of deprecated
  ``--address`` option.
  [#1320] [Patch by IWAI, Masaharu]
* [deb] Renamed groonga-server package's configuration file to
  /etc/default/groonga-server from /etc/default/groonga.
* [rpm][fedora] Fixed upgrade condition in %post server.
  [GitHub#11] [Patch by Daiki Ueno]
* [rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu]
* [deb][rpm] Added missing curl dependency.
  [GitHub#12] [Patch by IWAI, Masaharu]
* [rpm] Removed needleess ruby package dependency from groonga package.
  [#1330] [Suggested by IWAI, Masaharu]
* [deb] Added missing default values to groonga-server's
  configuration file.
* Fixed a crash bug that is caused when searching with updaging very large
  inverted index. [#1329]
* Fixed a bug that strings are compared as characters instead of byte string.
  [#1340] [Reported by Shinya Kawaji]

.. _release-2-0-1:

Release 2.0.1 - 2012/03/29
--------------------------

Improvements
^^^^^^^^^^^^

* Supported build in other directory.
  [#1298] [Reported by Kazuhiko]
* [solaris] Supported build on Solaris 11. [Reported by Kazuhiko]
* [test] Supported functional test.
* [test] Required ``--with-ruby19`` configure option for testing by Ruby.
* [dump] Supported records dump for a table that has default tokenizer.
* [suggest] Added ``similar_search`` option.
* [groonga] Removed deprecated options, ``-a``, ``--address`` and
  ``--admin-html-path``.
* Added more return value checks. [GitHub#9] [Reported by Markus Elfring]
* [dat] Supported term extract operation.
* Added `logos <http://groonga.org/logo/>`_ .
* Updated HTML design.
* Renamed ``grntest`` to ``groonga-benchmark``.
* Supported ``autogen.sh`` on CentOS 5.
* [linux] Added ``vm.overcommit_memory`` kernel parameter value
  check. [#1289]
* ``grn_snip`` uses ``grn_obj`` mechanism. [#1054]

Fixes
^^^^^

* Fixed a bug that uninstall task doesn't uninstall installed Ruby
  scripts. [#1299] [Reported by Kazuhiko]
* Added a missing Gemfile. [#1302] [Reported by Kazuhiko]
* Fixed a bug that some indexed records aren't found. The feature is
  only used by mroonga. [#1303]
* [groonga] Appended missing ``-id`` to ``--server-id`` option name.
* Fixed a bug that latin1 normalization may access unexpected memory.
2012-04-29 13:33:06 +00:00
taca
b589c0f268 Update ruby-json and ruby-json-pure to 1.7.0
2012-04-28 (1.7.0)
  * Add JSON::GenericObject for method access to objects transmitted via JSON.
2012-04-27 (1.6.7)
  * Fix possible crash when trying to parse nil value.
2012-04-29 05:42:46 +00:00
taca
12a3c4ad41 Update ruby-multi_json to 1.3.4.
Exact changes aren't avaiable.

* Add support for Oj library.
* Several bug fixes.
2012-04-29 05:41:46 +00:00
taca
7b7f106ba9 Update ruby-json and ruby-json-pure pacakge to 1.6.6.
2012-02-11 (1.6.6)
  * Propagate src encoding to values made from it (fixes 1.9 mode converting
    everything to ascii-8bit; harmless for 1.8 mode too) (Thomas E. Enebo
    <tom.enebo@gmail.com>), should fix
    https://github.com/flori/json/issues#issue/119.
  * Fix https://github.com/flori/json/issues#issue/124 Thx to Jason Hutchens.
  * Fix https://github.com/flori/json/issues#issue/117
2012-04-28 15:48:16 +00:00
mishka
c000fa550c FreeBSD 6 and earlier misses the pthread_equal() stub as well.
While here, improve comments a little bit.
2012-04-27 15:05:02 +00:00
obache
99dc9c311a Recursive bump from icu shlib major bumped to 49. 2012-04-27 12:31:32 +00:00
obache
3acac4b32e expect builtin gcc atomic functions for gcc>=4.1. 2012-04-27 10:54:48 +00:00
martin
0af361b075 On BSD use <sys/endian.h> to derive endianess, instead of defaulting
to little endian always.
2012-04-26 18:12:37 +00:00
adam
262db505bf Changes 2.0.0:
* Fixed bug 61487 - bad bounds check in grapheme_strpos.
* Fixed several tests.
2012-04-25 18:55:39 +00:00
adam
bf27d7b509 Changes 49.1.1:
* Unicode 6.1: New scripts & blocks; changes to grapheme break & line break
  property values; some characters change from symbol to Po or No; etc.
* CLDR 21.0.1: Changes in segmentation data to match Unicode 6.1; new structures
  for support of Chinese calendar, for context-dependent capitalization, for
  gender of lists of people, for ordinal categories, and for multiple number
  systems per locale; deprecation of "commonlyUsed" element in timezone names;
  removal of "whole-locale" aliases; major cleanups of timezone names,
  delimiter data, abbreviated number data.
* Normalizer2 API additions
* Easier-to-use getInstance() variants; e.g., getNFDInstance()
* Getter for the combining-class value for a code point
* Getter for the raw Decomposition_Mapping
* Pairwise composition
* TimeZone class: (C++) Getter for unknown time zone, (Java) fields for GMT &
  unknown zone
* Support for deprecation of the "commonlyUsed" element for CLDR metazones
* DateTimePatternGenerator can now use separate patterns for skeletons that
  differ only in MMM vs MMMM or EEE vs EEEE,  etc.
* Support for custom DecimalFormatSymbols in RuleBasedNumberFormat
* Format and parse Chinese calendar dates including support for intercalary
  months
* Context Transforms for context-dependent capitalization behavior
* APIs for TimeZoneNames and TimeZoneFormat
* Support for new date format pattern "ZZZZZ" for ISO 8601 zone format
* Options for ambiguous local time resolution in Calendar
* Support for ISO 4217 numeric currency code
2012-04-25 18:53:43 +00:00
hans
9cc7182d38 Use LDFLAGS before any additional libs. Fixes an issue I had where the
wrong libstdc++ was picked up because of -L confusion.
2012-04-25 17:52:59 +00:00
drochner
0f4c00a598 give hints for selftest 2012-04-23 16:53:12 +00:00
adam
869f19cb06 Changes 1.1.3:
* 40: Fix ``safe_repr`` function to decode bytestrings with non-ASCII
  characters correctly.
* 37: Allow configuring sphinx-apidoc via ``SPHINX_APIDOC_OPTIONS``.
* 34: Restore Python 2.4 compatibility.
* 36: Make the "bibliography to TOC" fix in LaTeX output specific to
  the document class.
* 695: When the highlight language "python" is specified explicitly,
  do not try to parse the code to recognize non-Python snippets.
* 859: Fix exception under certain circumstances when not finding
  appropriate objects to link to.
* 860: Do not crash when encountering invalid doctest examples, just
  emit a warning.
* 864: Fix crash with some settings of :confval:`modindex_common_prefix`.
* 862: Fix handling of ``-D`` and ``-A`` options on Python 3.
* 851: Recognize and warn about circular toctrees, instead of running
  into recursion errors.
* 853: Restore compatibility with docutils trunk.
* 852: Fix HtmlHelp index entry links again.
* 854: Fix inheritance_diagram raising attribute errors on builtins.
* 832: Fix crashes when putting comments or lone terms in a glossary.
* 834, 818: Fix HTML help language/encoding mapping for all Sphinx
  supported languages.
* 844: Fix crashes when dealing with Unicode output in doctest extension.
* 831: Provide ``--project`` flag in setup_command as advertised.
* 875: Fix reading config files under Python 3.
* 876: Fix quickstart test under Python 3.
* 870: Fix spurious KeyErrors when removing documents.
* 892: Fix single-HTML builder misbehaving with the master document in a
  subdirectory.
* 873: Fix assertion errors with empty ``only`` directives.
* 816: Fix encoding issues in the Qt help builder.
2012-04-23 14:52:53 +00:00
obache
bb386ef681 Update py-xlrd to 0.7.7.
0.7.7.
This release features the following changes:
- Google Spreadsheet doesn't write the undefined-contents byte at the
  end of a NOTE record. Excel doesn't care. Now xlrd doesn't care either.
- Version information is now stored in a .py file, hopefully keeping
  py2exe and other freeze tools happy.

(0.7.5, 0.7.6 ...fixes packaging issues in 0.7.4...)

0.7.4.
This release features the following changes:
- Fixed a bug where xlrd was silently truncating long text formula results
- Avoid parsing STYLE records when formatting_info=False
- More tolerance of out-of-spec files.
- Minor performance improvements.
2012-04-23 13:13:44 +00:00
obache
fb75d0c52f remove duplicated entries. 2012-04-23 12:58:45 +00:00
joerg
6bdea8337f Fix trivial build error with clang to make room for the more interesting
problems.
2012-04-22 20:32:18 +00:00
joerg
f2eeb86c30 Don't use extern "C" when including C++ headers. 2012-04-22 20:31:29 +00:00
wiz
074e90c083 Update to 1.8, fix compilation issues.
Removed glib2 dependency, bump depends in bl3.mk.

Version 1.8
~~~~~~~~~~~

- Changes:
  * Add cython bindings
  * Fix error in swig bindings
  * Fix memory corruption in libcnary

Version 1.7
~~~~~~~~~~~

- Changes:
  * Fix building on Big Endian systems

Version 1.6
~~~~~~~~~~~

- Changes:
  * Updated libcnary sources, adding license and copyright info

Version 1.5
~~~~~~~~~~~

- Changes:
  * Removed glib dependency, libplist now uses libcnary
    (http://github.com/Chronic-Dev/libcnary)
  * Fix building of python bindings with GCC 4.6
2012-04-22 16:11:13 +00:00
wiz
dab07e5c07 Update to 1.77:
1.77            Sat Feb 25 16:23:57 IST 2012
    - Apply a patch from Michael Ludwig clarifying the quoting of string
    parameters to the XSLT transformation.
        - Thanks, Michael!

1.76            Thu Jan 12 19:15:03 IST 2012
    - Made LibXSLT.xs compile with C compilers that don't accept declarations
    inside blocks:
        - https://rt.cpan.org/Public/Bug/Display.html?id=73905
        - These include Microsoft Visual C++ (in C-mode).

1.75            Fri Oct 28 17:26:57 IST 2011
    - Convert the following test scripts from Test.pm to Test::More :
        - t/03input.t
    - Fix for https://rt.cpan.org/Public/Bug/Display.html?id=71345 by Tim
    Brody:
        - «segfault in free()»
        - Thanks, Tim!

1.74            Tue Oct 25 21:48:48 IST 2011
    - Convert the following test scripts from Test.pm to Test::More :
        - t/01basic.t
        - t/02dromeds.t
        - t/04params.t
        - t/05quick.t
        - t/06output.t
        - t/06entities.t
        - t/07blankdoc.t
        - t/08literal.t
        - t/09exslt.t
        - t/10functions.t
        - t/11utf8.t
        - t/12import.t
        - t/13error.t
        - t/14security.t
        - t/15misc.t

    - In the process made "Encode" and perl-5.8.1. pre-requisites of this
    distribution.

    - Add the "make runtest" and "make distruntest" targets to test using
    Test-Run.

1.73            Sun Oct  9 17:32:30 IST 2011
    - Possible fix for https://rt.cpan.org/Ticket/Display.html?id=71456 :
        - made the port reservation on t/14security.t for the non-existent
        URL more robust.

1.72            Thu Oct  6 13:37:13 IST 2011
    - Moved the benchmarking code under benchmark/ so it won't be indexed
    by CPAN (Tim Brody).
    - Avoid leaking memory inside extension elements by cleaning up on
    stylesheet DESTROY (Tim Brody).
    - xsltInit() and xsltCleanupGlobals() to avoid leaking memory on
    init/shutdown (Tim Brody).
    - Added support for stylesheet context functions via a
    $stylesheet->register_function() method with the same arguments as
    XML::LibXSLT->register_function(). (Tim Brody)
    - Added support for register_element() on stylesheet objects. The callback
    may leak memory though - nothing frees the _private attributes of the
    node + document owner for the passed arguments? (Tim Brody)

1.71            Sat Sep 10 20:38:23 IDT 2011
    - Fixed https://rt.cpan.org/Ticket/Display.html?id=50487 :
        - add a blacklist for libxslt-1.1.25 which has a deadlock that
        hangs a test.
    - Fixed https://rt.cpan.org/Ticket/Display.html?id=52422 :
        - Unexpected webserver dependency in test
    - Updated the version control instructions in the README to bitbucket.org.
2012-04-22 12:15:39 +00:00
wiz
765d235f00 Update to 1.96:
1.96            Fri Mar 16 21:01:09 IST 2012
    - Apply a patch to add leading minus signs to the commands of
    install_sax_driver.
        - This makes the make process succeed even if they fail.
        - Fixes https://rt.cpan.org/Public/Bug/Display.html?id=75007
        - Thanks to POPEL for the report, and to Petr Pajas for the patch.
    - Apply a patch from Tim Brody to skip_all on
    t/49callbacks_returning_undef.t when URI.pm's version is below 1.35.
        - Thanks to Tim Brody for the patch.
        - Fixes the problem reported in http://www.city-fan.org/tips/PaulHowarth/Blog/2011-09-06.

1.95            Tue Mar  6 10:35:26 IST 2012
    - Got rid of a broken test (at least with recent libxml2s) in
    t/03doc.t :
        - https://rt.cpan.org/Ticket/Display.html?id=75403
        - The problem was that the test tested for an undefined XML
        namespace, a behaviour which was changed in a recent libxml2
        release.
        - Thanks to vcizek for the report.

1.94            Sat Mar  3 22:05:18 IST 2012
    - Fix XML::LibXML::Element tests for ineqaulity with == and eq.
        - Fixes https://rt.cpan.org/Ticket/Display.html?id=75505 .
        - Thanks to Mark Overmeer for the report and for a preliminary patch
        to t/71overload.t .

1.93            Mon Feb 27 11:15:50 IST 2012
    - Fix XML::LibXML::Element comparision with == and eq.
        - Fixes https://rt.cpan.org/Ticket/Display.html?id=75257 ,
        https://rt.cpan.org/Ticket/Display.html?id=75293 ,
        https://rt.cpan.org/Ticket/Display.html?id=75259 .
        - Thanks to Toby Inkster for a preliminary patch (that was modified by
        me) and to the various people who reported the problem.

1.92            Tue Feb 21 19:00:48 IST 2012
    - Fix for test failure on perls < 5.10.
        - Fixes https://rt.cpan.org/Public/Bug/Display.html?id=75195
        - Thanks to Paul for the report, and for a patch that was not
        accepted.

1.91            Tue Feb 21 13:57:54 IST 2012
    - Overload hash dereferencing on XML::LibXML::Elements, to provide
    access to the element's attributes.
        - See XML::LibXML::AttributeHash for details.
        - Thanks to Toby Inkster.
    - Pull some commits from Toby Inkster to add more convenient methods
    to XML::LibXML::NodeList such as sort, map, grep, etc.
        - https://bitbucket.org/shlomif/perl-xml-libxml/pull-request/11/xml-libxml-nodelist-improvements
        - Thanks, Toby!
    - Printed some warnings regardless if DEBUG is on.
        - Thanks to http://search.cpan.org/~mstrout/ for the suggestion.

1.90            Sun Jan  8 20:57:58 IST 2012
    - Pull a commit from Aaron Crange to fix compilation bugs in Devel.xs:
        - local variable declarations must be in the PREINIT section,
        not `CODE`, at least for some compiler/OS combinations.
        - Thanks, Aaron!

1.89            Sat Dec 24 09:46:26 IDT 2011
    - Apply a patch with spelling fixes by Kevin Lyda :
        - https://rt.cpan.org/Public/Bug/Display.html?id=71403
        - Thanks to Kevin.
    - Apply a pull request by ElDiablo with the implementation of
    lib/XML/LibXML/Devel.pm .
    - Adjust the Win32 Build Instructions in the README file.
        - Thanks to Christopher J. Madsen.
2012-04-22 12:14:47 +00:00
wiz
4c8d4ac37a Update to 0.22:
0.22	Tuesday 7th February, 2012
	POD spelling corrections. (rt #22113)
	Add "unimport" to the stoplist. (rt #33914)
2012-04-22 12:11:53 +00:00
wiz
81e028f254 Update to 1.03:
## 2012-01-11  Release 1.03

Documentation spelling fixes and tweaks to improve testing on Windows.
2012-04-22 12:10:23 +00:00
joerg
6d8a526518 Fix messed up configure.sh. 2012-04-19 21:05:45 +00:00
drochner
e7517e2d47 update to 1.5
changes:
-many more lexers
-bugfixes
2012-04-17 17:35:25 +00:00
wiz
1482b074c3 Reset maintainer, developer resigned. 2012-04-15 22:07:37 +00:00
wiz
d859d3c992 Reset maintainer, developer resigned. 2012-04-15 22:07:36 +00:00
wiz
3249e0a82f Reset maintainer, developer has left the building 2012-04-15 22:00:58 +00:00
wiz
a4587ceaa6 Update to 2.0.7. Fix a bug in buildlink3.mk while here.
2012-03-22 Raptor2 Version 2.0.7 Released

   CVE-2012-0037 fixed
   Removed Expat support
   Removed internal Unicode NFC code for better and optional ICU
   Added options for denying file requests and XML entity loading
   Added options for SSL certificate verifying
   Fixed reported issues: 0000448 and 0000469
2012-04-15 15:43:43 +00:00
obache
46006a9c1b + p5-XML-SAX-ExpatXS 2012-04-15 01:51:39 +00:00
obache
3b1dd61f0d Import p5-XML-SAX-ExpatXS-1.31 as textproc/p5-XML-SAX-ExpatXS.
Based on packaged by tnozaki@.

This module is a direct XS implementation of Perl SAX parser
using Expat. XML::SAX::Expat is implemented as a layer over
XML::Parser.
2012-04-15 01:50:08 +00:00
gls
078b1a48f4 Update textproc/asciidoc to 8.6.7
Upstream changes:

No major enhancements but quite a few bug fixes which, among other things,
fixes Jython compatibility and improves Windows compatibility.

All additions and changes

    Vim syntax highlighter: highlight entity refs in macro arguments.

    Added files with .asciidoc extension to Vim file type detection. Patch
submitted by Dag Wiers.

    Added replacement3 substitution to enable ODT whitespace processing.

    Added unbreakable option to XHTML and HTML 5 backends.

    Implemented toc::[] block macro and toc-placement attribute for HTML
backends to allow the Table of Contents placement to be set manually by the
author.

    Added FAQs: How can I control page breaks when printing HTML outputs? and
Is it possible to reposition the Table of Contents in HTML outputs?.

    Added --backend and --backend-opts options to the a2x command to allow a2x
to use backend plugin code extensions. Patch submitted by Lex Trotman.

    Added args block attribute to source highlight blocks to allow arbitrary
parameters to be passed to the source highlighters.

    If the ascii-ids attribute is defined then non-ascii characters in
auto-generated IDs are replaced by their nearest ascii equivalents (to work
around DocBook processor limitations).

    Added global blockname attribute which is dynamically updated to identify
the current block. See discussion list.

    xhtml11, html5 backends: Include book part TOC entries for multi-part
books. Patch submitted by Loïc Paillotin.

    Removed code filter example from the AsciiDoc User Guide so that backends
implemented as external plugins can compile the manual. See discussion list.

    If the delimited block skip option is set then do not consume block title
and attributes. This makes it possible for the comment delimited blocks to use
an attribute list (previously the comment delimited block was hardwired to skip
preceding attributes and titles). See discussion list.

    Added backend-confdir intrinsic attribute.

Bug fixes:

    FIXED: slidy backend: broken stylesheet attribute. Patch submitted by
Micheal Hackett.

    FIXED: Restored missing themes to zip file distribution archive.

    FIXED: Grammatical error in error messages. Patch submitted by Dag Wieers.

    FIXED: Use configured normal substitution in preference to the default one.

    FIXED: The eval block macro would execute multiple times if it evaluated to
None.

    FIXED: Duplicated entries in TOC of large document. Patch submitted by
Sebastien Helleu.

    FIXED: Python 2.4 backward incompatibility.

    FIXED: 8.6.6 regression broke Jython compatibility. See discussion list.

    FIXED: Leaky file handles in a2x and music and latex filters which created
incompatibility problems for Jython.

    FIXED: All Python filters are executed with the same Python interpreter
that executes the asciidoc parent (previously filters were hardwired to execute
the python interpreter). This prevents Python mix-ups.

    FIXED: Microsoft Windows shelled command-line truncation that caused
shelled commands to fail e.g. the data-uri attribute failure.
2012-04-13 21:22:20 +00:00
wiz
aca3d39616 + the_silver_searcher. 2012-04-13 11:33:25 +00:00
wiz
4ed6aca02a Initial import of the_silver_searcher-0.5.
Why use ag?

* It searches through code about 3x-5x faster than ack.
* It ignores files matched by patterns in your .gitignore and .hgignore.
* If there are files in your source repo that you don't want to
  search, just add their patterns to a .agignore file.
* It's written in C instead of perl, the lesser of two evils :)
* The binary name is 33% shorter than ack!
2012-04-13 11:32:58 +00:00
ryoon
896bf072d5 Fix pkg/43187
* Add ECHO_C to end of version string. This reduce unnecessary newline.
  Thank you, obache@.
2012-04-12 13:59:59 +00:00
sno
fa16e24c2f Updating package for CPAN module YAML in textproc/p5-YAML from 0.77 to 0.80
Upstream changes:
version: 0.80
date:    Fri Feb 10 12:56:08 PST 2012
changes:
- Patch from https://rt.cpan.org/Ticket/Display.html?id=73702
- Make YAML::Node subclass YAML::Mo::Object as well as Exporter (MSTROUT)

version: 0.79
date:    Wed Feb  8 17:25:55 PST 2012
changes:
- Peter Scott and others noticed Mo::xxx causing problems on newer perls.
  Removed xxx for now.

version: 0.78
date:    Sun Jan  1 23:53:57 PST 2012
changes:
- Apply patch from ANDK++ to deal with B::Deparse changes.
2012-04-10 13:53:34 +00:00
sno
d10624a1b8 Updating package for CPAN module YAML::LibYAML in textproc/p5-YAML-LibYAML
from 0.37 to 0.38

Upstream changes:
version: 0.38
date:    Tue Jan  3 22:56:01 PST 2012
changes:
- Apply SPROUT++ deparse test patch. Thanks!
2012-04-10 13:50:04 +00:00
sno
d4177a0e2d Updating package for CPAN module YAML::Syck/JSON::Syck in
textproc/p5-YAML-Syck from 1.19 to 1.20

Upstream changes (since 1.19):
[Changes for 1.20] (JSON::Syck 0.43) - 2012-02-14]

* Tests all green on CPAN Testers. releasing to public.

[Changes for 1.20_01] (JSON::Syck 0.43_01) - 2012-02-11]

* Add test to assure META.yml is up to date before release
* Fix for RT 70933 - disable check for empty file handle in LoadFile calls
* Remove call to non-existant code YAML::Syck::_is_openhandle.
* Fix for RT 74785 - compiling with -Werror=format-security fails
2012-04-10 13:44:29 +00:00
sno
d76141c1a4 Updating package for CPAN module YAML::Tiny in textproc/p5-YAML-Tiny from
1.50 to 1.51.

Upstream changes:
1.51 Sun 11 Mar 2012
	- The fix described in 1.48 was incorrect. Removing an additional
	  if $@ to fix it properly.
	- Make the Scalar::Util version check resistant to bugs caused by
	  development versions.
2012-04-10 13:26:21 +00:00
wiz
4773e0d7e2 All supported python versions in pkgsrc support eggs, so remove
${PLIST.eggfile} from PLISTs and support code from lang/python.
2012-04-08 20:21:41 +00:00
wiz
4faa202860 Remove python24 and all traces of it from pkgsrc.
Remove devel/py-ctypes (only needed by and supporting python24).
Remove PYTHON_VERSIONS_ACCEPTED and PYTHON_VERSIONS_INCOMPATIBLE
lines that just mirror defaults now.
Miscellaneous cleanup while editing all these files.
2012-04-08 19:08:44 +00:00
markd
3101427fde Update to 0.62 (0.48 tarball not still available)
Release 0.62 - 11 January, 2012
-------------------------------
* Releasing stable

Release 0.62_01 - 7 January, 2012
---------------------------------
* Better installation under Windows, and specifically, Win 7.

Release 0.61 - 20 October, 2011
-------------------------------
* Thanks to Philip Kime (again), we have STDERR working on Windows
  (hopefully)
* Make Windows tests no longer ignored.

Release 0.60 - 31 July, 2011
----------------------------
* Fix test in t/output.t

Release 0.59 - 28 July, 2011
----------------------------
* Add comma at the end of each and any line in BibTeX record
  as all modern parsers support them.
* Rewrote some tests in t/output.t

Release 0.58 - 21 June, 2011
----------------------------
* Remove some old documentation about btparse.
* Warn users when installing on non standard library path.

Release 0.57 - 17 June, 2011
----------------------------
* Mark two tests that fail from time to time as TODO for now.

Release 0.56 - 8 June, 2011
---------------------------
* Use File::Temp instead of POSIX. Fixes some Win32 builds.
  Thanks to Alex Gough for reporting this build problem.

Release 0.55 - 25 April, 2011
-----------------------------
* Added some extra checks for lib64 dir.
* Rewrote some code on MyBuilder.pm
* Add soname to library build.

Release 0.54 - 17 April, 2011
-----------------------------
* Applied patch to work under lib64 archs (hopefuly)
 (Guillaume Rousse)

Release 0.53 - 10 March, 2011
-----------------------------
* Working under Cygwin (Philip Kime)
* Changed Windows testing mode (based on Cygwin approach)
  - getting rid of 00_ and zz_ test files. Great!

Release 0.52 - 15 February, 2011
--------------------------------
* More name abbreviation tweeks (Philip Kime)

Release 0.51 - 1 February, 2011
-------------------------------
* Fixed environment during Linux/Unix testing

Release 0.50 - 1 February, 2011
-------------------------------
* Fixed name abbreviation when name has hiffens (Philip Kime)

Release 0.49 - 27 January, 2011
-------------------------------
* Small patch by Philip Kime to enlarge macros buffer size.
* Fixed Build.PL to clean some object files.
2012-04-05 22:43:47 +00:00
sbd
ede5bed158 Mark packages as BROKEN if using "pkg" package format on Linux. 2012-04-05 02:58:24 +00:00
obache
14d3d60f3c Change behavior of libpthread handling
* Disable linkage with pthread for FreeBSD/DragonFly/NetBSD, they have
  pthread_* () stubs in libc (it result in same as the previous behavior).
  * but NetBSD<4.99.36 does not have pthread_equal() stub in libc,
    so define weak reference to it.
* Treat OpenBSD and MirBSD same as Linux to avoid linkage with libpthread.
* Others will be linked with pthread, fixes PR 46254.

tested NetBSD-5.1.2, and confirmed fixed on NetBSD-4.0.1 and OpenBSD-5.0.

Bump PKGREVISION.
2012-04-03 09:08:33 +00:00
markd
070082abcc allow ExtUtils-CBuilder from perl>=5.14 2012-04-03 08:51:28 +00:00
markd
d9ee28a84f Update to 0.48
Release 0.48 - 23 September, 2010
---------------------------------
* depend on ExtUtils::LibBuilder for library compilation.

Release 0.47 - 18 September, 2010
---------------------------------
* fixed a problem with 160 char being considered whitespace on many unixes.
  Thanks, again, to Philip Kime :)

Release 0.46 - 24 August, 2010
------------------------------
* support entry keys in unicode. Thanks to Philip Kime.

Release 0.45 - 8 June, 2010
---------------------------
* fixed ldconfig call under linux, now only if the user is root.
* fixed library installation path when user specifies different
  installbase during install action.
  (thanks to François for both fixes)

Release 0.44 - 9 May, 2010
--------------------------
* RPath information on link - Thanks to Jens Rehsack
* removed dependency on 'UNIVERSAL' as it is now built-in
  (change for perl 5.12 deprecation)

Release 0.43 - 18 March, 2010
-----------------------------
* small fix on warnings issue
* run ldconfig after installing the .so file under linux
2012-04-03 08:43:48 +00:00
obache
a74f4b1c62 Update expat to 2.1.0, contains security fixes.
Release 2.1.0 Sat March 24 2012
        - Bug Fixes:
          #1742315: Harmful XML_ParserCreateNS suggestion.
          #2895533: CVE-2012-1147 - Resource leak in readfilemap.c.
          #1785430: Expat build fails on linux-amd64 with gcc version>=4.1 -O3.
          #1983953, 2517952, 2517962, 2649838:
                Build modifications using autoreconf instead of buildconf.sh.
          #2815947, #2884086: OBJEXT and EXEEXT support while building.
          #1990430: CVE-2009-3720 - Parser crash with special UTF-8 sequences.
          #2517938: xmlwf should return non-zero exit status if not well-formed.
          #2517946: Wrong statement about XMLDecl in xmlwf.1 and xmlwf.sgml.
          #2855609: Dangling positionPtr after error.
          #2894085: CVE-2009-3560 - Buffer over-read and crash in big2_toUtf8().
          #2958794: CVE-2012-1148 - Memory leak in poolGrow.
          #2990652: CMake support.
          #3010819: UNEXPECTED_STATE with a trailing "%" in entity value.
          #3206497: Unitialized memory returned from XML_Parse.
          #3287849: make check fails on mingw-w64.
          #3496608: CVE-2012-0876 - Hash DOS attack.
        - Patches:
          #1749198: pkg-config support.
          #3010222: Fix for bug #3010819.
          #3312568: CMake support.
          #3446384: Report byte offsets for attr names and values.
        - New Features / API changes:
          Added new API member XML_SetHashSalt() that allows setting an intial
                value (salt) for hash calculations. This is part of the fix for
                bug #3496608 to randomize hash parameters.
          When compiled with XML_ATTR_INFO defined, adds new API member
                XML_GetAttributeInfo() that allows retrieving the byte
                offsets for attribute names and values (patch #3446384).
          Added CMake build system.
                See bug #2990652 and patch #3312568.
          Added run-benchmark target to Makefile.in - relies on testdata module
                present in the same relative location as in the repository.
2012-04-01 08:52:43 +00:00
hans
a23bc67cc5 Make CFLAGS.SunOS specific to gcc>=4.6
On SunOS, gcc 4.6 and later enable c99 and XPG6 features for c++, but
the configure check for iconv uses plain c and gets a pre-XPG6 prototype
for iconv(). This inconsistency then leads to failure when building
preconv.
2012-03-31 20:17:13 +00:00
obache
974dde24c6 fix pkgsrc-wip reference in buildlink3.mk
PR 46252.
2012-03-24 12:48:58 +00:00
obache
e0878ebbfa Let bin/collateindex.pl to be executable and add runtime dependency on perl.
PR 46124.

Bump PKGREVISION.
2012-03-24 08:17:57 +00:00
wiz
c5bc095898 Bump PKGREVISION for man pages fix. 2012-03-22 21:43:54 +00:00
wiz
60dda6ec27 Avoid some confusion by not putting to-be-documented macros at the
beginning of a line.
2012-03-22 21:43:35 +00:00
obache
cbbd8527fa Bump PKGREVISION refrecting the default Ruby's version change. 2012-03-22 15:33:43 +00:00
sno
e5d68d91a0 Updating package for Perl5 module Text::CSV_XS from CPAN in
textproc/p5-Text-CSV_XS from 0.86 to 0.88.

Upstream changes:
0.88	- 2012-03-16, H.Merijn Brand
    * Fix for $/ in 0.86 broke parsing fields that contain excessive $/'s
2012-03-22 14:13:06 +00:00
wiz
c94553c0c0 Update to 0.5.0.
0.5.0	Use raptor2 and openssl for MD5
2012-03-21 10:04:11 +00:00
wiz
c6754c4017 raptor and raptor2 packages conflict with due to bin/rapper and its
man page.
2012-03-21 07:39:43 +00:00
cheusov
abdb458bc6 Use the full path to pkgsrc version of perl. This may unbreak the package in some setups 2012-03-20 21:08:23 +00:00
dholland
bee99ac63c Don't use paths in wip. HI MARKD 2012-03-20 15:18:05 +00:00
taca
6e5a782359 Update ruby-libxml to 2.3.2.
= Release History

== 2.3.2 / 2012-03-20 Charlie Savage

* Define various canonicalize constants to support libxml2 versions
  older than 1.1.25 (thanks Apple!)

== 2.3.1 / 2012-03-20 Charlie Savage

* Yanked - didn't fix the OSX canonicalize issue
2012-03-20 13:50:09 +00:00
taca
f922fdaf1d Update ruby-libxml to 2.3.0.
= Release History

== 2.3.0 / 2012-02-22 Ryan Johnson

* Add ability to insert new PI-nodes into the xmltree (Axel Struebing).

* Added full pass-through access to libxml2 xmlC14NDocDumpMemory method via
  LibXML::XML::Document#canonicalize method with optional arguments.

* Added full test data for C14N based off of W3C spec.
  (http://www.w3.org/TR/xml-c14n#Examples)

* Update sax handler to support encodings on Ruby 1.9 and higher.
2012-03-20 13:45:32 +00:00
obache
454b05b692 Update groonga to 2.0.0.
Release 2.0.0 - 2012/02/29
--------------------------

Improvements
^^^^^^^^^^^^

* [dat] Added 0 length key check.
* [windows] Added missing GCC related DLLs. [groonga-dev,00686]
  [Reported by Suzuki]
* [php] Supported PHP 5.4. [Patch by Daiki Ueno]
* Updated FSF address. [Suggested by Daiki Ueno]
* [fedora] Supported systemd. [Patch by Daiki Ueno]
* [rpm][debian] Changed the default protocol to HTTP from gqtp.
* [rpm][centos] Supported status command.
* Removed needless ``:`` from log message.
* Removed deprecated grn_query. [#1247]
* Reduced needless grn_ctx_at() calls on creating table.
* [pat] Supported cache.
* [tokenizer] Improved tokenizer API.
* Accepted ``@`` as a valid name character.
* [tokenizer] Added a tokenizer based on
  `KyTea <http://www.phontron.com/kytea/>`_.
* Supported :doc:`offline indexing construction </indexing>`.
* [tokenizer] Supported MeCab 0.993. [groonga-dev,00703]
  [Reported by Masaharu YOSHIOKA]
* [windows] Supported MessagePack.

Fixes
^^^^^

* [pat] Fixed a bug that the last node can't be found. [#1258]
* [doc] Fixed links in Japanese page. [Reported by @naoina]
* [doc] Fixed wrong the default value. [Reported by @naoina]
* Fixed a typo. [Reported by Kazuhiko]
* [http] Fixed a bug that ``load`` command error isn't cleared.
  [Reported by @wareohji]
2012-03-20 08:33:16 +00:00
taca
a813e21743 Remove unused patches. I forgot to remove them with previous commit.
Thanks to David Holland.
2012-03-20 01:57:56 +00:00
joerg
3fa6844b90 Drop imake-check logic from X11 components' builtin.mk.
Always use xorg-cf-files and imake from pkgsrc, replacing xpkgwedge.
Always install man pages, not cat pages when using imake.
Unify the various imake PLIST variables in preparation for dropping.
Adjust xbattbar for the new expectations.
2012-03-19 12:34:12 +00:00
markd
8c82c36b3b Add raptor2 2012-03-19 10:15:56 +00:00
markd
25da5e5667 Update to 2.7.4
Bugfixes, port to Raptor 2.  Required for KDE SC 4.8.
2012-03-19 09:46:22 +00:00
markd
1d8ebe5008 Update to 1.0.15
Bug fixes, new features. Requires Raptor V2.
2012-03-19 09:40:08 +00:00
markd
b76ad5ed0f Update to 0.9.28
Various bug fixes, new features and works with raptor2.
2012-03-19 09:26:22 +00:00
markd
3a1af620c0 Import raptor2 version 2.0.6
Version 2 of the Raptor RDF Syntax Library.
2012-03-19 09:12:26 +00:00
markd
5fe161fdfa Update to version 0.7.0
Changes unknown but required for KDE SC 4.8
2012-03-19 08:53:30 +00:00
gls
333cdb0264 Fix PLIST.
Thanks joerg!
2012-03-18 16:04:35 +00:00
taca
603987cf8c Update ruby-xslt to 0.9.9.
0.9.9 :
* Major bug correction
2012-03-18 02:48:30 +00:00
taca
3f64ad542a Update ruby-will-paginate to 3.0.3.
Exact changes are unknown.
2012-03-18 02:47:25 +00:00
taca
fd3ed3e03c Update ruby-stringex to 1.3.2.
Exact changes are unknown.
2012-03-18 02:46:43 +00:00
taca
77412f3dec Update ruby-kramdown to 0.13.5.
Changes are too many to write here, please refer ChangeLog.
2012-03-18 02:45:58 +00:00
taca
5d71f8d456 Update ruby-hpricot to 0.8.6.
= 0.8.6
=== 17 January 2012
* Allow any tags to contain unknown tags (Steven Parkes)
2012-03-18 02:44:58 +00:00
taca
a70ac09ada Update ruby-ferret to 0.11.8.4.
Exact changes are unknown.
2012-03-18 02:44:18 +00:00
taca
a06ccf7f13 Update ruby-coderay to 1.0.5.
Exact changes are unknown.
2012-03-18 02:43:17 +00:00
taca
d305fdd6b2 Update ruby-nokogiri to 1.5.2.
== 1.5.2 / 2012-03-09

Repackaging of 1.5.1 with a gemspec that is compatible with older Rubies. #631, #632.

== 1.5.1 / 2012-03-09

* Features

  * XML::Builder#comment allows creation of comment nodes.
  * CSS searches now support namespaced attributes. #593
  * Java integration feature is added. Now, XML::Document.wrap
    and XML::Document#to_java methods are available.
  * RelaxNG validator support in the `nokogiri` cli utility. #591 (thanks, Dan Radez!)

* Bugfixes

  * Fix many memory leaks and segfault opportunities. Thanks, Tim Elliott!
  * extconf searches homebrew paths if homebrew is installed.
  * Inconsistent behavior of Nokogiri 1.5.0 Java #620
  * Inheriting from Nokogiri::XML::Node on JRuby (1.6.4/5) fails #560
  * XML::Attr nodes are not allowed to be added as node children, so an
    exception is raised. #558
  * No longer defensively "pickle" adjacent text nodes on
    Node#add_next_sibling and Node#add_previous_sibling calls. #595.
  * Java version inconsistency: it returns nil for empty attributes #589
  * to_xhtml incorrectly generates <p /></p> when tag is empty #557
  * Document#add_child now accepts a Node, NodeSet, DocumentFragment,
    or String. #546.
  * Document#create_element now recognizes namespaces containing
    non-word characters (like "SOAP-ENV"). This is mostly relevant to
    users of Builder, which calls Document#create_element for nearly
    everything. #531.
  * File encoding broken in 1.5.0 / jruby / windows #529
  * Java version does not return namespace defs as attrs for ::HTML #542
  * Bad file descriptor with Nokogiri 1.5.0 #495
  * remove_namespace! doesn't work in pure java version #492
  * The Nokogiri Java native build throws a null pointer exception
    when ActiveSupport's .blank? method is called directly on a parsed
    object. #489
  * 1.5.0 Not using correct character encoding #488
  * Raw XML string in XML Builder broken on JRuby #486
  * Nokogiri 1.5.0 XML generation broken on JRuby #484
  * Do not allow multiple root nodes. #550
  * Fixes for custom XPath functions. #605, #606 (thanks, Juan Wajnerman!)
  * Node#to_xml does not override :save_with if it is provided. #505
  * Node#set is a private method [JRuby]. #564 (thanks, Nick Sieger!)
  * C14n cleanup and Node#canonicalize (thanks, Ivan Pirlik!) #563
2012-03-17 16:51:05 +00:00
taca
b945cc46bd Update ruby-multi_json package to 1.1.0.
Aded Apple's NSJSONSerialization support.
2012-03-17 16:47:41 +00:00
taca
7735c6d1d5 Update ruby-json and ruby-json-pure package to 1.6.5.
2012-01-15 (1.6.5)
  * Vit Ondruch <v.ondruch@tiscali.cz> reported a bug that shows up when using
    optimisation under GCC 4.7. Thx to him, Bohuslav Kabrda
    <bkabrda@redhat.com> and Yui NARUSE <naruse@airemix.jp> for debugging and
    developing a patch fix.
2011-12-24 (1.6.4)
  * Patches that improve speed on JRuby contributed by Charles Oliver Nutter
    <headius@headius.com>.
  * Support object_class/array_class with duck typed hash/array.
2012-03-17 16:46:24 +00:00
wiz
8f3f663ec6 + mythes. 2012-03-17 10:58:02 +00:00
wiz
8bf667d2ac Initial import of mythes-1.2.2, packaged by Francois Tigeot for wip.
MyThes is a simple thesaurus that uses a structured text data file
and an index file with binary search to lookup words and phrases
and return information on part of speech, meanings, and synonyms.
It was written to provide a thesaurus for the OpenOffice.org project.
2012-03-17 10:57:37 +00:00
wiz
ee324fdd19 + libexttextcat. 2012-03-16 17:30:48 +00:00
wiz
52c13ded68 Initial import of libexttextcat-3.2 from wip, packaged by Francois Tigeot.
Libexttextcat is a library with functions that implement the
classification technique described in Cavnar & Trenkle, "N-Gram-Based
Text Categorization" . It was primarily developed for language
guessing, a task on which it is known to perform with near-perfect
accuracy.
2012-03-16 17:30:16 +00:00
obache
03d5e38f66 Bump PKGREVISION from default python change to 2.7. 2012-03-16 04:31:14 +00:00
obache
34a560cbb0 Bump PKGREVISION from default python to 2.7. 2012-03-15 11:53:20 +00:00
joerg
f7e5926623 Not MAKE_JOBS_SAFE. 2012-03-15 01:17:28 +00:00
marino
0a3faf0a2e textproc/yelp-xsl: USE_TOOLS+= msgfmt 2012-03-14 15:09:23 +00:00
tez
8dfdea155a Fix for CVE-2011-3970 from:
http://git.gnome.org/browse/libxslt/commit/?id=fe5a4fa33eb85bce3253ed3742b1ea6c4b59b41b
per https://bugzilla.redhat.com/show_bug.cgi?id=788826
2012-03-12 18:26:35 +00:00
adam
385866b836 Changes 1.16.40:
Bug fixes.
2012-03-12 15:47:12 +00:00
obache
f91667c22f Change MASTER_SITES to http one. 2012-03-11 11:50:21 +00:00
wiz
73a1e1f1c2 For https, let's at least all use the same tool (curl) until we have
a better solution.
2012-03-11 10:33:38 +00:00
joerg
c1dd717b2f Fix linkage on systems where separate -ldb is required. 2012-03-10 16:06:35 +00:00