pkgsrc/textproc
tsutsui 86350f4717 ruby-nokogiri: update to 1.11.1.
Upstream changelog (from CHANGELOG.md):

v1.11.1 / 2021-01-06

 Fixed

  * [CRuby] If libxml-ruby is loaded before nokogiri, the SAX and Push parsers
    no longer call libxml-ruby's handlers. Instead, they defensively override
    the libxml2 global handler before parsing. [#2168]

v1.11.0 / 2021-01-03

 Notes

 Faster, more reliable installation: Native Gems for Linux and OSX/Darwin

"Native gems" contain pre-compiled libraries for a specific machine
architecture. On supported platforms, this removes the need for compiling the C
extension and the packaged libraries. This results in much faster installation
and more reliable installation, which as you probably know are the biggest
headaches for Nokogiri users.

We've been shipping native Windows gems since 2009, but starting in v1.11.0 we
are also shipping native gems for these platforms:

  * Linux: x86-linux and x86_64-linux -- including musl platforms like alpine
  * OSX/Darwin: x86_64-darwin and arm64-darwin

We'd appreciate your thoughts and feedback on this work at #2075.

 Dependencies

 Ruby

This release introduces support for Ruby 2.7 and 3.0 in the precompiled native
gems.

This release ends support for:

  * Ruby 2.3, for which official support ended on 2019-03-31 [#1886] (Thanks
    @ashmaroli!)
  * Ruby 2.4, for which official support ended on 2020-04-05
  * JRuby 9.1, which is the Ruby 2.3-compatible release.

 Gems

  * Explicitly add racc as a runtime dependency. [#1988] (Thanks, @voxik!)
  * [MRI] Upgrade mini_portile2 dependency from ~> 2.4.0 to ~> 2.5.0 [#2005]
    (Thanks, @alejandroperea!)

 Security

See note below about CVE-2020-26247 in the "Changed" subsection entitled
"XML::Schema parsing treats input as untrusted by default".

 Added

  * Add Node methods for manipulating "keyword attributes" (for example, class
    and rel): #kwattr_values, #kwattr_add, #kwattr_append, and #kwattr_remove.
    [#2000]
  * Add support for CSS queries a:has(> b), a:has(~ b), and a:has(+ b). [#688]
    (Thanks, @jonathanhefner!)
  * Add Node#value? to better match expected semantics of a Hash-like object.
    [#1838, #1840] (Thanks, @MatzFan!)
  * [CRuby] Add Nokogiri::XML::Node#line= for use by downstream libs like
    nokogumbo. [#1918] (Thanks, @stevecheckoway!)
  * nokogiri.gemspec is back after a 10-year hiatus. We still prefer you use
    the official releases, but master is pretty stable these days, and YOLO.

 Performance

  * [CRuby] The CSS ~= operator and class selector . are about 2x faster.
    [#2137, #2135]
  * [CRuby] Patch libxml2 to call strlen from xmlStrlen rather than the naive
    implementation, because strlen is generally optimized for the architecture.
    [#2144] (Thanks, @ilyazub!)
  * Improve performance of some namespace operations. [#1916] (Thanks,
    @ashmaroli!)
  * Remove unnecessary array allocations from Node serialization methods
    [#1911] (Thanks, @ashmaroli!)
  * Avoid creation of unnecessary zero-length String objects. [#1970] (Thanks,
    @ashmaroli!)
  * Always compile libxml2 and libxslt with '-O2' [#2022, #2100] (Thanks,
    @ilyazub!)
  * [JRuby] Lots of code cleanup and performance improvements. [#1934] (Thanks,
    @kares!)
  * [CRuby] RelaxNG.from_document no longer leaks memory. [#2114]

 Improved

  * [CRuby] Handle incorrectly-closed HTML comments as WHATWG recommends for
    browsers. [#2058] (Thanks to HackerOne user mayflower for reporting this!)
  * {HTML,XML}::Document#parse now accept Pathname objects. Previously this
    worked only if the referenced file was less than 4096 bytes long; longer
    files resulted in undefined behavior because the read method would be
    repeatedly invoked. [#1821, #2110] (Thanks, @doriantaylor and @phokz!)
  * [CRuby] Nokogumbo builds faster because it can now use header files
    provided by Nokogiri. [#1788] (Thanks, @stevecheckoway!)
  * Add frozen_string_literal: true magic comment to all lib files. [#1745]
    (Thanks, @oniofchaos!)
  * [JRuby] Clean up deprecated calls into JRuby. [#2027] (Thanks, @headius!)

 Fixed

  * HTML Parsing in "strict" mode (i.e., the RECOVER parse option not set) now
    correctly raises a XML::SyntaxError exception. Previously the value of the
    RECOVER bit was being ignored by CRuby and was misinterpreted by JRuby.
    [#2130]
  * The CSS ~= operator now correctly handles non-space whitespace in the class
    attribute. commit e45dedd
  * The switch to turn off the CSS-to-XPath cache is now thread-local, rather
    than being shared mutable state. [#1935]
  * The Node methods add_previous_sibling, previous=, before, add_next_sibling,
    next=, after, replace, and swap now correctly use their parent as the
    context node for parsing markup. These methods now also raise a
    RuntimeError if they are called on a node with no parent. [nokogumbo#160]
  * [JRuby] XML::Schema XSD validation errors are captured in XML::Schema#
    errors. These errors were previously ignored.
  * [JRuby] Standardize reading from IO like objects, including StringIO.
    [#1888, #1897]
  * [JRuby] Fix how custom XPath function namespaces are inferred to be less
    naive. [#1890, #2148]
  * [JRuby] Clarify exception message when custom XPath functions can't be
    resolved.
  * [JRuby] Comparison of Node to Document with Node#<=> now matches
    CRuby/libxml2 behavior.
  * [CRuby] Syntax errors are now correctly captured in Document#errors for
    short HTML documents. Previously the SAX parser used for encoding detection
    was clobbering libxml2's global error handler.
  * [CRuby] Fixed installation on AIX with respect to vasprintf. [#1908]
  * [CRuby] On some platforms, avoid symbol name collision with glibc's
    canonicalize. [#2105]
  * [Windows Visual C++] Fixed compiler warnings and errors. [#2061, #2068]
  * [CRuby] Fixed Nokogumbo integration which broke in the v1.11.0 release
    candidates. [#1788] (Thanks, @stevecheckoway!)
  * [JRuby] Fixed document encoding regression in v1.11.0 release candidates.
    [#2080, #2083] (Thanks, @thbar!)

 Removed

  * The internal method Nokogiri::CSS::Parser.cache_on= has been removed. Use
    .set_cache if you need to muck with the cache internals.
  * The class method Nokogiri::CSS::Parser.parse has been removed. This was
    originally deprecated in 2009 in 13db61b. Use Nokogiri::CSS.parse instead.

 Changed

 XML::Schema input is now "untrusted" by default

Address CVE-2020-26247.

In Nokogiri versions <= 1.11.0.rc3, XML Schemas parsed by Nokogiri::XML::Schema
were trusted by default, allowing external resources to be accessed over the
network, potentially enabling XXE or SSRF attacks.

This behavior is counter to the security policy intended by Nokogiri
maintainers, which is to treat all input as untrusted by default whenever
possible.

Please note that this security fix was pushed into a new minor version, 1.11.x,
rather than a patch release to the 1.10.x branch, because it is a breaking
change for some schemas and the risk was assessed to be "Low Severity".

More information and instructions for enabling "trusted input" behavior in
v1.11.0.rc4 and later is available at the public advisory.

 HTML parser now obeys the strict or norecover parsing option

(Also noted above in the "Fixed" section) HTML Parsing in "strict" mode (i.e.,
the RECOVER parse option not set) now correctly raises a XML::SyntaxError
exception. Previously the value of the RECOVER bit was being ignored by CRuby
and was misinterpreted by JRuby.

If you're using the default parser options, you will be unaffected by this fix.
If you're passing strict or norecover to your HTML parser call, you may be
surprised to see that the parser now fails to recover and raises a
XML::SyntaxError exception. Given the number of HTML documents on the internet
that libxml2 would consider to be ill-formed, this is probably not what you
want, and you can omit setting that parse option to restore the behavior that
you have been relying upon.

Apologies to anyone inconvenienced by this breaking bugfix being present in a
minor release, but I felt it was appropriate to introduce this fix because it's
straightforward to fix any code that has been relying on this buggy behavior.

 VersionInfo, the output of nokogiri -v, and related constants

This release changes the metadata provided in Nokogiri::VersionInfo which also
affects the output of nokogiri -v. Some related constants have also been
changed. If you're using VersionInfo programmatically, or relying on constants
related to underlying library versions, please read the detailed changes for
Nokogiri::VersionInfo at #2139 and accept our apologies for the inconvenience.
2021-01-08 17:09:41 +00:00
..
aha (textproc/aha) Updated from 0.4.10.6 to 0.5 2019-11-12 14:04:33 +00:00
aiksaurus *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
align textproc/align: Import from wip. Aligns text 2020-06-05 22:08:49 +00:00
ansifilter
antiword
artha *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
asciidir Added textproc/asciidir version 0.6 2018-07-26 14:27:23 +00:00
asciidoc Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
aspell *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
aspell-af
aspell-am
aspell-ar *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
aspell-ast
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
aspell-bg *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
aspell-de aspell-de: swiss was removed as an alias 2019-10-19 14:39:51 +00:00
aspell-de-alt
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
aspell-fa Add textproc/aspell-fa. 2019-10-19 13:38:43 +00:00
aspell-fi
aspell-fo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06: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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
aspell-grc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
aspell-gu *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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
aspell-hi
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
aspell-hsb
aspell-hu *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
aspell-hus
aspell-hy
aspell-ia
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
aspell-ku
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
aspell-lv
aspell-mg
aspell-mi
aspell-mk
aspell-ml
aspell-mn
aspell-mr
aspell-ms Add textproc/aspell-ms. 2019-10-19 13:43:45 +00:00
aspell-mt
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
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
aspell-pa
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
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-sk aspell-sk: Update to 2.01.2 2019-10-19 11:08:31 +00:00
aspell-sl
aspell-sr all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
aspell-sv
aspell-sw
aspell-ta
aspell-te
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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
aspell-uk
aspell-uz
aspell-vi
aspell-wa
aspell-yi
aspell-zu
aspic Add aspic 1.05 2018-06-15 13:15:26 +00:00
awf textproc/awf: remove redundant Makefile from SUBST_FILES 2020-04-26 13:58:32 +00:00
bat textproc/bat: Updates to 0.17.1 2020-11-29 13:47:37 +00:00
bibclean
biblook
bibparse
bk textproc/bk: update to 0.5.2 2021-01-05 09:52:21 +00:00
bsdgrep-devel
btparse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
c2html *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +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 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
cawf
cdif *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +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
cjose *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
cldr-emoji-annotation cldr-emoji-annotation: Remove tailing whitespace 2020-11-06 15:50:32 +00:00
cmark cmark: dynamically link the executable 2020-04-11 10:55:05 +00:00
cmark-gfm Import cmark-gfm-0.29.0.gfm.0 2020-01-15 06:29:58 +00:00
cmigemo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
coccigrep Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
colorit
convertlit Remove CR stripping since source files don't contain it any more: 2020-09-19 14:02:31 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
csharp-xapian *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
csvkit Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
csvtomd Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
csvutils *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
cwdiff textproc: align variable assignments 2019-11-04 21:43:32 +00:00
dadadodo
db2latex *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
dblatex Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
detex all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
dict-client Update dict-client and dictd-server to 1.13.0 2020-03-30 13:38:57 +00:00
dict-dictionaries
dict-mueller7 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dict-server Update dict-client and dictd-server to 1.13.0 2020-03-30 13:38:57 +00:00
dictem
diction all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
diffr diffr: fix minor typo in DESCR 2020-11-28 01:25:13 +00:00
diffsplit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
diffstat diffstat: Update to 1.63 2020-11-25 21:52:57 +00:00
dikt *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
discount Update to 2.2.7. From the changelog: 2020-09-18 20:18:55 +00:00
docbook all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
docbook-simple
docbook-website *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
docbook-xml all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
docbook-xsl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
docbook2mdoc textproc/docbook2mdoc: Update to version 1.1.0 (from wip) 2019-08-25 17:53:58 +00:00
docbook2odf *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
doclifter Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
dsssl-docbook-modular *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dtdparse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
DWB textproc/DWB: fix macro calls with wrong number of arguments 2020-04-26 20:23:39 +00:00
dwdiff dwdiff: Update to 2.1.3 2020-12-01 11:21:15 +00:00
eb *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
eblook textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ebook-tools *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
ebview *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +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 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
enchant2 enchant2: update to 2.2.15. 2021-01-04 10:22:23 +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
erlang-p1_xmlrpc
erlang-stringprep textproc/erlang-stringprep: Update to 1.0.12. 2018-07-20 09:14:29 +00:00
expat expat: use upstream-suggested workaround for installing man page 2020-10-09 12:00:56 +00:00
expatobjc *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ezxml *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
FlightCrew *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
flyspell
fmtlib fmtlib: updated to 7.1.3 2020-11-26 09:31:18 +00:00
fop textproc: align variable assignments 2019-11-04 21:43:32 +00:00
freepwing *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
freexl freexl: updated to 1.0.6 2020-08-06 16:31:21 +00:00
gdome2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
git-delta reset maintainer 2020-11-05 08:31:29 +00:00
glimpse textproc/glimpse: remove double spaces in DESCR 2020-03-13 06:06:49 +00:00
gnome-dictionary gnome-dictionary: fix SunOS build 2020-12-31 05:04:08 +00:00
gnome-doc-utils Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
go-chroma Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-diff Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-glob Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-goldmark Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-inflect Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-kr-text Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-md2man Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-mmark Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-org Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-prose Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-regexp2 Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-runewidth Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-sentences Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-tablewriter Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-text Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
grep grep: Update to 3.5 2020-09-30 19:22:08 +00:00
grepcidr all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
groff *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
groonga groonga: adjust to use $PKG_BUILD_OPTIONS in buildlink3.mk 2020-10-06 00:11:47 +00:00
gsed textproc/gsed: don't use Perl during the build 2020-03-17 22:24:20 +00:00
gspell *: recursive bump for vala 0.50 2020-10-06 19:51:15 +00:00
gtk-doc Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
gtkspell *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
gtkspell3 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
guile-commonmark adjust maintainer to my new login 2020-04-28 11:46:27 +00:00
guile-json textproc/guile-json: Update to 4.1.0 2020-06-22 08:01:49 +00:00
guile-syntax-highlight adjust maintainer to my new login 2020-04-28 11:46:27 +00:00
gutcheck *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 halibut: Use INSTALL_MAN not INSTALL_PROGRAM 2020-11-30 12:31:20 +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-68.1 2020-11-05 09:06:42 +00:00
highlight = Highlight CHANGELOG 2020-12-18 18:45:08 +00:00
highway
hre all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
hs-annotated-wl-pprint hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-ansi-wl-pprint hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-attoparsec hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-blaze-html hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-blaze-markup hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-case-insensitive hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-cassava hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-cassava-megaparsec hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-cgrep Fix build with the upcoming GHC 8.8.4 2020-08-24 15:31:12 +00:00
hs-cheapskate hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-cmark-gfm hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-css-text hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-csv hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-Diff hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-doclayout hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-doctemplates hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-edit-distance hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-Glob hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-haddock-library hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-hscolour hs-*: add PLIST files for a few more Haskell packages 2020-05-13 04:53:15 +00:00
hs-hslua-module-text hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-HsYAML hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-html hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-hxt hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-hxt-charproperties hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-hxt-regex-xmlschema hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-hxt-unicode hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-jira-wiki-markup hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-libyaml hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-lucid hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-megaparsec hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-pandoc-types hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-polyparse hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-regex-base hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-regex-pcre hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-regex-posix hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-regex-tdfa hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-shakespeare hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-skylighting hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-skylighting-core hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-stringsearch hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-tagsoup hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-texmath hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-text-short textproc/hs-text-short: Cite specific upstream patch this is from. 2020-07-16 17:56:43 +00:00
hs-unicode-show hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-unicode-transforms hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-wcwidth hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-xml hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hs-yaml hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
html all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
html2text html2text: update HOMEPAGE 2020-04-06 09:30:48 +00:00
html2wml *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
hugs-HaXml
hunspell hunspell: needs autopoint to build now 2021-01-05 07:40:13 +00:00
hunspell-af_ZA
hunspell-ar
hunspell-bg_BG
hunspell-ca_ES
hunspell-cs_CZ
hunspell-cy_GB
hunspell-da_DK
hunspell-de *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
hunspell-el_GR
hunspell-en_CA
hunspell-en_GB
hunspell-en_NZ
hunspell-en_US
hunspell-en_ZA
hunspell-es_ES
hunspell-es_MX
hunspell-fo_FO
hunspell-fr_FR
hunspell-fy_NL
hunspell-ga_IE
hunspell-he_IL
hunspell-hr_HR
hunspell-hu_HU *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
hunspell-id_ID
hunspell-it_IT *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
hyphen *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
icu icu: Update to 68.2 2021-01-01 09:03:05 +00:00
igor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
iksemel revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
intltool *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ipadic all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
isearch mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
iso-codes iso-codes: silence double brackets warning 2020-03-13 11:10:17 +00:00
iso8879
iso12083
ispell textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ispell-ca
ispell-de *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ispell-emacs
ispell-en_GB ispell-en_GB: needs yacc 2020-04-19 13:50:39 +00:00
ispell-es
ispell-fr all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ispell-ga
ispell-gl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ispell-ku *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ispell-lt Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
ispell-pl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ispell-pt_BR
ispell-ro
ispell-ru
ispell-ru-io
ispell-sk
ispell-sv all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
itex2MML
itstool Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
ja-grep all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ja-groff textproc/ja-groff: Mark as broken on Darwin-*-aarch64 2020-11-08 00:59:48 +00:00
ja-sed all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
jansson jansson: updated to 2.13.1 2020-05-08 13:54:06 +00:00
java-mecab
java-native-hyperestraier
java-pure-hyperestraier
jdom
jing
jo jo: update to 1.4. 2020-07-19 07:41:36 +00:00
jrep
json-c json-c: update to 0.15. 2020-10-01 09:16:12 +00:00
json-glib Make some int cast warnings non-fatal for clang 2020-03-18 18:01:23 +00:00
json-schema *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
json-yaml json-yaml: Update to 1.2.1 2020-01-01 01:19:00 +00:00
json2tsv json2tsv: Update to 0.5 2020-02-23 20:44:25 +00:00
jsoncpp jsoncpp: updated to 1.9.4 2020-09-29 16:49:15 +00:00
kakasi
kapidox Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
kbanner
kcodecs *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kcompletion *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kpimtextedit *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
latex2html *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
LDoc textproc: align variable assignments 2019-11-04 21:43:32 +00:00
libclucene *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
libcroco *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libcsv *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libcue Add textproc/libcue 2020-12-19 10:22:45 +00:00
libexttextcat libexttextcat: fix unportable test(1) operator 2020-03-12 17:39:28 +00:00
libfastjson Add -lm to LIBS on NetBSD. The library uses modf and this is not available 2020-08-02 12:08:35 +00:00
libhighlight Update to 3.60. From the changelog: 2021-01-01 19:41:37 +00:00
liblinebreak *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
liblrdf *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libnxml revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
libodfgen *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
libpinyin *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libplist Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
libstemmer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libunicode Use https for pango.org. 2019-07-11 09:28:44 +00:00
libuninameslist libuninameslist: update to 20200413. 2020-09-09 07:41:26 +00:00
libunistring all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libxls textproc/libxls: Update to 1.6.1 2020-10-01 19:34:09 +00:00
libxlsxwriter textproc/libxlsxwriter: Update to 1.0.0 2020-10-01 21:10:41 +00:00
libxml
libxml++ *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libxml2 textproc/(py-)libxml2: Fix compilation with Python 3.9 2020-11-08 23:31:44 +00:00
libxslt *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libyaml libyaml: updated to 0.2.5 2020-06-02 08:28:04 +00:00
link-grammar link-grammar: fix builds with older compilers (NetBSD 7, CentOS) 2020-04-19 03:31:08 +00:00
lit2epub *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
log4cpp textproc/log4cpp: import log4cpp-1.1.3 2020-08-02 03:13:33 +00:00
lout all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
lowdown lowdown: update to 0.7.5. 2020-12-10 09:19:35 +00:00
lq-sp mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
lua-cjson Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin, 2020-07-11 15:14:29 +00:00
lua-cmark textproc: Add lua-cmark 2020-07-02 14:10:04 +00:00
lua-cosmo Fix package name 2020-08-06 23:22:13 +00:00
lua-dkjson textproc: Add lua-dkjson 2020-07-08 16:00:22 +00:00
lua-etlua textproc: Add lua-etlua 2020-07-02 17:30:22 +00:00
lua-expat Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-inifile textproc: Add lua-inifile 2020-07-09 11:14:00 +00:00
lua-lustache lua-lustache: Support for testing 2020-07-08 16:33:31 +00:00
lua-lyaml lua-lyaml: Update to 6.2.7 2020-12-09 11:03:42 +00:00
lua-markdown textproc: Add lua-markdown 2020-07-02 13:14:59 +00:00
lua-rapidjson textproc: Add lua-rapidjson 2020-07-08 17:00:03 +00:00
lua-slnunicode Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-stringy lua-stringy: Update to 0.7.0 2020-12-09 11:12:47 +00:00
lua-utf8 lua-utf8: Update to 0.1.3 2020-10-10 08:13:58 +00:00
lua-xapian Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lucene++ *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
makeindexk texlive: update to 2020 2020-05-10 03:56:37 +00:00
makeztxt *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
man2html *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
mandoc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
marisa textproc: align variable assignments 2019-11-04 21:43:32 +00:00
Markdown *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
markdown-mode markdown-mode: update to 2.4. 2020-08-18 04:49:38 +00:00
markdown2social textproc: align variable assignments 2019-11-04 21:43:32 +00:00
mecab
mecab-base
mecab-ipadic
mecab-jumandic
mecab-naistdic
mendexk texlive: update to 2020 2020-05-10 03:56:37 +00:00
metauml *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
migemo textproc: align variable assignments 2019-11-04 21:43:32 +00:00
migemo-elisp
miller miller: update to 5.10.0. 2020-12-01 21:59:56 +00:00
multimarkdown revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
mxml textproc: align variable assignments 2019-11-04 21:43:32 +00:00
mythes *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
namazu *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
nanogrep textproc/nanogrep: import package 2021-01-01 13:49:56 +00:00
nbsed all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ndtpd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
nxml-mode
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 Updated textproc/ocaml-markup to version 0.8.2. 2020-04-21 11:00:32 +00:00
ocaml-text textproc: align variable assignments 2019-11-04 21:43:32 +00:00
ocaml-textutils Updated textproc/ocaml-textutils to version 0.13.0. 2020-04-08 11:41:44 +00:00
ocaml-tyxml Updated textproc/ocaml-tyxml to version 4.4.0. 2020-04-21 11:39:20 +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 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
odt2tex revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
oniguruma oniguruma: update to 6.9.6 2020-11-05 07:08:27 +00:00
openjade openjade: tweak a comment 2020-11-28 01:29:08 +00:00
opensp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ots *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-ack p5-ack: update to 3.4.0. 2020-09-07 17:31:44 +00:00
p5-Alien-Hunspell *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Alien-Libxml2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-Biblio-EndnoteStyle *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-cabocha *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CAM-PDF *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Convert-ASCII-Armour *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Convert-ASN1 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Convert-BER *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Convert-PEM *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Convert-Translit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-FormValidator *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-HexDump *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Dist-Zilla-Plugin-PodWeaver *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Encode-Detect *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Encode-EUCJPASCII *: remove references to p5-Encode 2020-09-04 09:29:10 +00:00
p5-Encode-HanExtra *: remove references to p5-Encode 2020-09-04 09:29:10 +00:00
p5-Encode-JIS2K *: remove references to p5-Encode 2020-09-04 09:29:10 +00:00
p5-Encode-Locale *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Feed-Find *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-ReadBackwards *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Filter (textprox/p5-Filter) Updated 1.60 2020-09-02 12:36:38 +00:00
p5-FormValidator-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-highlight Reset PKGREVISION for libhighlight update. 2020-09-17 21:07:10 +00:00
p5-HTML-FormatText-WithLinks *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-HTML-FormatText-WithLinks-AndTables *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-iCal-Parser *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Kwalify (textproc/p5-Kwalify) Updated to 1.23 2020-09-02 12:40:05 +00:00
p5-libxml *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Fathom *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-FindNumber *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Inflect *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Inflect-Number *: improve HOMEPAGE 2020-09-08 13:09:53 +00:00
p5-Lingua-EN-Inflect-Phrase *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Number-IsOrdinal *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Numbers-Ordinate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Sentence *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Syllable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Tagger *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-EN-Words2Nums *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Identify *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Preferred *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-PT-Stemmer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Stem (textproc/p5-Lingua-Stem) Updated 0.84 to 2.30 2020-09-02 13:19:04 +00:00
p5-Lingua-Stem-Fr *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Stem-It *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Stem-Ru *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Stem-Snowball *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Stem-Snowball-Da *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lingua-Translit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-List-Compare p5-List-Compare: update to 0.55. 2020-09-07 14:39:22 +00:00
p5-Locale-Maketext-Gettext *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-marisa *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-mecab *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-mobiperl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MultiMarkdown *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-native-hyperestraier *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-Dict *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-IDN-Encode *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Number-Format *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Number-Spell *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ODF-lpOD *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PDF *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PDF-API2 p5-PDF-API2: update to 2.038. 2020-09-07 14:44:55 +00:00
p5-PDF-Create *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PDF-Reuse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PDF-Reuse-Barcode *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PDF-Table Update to 1.001 2020-11-15 07:00:37 +00:00
p5-Pod-Abstract *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Coverage *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Coverage-TrustPod *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Elemental p5-Pod-Elemental: update to 0.103005. 2020-09-07 14:46:55 +00:00
p5-Pod-Elemental-PerlMunger *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Eventual *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Markdown (textproc/p5-Pod-Markdown) Updated 3.200 to 3.300 2020-11-08 04:08:09 +00:00
p5-Pod-Parser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-POM *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Readme *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Spell *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Spell-CommonMistakes *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Strip *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Tests *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Tree *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pod-Weaver *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-POD2-Base *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-podlators p5-podlators: update to 4.14. 2020-09-07 17:32:28 +00:00
p5-PPI-HTML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PPIx-QuoteLike Update to 0.013 2020-10-25 03:22:11 +00:00
p5-Publican *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Regexp-Common *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Regexp-Copy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-sdf *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Search-Indexer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Search-Xapian Update to 1.2.25.4. From the changelog: 2020-11-30 11:59:09 +00:00
p5-SGMLS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Snowball-Norwegian (textproc/p5-Snowball-Norwegian) Fix build with Perl 5.32 2020-09-02 12:55:02 +00:00
p5-Snowball-Swedish (textproc/p5-Snowball-Swedish) Fix build with Perl 5.32 2020-09-02 13:02:10 +00:00
p5-String-Approx *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-BufferStack *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-CamelCase *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Compare-ConstantTime *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-CRC32 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Errf *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Expand *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-String-Flogger *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Formatter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Interpolate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Koremutake *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-RewritePrefix p5-String-RewritePrefix: update to 0.008. 2020-09-07 14:47:34 +00:00
p5-String-ShellQuote *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Similarity *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-ToIdentifier-EN *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Trim *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Truncate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Swim *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Syntax-Highlight-Engine-Kate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Syntax-SourceHighlight *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
p5-Template-Declare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-Autoformat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-CSV *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-Latex *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-Number-Format *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-YAML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-YAML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Affixes *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Aligner p5-Text-Aligner: update to 0.16. 2020-09-07 14:53:25 +00:00
p5-Text-Aspell *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Autoformat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Balanced *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-BibTeX p5-Text-BibTeX: update to 0.88. 2020-09-07 14:54:25 +00:00
p5-Text-Brew *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-CharWidth *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-ChaSen *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Context-EitherSide *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-CSV *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-CSV-Encoded *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-CSV-Hash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-CSV-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-CSV_XS p5-Text-CSV_XS: update to 1.44. 2020-09-07 14:55:19 +00:00
p5-Text-DelimMatch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-DHCPLeases *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Diff *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Diff-HTML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Diff-Parser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-DoubleMetaphone *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Emoticon *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Emoticon-MSN *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-FindIndent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Format (textproc/p5-Text-Format) Updated 0.61 to 0.62 2020-11-08 02:33:04 +00:00
p5-Text-German *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Glob *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Hunspell *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Kakasi *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-LevenshteinXS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Markdown *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Markdown-Discount *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Microformat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-MicroTemplate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-MultiMarkdown *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Text-Ngram *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Nimble *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Patch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-PDF *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Quoted *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-RecordParser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Reflow *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Reform *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-RewriteRules *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Roman *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Sass *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Shellwords *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-SimpleTable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-SimpleTable-AutoWidth *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Soundex *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-SpellChecker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Table p5-Text-Table: update to 1.134. 2020-09-07 14:55:47 +00:00
p5-Text-TabularDisplay *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Template p5-Text-Template: update to 1.59. 2020-09-07 14:56:16 +00:00
p5-Text-Textile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Trac *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Typography *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Unaccent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Unidecode *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-vCard *: remove p5-Text-Tabs+Wrap, part of perl 2020-09-04 13:48:33 +00:00
p5-Text-vFile-asData *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-VisualWidth-PP *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Text-WagnerFischer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-WikiCreole *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-WikiFormat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-WrapI18N *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Wrapper *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Text-Xslate p5-Text-Xslate: update to 3.5.8. 2020-09-07 15:17:57 +00:00
p5-Text-xSV *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Handle-Offset *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unicode-CaseFold *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unicode-LineBreak *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Win32-ShellQuote *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Xapian *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Atom *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Atom-SimpleFeed *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Atom-Stream *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-AutoWriter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Bare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Catalog *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Checker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Clean *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Compile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Compile-Cache *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Compile-SOAP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Compile-SOAP12 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Compile-Tester *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Descent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-DOM *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Dumper *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Elemental *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Encoding *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Entities *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Feed *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-FeedPP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Filter-BufferText *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Filter-DetectWS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Filter-DOMFilter-LibXML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Filter-Reindent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Filter-SAXT *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Generator *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Grove *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Handler-Trees *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Handler-YAWriter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-LibXML *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-XML-LibXML-Iterator (textproc/p5-XML-LibXML-Iterator) Updated 1.05 to 1.06 2020-11-08 03:08:18 +00:00
p5-XML-LibXML-Simple p5-XML-LibXML-Simple: update to 1.01. 2020-09-07 17:00:56 +00:00
p5-XML-LibXSLT *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-XML-NamespaceSupport *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Node *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-NodeFilter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Parser p5-XML-Parser: update to 2.46. 2020-09-07 17:11:44 +00:00
p5-XML-Parser-Lite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Parser-Lite-Tree *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Rabbit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-RAI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-RegExp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-RSS (textproc/p5-XML-RSS) Updated 1.61 to 1.62 2020-11-08 04:05:48 +00:00
p5-XML-RSS-Parser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-SAX p5-XML-SAX: update to 1.02. 2020-09-07 17:21:34 +00:00
p5-XML-SAX-Base *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-SAX-Expat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-SAX-ExpatXS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-SAX-Writer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-SemanticDiff *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Stream *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Tidy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-TokeParser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-TreeBuilder *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-TreePP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Twig *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-UM *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-Writer (textproc/p5-XML-Writer) Updated 0.625 to 0.900 2020-11-08 02:18:21 +00:00
p5-XML-Writer-String *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-XPath *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-XPathEngine *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-XQL *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-XSLT *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XML-XUpdate-LibXML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-yamcha *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-YAML p5-YAML: update to 1.30. 2020-09-07 17:23:03 +00:00
p5-YAML-LibYAML p5-YAML-LibYAML: update to 0.82. 2020-09-07 17:23:54 +00:00
p5-YAML-PP p5-YAML-PP: update to 0.026. 2020-09-13 08:07:17 +00:00
p5-YAML-Syck p5-YAML-Syck: update to 1.32. 2020-09-07 17:26:15 +00:00
p5-YAML-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-YAML-XS textproc/p5-YAML-XS: import YAML::XS 0.82 2020-11-18 22:38:52 +00:00
par Upgrade par to 1.53.0 2020-07-13 06:01:33 +00:00
pdfgrep *: recursive bump for poppler 20.11.0 2020-11-21 09:34:53 +00:00
pear-Console_Table
pear-File_Find
php-enchant *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
php-excel
php-intl php56: Fix php-intl module build with textproc/icu-68.1 2020-11-16 12:10:05 +00:00
php-json Tell code explicitly how to find re2c. 2020-03-22 21:21:32 +00:00
php-mecab textproc: align variable assignments 2019-11-04 21:43:32 +00:00
php-pspell
php-sphinx
php-wddx Remove reference to php72. 2021-01-03 15:26:11 +00:00
php-xapian
php-xsl *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +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 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
pod2mdoc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
postgresql-autodoc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
psgml-mode
pugixml pugixml: update to 1.11.4. 2021-01-04 11:47:31 +00:00
pxp Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
py-4Suite textproc/py-4Suite: remove no-op pattern from SUBST_FILES 2020-05-02 10:28:42 +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
py-babelfish
py-biplist
py-black py-black: import version 20.8b1 2020-09-28 23:55:26 +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-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
py-colored py-colored: updated to 1.4.2 2019-12-11 19:04:15 +00:00
py-colour
py-commonmark py-commonmark: use egg, fix dependencies and category 2020-09-11 08:16:18 +00:00
py-creole
py-css-parser py-css-parser: updated to 1.0.6 2020-11-12 11:03:07 +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 More cleanup 2020-08-27 12:41:30 +00:00
py-defusedxml py-defusedxml: updated to 0.6.0 2019-04-29 10:37:14 +00:00
py-demjson py-demjson: fix building with Python 2.7; clean-up 2020-05-07 09:29:04 +00:00
py-dicttoxml
py-diff-match-patch *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-docutils *: reset maintainer for darcy 2020-07-13 20:05:11 +00:00
py-docx pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-dominate py-dominate: updated to 2.5.1 2020-05-17 20:56:29 +00:00
py-ejson
py-elementpath py-elementpath: updated to 2.1.0 2021-01-06 12:13:27 +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 Update to 6.0.2. From the changelog: 2020-10-26 09:36:24 +00:00
py-feedparser5 Move the final 2.7-compatible py-feedparser to py-feedparser5. 2020-10-13 12:16:38 +00:00
py-ftfy
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.1.1 2020-05-17 21:07:03 +00:00
py-HappyDoc *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-html5lib
py-humanize py-humanize: updated to 3.2.0 2020-12-14 06:06:03 +00:00
py-ICU py-ICU: updated to 2.6 2020-11-05 18:11:55 +00:00
py-inflection
py-iniparse py-iniparse: updated to 0.5 2020-06-18 21:45:06 +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-jellyfish py-jellyfish: updated to 0.7.2 2020-01-03 08:37:56 +00:00
py-jinja2 py-jinja2: updated to 2.11.2 2020-04-14 12:10:03 +00:00
py-jmespath py-jmespath: updated to 0.10.0 2020-05-13 05:02:51 +00:00
py-jsbeautifier py-jsbeautifier: updated to 1.13.0 2020-08-25 11:03:20 +00:00
py-jsonlib textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-jsonlib3
py-jsonpickle py-jsonpickle: updated to 1.4.2 2020-11-30 20:36:10 +00:00
py-jsonref pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-jsonrpc-server py-jsonrpc-server: Fix python bulk build breakage. 2020-12-09 20:51:19 +00:00
py-jsonrpclib textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-jsonrpclib-pelix py-jsonrpclib-pelix: updated to 0.4.2 2020-11-30 20:38:12 +00:00
py-jsonschema py-jsonschema: fix previous (wrong dependency replaced) 2020-09-04 20:34:30 +00:00
py-JWT pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-jxmlease py-jxmlease: updated to 1.0.3 2020-07-09 13:24:53 +00:00
py-Levenshtein
py-libxml2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-libxslt *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-loremipsum textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-lxml py-lxml: updated to 4.6.2 2020-11-27 09:03:42 +00:00
py-m2r py-m2r: updated to 0.2.1 2018-10-14 12:10:47 +00:00
py-manuel *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-marisa py-marisa: use PYTHON_VERSIONS_ACCEPTED 2019-04-28 07:12:34 +00:00
py-markdown *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-markdown-math py-markdown-math: update to 0.7 2020-09-12 00:22:35 +00:00
py-markdown2 py-markdown2: updated to 2.3.10 2020-10-22 08:08:09 +00:00
py-markovify py-markovify: updated to 0.8.3 2020-10-02 08:35:31 +00:00
py-markups whitespace 2020-09-12 12:22:01 +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
py-mkdocs-bootswatch
py-natsort py-natsort: updated to 7.1.0 2020-12-06 11:40:27 +00:00
py-nltk py-nltk: updated to 3.5 2020-08-10 14:43:10 +00:00
py-numpydoc Switch sphinx to versioned deps. 2019-10-21 21:55:03 +00:00
py-odfpy Always install man pages. Bump revision. 2020-08-18 01:01:56 +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-parse py-parse: updated to 1.15.0 2020-03-02 10:29:57 +00:00
py-parse_type py-parse_type: updated to 0.5.2 2019-08-13 11:00:35 +00:00
py-pdf-parser
py-pdfrw
py-peg2 py-peg2: add USE_LANGUAGES 2020-06-16 09:53:52 +00:00
py-phonenumbers py-phonenumbers: updated to 8.12.10 2020-10-02 19:14:33 +00:00
py-poyo pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-precis-i18n py-precis-i18n: mark as not for python 2.x 2020-09-12 06:33:47 +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.23.0 2020-12-08 15:03:58 +00:00
py-pybtex-docutils py-pybtex-docutils: updated to 0.2.2 2019-10-22 06:45:05 +00:00
py-pygments pytest from versioned depends 2020-05-17 21:38:45 +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.3 2020-11-26 13:44:17 +00:00
py-pysrt py-pysrt: updated to 1.1.2 2020-04-23 18:33:49 +00:00
py-pytoml py-pytoml: updated to 0.1.21 2019-08-12 07:28:46 +00:00
py-ramlfications
py-rapidjson py-rapidjson: updated to 1.0 2020-12-15 09:03:13 +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 28.0 2020-11-02 14:47:57 +00:00
py-rebulk py-rebulk: updated to 2.0.1 2020-05-17 21:04:37 +00:00
py-regex py-regex: updated to 2020.11.13 2020-12-15 08:57:29 +00:00
py-relatorio py-relatorio: updated to 0.9.2 2020-08-07 06:57:09 +00:00
py-rst2pdf py-rst2pdf: needs py-setuptools_scm 2020-10-27 10:18:39 +00:00
py-sgmllib3k Initial import of py-sgmllib3k, a quick, dirty, and unmaintained 2to3 2020-10-13 10:36:11 +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 *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-sphinx-autoapi py-sphinx-autoapi: update to 1.4.0. 2020-08-24 08:42:38 +00:00
py-sphinx-autodoc-typehints py-sphinx-autodoc-typehints: update to 1.10.3. 2020-04-06 08:06:30 +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 *: reset maintainer for darcy 2020-07-13 20:05:11 +00:00
py-sphinx1 pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-sphinxcontrib-applehelp textprox/py-sphinxcontrib*: Drop EXTRACT_USING=bsdtar 2020-03-12 17:20:43 +00:00
py-sphinxcontrib-bibtex py-sphinxcontrib-bibtex: updated to 1.0.0 2019-10-22 06:48:26 +00:00
py-sphinxcontrib-devhelp textprox/py-sphinxcontrib*: Drop EXTRACT_USING=bsdtar 2020-03-12 17:20:43 +00:00
py-sphinxcontrib-htmlhelp textprox/py-sphinxcontrib*: Drop EXTRACT_USING=bsdtar 2020-03-12 17:20:43 +00:00
py-sphinxcontrib-jsmath py-sphinxcontrib-jsmath: added version 1.0.1 2019-10-21 20:47:07 +00:00
py-sphinxcontrib-log-cabinet py-sphinxcontrib-log-cabinet: added version 1.0.1 2020-04-01 17:39:14 +00:00
py-sphinxcontrib-newsfeed Switch sphinx to versioned deps. 2019-10-21 22:11:33 +00:00
py-sphinxcontrib-qthelp py-sphinxcontrib-qthelp: updated to 1.0.3 2020-02-29 15:44:42 +00:00
py-sphinxcontrib-serializinghtml textprox/py-sphinxcontrib*: Drop EXTRACT_USING=bsdtar 2020-03-12 17:20:43 +00:00
py-sphinxcontrib-websupport pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-sphobjinv textproc/py-sphobjinv: import py-sphobjinv-2.0.1 2020-04-06 08:03:00 +00:00
py-tablib py-tablib: updated to 2.0.0 2020-05-17 21:26:11 +00:00
py-tabulate py-tabulate: updated to 0.8.7 2020-04-28 13:24:37 +00:00
py-Tempita
py-text-unidecode py-text-unidecode: updated to 1.3 2019-09-02 07:03:48 +00:00
py-textile pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-tinycss2 Use https for pythonhosted.org. 2019-07-09 11:29:30 +00:00
py-toml py-toml: updated to 0.10.2 2020-11-02 10:14:29 +00:00
py-ujson Mark packages that fail with Python 2.7 2020-12-09 09:30:56 +00:00
py-Unidecode py-Unidecode: updated to 1.1.2 2020-12-21 09:25:31 +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.18.1 2020-10-03 18:28:21 +00:00
py-vobject py-vobject: updated to 0.9.6.1 2018-08-07 06:09:09 +00:00
py-webencodings
py-Whoosh pytest from versioned depends 2020-05-17 21:38:45 +00:00
py-X py-X: update to 0.15 2020-03-01 02:56:41 +00:00
py-X2 py-X2: drop space padding in DESCR, whoops 2020-12-22 00:45:03 +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.3.7 2020-10-14 13:27:25 +00:00
py-xlwt
py-xml textproc: align variable assignments 2019-11-04 21:43:32 +00:00
py-xmlschema py-xmlschema: updated to 1.4.1 2021-01-03 10:03:33 +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.1 2020-03-21 08:37:55 +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 revbump from textproc/icu-68.1 2020-11-05 09:07:25 +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 Fix make syntax. 2020-08-27 12:29:11 +00:00
queequeg Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +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) Updated 0.11 to 0.15, NEWS.md unknown 2020-09-20 09:33:39 +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-hunspell (textproc/R-hunspell) import R-hunspell-3.0 2020-02-13 15:26:16 +00:00
R-jsonlite (textproc/R-jsonlite) Updated 1.6.0 to 1.7.1 2020-09-20 09:55:09 +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-rjson textproc/R-rjson: import R-rjson-0.2.20 2020-08-07 02:36:24 +00:00
R-rmarkdown (textproc/R-rmarkdown) Updated 2.1 to 2.3 2020-09-20 09:26:39 +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-spelling (textproc/R-spelling) import R-spelling-2.1 2020-02-13 15:19:44 +00:00
R-stringi *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +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 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
R-xmlparsedata (textproc/R-xmlparsedata) import R-xmlparsedata-1.0.3 2020-02-10 14:19:35 +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 revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
raptor2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
rarian *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
rasqal *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
redland *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
regexx
regxml
rfcutil *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ripgrep reset maintainer 2020-11-05 08:31:29 +00:00
rman rman: Honor CPPFLAGS and LDFLAGS. Bump. 2019-10-16 16:30:17 +00:00
robodoc textproc/robodoc: remove no-op SUBST block 2020-04-27 17:35:22 +00:00
rtf-tools textproc: align variable assignments 2019-11-04 21:43:32 +00:00
rtfm
rubber Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
ruby-actionpack-xml_parser textproc/ruby-actionpack-xml_parser: add package version 2.0.1 2020-05-25 15:17:54 +00:00
ruby-actiontext60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-albino
ruby-amrita all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-asciidoctor textproc/ruby-asciidoctor: update to 2.0.11 2020-11-03 05:05:12 +00:00
ruby-bluecloth
ruby-buftok
ruby-builder textproc/ruby-builder: update to 3.2.4 2020-06-15 15:02:11 +00:00
ruby-cabocha
ruby-classifier-reborn
ruby-coderay textproc/ruby-coderay: update to 1.1.3 2020-06-07 15:14:58 +00:00
ruby-csv textproc/ruby-csv: update to 3.1.7 2020-09-14 14:24:42 +00:00
ruby-diff-lcs textproc/ruby-diff-lcs: update to 1.4.4 2020-09-14 14:26:02 +00:00
ruby-erubi textproc/ruby-erubi: update to 1.9.0 2020-03-24 16:46:59 +00:00
ruby-escape
ruby-fast-stemmer
ruby-fastercsv
ruby-feed-normalizer
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.1.2 2020-03-24 16:49:51 +00:00
ruby-hikidoc
ruby-hpricot Update wiki.github.com HOMEPAGEs. 2019-07-08 10:47:26 +00:00
ruby-html-parser
ruby-htmlentities textproc/ruby-htmlentities: add package version 4.3.4 2020-05-25 14:21:57 +00:00
ruby-htree
ruby-inifile textproc/ruby-inifile: add version 3.0.0 package 2020-02-11 14:59:24 +00:00
ruby-itex2MML
ruby-json textproc/ruby-json: update to 2.3.1 2020-09-14 16:08:12 +00:00
ruby-json-pure textproc/ruby-json-pure: update to 2.3.1 2020-09-14 16:09:28 +00:00
ruby-kramdown ruby-kramdown: Update to 2.3.0 2020-08-14 04:48:28 +00:00
ruby-kramdown-parser-gfm textproc/ruby-kramdown-parser-gfm: update to 1.0.1 2020-03-24 16:52:47 +00:00
ruby-levenshtein
ruby-libxml *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ruby-mab
ruby-marisa
ruby-markaby
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.15.0 2020-09-14 16:06:03 +00:00
ruby-native-hyperestraier
ruby-nokogiri ruby-nokogiri: update to 1.11.1. 2021-01-08 17:09:41 +00:00
ruby-nokogumbo textproc/ruby-nokogumbo: import ruby26-nokogumbo-2.0.2 2020-04-14 16:04:41 +00:00
ruby-nori textproc/ruby-nori: add version 2.6.0 package 2020-01-19 09:24:35 +00:00
ruby-nqxml textproc/ruby-nqxml: allow to skip rinstall SUBST block 2020-05-10 14:09:25 +00:00
ruby-oniguruma
ruby-plist textproc/ruby-plist: update to 3.5.0 2020-03-24 16:58:52 +00:00
ruby-pure-hyperestraier
ruby-rails-dom-testing textproc/ruby-rails-dom-testing: drop support rails51 2020-09-10 16:49:20 +00:00
ruby-rdiscount textproc/ruby-rdiscount: update to 2.2.0.2 2020-09-14 15:05:28 +00:00
ruby-rdtool all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
ruby-redcarpet textproc/ruby-redcarpet: update to 3.5.0 2020-03-24 17:00:50 +00:00
ruby-redcloth all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-review textproc/ruby-review: update to 4.2.0 2020-09-14 15:10:18 +00:00
ruby-rison
ruby-rttool
ruby-safe_yaml textproc/ruby-safe_yaml: update to 1.0.5 2020-03-24 17:03:36 +00:00
ruby-sary *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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.5 2020-03-24 17:06:15 +00:00
ruby-stringex1
ruby-strings textproc/ruby-strings: update to 0.2.0 2020-09-14 00:08:12 +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
ruby-temple textproc/ruby-temple: add USE_LANGUAGES 2020-03-24 17:08:44 +00:00
ruby-terminal-table Add "USE_LANGUAGES= # noen" 2020-06-21 14:54:50 +00:00
ruby-text
ruby-textpow
ruby-tilt textproc/ruby-tilt: update to 2.0.10 2020-03-24 17:18:01 +00:00
ruby-toml
ruby-treetop textproc/ruby-treetop: update to 1.6.11 2020-09-14 15:13:41 +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: update to 1.7.0 2020-03-24 17:24:23 +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 textproc/ruby-will-paginate: update to 3.3.0 2020-03-24 18:18:23 +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
ruby-xpath ruby-xpath: Update to 3.2.0. Required to unbreak ruby-capybara. 2018-12-17 19:46:06 +00:00
ruby-xslt *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +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/ruby-yard: update to 0.9.25 2020-05-09 06:00:41 +00:00
sablotron *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sary *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
saxon *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
scdoc Remove -static in textproc/scdoc to fix Darwin 2020-08-31 20:01:12 +00:00
scew all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
scrollkeeper-dtd *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
sdop Add sdop 0.80 2018-06-15 13:12:30 +00:00
serd serd: Update to 0.30.6 2020-11-24 14:29:06 +00:00
sgrep all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
shared-desktop-ontologies *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
sift Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
sonnet *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
soprano *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
sord sord: Update to 0.16.6 2020-11-24 14:10:28 +00:00
source-highlight *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
sphinxsearch *: reset MAINTAINER for fhajny on his request 2020-05-27 19:37:36 +00:00
split-thai *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
stardic
stava textproc/stava: import package 2020-11-28 20:54:51 +00:00
sub2srt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sublib *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
subliminal Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
subtitleripper
swath Update to swath-0.6.1nb3 2020-08-28 19:35:46 +00:00
syntax-highlighting *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
tcl-dom *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
tcl-expat textproc/tcl-expat: fix some pkglint warnings 2020-08-09 22:14:36 +00:00
tcl-tDOM tcl-tDOM: Update to 0.9.1 2019-10-06 03:25:17 +00:00
tcl-xapian
tcl-xml
tei
tei-p5-schema
tei-xsl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
tex-latexdiff-doc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
tex-lwarp texlive: update to 2020 2020-05-10 03:56:37 +00:00
tex-lwarp-doc texlive: update to 2020 2020-05-10 03:56:37 +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 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
tex-xindy-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-xmltex tex-*: revbump for dependency change tex-tetex -> tex-texlive-scripts 2020-05-10 04:31:36 +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 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +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 revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
translate-toolkit Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
troffcvt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
uchardet textproc: Add uchardet 2020-06-09 13:53:00 +00:00
ugrep ugrep: update to 3.1.1. 2021-01-04 12:15:30 +00:00
unac
uncrustify uncrustify: Update to 0.72.0 2020-11-24 13:16: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 13.0.0. 2020-10-03 15:41:30 +00:00
unicode-emoji unicode-emoji: update to 13.1. 2020-10-03 15:42:44 +00:00
unroff all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
untex
uriparser uriparser: Update to 0.9.4 2020-06-02 09:59:45 +00:00
urlview
verify-synopsis
vis
wbxml2
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 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
writer2latex
xalan-j all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xapian Remove broken cross-compile check (builds a bundle, complains it can't 2020-11-30 14:05:48 +00:00
xapian-omega *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xerces-c xerces-c: update to 3.2.3. 2020-04-12 21:24:54 +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.4 2020-10-19 22:49:43 +00:00
xfpt Add xfpt 0.09 2018-06-15 13:08:52 +00:00
xhtml Remove superfluous specification characters from pax invocations 2020-11-28 01:20:03 +00:00
xindy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xml-coreutils *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
xml2
xml2doc *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xmlada textproc: align variable assignments 2019-11-04 21:43:32 +00:00
xmlcatmgr *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
xmlindent all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
xmlrpc-c revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
xmlstarlet *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xmlto *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xmltoman *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xmltooling *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
xp
xqilla *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
xslide *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
xt
xxdiff *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
xxdiff-scripts Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
yamcha *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
yaml-cpp yaml-cpp: Update to 0.6.3 2019-10-01 13:11:50 +00:00
yelp-tools Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
yelp-xsl textproc: align variable assignments 2019-11-04 21:43:32 +00:00
yodl Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
yq Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
zoem all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
Makefile Add bk 2021-01-01 14:01:03 +00:00