summaryrefslogtreecommitdiff
path: root/textproc
AgeCommit message (Collapse)AuthorFilesLines
2013-12-16Pullup ticket #4267 - requested by tacatron3-2/+41
textproc/icu: security patch Revisions pulled up: - textproc/icu/Makefile patch - textproc/icu/distinfo patch - textproc/icu/patches/patch-i18n_csrucode.cpp patch --- Apply patch to fix the security vulnerability reported in CVE-2013-2924.
2013-09-19Revert last, my grep-fu is weak. Bump revision again.joerg3-51/+3
2013-09-19Forgotten patchsum commit.joerg1-1/+2
2013-09-19Step back from requiring gmake, remove unneeded bits that break bmake.fhajny3-3/+19
2013-09-19Fix a typo to build fine.obache1-2/+2
2013-09-18Needs gmake to install chem (fixes at least SunOS).fhajny1-2/+2
2013-09-17No boost/scoped_ptr.h around. Bump revision.joerg2-1/+49
2013-09-17Installs chem now, so add it to the PLIST, fix the interpreter path andjoerg2-3/+60
bump revision.
2013-09-17Use C++11 shared_ptr with clang.joerg1-2/+8
2013-09-15Update to 3.2.3:wiz2-7/+6
3.2.3 (2013-07-28) ================== Bugs fixed ---------- * Fix support for Python 2.4 which was lost in 3.2.2. 3.2.2 (2013-07-28) ================== Features added -------------- Bugs fixed ---------- * LP#1185701: spurious XMLSyntaxError after finishing iterparse(). * Crash in lxml.objectify during xsi annotation. Other changes ------------- * Return values of user provided element class lookup methods are now validated against the type of the XML node they represent to prevent API class mismatches.
2013-09-15Update ruby-ultraviolet to 1.0.1.taca3-7/+8
Exact changes aren't available. It looks a few bug fixes.
2013-09-15Update ruby-treetop to 1.4.15.taca3-20/+10
Exact changes aren't available. Please refer change log in github.
2013-09-15Add and enable ruby-safe_yaml.taca1-1/+2
2013-09-15Add ruby-safe_yaml package version 0.9.5.taca4-0/+76
The SafeYAML gem provides an alternative implementation of `YAML.load` suitable for accepting user input in Ruby applications. Unlike Ruby's built-in implementation of `YAML.load`, SafeYAML's version will not expose apps to arbitrary code execution exploits (such as [the ones discovered](http://www.reddit.com/r/netsec/comments/167c11/serious_vulnerability_in_ruby_on_rails_allowing/) [in Rails in early 2013](http://www.h-online.com/open/news/item/Rails-developers-close-another-extremely-critical-flaw-1793511.html)). If you encounter any issues with SafeYAML, check out the 'Common Issues' section below. If you don't see anything that addresses the problem you're experiencing, by all means, [create an issue](https://github.com/dtao/safe_yaml/issues/new)!
2013-09-15Add and enable ruby-redcarpet.taca1-1/+2
2013-09-15Add ruby-redcarpet package version 3.0.0.taca4-0/+74
Redcarpet is Ruby library for Markdown processing that smells like butterflies and popcorn. Redcarpet used to be a drop-in replacement for Redcloth. This is no longer the case since version 2 -- it now has its own API, but retains the old name. Yes, that does mean that Redcarpet 2 is not backwards-compatible with the 1.X versions. Redcarpet is based on the [Sundown](https://www.github.com/vmg/sundown) library. You might want to find out more about Sundown to see what makes this Ruby library so awesome.
2013-09-15Update ruby-nokogiri to 1.5.10.taca3-8/+12
=== 1.5.10 / 2013-06-07 * Bugfixes * (JRuby) Fix "null document" error when parsing an empty IO in jruby 1.7.3. #883 * (JRuby) Fix schema validation when XSD has DOCTYPE set to DTD. #861 (Thanks, Patrick Cheng!) * (MRI) Fix segfault when there is no default subelement for an HTML node. #917 * Notes * Use rb_ary_entry instead of RARRAY_PTR (you know, for Rubinius). #877 (Thanks, Dirkjan Bussink!) * Fix TypeError when running tests. #900 (Thanks, Cédric Boutillier!) === 1.5.9 / 2013-03-21 * Bugfixes * Ensure that prefixed attributes are properly namespaced when reparented. #869 * Fix for inconsistent namespaced attribute access for SVG nested in HTML. #861 * (MRI) Fixed a memory leak in fragment parsing if nodes are not all subsequently reparented. #856 === 1.5.8 / 2013-03-19 * Bugfixes * (JRuby) Fix EmptyStackException thrown by elements with xlink:href attributes and no base_uri #534, #805. (Thanks, Patrick Quinn and Brian Hoffman!) * Fixes duplicate attributes issue introduced in 1.5.7. #865 * Allow use of a prefixed namespace on a root node using Nokogiri::XML::Builder #868 === 1.5.7 / 2013-03-18 * Features * Windows support for Ruby 2.0. * Bugfixes * SAX::Parser.parse_io throw an error when used with lower case encoding. #828 * (JRuby) Java Nokogiri is finally green (passes all tests) under 1.8 and 1.9 mode. High five everyone. #798, #705 * (JRuby) Nokogiri::XML::Reader broken (as a pull parser) on jruby - reads the whole XML document. #831 * (JRuby) JRuby hangs parsing "&". #837 * (JRuby) JRuby NPE parsing an invalid XML instruction. #838 * (JRuby) Node#content= incompatibility. #839 * (JRuby) to_xhtml doesn't print the last slash for self-closing tags in JRuby. #834 * (JRuby) Adding an EntityReference after a Text node mangles the entity in JRuby. #835 * (JRuby) JRuby version inconsistency: nil for empty attributes. #818 * CSS queries for classes (e.g., ".foo") now treat all whitespace identically. #854 * Namespace behavior cleaned up and made consistent between JRuby and MRI. #846, #801 (Thanks, Michael Klein!) * (MRI) SAX parser handles empty processing instructions. #845
2013-09-15Update ruby-libxml to 2.7.0.taca3-9/+9
== 2.7.0 / 2013-08-03 Charlie Savage * Do not call Ruby code during a GC cycle (Dirkjan Bussink) * Fix thread error handling (Geoffrey Giesemann) * Set libxml error handler when a libxml-ruby error handler is set (Geoffrey Giesemann) * Fix tests for nil TypeErrors (Geoffrey Giesemann) * Fix segmentation fault for issue #62. The deregisternode function was incorrectly NULLing out a node's mark and free functions for nodes removed from a document tree (Charlie Savage) * Cleanup writer code (Charlie Savage) * Fix equality check of LibXML::XML::Error against other objects (Michał Szajbe) * Fix XML::Writer.set_quote_char UT, wrong expected string (#63). (julp) * Fix potential segfault when GC occurs while creating ns from xpath (Timothy Elliott) * Fix segmentation fault after failing to load external schema (#59). (Clifford Heath)
2013-09-15Update ruby-haml to 4.0.3.taca3-9/+11
## 4.0.3 Released May 21, 2013 ([diff](https://github.com/haml/haml/compare/4.0.2...4.0.3)). * Compatibility with newer versions of Rails's Erubis handler. * Fix Erubis handler for compatibility with Tilt 1.4.x, too. * Small performance optimization for html_escape. (thanks [Lachlan Sylvester](https://github.com/lsylvester)) * Documentation fixes. * Documented some helper methods that were left out of the reference. (thanks [Shane Riley](https://github.com/shaneriley)) ## 4.0.2 Released April 5, 2013 ([diff](https://github.com/haml/haml/compare/4.0.1...4.0.2)). * Explicitly require Erubis to work around bug in older versions of Tilt. * Fix :erb filter printing duplicate content in Rails views. (thanks [Jori Hardman](https://github.com/jorihardman)) * Replace range with slice to reduce objects created by `capture_haml`. (thanks [Tieg Zaharia](https://github.com/tiegz)) * Correct/improve some documentation. ## 4.0.1 Released March 21, 2013 ([diff](https://github.com/haml/haml/compare/4.0.0...4.0.1)). * Remove Rails 3.2.3+ textarea hack in favor of a more general solution. * Fix some performance regressions. * Fix support for Rails 4 `text_area` helper method. * Fix data attribute flattening with singleton objects. (thanks [Alisdair McDiarmid](https://github.com/alisdair)) * Fix support for sass-rails 4.0 beta. (thanks [Ryunosuke SATO](https://github.com/tricknotes)) * Load "haml/template" in Railtie in order to prevent user options set in a Rails initializer from being overwritten * Don't depend on Rails in haml/template to allow using Haml with ActionView but without Rails itself. (thanks [Hunter Haydel](https://github.com/wedgex))
2013-09-15Update ruby-coderay to 1.1.0.taca3-9/+14
Exact changes aren't available. Please refer change log in github.
2013-09-15Improve COMMENT and description.wiz2-4/+15
From Ingo Schwarze <schwarze@usta.de>
2013-09-131.5.3:pettai3-10/+15
Bugfix [CPPXT-92] - Update xmlsig 1.1 schema to final CR Improvements [CPPXT-94] - Configuration check should check for missing private key [CPPXT-95] - Improve logging when libcurl is built without OpenSSL 1.5.2: Bugfixes [CPPXT-89] - Regression in deprecated catalog_path option during initialization [CPPXT-90] - X509Digest generates base64 based on hex digest instead of binary Improvement [CPPXT-91] - KeyInfoResolver code returns empty credential object. 1.5.1: Improvement [CPPXT-88] - Support path resolution in ParserPool / catalog files 1.5.0: Bugfixes [CPPXT-76] - Remove compile time version output where possible. [CPPXT-79] - link fails if xml-security-c library outside default link path [CPPXT-83] - Transport layer not handling Last-Modified header correctly [CPPXT-84] - Problems compiling log4shib on Solaris SPARC 10 with Sun Studio 12.1 with 64bit libraries [CPPXT-86] - Small Memory Leak in XMLObjectBuilder::buildFromElement() Improvements [CPPXT-70] - Improve remote CRL access and caching support [CPPXT-78] - Support configuration of name and policy restrictions for the signature metadata filter (signing certificate) [CPPXT-82] - libcurl, ExplicitKeyTrustEngine, PKIX could provide additional debug information [CPPXT-87] - Libcurl versions before 7.20 do not refresh caches of IdP IP address look-ups - this breaks SAML1 attribute query if the IdP's IP address is changed
2013-09-13Add crush-toolsfhajny1-1/+2
2013-09-13Import textproc/crush-tools.fhajny4-0/+110
CRUSH (Custom Reporting Utilities for SHell) is a collection of tools for processing delimited-text data from the command line or in shell scripts.
2013-09-12Changes 1.25.25:adam13-155/+69
* base.hpp: Fix declarations out of order causing compile failure. Broken since Xmlrpc-c 1.19 (June 2009). * Make distclean cleans up src/test/blddir and src/test/srcdir.
2013-09-12Add USE_TOOLS+=nroff to packages which generate catman pages.jperkin1-1/+2
2013-09-12Adjust CONFLICTS with mdocml, versions after and including 1.12.0nb3jperkin1-3/+3
no longer conflict with this package. Bump PKGREVISION.
2013-09-12Rename preconv and roff.7 to have a 'mandoc-' prefix. This removes thejperkin6-9/+94
conflicts with textproc/groff and allows both packages to co-exist, paving the way for mdocml to be used in the tools infrastructure as an nroff replacement. Bump PKGREVISION.
2013-09-11Fix build problem with new bison by adding simiar patch as textproc/itex2MML.taca2-1/+26
2013-09-10Clang might start with cl, but it is not Visual Studio.joerg3-1/+28
2013-09-10Bump PKGREVISION from xml-security-c shlib major bumpobache1-2/+2
2013-09-09Resign as maintainer (not really using Ruby at all any more).fhajny1-2/+2
2013-09-05Update to 2.54:wiz2-7/+6
$Revision: 2.54 $ $Date: 2013/08/29 16:47:39 $ ! Encode.xs + t/cow.t Addressed: COW breakage with _utf8_on() https://rt.cpan.org/Ticket/Display.html?id=88230 ! Encode.pm Reverted the document accordingly to #11 https://github.com/dankogai/p5-encode/pull/10 + t/decode.t Unit test for decoding behavior change in #11 https://github.com/dankogai/p5-encode/pull/12 2.53 2013/08/29 15:20:31 ! Encode.pm Merged: Do not short-circuit decode_utf8 with utf8 flags https://github.com/dankogai/p5-encode/pull/11 Merged: document decode_utf8 behaviour more precise https://github.com/dankogai/p5-encode/pull/10 ! Makefile.PL Added repository cpan metadata https://github.com/dankogai/p5-encode/pull/9 2.52 2013/08/14 02:29:54 ! ucm/*.ucm Addressed: Unicode Mappping tables are missing Unicode Inc. license notification All files including "as long as this notice remains attached" now have that notice attached in the comment section. (cp* and mac* do not since their source files do not include that notice) https://rt.cpan.org/Ticket/Display.html?id=87340 ! lib/Encode/MIME/Header.pm t/mime-header.t Addressed: encoding "0" with MIME-Headers gets a blank string https://rt.cpan.org/Ticket/Display.html?id=87831 ! Encode.pm Addressed: Documentation buglet https://rt.cpan.org/Ticket/Display.html?id=84992 ! Byte/Makefile.PL CN/Makefile.PL EBCDIC/Makefile.PL Encode/Makefile_PL.e2x JP/Makefile.PL KR/Makefile.PL Symbol/Makefile.PL TW/Makefile.PL Applied: Patch to output #includes in deterministic order https://rt.cpan.org/Ticket/Display.html?id=86974 2.51 2013/04/29 22:19:11 ! Encode.xs Addressed: Encode.xs doesn't compile with Microsoft C compiler https://rt.cpan.org/Public/Bug/Display.html?id=84920 ! MANIFEST Addressed: t/taint.t missing https://rt.cpan.org/Public/Bug/Display.html?id=84919 2.50 2013/04/26 18:30:46 ! Encode.xs Unicode/Unicode.xs lib/Encode/Unicode/UTF7.pm lib/CN/HZ.pm lib/Encode/GSM0338.pm t/taint.t Addressed: Encode::encode and Encode::decode gratuitously launders tainted data Taintedness now propagates as it should. https://rt.cpan.org/Ticket/Display.html?id=84879 ! encoding.pm Addressed: 5.18 deprecation https://rt.cpan.org/Ticket/Display.html?id=84709 ! bin/piconv Applied: Update piconv documentation https://rt.cpan.org/Ticket/Display.html?id=84695 2.49 2013/03/05 03:12:49 ! Encode.xs Addressed: Encoding objects leak memory if decoding fails https://github.com/dankogai/p5-encode/issues/8 2.48 2013/02/18 02:23:56 ! encoding.pm t/Mod_EUCJP.pm t/enc_data.t t/enc_eucjp.t t/enc_module.t t/enc_utf8.t t/encoding.t t/jperl.t [PATCH] Deprecate encoding.pm https://rt.cpan.org/Ticket/Display.html?id=81255 ! Encode/Supported.pod Fixed: Pod errors https://rt.cpan.org/Ticket/Display.html?id=81426 ! Encode.pm t/Encode.t [PATCH] Fix for shared hash key scalars https://rt.cpan.org/Ticket/Display.html?id=80608 ! Encode.pm Fixed: Uninitialized value warning from Encode->encodings() https://rt.cpan.org/Ticket/Display.html?id=80181 ! Makefile.PL Install to 'site' instead of 'perl' when perl version is 5.11+ https://rt.cpan.org/Ticket/Display.html?id=78917 ! Encode/Makefile_PL.e2x find enc2xs.bat if it works on windows. https://github.com/dankogai/p5-encode/pull/7 ! t/piconv.t Fix finding piconv in t/piconv.t https://github.com/dankogai/p5-encode/pull/6
2013-09-05Update to 0.28:wiz2-8/+6
#------------------------------------------------------------------------ # Version 0.28 2013-05-30 #------------------------------------------------------------------------ * fixed bug 81707 (test failures due to hash randomisation in perl 5.17.6) * change 'use vars' to 'our' declarations
2013-09-05Update to 2.08:wiz2-6/+6
2.08 Thu Aug 22 23:11:45 CDT 2013 ==================================== [ENHANCEMENTS] ack now ignores CMake's build/cache directories by default. Thanks, Volodymyr Medvid. Add shebang matching for --lua files. Add documentation for --ackrc. Add Elixir filetype. Add --cathy option. Thanks to Joe McMahon. Add some helpful debugging tips when an invalid option is found. Thanks to Charles Lee. Ignore PDF files by default, because Perl will detect them as text. Ignore .gif, .jpg, .jpeg and .png files. They won't normally be selected, but this is an optimization so that ack doesn't have to open them to know. [FIXES] Ack's colorizing of output would get confused with multiple sets of parentheses. This has been fixed. (Issue #276) Ack would get confused when trying to colorize the output in DOS-format files. This has been fixed. (Issue #145) 2.05_01 Tue May 28 10:12:04 CDT 2013 ==================================== [ENHANCEMENTS] We now ignore the node_modules directories created by npm. Thanks, Konrad Borowski. --pager without an argument implies --pager=$PAGER. --perl now recognizes Plack-style .psgi files. Thanks, Ron Savage. Added filetypes for Coffescript, JSON, LESS, and Sass. [FIXES] Command-line options now override options set in ackrc files. ACK_PAGER and ACK_PAGER_COLOR now work as advertised. Fix a bug resulting in uninitialized variable warnings when more than one capture group was specified in the search pattern. Make sure ack is happy to build and test under cron and other console-less environments. Colored output is now supported and on by default on Windows.
2013-09-05Update to 2.0104:wiz2-7/+6
2.0104 Fri 30 Aug 12:36:06 IDT 2013 - Fix https://rt.cpan.org/Ticket/Display.html?id=88060 - Use quoted version number in the SYNOPSIS. - Thanks to Philipp Gortan for the report. - Apply a patch from Yuriy / YOREEK for test failures with a directory component that contains whitespace. - https://rt.cpan.org/Ticket/Display.html?id=86665
2013-09-05Update to 0.23:wiz2-7/+6
0.23 Wednesday 1st May, 2013 Distinguish 'package didn't compile' from 'package has no symbols' (Gareth Tunley)
2013-09-05Update to 1.27:wiz2-7/+6
[Changes for 1.27 - 2013-05-20] * Resolve RT#84466 not fixed in 1.26 It failed about 10% of the time. [Changes for 1.26 - 2013-05-20] * Resolve RT#84882 and RT#84466 hash randomisation in yaml-alias.t on perl 5.18.0 [Changes for 1.25 - 2013-03-10] * Bump version number and release to fix a MANIFEST mistake in 1.24 [Changes for 1.24 - 2013-03-07] * Tests all green on CPAN Testers. releasing to public. [Changes for 1.24_02 - 2013-03-01] * Apply patch from RT 78363 - MinGW64 compatibility [Changes for 1.24_01 - 2013-03-01] * Implement $JSON::Syck::MaxDepth * Prevent failure when the same object is seen twice during Dump. * Prevent YAML from being influnced by the previous change [Changes for 1.23 - 2013-02-26] * Tests all green on CPAN Testers. releasing to public. [Changes for 1.23_01 - 2013-02-21] * Make sure that LoadBlessed=0 blocks all blessing. * Start listing primary repo as toddr on github ( http://github.com/toddr/YAML-Syck ) * README refreshed via perldoc -t [Changes for 1.22 - 2012-12-04] * Tests all green on CPAN Testers. releasing to public. [Changes for 1.22_01 - 2012-11-27] * Fix error message typo: s/existant/existent/g * Fix for non-printable character detection * Quote if non-printable characters are present * Change LoadBlessed=0 to not bless under ANY circumstances
2013-09-05OpenBSD renamed beagle to armv7.wiz1-3/+3
From patrick@openbsd via jmc@openbsd.
2013-09-03Use working HOMEPAGE.ryoon1-2/+2
2013-09-03Remove commentted out line and FETCH_USING=curl.ryoon1-4/+1
2013-09-03Add lua-slnunicode.ryoon1-1/+2
2013-09-03Import lua-slnunicode-1.1apl1 as textproc/lua-slnunicode.ryoon5-0/+57
Unicode Library for Lua language.
2013-09-02Revbump after cairo updateadam9-18/+18
2013-09-02Update to 2.0.10:wiz3-8/+8
New functions, types and enums Functions ● int raptor_string_escaped_write(const unsigned char *string, size_t len, const char delim, unsigned int flags, raptor_iostream *iostr) ● int raptor_term_escaped_write(const raptor_term *term, unsigned int flags, raptor_iostream* iostr) ● int raptor_uri_escaped_write(raptor_uri* uri, raptor_uri* base_uri, unsigned int flags, raptor_iostream *iostr) Types ● raptor_escaped_write_bitflags
2013-09-01Fix build with bison-3.0.wiz2-1/+26
Compile-tested only.
2013-09-01tell tools for building to configure.obache3-3/+51
2013-09-01Update to 1.2.0.20130831 (hg current)ryoon7-91/+37
* Fix build with lua 5.2. * Examples are not provided anymore, remove MESSAGE. Changelog: unknown.
2013-08-31Changes 2.7.1:adam3-8/+11
- Fixed a bug with ``call_filter`` not working properly on environment and context filters. - Fixed lack of Python 3 support for bytecode caches. - Reverted support for defining blocks in included templates as this broke existing templates for users. - Fixed some warnings with hashing of undefineds and nodes if Python is run with warnings for Python 3. - Added support for properly hashing undefined objects. - Fixed a bug with the title filter not working on already uppercase strings.
2013-08-30Fix build on case-insensitive filesystems (e.g., Darwin's). Noschmonz4-2/+69
functional change intended on other systems.