summaryrefslogtreecommitdiff
path: root/textproc
AgeCommit message (Collapse)AuthorFilesLines
2016-10-01Uses C99 for loop declarations.joerg1-1/+2
2016-09-30Updated the_silver_searcher to 0.33.0.wiz2-7/+7
Changes not found.
2016-09-30Updated p5-Text-Glob to 0.10.wiz2-9/+10
0.10 Wednesday 14th September, 2016 Added ability to alter regex seperator (patch from Mark Fowler) Switch distribution packaging back to ExtUtils::MakeMaker (RT#104876)
2016-09-30Updated p5-Text-BibTeX to 0.77.wiz2-7/+7
0.77 2016-09-20 * Fixes for testing and installing on Darwin (install_name issues). Thanks to Nuno "smash" Carvalho for the report and debug help.
2016-09-23Extract using bsdtar.roy1-1/+2
2016-09-20Remove url2pkg marker.wiz1-4/+1
2016-09-19needs zlibwiedi1-1/+2
2016-09-19Recursive PKGREVISION bump for gnutls shlib major bump.wiz1-2/+2
2016-09-19Update textproc/yaml-cpp to 0.5.3.fhajny4-10/+38
This will be the last release that uses Boost; futures releases will require C++11 instead. No release notes, only bugfixes since 0.5.1. See full commit logs: https://github.com/jbeder/yaml-cpp/compare/release-0.5.1...release-0.5.2 https://github.com/jbeder/yaml-cpp/compare/release-0.5.2...release-0.5.3
2016-09-19(PLIST) Updated textproc/dblatex to 0.3.8, thanks richard@.mef1-4/+45
2016-09-18Switch to ocaml.mk framework and use ocamlbuild.dholland1-6/+4
2016-09-17Updated textproc/dblatex to 0.3.8mef2-7/+7
--------------------------------- Release 0.3.8 - This release fixes some bugs and contains some new features.
2016-09-17Updated textproc/cmark 0.24.1 to 0.26.1mef5-51/+10
--------------------------------------- cmark 0.26.1 @jgm jgm released this Jul 16, 2016 . 18 commits to master since this release * Removed unnecessary typedef that caused build failure on some platforms. * Use $(MAKE) in Makefile instead of hardcoded make (#146, Tobias Kortkamp). cmark 0.26.0 @jgm jgm released this Jul 15, 2016 . 23 commits to master since this release * Implement spec changes for list items: + Empty list items cannot interrupt paragraphs. + Ordered lists cannot interrupt paragraphs unless they start with 1. + Removed "two blank lines break out of a list" feature. * Fix sourcepos for blockquotes (#142). * Fix sourcepos for atx headers (#141). * Fix ATX headers and thematic breaks to allow tabs as well as spaces. * Fix chunk_set_cstr with suffix of current string (#139, Nick Wellnhofer). It's possible that cmark_chunk_set_cstr is called with a substring (suffix) of the current string. Delay freeing of the chunk content to handle this case correctly. * Export targets on installation (Jonathan M?ller). This allows using them in other cmake projects. * Fix cmake warning about CMP0048 (Jonathan M?ller). * commonmark renderer: Ensure we don't have a blank line before a code block when it's the first thing in a list item. * Change parsing of strong/emph in response to spec changes. process_emphasis now gets better results in corner cases. The change is this: when considering matches between an interior delimiter run (one that can open and can close) and another delimiter run, we require that the sum of the lengths of the two delimiter runs mod 3 is not 0. * Ported Robin Stocker's changes to link parsing in jgm/CommonMark#101. This uses a separate stack for brackets, instead of putting them on the delimiter stack. This avoids the need for looking through the delimiter stack for the next bracket. * cmark_reference_lookup: Return NULL if reference is null string. * Fix character type detection in commonmark.c (Nick Wellnhofer). Fixes test failures on Windows and undefined behavior. + Implement cmark_isalpha. + Check for ASCII character before implicit cast to char. + Use internal ctype functions in commonmark.c. * Better documentation of memory-freeing responsibilities. in cmark.h and its man page (#124). * Use library functions to insert nodes in emphasis/link processing. Previously we did this manually, which introduces many places where errors can creep in. * Correctly handle list marker followed only by spaces. Previously when a list marker was followed only by spaces, cmark expected the following content to be indented by the same number of spaces. But in this case we should treat the line just like a blank line and set list padding accordingly. * Fixed a number of issues relating to line wrapping. + Extend CMARK_OPT_NOBREAKS to all renderers and add --nobreaks. + Do not autowrap, regardless of width parameter, if CMARK_OPT_NOBREAKS is set. + Fixed CMARK_OPT_HARDBREAKS for LaTeX and man renderers. + Ensure that no auto-wrapping occurs if CMARK_OPT_NOBREAKS is enabled, or if output is CommonMark and CMARK_OPT_HARDBREAKS is enabled. * Set stdin to binary mode on Windows (Nick Wellnhofer, #113). This fixes EOLs when reading from stdin. * Add library option to render softbreaks as spaces (Pavlo Kapyshin). Note that the NOBREAKS option is HTML-only * renderer: no_linebreaks instead of no_wrap. We generally want this option to prohibit any breaking in things like headers (not just wraps, but softbreaks). * Coerce realurllen to int. This is an alternate solution for pull request # 132, which introduced a new warning on the comparison (Benedict Cohen). * Remove unused variable link_text (Mathiew Duponchelle). * Improved safety checks in buffer (Vicent Marti). * Add new interface allowing specification of custom memory allocator for nodes (Vicent Marti). Added cmark_node_new_with_mem, cmark_parser_new_with_mem, cmark_mem to API. * Reduce storage size for nodes by using bit flags instead of separate booleans (Vicent Marti). * config: Add SSIZE_T compat for Win32 (Vicent Marti). * cmake: Global handler for OOM situations (Vicent Marti). * Add tests for memory exhaustion (Vicent Marti). * Document in man page and public header that one should use the same memory allocator for every node in a tree. * Fix ctypes in Python FFI calls (Nick Wellnhofer). This didn't cause problems so far because all types are 32-bit on 32-bit systems and arguments are passed in registers on x86-64. The wrong types could cause crashes on other platforms, though. * Remove spurious failures in roundtrip tests. In the commonmark writer we separate lists, and lists and indented code, using a dummy HTML comment. So in evaluating the round-trip tests, we now strip out these comments. We also normalize HTML to avoid issues having to do with line breaks. * Add 2016 to copyright (Kevin Burke). * Added to_commonmark in test/cmark.py (for round-trip tests). * spec_test.py - parameterize do_test with converter. * spec_tests.py: exit code is now sum of failures and errors. This ensures that a failing exit code will be given when there are errors, not just with failures. * Fixed round trip tests. Previously they actually ran cmark instead of the round-trip version, since there was a bug in setting the ROUNDTRIP variable (#131). * Added new roundtrip_tests.py. This replaces the old use of simple shell scripts. It is much faster, and more flexible. (We will be able to do custom normalization and skip certain tests.) * Fix tests under MinGW (Nick Wellnhofer). * Fix leak in api_test (Mathieu Duponchelle). * Makefile: have leakcheck stop on first error instead of going through all the formats and options and probably getting the same output. * Add regression tests (Nick Wellnhofer). cmark 0.25.2 @jgm jgm released this Mar 26, 2016 . 114 commits to master since this release * Open files in binary mode (#113, Nick Wellnhofer). Now that cmark supports different line endings, files must be openend in binary mode on Windows. * Reset partially_consumed_tab on every new line (#114, Nick Wellnhofer). * Handle buffer split across a CRLF line ending (#117). Adds an internal field to the parser struct to keep track of last_buffer_ended_with_cr. Added test. cmark 0.25.1 @jgm jgm released this Mar 25, 2016 . 122 commits to master since this release * Release with no code changes. cmark version was mistakenly set to 0.25.1 in the 0.25.0 release (#112), so this release just ensures that this will cause no confusion later. cmark 0.25.0 @jgm jgm released this Mar 25, 2016 . 124 commits to master since this release * Fixed tabs in indentation (#101). This patch fixes S_advance_offset so that it doesn't gobble a tab character when advancing less than the width of a tab. * Added partially_consumed_tab to parser. This keeps track of when we have gotten partway through a tab when consuming initial indentation. * Simplified add_line (only need parser parameter). * Properly handle partially consumed tab. E.g. in - foo <TAB><TAB>bar we should consume two spaces from the second tab, including two spaces in the code block. * Properly handle tabs with blockquotes and fenced blocks. * Fixed handling of tabs in lists. * Clarified logic in S_advance_offset. * Use an assertion to check for in-range html_block_type. It's a programming error if the type is out of range. * Refactored S_processLines to make the logic easier to understand, and added documentation (Mathieu Duponchelle). * Removed unnecessary check for empty string_content. * Factored out contains_inlines. * Moved the cmake minimum version to top line of CMakeLists.txt (tinysun212). * Fix ctype(3) usage on NetBSD (Kamil Rytarowski). We need to cast value passed to isspace(3) to unsigned char to explicitly prevent possibly undefined behavior. * Compile in plain C mode with MSVC 12.0 or newer (Nick Wellnhofer). Under MSVC, we used to compile in C++ mode to get some C99 features like mixing declarations and code. With newer MSVC versions, it's possible to build in plain C mode. * Switched from "inline" to "CMARK_INLINE" (Nick Wellnhofer). Newer MSVC versions support enough of C99 to be able to compile cmark in plain C mode. Only the "inline" keyword is still unsupported. We have to use "__inline" instead. * Added include guards to config.h * config.h.in - added compatibility snprintf, vsnprintf for MSVC. * Replaced sprintf with snprintf (Marco Benelli). * config.h: include stdio.h for _vscprintf etc. * Include starg.h when needed in config.h. * Removed an unnecessary C99-ism in buffer.c. This helps compiling on systems like luarocks that don't have all the cmake configuration goodness (thanks to carlmartus). * Don't use variable length arrays (Nick Wellnhofer). They're not supported by MSVC. * Test with multiple MSVC versions under Appveyor (Nick Wellnhofer). * Fix installation dir of man-pages on NetBSD (Kamil Rytarowski). * Fixed typo in cmark.h comments (Chris Eidhof). * Clarify in man page that cmark_node_free frees a node's children too. * Fixed documentation of --width in man page. * Require re2c >= 1.14.2 (#102). * Generated scanners.c with more recent re2c. (pkgsrc changes) - Drop two patches accepted to upstream
2016-09-17Updated textproc/p5-Text-PDF to 0.31mef2-7/+7
------------------------------------ 0.31 2016-08-24 * Sort PDF dictionary keys for consistent output * Bug fixes * TTF Font objects had null BaseFont (broken at commit afd5b9a) * [rt.cpan.org] #110854: Fix spelling error in manpage
2016-09-17Updated textproc/p5-Text-Format to 0.60mef2-8/+7
--------------------------------------- 0.60 2016-08-22 - Apply a patch to correct a spelling error: - https://rt.cpan.org/Ticket/Display.html?id=117100 - Thanks to Salvatore Bonaccorso, Debian Perl Group.
2016-09-17Updated textproc/p5-PDF-Create to 1.35mef2-7/+7
-------------------------------------- 1.35 2016-09-09 10:20:00 MANWAR - Merge pull request #10 from zhouzhen1/typo
2016-09-16Do not package charset.alias. Bump PKGREVISION.wiz2-4/+3
2016-09-12Fix PLIST inconsistency after recent update to 5.3.7, sorry.mef1-16/+29
2016-09-11Drop "55" (php55) from PHP_VERSIONS_ACCEPTED.taca1-2/+2
2016-09-11Add patch files, too.taca2-0/+54
2016-09-11Update groonga to 6.0.8.taca4-27/+289
Changes from 4.1.1 to 6.0.8 are too many to write here, please refer: groonga.org/docs/news.html.
2016-09-11Reset maintainer to pkgsrc-users@NetBSD.orgkamil1-2/+2
Change requested by Frederic Cambus.
2016-09-10Revbump all Go packages after the Go 1.7.1 update.bsiegert3-6/+6
2016-09-09Fix build problem.taca2-6/+8
* Make MASTER_SITES empty to avoid fetching 404 site. * Introduce DIST_SUBDIR reflecting DISTFILE change with the same file name.
2016-09-08Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow thejoerg8-16/+16
naming scheme of the other multi-version packages. Add support for the coorresponding RUBY_VERSIONS_INCOMPATIBLE list.
2016-09-07Rename soelim to msoelim (per comment in upstream example) to fixwiz2-4/+6
conflict with groff. Requested by jperkin. Bump PKGREVISION.
2016-09-05lang/php/ext.mk overrides EGDIR with an absolute path, so dropjoerg1-3/+2
definition here and adjust post-install command.
2016-09-03OpenBSD does not support zaurus any longer.wiz2-4/+4
Bump version. From jmc@OpenBSD.org.
2016-09-03Update to 1.25wen2-7/+7
Upstream changes: 1.25 - 2016-08-28, H.Merijn Brand * Allow lc, uc, and coderef for csv () headers attribute * Document for eof when the last line has an error (RT#115954) * Allow csv () to call header () with all supported arguments * Add some docs for bind_columns
2016-09-03Update to 1.34wen2-7/+7
Upstream changes: 1.34 2016-08-26 08:40:00 MANWAR - Corrected HelveticaBold font width.
2016-09-02+ py-jsonrpclibwiz1-1/+2
2016-09-02Import py-jsonrpclib-0.1.7 as textproc/py-jsonrpclib.wiz4-0/+48
Packaged for wip by Jonathan Schleifer, with improvements by K.I.A.Derouiche and myself. This library is an implementation of the JSON-RPC specification. It supports both the original 1.0 specification, as well as the new (proposed) 2.0 spec, which includes batch submission, keyword arguments, etc.
2016-09-01Updated py-yaml to 3.12.wiz2-7/+7
* Wheel packages for Windows binaries. * Adding an implicit resolver to a derived loader should not affect the base loader (fixes issue #57). * Uniform representation for OrderedDict across different versions of Python (fixes issue #61). * Fixed comparison to None warning (closes issue #64).
2016-09-01Updated miller to 4.5.0.wiz2-7/+7
4.5.0 Customizable output format for redirected output In a natural follow-on to the 4.4.0 redirected-output feature, the 4.5.0 release allows your tap-files to be in a different output format from the main program output. For example, using mlr --icsv --opprint ... then put --ojson 'tee > "mytap-".$a.".dat", $*' then ... the input is CSV, the output is pretty-print tabular, but the tee-files output is written in JSON format. Likewise --ofs, --ors, --ops, --jvstack, and all other output-formatting options from the main help at mlr -h and/or man mlr default to the main command-line options, and may be overridden with flags supplied to mlr put and mlr tee. 4.4.0 Redirected output, row-value shift, and other features The principal feature of Miller 4.4.0 is redirected output. Inspired by awk, Miller lets you tap/tee your data as it's processed, run output through subordinate processes such as gzip and jq, split a single file into multiple files per an account-ID column, and so on. Details: http://johnkerl.org/miller/doc/reference.html#Redirected-output_statements_for_put Other features: mlr step -a shift allows you to place the previous record's values alongside the current record's values: http://johnkerl.org/miller/doc/reference.html#step mlr head, when used without the group-by flag (-g), stops after the specified number of records has been output. For example, even with a multi-gigabyte data file, mlr head -n 10 hugefile.dat will complete quickly after producing the first ten records from the file. The sec2gmtdate verb, and sec2gmtdate function for filter/put, is new: please see http://johnkerl.org/miller/doc/reference.html#sec2gmtdate and http://johnkerl.org/miller/doc/reference.html#Functions_for_filter_and_put. sec2gmt and sec2gmtdate both leave non-numbers as-is, rather than formatting them as (error). This is particularly relevant for formatting nullable epoch-seconds columns in SQL-table output: if a column value is NULL then after sec2gmt or sec2gmtdate it will still be NULL. The dot operator has been universalized to work with any data type and produce a string. For example, if the field n has integers, then instead of typing mlr put '$name = "value:".string($n)' you can now simply domlr put '$name = "value:".$n'. This is particularly timely for creating filenames for redirected print/dump/tee/emit output. The online documents now have a copy of the Miller manpage: http://johnkerl.org/miller/doc/manpage.html Bugfix: inside filter/put, $x=="" was distinct from isempty($x). This was nonsensical; now both are the same.
2016-09-01Updated libyaml to 0.1.7.wiz3-30/+7
Changes not found.
2016-09-01No more sparc on OpenBSD.wiz2-4/+4
From jmc@OpenBSD. Bump version.
2016-09-01Updated iso-codes to 3.70.wiz2-8/+7
iso-codes 3.70 -------------- Dr. Tobias Quathamer <toddy@debian.org> Mon, 29 Aug 2016 [ ISO 3166-2 ] * Update name for ES-SS to Gipuzkoa, thanks to Albert Cervera for the bug report. Closes: alioth#315433 [ ISO 3166-2 translations ] * German by Dr. Tobias Quathamer * Spanish by Dr. Tobias Quathamer * French by Dr. Tobias Quathamer [ ISO 639-2 translations ] * Swedish by Anders Jonsson (TP)
2016-08-28Remove unnecessary PLIST_SUBST and FILES_SUBST that are now providedwiz15-39/+15
by the infrastructure. Mark a couple more packages as not ready for python-3.x.
2016-08-27Add ALTERNATIVES file for py-vobject.wiz1-0/+2
2016-08-27Updated py-vobject to 0.9.3.wiz3-20/+25
26 August 2016 vobject 0.9.3 released Release Notes Fixed use of doc in setup.py for -OO mode Added python3 compatibility for base64 encoding Fixed ORG fields with multiple components Handle pytz timezones in iCalendar serialization Use logging instead of printing to stdout 13 March 2016 vobject 0.9.2 released Release Notes Better line folding for utf-8 strings Convert unicode to utf-8 to be StringIO compatible 16 February 2016 vobject 0.9.1 released Release Notes Removed lock on dateutil version (>=2.4.0 now works) 3 February 2016 vobject 0.9.0 released Release Notes Python 3 compatible Updated version of dateutil (2.4.0) More comprehensive unit tests available in tests.py Performance improvements in iteration Test files are included in PyPI download package 28 January 2016 vobject 0.8.2 released Release Notes Removed unnecessary ez_setup call from setup.py
2016-08-22Updated py-lxml to 3.6.4.wiz2-7/+7
3.6.4 (2016-08-20) ================== * GH#204, LP#1614693: build fix for MacOS-X. 3.6.3 (2016-08-18) ================== * LP#1614603: change linker flags to build multi-linux wheels 3.6.2 (2016-08-18) ================== * LP#1614603: release without source changes to provide cleanly built Linux wheels
2016-08-21Update KDE Frameworks to 5.25.0markd10-50/+45
5.22: Sonnet * Install parsetrigrams tool for cross compiling * hunspell: Load/Store a personal dictionary * Support hunspell 1.4 * configwidget: notify about changed config when ignored words updated * settings: don't immediately save the config when updating ignore list * configwidget: fix saving when ignore words updated * Fix failed to save ignore word issue 5.24: Sonnet * Mark helper exe as non-gui app * Allow nsspellcheck to be compiled on mac per default 5.25: Sonnet * hunspell: Clean up code for searching for dictionaries, add XDG dirs * Try to fix language filter usage of language detection a bit
2016-08-20Revbump packages using Go for Go 1.7 release.bsiegert3-5/+6
2016-08-20+ py-loremipsum.wiz1-1/+2
2016-08-20Import py-loremipsum-1.0.5 as textproc/py-loremipsum.wiz4-0/+38
The purpose of this package is to generate random (plausible) text sentences and paargraphs based on a dictionary and a sample text. By default this package will generate Lorem Ipsum style text, but you can customize the generator to effectively load any dictionary and any sample text you like.
2016-08-20Fix CATEGORY.wiz1-2/+2
2016-08-19No more armish in OpenBSD. From jmc@OpenBSDwiz2-5/+4
Bump version.
2016-08-19Update to 0.30wen2-9/+7
Upstream changes: 0.30 2016-08-17 * Source repo moved from Subversion to Github * Add -p to pdfstamp * Add -g, -p, -u to pdfbklt * Bug fixes * Wasn't installing on Windows Perl 5.22 and up * [rt.cpan.org] #116492: make install fails under Strawberry Perl * [rt.cpan.org] #110855: Fix pod2man errors * [rt.cpan.org] #86452: Parse error reading array * [rt.cpan.org] #78351: Invalid version format (non-numeric data) * [rt.cpan.org] #41085: ASCII85 decode broken * [rt.cpan.org] #35871: lzw compression fixup * [rt.cpan.org] #32210: pdfstamp patch for use strict * [rt.cpan.org] #31353: adding first test * fix Dict::read_stream() to write long streams to file as intended * fix LZWDecode to handle streams longer than 4096 bytes * close INFILE at start of release() * Fix Dict to allow single stream filters rather than requiring an array
2016-08-18Update to 0.48ryoon2-9/+8
Changelog: ___ _ _ ___ __ __/ _ \| || | ( _ ) \ \ / / | | | || |_ / _ \ Thanks for the patches, guys \ V /| |_| |__ _| (_) | \_/ \___(_) |_| \___/ (released 2016-06-17) SGML: * Use OpenSP as an underlying engine instead of the deprecated SP Thanks to Neil Roeth (Debian's 809477, 280882) Translations: * Update Japaneese, thanks to Takuma Yamada. * Fix formating issue in pt translation (noticed by Lintian).
2016-08-17update to relatorio-0.6.3richard2-7/+7
CHANGES: 0.6.3 - 20160629 * Update calcext:value-type with the same guessed type * Register MarkupTemplate for 'markup' mimetype instead of 'xml'