pkgsrc/textproc
schmonz dda5ac0050 Update to 3.3.1. From the changelog:
v3.3.1      Mon Jan 13 10:27:16 CST 2020
========================================
[FIXES]
Some regexes would be shown as invalid when used with the -Q option.  Since
the -Q tells ack to treat the regex as a literal, this shouldn't be
possible.  (GH#294)


v3.3.0      Sat Dec 28 16:00:21 CST 2019
========================================
[FEATURES]
The error message ack displays when the regex passed is invalid has been
improved.  The message is more readable and includes a pointer to the
offending part of the regex.  For example:

    $ ack 'status: (open|closed|in progress'
    ack: Invalid regex 'status: (open|closed|in progress'
    Regex: status: (open|closed|in progress
                   ^---HERE Unmatched ( in regex

Added many new file and directory exclusions to speed up file selection.
* Python's *.pyc, *.pyd and *.pyo compiled files
* Python's __pycache__ and .pytest_cache directories
* Linux *.so shared object files
* Windows dynamic-link library *.dll files
* gettext compiled *.mo translation files
* macOS's __MACOSX directories and .DS_Store files

Reorganized the --help menu to put "action" options like -f, -g and -l at
the top of the listing.

The --show-types option only has an effect with -f or -g.  ack will now
tell you if you use --show-types without -f or -g when it will have no
effect.

Improved the error message when ack gets passed two options that can't be
used together.


[FIXES]
Fixed the behavior of --break and --heading.  Using --break would
implicitly set --noheading, and --heading would implicitly set --nobreak.

The following pairs of options don't make sense to use together, and ack will now warn you if you try:

* -x and --files-from
* -v and -o
* -v and --output
* -v and --passthru

Fixed the minimum version of the Getopt::Long module required. (GH #287)

The line number and filename separators in --passthru mode now work the
same as in context (-A/-B/-C) mode.  (GH #291)


v3.2.0      Sun Nov  3 22:52:18 CST 2019
========================================
[FEATURES]
Added "-t X" as a short alias for --type=X.

Added "-T X" as a short alias for --type=noX.

The feature of using the name of the type as an option is deprecated.  For
example, ack currently lets you use "--perl" instead of "--type=perl" or
"-t perl",  This is now deprecated and will be removed in a future release.

Removed support for Parrot (--parrot).


v3.1.3      Sat Oct 19 19:23:48 CDT 2019
========================================
No changes to functionality.  Fixed a problem with version numbers.
Thanks to Dan Book for his help.
See b3c43d4410


v3.1.2      Mon Oct 14 21:47:51 CDT 2019
========================================
[SPEEDUP]
Using -w with a pattern that ended with a metacharacter would be slower
than it should be because it would skip an optimization. Now it's fixed.
(GH #181, #251)

[FIXES]
Fixed test failures that would sometimes happen on Windows machines because
of taint mode.  Thanks, Tomasz Konojacki. (GH #235)

Remove the use of the version.pm module.


v3.1.1      Sat Aug 31 22:56:10 CDT 2019
========================================
[SPEEDUP]
Improved the speed up the -l, -L and -c options by pre-scanning the file
in bulk before doing line-by-line scan. (GH #221)

ack now uses File::Next 1.18 which calls stat() only once per file or
directory, instead of sometimes calling it twice.  This should improve the
time spent traversing directories.

[FIXES]
On Windows, patterns with $ to mark the end of the line would not match.
(GH #229)

[DOCUMENTATION]
Fixed docs that referred to --range-stop instead of --range-end. (GH #228)


v3.1.0      Thu Aug 22 22:43:15 CDT 2019
========================================
[FEATURES]
Added the --range-start and --range-end options to allow searching only
ranges of each file. (GH #165)


v3.0.3      Tue Aug 20 23:42:02 CDT 2019
========================================
[FIXES]
Made smartcase's check for lowercase patterns smarter.

[DOCUMENTATION]
Updated many URLs, especially in the config. (GH #223)


v3.0.2      Thu Jul  4 21:42:43 CDT 2019
========================================
[FIXES]
ack's smart-case feature would think that a pattern like "select \S+ from"
is looking for a uppercase letter, and so would not make a case-insensitive
search.  Now, ack knows that uppercase letters in metacharacters don't
count as looking for a uppercase letter. (GH #156, 187, 214)


v3.0.1      Tue Jun 25 20:47:58 CDT 2019
========================================
[FIXES]
The -s option tells ack not to complain about missing or unreadable files
it tries to search.  The -s option would not always work in conjection with
the -x option.  Now it does.  Thanks, Anders Eriksson and M. Scott Ford.
(GH #175)

ack would die if you specified a --output option that didn't use one
of Perl's special match variables.  Now it won't.  Thanks, M. Scott
Ford. (GH #210)

[INTERNALS]
Added a Dockerfile for use when working on ack development.  Thanks,
M. Scott Ford. (GH #208)


v3.0.0      Mon May 27 21:46:34 CDT 2019
========================================
First official release of ack verison 3.

See "Release notes for ack 3.0.0" at the bottom of this document for
details of what has changed between ack 2.x and ack 3.

[FIXES]
Fixed a failing test if Pod::Perldoc::ToTextOverstrike was being
used. (GH#202)


2.999_08 Sun May 19 20:33:13 CDT 2019
=====================================
[ENHANCEMENTS]
Consolidated the manual and FAQ into one document, accessible with --man.
Cookbook.pm has been moved to dev for future use.

Added SVG filetype.

[FIXES]
Invalid options used to cause an error message triplicate. Fixes GH #192.


2.999_07 Sun Mar 31 21:54:55 CDT 2019
=====================================
[ENHANCEMENTS]
Added --help-colors and --help-rgb-colors options to display colors
available for color options.

Many more mutex options have been added to help users know when they've
made a mistake.  For example, it doesn't make sense to have -C to show
context when using -f to get a file list.

Overhauled the handling of mutually exclusive options.  We now properly
handle mutex options even if they are abbreviated.  The actual argument
used is now shown.  Fixes GH #57.


2.999_06 Thu Jan 10 20:37:23 CST 2019
=====================================
[ENHANCEMENTS]
The --tt option for Template Toolkit is now --ttml.  The short version
still works.

The standalone version of ack no longer supports the --faq or --cookbook
options, which never worked right for it anyway.  Instead, --man includes
the FAQ and Cookbook.

The --man option no longer uses the `perldoc` program for rendering the
documentation.  This means you'll have to pipe it into your own pager if
you want scrolling, but it makes it much more portable.

[FIXES]
ack would stop finding files if there was a file named "0" in the current
directory. Thanks, Rob Hoelz. (GH #162)

[REMOVED FUNCTIONALITY]
The --lines option has been removed. (GH #167)

The -u short alias for --underline has been removed. (GH #173)


2.999_05 Sun Oct 21 21:37:39 CDT 2018
=====================================
[ENHANCEMENTS]
Add -p as a shorter version of --proximate.


2.999_04 Thu Sep  6 17:45:07 CDT 2018
=====================================
[ENHANCEMENTS]
Added -P as a negation of --proximate.  It is the same as --proximate=0.
If you have --proximate in an .ackrc, -P can be used to cancel it.

Added --ts for Typescript.


2.999_03 Fri Jan 19 11:02:46 CST 2018
=====================================
[ENHANCEMENTS]
The check for whether we need to scan the entire file line-by-line now
reads 10M of file instead of just 100K.

Removed support for the ACK_OPTIONS environment variable.  Use an ackrc
file instead.  If you have ACK_OPTIONS set, ack will give a warning.

Lots of internal speedups.


2.999_02 Mon Jan  8 23:03:42 CST 2018
=====================================
[ENHANCEMENTS]
Added an optimization to make ack only do a line-by-line search of a
file if there's a match somewhere in the file.  This gives ack a 20-30%
in timings of common cases.


2.999_01 Mon Jan  1 22:11:17 CST 2018
=====================================
[ENHANCEMENTS]
Added --pod as a filetype, recognizing .pod as its extension.  This is
Perl's POD (Plain Old Documentation) format.

Added --markdown as a filetype, recognizing .md and .markdown as
extensions.

--pager is no longer allowed in a project .ackrc file.  --match and
--output are not allowed in any .ackrc file.

ack 3's new features are listed below for now.

[FIXES]
--lines had some mutex options that were not getting checked.  Now,
--lines is mutex with --passthru, --match and all context options.


=============================
# Release notes for ack 3.0.0
=============================

# New features

ack 3 is a greplike tool optimized for searching large code trees.

Improvements over ack 2 include:

* Improved `-w` option.

* `-w` option will warn if your pattern does not lend itself to
word matching.

* `-i`, `-I` and `--smart-case`

* `--proximate=N` option

* Added `--pod` and `--markdown`.

* Added `GNUmakefile` to the list of makefile specs.

* Added `-S` as a synonym for `--smart-case`.

# Bug fixes

* Column numbers were not getting colorized in the output.  Added
`--color-colno` option and `ACK_COLOR_COLNO` environment variable.

* A pattern that wanted whitespace at the end could match the
linefeed at the end of a line.  This is no longer possible.

# Incompatibilities with ack 2

## ack 3 requires Perl 5.10.1

ack 2 only needed Perl 5.8.8.  This shouldn't be a problem since 5.10.1
has been out since 2009.

## ack 3 no longer highlights capture groups.

ack 2 would highlight your capture groups.  For example,

    ack '(set|get)_foo_(name|id)'

would highlight the `set` or `get`, and the `name` or `id`, but not the
full `set_user_id` that was matched.

This feature was too confusing and has been removed.  Now, the entire
matching string is highlighted.

## ack 3's --output allows fewer special variables

In ack 2, you could put any kind of Perl code in the `--output`
option and it would get `eval`uated at run time, which would let
you do tricky stuff like this gem from Mark Fowler
(http://www.perladvent.org/2014/2014-12-21.html):

    ack --output='$&: @{[ eval "use LWP::Simple; 1" && length LWP::Simple::get($&) ]} bytes' \
                    'https?://\S+' list.txt
    http://google.com/: 19529 bytes
    http://metacpan.org/: 7560 bytes
    http://www.perladvent.org/: 5562 bytes

This has been a security problem in the past, and so in ack 3 we
no longer `eval` the contents of `--output`.  You're now restricted
to the following variables: `$1` thru `$9`, `$_`, `$.`, `$&`, ``$` ``,
`$'` and `$+`.  You can also embed `\t`, `\n` and `\r` ,
and `$f` as stand-in for `$filename` in `ack2 --output` .
2020-02-03 01:57:20 +00:00
..
aha (textproc/aha) Updated from 0.4.10.6 to 0.5 2019-11-12 14:04:33 +00:00
aiksaurus all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ansifilter
antiword
artha all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
asciidir Added textproc/asciidir version 0.6 2018-07-26 14:27:23 +00:00
asciidoc PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
aspell aspell: Update to 0.68.8 2019-10-19 10:43:28 +00:00
aspell-af Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-am Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ar all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
aspell-ast Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-az borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-be Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-bg all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
aspell-bn all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
aspell-br
aspell-ca
aspell-cs
aspell-csb mk: make BROKEN a list of lines, like PKG_FAIL_REASON 2019-11-04 17:47:29 +00:00
aspell-cy
aspell-da Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
aspell-de aspell-de: swiss was removed as an alias 2019-10-19 14:39:51 +00:00
aspell-de-alt Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-el
aspell-en aspell-en: Update to 2019.10.06.0 2019-10-19 10:45:56 +00:00
aspell-eo aspell-eo: Update to 2.1.20000225a.2 2019-10-19 11:12:13 +00:00
aspell-es
aspell-et Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-fa Add textproc/aspell-fa. 2019-10-19 13:38:43 +00:00
aspell-fi
aspell-fo mk: make BROKEN a list of lines, like PKG_FAIL_REASON 2019-11-04 17:47:29 +00:00
aspell-fr
aspell-fy borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-ga borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-gd borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-gl all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
aspell-grc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
aspell-gu all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
aspell-gv borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-he Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-hi Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-hil borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-hr Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-hsb Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-hu all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
aspell-hus Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-hy Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ia Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-id all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
aspell-is mk: make BROKEN a list of lines, like PKG_FAIL_REASON 2019-11-04 17:47:29 +00:00
aspell-it aspell-it: Update to 2.2_20050523.0 2019-10-19 11:15:49 +00:00
aspell-kn Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ku Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ky borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-la all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
aspell-lt Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-lv Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-mg Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-mi Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-mk Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ml Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-mn Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-mr Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ms Add textproc/aspell-ms. 2019-10-19 13:43:45 +00:00
aspell-mt Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-nb mk: make BROKEN a list of lines, like PKG_FAIL_REASON 2019-11-04 17:47:29 +00:00
aspell-nds aspell-nds: Fix installation (conflicts with aspell) 2019-10-24 20:47:14 +00:00
aspell-nl
aspell-nn Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ny borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-or Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-pa Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-pl
aspell-pt_BR aspell-pt_BR: Update to 20131030.12.0 2019-10-19 10:58:53 +00:00
aspell-pt_PT aspell-pt_PT: Update to 20190329.1.0 2019-10-19 11:01:25 +00:00
aspell-qu Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ro
aspell-ru
aspell-rw borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-sc aspell-sc: Comment out dead HOMEPAGE 2017-11-15 22:09:10 +00:00
aspell-sk aspell-sk: Update to 2.01.2 2019-10-19 11:08:31 +00:00
aspell-sl Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-sr all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
aspell-sv
aspell-sw Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-ta Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-te Sort PLIST files. 2018-01-01 22:29:15 +00:00
aspell-tet all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
aspell-tk borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-tl borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-tn borel.slu.edu is dead, update the links to point to aspell.net instead. 2019-07-06 19:12:47 +00:00
aspell-tr all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
aspell-uk
aspell-uz Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-vi Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-wa Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-yi Reset maintainer 2017-09-16 19:26:41 +00:00
aspell-zu Reset maintainer 2017-09-16 19:26:41 +00:00
aspic Add aspic 1.05 2018-06-15 13:15:26 +00:00
awf all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
bat Rename EFFECTIVE_MAKE_JOBS -> _MAKE_JOBS_N, suggested by gdt. 2020-01-19 18:20:45 +00:00
bibclean
biblook
bibparse textproc/bibparse: Install manpages into ${PKGMANDIR}. 2017-08-19 00:19:49 +00:00
bsdgrep-devel
btparse all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
c2html Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
cabocha all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
catdoc catdoc: fix sysconfdir for location of system-wide configuration file. 2019-07-10 11:12:16 +00:00
catdoc-tk textproc: align variable assignments 2019-11-04 21:43:32 +00:00
cawf
cdif Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
chasen all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
chasen-base all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
cityhash Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
cjose *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
cldr-emoji-annotation cldr-emoji-annotation: update to 35.12.14971.0. 2019-09-14 03:46:58 +00:00
cmark PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
cmark-gfm Import cmark-gfm-0.29.0.gfm.0 2020-01-15 06:29:58 +00:00
cmigemo textproc: align variable assignments 2019-11-04 21:43:32 +00:00
coccigrep all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
colorit
convertlit textproc: align variable assignments 2019-11-04 21:43:32 +00:00
CRF++ all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
crimson all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
crush-tools Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
csharp-xapian Reset PKGREVISIONS. Attempt to fix some PLISTs. 2019-08-02 21:28:53 +00:00
csvkit textproc: align variable assignments 2019-11-04 21:43:32 +00:00
csvtomd PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
csvutils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
cwdiff textproc: align variable assignments 2019-11-04 21:43:32 +00:00
dadadodo Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
db2latex all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
dblatex all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
detex all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
dict-client textproc/dict-client: dump pkgrevision due to ABI change in libmaa 2018-02-28 21:02:17 +00:00
dict-dictionaries use ${SETENV} ${MAKE_ENV} to avoid locale errors from sort 2018-04-02 17:05:18 +00:00
dict-mueller7 textproc: align variable assignments 2019-11-04 21:43:32 +00:00
dict-server textproc: align variable assignments 2019-11-04 21:43:32 +00:00
dictem
diction all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
diffsplit Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
diffstat Use https for all invisible-island.net HOMEPAGEs. 2019-06-22 11:37:13 +00:00
dikt *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
discount discount: Simplify distfile handling 2019-06-11 10:03:07 +00:00
docbook all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
docbook-simple docbok-simple: follow redirect 2018-03-18 08:05:15 +00:00
docbook-website all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
docbook-xml all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
docbook-xsl all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
docbook2mdoc textproc/docbook2mdoc: Update to version 1.1.0 (from wip) 2019-08-25 17:53:58 +00:00
docbook2odf textproc: align variable assignments 2019-11-04 21:43:32 +00:00
doclifter PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
dsssl-docbook-modular all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
dtdparse all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
DWB
eb Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
eblook textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ebook-tools all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ebview all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
emacs-dict-client all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
emacs-muse textproc: align variable assignments 2019-11-04 21:43:32 +00:00
enca
enchant all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
enchant2 textproc: align variable assignments 2019-11-04 21:43:32 +00:00
epubcheck textproc: align variable assignments 2019-11-04 21:43:32 +00:00
epubpreflight textproc: align variable assignments 2019-11-04 21:43:32 +00:00
erlang-fast_xml textproc/erlang-fast_xml: Update to 1.1.32. 2018-07-20 09:04:35 +00:00
erlang-fast_yaml textproc/erlang-fast_yaml: Update to 1.0.15. 2018-07-20 09:06:04 +00:00
erlang-jiffy Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
erlang-p1_xmlrpc Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
erlang-stringprep textproc/erlang-stringprep: Update to 1.0.12. 2018-07-20 09:14:29 +00:00
expat textproc: align variable assignments 2019-11-04 21:43:32 +00:00
expatobjc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ezxml all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
FlightCrew *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
flyspell Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
fmtlib fmtlib: updated to 6.1.2 2019-12-11 18:43:34 +00:00
fop textproc: align variable assignments 2019-11-04 21:43:32 +00:00
freepwing Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
freexl freexl: updated to 1.0.5 2018-02-27 06:48:22 +00:00
gdome2
glimpse textproc: align variable assignments 2019-11-04 21:43:32 +00:00
gnome-doc-utils textproc: align variable assignments 2019-11-04 21:43:32 +00:00
gnome-spell *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
gnome-subtitles all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
go-chroma Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-diff Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-glob Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-inflect Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-md2man Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-mmark Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-prose Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-regexp2 Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-runewidth Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-sentences Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-tablewriter Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
go-text Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
grep grep: Avoid conflict with sys/limits.h guard. 2019-12-19 09:36:33 +00:00
grepcidr all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
groff all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
groonga all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
gsed gsed: update to 4.8. 2020-01-27 10:37:33 +00:00
gspell gspell: update to 1.8.3. 2020-01-27 10:49:18 +00:00
gtk-doc gtk-doc: update to 1.32. 2019-11-13 21:17:47 +00:00
gtkspell all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gtkspell3 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
guile-commonmark Add textproc/guile-commonmark version 0.1.2 2019-11-26 16:52:25 +00:00
guile-json textproc/guile-json: Update to version 3.3.0 2019-12-10 18:16:56 +00:00
guile-syntax-highlight Add textproc/guile-syntax-highlight version 0.1 2019-11-13 13:19:39 +00:00
gutcheck all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
GutenMark all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
GutenMark-words all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
halibut Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
harmony Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
heirloom-bdiff
heirloom-bfs
heirloom-col
heirloom-comm
heirloom-cut
heirloom-diff3
heirloom-doctools all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
heirloom-ed
heirloom-fmt
heirloom-fold
heirloom-grep
heirloom-head
heirloom-join
heirloom-line
heirloom-nl
heirloom-paste
heirloom-pg
heirloom-pr
heirloom-sdiff
heirloom-sed
heirloom-tail
heirloom-tr
heirloom-ul
heirloom-uniq
heirloom-wc
helpdeco *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
hevea Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
hfstospell Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
highlight *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
highway
hre all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
hs-annotated-wl-pprint Import annotated-wl-pprint-0.7.0 2020-01-19 09:42:01 +00:00
hs-ansi-wl-pprint Import ansi-wl-pprint-0.6.9 from wip 2020-01-19 09:47:10 +00:00
hs-attoparsec Remove dependency on devel/hs-text 2020-01-11 09:31:04 +00:00
hs-blaze-html Remove dependency on devel/hs-text 2020-01-11 11:15:53 +00:00
hs-blaze-markup Remove dependency on devel/hs-text 2020-01-11 11:15:53 +00:00
hs-case-insensitive Remove dependency on devel/hs-text 2020-01-11 11:15:53 +00:00
hs-cgrep Remove a patch: it's no longer needed 2020-01-16 11:38:40 +00:00
hs-cheapskate Import cheapskate-0.1.1.1 2020-01-19 12:08:08 +00:00
hs-cmark-gfm Import hs-cmark-gfm-0.29.0.gfm.0 2020-01-15 06:36:28 +00:00
hs-css-text Import css-text-0.1.3.0 2020-01-19 10:24:14 +00:00
hs-doclayout Import doclayout-0.3 2020-01-15 06:45:04 +00:00
hs-doctemplates Import doctemplates-0.8.1 2020-01-15 11:35:54 +00:00
hs-edit-distance Import edit-distance-0.2.2.1 2020-01-18 23:13:39 +00:00
hs-Glob Import Glob-0.10.0 2020-01-15 12:15:10 +00:00
hs-haddock-library Import haddock-library-1.8.0 2020-01-15 12:25:43 +00:00
hs-hscolour Update to hscolour-1.24.4 2020-01-02 14:25:33 +00:00
hs-hslua-module-text Import hslua-module-text-0.2.1 2020-01-15 15:51:22 +00:00
hs-HsYAML Import HsYAML-0.2.1.0 2020-01-15 07:03:50 +00:00
hs-hxt Import hxt-9.3.1.18 from wip 2020-01-17 16:21:37 +00:00
hs-hxt-charproperties Import hxt-charproperties-9.4.0.0 from wip 2020-01-17 15:46:39 +00:00
hs-hxt-regex-xmlschema Import hxt-regex-xmlschema-9.2.0.3 2020-01-17 15:52:41 +00:00
hs-hxt-unicode Import hxt-unicode-9.2.0.4 from wip 2020-01-17 15:59:25 +00:00
hs-jira-wiki-markup Re-enable building bin/jira-wiki-markup 2020-01-17 07:14:22 +00:00
hs-libyaml Import libyaml-0.1.1.1 2020-01-11 11:04:31 +00:00
hs-megaparsec Import megaparsec-8.0.0 2020-01-19 15:01:24 +00:00
hs-pandoc-types Update to pandoc-types-1.20 2020-01-11 10:05:46 +00:00
hs-polyparse Remove dependency on devel/hs-text 2020-01-11 11:15:53 +00:00
hs-regex-base Remove dependency on devel/hs-mtl and devel/hs-text 2020-01-11 09:10:32 +00:00
hs-regex-pcre Remove dependency on devel/hs-fail 2020-01-11 09:22:13 +00:00
hs-regex-posix Update to regex-posix-0.96.0.0 2020-01-02 15:03:19 +00:00
hs-regex-tdfa Import regex-tdfa-1.3.1.0 from wip 2020-01-19 23:45:50 +00:00
hs-skylighting Import skylighting-0.8.3 2020-01-17 17:32:25 +00:00
hs-skylighting-core Import skylighting-core-0.8.3 2020-01-17 17:09:07 +00:00
hs-stringsearch Fix build with GHC 8.8 2020-01-08 18:21:30 +00:00
hs-tagsoup Remove dependency on devel/hs-text 2020-01-11 11:15:53 +00:00
hs-texmath Update to texmath-0.12 2020-01-11 10:21:27 +00:00
hs-unicode-show Import unicode-show-0.1.0.4 2020-01-03 06:44:47 +00:00
hs-unicode-transforms Import unicode-transforms-0.3.6 2020-01-17 18:49:18 +00:00
hs-xml Remove dependency on devel/hs-text 2020-01-11 09:19:08 +00:00
hs-yaml Update to yaml-0.11.2.0 2020-01-11 11:08:49 +00:00
html all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
html2text textproc: align variable assignments 2019-11-04 21:43:32 +00:00
html2wml Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
hugs-HaXml Follow some http redirects. 2017-08-16 20:21:03 +00:00
hunspell Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
hunspell-af_ZA
hunspell-ar
hunspell-bg_BG
hunspell-ca_ES
hunspell-cs_CZ
hunspell-cy_GB
hunspell-da_DK
hunspell-de textproc: align variable assignments 2019-11-04 21:43:32 +00:00
hunspell-el_GR
hunspell-en_CA
hunspell-en_GB Comment out dead sites. 2017-08-16 20:45:30 +00:00
hunspell-en_NZ
hunspell-en_US
hunspell-en_ZA
hunspell-es_ES
hunspell-es_MX
hunspell-fo_FO
hunspell-fr_FR Comment out dead sites. 2017-08-16 20:45:30 +00:00
hunspell-fy_NL
hunspell-ga_IE
hunspell-he_IL
hunspell-hr_HR
hunspell-hu_HU all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
hunspell-id_ID
hunspell-it_IT all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
hunspell-lt_LT
hunspell-lv_LV
hunspell-mg_MG
hunspell-ms_MY
hunspell-nl_NL
hunspell-ny_MW
hunspell-pl_PL
hunspell-ru_RU
hunspell-sk_SK
hunspell-sv_SE
hyperestraier all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
hyphen all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
icu icu: python is only used for the build system 2019-12-28 17:23:52 +00:00
igor Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
iksemel *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
intltool Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
ipadic all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
isearch textproc/isearch: fix location of HTML documentation 2019-10-12 21:14:22 +00:00
iso-codes PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
iso8879 Follow some http redirects. 2017-08-16 20:21:03 +00:00
iso12083 Sort PLIST files. 2018-01-01 22:29:15 +00:00
ispell textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ispell-ca ispell-ca: comment out dead sites 2017-09-19 08:25:23 +00:00
ispell-de all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ispell-emacs
ispell-en_GB
ispell-es
ispell-fr all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ispell-ga
ispell-gl all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ispell-ku all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ispell-lt textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ispell-pl all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ispell-pt_BR Reset maintainer 2017-09-16 19:26:41 +00:00
ispell-ro Sort PLIST files. 2018-01-01 22:29:15 +00:00
ispell-ru
ispell-ru-io
ispell-sk
ispell-sv all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
itex2MML Follow some http redirects. 2017-08-16 20:21:03 +00:00
itstool PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
ja-grep all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ja-groff all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ja-sed all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
jansson jansson: updated to 2.12 2018-12-09 20:33:12 +00:00
java-mecab
java-native-hyperestraier
java-pure-hyperestraier
jdom
jing
jo jo: fix PLIST; bump revision 2019-12-25 12:49:27 +00:00
jrep
json-c json-c: Fix build with clang10svn 2019-09-24 16:08:29 +00:00
json-glib json-glib: remove now redundant test target 2020-01-02 16:52:28 +00:00
json-schema Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
json-yaml json-yaml: Update to 1.2.1 2020-01-01 01:19:00 +00:00
json2tsv all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
jsoncpp jsoncpp: updated to 1.9.2 2019-11-27 22:25:21 +00:00
kakasi Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
kapidox kf5: update to frameworks 5.66 2020-01-29 11:49:22 +00:00
kbanner
kcodecs kf5: update to frameworks 5.66 2020-01-29 11:49:22 +00:00
kcompletion kf5: update to frameworks 5.66 2020-01-29 11:49:22 +00:00
kpimtextedit kpimtextedit: update kde release service to 19.12.1 2020-02-02 03:06:07 +00:00
latex2html all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
LDoc textproc: align variable assignments 2019-11-04 21:43:32 +00:00
libclucene all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libcroco libcroco: Update to 0.6.13 2019-09-16 13:25:21 +00:00
libcsv all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libexttextcat Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libfastjson *: update email for fhajny 2018-12-15 21:12:18 +00:00
libhighlight Update to 3.54 (during the freeze, for the bugfixes). From the changelog: 2019-12-18 01:34:33 +00:00
liblinebreak all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
liblrdf *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
libnxml all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libodfgen all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libpinyin Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libplist all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libunicode Use https for pango.org. 2019-07-11 09:28:44 +00:00
libuninameslist Add textproc/libuninameslist 2019-09-02 13:40:04 +00:00
libunistring all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libxls textproc/libxls: Update to 1.5.2 2019-11-16 13:23:03 +00:00
libxlsxwriter libxlsxwriter: Update to 0.9.4 2020-01-28 14:32:48 +00:00
libxml Sort PLIST files. 2018-01-01 22:29:15 +00:00
libxml++ all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libxml++1 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libxml2 Apply upstream patch for CVE-2020-7595. 2020-01-24 10:40:36 +00:00
libxslt libxslt: update to 1.1.34. 2019-11-06 13:23:45 +00:00
libyaml all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
link-grammar all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lit2epub all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
lout all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
lowdown lowdown: update to 0.4.6. 2019-12-12 20:00:08 +00:00
lq-sp all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lua-cjson Follow some http redirects. 2017-08-16 20:21:03 +00:00
lua-expat all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lua-lustache all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lua-slnunicode
lua-xapian Update xapian bindings for 1.4.6. 2018-07-06 16:23:11 +00:00
lucene++ *: Recursive revbump from devel/boost-libs 2020-01-12 20:19:52 +00:00
makeindexk all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
makeztxt all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
man2html all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
mandoc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
marisa textproc: align variable assignments 2019-11-04 21:43:32 +00:00
Markdown textproc: align variable assignments 2019-11-04 21:43:32 +00:00
markdown-mode Follow some redirects. 2017-09-03 08:53:04 +00:00
markdown2social textproc: align variable assignments 2019-11-04 21:43:32 +00:00
mecab Comment out dead sites. 2017-08-16 20:45:30 +00:00
mecab-base mecab requires libiconv. 2017-08-28 19:04:42 +00:00
mecab-ipadic
mecab-jumandic
mecab-naistdic
mendexk all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
metauml all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
migemo textproc: align variable assignments 2019-11-04 21:43:32 +00:00
migemo-elisp pkgsrc: bump PKGREVISION by changing Ruby default version 2018-02-25 12:25:47 +00:00
miller miller: Add flex as tool dependency 2019-03-28 23:52:09 +00:00
multimarkdown all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mxml textproc: align variable assignments 2019-11-04 21:43:32 +00:00
mythes all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
namazu Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
nbsed all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ndtpd Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
nxml-mode emacs22*, emacs23*, emacs24*: remove unmaintained emacs versions 2017-09-29 12:40:26 +00:00
o3read
ocaml-csv textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ocaml-easy-format Updated textproc/ocaml-easy-format to version 1.3.2. 2020-01-24 16:31:53 +00:00
ocaml-expat textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ocaml-jsonm Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
ocaml-markup textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ocaml-text textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ocaml-textutils Removed comments in ocaml Makefiles for now-added dependencies 2019-03-25 09:38:57 +00:00
ocaml-tyxml all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ocaml-uchar textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ocaml-uutf Updated package textproc/ocaml-uutf to version 1.0.2. 2019-03-05 17:06:52 +00:00
ocaml-xml-light Added textproc/ocaml-xml-light, an XML parser for OCaml. 2018-11-29 10:45:37 +00:00
OdfConverter all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
odt2tex *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
oniguruma oniguruma: updated to 6.9.4 2019-12-11 18:50:46 +00:00
openjade all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
opensp all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ots Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
p5-ack Update to 3.3.1. From the changelog: 2020-02-03 01:57:20 +00:00
p5-Alien-Hunspell textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Alien-Libxml2 Add p5-Alien-Libxml2 version 0.11. 2019-11-07 10:21:43 +00:00
p5-Biblio-EndnoteStyle Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-cabocha Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-CAM-PDF Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Convert-ASCII-Armour Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Convert-ASN1 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Convert-BER Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Convert-PEM Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Convert-Translit Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Cz-Cstools Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Data-FormValidator Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Data-HexDump Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Dist-Zilla-Plugin-PodWeaver textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Encode Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Encode-Detect Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Encode-EUCJPASCII Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Encode-HanExtra textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Encode-JIS2K Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Encode-Locale Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Feed-Find Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-File-ReadBackwards Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Filter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-FormValidator-Simple textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-highlight textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-HTML-FormatText-WithLinks p5-HTML-FormatText-WithLinks: remove PLIST since PERL5_PACKLIST is in use 2019-09-02 12:13:31 +00:00
p5-HTML-FormatText-WithLinks-AndTables Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-iCal-Parser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Kwalify Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-libxml Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-EN-Fathom p5-Lingua-EN-Fathom: remove PLIST since PERL5_PACKLIST is in use 2019-09-02 12:19:15 +00:00
p5-Lingua-EN-FindNumber textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Lingua-EN-Inflect (textproc/p5-Lingua-EN-Inflect) Updated to 1.904 2019-11-12 13:18:26 +00:00
p5-Lingua-EN-Inflect-Number textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Lingua-EN-Inflect-Phrase textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Lingua-EN-Number-IsOrdinal Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-EN-Numbers-Ordinate Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-EN-Sentence Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-EN-Syllable p5-Lingua-EN-Syllable: remove PLIST since PERL5_PACKLIST is in use; update HOMEPAGE 2019-09-02 12:17:05 +00:00
p5-Lingua-EN-Tagger (textproc/p5-Lingua-EN-Tagger) Updated to 0.31 2019-11-12 13:22:42 +00:00
p5-Lingua-EN-Words2Nums Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Identify Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Preferred Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-PT-Stemmer Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Stem Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Stem-Fr Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Stem-It Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Stem-Ru Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Stem-Snowball textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Lingua-Stem-Snowball-Da Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Lingua-Translit Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-List-Compare Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Locale-Maketext-Gettext Update to 1.30 2019-11-04 14:42:06 +00:00
p5-marisa Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-mecab Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-mobiperl Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-MultiMarkdown Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-native-hyperestraier textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Net-Dict Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-IDN-Encode Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Number-Format Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Number-Spell Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-ODF-lpOD Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-PDF Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-PDF-API2 Update to 2.036 2019-09-18 14:25:01 +00:00
p5-PDF-Create Update to 1.46 2019-11-04 14:21:00 +00:00
p5-PDF-Reuse Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-PDF-Reuse-Barcode Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-PDF-Table Update to 0.11.0 2019-09-18 14:29:41 +00:00
p5-Pod-Abstract Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Coverage Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Coverage-TrustPod Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Elemental textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Pod-Elemental-PerlMunger Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Escapes Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Eventual Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Markdown Update to 3.200 2019-11-04 14:13:08 +00:00
p5-Pod-Parser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-POM Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Readme Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Simple Update to 3.40 2019-11-04 13:15:37 +00:00
p5-Pod-Spell Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Spell-CommonMistakes Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Strip textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Pod-Tests Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Tree Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Pod-Weaver textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-POD2-Base Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-podlators Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-PPI-HTML Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-PPIx-QuoteLike Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Publican Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Regexp-Common Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Regexp-Copy Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-sdf Update to 2.001, noticed via repology. From the changelog: 2019-09-16 06:50:28 +00:00
p5-Search-Indexer Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Search-Xapian Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-SGMLS Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Snowball-Norwegian Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Snowball-Swedish Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-Approx Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-BufferStack Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-CamelCase Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-Compare-ConstantTime (textproc/p5-String-Compare-ConstantTime) Updated to 0.321 2019-11-12 13:41:12 +00:00
p5-String-CRC32 (textproc/p5-String-CRC32) Updated to 1.8 2019-11-12 13:39:02 +00:00
p5-String-Errf textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-String-Expand textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-String-Flogger Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-Formatter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-Koremutake Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-RewritePrefix Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-ShellQuote Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-Similarity Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-ToIdentifier-EN textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-String-Trim Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-Truncate Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Swim Update to 0.1.48. From the changelog: 2020-01-10 12:25:23 +00:00
p5-Syntax-Highlight-Engine-Kate Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Syntax-SourceHighlight *: Recursive revbump from devel/boost-libs 2020-01-12 20:19:52 +00:00
p5-Template-Declare Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Template-Plugin-Autoformat Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Template-Plugin-CSV Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Template-Plugin-Latex Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Template-Plugin-Number-Format Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Template-Plugin-YAML Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Template-Tiny Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Test-YAML Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Affixes Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Aligner Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Aspell Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Autoformat (textproc/p5-Text-Autoformat) Updated to 1.75 2019-11-12 13:45:56 +00:00
p5-Text-Balanced Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-BibTeX all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
p5-Text-Brew Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-CharWidth Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-ChaSen Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Context-EitherSide Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-CSV Update to 2.00 2019-09-13 14:21:34 +00:00
p5-Text-CSV-Encoded Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-CSV-Hash all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
p5-Text-CSV-Simple Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-CSV_XS (textproc/p5-Text-CSV_XS) Updated to 1.40 2019-11-12 13:52:19 +00:00
p5-Text-DelimMatch Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-DHCPLeases Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Diff Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Diff-HTML Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Diff-Parser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-DoubleMetaphone Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Emoticon textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-Emoticon-MSN textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-FindIndent textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-Format Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-German Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Glob Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Hunspell textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-Kakasi Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-LevenshteinXS Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Markdown textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-Markdown-Discount Update to 0.12. From the changelog: 2020-01-21 10:28:50 +00:00
p5-Text-Microformat textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-MicroTemplate Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-MultiMarkdown Markdown is a text-to-HTML filter; it translates an easy-to-read 2019-08-31 19:55:58 +00:00
p5-Text-Ngram Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Nimble Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Patch Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-PDF Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Quoted Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-RecordParser textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-Reflow Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Reform Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-RewriteRules Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Roman Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Sass Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Shellwords Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-SimpleTable textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-SimpleTable-AutoWidth textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-Soundex Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-SpellChecker Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Table textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-Text-Tabs+Wrap Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-TabularDisplay Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Template (textproc/p5-Text-Template) Updated 1.55 to 1.58 2019-11-12 13:58:52 +00:00
p5-Text-Textile Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Trac Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Typography Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Unaccent Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Unidecode Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-vCard Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-vFile-asData Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-VisualWidth-PP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-WagnerFischer Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-WikiCreole Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-WikiFormat Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-WrapI18N Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Wrapper Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Xslate Update to 3.5.7 2020-01-08 13:55:32 +00:00
p5-Text-xSV Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Tie-Handle-Offset Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Unicode-CaseFold Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Unicode-LineBreak Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Win32-ShellQuote Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Xapian Reset PKGREVISION for xapian update. 2019-12-17 03:53:47 +00:00
p5-XML-Atom Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Atom-SimpleFeed Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Atom-Stream textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-AutoWriter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Bare Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Catalog Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Checker Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Clean textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-Compile Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Compile-Cache textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-Compile-SOAP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Compile-SOAP12 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Compile-Tester Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Descent textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-DOM Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Dumper Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Elemental Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Encoding Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Entities Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Feed Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-FeedPP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Filter-BufferText textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-Filter-DetectWS Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Filter-DOMFilter-LibXML textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-Filter-Reindent Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Filter-SAXT Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Generator Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Grove Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Handler-Trees Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Handler-YAWriter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-LibXML Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-LibXML-Iterator Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-LibXML-Simple Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-LibXSLT Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-NamespaceSupport Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Node Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-NodeFilter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Parser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Parser-Lite Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Parser-Lite-Tree Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Rabbit textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-RAI Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-RegExp Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-RSS Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-RSS-Parser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-SAX Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-SAX-Base Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-SAX-Expat Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-SAX-ExpatXS Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-SAX-Writer Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-SemanticDiff textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-Simple Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Stream textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-Tidy textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-Tiny Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-TokeParser textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-TreeBuilder textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-TreePP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Twig Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-UM Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Writer Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-Writer-String Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-XPath Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-XPathEngine textproc: align variable assignments 2019-11-04 21:43:32 +00:00
p5-XML-XQL Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-XML-XSLT all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
p5-XML-XUpdate-LibXML Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-yamcha Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-YAML p5-YAML: updated to 1.29 2019-08-23 11:26:43 +00:00
p5-YAML-LibYAML Update to 0.80 2019-09-13 14:16:06 +00:00
p5-YAML-PP Initial import of p5-YAML-PP, a modern, modular YAML processor. It aims 2020-01-23 16:14:47 +00:00
p5-YAML-Syck Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-YAML-Tiny Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
par
pdfgrep *: recursive bump for poppler update to 0.82.0 2019-11-07 12:38:03 +00:00
pear-Console_Table textproc/pear-Console_Table: update to 1.3.1 2018-02-28 16:03:31 +00:00
pear-File_Find
php-enchant
php-excel Reset maintainer 2017-09-16 19:26:41 +00:00
php-intl Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
php-json lang/php: reset PKGREVISION 2018-01-05 03:14:52 +00:00
php-mecab textproc: align variable assignments 2019-11-04 21:43:32 +00:00
php-pspell
php-sphinx
php-wddx Drop php71 support 2019-12-16 16:30:13 +00:00
php-xapian
php-xsl pkgsrc: reset PKGREVISION 2017-10-27 08:49:00 +00:00
php-yaml Update to php yaml-2.0.4. 2019-04-27 22:40:59 +00:00
po-mode all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
po4a po4a: update to 0.57. 2019-11-13 21:23:23 +00:00
pod2mdoc Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
postgresql-autodoc textproc: align variable assignments 2019-11-04 21:43:32 +00:00
psgml-mode Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
pugixml pugixml: updated to 1.10 2019-09-15 11:38:28 +00:00
pxp Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
py-4Suite all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-acora py-acora: updated to 2.2 2019-08-26 07:32:57 +00:00
py-alabaster py-alabaster: updated to 0.7.12 2018-10-07 10:20:22 +00:00
py-antlr4 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-anyjson Follow some redirects. 2017-09-03 08:53:04 +00:00
py-babelfish
py-biplist py-biplist: updated to 1.0.3 2017-12-17 16:17:54 +00:00
py-cabocha Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-cElementTree all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-cjson py-cjson: update to 1.2.1 2017-09-28 16:21:21 +00:00
py-cmTemplate Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-color Reset maintainer 2017-09-16 19:26:41 +00:00
py-colored py-colored: updated to 1.4.2 2019-12-11 19:04:15 +00:00
py-colour py-colour: updated to 0.1.5 2017-11-24 12:46:42 +00:00
py-creole py-creole: updated to 1.3.2 2018-03-01 08:10:35 +00:00
py-css-parser textproc/py-css-parser: import py-css-parser-1.0.4 2019-02-14 11:57:20 +00:00
py-cssselect py-cssselect: updated to 1.1.0 2019-08-12 20:00:45 +00:00
py-cssselect2 py-cssselect2: updated to 0.2.2 2019-09-12 15:22:36 +00:00
py-cssutils
py-deepdiff py-deepdiff: updated to 4.0.7 2019-07-13 09:21:59 +00:00
py-defusedxml py-defusedxml: updated to 0.6.0 2019-04-29 10:37:14 +00:00
py-dicttoxml Add py-dicttoxml-1.7.4: 2017-09-29 13:39:59 +00:00
py-diff-match-patch The Diff Match and Patch libraries offer robust algorithms to perform the 2017-10-17 11:34:36 +00:00
py-docutils all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
py-docx py-docx: updated to 0.8.10 2019-01-09 08:38:40 +00:00
py-dominate py-dominate: updated to 2.4.0 2019-09-06 13:34:21 +00:00
py-ejson Reset maintainer 2017-09-16 19:26:41 +00:00
py-elementpath py-elementpath: updated to 1.4.0 2020-01-08 21:32:47 +00:00
py-elementtree all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-empy textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-enchant py-enchant: update to 2.0.0. 2019-07-20 22:56:54 +00:00
py-eradicate py-eradicate: updated to 1.0 2019-01-22 10:44:10 +00:00
py-Excelerator textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-expat py-expat: removed redundant PY_PATCHPLIST 2020-01-08 21:19:55 +00:00
py-feedparser
py-ftfy Reset maintainer 2017-09-16 19:26:41 +00:00
py-generateDS all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-gnosis-utils Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-guessit py-guessit: updated to 3.0.4 2019-06-15 19:04:24 +00:00
py-HappyDoc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
py-html-sanitizer py-html-sanitizer: updated to 1.6.4 2019-02-12 16:39:34 +00:00
py-html2text Update to 2020.1.16. From the changelog: 2020-01-17 18:14:49 +00:00
py-html2text-2019.8.11 Re-add the last version of py-html2text that supports Python 2.7, 2019-10-08 18:37:47 +00:00
py-html5-parser py-html5-parser: updated to 0.4.9 2019-11-05 08:12:52 +00:00
py-html5lib py-html5lib: updated to 1.0.1 2018-02-26 08:24:42 +00:00
py-humanize Follow some redirects. 2017-09-04 18:08:18 +00:00
py-inflection
py-iniparse textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-isc_dhcp_leases Initial import of textproc/py-isc_dhcp_leases 2019-01-06 01:48:50 +00:00
py-jade py-jade: added version 4.0.0 2017-12-18 11:09:14 +00:00
py-jellyfish py-jellyfish: updated to 0.7.2 2020-01-03 08:37:56 +00:00
py-jinja2 py-jinja2: updated to 2.11.1 2020-02-01 20:31:28 +00:00
py-jmespath py-jmespath: updated to 0.9.4 2019-02-25 09:04:55 +00:00
py-jsbeautifier py-jsbeautifier: updated to 1.10.2 2019-08-29 04:58:29 +00:00
py-jsonlib textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-jsonlib3
py-jsonpickle all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
py-jsonref py-jsonref: updated to 0.2 2018-11-20 11:52:43 +00:00
py-jsonrpclib textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-jsonschema py-jsonschema: updated to 3.2.0 2019-12-03 16:50:59 +00:00
py-JWT py-JWT: updated to 1.7.1 2018-12-10 09:02:58 +00:00
py-jxmlease
py-Levenshtein
py-libxml2 libxml2: updated to 2.9.9 2019-01-09 19:09:02 +00:00
py-libxslt py-libxslt: reset PKGREVISION after update 2019-11-06 13:24:03 +00:00
py-loremipsum textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-lxml py-lxml: updated to 4.5.0 2020-01-30 19:42:47 +00:00
py-m2r py-m2r: updated to 0.2.1 2018-10-14 12:10:47 +00:00
py-manuel py-manuel: added version 1.10.1 2019-02-12 09:10:31 +00:00
py-marisa py-marisa: use PYTHON_VERSIONS_ACCEPTED 2019-04-28 07:12:34 +00:00
py-markdown py-markdown: updated to 3.1.1 2019-05-21 08:26:21 +00:00
py-markdown-math textproc/py-markdown-math: initial import 2019-03-01 04:26:05 +00:00
py-markdown2 py-markdown2: remove patch after update 2019-06-06 05:38:51 +00:00
py-markovify textproc/py-markovify: Fix github link to https. 2019-10-18 09:29:16 +00:00
py-markups textproc/py-markups: initial import 2019-03-01 22:07:19 +00:00
py-markupsafe py-markupsafe: Update to 1.1.1. 2019-02-25 16:27:24 +00:00
py-mecab Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-mistune py-mistune: updated to 0.8.4 2018-10-14 12:09:56 +00:00
py-mkdocs py-mkdocs: updated to 1.0.4 2018-10-03 10:33:25 +00:00
py-mkdocs-bootstrap Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
py-mkdocs-bootswatch Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
py-natsort py-natsort: updated to 6.2.0 2019-11-14 10:06:56 +00:00
py-nltk all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-numpydoc Switch sphinx to versioned deps. 2019-10-21 21:55:03 +00:00
py-odfpy py-odfpy: updated to 1.4.0 2018-12-04 13:25:59 +00:00
py-openpyxl py-openpyxl: updated to 2.6.3 2019-08-20 07:10:58 +00:00
py-pallets-sphinx-themes py-pallets-sphinx-themes: updated to 1.2.3 2020-01-03 12:45:10 +00:00
py-pandocfilters py-pandocfilters: update to 1.4.2 2017-09-27 20:14:44 +00:00
py-parse py-parse: updated to 1.14.0 2020-01-03 11:46:26 +00:00
py-parse_type py-parse_type: updated to 0.5.2 2019-08-13 11:00:35 +00:00
py-pdf-parser Update to 0.6.8 2018-03-13 12:04:45 +00:00
py-pdfrw Fix LICENSE 2018-01-03 10:55:22 +00:00
py-phonenumbers py-phonenumbers: updated to 8.10.12 2019-05-29 21:05:10 +00:00
py-poyo py-poyo: updated to 0.5.0 2020-01-14 21:35:45 +00:00
py-precis-i18n py-precis-i18n: updated to 1.0.1 2019-09-05 10:43:10 +00:00
py-ptable py-ptable: added version 0.9.2 (py-prettytable fork) 2018-10-16 13:47:01 +00:00
py-pyaml py-pyaml: updated to 18.11.0 2018-11-20 13:27:04 +00:00
py-pybtex py-pybtex: updated to 0.22.2 2019-10-22 06:37:36 +00:00
py-pybtex-docutils py-pybtex-docutils: updated to 0.2.2 2019-10-22 06:45:05 +00:00
py-pygments all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-pyphen all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-pyquery py-pyquery: updated to 1.4.1 2019-10-26 22:55:24 +00:00
py-pysrt
py-pytoml py-pytoml: updated to 0.1.21 2019-08-12 07:28:46 +00:00
py-ramlfications Add py-ramlfications-0.1.9: 2017-09-29 21:20:16 +00:00
py-rdflib py-rdflib: mark as incompatible with Python 2.7 2019-09-25 07:27:45 +00:00
py-readme_renderer py-readme_renderer: updated to 24.0 2019-03-13 18:00:02 +00:00
py-rebulk py-rebulk: updated to 1.0.1 2019-08-29 09:52:45 +00:00
py-regex py-regex: updated to 2019.12.9 2019-12-12 13:17:48 +00:00
py-relatorio all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
py-rst2pdf py-rst2pdf: updated to 0.94.1 2019-06-10 15:39:44 +00:00
py-smartypants py-smartypants: added version 2.0.1 2019-04-03 14:49:27 +00:00
py-snowballstemmer py-snowballstemmer: updated to 2.0.0 2019-10-16 07:24:13 +00:00
py-sphinx py-sphinx: updated to 2.3.1 2019-12-31 10:38:46 +00:00
py-sphinx-autodoc-typehints Forget about Python 3.4 2019-05-02 09:27:09 +00:00
py-sphinx-issues Switch sphinx to versioned deps. 2019-10-21 21:55:03 +00:00
py-sphinx-rtd-theme Switch sphinx to versioned deps. 2019-10-21 21:55:03 +00:00
py-sphinx-theme-cloud py-sphinx-theme-cloud: updated to 1.10.0 2019-11-25 10:44:11 +00:00
py-sphinx1 py-sphinx1: added verison 1.8.5 2019-10-21 21:04:05 +00:00
py-sphinxcontrib-applehelp py-sphinxcontrib-applehelp: added version 1.0.1 2019-10-21 20:36:07 +00:00
py-sphinxcontrib-bibtex py-sphinxcontrib-bibtex: updated to 1.0.0 2019-10-22 06:48:26 +00:00
py-sphinxcontrib-devhelp py-sphinxcontrib-devhelp: added version 1.0.1 2019-10-21 20:40:11 +00:00
py-sphinxcontrib-htmlhelp py-sphinxcontrib-htmlhelp: added version 1.0.2 2019-10-21 20:48:34 +00:00
py-sphinxcontrib-jsmath py-sphinxcontrib-jsmath: added version 1.0.1 2019-10-21 20:47:07 +00:00
py-sphinxcontrib-newsfeed Switch sphinx to versioned deps. 2019-10-21 22:11:33 +00:00
py-sphinxcontrib-qthelp py-sphinxcontrib-qthelp: added version 1.0.2 2019-10-21 20:54:10 +00:00
py-sphinxcontrib-serializinghtml py-sphinxcontrib-serializinghtml: added versin 1.1.3 2019-10-21 20:50:34 +00:00
py-sphinxcontrib-websupport py-sphinxcontrib-websupport: updated to 1.1.2 2019-12-11 10:34:50 +00:00
py-tablib py-tablib: do not depend on pandas (is it optional); use TEST_DEPENDS 2018-07-06 11:15:23 +00:00
py-tabulate py-tabulate: updated to 0.8.6 2019-12-11 14:17:49 +00:00
py-Tempita Comment out dead sites. 2017-09-04 18:00:49 +00:00
py-text-unidecode py-text-unidecode: updated to 1.3 2019-09-02 07:03:48 +00:00
py-textile py-textile: updated to 3.0.4 2019-10-15 17:28:16 +00:00
py-tinycss2 Use https for pythonhosted.org. 2019-07-09 11:29:30 +00:00
py-toml py-toml: added version 0.10.0 2018-10-07 08:20:49 +00:00
py-ujson
py-Unidecode py-Unidecode: updated to 1.1.1 2019-07-02 10:21:09 +00:00
py-uritemplate py-uritemplate: update to 3.0.1. 2020-01-04 19:06:45 +00:00
py-validators py-validators: updated to 0.14.1 2019-12-05 09:42:43 +00:00
py-vobject py-vobject: updated to 0.9.6.1 2018-08-07 06:09:09 +00:00
py-webencodings
py-Whoosh py-Whoosh: update to 2.7.4 2017-10-07 11:07:39 +00:00
py-X all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
py-X2 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
py-xapian py-xapian: fix PLIST for Pythin 3.x/Sphinx 2; mark as self-conflicting 2019-12-25 12:21:30 +00:00
py-xlrd py-xlrd: update home page and a detail about minimum Python 2019-06-05 00:37:43 +00:00
py-xlsxwriter py-xlsxwriter: updated to 1.2.7 2019-12-29 16:54:30 +00:00
py-xlwt 1.3.0: 2017-08-31 09:31:08 +00:00
py-xml textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-xmlschema py-xmlschema: updated to 1.1.0 2020-01-24 08:17:06 +00:00
py-xmltodict Remove non-ASCII characters for Python 3.6. 2019-12-21 23:47:39 +00:00
py-yamcha Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-yaml py-yaml: updated to 5.3 2020-01-11 16:12:48 +00:00
qore-json-module *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
qore-xml-module *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
qore-yaml-module *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
qprint all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
qsubst
queequeg all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
R-brew R-brew: initial commit 2019-08-09 18:32:48 +00:00
R-cellranger Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-clisymbols R-clisymbols: initial commit 2019-08-09 18:28:57 +00:00
R-commonmark R-commonmark: initial commit 2019-08-09 18:31:59 +00:00
R-crosstalk textproc/R-crosstalk: import R-crosstalk-1.0.0 2020-01-13 09:59:23 +00:00
R-data.table Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-DT (textproc/R-DT) convert R-crosstalk from TEST_DEPENDS to DEPENDS 2020-02-01 02:54:55 +00:00
R-formatR Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-gsubfn Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-haven Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-highr Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-htmlTable Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-htmltools Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-jsonlite Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-markdown Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-openxlsx Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-readr Fix rpath in DSO, don't test on runtime due to $DESTDIR. 2019-12-18 12:42:04 +00:00
R-readstata13 R-readstata13: fix build on non-Linux non-mac. 2019-09-26 01:18:30 +00:00
R-readxl Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-rmarkdown (textproc/R-rmarkdown) Convert R-rtinytex from TEST_DEPENDS to DEPENDS 2020-02-01 02:24:03 +00:00
R-selectr (textproc/R-selectr) Added missing DEPENDS+= R-R6 and some TEST_DEPENDS+ 2020-02-01 04:50:30 +00:00
R-stringi Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-stringr Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-utf8 Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-xml2 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
R-yaml Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
rapidjson all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
raptor *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
raptor2 *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
rarian textproc/rarian: remove unnecessary patch-aa 2019-09-12 21:21:51 +00:00
rasqal *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
redland *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
regexx Follow some redirects. 2017-09-04 18:08:18 +00:00
regxml
rfcutil Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
ripgrep Rename EFFECTIVE_MAKE_JOBS -> _MAKE_JOBS_N, suggested by gdt. 2020-01-19 18:20:45 +00:00
rman rman: Honor CPPFLAGS and LDFLAGS. Bump. 2019-10-16 16:30:17 +00:00
robodoc textproc/robodoc: update to 4.99.6 2019-10-12 21:25:02 +00:00
rtf-tools textproc: align variable assignments 2019-11-04 21:43:32 +00:00
rtfm
rubber Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
ruby-albino
ruby-amrita all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-bluecloth Follow some redirects. 2017-09-04 18:08:18 +00:00
ruby-buftok
ruby-builder
ruby-cabocha
ruby-classifier-reborn textproc/ruby-classifier-reborn: update to 2.2.0 2018-03-14 15:40:07 +00:00
ruby-coderay Update ruby-coderay to 1.1.2. 2017-09-10 16:01:44 +00:00
ruby-diff-lcs Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-erubi textproc/ruby-erubi: update to 1.8.0 2019-01-20 14:46:38 +00:00
ruby-escape
ruby-fast-stemmer Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
ruby-fastercsv Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-feed-normalizer Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
ruby-ferret ruby-ferret: Fix build on SunOS C99. 2018-10-23 12:39:25 +00:00
ruby-fuzzyurl
ruby-gyoku textproc/ruby-gyoku: add version 1.3.1 package 2020-01-19 09:10:24 +00:00
ruby-haml textproc/ruby-haml: update to 5.0.4 2018-03-14 15:41:36 +00:00
ruby-hikidoc
ruby-hpricot Update wiki.github.com HOMEPAGEs. 2019-07-08 10:47:26 +00:00
ruby-html-parser
ruby-htree
ruby-itex2MML Follow some http redirects. 2017-08-16 20:21:03 +00:00
ruby-json all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ruby-json-pure all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ruby-kramdown Update to 2.1.0 2019-10-05 04:34:02 +00:00
ruby-kramdown-parser-gfm textproc/ruby-kramdown-parser-gfm: import ruby26-kramdown-parser-gfm-1.0.1 2019-10-05 04:44:53 +00:00
ruby-levenshtein
ruby-libxml all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ruby-mab
ruby-marisa
ruby-markaby textproc/ruby-markaby: update to 0.9.0 2018-03-14 15:47:03 +00:00
ruby-maruku
ruby-mecab textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ruby-multi_json textproc/ruby-multi_json: update to 1.13.1 2018-03-14 15:51:13 +00:00
ruby-native-hyperestraier
ruby-nokogiri all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-nori textproc/ruby-nori: add version 2.6.0 package 2020-01-19 09:24:35 +00:00
ruby-nqxml textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ruby-oniguruma Revbump after updating textproc/oniguruma 2018-03-22 08:14:51 +00:00
ruby-plist textproc/ruby-plist: update to 3.4.0 2018-03-14 15:52:57 +00:00
ruby-pure-hyperestraier
ruby-rails-dom-testing textproc/ruby-rails-dom-testing: fix RUBY_RAILS_ACCEPTED 2019-03-03 17:30:38 +00:00
ruby-rails-dom-testing1 lang/ruby: replace RUBY_RAILS_SUPPORTED to RUBY_RAILS_ACCEPTED 2018-03-18 14:21:19 +00:00
ruby-rdiscount all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-rdtool all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
ruby-redcarpet
ruby-redcloth all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-review textproc/ruby-review: add package version 3.2.0 2019-09-18 15:56:55 +00:00
ruby-rison
ruby-rttool
ruby-safe_yaml all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ruby-sary all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ruby-simple-rss textproc/ruby-simple-rss: update to 1.3.3 2018-09-23 16:39:23 +00:00
ruby-stringex textproc/ruby-stringex: update to 2.8.4 2018-03-17 16:26:41 +00:00
ruby-stringex1 Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
ruby-strings textproc/ruby-strings: add version 0.1.8 package 2020-01-19 09:31:54 +00:00
ruby-strings-ansi textproc/ruby-strings-ansi: add version 0.2.0 package 2020-01-19 14:13:38 +00:00
ruby-syntax Update ruby-syntax to 1.2.2. 2017-09-10 16:10:11 +00:00
ruby-temple
ruby-terminal-table textproc/ruby-terminal-table: import ruby26-terminal-table-1.8.0 2019-10-05 04:11:43 +00:00
ruby-text
ruby-textpow
ruby-tilt textproc/ruby-tilt: fix ALTERNATIVES file 2018-12-22 17:31:02 +00:00
ruby-tilt1 Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
ruby-toml textproc/ruby-toml: update to 0.2.0 2018-03-17 16:34:11 +00:00
ruby-treetop textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ruby-ultraviolet textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ruby-unicode-display_width textproc/ruby-unicode-display_width: import ruby26-unicode-display_width-1.6.0 2019-10-04 23:41:47 +00:00
ruby-unicode_utils textproc/ruby-unicode_utils: add versino 1.4.0 package 2020-01-19 14:16:58 +00:00
ruby-will-paginate Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
ruby-xapian Bulk builds with ruby25 don't seem to install jquery.js. 2019-12-25 14:29:24 +00:00
ruby-xhtmldiff
ruby-xmlparser Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-xpath ruby-xpath: Update to 3.2.0. Required to unbreak ruby-capybara. 2018-12-17 19:46:06 +00:00
ruby-xslt textproc/ruby-xslt: udpate to 0.9.10 2018-03-17 16:31:14 +00:00
ruby-yajl textproc/ruby-yajl: update to 1.4.1 2018-09-23 16:43:10 +00:00
ruby-yamcha
ruby-yard textproc: align variable assignments 2019-11-04 21:43:32 +00:00
sablotron textproc: align variable assignments 2019-11-04 21:43:32 +00:00
sary all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
saxon all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
scew all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
scrollkeeper-dtd all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
sdop Add sdop 0.80 2018-06-15 13:12:30 +00:00
serd Convert some drobilla.net packages to waf.mk. 2019-12-14 17:53:39 +00:00
sgrep all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
shared-desktop-ontologies all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
sift Revbump all Go packages after go113 update. 2020-02-02 14:18:56 +00:00
sonnet kf5: update to frameworks 5.66 2020-01-29 11:49:22 +00:00
soprano all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
sord Convert some drobilla.net packages to waf.mk. 2019-12-14 17:53:39 +00:00
source-highlight all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
sphinxsearch textproc: align variable assignments 2019-11-04 21:43:32 +00:00
stardic
sub2srt Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sublib sublib: Remove missed reference to mono2 2020-01-28 13:31:34 +00:00
subliminal PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
subtitleripper Sort PLIST files. 2018-01-01 22:29:15 +00:00
swath Follow some redirects. 2017-09-04 18:08:18 +00:00
syntax-highlighting kf5: update to frameworks 5.66 2020-01-29 11:49:22 +00:00
tcl-dom all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tcl-expat
tcl-tDOM tcl-tDOM: Update to 0.9.1 2019-10-06 03:25:17 +00:00
tcl-xapian
tcl-xml Sort PLIST files. 2018-01-01 22:29:15 +00:00
tei
tei-p5-schema
tei-xsl all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-csvsimple all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-csvsimple-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-latexdiff all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-latexdiff-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-lwarp tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:00:17 +00:00
tex-lwarp-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:00:17 +00:00
tex-makeindex all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-makeindex-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-xindy all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-xindy-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-xmltex tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:00:17 +00:00
tex-xmltex-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:00:17 +00:00
tex-xmltexconfig tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:00:17 +00:00
texi2html all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
texi2mdoc
texi2roff
the_silver_searcher the_silver_searcher: Update to 2.2.0 2018-08-09 11:02:17 +00:00
tinyxml
tinyxml2 textproc: align variable assignments 2019-11-04 21:43:32 +00:00
tokyodystopia textproc: align variable assignments 2019-11-04 21:43:32 +00:00
trang
translate-shell *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
translate-toolkit PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
troffcvt Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
unac Comment out dead sites. 2017-09-06 10:40:25 +00:00
uncrustify all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
uni2ascii all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
unicode-character-database unicode-character-database: update to 12.1.0. 2019-09-14 03:12:15 +00:00
unicode-emoji all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
unroff all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
untex
uriparser uriparser: updated to 0.9.3 2019-05-20 07:44:59 +00:00
urlview Sort PLIST files. 2018-01-01 22:29:15 +00:00
verify-synopsis Switch from mdocml to mandoc; remove obsolete references. 2017-08-01 15:09:52 +00:00
vis
wbxml2 Comment out dead sites. 2017-09-06 10:40:25 +00:00
wdiff all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
word2vec Package makefile is spelled with lower case m. 2019-12-19 22:24:19 +00:00
WordNet all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
writer2latex Comment out dead sites. 2017-09-06 10:40:25 +00:00
xalan-j all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xapian Add missing errno.h 2019-12-19 22:24:39 +00:00
xapian-omega Update to 1.4.14. From the changelog: 2019-12-17 03:54:17 +00:00
xerces-c all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xerces-j all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xfce4-dict xfce4-dict: update to 0.8.3 2019-10-12 10:51:02 +00:00
xfpt Add xfpt 0.09 2018-06-15 13:08:52 +00:00
xhtml all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
xindy all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xml-coreutils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xml2 Comment out dead sites. 2017-09-06 10:40:25 +00:00
xml2doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xmlada textproc: align variable assignments 2019-11-04 21:43:32 +00:00
xmlcatmgr all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xmlindent all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
xmlrpc-c all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xmlstarlet all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xmlto *: Add some required USE_GCC_RUNTIME. 2018-07-17 10:56:23 +00:00
xmltoman Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
xmltooling *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
xp
xqilla all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xslide all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xt
xxdiff *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
xxdiff-scripts textproc: align variable assignments 2019-11-04 21:43:32 +00:00
yamcha Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
yaml-cpp yaml-cpp: Update to 0.6.3 2019-10-01 13:11:50 +00:00
yelp-tools PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
yelp-xsl textproc: align variable assignments 2019-11-04 21:43:32 +00:00
yodl PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
yq Add yq version 2.9.2 2019-11-19 21:30:15 +00:00
zoem all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
Makefile Add and enable p5-YAML-PP. 2020-01-23 16:15:42 +00:00