Commit graph

6259 commits

Author SHA1 Message Date
obache
3ace0f3172 Update mecab to 0.996.
2013-02-18 MeCab 0.996
* fixes missing linkage with iconv.
* Add function to generate new CSV file from adding costs and left/right context
  ID of CVS for user's dictionary.
* Add Lattice::set_result() method for generated analysis result to Lattice
2013-01-24 MeCab 0.995
* Reimplementation of partial analysis function
* Add API for partial analysis function (Lattice:set_boundary_constrant,
  Lattice::set_feature_constranit)
2013-02-28 12:31:37 +00:00
jperkin
1b7dba1c62 Don't use -export-symbols-regex, it breaks non-GNU linkers and results in the
wrong SONAME being set, in this case to '../librarian/.libs/librarian.so'.

Fixes a number of packages and PR#37842.

Bump PKGREVISION, binary package needs to be updated.
2013-02-23 22:17:01 +00:00
shattered
088e18038c Update homepage URLs. 2013-02-22 19:59:05 +00:00
ryoon
e6f3889355 Update to 2.2.1
* Fix MASTER_SITES, sf.net no longer has distfile.
* Fix HOMEPAGE.

Changelog:
* Change command name to markdown_py from markdown.
* Drop python 2.3 and 2.4 support.
* Many bugfixes.
2013-02-19 19:41:28 +00:00
kleink
bc9f660c30 Update p5-Text-vFile-asData to 0.08.
0.08    Monday 28th January, 2013
        Merge fix from Ashley Willis - Only " should get special
        treatment as a quote character.
        https://github.com/richardc/perl-text-vfile-asdata/pull/1
2013-02-19 19:04:33 +00:00
dholland
384132a8a7 Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
wen
1c2b481aca Update to 3.25
Upstream changes:
2013-02-16   David E. Wheeler <david@justatheory.org>
	* Release 3.25

	Improved the warning when "=item" types mismatch within one
	"=over"/"=back" block.

2013-02-14   David E. Wheeler <david@justatheory.org>
	* Release 3.24

	Fixed corner case bug for unlikely scenario in which non-UTF-8
	text could be parsed as UTF-8. Grant McLean.

	XHTML IDs can no longer end with punctuation. Thanks to Smylers
	for the patch.

	Fixed test failure on Perl 5.6.2.

	Changed the default installation location from "perl" to "site" on
	5.12 and higher, since as of that version of Perl, dual-life
	modules no longer need to be installed in "perl" to replace
	in-core versions. Patch from tzccinct.

	Fixed hash order dependency test failures on Perl 5.17. Thanks to
	Yves Orton for the patch.

	Inlined the code that tries to guess a Pod file's encoding. This
	reduces the time Pod::Simple takes to build the core Perl
	documentation by 15-20%. Thanks to Dagfinn Ilmari Mannsåker for
	the patch!

	Added a warning when "=item" types mismatch within one
	"=over"/"=back" block. Marc Green/Google Summer of Code, with
	assist from RJBS.

	Fixed regression introduced in 3.22 in which "C< >" tags were
	incorrectly treated as verbatim text in table of contents items
	emitted by Pod::Simple::XHTML. Thanks to Randy Stauner for the
	report and to Thomas Sibley for the fix!

	Loosened up the matching of "L< >" tags for man pages so that they
	allow names with dots, underscores, and any other chararacters
	other than "/", just so long as they end in '[(][-a-zA-Z0-9]+[)]'.
	Thanks to Dave Rolsky and Kevin Ryde for the reports (RT #82975 &
	RT #82972).

	Fixed inverted mapping of "keyboard" to "kbd" in
	Pod::Simple::HTML. Thanks to Robert Boisvert for the bug report
	(RT #79201).

	Added two new Tagmap entries to Pod::Simple::HTML: "preformat"
	maps to "pre", and "teletype" maps to "tt". Suggested by Robert
	Boisvert (RT #79201).

	"X< >" tags are now ignored by the pull parser when it searches
	for titles, as is any trailing whitespace. Thanks to Patrice Dumas
	for the report (RT #74389).
2013-02-17 12:57:07 +00:00
wiz
d1b820f37b Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
wiz
5f461dbea7 Recursive bump for png-1.6. 2013-02-16 11:18:48 +00:00
wiz
0602d449ce Recursive bump for png-1.6. 2013-02-16 11:17:56 +00:00
shattered
e0a5c1b4d8 Update to 0.8.6. Changes:
- fixed a bug in ezxml_add_child() that can occur when adding tags out of order
- for consistency, ezxml_set_attr() now returns the tag given
- added ezxml_move() and supporting functions ezxml_cut() and ezxml_insert()
- fixed a bug where parsing an empty file could cause a segfault
2013-02-15 19:17:20 +00:00
obache
07659b9b8d recursive bump from boost-lib shlib update. 2013-02-15 11:53:59 +00:00
taca
3145cbbfb5 Update ruby-multi_json to 1.6.0.
1.6.0
-----
* [Add gson.rb support](https://github.com/intridea/multi_json/pull/71)
* [Add MultiJson.default_options](https://github.com/intridea/multi_json/pull/70)
* [Add MultiJson.with_adapter](https://github.com/intridea/multi_json/pull/67)
* [Stringify all possible keys for ok_json](https://github.com/intridea/multi_json/pull/66)
* [Alias `MultiJson::DecodeError` to `MultiJson::LoadError`](https://github.com/intridea/multi_json/pull/79)
2013-02-13 16:17:51 +00:00
taca
6b5b1aa81c Update ruby-multi_json to 1.5.1.
Various fixes and workaround for JSON#parse.
2013-02-12 15:08:30 +00:00
taca
b04b753a38 Update ruby-json and ruby-json-pure to 1.7.7.
2013-02-04 (1.7.7)
  * Security fix for JSON create_additions default value and
    JSON::GenericObject. It should not be possible to create additions unless
    explicitely requested by setting the create_additions argument to true or
    using the JSON.load/dump interface. If JSON::GenericObject is supposed to
    be automatically deserialised, this has to be explicitely enabled by
    setting
      JSON::GenericObject.json_createble = true
    as well.
  * Remove useless assert in fbuffer implementation.
  * Apply patch attached to https://github.com/flori/json/issues#issue/155
    provided by John Shahid <jvshahid@gmail.com>, Thx!
  * Add license information to rubygems spec data, reported by Jordi Massaguer
    Pla <jmassaguerpla@suse.de>.
  * Improve documentation, thx to Zachary Scott <zachary@zacharyscott.net>.
2013-02-12 13:13:08 +00:00
wiz
5f4b331d8a Update to 1.56:
2013/02/11 (diffstat 1.56)
	+ add -K option which attempts to improve the annotation of "only"
	  files by looking for a match in the resulting set of files and
	  inferring whether the file was added or removed (request by Marc
	  Haber).

	+ add check of command-line options for valid numbers.

	+ improve merging of patches for the same filename (report/testcase by
	  Paul E McKenney).

	+ document -d option in manpage.

	+ document -b, -C, -s option in usage (patch by Tim Waugh, Red Hat
	  #852770)

	+ modify configure script as done for byacc in 2012/10/03, making the
	  2.52-patches the prerequisite and adding support for --datarootdir
	  option.

	+ update config.guess, config.sub

	+ add logic to handle SVN diffs when the pathnames contain spaces
	  (patch by Stuart Prescott, Debian #675475).

	+ fix typo in package/debian/control

2012/01/03 (diffstat 1.55)
	+ add -R option, like patch's, to reverse the order of the comparison.

	+ FreeBSD ports/148604, ports/149500 reported that lzcat may not
	  support extracting files compressed in xz format (patch by Frederic
	  Culot, FreeBSD #149500).

	+ address documentation issue raised in Novell #739210

	+ correct typo s/Solaris/Solar/.

	+ updated configure script macros:
	  CF_ANSI_CC_CHECK CF_DISABLE_LEAKS CF_GCC_ATTRIBUTES CF_GCC_WARNINGS
	  CF_MAKE_TAGS CF_MSG_LOG CF_PATH_PROG CF_WITH_INSTALL_PREFIX
	  CF_XOPEN_SOURCE

	+ update config.guess, config.sub

2010/10/10 (diffstat 1.54)
	+ change Debian package script to use native format.

	+ correct counts used for new files when -S/-D options are used.

	+ minor typography improvement to manpage (patch by Solar Designer)

	+ remove the temporary directory on error, introduced in 1.48+ (patch
	  by Solar Designer).

2010/07/19 (diffstat 1.53)

	+ add missing "break" statement which left "-c" option falling-through
	  into "-C".

2010/07/16 (diffstat 1.52)

	+ add "-C" option to show the histogram using SGR colors.

	+ add "-s" option to show only the summary line.

	+ add configure check for "xz", using this in preference to "lzcat"
	  (FreeBSD #148604).

	+ also escape literal dashes used as part of the histogram in the
	  manpage.

	+ modify hyphens vs dashes in manpage per
		http://lintian.debian.org/tags/hyphen-used-as-minus-sign.html
	  (patch by Francois Marier).

	+ drop mkdirs.sh, use "mkdir -p"

	+ add configure checks for ctags and lint.

	+ updated configure macros

	+ reformat CHANGES to work with metrics script.

	+ fix strict gcc warnings, e.g., using const.

	+ improve a case where filenames have embedded blanks (patch by Reinier
	  Post).

	+ update config.guess, config.sub
2013-02-12 10:13:41 +00:00
taca
918bd611fa Update ruby-will-paginate to 3.0.4.
No changes are available, but various changes.
2013-02-11 09:24:24 +00:00
taca
c06f0262b6 Update ruby-rison to 2.0.0.
* Switch to use parslet and minitest.
2013-02-11 09:17:42 +00:00
taca
1341577041 Update ruby-libxml to 2.5.0.
= Release History

== 2.5.0 / 2013-01-27 Charlie Savage

* Compatibility with older versions for IO::write (rb_io_bufwrite is specific
  to ruby >= 1.9.3?)
  and symbols are VALUE not ID (julp).
* Fix version for xmlTextWriterSetQuoteChar, it appeared in libxml2 2.9.0, last
  version (julp)
* Update use of LIBXML_VERSION (julp).
* Fix misuse of rb_scan_args (julp).
* Update documentation, including DTD docs and added XML Writer (julp).
* Added a new XML::Writer class (julp).
* Improved xml reader api and add namespace support.  Note that passing a
  numeric value to XML::Reader::move_to_attribute has been deprecated. Instead
  you should now use #move_to_attribute_no.  (julp).
* Improve error handling and messages (Jarl Friis)
2013-02-11 09:10:40 +00:00
taca
ba72b6bbaf Update ruby-kramdown to 0.14.2.
Changes

* 1 minor change
	New option link_defs for pre-defining link definitions

* 1 bug fix
	Fixed raised errors on atx headers without text
2013-02-11 09:08:16 +00:00
taca
ee1092f0a7 Update ruby-fast-stemmer to 1.0.2.
Allow other compiler other than "gcc".
2013-02-11 09:07:04 +00:00
taca
eaef382bc9 Update ruby-nokogiri to 1.5.6.
== 1.5.6 / unreleased

* Features

  * Improved performance of XML::Document#collect_namespaces. #761 (Thanks, Juergen Mangler!)
  * New callback SAX::Document#processing_instruction (Thanks, Kitaiti Makoto!)
  * Node#native_content= allows setting unescaped node contant. #768
  * XPath lookup with namespaces supports symbol keys. #729 (Thanks, Ben Langfeld.)
  * XML::Node#[]= stringifies values. #729 (Thanks, Ben Langfeld.)
  * bin/nokogiri will process a document from $stdin
  * bin/nokogiri -e will execute a program from the command line
  * bin/nokogiri --version will print the Xerces and NekoHTML versions when ran with JRuby.


* Bugfixes
  * Nokogiri now detects XSLT transform errors. #731 (Thanks, Justin Fitzsimmons!)
  * Don't throw an Error when trying to replace top-level text node in DocumentFragment. #775
  * Raise an ArgumentError if an invalid encoding is passed to the SAX parser. #756 (Thanks, Bradley Schaefer!)
  * [JRuby] space prior to xml preamble causes nokogiri to fail parsing. (fixed along with #748) #790
  * [JRuby] Fixed the bug Nokogiri::XML::Node#content inconsistency between Java and C. #794, #797
  * [JRuby] raises INVALID_CHARACTER_ERR exception when EntityReference name starts with '#'. #719
  * [JRuby] doesn't coerce namespaces out of strings on a direct subclass of Node. #715
  * [JRuby] Node#content now renders newlines properly. #737 (Thanks, Piotr Szmielew!)
  * [JRuby] Unknown namespace are ignore when the recover option is used. #748
  * [JRuby] XPath queries for namespaces should not throw exceptions when called twice in a row. #764
  * [JRuby] More consistent (with libxml2) whitespace formatting when emitting XML. #771
  * [JRuby] namespaced attributes broken when appending raw xml to builder. #770
  * [JRuby] Nokogiri::XML::Document#wrap raises undefined method `length' for nil:NilClass when trying to << to a node. #781
  * [JRuby] Fixed "bad file descriptor" bug when closing open file descriptors. #495
  * [JRuby] JRuby/CRuby incompatibility for attribute decorators. #785
  * [JRuby] Issues parsing valid XML with no internal subset in the DTD. #547, #811
  * [JRuby] Issues parsing valid node content when it contains colons. #728
  * [JRuby] Correctly parse the doc type of html documents. #733
  * [JRuby] Include dtd in the xml output when a builder is used with create_internal_subset. #751
  * [JRuby] builder requires textwrappers for valid utf8 in jruby, not in mri. #784
2013-02-11 02:44:26 +00:00
taca
2ae3b3e23a Update ruby-json and ruby-json-pure to 1.7.6.
2012-11-29 (1.7.6)
  * Add GeneratorState#merge alias for JRuby, fix state accessor methods. Thx to
   jvshahid@github.
  * Increase hash likeness of state objects.
2013-02-11 02:43:26 +00:00
taca
5ab0e43bd9 Update ruby-diff-lcs to 1.2.1.
== 1.2.1 / 2013-02-09

* Bugs Fixed:
  * As seen in https://github.com/rspec/rspec-expectations/pull/200, the
    release of Diff::LCS 1.2 introduced an unnecessary public API change to
    Diff::LCS::Hunk (see the change at
    https://github.com/rspec/rspec-expectations/commit/3d6fc82c for details).
    The new method name (and behaviour) is more correct, but I should not have
    renamed the function or should have at least provided an alias. This
    release restores Diff::LCS::Hunk#unshift as an alias to
    #merge. Note that the old #unshift behaviour was incorrect and will not be
    restored.

== 1.2.0 / 2013-01-21
* Minor Enhancements:
  * Added special case handling for Diff::LCS.patch so that it handles patches
    that are empty or contain no changes.
  * Added two new methods (#patch\_me and #unpatch\_me) to the includable
    module.
* Bugs Fixed:
  * Fixed issue #1 patch direction detection.
    https://github.com/halostatue/diff-lcs/issues/1
  * Resolved issue #2 by handling string[string.size, 1] properly (it returns
    "" not nil). https://github.com/halostatue/diff-lcs/issues/2
  * Michael Granger (ged) fixed an implementation error in Diff::LCS::Change
    and added specs in pull request #8. Thanks!
    https://github.com/halostatue/diff-lcs/issues/8
  * Made the code auto-testable.
  * Vít Ondruch (voxik) provided the latest version of the GPL2 license file in
    pull request #10. Thanks! https://github.com/halostatue/diff-lcs/issues/10
  * Fixed a documentation issue with the includable versions of #patch! and
    #unpatch! where they implied that they would replace the original value.
    Given that Diff::LCS.patch always returns a copy, the documentation was
    incorrect and has been corrected. To provide the behaviour that was
    originally documented, two new methods were added to provide this
    behaviour. Found by scooter-dangle in issue #12. Thanks!
    https://github.com/halostatue/diff-lcs/issues/12
* Code Style Changes:
  * Removed trailing spaces.
  * Calling class methods using '.' instead of '::'.
  * Vít Ondruch (voxik) removed unnecessary shebangs in pull request #9.
    Thanks! https://github.com/halostatue/diff-lcs/issues/9
  * Kenichi Kamiya (kachick) removed some warnings of an unused variable in
    lucky pull request #13. https://github.com/halostatue/diff-lcs/issues/13
    Thanks!
  * Embarked on a major refactoring to make the files a little more manageable
    and understand the code on a deeper level.
  * Adding to http://travis-ci.org.
2013-02-11 02:41:42 +00:00
jperkin
becd113253 PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
markd
2103f7c51d Update to 2.8.0 - from Jaap Boender
2.8.0
 * Improved NRLModel query prefix expansion.
 * Support for plain SQL queries in the Virtuoso backend.
 * Introduced new query language flag QueryLanguageSparqlNoInference.
   This language is not supported by any backends. It is supposed to
   be used in clients like Nepomuk to avoid the usage of long user
   types which are harder to read.
 * Convert Virtuoso IRI_ID values into simple literal strings. At some
   point if the need arises we might call ID_TO_IRI() to convert them
   into URIs.
 * New boolean option "noStatementSignals" in the Virtuoso backend which
   will disable Model::statementsAdded() and friends.
 * Improved local unix socket communication in the server/client system:
   A custom socket implementation as a replacment for QLocalSocket makes
   it possible to use one socket across threads.

2.7.6
 * Support for the new SPARQL 1.1 DELETE statement which omits the graph
   to delete from for faster removeAllStatement execution.
 * Support for the new default graph query result format of Virtuoso >= 6.1.5
 * Fixed apidox generation with Doxygen 1.8.0.

2.7.5
 * Be less strict when converting a string to a QDateTime:
   - Allow an empty time part, ie. "2011-10-04".
   - Allow the usage of a space instead of "T" to separate date from time.
 * Fixed URI parsing in the SparqlModel.
 * Fixed an endless loop in the VirtuosoModel destruction which can happen
   in rare error cases.
 * Fixed serialization of non-string literal values.
 * Support Turtle result encoding in the SPARQL model.
2013-02-04 20:05:21 +00:00
jmcneill
30e7b4ecf3 Fix NetBSD build with gcc <= 4.5 on arm (missing builtin atomics). 2013-02-01 03:44:22 +00:00
wiz
6f12e6e44a Update to 0.9.30:
2013-01-22 Rasqal Version 0.9.30 Released

   Removed RDQL support as promised. So long and thanks for all the
   queries. Use SPARQL instead.
   Improved floating equality, comparison and promotion rules
   Made other fixes and improvements including fixing reported issues:
   0000506, 0000511 and 0000523.
2013-01-29 06:15:51 +00:00
rhaen
3252fce04d Updated to 1.58
1.58  28 May 2012
      Many thanks for Vadim Repin for numerous excellent bug reports!
      [FIXES]
      - Appended pdf revisions incorrectly incremented object generation numbers
        https://rt.cpan.org/Ticket/Display.html?id=76513
      - Appending pdf revisions was broken for non-linearized PDFs
        https://rt.cpan.org/Ticket/Display.html?id=76514
      - Allow multiple "startxref" statements in the last 1024 bytes -- unlikely, but possible
        https://rt.cpan.org/Ticket/Display.html?id=77508
      - Allow whitespace at the beginning of an indirect object (I think the PDF spec is
        ambiguous about this)
        https://rt.cpan.org/Ticket/Display.html?id=76512
      - Allow backspace character
        https://rt.cpan.org/Ticket/Display.html?id=76151
      [DOCUMENTATION]
      - mention $pdf->setPageContent($pagenum, $tree->toString());
        Leo Lapworth and http://cpanforum.com/posts/13228
2013-01-27 10:31:19 +00:00
wiz
2b107aa1f8 Fix build with automake-1.13. 2013-01-26 22:59:08 +00:00
adam
f4c3b89da7 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
obache
31a1a7c1ea + ruby-levenshtein 2013-01-26 10:50:23 +00:00
obache
b0a5e181de Import ruby-levenshtein-0.2.2 as textproc/ruby-levenshtein.
The Levenshtein distance is a metric for measuring the amount
of difference between two sequences (i.e., the so called edit
distance). The Levenshtein distance between two sequences is
given by the minimum number of operations needed to transform
one sequence into the other, where an operation is an
insertion, deletion, or substitution of a single element.

The two sequences can be two strings, two arrays, or two other
objects responding to :each. All sequences are by generic
(fast) C code.

All objects in the sequences should respond to :hash and :eql?.

More information about the Levenshtein distance algorithm:
http://en.wikipedia.org/wiki/Levenshtein_distance .
2013-01-26 10:49:03 +00:00
reed
dc391ed95f increase BUILDLINK_ABI_DEPENDS.icu due to so change from 49 to 50.
Also bump PKGREVISION for a few packages using it.

The packages I did this for:
net/yaz
lang/parrot
misc/openoffice3 (where I noticed the run-time failure due to missing shared library)
www/webkit-gtk
sysutils/open-vm-tools
inputmethod/ibus-qt

I didn't do this recursively or for all packages using icu
since I didn't know if they used the shared library directly,
some use was optional. The list of packages I didn't touch:
devel/devhelp
databases/idzebra
databases/sqlite3
devel/gnustep-base/
finance/gnucash
games/openttd
graphics/shotwell
lang/mono
meta-pkgs/boost
misc/calibre
misc/libreoffice
news/tin
textproc/php-intl
www/deforaos-surfer
www/epiphany
www/liferea-current
www/midori
2013-01-25 19:18:08 +00:00
obache
bdbb2482b3 swig2 is not acceptable. 2013-01-25 12:56:41 +00:00
jperkin
782d496fcc automake-1.13 compatability. 2013-01-25 11:59:13 +00:00
adam
6fdc7b62ed Switch EXTRACT_SUFX to .tar.bz2 to conserve bits! 2013-01-23 14:31:30 +00:00
wiz
5570f95777 Fix COMMENT.
Closes PR 47494 by diro@nixsyspaus.org.
2013-01-23 14:16:04 +00:00
adam
41285e1b65 Changes 50.1.2:
This is a maintenance release affecting only the Layout Engine ABI.
It only incorporates bug 9826 which fixes a regression in ICU4C 50.1.1.
2013-01-23 11:36:28 +00:00
rhaen
35497ea7e1 - updated to 3.42
CHANGES

version 3.42
date: 2012-11-06
# minor maintenance release
fixed: bug, elements created with XML::Twig::Elt->parse were
       garbage collected too early,
       see http://stackoverflow.com/questions/13263193/xmltwig-changes-erased
added: some tests

version 3.41
date 2012-08-08
# minor maintenance release
fixed: META.json generation

version 3.40
date: 2012-05-10
# minor maintenance release
added: support for alternations ('|') at the top level of handler
       triggers and navigation
       you can now have twig_handlers => { 't1|t2' => \&handler }
       and $elt->children( 't1|t2')
added: the discard_all_spaces option that discards more aggressively
       non-significant white spaces
       see RT #71164 https://rt.cpan.org/Ticket/Display.html?id=71164
fixed: used $[ instead of $] in 3 tests,
       see RT#72765 https://rt.cpan.org/Ticket/Display.html?id=72765
       reported by Kevin Ryde
fixed: did not use Text::Wrap with indented_c
       see RT #71375 https://rt.cpan.org/Ticket/Display.html?id=71375
       reported and patch provided by Martin Strömberg
fixed: doc change for XML::Twig::Elt flush, see RT #72279
       https://rt.cpan.org/Ticket/Display.html?id=72279
fixed: replaced HTML::TreeBuilder::as_XML with am XML::Twig specific
       version, to avoid bugs in the original version and improve
       stability of the output
2013-01-23 10:33:32 +00:00
rhaen
afbb120ecc - updated to 0.80
ChangeLog:
0.80 Mon 23 Jul 16:23:14 BST 2012
    - Automatic absolute links now work when at the very start of some text
      Fixes bug #27850.
2013-01-23 10:29:20 +00:00
wen
5b58de7c5d Update to 2.020
Upstream changes:
2.020     2013-01-20

    - Give a more informative error message when a PDF file using a
      cross-reference stream is encountered.  The Known Issues section
      of the documentation includes pointers on how to add support in
      case someone else can get to this before I do.

    - Text using TrueType fonts is now searchable again.  In version
      0.61, an undocumented -unicodemap option was added to nearly all
      of the font resource methods, which only included a ToUnicode
      CMap if it was set (and it's required in order for PDF readers
      to be able to identify individual characters if BaseEncoding
      isn't present, which it isn't for TrueType fonts).

      I've left the -unicodemap option in place, and it's still
      undocumented (except here), but it's now on by default.  Call
      $pdf->ttfont($fontfile, -unicodemap => 0) if you want to disable
      it for performance or file size reasons.

    - Add a note to the stringify method's documentation saying that
      it's a destructive operation.

    - The various filter types have their own classes in the
      PDF::API2::Basic::PDF::Filter namespace now, rather than having
      all of the packages in Filter.pm.

    - To facilitate testing and ensure that identically-generated PDFs
      have identical output in Perl 5.17.5 or later, PDF dictionary
      keys are now sorted during output.
2013-01-23 01:30:01 +00:00
wen
0205afe8cf Update to 3.27
Add LICENSE

Upstream changes:
2013-01-22  Jarkko Hietaniemi  <jhi@google.com>

	* Resolve https://rt.cpan.org/Ticket/Display.html?id=69029
	  Do not die (adist()) on empty pattern string.

	* Resolve https://rt.cpan.org/Ticket/Display.html?id=36707
	  Do not die on undefined inputs, just return undef.

	* Resolve https://rt.cpan.org/Ticket/Display.html?id=82341
	  Explicitly specify the licensing to be Artistic 2 or LGPL 2.

	* Modernize all the tests to use Test::More.

	* Add some tests for UTF-8 inputs.

	* Mark some stalled/ancient bugs as resolved.

	* Delete the hopelessly obsolete BUGS file.

	* Released as 3.27.
2013-01-23 01:15:03 +00:00
wiz
3378f86b5f Update to 1.14:
enca-1.14
  - Allow standard names for belarusian and slovenian languages, thanks
    to Branislav Geržo for suggestion.
  - Reset strictness when check buffer less than file size, thanks to
    Sam Liao.
  - Fixed typos in man page, thanks to A. Costa.
2013-01-21 13:16:12 +00:00
wiz
f342739e76 Update to 1.0.16:
2012-XX-XX Redland Version 1.0.16 Released

   librdf_model_contains_statement() and
   librdf_storage_contains_statement() now return 0 for invalid statements
   Postgres, MySQL and Hashes storage bug fixes.
   Multiple other API bug fixes
   Multiple build fixes to help building on Windows. (Daniel Richard G.)
   Requires [1]Raptor 2.0.7 or newer
   Fixed Issues: [2]0000443, [3]0000460, [4]0000497, [5]0000518 and
   [6]0000519
2013-01-21 13:15:26 +00:00
obache
6075806cf9 Update py-markdown2 to 2.1.0
## python-markdown2 2.1.0

- ["nofollow" extra, issue #74, pull #104] Add `rel="nofollow"` support
  (mostly by https://github.com/cdman):

        $ echo '[link](http://example)' | markdown2 -x nofollow
        <p><a rel="nofollow" href="http://example">link</a></p>

   Limitation: This *can* add a duplicate 'rel' attribute to raw HTML links
   in the input.
2013-01-19 10:35:05 +00:00
obache
a4b4ce131e Update py-xlrd to 0.8.0.
0.8.0:
This release finally lands the support for both .xls and .xlsx files.
Many thanks to John Machin for all his work on making this happen.
Opening of .xlsx files is seamless, just use xlrd as you did before and
it all should "just work".

xlrd 0.8.0 is also the first release that that targets Python 2.6 and
2.7, but no Python 3 just yet. Python 2.5 and below may work but are not
supported. If you need to use Python 2.5 or earlier, please stick to
xlrd 0.7.x.

0.7.9:
This release fixes an annoying merge bug on my part that resulted in a
"NameError: global name 'BYTES_X00' is not defined" error where opening
certain Excel files.

0.7.8:
This release features the following changes:

- Compatibility with Python 2.1 and 2.2 is restored.
- Fix for github issue #7: assertion error when reading file with
  xlwt-written bitmap. The assertion is now ignored and a warning logged
  if verbosity > 0.
- superfluous zero bytes at end of xls OBJECT records are now ignored.
2013-01-19 09:22:36 +00:00
joerg
176b97e178 If Docbook support is requested and therefore the SAX1 interface, make
sure to include the corresponding source.
2013-01-15 15:31:57 +00:00
schmonz
42b6204ba5 Update to 5.1.3. From the changelog:
* Consolidated and simplified the character encoding detection code
* Issue 346 (the gb2312 encoding isn't always upgraded to gb18030)
* Issue 350 (HTTP Last-Modified example is incorrect in documentation)
* Issue 352 (importing lxml.etree changes what exceptions libxml2 throws)
* Issue 356 (add support for the HTML5 attributes `poster` and `preload`)
* Issue 364 (enclosure-sniffing microformat code can throw ValueError)
* Issue 373 (support RFC822-ish dates with swapped days and months)
* Issue 376 (uppercase 'X' in hex character references cause ValueError)
* Issue 382 (don't strip inline user:password credentials from FTP URL's)
2013-01-14 14:03:58 +00:00
jakllsch
b6e7a11729 +py-cssselect 2013-01-13 15:21:32 +00:00