pkgsrc/textproc
schmonz c4b6a957d5 Update to 1.4.1. From the changelog:
omindex:

  + Also index leafname with _ and & replaced by spaces.  Literal spaces are
    often avoided in filenames, and "hello_world.txt" ought to be searchable for
    via "hello" and "world".  Partly addresses #618, reported by Julien
    Pfefferkorn.

  + Make named entity look-up (e.g. é -> 233) use the same keyword-lookup
    table approach we already use for HTML tags and built-in MIME content-types,
    rather than a std::map, which makes it faster while using less memory.

  + Avoid using the shell to run most external commands as it's unnecessary
    overhead.  For the built-in filters, the only cases which now use a shell
    are where we run two unzip commands.  For user-specified commands, a simple
    and slightly conservative test is used, which should avoid a shell in most
    common cases where it isn't needed.  Notably, environment variables set
    before the command are handled.

  + Track files which couldn't be indexed in the user metadata and skip them by
    default on subsequent runs to avoid the costs of repeatedly running a
    filter on a file it can't handle.  Run omindex with --retry-failed to retry
    such files.

  + Overhaul the "per-site" terms:
    - 'H' prefix is hostname as before, except that if the term would be > 240
      bytes (unlikely but possible) the end is hashed is the same way 'U'
      prefix terms are.
    - 'P' terms are now added for every directory level, not just the start
      URL's path.
    - A new 'J' prefix term is added with the start URL (less any trailing
      '/'), which means all files indexed from a particular "site" are now
      indexed by one term.  See #376.

  + Add 'skip' pseudo-mimetype which extensions can be mapped to, and they will
    then be reported and skipped (to complement the existing 'ignore'
    pseudo-mimetype which causes files with the specified extension to be
    quietly ignored).

  + Treat a command of 'true' specially as meaning make the text extraction a
    no-op (as actually running /bin/true effectively would).  This provides a
    way to index some file types by only meta-data.  Fixes #519, reported by
    Brian Burton.

  + Add support for wildcard mimetypes */* and *.  Combined with filter command
    ``true`` for indexing by meta-data only, you can specify a fall back case
    of indexing by meta-data only using ``--filter '*:true'``.  From a
    suggestion by Brian Burton on xapian-discuss.

  + Index message/rfc822 and message/news.  These are individually saved email
    messages and news articles.

  + Index archived web page formats MAFF and MHTML.

  + Handle .xla, yet another XL extension.

  + Handle metadata in LibreOffice HTML export (dcterms.subject,
    dcterms.description, dcterms.creator and dcterms.contributor).

  + Use zlib's gzopen() instead of invoking "gzip -dc" for compressed Abiword
    documents.

  + Add support for %f in command passed to --filter to allow specifying
    commands where the input file is not the final argument.  Fixed #570,
    reported by Charles Atkinson.

  + Allow --filter to handle commands which produce output in a temporary file
    rather than on stdout.

  + Allow --filter to specify the character set of the output the filter
    produces.

  + Handle application/vnd.ms-excel, text/x-perl and application/x-dvi via
    default --filter settings instead of hardcoded cases (now possible thanks
    to the new abilities that --filter has).

  + Add support for specifying a MIME subtype of '*' in --filter arguments.

  + Add -track-ctime option to allow omindex to pick up changes to file
    ownership and permissions.

  + Index terms from the leafname with an 'F' prefix, rather than treating them
    as more body text.  (Fixes #633, reported by Emmanuel Garette)

  + The starting URL wasn't previously URL encoded.  In 1.2.18, a minimally
    intrusive fix was implemented.  In 1.3.2, we now encode the starting URL
    as we do for the rest of the filename.

  + Don't assume .doc is application/msword but let libmagic decide, since .doc
    files may actually be RTF, and sometimes people use .doc for plain-text
    documentation.

  + Add support for indexing 'topic' and 'created date' meta-data for
    OpenDocument format and HTML.

  + Index "topic" for PDF documents.

  + Commit changes and exit, rather than skipping the current file on most
    unexpected errors reading directories or initialising libmagic - otherwise
    we can end up deleting a lot of database entries on errors like EHOSTDOWN
    when indexing network mounts.

  + Add --opendir-sleep=SECS option to allow working around problems with
    indexing files on Microsoft DFS shares.

  + If we get ENOTDIR trying to index a file, skip it quietly (unless in
    verbose mode) as we already do if we get ENOENT, since ENOTDIR is what we
    get if the file and the directory it was in got removed between us getting
    the filename and trying to open it.

  + Handle ENOENT, ENOTDIR and EACCES from readdir().

  + If we've already opened the file (as we often will have if using a modern
    libmagic with magic_descriptor() available), then use fstat() on that fd
    rather than stat()/lstat() on the pathname.

  + Pass error message string and errno value in ReadError exceptions.

  + Report strerror(errno) if we can't read a file.

  + Filtering via text/html now handles HTML documents which specify a charset.

  + Add support for indexing Microsoft Publisher files using pub2xhtml.

  + Restrict the length of what we consider to be an extension, currently to 7
    characters or whatever the longest extension in the mime_map is if it is
    longer.

  + Avoid '//' in temporary filenames (cosmetic only).

  + Extend --filter to handle commands which produce HTML on stdout.

  + Don't report an error if a file is deleted (or renamed) between us reading
    the directory entry for it and trying to read the file itself by default.
    In --verbose mode, the situation is still reported, but now with a
    specific message.

  + If omindex receives any of the signals SIGHUP, SIGINT, SIGQUIT or SIGTERM,
    then kill any active external filter child process, then handle the signal
    as we did before.  If setpgid() is available, put each external filter in
    its own process group and kill the whole process group when we get a
    signal.

  + Use magic_descriptor() if the version of libmagic we're building against
    is new enough to have it.  This eliminates an extra opening of a file
    being indexed in certain cases.

  + Use rst2html to handle .rst and .rest files.

  + Index title with an 'S' prefix rather than no prefix.

  + If the document with the highest existing docid before the run was updated,
    we were reporting it as "added", but now we correctly report it as
    "updated".

  + Catch and report std::exception explicitly, so failing to allocate memory
    is no longer reported as "Unknown exception".

omindex-list: New tool to list URLs of all the documents in a database
(or list of databases) indexed by omindex.

* The HTML parser now explicitly handles <APPLET>, <OBJECT> and <TR>.

* Use a generated compact and efficient table to convert HTML tag names
  to enum codes - this is both faster and smaller than the approach we were
  using, with the benefit that the table is auto-generated.

* Always use our built-in conversion code for the character sets it can handle
  (previously we'd use iconv if available; now we only use iconv for other
  character sets).  This gives us more consistent results, and in particular
  means we now handle BOMs better (at least when using GNU iconv).

* A lot of data labelled as "iso-8859-1" is actually "windows-1252".  The two
  only differ in characters which are control characters in iso-8859-1, so
  assume the latter when we see the former.


scriptindex:

  + Remove special error handling case noting that index=nopos was replaced
    with indexnopos - this was removed in 1.1.0 so there's been enough time to
    upgrade.


omega:

* Add support for sorting by more than one value - e.g. SORT=+1,-2

* Add $msizelower and $msizeupper which provide access to the lower and upper
  bounds on the number of matches.

* Add support for $set{weighting,coord}.

* Add weightingpurefilter option.  Normally a query consisting only of filter
  terms won't have relevance weights calculated.  This new option allows you to
  specify a weighting scheme to use for such queries, with the same values
  supported as for the existing weighting option.  For example,
  $set{weightingpurefilter,coord} will weight such queries by how many filter
  terms match each document.

* $filters now includes DATEVALUE, which means we'll force the first page when
  reloading or changing page starting from existing URLs upon upgrade to 1.4.1,
  but the exact same existing URL could be for a search without the date filter
  where we want to force the first page, so there's an inherent ambiguity
  there.  Forcing first page in this case seems the least problematic
  side-effect.

* Implement $match command for omegascript.  Patch from Richhiey Thomas.

* Add optional prefix argument to $terms.

* $snippet now uses MSet::snippet() instead of the Snipper class.

* Add $contains{STRING1,STRING2}.  Contributed by Ayush Gupta.

* Add support for negated boolean filter terms, specified by CGI parameter "N".

* Support a direction prefix on SORT: '+' for ascending, '-' for descending.
  SORTREVERSE set to non-0 now flips the direction.  Fixes #697, reported by
  Andy Chilton.

* Add options argument to $transform.

* Cache compiled regexps used in $transform.

* Add $ord OmegaScript command which returns the Unicode codepoint for the
  first character of a UTF-8 string.

* Add $chr OmegaScript command which returns the UTF-8 string for given Unicode
  codepoint.

* Add $csv OmegaScript command which escapes a string for use as a field in a
  CSV file ("always quote" mode inspired by patch from Gaurav Arora.)

* New $filters encoding which avoids collisions.  We also compare CGI parameter
  xFILTERS to what $filters would have returned in previous releases, so that
  on upgrades old format serialised filters are handled correctly.

* Fix $jsonarray not to prepend ']' to the first array element.

* Skip weighting scheme setup for a pure date range query - it won't be
  weighted anyway, so we can avoid having to parse weighting scheme parameters,
  etc.

* Use value ranges when date range filtering by value.  Should be more
  efficient than a MatchDecider, and will automatically take advantage of any
  future value range optimisations in xapian-core.

* Add default_db and default_template config options.  These allow the default
  template and default database name to be set via the config file, rather than
  being stuck with the respective defaults of "default" and "query".  Fixes
  #310, reported by Marco Hennigs.

* Add support for non-exclusive filters.  Fixes #234, reported by Thomas
  Viehmann.

* Fix handling of multiple P.<prefix> fields - previously only the first seen
  was used.  These fields are also now taken into account when deciding if the
  query has changed.  $query now returns an OmegaScript list with one entry for
  each CGI parameter passed.

* Allow setting query expansion scheme to "bo1".

* Make the $json and $jsonarray force the text to be valid UTF-8, since
  otherwise the output isn't valid JSON.

* Check parameters to $set{weighting,bm25 ...} and $set{weighting,trad ...}
  converted OK.  Based on patch from Aarsh Shah.

* Add support to $set{weighting,...} for bb2, dlh, dph, ifb2, ineb2, inl2, lm,
  pl2 when we're built against a xapian-core which is new enough to have these
  schemes.

* Add $snippet to generate a snippet of text tailored to the search.

* Add new $json and $jsonarray OmegaScript commands to support producing JSON
  output.

* Add $truncate command which truncates a string after a word.

* Add support for $set{weighting,tfidf} to allow the new TfIdfWeight weighting
  scheme to be used.

+ DEFAULTOP now defaults to AND rather than OR, since that matches what pretty
  much every search engine does these days.  Closes ticket#512.

* Allow mapping a query string prefix to more than one term prefix (which
  xapian-core has supported since 1.0.4).

* Add support for search inputs for multiple probabilistic prefixes, with
  support for per-prefix stemmers.

* Drop legacy support for handling '.' separated terms in xP - that changed in
  Omega 0.9.7, more than 5 years ago now.

* Remove support for OLDP CGI parameter which was superseded by xP
  approximately a decade ago, and isn't even documented!

* Drop special handling for R-prefixed terms in $prettyterm - we stopped
  generating these in Xapian 1.0.


templates:

* Lower case all HTML tags, attributes and values; explicitly close <option>
  tags.  Patches from Vivek Pal and Nirmal Singhania.

* Migrate Omega Templates to HTML5.  Patch from Nirmal Sighania.

* templates/query: Remove stray double quote from generated URL for spelling
  suggestion when THRESHOLD is set.  Patch from Nirmal Singhania.

* templates/opensearch: Change response feeds to support OpenSearch 1.1.
  Patch from Nirmal Singhania.

* templates/query: Fix setting setting of prefix map for P - in 1.3.2, this
  would failed to also search in the subject.  Now it also searches in the
  subject and topic.

* templates/query:

  + We now map unprefixed queries to include S-prefixed terms to match the
    change in omindex to prefixing terms from the title with S.  You may want
    to make the same update to your own templates.

  + Set up prefixes for 'author:' and 'title:'.
2016-11-07 13:02:45 +00:00
..
aha (pkgsrc) 2016-07-14 13:18:08 +00:00
aiksaurus Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
ansifilter MAKEFLAGS -> MAKE_FLAGS (pkgsrc guide 22.1) 2016-03-12 21:53:39 +00:00
antiword Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
artha Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
asciidoc Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
aspell Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
aspell-af Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-am Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ar Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ast Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-az Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-be Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-bg Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-bn Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-br Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ca Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-cs Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-csb Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-cy Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-da Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
aspell-de Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-de-alt Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-el Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-en Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-eo Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-es Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-et Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-fi Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-fo Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
aspell-fr Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-fy Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ga (pkgsrc) 2016-07-14 13:35:14 +00:00
aspell-gd Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-gl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-grc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-gu Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-gv Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-he Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-hi Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-hil Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-hr Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-hsb Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-hu Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-hus Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-hy Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ia Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-id Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-is Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-it Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-kn Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ku Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ky Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-la Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-lt Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-lv Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-mg Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-mi Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-mk Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-mn Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-mr Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-mt Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-nb Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-nl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-nn Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ny Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-or Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-pa Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-pl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-pt_BR Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-pt_PT Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-qu Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ro Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ru Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-rw Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-sc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-sk Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-sl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-sr Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-sv Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-sw Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-ta Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-te Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-tet Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-tk Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-tl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-tn Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-tr Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-uk Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-uz Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-vi Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-wa Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-yi Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
aspell-zu Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
awf Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
bibclean Use PKGMANDIR. Add patch comment. 2016-04-01 11:38:30 +00:00
biblook Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
bibparse Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
bsdgrep-devel Use PKGMANDIR. 2016-03-30 09:57:50 +00:00
btparse Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
c2html Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cabocha Fix build problem. 2016-09-09 02:13:59 +00:00
catdoc
catdoc-tk
cawf Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
cdif Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
chasen Rename MASTER_SITE_SOURCEFORGE_JP to MASTER_SITE_OSDN. 2015-06-29 11:06:46 +00:00
chasen-base Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
cityhash Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
cmark Updated textproc/cmark 0.24.1 to 0.26.1 2016-09-17 11:45:14 +00:00
cmigemo Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
coccigrep Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
colorit
convertlit Add SHA512 checksum. 2015-11-04 08:32:34 +00:00
CRF++ Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
crimson
crush-tools Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
csvkit Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
csvtomd Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
csvutils Import csvutils from WIP. 2016-07-20 23:15:52 +00:00
cwdiff Update HOMEPAGE 2016-07-15 11:17:04 +00:00
dadadodo Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
db2latex Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
dblatex (PLIST) Updated textproc/dblatex to 0.3.8, thanks richard@. 2016-09-19 04:59:47 +00:00
dbtoepub Bump PKGREVISION by chaging default version of Ruby. 2016-03-13 09:36:58 +00:00
detex Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
dict-client
dict-dictionaries Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
dict-mueller7 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
dict-server Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
dictem Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
diction Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
diffsplit Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
diffstat Update diffstat to 1.61. 2016-03-05 10:58:32 +00:00
dikt Revbump post boost update 2016-10-07 18:25:29 +00:00
discount Update textproc/discount to discount-2.1.8a. 2015-11-04 01:10:18 +00:00
docbook Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
docbook-simple Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
docbook-website Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
docbook-xml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
docbook-xsl Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
docbook2mdoc Support PKGMANDIR. 2016-04-01 12:55:43 +00:00
doclifter Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
dsssl-docbook-modular Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
dtdparse Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
DWB Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
eb Removed CVS files from PLIST. Bumped revision. 2016-07-10 11:31:31 +00:00
eblook Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ebook-tools Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ebview Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
emacs-dict-client Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
emacs-muse Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
enca Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
enchant Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
epubcheck Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
epubpreflight Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
erlang-fast_xml Update textproc/erlang-fast_xml to 1.1.15. 2016-08-12 09:34:59 +00:00
erlang-fast_yaml Update textproc/erlang-fast_yaml to 1.0.6. 2016-08-12 09:38:37 +00:00
erlang-jiffy Update textproc/erlang-jiffy to 0.14.8. 2016-04-22 14:50:04 +00:00
erlang-p1_xmlrpc Import p1_xmlrpc-1.15.1 as textproc/erlang-p1_xmlrpc. 2016-04-25 14:39:43 +00:00
erlang-stringprep Update textproc/erlang-stringprep to 1.0.6. 2016-08-12 09:44:20 +00:00
expat update to 2.2.0 2016-06-22 15:39:09 +00:00
expatobjc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ezxml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
FlightCrew Remove gmock dependency, now part of googletest (which this package 2016-11-01 15:31:56 +00:00
flyspell Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
fop Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
freepwing Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
freexl FreeXL is an open source library to extract valid data from within an Excel 2015-11-27 14:00:26 +00:00
gdome2 Moved documentation from share/doc/html to share/doc/gdome2. Fixed pkglint 2016-07-24 21:02:45 +00:00
glimpse update to glimpse 4.18.6 2016-01-26 09:01:28 +00:00
gnome-doc-utils Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
gnome-spell Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-subtitles Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
go-runewidth Revbump packages depending on Go after the Go 1.7.3 update. 2016-10-29 08:59:46 +00:00
go-text Revbump packages depending on Go after the Go 1.7.3 update. 2016-10-29 08:59:46 +00:00
grep Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
grepcidr Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
groff Instead of using find(1) in font/devpdf/Makefile.sub just use grep(1) following 2016-08-03 10:31:28 +00:00
groonga Add patch files, too. 2016-09-11 16:07:55 +00:00
gsed Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
gspell Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gtk-doc Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
gtkspell Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gutcheck Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
GutenMark Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
GutenMark-words Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
halibut Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
harmony Recursive revbump associated with ocaml update. 2016-05-05 11:45:36 +00:00
heirloom-bdiff
heirloom-bfs
heirloom-col
heirloom-comm
heirloom-cut
heirloom-diff3
heirloom-doctools Update textproc/heirloom-doctools to 160308. 2016-03-10 12:49:32 +00:00
heirloom-ed
heirloom-fmt
heirloom-fold
heirloom-grep
heirloom-head
heirloom-join
heirloom-line
heirloom-nl
heirloom-paste
heirloom-pg Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
heirloom-pr
heirloom-sdiff
heirloom-sed
heirloom-tail
heirloom-tr
heirloom-ul Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
heirloom-uniq
heirloom-wc
helpdeco Fix missing/broken rcsids. 2015-12-29 04:04:26 +00:00
hevea Switch to ocaml.mk framework and use ocamlbuild. 2016-09-18 07:15:08 +00:00
highlight Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
highway Import highway-1.1.0 as textproc/highway. 2015-12-11 14:10:42 +00:00
hre Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hs-attoparsec Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-blaze-html Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-blaze-markup Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-case-insensitive Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-cgrep Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-hscolour Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hs-pandoc-types Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-parsec Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-polyparse Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-regex-base Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hs-regex-posix Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hs-stringsearch Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hs-tagsoup Update to 0.13.9 2016-03-15 13:45:17 +00:00
hs-texmath Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-xml Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
html Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
html2text Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
html2wml Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
hugs-HaXml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
hunspell-af_ZA Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-ar Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-bg_BG Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-ca_ES Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-cs_CZ Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-cy_GB Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-da_DK Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-de Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
hunspell-el_GR Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-en_CA Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-en_GB Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-en_NZ Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-en_US Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-en_ZA Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-es_ES Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-es_MX Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-fo_FO Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-fr_FR Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-fy_NL Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-ga_IE Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-he_IL Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-hr_HR Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-hu_HU Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-id_ID Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-it_IT Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-lt_LT Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-lv_LV Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-mg_MG Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-ms_MY Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-nl_NL Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-ny_MW Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-pl_PL Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-ru_RU Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-sk_SK Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hunspell-sv_SE Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hyperestraier Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
hyphen Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
icu Revert incorrect change of the package list which was part of yesterday's 2016-04-12 19:51:54 +00:00
igor Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
iksemel Recursive PKGREVISION bump for gnutls shlib major bump. 2016-09-19 13:04:27 +00:00
intltool Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
ipadic Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
isearch Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
iso-codes Updated iso-codes to 3.70. 2016-09-01 16:06:44 +00:00
iso8879 Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
iso12083 Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-ca Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-de Updated textproc/ispell-de to 20160407 2016-07-30 12:54:52 +00:00
ispell-emacs Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-en_GB Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
ispell-es Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-fr Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-ga Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-gl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-ku Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-lt Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
ispell-pl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-pt_BR Use PKGMANDIR. Remove fragile subst handling. 2016-04-21 14:21:08 +00:00
ispell-ro Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-ru Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-ru-io
ispell-sk Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ispell-sv Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
itex2MML Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
itstool Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
ja-grep Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ja-groff Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
ja-sed Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
jansson Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
java-mecab Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
java-native-hyperestraier
java-pure-hyperestraier
jdom Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
jing Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
jo Reset maintainer to pkgsrc-users@NetBSD.org 2016-09-11 15:59:29 +00:00
jrep Update to 0.6.1 2016-07-03 16:37:56 +00:00
json-c Updated json-c to 0.12.1. 2016-06-12 14:37:37 +00:00
json-glib Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
jsoncpp Updated jsoncpp to 1.7.4. 2016-07-15 15:14:03 +00:00
kakasi Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
kapidox Update KDE Frameworks to 5.25.0 2016-08-21 21:26:01 +00:00
kbanner Use PKGMANDIR. Add patch comment. 2016-03-30 10:01:24 +00:00
kcodecs Update KDE Frameworks to 5.25.0 2016-08-21 21:26:01 +00:00
kcompletion Update KDE Frameworks to 5.25.0 2016-08-21 21:26:01 +00:00
kdoc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
latex2html Updated textproc/latex2html 2008 to 2016 2016-08-11 00:15:53 +00:00
LDoc Switch to pkg_alternatives(8) and rename to lua5x-LDoc-1.4.3. 2016-06-06 23:19:07 +00:00
libclucene Revbump post boost update 2016-10-07 18:25:29 +00:00
libcroco revert previous commit, sorry. 2015-11-23 12:54:53 +00:00
libcsv Import libcsv from wip 2016-07-20 23:00:13 +00:00
libexttextcat Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
libfastjson Update textproc/libfastjson to 0.99.4. 2016-08-09 11:48:59 +00:00
liblinebreak Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
liblrdf Revbump post boost update 2016-10-07 18:25:29 +00:00
libnxml Revbump post boost update 2016-10-07 18:25:29 +00:00
libodfgen Revbump post boost update 2016-10-07 18:25:29 +00:00
libpinyin Remove --version-script argument on Darwin too. 2016-02-26 12:16:38 +00:00
libplist Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
libunicode Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
libunistring Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
libxml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
libxml++ Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libxml++1 Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
libxml2 Use standard format for 'used by' lines, since some tools make use of this. 2016-05-28 06:47:51 +00:00
libxslt Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libyaml Updated libyaml to 0.1.7. 2016-09-01 16:22:02 +00:00
link-grammar Fix PLIST inconsistency after recent update to 5.3.7, sorry. 2016-09-12 14:06:08 +00:00
lit2epub Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
lout Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
lq-sp Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
lua-cjson Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
lua-expat Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
lua-slnunicode Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
lucene++ Revbump post boost update 2016-10-07 18:25:29 +00:00
makeindexk Updated to TexLive 2016: 2016-06-16 04:11:50 +00:00
makeztxt Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
marisa Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
Markdown Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
markdown-mode Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
markdown2social Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
mdoclint OpenBSD does not support zaurus any longer. 2016-09-03 18:19:40 +00:00
mdocml Rename soelim to msoelim (per comment in upstream example) to fix 2016-09-07 18:50:05 +00:00
mecab
mecab-base Remove DRAGONFLY_CCVER=gcc44 2016-10-25 20:54:24 +00:00
mecab-ipadic Remove mk/find-prefix.mk usage from the textproc category. 2015-11-25 12:53:42 +00:00
mecab-jumandic Remove mk/find-prefix.mk usage from the textproc category. 2015-11-25 12:53:42 +00:00
mecab-naistdic Remove mk/find-prefix.mk usage from the textproc category. 2015-11-25 12:53:42 +00:00
mendexk Updated to TexLive 2016: 2016-06-16 04:11:50 +00:00
metauml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
migemo No need to specify RUBY_VERSIONS_ACCEPTED. 2016-10-24 14:30:18 +00:00
migemo-elisp Bump PKGREVISION by chaging default version of Ruby. 2016-03-13 09:36:58 +00:00
miller Updated miller to 4.5.0. 2016-09-01 16:25:51 +00:00
multimarkdown Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mxml Updated textproc/mxml to 2.10 2016-07-15 13:14:10 +00:00
mythes Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
namazu Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
nbsed Add LICENSE (original-bsd AND modified-bsd). 2016-01-28 14:08:10 +00:00
ndtpd Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
nxml-mode Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
o3read Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ocaml-csv Updated package to latest version, 1.5; also updated package to work with 2016-07-02 10:11:09 +00:00
ocaml-expat Updated package to use ocaml.mk framework. No upstream changes. 2016-06-25 14:31:13 +00:00
ocaml-jsonm Revbump to make sure package gets rebuilt with new mk/ocaml.mk. 2016-06-19 17:20:44 +00:00
ocaml-markup Added package textproc/ocaml-markup, a pair of parsers for XML and HTML5. 2016-06-20 11:08:31 +00:00
ocaml-text Revbump to make sure package gets recompiled with newer mk/ocaml.mk, and 2016-06-20 10:29:29 +00:00
ocaml-tyxml Syntax extension needs to be installed for dependencies. Revbump. 2016-06-20 15:20:03 +00:00
ocaml-uutf Updated package to add ocamlbuild dependency, plus revbump to ensure it 2016-06-17 11:31:55 +00:00
OdfConverter Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
odt2tex Uses C99 for loop declarations. 2016-10-01 13:07:50 +00:00
oniguruma Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
openjade Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
opensp Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
ots Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
p5-ack Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Alien-Base Import p5-Alien-Base-0.004 as textproc/p5-Alien-Base. 2016-07-30 13:16:23 +00:00
p5-Biblio-EndnoteStyle Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-cabocha Updated textproc/{p5-,py-,ruby-,}cabocha to 0.69 2016-07-26 13:38:02 +00:00
p5-CAM-PDF Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Convert-ASCII-Armour Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Convert-ASN1 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Convert-BER Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Convert-PEM Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Convert-Translit Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Cz-Cstools Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Data-FormValidator Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Data-HexDump Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Dist-Zilla-Plugin-PodWeaver Updated textproc/p5-Dist-Zilla-Plugin-PodWeaver to 4.008 2016-06-09 12:06:39 +00:00
p5-Encode Update to 2.86 2016-08-10 23:41:44 +00:00
p5-Encode-Detect Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Encode-Locale Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Feed-Find Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-File-ReadBackwards Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Filter Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-FormValidator-Simple Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-highlight Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-HTML-FormatText-WithLinks Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-HTML-FormatText-WithLinks-AndTables Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-iCal-Parser Fixed pkglint warnings about variable indentation. 2016-07-24 20:04:10 +00:00
p5-Kwalify Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-libxml Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
p5-Lingua-EN-Fathom Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-FindNumber Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-Inflect Updated textproc/p5-Lingua-EN-Inflect to 1.900 2016-07-30 12:59:07 +00:00
p5-Lingua-EN-Inflect-Number Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-Inflect-Phrase Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-Number-IsOrdinal Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-Numbers-Ordinate Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-Sentence Updated textproc/p5-Lingua-EN-Sentence to 0.30 2016-08-09 13:46:25 +00:00
p5-Lingua-EN-Syllable Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-Tagger Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-EN-Words2Nums Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-Identify Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-Preferred Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-PT-Stemmer Updated textproc/p5-Lingua-PT-Stemmer to 0.02 2016-06-09 13:07:13 +00:00
p5-Lingua-Stem Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-Stem-Fr Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-Stem-It Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-Stem-Ru Updated extproc/p5-Lingua-Stem-Ru to 0.04 2016-06-09 13:03:10 +00:00
p5-Lingua-Stem-Snowball Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lingua-Stem-Snowball-Da Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-List-Compare Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Locale-Maketext-Gettext Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-marisa Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-mecab Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
p5-mobiperl Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
p5-native-hyperestraier Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Net-Dict (pkgsrc) 2016-06-09 13:26:43 +00:00
p5-Net-IDN-Encode Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Number-Format Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Number-Spell Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-PDF Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-PDF-API2 Update to 2.030 2016-10-15 07:35:31 +00:00
p5-PDF-Create Updated textproc/p5-PDF-Create to 1.35 2016-09-17 11:21:10 +00:00
p5-PDF-Reuse Update to 0.39 2016-11-05 14:25:08 +00:00
p5-PDF-Reuse-Barcode Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-PDF-Table Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Abstract Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Coverage Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Coverage-TrustPod Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Elemental - Added following package on BUILD_DEPENDS for make test 2016-07-20 11:21:02 +00:00
p5-Pod-Elemental-PerlMunger Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Escapes Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Eventual Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Markdown Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Parser Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-POM Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Readme Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Simple Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Spell Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Spell-CommonMistakes Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Strip Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Tests Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Tree Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Pod-Weaver Update to 4.015 2016-10-15 07:20:59 +00:00
p5-POD2-Base Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-podlators Update to 4.07 2016-07-26 12:32:23 +00:00
p5-PPI-HTML Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Publican Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Regexp-Common Update to 2016060801 2016-07-24 06:17:08 +00:00
p5-Regexp-Copy Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Search-Indexer Updated textproc/p5-Search-Indexer to 0.78 2016-07-15 13:44:42 +00:00
p5-Search-Xapian Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-SGMLS Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Snowball-Norwegian Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Snowball-Swedish Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Approx Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-BufferStack Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-CamelCase Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Compare-ConstantTime Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-CRC32 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Errf Updated textproc/p5-String-Errf to 0.008 2016-07-19 11:58:19 +00:00
p5-String-Flogger Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Formatter Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Koremutake Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-RewritePrefix Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-ShellQuote Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Similarity Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-ToIdentifier-EN Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Trim Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Truncate Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Swim Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Syntax-Highlight-Engine-Kate Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Syntax-SourceHighlight Revbump post boost update 2016-10-07 18:25:29 +00:00
p5-Template-Declare Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Template-Plugin-Autoformat Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Template-Plugin-CSV Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Template-Plugin-Latex Updated textproc/p5-Template-Plugin-Latex 3.06 to 3.09 2016-07-20 14:53:09 +00:00
p5-Template-Plugin-Number-Format Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Template-Plugin-YAML Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Template-Tiny Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Test-YAML Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Affixes Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Aligner Update to 0.13 2016-07-24 06:22:22 +00:00
p5-Text-Aspell Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Autoformat Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Balanced Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-BibTeX Updated p5-Text-BibTeX to 0.77. 2016-09-30 11:12:00 +00:00
p5-Text-Brew Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-CharWidth Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-ChaSen Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Context-EitherSide Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-CSV Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-CSV-Encoded Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-CSV-Hash Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-CSV-Simple Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-CSV_XS Update to 1.25 2016-09-03 07:59:31 +00:00
p5-Text-DelimMatch Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-DHCPLeases Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Diff Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Diff-HTML Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Diff-Parser Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-DoubleMetaphone Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Emoticon Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Emoticon-MSN Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-FindIndent Update to 0.11 2016-07-25 23:43:16 +00:00
p5-Text-Format Updated textproc/p5-Text-Format to 0.60 2016-09-17 11:24:12 +00:00
p5-Text-German Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Glob Updated p5-Text-Glob to 0.10. 2016-09-30 11:14:55 +00:00
p5-Text-Hunspell Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Kakasi Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-LevenshteinXS Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Markdown Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Markdown-Discount Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Microformat Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-MicroTemplate Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Ngram Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Nimble Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Patch Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-PDF Updated textproc/p5-Text-PDF to 0.31 2016-09-17 11:27:00 +00:00
p5-Text-Quoted Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-RecordParser Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Reflow Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Reform Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-RewriteRules Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Roman Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Sass Update to 1.0.4 2016-08-12 11:57:55 +00:00
p5-Text-Shellwords Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-SimpleTable Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-SimpleTable-AutoWidth Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Soundex Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-SpellChecker Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Substitute Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Table Update to 1.131 2016-07-30 23:40:47 +00:00
p5-Text-Tabs+Wrap Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-TabularDisplay Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Template Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Textile Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Trac Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Typography Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Unaccent Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Unidecode Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-vCard Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-vFile-asData Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-VisualWidth-PP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-WagnerFischer Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-WikiCreole Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-WikiFormat Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-WrapI18N Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Wrapper Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Xslate Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-xSV Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Unicode-CaseFold Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Unicode-LineBreak Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Atom Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Atom-SimpleFeed Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Atom-Stream Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-AutoWriter Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Bare Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Catalog Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Checker Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Clean Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Descent Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-DOM Update to 1.46 2016-10-15 07:43:27 +00:00
p5-XML-Dumper Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Elemental Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Encoding Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Entities Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Feed Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-FeedPP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Filter-BufferText Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Filter-DetectWS Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Filter-DOMFilter-LibXML Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Filter-Reindent Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Filter-SAXT Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Generator Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Grove Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Handler-Trees Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Handler-YAWriter Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-LibXML Updated textproc/p5-XML-LibXML to 2.0128 2016-07-26 14:16:49 +00:00
p5-XML-LibXML-Iterator Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-LibXML-Simple Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-LibXSLT Update to 1.95 2016-07-31 12:33:23 +00:00
p5-XML-NamespaceSupport Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Node Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-NodeFilter Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Parser Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Parser-Lite Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Parser-Lite-Tree Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Rabbit Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-RAI Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-RegExp Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-RSS Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-RSS-Parser Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Sablotron Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-SAX Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-SAX-Base Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-SAX-Expat Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-SAX-ExpatXS Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-SAX-Writer Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-SemanticDiff Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Simple Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Stream Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Tidy Update to 1.16 2016-07-25 23:57:09 +00:00
p5-XML-Tiny Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-TokeParser Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-TreeBuilder Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-TreePP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Twig Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-UM Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Writer Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-Writer-String Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-XPath Update to 1.38 2016-11-05 14:04:18 +00:00
p5-XML-XPathEngine Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-XQL Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-XSLT Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-XML-XUpdate-LibXML Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-yamcha Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-YAML Update to 1.18 2016-07-26 00:10:05 +00:00
p5-YAML-LibYAML Update to 0.63 2016-07-26 00:03:02 +00:00
p5-YAML-Syck Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-YAML-Tiny Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
par Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
pdfgrep Recursive PKGREVISION bump for poppler-0.46.0 shlib major bump. 2016-08-01 14:23:55 +00:00
pear-Console_Table Update pear-Console_Talbe to 1.3.0. 2016-07-19 15:08:21 +00:00
pear-File_Find Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
php-dom
php-enchant
php-excel
php-intl Reset PKGREVISION along with all PHP language updates. 2016-05-02 13:11:27 +00:00
php-json
php-mecab lang/php/ext.mk overrides EGDIR with an absolute path, so drop 2016-09-05 20:14:28 +00:00
php-pspell
php-sphinx Drop "55" (php55) from PHP_VERSIONS_ACCEPTED. 2016-09-11 17:03:25 +00:00
php-wddx
php-xsl update the MESSAGE - php module configuration is provided automatically now, no need to include instruction about modifying php.ini 2016-07-17 15:51:37 +00:00
po-mode Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
po4a Update to 0.48 2016-08-18 12:52:39 +00:00
pod2mdoc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
postgresql-autodoc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
psgml-mode Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
pugixml Import pugixml-1.7 as textproc/pugixml. 2016-04-29 11:54:54 +00:00
pxp Updated PLIST to properly use ocaml.mk framework. No upstream changes. 2016-07-02 09:30:45 +00:00
py-4Suite Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-acora Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-alabaster Import py-alabaster-0.7.7 as textproc/py-alabaster. 2016-01-17 13:38:25 +00:00
py-anyjson Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-biplist Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-cabocha Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-cElementTree Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-cjson Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-cmTemplate Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-color Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-colour Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-creole Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-cssselect Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-cssutils Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-defusedxml Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-docutils Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-docx Add a new package for py-docx. From David H. Gutteridge in PR pkg/50645. 2016-03-08 19:51:25 +00:00
py-ejson Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-elementtree Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-empy Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-enchant Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-Excelerator Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-expat Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-feedparser Update to 5.2.1. From the changelog: 2015-10-31 14:18:32 +00:00
py-ftfy Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-generateDS Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-gnosis-utils Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-HappyDoc Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-html2text Updated py-html2text to 2016.9.19. 2016-10-05 09:18:35 +00:00
py-html5lib Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
py-iniparse Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-jinja2 Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-jsonlib Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-jsonlib3 Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
py-jsonrpclib Import py-jsonrpclib-0.1.7 as textproc/py-jsonrpclib. 2016-09-02 16:26:32 +00:00
py-jsonschema Match PLIST with reality. 2016-10-26 13:44:17 +00:00
py-JWT Add some BUILD/TEST dependencies. 2015-11-07 19:04:09 +00:00
py-libxml2 pkglint cleanup: remove empty line 2016-05-28 06:48:03 +00:00
py-libxslt Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-loremipsum Import py-loremipsum-1.0.5 as textproc/py-loremipsum. 2016-08-20 07:19:51 +00:00
py-lxml Updated py-lxml to 3.6.4. 2016-08-22 14:01:35 +00:00
py-marisa Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-markdown Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-markdown2 Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-markupsafe Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-mecab Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-mkdocs Import py-mkdocs and associated themes. 2016-01-21 20:32:26 +00:00
py-mkdocs-bootstrap Import py-mkdocs and associated themes. 2016-01-21 20:32:26 +00:00
py-mkdocs-bootswatch Import py-mkdocs and associated themes. 2016-01-21 20:32:26 +00:00
py-numpydoc Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-openpyxl Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-pdf-parser Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
py-phonenumbers Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-prettytable Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-pygments Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-pyphen Update py-pyphen to 0.9.4. 2016-02-10 13:07:03 +00:00
py-pyquery Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-pytoml Fix CATEGORY. 2016-08-20 07:17:31 +00:00
py-rdflib Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-relatorio update to relatorio-0.6.3 2016-08-17 14:56:56 +00:00
py-snowballstemmer Import py-snowballstemmer-1.2.1 as textproc/py-snowballstemmer. 2016-01-17 13:16:49 +00:00
py-sphinx Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-sphinx-rtd-theme Import py-sphinx-rtd-theme-0.1.9 as textproc/py-sphinx-rtd-theme. 2016-01-17 13:45:42 +00:00
py-sphinx-theme-cloud Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-Tempita Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-textile Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-tinycss Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-Unidecode Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-uritemplate Updated py-uritemplate to 3.0.0. 2016-11-07 10:53:52 +00:00
py-validators Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-vobject Downgrade py-vobject to 0.9.2 2016-10-31 16:28:27 +00:00
py-webencodings Import webencodings 0.5 as textproc/py-webencodings. 2016-10-26 07:50:24 +00:00
py-Whoosh Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-X Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
py-X2 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-xlrd Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-xlsxwriter Update textproc/py-xlsxwriter to 0.9.3. 2016-08-09 09:13:54 +00:00
py-xlwt Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-xml Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-yamcha Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-yaml Updated py-yaml to 3.12. 2016-09-01 17:01:46 +00:00
qore-json-module email style fix 2016-08-07 11:44:42 +00:00
qore-xml-module email style fix 2016-08-07 11:44:42 +00:00
qore-yaml-module email style fix 2016-08-07 11:44:42 +00:00
qprint Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
qsubst Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
queequeg Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
R-formatR Update to 1.3 2016-04-16 14:52:15 +00:00
R-gsubfn Import textproc/R-gsubfn 0.6-6 into pkgsrc. 2016-02-25 19:43:57 +00:00
R-highr Update to 0.6 2016-07-28 14:25:34 +00:00
R-markdown Update to 0.7.7 2016-04-13 14:18:23 +00:00
R-stringi Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
R-stringr Update to 1.0.0 2016-01-01 13:38:34 +00:00
R-yaml Import yaml-2.1.13 as textproc/R-yaml. 2016-04-16 14:46:28 +00:00
raptor Revbump post boost update 2016-10-07 18:25:29 +00:00
raptor2 Revbump post boost update 2016-10-07 18:25:29 +00:00
rarian Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
rasqal Revbump post boost update 2016-10-07 18:25:29 +00:00
redland Revbump post boost update 2016-10-07 18:25:29 +00:00
regexx Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
regxml Remove url2pkg marker. 2016-09-20 12:59:24 +00:00
rfcutil Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
rman Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
robodoc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
rtf-tools Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
rtfm Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
rubber Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
ruby-albino Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-amrita Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-bluecloth Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-buftok Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-builder Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-cabocha
ruby-classifier-reborn Update ruby-classifier-reborn to 2.0.4. 2015-12-13 16:55:48 +00:00
ruby-coderay Update ruby-coderay to 1.1.1. 2016-03-15 15:39:04 +00:00
ruby-diff-lcs Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby-eruby Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby-escape Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-fast-stemmer Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-fastercsv Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-feed-normalizer Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-ferret Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-haml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-hikidoc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-hpricot Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-html-parser Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-htree Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-itex2MML Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-json Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby-json-pure Update ruby-json-pure to 1.8.3. 2015-12-13 15:04:46 +00:00
ruby-kramdown Update ruby-kramdown to 1.12.0. 2016-10-18 14:34:01 +00:00
ruby-levenshtein Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-libxml Update ruby-libxml to 2.9.0. 2016-10-18 14:36:38 +00:00
ruby-mab Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-marisa
ruby-markaby Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-maruku Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-mecab Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-multi_json Update ruby-multi_json to 1.12.1. 2016-10-18 14:39:16 +00:00
ruby-native-hyperestraier
ruby-nokogiri Update ruby-nokogiri to 1.6.8.1 2016-10-18 14:41:15 +00:00
ruby-nqxml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-oniguruma Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-plist Update ruby-plist to 3.2.0. 2016-03-15 15:55:42 +00:00
ruby-pure-hyperestraier
ruby-rdtool Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby-redcarpet Update ruby-redcarpet to 3.3.4. 2016-03-15 15:57:59 +00:00
ruby-redcloth Update ruby-redcloth to 4.3.2. 2016-10-18 14:43:14 +00:00
ruby-rison Update ruby-rison to 2.1.0. 2016-10-18 14:48:14 +00:00
ruby-rttool Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-safe_yaml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-sary Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby-simple-rss Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-stringex Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-suikyo
ruby-syntax Update ruby-syntax to 1.2.1. 2016-10-18 14:49:25 +00:00
ruby-text Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-textpow Fix ALTERNATIVES. 2015-12-12 04:14:03 +00:00
ruby-tilt Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-toml Allow ruby-toml to depend on ruby-parslet 1.6 and later. 2015-11-18 16:09:24 +00:00
ruby-treetop Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-ultraviolet Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-will-paginate Update ruby-will-paginate to 3.1.5. 2016-10-20 15:12:21 +00:00
ruby-xmlparser Update ruby-xmlparser to 0.7.3. 2015-12-13 16:57:32 +00:00
ruby-xpath Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-xslt Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-yajl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
ruby-yamcha
ruby-yard Update ruby-yard to 0.9.5. 2016-10-18 14:50:54 +00:00
sablotron Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
sary Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
saxon Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
scew Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
scrollkeeper-dtd Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
serd Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
sgrep Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
shared-desktop-ontologies Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
sift Revbump packages depending on Go after the Go 1.7.3 update. 2016-10-29 08:59:46 +00:00
sonnet Update KDE Frameworks to 5.25.0 2016-08-21 21:26:01 +00:00
soprano Revbump post boost update 2016-10-07 18:25:29 +00:00
sord Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
source-highlight Revbump post boost update 2016-10-07 18:25:29 +00:00
sphinxsearch Recursive bump for all users of pgsql now that the default is 95. 2016-10-09 21:41:55 +00:00
stardic Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
sub2srt Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
sublib Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
subtitleripper Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
suikyo Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
suikyo-conv-table
suikyo-docs
suikyo-elisp
swath Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tcl-dom Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tcl-expat Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tcl-tDOM Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tcl-xml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tei Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tei-p5-schema Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tei-xsl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tex-latexdiff Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
tex-latexdiff-doc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
tex-makeindex Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tex-makeindex-doc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tex-xmltex Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tex-xmltex-doc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tex-xmltexconfig Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
texi2html Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
texi2mdoc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
texi2roff Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
the_silver_searcher Updated the_silver_searcher to 0.33.0. 2016-09-30 14:54:32 +00:00
tinyxml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tinyxml2 Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
tokyodystopia Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
trang Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
troffcvt Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
unac Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
uncrustify Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
uni2ascii Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
unroff Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
untex Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
uriparser Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
urlview Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
vis Use PKGMANDIR. 2016-03-30 08:48:31 +00:00
wbxml2 Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
wdiff Do not package charset.alias. Bump PKGREVISION. 2016-09-16 06:27:51 +00:00
WordNet Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
writer2latex Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xalan-j Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xapian Update to 1.4.1. From the changelog: 2016-11-07 13:02:17 +00:00
xapian-omega Update to 1.4.1. From the changelog: 2016-11-07 13:02:45 +00:00
xerces-c Updated xerces-c to 3.1.4. 2016-07-03 11:17:15 +00:00
xerces-j Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xfce4-dict Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xhtml Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xhtmldiff Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
xml-coreutils Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xml2 Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xml2doc Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xmlada Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xmlcatmgr Remove mk/find-prefix.mk usage from the textproc category. 2015-11-25 12:53:42 +00:00
xmlindent Make lex/flex a runtime dependency for packages which link against -lfl. 2016-03-30 12:51:16 +00:00
xmlrpc-c Revbump post boost update 2016-10-07 18:25:29 +00:00
xmlstarlet Update xmlstarlen from 1.3.1 to 1.6.1 2016-10-25 02:11:32 +00:00
xmlto Using "type -t" is a pretty pointless bashism, even slowing things down 2015-12-11 23:31:09 +00:00
xmltoman Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
xmltooling Revbump post boost update 2016-10-07 18:25:29 +00:00
xp Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xqilla Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xslide Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
xt Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
yamcha Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
yaml-cpp Extract using bsdtar. 2016-09-23 08:39:53 +00:00
yelp-xsl Update yelp-xsl to 3.20.1 2016-05-07 08:43:00 +00:00
yodl Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
zoem Add SHA512 digests for distfiles for textproc category 2015-11-04 01:59:17 +00:00
Makefile + py-webencodings 2016-10-26 07:50:54 +00:00