Commit graph

7458 commits

Author SHA1 Message Date
gdt
54fff638d6 Remove tex2page.
The current version is ancient, and doesn't work with guile 1.8.
While there is upstream activity, there are no release tarballs or
even tags in git.  A request to upstream asking for release tarballs
timed out.  I don't have any reason to think anyone is using this
package.
2014-12-10 00:58:33 +00:00
wiz
aada165211 + p5-Text-Hunspell. 2014-12-08 09:21:17 +00:00
wiz
0f4bde1b13 Import p5-Text-Hunspell-2.09 as textproc/p5-Text-Hunspell.
This module provides a Perl interface to the OO Hunspell library.

Provided by David H. Gutteridge in PR 49032.
2014-12-08 09:21:03 +00:00
wiz
321f0fdd6a Update to 2014.12.5:
2014.12.5
=========
----

* Feature: Update `README.md` with usage examples.
* Fix #35: Remove `py_modules` from `setup.py`.
* Fix #36: Excludes tests from being installed as a separate module.
* Fix #37: Don't hardcode the path to the installed binary.
* Fix: Readme typo in running cli.
* Feature #40: Extract cli part to ``cli`` module.
* Feature #42: Bring python version compatibility to ``compat.py`` module.
* Feature #41: Extract utility/helper methods to ``utils`` module.
* Fix #45: Does not accept standard input when running under Python 3.
* Feature: Clean up ``ChangeLog.rst`` for version and date numbers.
2014-12-07 17:27:25 +00:00
rodent
947d479bae Use ${EGG_INFODIR} since that variable is now available. 2014-12-07 17:09:09 +00:00
wiz
8c0c52a654 + py-ftfy. 2014-12-07 09:53:50 +00:00
dholland
012325950b oops, whitespace. 2014-12-06 19:05:07 +00:00
dholland
251cb2fc9c Add option (off by default) to build gtk support. From PR 44878 by
David H. Gutteridge, with some minor adjustments.

Plus a couple small patches to make gtk support actually build. :-/
2014-12-06 19:04:13 +00:00
rodent
94b059da87 +py-ftfy 2014-12-06 16:15:08 +00:00
obache
cb702d88ad Add chinese to CATEGORIES. 2014-12-04 12:06:10 +00:00
rodent
4ac45e9404 ====================
What's new in 7.0.0
====================

Merge to upstream Subversion revision 715; upstream code changelog:
   - New APIs for ShortNumberInfo. The old APIs have been deprecated and will be
     removed in an upcoming release.
2014-12-03 22:41:09 +00:00
rodent
1b844e4955 Updated to 0.9. No longer depends on py-six. Fixes:
ValueError: timestamp out of range for platform time_t
2014-12-03 22:25:15 +00:00
obache
724d90271c Update groonga to 4.0.8.
Release 4.0.8 - 2014/11/29
--------------------------

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

* [deb] Supported Ubuntu 12.04 again because Travis-CI runs on it.
* [mruby] Supported pretty print - ``"pp"`` for debugging. And supported to
  show internal objects more descriptive format when inspecting it.
* Supported full text search query without index if one column is specified
  for ``--match_columns`` even though sequential search is executed
  by ``--query`` and ``--match_columns`` combination.
  [groonga-dev,02902] [Reported by Atsushi Shinoda]
* [experimental] :doc:`/reference/functions/in_values` supports auto sequential
  search mode. There is a case that sequential search is faster than index search when
  the number of narrowed down records is small enough in contrast to
  the number of expected records to narrow down by ``in_values`` with
  ``AND`` operation which use indexes.
  The value of ``GRN_IN_VALUES_TOO_MANY_INDEX_MATCH_RATIO`` is used as
  threshold whether Groonga execute sequential search or search with indexes in
  such a case.
* [mruby] Supported to load relative path of script.
* Supported test suite to write query optimizer test more easily with
  mruby enabled build.
* Supported offline index construction for token filters.
  [GitHub#239] [Patch by Naoya Murakami]
* [experimental] :doc:`/reference/functions/between` supports auto sequential search mode.
  Use the value of ``GRN_BETWEEN_TOO_MANY_INDEX_MATCH_RATIO`` as threshold.
  Basic concept is similar to ``GRN_IN_VALUES_TOO_MANY_INDEX_MATCH_RATIO``.
* [experimental] Supported multiple drilldowns for :doc:``/reference/command/select``
  command. The syntax is extended to support this feature. The new one is
  ``--drilldown[LABEL1].keys COLUMN1,COLUMN2`` for keys,
  ``--drilldown[LABEL1].output_columns _value.COLUMN1,_value.COLUMN2,_nsubrecs`` for output columns.
  In the previous versions, a client application must implement by oneself for drilldown
  by multiple keys. Use ``_key[N]`` for ``--drilldown[LABEL1].output_columns`` to show
  original value of key in records.
* Supported to search ``'reference_column @ "query"'`` without index.
* [experimental] Added :doc:`/reference/commands/range_filter` command. It is faster than select
  command to fetch specific range of records in most cases, because it doesn't returns
  the number of matched records. There are limitations which doesn't support drilldown and so on.
  Thus, ``range_filter`` is suitable for extracting first ``N`` records in specific range for ranking
  or something else.
* [httpd] Supported ``groonga-httpd`` on windows.
* Supported vector column for drilldown.
* [deb] Changed ``groonga-httpd`` as default HTTP server package.
  ``groonga-server-http`` is deprecated. Note that :doc:`/reference/executables/groonga-server-http`
  functionality itself is still exists in Groonga. If you just want to use simple HTTP server
  in traditional way, specify proper arguments by command line for :doc:`/reference/executables/groonga`.
* Added configuration file for Windows CI on AppVeyor.
  [groonga-dev,02970,02981] [Patch by Hiroshi Hatake]

Fixes
^^^^^

* [doc] Fixed duplicated execution example path about
  :doc:`/reference/commands/table_create`.
  [GitHub groonga.org#14] [Reported by Masafumi Yokoyama]
* Fixed a bug that nested indexed full text search against ``X._key``
  returns empty results.
* Fixed flags parameter which is strict in BSD ``mkostemp(3)``.
  [GitHub#240] [Patch by Jun Kuriyama]
* Fixed a bug that select command reports invalid value type (table)
  as index column value type. It was fixed to ``UInt32``.
  Note that it affects only the value of response header.
  The search results is not changed at all.
* Fixed a bug that compare operations such as ``<``, ``<=``, ``>``, ``>=``, ``!=`` with
  Time and String type returns invalid results.
* Fixed a bug that prefix search can't be executed against single character such as
  ``"x*"``. [GitHub#242] [Patch by Naoya Murakami]
* Fixed a memory leak on drilldown ``ShortText`` value with ``--filter``.
* Fixed missing ``","`` for ``"DDL:set_token_filters"`` log.
  [Reported by Naoya Murakami]

Thanks
^^^^^^

* Atsushi Shinoda
* Masafumi Yokoyama
* Naoya Murakami
* Jun Kuriyama
* Hiroshi Hatake
2014-12-03 08:47:11 +00:00
ryoon
fad2425186 Update to 0.45
Changelog:
=======================================================================

* Major changes in release 0.45 (2013-08-21)

po4a:
 * Fix usage of File::Temp::tempfile to allow using Perl >= 5.18.

Asciidoc:
 * Make it a standalone format.

Docbook:
 * Make <beginpage> inline.

Ini:
 * Add key parameter as an automatic comment.  This allows using
   po4a-gettextize on ini files.

LaTeX:
 * Fix handling of optional parameters in newtheorem command.

Po:
 * Fix computation of timezone written into PO files.

Sgml:
 * Fix failing tests with recent Docbook DTD.

=======================================================================

* Major changes in release 0.44 (2012-10-21)

translations:
 * Start of Portuguese translation

=======================================================================

* Major changes in release 0.43 (2012-10-17)

po4a:
 * Add --porefs option to change how file locations are written into
   the POT file (and thus into the PO files also).

po4a-updatepo po4a Po:
 * Extend the --porefs option, add a new 'counter' value to replace
   line number by an increasing counter.
   An optional ",nowrap" or ",wrap" specifier can be added to tell
   whether file locations are written on a single line or wrapped on
   several lines.  Default is ",nowrap", it will be changed to ",wrap"
   in a future release.

Man:
 * Make .UR/.UE macros inline.
 * Add macros used in several NetBSD man pages: %I %U Brc Bro Lp Lk

Text:
 * Fix two line titles in AsciiDoc format.
 * Let AsciiDoc format handle many more styles.
 * Add support for automatic comments in AsciiDoc format.

=======================================================================

* Major changes in release 0.42 (2012-05-16)

po4a:
 * Allow adding command-line options after config file.

Text:
 * Add support for control files.

msguntypot:
 * Do not remove obsolete entries from PO files.

documentation translations:
 * New German translations
 * Updated Spanish translations
 * Updated French translations
 * Updated Japanese translations
 * Updated Polish translations

=======================================================================

* Major changes in release 0.41 (2010-12-01)

po4a-updatepo:
 * --previous flag was not passed to msgmerge

po4a:
 * Do no more generate backups for PO files.
 * Fix the --srcdir option, master file was not found.
 * Expand variables when reading @-prefixed addenda files.

Text:
 * Remove trailing newline in titles from PO files

Packaging:
 * Remove Makefile, all processing is performed by Build.PL

=======================================================================

* Major changes in release 0.40.2 (2010-11-30)

documentation:
 * Improve English style (following recommendations from man(7))

translations:
 * Start of Danish translation
 * Removal of Arabic translation, only one string was translated
 * Updated Vietnamese translation
 * Updated Slovenian translation
 * Updated Basque translation
 * Updated French translation
 * Updated Japanese translation
 * Updated Czech translation
 * Updated German translation
 * Updated Ukrainian translation
 * Updated Esperanto translation
 * Updated Estonian translation
 * Updated Russian translation

documentation translations:
 * Updated Spanish translations
 * Updated French translations
 * Updated Japanese translations
 * Updated Polish translations

=======================================================================

* Major changes in release 0.40.1 (2010-08-25)

Po:
 * Change header entry to be consistent with xgettext when creating
   POT files: replace Content-Transfer-Encoding: ENCODING" by
   "Content-Transfer-Encoding: 8bit\n" and add a Language field.

documentation:
 * Improve English style (proper casing, replace cvs by VCS, etc).

translations:
 * Updated French translations
 * Updated Spanish translations
 * Updated Japanese translations
 * Updated Esperanto translations
 * Updated Swedish translations
 * Updated Russian translations
 * Updated Estonian translations
 * Updated Ukrainian translations
 * Updated Czech translations
 * Updated Portuguese translations
 * Updated German translations

Project resources:
 * We migrated from CVS to SVN.  All CVS history has been converted.
   See http://svn.debian.org/viewsvn/po4a/
   The standard SVN layout is used (with top-level /trunk, /branches
   and /tags directories), and the files to generate the website
   (html/, po/html.cfg and po/www) are moved into a new /web
   top-level directory.

=======================================================================

* Major changes in release 0.40 (2010-07-27)

po4a-gettextize:
 * When it fails, recode msgstr into current charset before
   printing it.

Text:
 * Fix failures "Unknown option: copyright-holder"

Man:
 * Support font modifiers in the form \f(XX and \f[FONT-NAME]

=======================================================================

* Major changes in release 0.39 (2010-02-02)

po4a
 * New syntax for addenda, path may be preceded by modifiers.

=======================================================================

* Major changes in release 0.38 (2010-01-14)

po4a
 * Exit with an error if master file specified in a po4a configuration
   file does not exist.

po4a, po4a-updatepo:
 * --previous is activated by default.
 * Use --no-previous to support versions of gettext earlier than 0.16.

Xml:
 * Fix handling of multi-lines placeholder tags.
 * New option addlang.

Pod:
 * Detect the encoding based on the input's =encoding line.

=======================================================================

* Major changes in release 0.37.1 (2009-11-22)

po4a-build:
 * Fix UTF8 handling and names of perl modules for section 3.
 * Fix bug that caused translated manpages to be overwritten.

=======================================================================

* Major changes in release 0.37.0 (2009-11-20)

po4a-build:
 * New script for one-stop generation of untranslated and translated
 documentation from DocBook XML and POD sources.

translations:
 * Updated Spanish translations.

===============================================================================
* Major changes in release 0.36.6 (2009-11-07)

Text:
 * Added options breaks and tabs.

po4aman-display-po
  * Fixed bashism.

translations:
 * Added Vietnamese translation
 * Updated Czech translation
 * Updated Spanish translation of the documentation

===============================================================================
* Major changes in release 0.36.5 (2009-09-10)

Sgml:
  * Fix detection of entities in the prolog.

translations:
 * Updated German translation
 * Updated Portuguese translation

===============================================================================
* Major changes in release 0.36.4 (2009-08-30)

po4a
 * Added options --srcdir and --destdir. They permit to strip the base
   directory for the input and output documents (in the config file and in
   the references generated in the PO files).

po4a-updatepo
 * Added options --msgid-bugs-address, --copyright-holder, --package-name,
   --package-version to control the generation of the PO header.

translations:
 * Updated Basque translation
 * Updated Czech translation
 * Updated Esperanto translation
 * Improved Estonian translation.
 * Updated French translation
 * Updated Russian translation
 * Updated Spanish translation.
 * Updated Swedish translation.

===============================================================================
* Major changes in release 0.36.3 (2009-07-22)

Bug fix release.
po4a-gettextize's new options were rejected by the modules.

===============================================================================
* Major changes in release 0.36.2 (2009-07-21)

po4apod-display-po
 * New script to display previews of POD translations.
po4a-gettextize
 * Added options --msgid-bugs-address, --copyright-holder, --package-name,
   --package-version to control the generation of the PO header.

Text:
 * Avoid the translation of some markups: title and horizontal rules.
 * Improved Markdown support.
Xml:
 * New option customtag for inline tags that should not be treated as a
   tag (e.g. they do not need to be closed).
Wml:
 * Fix handling of non ASCII input documents.

===============================================================================
* Major changes in release 0.36.1 (2009-04-05)

TeX:
 * Fix support for inline customization of separators.
 * Fix support for double escapes, which should not introduce commands.
LaTeX:
 * Added support for the tabularx environment.
Xml:
 * Do not include commented out external entities (when includeexternal is
   used).
Pod:
 * Do not add an =encoding header if the encoding is empty.

===============================================================================
* Major changes in release 0.36 (2009-03-15)

general:
 * The "type:" comments in the PO files are now tagged as extracted
   comments (starting with #.). This changes all the PO files generated by
   po4a. Maintainers should just let these changes pass through.
   Translator may want to remove the comment lines starting with '# type:'
   as they will be duplicates with the '#. type:' comments.

Xml:
 * Placeholders are presented with a type and have a more valid XML
   representation. This changes the PO files, but translations could be
   updated automatically.
 * Do not fail when the doctype does not match the expected one. Only
   issue a warning.
 * The tags and tagsonly options are deprecated. Use the
   translated/untranslated and break/inline/placeholder options instead.
 * Added foldattributes option. Useful to simplify strings and avoid typos
   when attributes shall not be translated.
Man:
 * Better handling of spaces in command arguments.
TeX:
 * Included files are searched with kpsewhich instead of using TEXINPUTS
   directly.

===============================================================================
* Major changes in release 0.35 (2009-02-10)

po4a
 * Added support for the [po_directory] command in the configuration file.
   It permits to avoid listing the supported languages.  Simply dropping a
   new PO file should be sufficient.  It should be preferred over the
   po4a_langs and po4a_paths commands.
po4a-normalize:
 * Added option -b, --blank to check which parts of a document are not
   translated.
po4a-gettextize:
 * Improved conflict handling: indicate the reference of the alternatives
   when the same string has different translations.

general:
 * Added support for a nowrapi18n option in Locale::Po4a::Common in
   order to use Locale::Po4a programatically.

packaging:
 * Manpages are generated in utf-8. This requires a recent Pod::Man with
   support for the utf8 option.

Docbook:
 * Improved support for Docbook 5 and Docbook 4, based on the official
   documentation of the Docbook tags.
Pod:
 * Announce the encoding in the POD header.
Sgml:
 * Add support for recursive inclusion.
Text:
 * Added option asciidoc
Xhtml:
 * Improvements for the <u> tag.
xml:
 * Fix the nodefault option. Derivative modules should use _default_tags
   and _default_inline to define the default behavior of their
   module-specific tags (instead of tags and inline).
 * Speed improvements.
 * Added support for placeholders.

===============================================================================
* Major changes in release 0.34 (2008-07-20)

** New features
general:
 * Do not end re-wrapped lines with a space.
halibut:
 * Added support for the Halibut format.
sgml:
 * Fix failures with big sgml documents ("broken pipe" received from
   nsgmls -p).
text:
 * Added support for the Markdown format, as used with Ikiwiki.
 * Make sure files are not mixed together when gettextized at the same
   time.
packaging:
 * Fix build failures with old versions of Module::Build.

===============================================================================
* Major changes in release 0.33.3 (2008-04-02)

po4a:
 * Add options --package-name and --package-version (similar to xgettext's
   options).

translations:
 * Actually ship Japanese translations.

===============================================================================
* Major changes in release 0.33.2 (2008-04-01)

text:
 * Added support for the fortunes format.

translations:
 * New Japanese translation.
 * The manpages are generated in UTF-8.

===============================================================================
* Major changes in release 0.33.1 (2008-03-16)

This is a bug fix release.

man:
 * Do not translate - to \- inside \*[...], \(.., \H'...', or \Z'...'.

xml:
 * Do not translate SSI comments by default.

packaging:
 * Fix the installation path of manpages and .mo files.

===============================================================================
* Major changes in release 0.33 (2008-03-03)

Notes to packagers: Since 0.31, some tests in the sgml testsuite require
the docbook sgml DTD. If you run the testsuite at build time you must have
these DTD in your build dependencies or you must disable these tests
cases in the testsuite.

** New features
  general: Support for PO files with plural forms.
           Po4a does not generate such PO files, but it can receive one in
           input. In such case, po4a cannot choose between the (singular
           and) plural forms. It will consider that msgstr[0] is the
           translation of msgid and msgstr[1] is the translation of
           msgid_plural, which may be wrong. Thus, a warning will be
           issued if po4a is asked to translate the singular or plural
           form of a message with plural forms.

  texinfo: Major changes. Tested on the elisp documentation.

  sgml: Fail if nsgmls cannot validate the input file. This can be turned
        off with the "force" option.

  xml: New option "cpp" to support C preprocessor directives (this avoids
       re-wrapping lines with preprocessor directives).
  xml: New options "translated" and "untranslated" that should allow an
       easier configuration of Xml (and derivative module)
  xml: Avoid duplicated newlines at the end of lines of multi-lines
       comments.
  xml: Paragraphs which only consist in an inline tag are now extracted.
       This makes a lot of string to available for translation in the PO
       file.
  docbook: Tested on the Docbook testsuite. Lots of tag added.

  po4a: Fix failures with perl 5.10. Thanks to Roderich Schupp
        <roderich.schupp@googlemail.com>

  msguntypot: Fix handling of the comment of the PO header.

===============================================================================
* Major changes in release 0.32 (2007-08-15)

** Security fix
  Fix a symlink attack caused by the /tmp/gettextization.failed.po
  temporary file.
  (CVE-2007-4462)

** Bug fixes

  sgml: The handling of newlines was broken in no-wrap sections in 0.31

  xhtml: The module is now distributed as the other modules.

  texinfo: Fix infinite loop when a command parameter ends with \
           (as in @samp{\})

** New features

  xml: New option includeexternal to support external entities.

  texinfo: Added support for many commands and environment (see
           changelog).

  xhtml: New option includessi, which adds supports for Server Side
         Includes include element (<!--#include virtual="/foo/bar.html" -->).

  xml: New option ontagerror to control the behavior of the module in case
       of error. This permits to support files that the module would
       consider invalid otherwise.

** Translations

  New translations (Bengali, Estonian, Croatian, Indonesian, Kannada,
  Korean, Occitan, Uzbek, Simplified Chinese, Chinese from Hong Kong) and
  many updates.

===============================================================================
* Major changes in release 0.31 (2007-05-07)

** Dependencies

  po4a,
  po4a-updatepo: New option --previous requires gettext 0.16.

** Bug fixes

  general: Don't hang when running in background with redirected stdout.
           Thanks to Jim Meyering.

** New features

  general: po4a now uses timestamps to avoid re-generating a translation
           if no changes are expected: if a translation is more recent
           than its associated PO, master document, addenda or
           configuration file, then there is no need to update it. For the
           documents which do not pass the translation threshold, a
           --stamp option was added to tell po4a to create files with a
           .po4a-stamp extension (you can also create them manually).
           This can save a lot of time when po4a knows that the
           translation will not be generated because there were no changes
           since the last po4a run.

  general: Beginning of a C extension. This provides speedup. Testers are
           welcomed.

  po4a: New options: --msgid-bugs-address and --copyright-holder.

  po4a: Add new tag: [options] to set global options (i.e. for every
        documents in the configuration file).

  po4a: Update translations based on modification times. Use timestamp to
        avoid retrying generate uncompleted translations.

  man: New 'unknown_macros' option to specify the behavior of po4a with
       unknown groff macros.

  man: Reset the configuration between two runs. This permits to define
       different options for different files in a config file with the
       opt:"..." parameters.

===============================================================================
* Major changes in release 0.30 (2007-01-05)

** Bug fixes

  man: Recode the text which is skipped, like comments.
       This kind of issue may also appear on other modules.
       A better solution would be to always use UTF-8 internally.

  distribution: Some unit tests were missing.
                Also, the dependencies have been simplified.
                Locale::gettext, Text::WrapI18N, Term::ReadKey and SGMLS
                are still recommended, but no more required.
                The BibTex module is now distributed.

  sgml: The module should be more friendly with XML files.

  po4a: When po4a creates a new PO file, it now uses msginit. This may
        change the header of created PO files.

  guide: Major update of the tag definitions. Thanks to Azamat H.
         Hackimov.

  Po: use strftime instead of date because date is not available on
      every platform.

  tests: rename the XML testsuite to SGML, since it was testing the Sgml
         module, and add a new testsuite for the Xml module (it currently
         tests the Guide module).

** Translations

  Updated Russian translation.

===============================================================================
* Major changes in release 0.29 (2006-10-15)

** New features

** Bug fixes

  sgml: Remove the tags from the default categories when they are defined
  by the user.  This changes the behavior of the Sgml module's options.

  sgml: Better line references in the generated PO.

  sgml: Support for '/>' (empty XML tag closure) when an xml prologue is
  found (<?xml ...?>).

  po4a: When po4a create new PO files, it now uses msginit instead of
  copying the POT file.

===============================================================================
* Major changes in release 0.29 (2006-10-15)

** New features

  New module for .INI files. Thanks to Costin Stroie.

  New module for BibTeX bibliographies.

  man: New mdoc option for stricter support of mdoc pages (NAME section
  not translated).

  text: Support for underlined text.

  text: Support for bulleted paragraphs (can be deactivated with
  -o nobullets).

** Bug fixes

  man: Keep empty commented lines.

  man: Do not add spaces at the end of lines.

  man: Languages without non breaking space could not use question marks.

  sgml: Better support for verbatim sections, and consider <cmdsynopsis>
  as verbatim. <arg> and <option> are now in the ignore category.

  general: Length calculation algorithm changed for wrapping lines in the
  output document or in the PO. This should improve output when files are
  encoded in UTF-8.

===============================================================================
* Major changes in release 0.28 (2006-08-17)

** Bug fixes

  man: Fix for .I " " and other minor bug fixes.

  tex/latex: Documentation and usability improvements.

** Speed improvement

  po4a: The POs are now only read once. This will speed the processing
  when many documents are specified in a configuration file.

** Translations

  Updated French translation.
2014-12-03 07:08:36 +00:00
wiz
ee4463f314 Set LICENSE. 2014-12-02 23:50:23 +00:00
wiz
9e51c9a809 Add fix for CVE-2014-8123 from Fabian Keil.
Bump PKGREVISION.
2014-12-02 23:48:49 +00:00
jperkin
15590e7d31 Remove --version-script argument on SunOS. 2014-12-02 09:57:33 +00:00
joerg
ff321b08ab Support cwrappers for packages appending arguments in the wrappers. 2014-12-01 12:39:16 +00:00
joerg
b3991564c5 Add explicit rpath for finding libyaml. 2014-12-01 11:54:48 +00:00
wiz
672213b754 Update to 0.54:
0.54 Sat Nov 29 11:47:10 PST 2014
 - Reverted an old patch with 0.53. Unreverted.

0.53 Fri Nov 28 09:20:08 PST 2014
 - Fix for
   https://bitbucket.org/xi/libyaml/issue/10/wrapped-strings-cause-assert-f
   ailure
2014-11-30 13:18:43 +00:00
joerg
ed22163fe1 Correctly sanitize environment. 2014-11-27 13:38:15 +00:00
ryoon
baea9fbd36 Update to 2.21
Changelog:
* Noteworthy changes in release 2.21 (2014-11-23) [stable]

** Improvements

  Performance has been greatly improved for searching files containing
  holes, on platforms where lseek's SEEK_DATA flag works efficiently.

  Performance has improved for rejecting data that cannot match even
  the first part of a nontrivial pattern.

  Performance has improved for very long strings in patterns.

  If a file contains data improperly encoded for the current locale,
  and this is discovered before any of the file's contents are output,
  grep now treats the file as binary.

  grep -P no longer reports an error and exits when given invalid UTF-8 data.
  Instead, it considers the data to be non-matching.

** Bug fixes

  grep no longer mishandles patterns that contain \w or \W in multibyte
  locales.

  grep would fail to count newlines internally when operating in non-UTF8
  multibyte locales, leading it to print potentially many lines that did
  not match.  E.g., the command, "seq 10 | env LC_ALL=zh_CN src/grep -n .."
  would print this:
  1:1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  implying that the match, "10" was on line 1.
  [bug introduced in grep-2.19]

  grep -F -x -o no longer prints an extra newline for each match.
  [bug introduced in grep-2.19]

  grep in a non-UTF8 multibyte locale could mistakenly match in the middle
  of a multibyte character when using a '^'-anchored alternate in a pattern,
  leading it to print non-matching lines.  [bug present since "the beginning"]

  grep -F Y no longer fails to match in non-UTF8 multibyte locales like
  Shift-JIS, when the input contains a 2-byte character, XY, followed by
  the single-byte search pattern, Y.  grep would find the first, middle-
  of-multibyte matching "Y", and then mistakenly advance an internal
  pointer one byte too far, skipping over the target "Y" just after that.
  [bug introduced in grep-2.19]

  grep -E rejected unmatched ')', instead of treating it like '\)'.
  [bug present since "the beginning"]

  On NetBSD, grep -r no longer reports "Inappropriate file type or format"
  when refusing to follow a symbolic link.
  [bug introduced in grep-2.12]

** Changes in behavior

  The GREP_OPTIONS environment variable is now obsolescent, and grep
  now warns if it is used.  Please use an alias or script instead.

  In locales with multibyte character encodings other than UTF-8,
  grep -P now reports an error and exits instead of misbehaving.

  When searching binary data, grep now may treat non-text bytes as
  line terminators.  This can boost performance significantly.

  grep -z no longer automatically treats the byte '\200' as binary data.

* Noteworthy changes in release 2.20 (2014-06-03) [stable]

** Bug fixes

  grep --max-count=N FILE would no longer stop reading after the Nth match.
  I.e., while grep would still print the correct output, it would continue
  reading until end of input, and hence, potentially forever.
  [bug introduced in grep-2.19]

  A command like echo aa|grep -E 'a(b$|c$)' would mistakenly
  report the input as a matched line.
  [bug introduced in grep-2.19]

** Changes in behavior

  grep --exclude-dir='FOO/' now excludes the directory FOO.
  Previously, the trailing slash meant the option was ineffective.
2014-11-25 20:19:03 +00:00
wiz
2c7827c068 + py-uritemplate 2014-11-24 14:07:04 +00:00
wiz
a255550804 Import py34-uritemplate-0.6 as textproc/py-uritemplate.
This is a Python implementation of RFC6570, URI Template, and can
expand templates up to and including Level 4 in that specification.
2014-11-24 14:06:12 +00:00
obache
55835ddd98 + yaml-cpp 2014-11-24 11:28:41 +00:00
obache
23b8ad9deb Import yaml-cpp-0.5.1 as textproc/yaml-cpp.
yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec.
2014-11-24 11:27:52 +00:00
wiz
e4a16b44b4 Update to 2.0.1:
Version 2.0.1
-------------
(released Nov 10, 2014)

- Fix an encoding issue when using ``pygmentize`` with the ``-o`` option.
2014-11-23 15:08:11 +00:00
wiz
1d1b0ddcbe Update to 3.4.1:
3.4.1 (2014-11-20)
==================

Features added
--------------

* New ``htmlfile`` HTML generator to accompany the incremental ``xmlfile``
  serialisation API.  Patch by Burak Arslan.

Bugs fixed
----------

* ``lxml.sax.ElementTreeContentHandler`` did not initialise its superclass.
2014-11-23 15:07:06 +00:00
schmonz
34fcbc47d8 Update to 0.81. From the changelog:
- Add the 'nofollow_extended' option to add rel="nofollow" to extended
  links. Thanks to Ian McEwen for this patch.
2014-11-23 14:44:01 +00:00
schmonz
d693ae88b2 Update to 2.13. From the changelog:
- Added textile command-line tool submitted by Amir Karger.

- Applied a patch submitted by Serap Kadam for issues with parsing
  whitespace around '!' characters.

- Applied a patch submitted by Andy Yacomink for handling mixed-case
  HTML entity names.

- Applied a patch submitted by Andy Yacomink for running some of
  the inline modifier code as a separate method to allow for a
  subclass to override/prevent them.
2014-11-23 14:41:58 +00:00
schmonz
076be1d4bf Update to 1.12. From the changelog:
* Add field number to error_diag
* Fixed non-IO parsing multi-byte EOL
* Fixed a possible missed multi-byte EOL
* Allow hashref for csv ()'s headers attribute
* Allow encoding on all output handles in csv ()
* Include doc changes as ticketed in the Text::CSV queue
* Fix parallel testing issue
* Allow csv as method call (not using the object)
* Rename quote_null to escape_null
* Give meaning to keep_meta_info on output
2014-11-23 14:39:20 +00:00
schmonz
dfc34bd040 Update to 2.64. From the changelog:
! t/utf8warnings.t MANIFEST
  Retouch pull #26 so it works with perl < 5.14
! Encode.pm
+ t/utf8warnings.t
  Pulled: Catch and re-issue utf8 warnings at a higher level
  https://github.com/dankogai/p5-encode/pull/26
+ Encode.xs
  Pulled: Validate continuations in the incremental UTF-X decoder
  https://github.com/dankogai/p5-encode/pull/25
! Encode.xs
  Applied: RT #99264: call_pv() can reallocate the stack
  https://rt.cpan.org/Ticket/Display.html?id=99264
! Byte/Makefile.PL CN/Makefile.PL EBCDIC/Makefile.PL Encode.xs
  JP/Makefile.PL KR/Makefile.PL Symbol/Makefile.PL TW/Makefile.PL
  bin/enc2xs encengine.c
  Pulled: add PERL_NO_GET_CONTEXT to all dynamic libs
  https://github.com/dankogai/p5-encode/pull/24
2014-11-23 14:35:54 +00:00
szptvlfn
01e6374124 Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
wiz
edd5600a85 Recursive bump for poppler shlib major bump. 2014-11-20 16:04:14 +00:00
wiz
05ee08b418 Update to 2.0:
Version 2.0
-----------
(released Nov 9, 2014)

- Default lexer encoding is now "guess", i.e. UTF-8 / Locale / Latin1 is
  tried in that order.

- Major update to Swift lexer (pull request #410).

- Multiple fixes to lexer guessing in conflicting cases:

  * recognize HTML5 by doctype
  * recognize XML by XML declaration
  * don't recognize C/C++ as SystemVerilog

- Simplified regexes and builtin lists.


Version 2.0rc1
--------------
(released Oct 16, 2014)

- Dropped Python 2.4 and 2.5 compatibility.  This is in favor of single-source
  compatibility between Python 2.6, 2.7 and 3.3+.

- New website and documentation based on Sphinx (finally!)

- Lexers added:

  * APL (#969)
  * Agda and Literate Agda (pull request #203)
  * Alloy (pull request #355)
  * AmbientTalk
  * BlitzBasic (pull request #197)
  * ChaiScript (pull request #24)
  * Chapel (pull request #256)
  * Cirru (pull request #275)
  * Clay (pull request #184)
  * ColdFusion CFC (pull request #283)
  * Cryptol and Literate Cryptol (pull request #344)
  * Cypher (pull request #257)
  * Docker config files
  * EBNF (pull request #193)
  * Eiffel (pull request #273)
  * GAP (pull request #311)
  * Golo (pull request #309)
  * Handlebars (pull request #186)
  * Hy (pull request #238)
  * Idris and Literate Idris (pull request #210)
  * Igor Pro (pull request #172)
  * Inform 6/7 (pull request #281)
  * Intel objdump (pull request #279)
  * Isabelle (pull request #386)
  * Jasmin (pull request #349)
  * JSON-LD (pull request #289)
  * Kal (pull request #233)
  * Lean (pull request #399)
  * LSL (pull request #296)
  * Limbo (pull request #291)
  * Liquid (#977)
  * MQL (pull request #285)
  * MaskJS (pull request #280)
  * Mozilla preprocessors
  * Mathematica (pull request #245)
  * NesC (pull request #166)
  * Nit (pull request #375)
  * Nix (pull request #267)
  * Pan
  * Pawn (pull request #211)
  * Perl 6 (pull request #181)
  * Pig (pull request #304)
  * Pike (pull request #237)
  * QBasic (pull request #182)
  * Red (pull request #341)
  * ResourceBundle (#1038)
  * Rexx (pull request #199)
  * Rql (pull request #251)
  * Rsl
  * SPARQL (pull request #78)
  * Slim (pull request #366)
  * Swift (pull request #371)
  * Swig (pull request #168)
  * TADS 3 (pull request #407)
  * Todo.txt todo lists
  * Twig (pull request #404)

- Added a helper to "optimize" regular expressions that match one of many
  literal words; this can save 20% and more lexing time with lexers that
  highlight many keywords or builtins.

- New styles: "xcode" and "igor", similar to the default highlighting of
  the respective IDEs.

- The command-line "pygmentize" tool now tries a little harder to find the
  correct encoding for files and the terminal (#979).

- Added "inencoding" option for lexers to override "encoding" analogous
  to "outencoding" (#800).

- Added line-by-line "streaming" mode for pygmentize with the "-s" option.
  (pull request #165)  Only fully works for lexers that have no constructs spanning
  lines!

- Added an "envname" option to the LaTeX formatter to select a replacement
  verbatim environment (pull request #235).

- Updated the Makefile lexer to yield a little more useful highlighting.

- Lexer aliases passed to ``get_lexer_by_name()`` are now case-insensitive.

- File name matching in lexers and formatters will now use a regex cache
  for speed (pull request #205).

- Pygments will now recognize "vim" modelines when guessing the lexer for
  a file based on content (pull request #118).

- Major restructure of the ``pygments.lexers`` module namespace.  There are now
  many more modules with less lexers per module.  Old modules are still around
  and re-export the lexers they previously contained.

- The NameHighlightFilter now works with any Name.* token type (#790).

- Python 3 lexer: add new exceptions from PEP 3151.

- Opa lexer: add new keywords (pull request #170).

- Julia lexer: add keywords and underscore-separated number
  literals (pull request #176).

- Lasso lexer: fix method highlighting, update builtins. Fix
  guessing so that plain XML isn't always taken as Lasso (pull request #163).

- Objective C/C++ lexers: allow "@" prefixing any expression (#871).

- Ruby lexer: fix lexing of Name::Space tokens (#860) and of symbols
  in hashes (#873).

- Stan lexer: update for version 2.4.0 of the language (pull request #162, PR#255, PR#377).

- JavaScript lexer: add the "yield" keyword (pull request #196).

- HTTP lexer: support for PATCH method (pull request #190).

- Koka lexer: update to newest language spec (pull request #201).

- Haxe lexer: rewrite and support for Haxe 3 (pull request #174).

- Prolog lexer: add different kinds of numeric literals (#864).

- F# lexer: rewrite with newest spec for F# 3.0 (#842), fix a bug with
  dotted chains (#948).

- Kotlin lexer: general update (pull request #271).

- Rebol lexer: fix comment detection and analyse_text (pull request #261).

- LLVM lexer: update keywords to v3.4 (pull request #258).

- PHP lexer: add new keywords and binary literals (pull request #222).

- external/markdown-processor.py updated to newest python-markdown (pull request #221).

- CSS lexer: some highlighting order fixes (pull request #231).

- Ceylon lexer: fix parsing of nested multiline comments (#915).

- C family lexers: fix parsing of indented preprocessor directives (#944).

- Rust lexer: update to 0.9 language version (pull request #270, PR#388).

- Elixir lexer: update to 0.15 language version (pull request #392).

- Fix swallowing incomplete tracebacks in Python console lexer (#874).
2014-11-19 12:57:55 +00:00
wiz
65df545cbe Update to 0.1:
Simple Ft/Fo/Fa/Fc parser and formatter for the SYNOPSIS.
2014-11-17 22:27:56 +00:00
schmonz
175ca7ff28 Update to 1.2.19.0. From the changelog:
[Changes contributed by Dmitry Karasik]
- Fix deliberate leaks in QueryParser::add_valuerangeprocessor() and
  QueryParser::set_stopper() by tracking object ownership properly.
  (ticket#647)
[Changes contributed by Olly Betts]
- Fix deliberate leaks in TermGenerator::set_stopper() and Enquire
  methods which allow specifying a Sorter object similarly.
2014-11-17 09:06:18 +00:00
schmonz
d7fd08c3da Update to 1.2.19. From the changelog:
documentation:

* docs/overview.rst: Note that pdftotext is part of poppler as well as xpdf.
  (Noted by Paul Wise)
2014-11-17 09:06:01 +00:00
schmonz
b335e8278e Update to 1.2.19. From the changelog:
API:

* Xapian::BM5Weight:

  + Improve BM25 upper bound in the case when our wdf upper bound > our
    document length lower bound.  Thanks to Craig Macdonald for pointing out
    this trick.

  + Pre-multiply termweight by (param_k1 + 1) rather than doing it for
    every weighted term in every document considered.

testsuite:

* Don't report apparent leaks of fds opened on /dev/urandom - at least on
  Linux, something in the C library seems to lazily open it, and the report of
  a possible leak followed by assurance that it's OK really is just noise we
  can do without.

matcher:

* Fix false matches reported for non-exact phrases in some cases.  Fixes the
  reduced testcase in #657, reported by Jean-Francois Dockes.

brass backend:

* Only full sync after writing the final base file (only affects Max OS X).

chert backend:

* Only full sync after writing the final base file (only affects Max OS X).

flint backend:

* Only full sync after writing the final base file (only affects Max OS X).

build system:

* For Sun's C++ compiler, pass -library=Crun separately since libtool looks for
  " -library=stlport4 " (with the spaces).  (fixes#650)

* Remove .replicatmp (created by the test suite) upon "make clean".

documentation:

* include/xapian/compactor.h: Fix formatting of doxygen comment.

* HACKING: freecode no longer accepts updates, so drop that item from the
  release checklist.

* docs/overview.rst: Add missing database path to example of using
  xapian-progsrv in a stub database file.

portability:

* Suppress unused typedef warnings from debugging logging macros, which occur
  in functions which always exit via throwing an exception when compiling with
  recent versions of GCC or clang.

* Fix debug logging code to compile with clang.  (fixes #657, reported by
  Germán M. Bravo)

debug code:

* Add missing RETURN() markup for debug logging in a few places, highlighted by
  warnings from recent GCC.

* Fix incorrect return types in debug logging annotations so that code compiles
  when configured with --enable-log.
2014-11-17 09:05:37 +00:00
jaapb
aff5a5560a Updated package to newest version, 3.3.0, and added ocaml.mk framework.
Changes, apart from bugfixes,
include:
  * Add `Xml_print.Utf8` to encode html elements to utf8 properly.
  * Add signature functors to ease export of module created with the functorial interface.
    See the manual for more details.
  * Fix variance for Svg.attrib.
  * Fix export of Xml.list_wrap for Html5.M and Svg.M. Should fix syntax extension with those.
  * Remove Xhtml.
  * Remove plus elements.
    For example, table doesn't enforce non-emptyness anymore.
  * Add various types that were not exported (img, dl, figure, rp, rt and ruby types).
  * Expose `string_of_number`, the better stringifier introduced in 3.1.0.
  * Functorial interface breaking changes:
    * Modify the functorized interface to export typed events.
      You can now specify different handlers for keyboard and mouse events.
      There are two new types and functions (keyboard and mous events) in the Xml signature.
    * Add a wrapping type for lists of nodes. See reactiveData and new eliom wrapping.
  * Replace fake booleans (`\`True | \`False`) by actual booleans. Breaking change.
  * Camlp4 is now an optional dependency. The syntax extension is build only when the syntax flag is enabled (true by default).
  * Use a better stringifier for float values (copied from js_of_ocaml).
  * Add attributes `muted`, `crossorigin` and `mediagroup` for `<audio>` and `<video>`.
  * In the functorial interface, allow to wrap xml nodes inside a monad by provi
ding an additionnal wrapping module. Used by reactive nodes in eliom.
  * Use oasis as build systems
  * Adding module Unsafe for inserting missing nodes or attributes
  * In the functorial interface, allow to wrap xml nodes inside a monad by provi
ding an additionnal wrapping module. Used by reactive nodes in eliom.
  * Use oasis as build systems
  * Adding module Unsafe for inserting missing nodes or attributes
2014-11-15 14:53:03 +00:00
obache
1f598712e0 Bump PKGREVISION from zeromq shlib major bump. 2014-11-15 02:13:19 +00:00
gdt
a894376d9a Note that upstream has withdrawn distfile.
Also that there is no new distfile, and that upstream was sent the
usual "lack of distfile considered harmful" message.

This package is a candidate for removal.
2014-11-12 12:53:20 +00:00
wiz
9bebfca43b Update to 0.52:
0.52 Fri Aug 22 21:03:19 PDT 2014
 - Fix e1 test failure on 5.21.4

0.51 Sat Aug 16 14:28:45 PDT 2014
 - Remove =travis section

0.50 Sat Aug 16 12:57:04 PDT 2014
 - Meta 0.0.2

0.49 Sat Aug 16 04:23:17 PDT 2014
 - Eliminate spurious trailing whitespace

0.48 Fri Aug 15 21:07:12 PDT 2014
 - Add t/000-compile-modules.t
2014-11-12 11:49:41 +00:00
schmonz
6839e6da36 Add and enable p5-Swim. 2014-11-08 16:22:03 +00:00
schmonz
3d47fa768a Add p5-Swim, a markup language. How is Swim different?
* Very rich capabilities
* Simple, consistent markup
* Extensible
* Multiple Implementations
* Comments and blank lines
2014-11-08 16:21:15 +00:00
obache
d79d56751a Using VARBASE. 2014-11-08 11:24:28 +00:00
adam
8e3b70e314 Revbump after updating boost 2014-11-07 19:39:24 +00:00
jaapb
a139752eeb Updated TODO for package COMMENT (oops.) 2014-11-06 14:47:56 +00:00
szptvlfn
82dae70286 Bump PKGREVISION for hs-ansi-terminal-0.6.2.1 2014-11-06 13:02:24 +00:00
jaapb
3413949cda Added ocaml-jsonm to SUBDIRs 2014-11-06 11:38:45 +00:00
jaapb
ef37115996 Added textproc/ocaml-jsonm, a pure OCaml JSON library. 2014-11-06 11:37:33 +00:00
jaapb
34840f07e9 Added ocaml-uutf to Makefile SUBDIRs 2014-11-06 11:30:13 +00:00
jaapb
e439df5c4a Added package textproc/ocaml-uutf, a Unicode library for ocaml. 2014-11-06 11:29:15 +00:00
obache
465a8924e1 Update groonga to 4.0.7.
News
====

.. _release-4-0-7:

Release 4.0.7 - 2014/10/29
--------------------------

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

* [windows] Supported Groonga with mruby on Windows.
* Added token filter plugin API.
* Added :ref:`token-filter-stop-word` token filter plugin.
  It treats records of ``is_stop_word`` column as actual stop words.
* [doc] Added :doc:`/client` section which introduces link to client libraries.
  [GitHub#210] [Patch by Naoya Murakami]
* [doc] Reconstructed documentation. :doc:`/reference/suggest` and
  :doc:`/reference/operations/geolocation_search` are grouped under :doc:`/reference`.
  [GitHub#206] [Patch by Naoya Murakami]
* [dump] Supports to dump TABLE_NO_KEY for token_flters.
  [GitHub#215] [Patch by Naoya Murakami]
* [deb] Added stop word token filter plugin.
  [GitHub#216] [Patch by Hiroshi Hatake]
* [deb] Clarified licenses about used/bundled files in debian/copyright.
* Dropped LZO compression support.
* Added LZ4 compression support. [GitHub#223] [Patch by Naoya Murakami]
* Added :doc:`/reference/function/in_values`. We recommends to use it
  instead of ``==`` and ``OR`` combinations ( ``((COLUMN == "a") OR
  (COLUMN == "b") OR (COLUMN == "c"))`` ) because of better
  performance.
* [load] Supported to update existing record in ``TABLE_NO_KEY`` by
  specifying a record by ``_id``.
* Added :ref:`token-filter-stem` token filter plugin. It provides
  stemming feature.  To use this token filter, you need to install
  `libstemmer <http://http://snowball.tartarus.org/>`_ library.
* [doc] Added :doc:`/reference/token_filters` documentation.
  [GitHub#227] [Patch by Naoya Murakami]

Fixes
^^^^^

* [doc] Fixed link of the Ranguba project. [GitHub#212] [Patch by Naoya Murakami]
* [httpd] Updated bundled nginx version to 1.7.6.
  [GitHub#208] [Patch by Hiroshi Hatake]
* [power8] Fixed build failure. See
  http://lists.askmonty.org/pipermail/commits/2014-October/006752.html
  [Patch by Sergey Vojtovich]
* Fixed a bug that URL encoding fails if ``char`` type is build as
  ``unsigned char`` type. [GitHub#217]
* Fixed a bug that a ``TABLE_DAT_KEY`` table returns empty results for
  :doc:`/reference/commands/select`. [GitHub#220]
* Fixed a memory leak about inspecting vector column. It occurs when
  something error reports about vector column.
* Fixed memory leaks in zlib/LZO compressed column [GitHub#221] [Patch
  by Naoya Murakami]
* Fixed a bug that the value of ``Int8`` column which is less than 100 may
  return true in ``--filter``. By this issue, not intended records may
  be included as search results.
* Fixed to handle binary operation for vector column as an error.
* Fixed a bug that ``!XXX`` may return inverted result on big endian
  environment.
* Fixed a memory leak on converting weight vector to text.

Thanks
^^^^^^

* Naoya Murakami
* Hiroshi Hatake
* Sergey Vojtovich

.. _release-4-0-6:

Release 4.0.6 - 2014/09/29
--------------------------

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

* [deb] Updated to follow the rule about machine-readable
  debian/copyright file. [Reported by Hideki Yamane]
* [deb][rpm] Changed to use signal instead of HTTP to control nginx.
  This way meets nginx style init script.
* [doc] Updated English documentation about [ :doc:`/reference/executables` ].
  [GitHub#196] [Patch by Masafumi Yokoyama]
* [OS X] Added missing sphinx error message for Homebrew users.
  [GitHub#198] [Patch by cosmo0920]
* [mruby] Query optimizer by mruby became a practical for some range select query.
  For example, mruby optimizer overhead is negligible enough for query such as
  "between(X, 0, 'exclude', 100, 'include')" - "X > 0 && X <= 100".
* [doc] Changed to recommend GitHub for reporting issues.
  Until now, Redmine account must be approved by administrator, so you can not
  report at feel free. [GitHub#202] [Patch by cosmo0920]
* [doc] Translated C API document. [GitHub#203] [Patch by NOKUBI Takatsugu]
* Supported to customize similarity threshold by ``'*S10"..."'`` syntax.
* Added source column validation to
  :doc:`/reference/commands/column_create`.  If source column doesn't
  exist, :doc:`/reference/commands/column_create` returns ``false`` and
  column isn't created.
* [debian] Dropped Debian jessie and sid support.

Fixes
^^^^^

* Fixed a bug that similar search doesn't use IDF (Inverse Document Frequency)
  for choosing target tokens.
  In the previous versions, it used token ID instead of IDF.
  [groonga-dev,02731] [groonga-dev,02754] [Reported by Satoshi Mitani, warp kawada]
* Fixed a crash bug when deleting a record.
  If the table of the record has ``_key`` and ``_key`` is
  indexed from two or more index columns, deleting causes a crash.
* Fixed compiler warning about unused variable 'e'. [GitHub#197] [Patch by cosmo0920]
* [fedora][httpd] Fixed service start failure without log directory.
* [mruby] Fixed build error with ``--disable-mruby``.
  [GitHub#200] [Patch by cosmo0920]
* Fixed build warning about CMP0014 for MariaDB bundled Mroonga package.
  [GitHub#201] [Patch by cosmo0920]
* Fixed a bug that "*" is parsed as prefix search with empty string.
  [groonga-dev,02796] [Reported by Kazuhiko]
* [httpd] Updated bundled nginx version to the latest mainline (1.7.5).
  This update contains vulnerability fix (CVE-2014-3616).

Thanks
^^^^^^

* Hideki Yamane
* Masafumi Yokoyama
* cosmo0920
* NOKUBI Takatsugu
* Satoshi Mitani
* warp kawada
* Kazuhiko
2014-11-04 11:40:20 +00:00
wiz
b62197251f Update to 2.0.15:
New functions, types and enums

Functions

  * void raptor_sequence_sort_r(raptor_sequence* seq,
    raptor_data_compare_arg_handler compare, void* user_data) - Uses
    raptor_sort_r() internally.

  * void raptor_sort_r(void *base, size_t nel, size_t width,
    raptor_data_compare_arg_handler compar, void *user_data)

  * int raptor_world_get_parsers_count(raptor_world* world)

  * int raptor_world_get_serializers_count(raptor_world* world)

Types

  * raptor_data_compare_arg_handler - Used by raptor_sort_r()
2014-11-02 17:40:36 +00:00
wiz
34db6d57a5 Update to 0.26.0, provided by Jonathan Buschmann in PR 49352.
:: Release 0.26.0
Fixes for ignores
Add markdown filetype
Add filetype completion for bash completion
:: Release 0.25.0
--vimgrep option added
Add less filetype
Add --null option to provide input to 'xargs -0'
Case insensitive matching is now the default
Add swift filetype
2014-11-01 16:28:18 +00:00
hiramatsu
f6f18ffb88 Add .include "../../lang/camlp4/buildlink3.mk". 2014-11-01 04:36:17 +00:00
wiz
d0b7996186 Bump ABI depends since 0.9.4 had a different major than 0.9.3.
I love it when they do that.
2014-10-30 23:34:52 +00:00
wiz
7f6fb57769 Update to 2.0117:
2.0117  2014-10-26
    - Makefile.PL : don't require a recentish ExtUtils::MakeMaker.
        - https://rt.cpan.org/Ticket/Display.html?id=83322
        - Thanks to Slaven Rezic for the report.
    - Fix broken t/02parse.t with non-English locale with recent perls.
        - https://rt.cpan.org/Public/Bug/Display.html?id=97805
        - Thanks to Slaven Rezic for the report.
2014-10-29 17:22:39 +00:00
fhajny
a490af00f3 Fix build on NetBSD. Fix mistake in patch file. Bump PKGREVISION. 2014-10-29 13:49:02 +00:00
drochner
4e3e3d513a pull in two patches from upstream to fix regressions:
-catalog initialization problem
-problem with entity expansion
This hopefully fixes build failures in KDE3 packages, reported by Joerg.
bump PKGREV
2014-10-28 18:55:56 +00:00
wiz
6023ffb1fb Look for *.mdoc files when checking Xrefs. Some projects distribute
*.mdoc files and this helps.

Bump version.
2014-10-26 22:20:14 +00:00
bsiegert
26c4043246 Fix compilation on Mac OS 10.4. From Sevan Janiyan in PR pkg/49077. 2014-10-26 19:46:48 +00:00
cheusov
95cf990367 += py-openpyxl 2014-10-25 22:20:38 +00:00
cheusov
29da740ddb Imported from wip/py-openpyxl
openpyxl is a pure python reader and writer of Excel OpenXML files.

   It was born from lack of existing library to read/write natively from
   Python the new Office Open XML format.  All kudos to the PHPExcel team
   as openpyxl is a Python port of PHPExcel http://www.phpexcel.net/
2014-10-25 22:19:45 +00:00
drochner
589848e413 sync w/ base pkg 2014-10-20 19:11:23 +00:00
wiz
68c7a3a683 Update to 0.9.4.
New in 0.9.4:
* The data tables and line breaking algorithm have been updated to Unicode
  version 6.0.0.
* A new include file unigbrk.h is provided. It declares functions for
  grapheme cluster breaking, that is, determining the boundaries between
  graphemes. See the documentation chapter "Grapheme cluster breaks in strings"
  for details.
* In the include file unictype.h, constants are defined for the group of
  general categories LC ("Cased Letter").
* In the include file unictype.h, functions for associating canonical
  combining classes with names have been added:
    uc_combining_class_name
    uc_combining_class_long_name
    uc_combining_class_byname
* In the include file unictype.h, functions for the Arabic joining type and
  the Arabic joining group have been added:
    uc_joining_type_name
    uc_joining_type_long_name
    uc_joining_type_byname
    uc_joining_type
    uc_joining_group_name
    uc_joining_group_byname
    uc_joining_group
* In the include file unictype.h, functions for new predefined properties
  have been added:
    uc_is_property_cased
    uc_is_property_case_ignorable
    uc_is_property_changes_when_lowercased
    uc_is_property_changes_when_uppercased
    uc_is_property_changes_when_titlecased
    uc_is_property_changes_when_casefolded
    uc_is_property_changes_when_casemapped
  But it's recommended to use the case mapping functions from unicase.h
  instead.
* In the include file unictype.h, the functions for bidi class, formerly known
  as bidirectional category, have been renamed:
    uc_bidi_category_name   -> uc_bidi_class_name
    uc_bidi_category_byname -> uc_bidi_class_byname
    uc_bidi_category        -> uc_bidi_class
    uc_is_bidi_category     -> uc_is_bidi_class
  The old function names still exist, but are obsolete.
* In the include file unictype.h, functions for returning long names of
  property values have been added:
    uc_general_category_long_name
    uc_bidi_class_long_name
  The functions
    uc_general_category_byname
    uc_bidi_class_byname
  have been extended to recognize long names as well as short names.
* It is now easier to detect the subminor version: The value of the variable
  _libunistring_version and of the macro _LIBUNISTRING_VERSION now includes
  also the subminor version.
* The functions u8_mbtouc and u8_mbtouc_unsafe now handle ill-formed UTF-8
  input in a better way, that is more compliant with W3C recommendations.
* The functions u8_strcoll, u16_strcoll, u32_strcoll now produce results that
  are less dependent on the iconv implementation in use.
* The functions u8_strstr, u16_strstr, u32_strstr now perform in O(n) time
  worst-case, where n is the sum of the lengths of the argument strings.
2014-10-20 10:43:53 +00:00
jaapb
3943697b14 - Added dependency on camlp4 2014-10-20 10:35:20 +00:00
alnsn
bdc6025cdf Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
szptvlfn
cedc0dff67 Bump PKGREVISION for hs-parsec-3.1.7 2014-10-19 21:27:08 +00:00
szptvlfn
d7113b1cde Update to 3.1.7
CHANGES:
3.1.7

- Fix a regression from 3.1.6 related to the reported position of error messages.
  See bug #9 for details.
- Reset the current error position on success of 'lookAhead'.
2014-10-19 21:25:47 +00:00
szptvlfn
9b07cabdd2 Bump PKGREVISION for hs-vector-0.10.12.1 2014-10-18 21:28:58 +00:00
fhajny
b9b9b2215d Update sphinxsearch to 2.2.5.
Changes:
- added OPTION rand_seed which affects ORDER BY RAND()
- fixed #2042, indextool fails with field mask on 32+ fields
- fixed #2031, wrong encoding with UnixODBC/Oracle source
- fixed #2056, several bugs in RLP tokenizer
- fixed #2054, SHOW THREADS hangs if queries in prefork mode
- fixed #2057, WARNING at indexer on duplicated wordforms
- fixed #2066, snippet generation with weight_order enabled
- fixed exception parsing in queries
- fixed crash in config parser
- fixed MySQL protocol response when daemon maxed out
2014-10-17 17:28:15 +00:00
drochner
d87903f98e update to 2.9.2
-security fixes:
 -Fix for CVE-2014-3660 billion laugh variant
 -CVE-2014-0191 Do not fetch external parameter entities (was patched
  in pkgsrc)
-many bugfixes, doc fixes, cleanup
-added cmake macro
2014-10-17 15:46:47 +00:00
jperkin
f9a0fe1e2f Include devel/boost-libs' buildlink3.mk, it sets GCC_REQD and we need to be
in sync with that, otherwise we may end up with two different libstdc++
runtimes.  Seen in Linux build.
2014-10-13 08:32:54 +00:00
wiz
a79be930ca Update to 1.13:
1.13 Sat Oct 11 18:05:45 CEST 2014
 - Apply pull request 140 from @nfg++
 - Disable some warnings in YAML::Any
2014-10-12 14:38:17 +00:00
jaapb
1e2c6eff15 Revbump for ocaml 4.02.0.
(Some packages omitted because they will be updated to new versions)
2014-10-09 19:14:03 +00:00
wiz
cda18437be Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
wiz
e8647fedbb Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
prlw1
7c8a2357b4 Update yelp-xsl to 3.14.0
3.14.0
======
* Updated translations:
  sv    (Anders Jonsson)

3.13.92
=======
* Updated translations:
  ro    (Daniel Serbanescu)
2014-10-08 22:20:04 +00:00
szptvlfn
95a5ea8ac4 Bump PKGREVISION for hs-cmdargs-0.10.10 2014-10-08 21:57:07 +00:00
wen
9901a46003 Update to 2.5.7
Upstream changelog please visit:
http://pythonhosted.org//Whoosh/releases/
2014-10-08 14:11:09 +00:00
adam
243c29c4cc Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
adam
7d59627492 ICU 54 is a major release of ICU, with new features, new APIs and many bug fixes in data and code. It supports the latest versions of the Unicode locale data (CLDR 26, September 2014) and Unicode Standard (Unicode 7.0, June 2014). The improvements include 72 new measurement units, Unihan radical-stroke collation moved into root, new RBNF PluralFormat syntax, dictionary-based word and line break for Burmese, support for short locale display names, compatibility support for IANA time zone data abbreviations, a tech preview of FilteredBreakIterator using ULI break data, ICU4C thread safety fixes, and the ability to build ICU4C Paragraph Layout with HarfBuzz. 2014-10-07 16:09:53 +00:00
wen
ed5c8f65e1 Update to 2.5.3
Upstream changelog please visit:
http://cpansearch.perl.org/src/RRA/podlators-2.5.3/ChangeLog
2014-10-07 07:20:49 +00:00
rodent
2181c014fc 0.7.0 (2014-09-07)
^^^^^^^^^^^^^^^^^^

- Fixed errors in code examples.
- Fixed ``TypeError`` when using ``between`` validator with ``datetime`` objects
  like in the code example.
- Changed validators to always return ``True`` instead of a truthy object when
  the validation succeeds.
- Fixed ``truthy`` validator to work like it's name suggests. Previously it
  worked like ``falsy``.
2014-10-05 22:22:49 +00:00
rodent
dde0a7b6fb Remove executable bits on files in ${EGG_INFODIR} during post-install.
1.2.9 (2014-08-22)
------------------

- Support for keyword arguments in PyQuery custom functions

- Fixed #78: items must take care or the parent

- Fixed #65 PyQuery.make_links_absolute() no longer creates 'href' attribute
  when it isn't there

- Fixed #19. ``is_()`` was broken.

- Fixed #9. ``.replaceWith(PyQuery element)`` raises error

- Remove official python3.2 support (mostly because of 3rd party semi-deps)
2014-10-05 22:13:52 +00:00
rodent
d986115a99 ====================
What's new in 6.3.0
====================

Merge to upstream Subversion revision 703; upstream code changelog:
   - Changing the offline geocoder to not return any country at all if the number
     could belong to multiple countries
   - Removing obsolete code that treated countries with no metadata as valid.
2014-10-05 22:08:30 +00:00
rodent
b37e2b95fe Update to latest release, 0.3.0. A lot of new entries in the PLIST for
cpython. No quickly-accessible ChangeLog. Assuming more/better/faster.
2014-10-05 21:17:58 +00:00
rodent
fae3c85fc0 2014-08-17 v0.8
Fixes #3 testFileRead fails using python 3.x along with several other Python 3 compatibility issues.
2014-10-05 20:43:13 +00:00
wiz
8b765c474f Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
wiz
9be7c0059d Update to 2014.9.25:
2014.9.25 - 2014-09-25

* Feature #29, #27: Add simple table support with bypass option.
* Fix #20: Replace project website with: http://alir3z4.github.io/html2text/ .
2014-10-05 14:42:24 +00:00
wiz
ab08f49289 Update to 1.12:
1.12 Mon Sep 22 08:24:43 PDT 2014
 - Fix https://rt.cpan.org/Ticket/Display.html?id=97870
2014-10-01 10:56:09 +00:00
obache
d085e95cbd I don't remember why I imported and updated this package. 2014-09-28 03:05:47 +00:00
brook
e82aa16ded Move math/R-markdown to textproc/R-markdown and fix dependencies.
Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 22:47:06 +00:00
brook
677979e105 Initial import of markdown v0.7.4 as textproc/R-markdown.
Markdown is a plain-text formatting syntax that can be converted to
XHTML or other formats. This package provides R bindings to the
Sundown markdown rendering library.

Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 22:44:40 +00:00
brook
35e28d2ef6 Move math/R-highr to textproc/R-highr and fix dependencies.
Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 22:34:44 +00:00
brook
7576900a56 Initial import of highr v0.3 as textproc/R-highr.
This package provides syntax highlighting for R source code. Currently
it supports LaTeX and HTML output. Source code of other languages can
be supported via Andre Simon's Highlight package.

Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 22:31:53 +00:00
brook
0dc0261741 Move math/R-stringr to textproc/R-stringr and fix dependencies.
Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 21:21:16 +00:00
brook
0d59efd586 Initial import of stringr v0.6.2 as textproc/R-stringr.
stringr is a set of simple wrappers that make R's string functions
more consistent, simpler and easier to use.  It does this by ensuring
that: function and argument names (and positions) are consistent, all
functions deal with NA's and zero length character appropriately, and
the output data structures from each function matches the input data
structures of other functions.

Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 21:03:26 +00:00
brook
55b5323a70 Move math/R-formatR to textproc/R-formatR and fix depending packages.
Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 20:36:53 +00:00
brook
a0873c83eb Initial import of formatR v1.0 as textproc/R-formatR.
This package provides a function tidy_source() to format R source
code. Spaces and indent will be added to the code automatically, and
comments will be preserved under certain conditions, so that R code
will be more human-readable and tidy. There is also a Shiny app as a
user interface in this package (see tidy_app()).

Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html
2014-09-19 20:31:50 +00:00
wen
c5c7d05cb2 Update to 1.22
Add LICENSE

Upstream changes:
2014-08-15   Sean M. Burke  sburke@cpan.org
	* RELEASE 1.22.  (The dev release works, so this is a version bump.)
	* See notes for 2014-07-25, because this is the first public release
	with significant changes since 2001!

2014-07-25   Sean M. Burke  sburke@cpan.org
	* !DEVELOPER RELEASE!
	* !Release 1.20_01!
	* Many bugfixes.  Thanks especially to Tomaolc!
	* Yet more *.t files added for improved sanity checking.
	* Shuffling around the internals of Unidecode.pm
	* Putting in some vacuous 0x__.pm files where
	previously there would just be a load failure
2014-09-16 12:27:48 +00:00
wen
6ebf62d172 Update to 1.11
Upstream changes:
1.11	- 2014-08-08, H.Merijn Brand
    - Fixed eof (RT#97742)
    - Check for attribute conflicts early
    - csv (in => [..]) now defaults to *STDOUT for out
    - Support for multi-byte quote_char
    - New attribute "key" for csv ()

1.10	- 2014-08-04, H.Merijn Brand
    * Support for scalar ref in out: csv (out => \(my $x = ""), ...)
    * Support for multi-byte sep_char
    * Simplified the cache coding
2014-09-16 12:19:53 +00:00
wen
b1e68d27c6 Update to 0.70
Upstream changes:
0.70 2014-09-01
 * Added metadata for metacpan.

0.69 2013-02-27
 * Fixes in the distribution, namely adding versions to unversioned packages.

0.68 2013-02-27
 * Replacement for islower() which understands all Unicode 6.2.0
   chars with "LOWERCASE" property. Now we can detect prefices
   not just in ASCII ... this also seems to have fixed the strange
   windows XP test failures, probably due to undefined islower(). See RT #92864
 * Fixed strange problem with Solaris coredumping due to 0.67 changes.

0.67 2013-02-20
 * Reformatted changelog (thanks to Sergey Romanov)
 * Remove accents from C source file for Sun compiler probs.
 * Add 'gnu' as a system name.
 * Fixes for UTF-8 handling of combining marks
2014-09-16 12:12:53 +00:00
wiz
a1628393c5 Update to 1.2.3:
Release 1.2.3 (released Sep 1, 2014)
====================================

Features added
--------------

* #1518: `sphinx-apidoc` command now have a `--version` option to show version
  information and exit
* New locales: Hebrew, European Portuguese, Vietnamese.

Bugs fixed
----------

* #636: Keep straight single quotes in literal blocks in the LaTeX build.
* #1419: Generated i18n sphinx.js files are missing message catalog entries
  from '.js_t' and '.html'. The issue was introduced from Sphinx-1.1
* #1363: Fix i18n: missing python domain's cross-references with currentmodule
  directive or currentclass directive.
* #1444: autosummary does not create the description from attributes docstring.
* #1457: In python3 environment, make linkcheck cause "Can't convert 'bytes'
  object to str implicitly" error when link target url has a hash part.
  Thanks to Jorge_C.
* #1467: Exception on Python3 if nonexistent method is specified by automethod
* #1441: autosummary can't handle nested classes correctly.
* #1499: With non-callable `setup` in a conf.py, now sphinx-build emits
  user-friendly error message.
* #1502: In autodoc, fix display of parameter defaults containing backslashes.
* #1226: autodoc, autosummary: importing setup.py by automodule will invoke
  setup process and execute `sys.exit()`. Now sphinx avoids SystemExit
  exception and emits warnings without unexpected termination.
* #1503: py:function directive generate incorrectly signature when specifying
  a default parameter with an empty list `[]`. Thanks to Geert Jansen.
* #1508: Non-ASCII filename raise exception on make singlehtml, latex, man,
  texinfo and changes.
* #1531: On Python3 environment, docutils.conf with 'source_link=true' in the
  general section cause type error.
* PR#270, #1533: Non-ASCII docstring cause UnicodeDecodeError when uses with
  inheritance-diagram directive. Thanks to WAKAYAMA shirou.
* PR#281, PR#282, #1509: TODO extension not compatible with websupport. Thanks
  to Takeshi Komiya.
* #1477: gettext does not extract nodes.line in a table or list.
* #1544: `make text` generate wrong table when it has empty table cells.
* #1522: Footnotes from table get displayed twice in LaTeX. This problem has
  been appeared from Sphinx-1.2.1 by #949.
* #508: Sphinx every time exit with zero when is invoked from setup.py command.
  ex. `python setup.py build_sphinx -b doctest` return zero even if doctest
  failed.
2014-09-14 17:55:38 +00:00
wiz
f0060053c8 Update to 3.4.0:
3.4.0 (2014-09-10)
==================

Features added
--------------

* ``xmlfile(buffered=False)`` disables output buffering and flushes the
  content after each API operation (starting/ending element blocks or writes).
  A new method ``xf.flush()`` can alternatively be used to explicitly flush
  the output.

* ``lxml.html.document_fromstring`` has a new option ``ensure_head_body=True``
  which will add an empty head and/or body element to the result document if
  missing.

* ``lxml.html.iterlinks`` now returns links inside meta refresh tags.

* New ``XMLParser`` option ``collect_ids=False`` to disable ID hash table
  creation.  This can substantially speed up parsing of documents with many
  different IDs that are not used.

* The parser uses per-document hash tables for XML IDs.  This reduces the
  load of the global parser dict and speeds up parsing for documents with
  many different IDs.

* ``ElementTree.getelementpath(element)`` returns a structural ElementPath
  expression for the given element, which can be used for lookups later.

* ``xmlfile()`` accepts a new argument ``close=True`` to close file(-like)
  objects after writing to them.  Before, ``xmlfile()`` only closed the file
  if it had opened it internally.

* Allow "bytearray" type for ASCII text input.

Bugs fixed
----------

Other changes
-------------

* LP#400588: decoding errors have become hard errors even in recovery mode.
  Previously, they could lead to an internal tree representation in a mixed
  encoding state, which lead to very late errors or even silently incorrect
  behaviour during tree traversal or serialisation.

* Requires Python 2.6, 2.7, 3.2 or later. No longer supports
  Python 2.4, 2.5 and 3.1, use lxml 3.3.x for those.

* Requires libxml2 2.7.0 or later and libxslt 1.1.23 or later,
  use lxml 3.3.x with older versions.
2014-09-14 17:51:15 +00:00
szptvlfn
75be48599d Bump PKGREVISION for hs-text-1.2.0.0 2014-09-13 22:23:27 +00:00
szptvlfn
5ced08f477 Update to 3.1.6
CHANGES:
3.1.6

- Export 'Text' instances from Text.Parsec
- Make Text.Parsec exports more visible
- Re-arrange Text.Parsec exports
- Add functions 'crlf' and 'endOfLine' to Text.Parsec.Char for handling
  input streams that do not have normalized line terminators.
- Fix off-by-one error in Token.charControl
2014-09-13 22:06:52 +00:00
szptvlfn
7c0afe2f36 Update to 1.2.0.1
Changes from https://github.com/basvandijk/case-insensitive
1.2.0.1
 - Solved warnings on GHC-7.8.3
 - Bump text upper version bounds
2014-09-13 22:06:12 +00:00
szptvlfn
f232c805cd Update to 0.7.0.3
CHANGELOG:
- 0.7.0.3
    * Dependency bump to allow `text-1.2`
2014-09-13 22:05:22 +00:00
szptvlfn
0c41302168 Update to 0.6.1.1
CHANGELOG:
- 0.6.1.1
    * Bump `text` dependency to allow 1.2
2014-09-13 22:04:41 +00:00
schmonz
95cae6a3b8 Replace Python interpreter in __init__.py to squelch pkgsrc warning.
Seems unlikely to matter much in practice; ride recent version bump.
2014-09-12 13:52:20 +00:00
wen
9202ba406d Update to 2.002
Upstream changes:
2.002     2014-07-05T15:20:40Z

  - Docs: Add example of command line usage to Synopsis.
    Thanks, Cindy Wang!

2.001     2014-04-20T02:40:11Z

  - Use double-asterisk instead of double-underscore for bold Markdown.
    This allows bold and italic to be nested without confusing parsers.
    Thanks to Mike Covington for the great pull request (gh-9)!

2.000     2014-02-01T14:38:27Z

  - Releasing previous (1.99[01]) as stable
    (now uses Pod::Simple instead of Pod::Parser).
    See below for changes.

1.991-TRIAL 2014-01-03T04:07:49Z

  [Test Fixes]
  - Ignore worthless testing of empty links that fail with Pod::Simple 3.16.

1.990-TRIAL 2014-01-02T14:13:40Z

  [Enhancements]
  - Change backend from Pod::Parser to Pod::Simple.
    Previous documented API has been ported
    however the Pod::Simple API should be preferred for new code.
  - Improve escaping of markdown characters.
  - Accept for/begin 'markdown' and 'html' regions by default.
  - Represent over/back regions without items as blockquotes.

  [Backward Incompatible Changes]
  - E<> codes used to produce equivalent html entities (&foo;).
    These now simply print the corresponding unicode character as utf-8.
    If you desire alternate behavior please report a bug.
  - Tabs are now expanded.
2014-09-12 09:02:33 +00:00
wiz
ac3a20693a Update to 2014.9.8:
2014.9.8 - 2014-09-08
=====================
----

* Fix #28: missing ``html2text`` package in installation.
2014-09-12 06:04:36 +00:00
szptvlfn
c1eb0e0904 + hs-texmath 2014-09-10 21:39:49 +00:00
szptvlfn
a2d4cb9da5 Import texmath-0.8 as textproc/hs-texmath,
packaged for wip.

The texmath library provides functions to read and write TeX math,
presentation MathML, and OMML (Office Math Markup Language, used in
Microsoft Office). Support is also included for converting math formats to
pandoc's native format (allowing conversion, via pandoc, to a variety of
different markup formats). The TeX reader supports basic LaTeX and AMS
extensions, and it can parse and apply LaTeX macros.
(See http://johnmacfarlane.net/texmath for a live demo of
 bidirectional conversion between LaTeX and MathML.)

The package also includes several utility modules which may be useful for
anyone looking to manipulate either TeX math or MathML. For example, a copy
of the MathML operator dictionary is included.
2014-09-10 21:38:06 +00:00
szptvlfn
d50da17446 + hs-pandoc-types 2014-09-09 19:10:49 +00:00
szptvlfn
52cfef569e Import pandoc-types-1.12.4.1 as textproc/hs-pandoc-types,
packaged for wip.

Text.Pandoc.Definition defines the Pandoc data structure, which is used by
pandoc to represent structured documents. This module used to live in the
pandoc package, but starting with pandoc 1.7, it has been split off, so
that other packages can use it without drawing in all of pandoc's
dependencies, and pandoc itself can depend on packages (like citeproc-hs)
that use them.

Text.Pandoc.Builder provides functions for building up Pandoc structures
programmatically.

Text.Pandoc.Generic provides generic functions for manipulating Pandoc
documents.

Text.Pandoc.Walk provides faster, nongeneric functions for manipulating
Pandoc documents.

Text.Pandoc.JSON provides functions for serializing and deserializing a
Pandoc structure to and from JSON.
2014-09-09 19:09:09 +00:00
wiz
8f7c75985d Bump PKGREVISION for netpbm update.
Add some build fixes where necessary.
2014-09-08 21:24:44 +00:00
wiz
9f67526db3 DEPEND on netpbm instead of including its buildlink3.mk file, if you're
not linking against it.
Bump PKGREVISION for packages that (might be|are) changed.
2014-09-08 20:40:29 +00:00
wiz
967d145698 Update to 2014.9.7:
2014.9.7 - 2014-09-07
* Fix ``unicode``/``type`` error in memory leak unit-test.
* Feature #16: Remove ``install_deps.py``.
* Feature #17: Add status badges via pypin.
* Feature #18: Add ``Python`` ``3.4`` to travis config file.
* Feature #19: Bring ``html2text`` to a separate module and take out the ``conf``/``constant`` variables.
* Feature #21: Remove meta vars from ``html2text.py`` file header.
* Fix: Fix TypeError when parsing tags like <img src='foo' alt>. Fixed in #25.
2014-09-07 20:25:03 +00:00
szptvlfn
2342614b02 + hs-attoparsec 2014-09-06 21:21:33 +00:00
szptvlfn
9e6ee500a2 Import attoparsec-0.12.1.2 as textproc/hs-attoparsec,
packaged for wip by pho.

A fast parser combinator library, aimed particularly at dealing efficiently
with network protocols and complicated text/binary file formats.
2014-09-06 21:20:06 +00:00
wiz
62bbf81be4 Update to 1.11. Add some test dependencies.
1.11 Fri Aug 29 20:08:20 PDT 2014
 - Apply 139. @ehuelsmann++

1.10 Thu Aug 28 22:53:26 PDT 2014
 - Apply 138. @ehuelsmann++

1.09 Tue Aug 19 16:41:13 PDT 2014
 - Replace tabs with spaces

1.08 Mon Aug 18 10:21:48 PDT 2014
 - Dep on Test::YAML 1.05

1.07 Mon Aug 18 08:40:01 PDT 2014
 - Apply 8 from shlomif++. Add doc examples for YAML::Any.

1.06 Sat Aug 16 16:51:08 PDT 2014
 - Change testdir to t

1.05 Sat Aug 16 13:03:28 PDT 2014
 - Meta 0.0.2

1.04 Sat Aug 16 04:28:10 PDT 2014
 - Eliminate spurious trailing whitespace

1.03 Sat Aug 16 03:32:35 PDT 2014
 - Eliminate File::Basename from test/

1.02 Fri Aug 15 21:09:54 PDT 2014
 - Add t/000-compile-modules.t

1.01 Thu Aug  7 14:48:24 PDT 2014
 - Dep on patched Test::YAML

1.00 Thu Aug  7 00:35:21 PDT 2014
 - Fix bad encoding in Pod

0.99 Wed Aug  6 17:55:42 PDT 2014
 - Switch to external Test::Base

0.98 Wed Jul 30 12:32:25 PDT 2014
 - Fix indexing of YAML::Any
 - Change IRC to irc.perl.org#yaml

0.97 Wed Jul 16 23:37:04 PDT 2014
 - Move remaining docs to Swim

0.96 Sun Jul 13 22:54:08 PDT 2014
 - Fix Metadata and add Contributing file
 - Change Kwim to Swim

0.95 Sat Jun 14 10:32:08 PDT 2014
 - Fix dumping blessed globs.

0.94 Sat Jun 14 10:32:08 PDT 2014
 - Skip a failing test on 5.8 introduced in 0.93

0.93 Fri Jun 13 22:32:18 PDT 2014
 - Switch to Zilla::Dist
 - Add badges to doc
 - @thorsteneckel++ fixed #18
 - @karenetheridge++ fixed #19
2014-09-06 14:48:29 +00:00
wiz
8e11065618 + p5-Test-YAML. 2014-09-06 14:46:00 +00:00
wiz
42fb480b35 Import p5-Test-YAML-1.05 as textproc/p5-Test-YAML.
Test::YAML is a subclass of Test::Base with YAML specific support.
2014-09-06 14:45:49 +00:00
wiz
fa68e23ab8 Update to 1.49:
1.46 2013-03-29 rurban
----

  * Fix RT #84292 PIPE_PID/waitpid broken in Exec pipe_read since 5.17.6 (rurban)

  * Fix RT #84210 Bad NAME in Makefile.PL (miyagawa)

  * Fix RT #82687 cpansign MANIFEST failure (myra)

  * Work on RT #41285 test failures with non-english locale (reported by srezic)

  * Skip patching the src for newWarnings style, these are the default (rurban)

  * Fix RT #53132 examples/method/Decompress.pm syntax error (kevin ryde)
    and add usage docs.

1.47 2013-03-31 rurban
----

  * Reproduced and fixed RT #41285 test failures with non-english locale
    (reported by srezic)

1.48 2013-04-01 rurban
----

  * added META records, such as repository, recommends to Makefile.PL

  * added META and POD tests

1.49 2013-04-02 rurban
----

  * Better fix for RT #41285 test failures with non-english locale
    (patched by srezic, pull #1)

  * Add t/z_*.t meta tests (now for real), move Try to t/FilterTry,
    add POD to Filter::Util::Call, Filter::Util::Exec and generated
    FilterTry.
2014-09-06 14:36:48 +00:00
wen
768e56c1c3 Update to 2.09
Upstream changes:
2.09 30 May 2014
        - Uploaded source code to GitHub and included repository URLs in
          metadata.
        - Included META.json file in addition to META.yml.
        - Set minimum required ExtUtils::MakeMaker version to 6.64 to ensure
          that all parameters used are supported, to save jumping through hoops
          to support earlier versions.  (This should not be a problem since
          ExtUtils::MakeMaker 6.64 is easily installed into Perl 5.8.1 and
          above, that being the whole point of the new choice of minimum
          supported Perl version.)
        - Set minimum required Perl version to 5.8.1.  This is in line with the
          minimum requirement of the "Perl Toolchain".
2014-09-06 14:07:36 +00:00
wiz
f5af6eeee1 Update to 2.201. Add test dependency.
2.201 (2014-08-30)
	- correct handling of uppercase a-labels in
	  domain_to_{ascii,unicode}
	- FIXES: #98354: Capitalized ACE prefix does not work (reported
	  by victor@*****.ru)
2014-09-06 13:42:37 +00:00
jperkin
c3cfa1031c Requires USE_TOOLS+=yacc. 2014-09-06 07:40:00 +00:00
szptvlfn
0c32d9fe76 + hs-case-insensitive 2014-09-05 21:38:18 +00:00
szptvlfn
65e9caf709 Import case-insensitive-1.2.0.0 as textproc/hs-case-insensitive,
packaged for wip by pho.

The module Data.CaseInsensitive provides the CI type constructor which
can be parameterised by a string-like type like: String, ByteString,
Text, etc.. Comparisons of values of the resulting type will be
insensitive to cases.
2014-09-05 21:36:49 +00:00
szptvlfn
57b7951159 Bump PKGREVISION for hs-text-1.1.1.3 2014-09-05 21:27:09 +00:00
schmonz
101f374ca9 Update to 2.14. From the changelog:
[FIXES]
The -s flag would fail to suppress certain warnings.  Thanks, Kassio
Borges. (GitHub ticket #439)

The -w flag would fail to work properly with regex features such as
alternation.  Thanks to Ed Avis for the report (GitHub ticket #443)

The -g flag should now work faster on larger codebases.  Thanks to
Manuel Meurer for the report (GitHub ticket #458)

More fixes for Windows tests.  Thanks to GitHub user @ispedals.

More whack-a-mole with Windows failures.  This time, it's POSIX::mkfifo
dying on Windows instead of returning undef like the docs implied,
or at least that I inferred.

Fixed incorrect deduping of config files under Windows.  Thanks,
Denis Howe.

More build fixes for Windows.  Windows config finder fixes from
James McCoy.

t/ack-named-pipes.t uses POSIX::mkfifo instead of the external
command, which should be more portable.  Thanks, Pete Krawczyk.

The building of ack-standalone relied on the output of `perldoc
-l`, which I apparently can't rely on having been installed.  I've
changed the way that the squash program finds File::Next.

Issue #313: ack would fail when trying to check files for readability
on some networked filesystems, or on Mac OS X with ACLs.  Now it
uses the filetest pragma.  Thanks, Jonathan Perret.

[ENHANCEMENTS]
ack now ignores JavaScript and CSS source maps.  Thanks, Chris
Rebert.

ack now ships with customized shell completion scripts for bash and zsh.

Add docs for available colors in ack.

--create-ackrc keeps the comments that describe each of the options,
and it shows the ack version number.

Now ignores Cabal (Haskell) sandboxes.  Thanks, Fraser Tweedale.

Added filetypes for Jade, Smarty and Stylus.  Thanks, Raúl Gundín.

[INTERNALS]
ack's entire test suite now runs under Perl's -T taint flag.  We'll
build more security tests on top of this.

Added some checks to the squash program that I hope will turn up
errors in the Windows builds.
2014-09-04 22:01:32 +00:00
wiz
8b03c6c2a2 Update to 3.3.6:
3.3.6 (2014-08-28)
==================

Bugs fixed
----------

* Prevent tree cycle creation when adding Elements as siblings.

* LP#1361948: crash when deallocating Element siblings without parent.

* LP#1354652: crash when traversing internally loaded documents in XSLT
  extension functions.
2014-08-31 21:32:44 +00:00
szptvlfn
9da944d0cd make it clear what package depend on
discussed with wiz@.
2014-08-29 14:08:38 +00:00
obache
72af082e2a Update groonga to 4.0.5.
Release 4.0.5 - 2014/08/29
--------------------------

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

* Dropped Ubuntu 13.10 (Saucy Salamander).
* Supported to show weight vector element as XML.
* [ :doc:`/reference/functions/between` ] Supported outside of key range.
* [mruby] Changed to use Onigmo as regexp implementation.
* Added :doc:`/reference/functions/highlight_full` and
  :doc:`/reference/functions/highlight_html` which tags
  output text. [GitHub#185] [Patch by Naoya Murakami]
* [doc] Updated outdated functions/commands reference
  [GitHub#188] [GitHub#189] [Patch by Naoya Murakami]
* [benchmark] Added average and median in benchmark result.
* Exported :c:func:`grn_selector_func` and :c:func:`grn_proc_set_selector`
  for plugin developer. [GitHub#190] [Patch by Naoya Murakami]
* [ :doc:`/reference/commands/tokenize` ] Added "mode" option to control behavior.
  You can use ``GET`` or ``ADD`` as a mode.
  [GitHub#191] [GitHub#192] [Patch by Naoya Murakami]
* Supported near search by '\*N"A Z"' syntax.
* Supported to customize behavior of tokenizer whether it skips token or
  skips token with position. This feature is useful for developing tokenizer plugin.
  [GitHub#193] [Patch by Naoya Murakami]
* [doc] Updated description that a bug report is accepted in Japanese on GitHub issue tracker.
  [Reported by 6elz] [groonga-dev,02651]
* [doc] Updated tutorial in English. [GitHub#194] [Patch by cosmo0920]

Fixes
^^^^^

* [php] Fixed memory leak when :c:func:`grn_ctx_recv()` is used.
  [GitHub#184] [Patch by @do-aki]
* [php] Fixed to avoid double free when :c:func:`grn_ctx_close()` is called.
  [GitHub#184] [Patch by @do-aki]
* Fixed to support out-of-tree build again.
* [httpd] Updated bundled nginx version to the latest mainline (1.7.4). This update contains vulnerability fix.
* Fixed a bug that infinite loop occurs sometimes when updating indexes.
  [groonga-dev,02673] [Reported by MINAGAWA Sho]
* Fixed a bug that document frequency is invalid when
  :ref:`offline-index-construction` is used.
  [groonga-dev,02691] [Reported by Naoya Murakami]

Thanks
^^^^^^

* @do-aki
* Naoya Murakami
* 6elz
* MINAGAWA Sho
* cosmo0920
2014-08-29 10:04:45 +00:00
obache
e413d78e06 distutils package, register egg file. 2014-08-26 11:57:30 +00:00
obache
9f8757c9e0 Update py-markdown2 to 2.2.2.
## python-markdown2 2.2.2

- [pull #156] Footnotes XML compatibility.
- [pull #157] Horizontal rule minimum length.
- [pull #162] Fix escaping fenced code block with safe mode
- [pull #163] Fix code highlight with safe mode
2014-08-26 11:51:58 +00:00
wiz
ae075e6d55 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
jperkin
d5785d1344 Fix build on SunOS (needs explicit -lX11). 2014-08-21 08:47:00 +00:00
joerg
95a4fb32fa Fix PLIST for PHP != 5.4. 2014-08-19 13:39:45 +00:00
szptvlfn
c77c708cd0 + hs-hscolour 2014-08-18 21:22:00 +00:00
szptvlfn
2a22f0688f Import hscolour-1.20.3 as textproc/hs-hscolour,
packaged for wip by pho.

hscolour is a small Haskell script to colourise Haskell code. It currently
has six output formats: ANSI terminal codes (optionally XTerm-256colour
codes), HTML 3.2 with font tags, HTML 4.01 with CSS, HTML 4.01 with CSS and
mouseover annotations, XHTML 1.0 with inline CSS styling, LaTeX, and mIRC
chat codes.
2014-08-18 21:20:36 +00:00
wiz
bec501a896 regen. 2014-08-18 08:31:58 +00:00
schmonz
d154ca6cd4 Add runtime dependency on textproc/highlight (for config files). 2014-08-18 02:16:13 +00:00
schmonz
f793607fa9 Add and enable p5-highlight. 2014-08-18 01:27:41 +00:00
schmonz
0adb06afe8 Initial import of p5-highlight, Perl bindings to textproc/highlight. 2014-08-18 01:26:58 +00:00
schmonz
e7b4359d38 Rename old patches by new convention. 2014-08-18 01:24:59 +00:00