pkgsrc/textproc
maya 74e2dddb22 ripgrep: update to 0.10.0
ripgrep 0.10.0:

This is a new minor version release of ripgrep that contains some major new
features, a huge number of bug fixes, and is the first release based on
libripgrep. The entirety of ripgrep's core search and printing code has been
rewritten and generalized so that anyone can make use of it.

Major new features include PCRE2 support, multi-line search and a JSON output
format.

BREAKING CHANGES:

    The minimum version required to compile Rust has now changed to track the
    latest stable version of Rust. Patch releases will continue to compile with
    the same version of Rust as the previous patch release, but new minor
    versions will use the current stable version of the Rust compile as its
    minimum supported version.
    The match semantics of -w/--word-regexp have changed slightly. They used
    to be \b(?:<your pattern>)\b, but now it's
    (?:^|\W)(?:<your pattern>)(?:$|\W). This matches the behavior of GNU grep
    and is believed to be closer to the intended semantics of the flag. See
    #389 for more details.

Feature enhancements:

    FEATURE #162:
    libripgrep is now a thing. The primary crate is
    grep.
    FEATURE #176:
    Add -U/--multiline flag that permits matching over multiple lines.
    FEATURE #188:
    Add -P/--pcre2 flag that gives support for look-around and backreferences.
    FEATURE #244:
    Add --json flag that prints results in a JSON Lines format.
    FEATURE #321:
    Add --one-file-system flag to skip directories on different file systems.
    FEATURE #404:
    Add --sort and --sortr flag for more sorting. Deprecate --sort-files.
    FEATURE #416:
    Add --crlf flag to permit $ to work with carriage returns on Windows.
    FEATURE #917:
    The --trim flag strips prefix whitespace from all lines printed.
    FEATURE #993:
    Add --null-data flag, which makes ripgrep use NUL as a line terminator.
    FEATURE #997:
    The --passthru flag now works with the --replace flag.
    FEATURE #1038-1:
    Add --line-buffered and --block-buffered for forcing a buffer strategy.
    FEATURE #1038-2:
    Add --pre-glob for filtering files through the --pre flag.

Bug fixes:

    BUG #2:
    Searching with non-zero context can now use memory maps if appropriate.
    BUG #200:
    ripgrep will now stop correctly when its output pipe is closed.
    BUG #389:
    The -w/--word-regexp flag now works more intuitively.
    BUG #643:
    Detection of readable stdin has improved on Windows.
    BUG #441,
    BUG #690,
    BUG #980:
    Matching empty lines now works correctly in several corner cases.
    BUG #764:
    Color escape sequences now coalesce, which reduces output size.
    BUG #842:
    Add man page to binary Debian package.
    BUG #922:
    ripgrep is now more robust with respect to memory maps failing.
    BUG #937:
    Color escape sequences are no longer emitted for empty matches.
    BUG #940:
    Context from the --passthru flag should not impact process exit status.
    BUG #984:
    Fixes bug in ignore crate where first path was always treated as a symlink.
    BUG #990:
    Read stderr asynchronously when running a process.
    BUG #1013:
    Add compile time and runtime CPU features to --version output.
    BUG #1028:
    Don't complete bare pattern after -f in zsh.


ripgrep 0.9.0:

BREAKING CHANGES:

    When --count and --only-matching are provided simultaneously, the
    behavior of ripgrep is as if the --count-matches flag was given. That is,
    the total number of matches is reported, where there may be multiple matches
    per line. Previously, the behavior of ripgrep was to report the total number
    of matching lines. (Note that this behavior diverges from the behavior of
    GNU grep.)
    Octal syntax is no longer supported. ripgrep previously accepted expressions
    like \1 as syntax for matching U+0001, but ripgrep will now report an
    error instead.
    The --line-number-width flag has been removed. Its functionality was not
    carefully considered with all ripgrep output formats.
    See #795 for more
    details.

Feature enhancements:

    Added or improved file type filtering for Android, Bazel, Fuschia, Haskell,
    Java and Puppet.
    FEATURE #411:
    Add a --stats flag, which emits aggregate statistics after search results.
    FEATURE #646:
    Add a --no-ignore-messages flag, which suppresses parse errors from reading
    .ignore and .gitignore files.
    FEATURE #702:
    Support \u{..} Unicode escape sequences.
    FEATURE #812:
    Add -b/--byte-offset flag that shows the byte offset of each matching line.
    FEATURE #814:
    Add --count-matches flag, which is like --count, but for each match.
    FEATURE #880:
    Add a --no-column flag, which disables column numbers in the output.
    FEATURE #898:
    Add support for lz4 when using the -z/--search-zip flag.
    FEATURE #924:
    termcolor has moved to its own repository:
    https://github.com/BurntSushi/termcolor
    FEATURE #934:
    Add a new flag, --no-ignore-global, that permits disabling global
    gitignores.
    FEATURE #967:
    Rename --maxdepth to --max-depth for consistency. Keep --maxdepth for
    backwards compatibility.
    FEATURE #978:
    Add a --pre option to filter inputs with an arbitrary program.
    FEATURE fca9709d:
    Improve zsh completion.

Bug fixes:

    BUG #135:
    Release portable binaries that conditionally use SSSE3, AVX2, etc., at
    runtime.
    BUG #268:
    Print descriptive error message when trying to use look-around or
    backreferences.
    BUG #395:
    Show comprehensible error messages for regexes like \s*{.
    BUG #526:
    Support backslash escapes in globs.
    BUG #795:
    Fix problems with --line-number-width by removing it.
    BUG #832:
    Clarify usage instructions for -f/--file flag.
    BUG #835:
    Fix small performance regression while crawling very large directory trees.
    BUG #851:
    Fix -S/--smart-case detection once and for all.
    BUG #852:
    Be robust with respect to ENOMEM errors returned by mmap.
    BUG #853:
    Upgrade grep crate to regex-syntax 0.6.0.
    BUG #893:
    Improve support for git submodules.
    BUG #900:
    When no patterns are given, ripgrep should never match anything.
    BUG #907:
    ripgrep will now stop traversing after the first file when --quiet --files
    is used.
    BUG #918:
    Don't skip tar archives when -z/--search-zip is used.
    BUG #934:
    Don't respect gitignore files when searching outside git repositories.
    BUG #948:
    Use exit code 2 to indicate error, and use exit code 1 to indicate no
    matches.
    BUG #951:
    Add stdin example to ripgrep usage documentation.
    BUG #955:
    Use buffered writing when not printing to a tty, which fixes a performance
    regression.
    BUG #957:
    Improve the error message shown for --path separator / in some Windows
    shells.
    BUG #964:
    Add a --no-fixed-strings flag to disable -F/--fixed-strings.
    BUG #988:
    Fix a bug in the ignore crate that prevented the use of explicit ignore
    files after disabling all other ignore rules.
    BUG #995:
    Respect $XDG_CONFIG_DIR/git/config for detecting core.excludesFile.
2019-04-12 08:08:48 +00:00
..
aha
aiksaurus textproc/aiksaurus: add missing LICENSE entry 2019-01-10 03:18:20 +00:00
ansifilter
antiword
artha Port artha to enchant2, bump revision. 2018-11-27 14:29:27 +00:00
asciidir Added textproc/asciidir version 0.6 2018-07-26 14:27:23 +00:00
asciidoc asciidoc: removed unused REPLACE_PYTHON line 2018-07-20 07:26:43 +00:00
aspell Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
aspell-af
aspell-am
aspell-ar
aspell-ast
aspell-az
aspell-be
aspell-bg
aspell-bn
aspell-br
aspell-ca
aspell-cs
aspell-csb
aspell-cy
aspell-da Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
aspell-de
aspell-de-alt
aspell-el
aspell-en
aspell-eo
aspell-es
aspell-et
aspell-fi
aspell-fo Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
aspell-fr
aspell-fy
aspell-ga
aspell-gd
aspell-gl
aspell-grc
aspell-gu
aspell-gv
aspell-he
aspell-hi
aspell-hil
aspell-hr
aspell-hsb
aspell-hu
aspell-hus
aspell-hy
aspell-ia
aspell-id
aspell-is
aspell-it
aspell-kn
aspell-ku
aspell-ky
aspell-la
aspell-lt
aspell-lv
aspell-mg
aspell-mi
aspell-mk
aspell-ml
aspell-mn
aspell-mr
aspell-mt
aspell-nb
aspell-nl
aspell-nn
aspell-ny
aspell-or
aspell-pa
aspell-pl
aspell-pt_BR
aspell-pt_PT Sort PLIST files. 2018-01-01 22:29:15 +00:00
aspell-qu
aspell-ro
aspell-ru
aspell-rw
aspell-sc aspell-sc: Comment out dead HOMEPAGE 2017-11-15 22:09:10 +00:00
aspell-sk
aspell-sl
aspell-sr
aspell-sv
aspell-sw
aspell-ta
aspell-te Sort PLIST files. 2018-01-01 22:29:15 +00:00
aspell-tet
aspell-tk
aspell-tl
aspell-tn
aspell-tr
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
bibclean
biblook
bibparse
bsdgrep-devel
btparse Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
c2html Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
cabocha
catdoc
catdoc-tk Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
cawf
cdif Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
chasen
chasen-base
cityhash Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
cjose Add a package for cjose-0.6.1. 2019-03-16 08:03:56 +00:00
cldr-emoji-annotation cldr-emoji-annotation: update to 34.0.0.0. 2019-03-01 23:06:30 +00:00
cmark cmark: updated to 0.29.0 2019-04-09 06:04:13 +00:00
cmigemo Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
coccigrep
colorit
convertlit
CRF++
crimson
crush-tools *: update email for fhajny 2018-12-15 21:12:18 +00:00
csharp-xapian Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
csvkit
csvtomd
csvutils
cwdiff
dadadodo
db2latex
dblatex extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
dbtoepub pkgsrc: bump PKGREVISION by changing Ruby default version 2018-02-25 12:25:47 +00:00
detex
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 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
dict-server textproc/dict-server: dump pkgrevision due to ABI change in libmaa 2018-02-28 21:03:06 +00:00
dictem
diction
diffsplit Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
diffstat diffstat: update to 1.62. 2019-02-15 19:55:58 +00:00
dikt revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
discount Update to 2.2.4. From the changelog: 2018-08-27 20:46:18 +00:00
docbook
docbook-simple docbok-simple: follow redirect 2018-03-18 08:05:15 +00:00
docbook-website
docbook-xml
docbook-xsl Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
docbook2mdoc
docbook2odf Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
doclifter
dsssl-docbook-modular Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
dtdparse Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
DWB
eb Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
eblook
ebook-tools Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
ebview Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
emacs-dict-client
emacs-muse
enca
enchant textproc/enchant: Disable hspell/uspell/voikko explicitly rather than relying 2018-11-22 14:56:07 +00:00
enchant2 enchant2: add Darwin specific PLIST 2019-03-17 11:00:29 +00:00
epubcheck
epubpreflight
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: update to 2.2.6. 2018-08-20 05:24:49 +00:00
expatobjc
ezxml
FlightCrew revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
flyspell
fmtlib fmtlib: updated to 5.3.0 2019-02-26 10:58:25 +00:00
fop fop: SUBST in pre-configure doesn't work when NO_CONFIGURE=yes 2018-09-27 22:44:31 +00:00
freepwing Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
freexl freexl: updated to 1.0.5 2018-02-27 06:48:22 +00:00
gdome2
glimpse
gnome-doc-utils extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
gnome-spell Revbump for libcanberra gstreamer change. 2018-11-29 11:21:45 +00:00
gnome-subtitles Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
go-chroma Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-diff Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-glob Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-inflect Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-md2man Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-mmark Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-prose Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-regexp2 Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-runewidth Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-sentences Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-tablewriter Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
go-text Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
grep Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
grepcidr
groff Update to 1.22.4 2019-04-01 16:48:37 +00:00
groonga pkgsrc: bump PKGREVISION by changing Ruby default version 2018-02-25 12:25:47 +00:00
gsed gsed: update to 4.7. 2019-02-13 19:53:52 +00:00
gspell *: recursive bump for vala-0.44 2019-03-25 13:56:25 +00:00
gtk-doc revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
gtkspell Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
gtkspell3 Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
gutcheck
GutenMark
GutenMark-words
halibut Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +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
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 revbump from textproc/icu 2019-04-03 00:32:25 +00:00
highway
hre Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
hs-attoparsec
hs-blaze-html
hs-blaze-markup
hs-case-insensitive
hs-cgrep
hs-hscolour
hs-pandoc-types
hs-parsec Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
hs-polyparse
hs-regex-base
hs-regex-posix
hs-stringsearch
hs-tagsoup
hs-texmath
hs-xml
html
html2text
html2wml Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
hugs-HaXml
hunspell Update hunspell to 1.7.0. 2018-11-16 13:02:20 +00:00
hunspell-af_ZA
hunspell-ar
hunspell-bg_BG
hunspell-ca_ES
hunspell-cs_CZ
hunspell-cy_GB
hunspell-da_DK
hunspell-de Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +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
hunspell-id_ID
hunspell-it_IT
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 hyperestraier: Fix CFLAGS. 2017-12-18 14:31:55 +00:00
hyphen Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
icu icu: Fix build on SunOS. 2019-04-08 21:39:43 +00:00
igor Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
iksemel Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
intltool Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ipadic
isearch Sort PLIST files. 2018-01-01 22:29:15 +00:00
iso-codes Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
iso8879
iso12083 Sort PLIST files. 2018-01-01 22:29:15 +00:00
ispell
ispell-ca ispell-ca: comment out dead sites 2017-09-19 08:25:23 +00:00
ispell-de Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ispell-emacs
ispell-en_GB
ispell-es
ispell-fr
ispell-ga
ispell-gl
ispell-ku
ispell-lt extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
ispell-pl
ispell-pt_BR
ispell-ro Sort PLIST files. 2018-01-01 22:29:15 +00:00
ispell-ru
ispell-ru-io
ispell-sk
ispell-sv
itex2MML
itstool itstool: update to 2.0.6. 2019-04-07 21:37:51 +00:00
ja-grep Sort PLIST files. 2018-01-01 22:29:15 +00:00
ja-groff Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ja-sed
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: Update to 1.2 2019-01-18 18:00:54 +00:00
jrep
json-c json-c: updated to 0.13.1 2018-08-04 09:53:05 +00:00
json-glib Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
json-schema json-schema: update to 1.2. 2019-04-09 07:33:45 +00:00
json-yaml json-yaml: Update textproc/json-yaml to 1.1.2 2018-12-06 19:41:08 +00:00
jsoncpp jsoncpp: update to 1.8.4nb2. 2019-04-09 07:08:18 +00:00
kakasi Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
kapidox kapidox: update to 5.47.0 2018-06-21 06:49:18 +00:00
kbanner
kcodecs Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
kcompletion Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
latex2html Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
LDoc
libclucene revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
libcroco Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libcsv
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.50. From the changelog: 2019-04-04 14:14:28 +00:00
liblinebreak
liblrdf revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
libnxml revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
libodfgen revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
libpinyin Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libplist extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
libunicode Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libunistring libunistring: update to 0.9.10. 2018-05-27 12:38:19 +00:00
libxls libxls: Import libxls-1.5.0 as textproc/libxls 2019-02-11 21:55:27 +00:00
libxlsxwriter libxlsxwriter: Update to 0.8.5 2019-02-11 18:30:47 +00:00
libxml Sort PLIST files. 2018-01-01 22:29:15 +00:00
libxml++ Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
libxml++1 libxml++1: Specify C++03, not C++11 clean. 2018-02-07 16:47:14 +00:00
libxml2 libxml2: updated to 2.9.9 2019-01-09 19:09:02 +00:00
libxslt libxslt: updated to 1.1.33 2019-01-09 19:12:14 +00:00
libyaml libyaml: Switch to the new distfile for the same version 2019-04-04 23:54:08 +00:00
link-grammar Update to 5.5.1 2018-10-07 23:21:26 +00:00
lit2epub
lout
lowdown lowdown: update to 0.4.1. From Charlotte Koch. 2018-10-17 07:01:39 +00:00
lq-sp Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
lua-cjson
lua-expat
lua-slnunicode
lua-xapian Update xapian bindings for 1.4.6. 2018-07-06 16:23:11 +00:00
lucene++ revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
makeindexk makeindexk: update to 2.15nb10 2018-05-13 12:18:55 +00:00
makeztxt
man2html Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
mandoc mandoc: update to 1.14.5. 2019-03-10 11:52:56 +00:00
marisa
Markdown Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
markdown-mode
markdown2social extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
mecab
mecab-base
mecab-ipadic
mecab-jumandic
mecab-naistdic
mendexk mendexk: update to 2.6fnb8 2018-05-13 12:20:33 +00:00
metauml
migemo
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 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
mxml
mythes Revbump hunspell reverse-depends after update. 2018-11-16 13:02:44 +00:00
namazu Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
nbsed
ndtpd Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
nxml-mode emacs22*, emacs23*, emacs24*: remove unmaintained emacs versions 2017-09-29 12:40:26 +00:00
o3read
ocaml-csv Updated texstproc/ocaml-csv for dune compatibility. 2019-03-05 19:40:33 +00:00
ocaml-easy-format Updated textproc/ocaml-easy-format for dune compatibility. 2019-03-05 17:35:52 +00:00
ocaml-expat Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +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 for dune compatibility. 2019-03-05 17:08:08 +00:00
ocaml-text Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
ocaml-textutils Removed comments in ocaml Makefiles for now-added dependencies 2019-03-25 09:38:57 +00:00
ocaml-tyxml Updated textproc/ocaml-tyxml for dune compatibility. 2019-03-05 17:10:04 +00:00
ocaml-uchar Updated devel/ocaml-uchar to version 0.0.2. 2018-11-27 16:46:05 +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 2019-04-03 00:32:25 +00:00
odt2tex Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
oniguruma oniguruma: updated to 6.9.1 2018-12-12 12:46:58 +00:00
openjade Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
opensp Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ots
p5-ack Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Alien-Hunspell Revbump hunspell reverse-depends after update. 2018-11-16 13:02:44 +00:00
p5-Biblio-EndnoteStyle Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-cabocha Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-CAM-PDF Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Convert-ASCII-Armour Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Convert-ASN1 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Convert-BER Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Convert-PEM Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Convert-Translit Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Cz-Cstools Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Data-FormValidator Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Data-HexDump Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Dist-Zilla-Plugin-PodWeaver Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Encode Update to 3.01 2019-04-07 07:28:23 +00:00
p5-Encode-Detect Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Encode-EUCJPASCII Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Encode-HanExtra Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Encode-JIS2K Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Encode-Locale Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Feed-Find Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-File-ReadBackwards Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Filter Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-FormValidator-Simple Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-highlight Unset PKGREVISION after libhighlight update. 2018-10-08 13:52:20 +00:00
p5-HTML-FormatText-WithLinks Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTML-FormatText-WithLinks-AndTables Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-iCal-Parser Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwalify Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-libxml Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Fathom Update to 1.22 2018-11-10 06:36:24 +00:00
p5-Lingua-EN-FindNumber Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Inflect Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Inflect-Number Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Inflect-Phrase Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Number-IsOrdinal Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Numbers-Ordinate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Sentence p5-Lingua-EN-Sentence: update to 0.31. 2018-08-24 09:34:30 +00:00
p5-Lingua-EN-Syllable Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-EN-Tagger p5-Lingua-EN-Tagger: update to 0.30. 2018-08-29 06:29:10 +00:00
p5-Lingua-EN-Words2Nums Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Identify Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Preferred Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-PT-Stemmer Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Stem Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Stem-Fr Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Stem-It Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Stem-Ru Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Stem-Snowball Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Stem-Snowball-Da Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Lingua-Translit Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-List-Compare Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Locale-Maketext-Gettext Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-marisa Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-mecab Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-mobiperl Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-MultiMarkdown Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-native-hyperestraier Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Net-Dict Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Net-IDN-Encode Update to 2.500 2018-10-20 13:34:10 +00:00
p5-Number-Format Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Number-Spell Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-ODF-lpOD Add a package for p5-ODF-lpOD. 2018-12-20 13:32:55 +00:00
p5-PDF Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PDF-API2 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PDF-Create Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PDF-Reuse Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PDF-Reuse-Barcode Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PDF-Table Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Abstract Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Coverage Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Coverage-TrustPod Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Elemental Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Elemental-PerlMunger Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Escapes Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Eventual Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Markdown Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Parser Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-POM Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Readme Update to 1.2.3 2018-11-10 06:29:37 +00:00
p5-Pod-Simple Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Spell Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Spell-CommonMistakes Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Strip Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Pod-Tests Remove patch that's for 5.26.0 and no longer applies. 2019-03-17 23:17:32 +00:00
p5-Pod-Tree Update to 1.31 2019-03-02 10:38:42 +00:00
p5-Pod-Weaver Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-POD2-Base Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-podlators Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PPI-HTML Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-PPIx-QuoteLike Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Publican Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Regexp-Common Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Regexp-Copy Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Search-Indexer Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Search-Xapian Update to 1.2.25.2. From the changelog: 2018-09-26 16:50:18 +00:00
p5-SGMLS Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Snowball-Norwegian Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Snowball-Swedish Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Approx Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-BufferStack Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-CamelCase Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Compare-ConstantTime Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-CRC32 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Errf Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Expand Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Flogger Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Formatter Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Koremutake Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-RewritePrefix Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-ShellQuote Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Similarity Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-ToIdentifier-EN Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Trim Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-String-Truncate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Swim Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Syntax-Highlight-Engine-Kate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Syntax-SourceHighlight revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
p5-Template-Declare Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Template-Plugin-Autoformat Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Template-Plugin-CSV Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Template-Plugin-Latex Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Template-Plugin-Number-Format Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Template-Plugin-YAML Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Template-Tiny Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Test-YAML Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Affixes Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Aligner Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Aspell Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Autoformat Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Balanced Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-BibTeX Update to 0.87 2019-04-07 07:33:22 +00:00
p5-Text-Brew Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-CharWidth Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-ChaSen Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Context-EitherSide Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-CSV Update to 1.99 2019-01-25 12:55:27 +00:00
p5-Text-CSV-Encoded Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-CSV-Hash Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-CSV-Simple Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-CSV_XS Update to 1.39 2019-04-07 07:38:42 +00:00
p5-Text-DelimMatch Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-DHCPLeases Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Diff Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Diff-HTML p5-Text-Diff-HTML: update to 0.08. 2018-08-24 09:35:51 +00:00
p5-Text-Diff-Parser Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-DoubleMetaphone Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Emoticon Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Emoticon-MSN Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-FindIndent Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Format Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-German Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Glob Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Hunspell Revbump hunspell reverse-depends after update. 2018-11-16 13:02:44 +00:00
p5-Text-Kakasi Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-LevenshteinXS Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Markdown Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Markdown-Discount Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Microformat Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-MicroTemplate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Ngram Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Nimble Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Patch Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-PDF Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Quoted Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-RecordParser Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Reflow Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Reform Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-RewriteRules Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Roman Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Sass Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Shellwords Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-SimpleTable Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-SimpleTable-AutoWidth Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Soundex Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-SpellChecker Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Table Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Tabs+Wrap Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-TabularDisplay Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Template Update to 1.55 2019-03-02 14:34:08 +00:00
p5-Text-Textile Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Trac Update to 0.24 2019-01-26 02:08:02 +00:00
p5-Text-Typography Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Unaccent Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Unidecode Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-vCard Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-vFile-asData Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-VisualWidth-PP Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-WagnerFischer Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-WikiCreole Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-WikiFormat Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-WrapI18N Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Wrapper Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-Xslate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Text-xSV Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Tie-Handle-Offset Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Unicode-CaseFold Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Unicode-LineBreak Update to 2019.001 2019-01-26 02:01:44 +00:00
p5-Win32-ShellQuote Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Xapian Parameterize loadable module extension. Should fix packaging on non-Darwin. 2018-09-10 10:30:06 +00:00
p5-XML-Atom Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Atom-SimpleFeed Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Atom-Stream Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-AutoWriter Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Bare Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Catalog Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Checker Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Clean Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Compile Update to 1.61 2018-12-08 08:41:04 +00:00
p5-XML-Compile-Cache Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Compile-SOAP Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Compile-SOAP12 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Compile-Tester Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Descent Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-DOM Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Dumper Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Elemental Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Encoding Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Entities Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Feed Update to 0.59 2019-04-07 08:00:26 +00:00
p5-XML-FeedPP Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Filter-BufferText Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Filter-DetectWS Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Filter-DOMFilter-LibXML Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Filter-Reindent Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Filter-SAXT Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Generator Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Grove Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Handler-Trees Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Handler-YAWriter Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-LibXML Update to 2.0134 2019-03-16 13:22:28 +00:00
p5-XML-LibXML-Iterator Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-LibXML-Simple Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-LibXSLT Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-NamespaceSupport Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Node Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-NodeFilter Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Parser Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Parser-Lite p5-XML-Parser-Lite: update to 0.722. 2018-08-24 09:36:54 +00:00
p5-XML-Parser-Lite-Tree Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Rabbit Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-RAI Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-RegExp Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-RSS Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-RSS-Parser Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-SAX Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-SAX-Base Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-SAX-Expat Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-SAX-ExpatXS Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-SAX-Writer Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-SemanticDiff Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Simple Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Stream Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Tidy Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Tiny Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-TokeParser Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-TreeBuilder Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-TreePP Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Twig Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-UM Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Writer Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-Writer-String Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-XPath Update to 1.44 2018-10-20 13:20:19 +00:00
p5-XML-XPathEngine Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-XQL Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-XSLT Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-XML-XUpdate-LibXML Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-yamcha Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-YAML Update to 1.27 2018-11-10 03:24:31 +00:00
p5-YAML-LibYAML Update to 0.76 2019-01-26 01:58:06 +00:00
p5-YAML-Syck Update to 1.31 2018-11-10 03:28:47 +00:00
p5-YAML-Tiny Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
par
pdfgrep *: recursive bump for poppler 0.75 -> 0.74 downgrade 2019-03-27 11:23:15 +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
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 Sort PLIST files. 2018-01-01 22:29:15 +00:00
php-pspell
php-sphinx
php-wddx
php-xapian
php-xsl pkgsrc: reset PKGREVISION 2017-10-27 08:49:00 +00:00
php-yaml Drop support for php70 2019-01-14 13:06:10 +00:00
po-mode
po4a Update to 0.54. From the changelog: 2018-08-28 10:06:34 +00:00
pod2mdoc Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
postgresql-autodoc Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
psgml-mode
pugixml pugixml: update to 1.9. 2018-04-16 21:27:54 +00:00
pxp Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
py-4Suite extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-acora py-acora: updated to 2.1 2017-12-21 14:09:13 +00:00
py-alabaster py-alabaster: updated to 0.7.12 2018-10-07 10:20:22 +00:00
py-antlr4 py-antlr4 no longer works with Python 2.x. 2018-12-27 15:10:51 +00:00
py-anyjson
py-babelfish
py-biplist py-biplist: updated to 1.0.3 2017-12-17 16:17:54 +00:00
py-cabocha extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-cElementTree
py-cjson py-cjson: update to 1.2.1 2017-09-28 16:21:21 +00:00
py-cmTemplate extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-color
py-colored textproc/py-colored: use egg.mk. 2018-07-29 13:45:22 +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.0.3 2018-01-01 21:28:59 +00:00
py-cssselect2 py-cssselect2: Update to 0.2.1. 2018-11-12 12:51:05 +00:00
py-cssutils
py-deepdiff py-deepdiff: update to 3.3.0 2017-09-29 11:06:32 +00:00
py-defusedxml
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
py-docx py-docx: updated to 0.8.10 2019-01-09 08:38:40 +00:00
py-dominate py-dominate: updated to 2.3.5 2019-02-18 09:13:34 +00:00
py-ejson
py-elementtree extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-empy extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-enchant py-enchant: update to 1.6.11 2017-10-07 07:05:49 +00:00
py-eradicate py-eradicate: updated to 1.0 2019-01-22 10:44:10 +00:00
py-Excelerator extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-expat
py-feedparser
py-ftfy
py-generateDS py-generateDS: update to 2.28b 2017-10-08 09:10:11 +00:00
py-gnosis-utils extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-guessit py-guessit: updated to 3.0.3 2018-11-28 14:48:15 +00:00
py-HappyDoc extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-html-sanitizer py-html-sanitizer: updated to 1.6.4 2019-02-12 16:39:34 +00:00
py-html2text py-html2text: updated to 2018.9.1 2018-04-14 09:02:57 +00:00
py-html5-parser py-html5-parser: update to 0.4.5. 2018-04-29 10:03:26 +00:00
py-html5lib py-html5lib: updated to 1.0.1 2018-02-26 08:24:42 +00:00
py-humanize
py-inflection
py-iniparse extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +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.6.1 2018-04-30 06:43:15 +00:00
py-jinja2 py-jinja2: updated to 2.10.1 2019-04-07 16:05:38 +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.9.1 2019-04-01 10:26:35 +00:00
py-jsonlib extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-jsonlib3
py-jsonpickle py-jsonpickle: updated to 1.1 2019-01-25 13:35:39 +00:00
py-jsonref py-jsonref: updated to 0.2 2018-11-20 11:52:43 +00:00
py-jsonrpclib extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-jsonschema py-jsonschema: updated to 3.0.1 2019-03-02 14:31:51 +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 libxslt versionitis cure 2019-03-19 17:25:40 +00:00
py-loremipsum
py-lxml py-lxml: updated to 4.3.3 2019-03-27 06:28:51 +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 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-markdown Fix testing 2019-03-20 19:16:03 +00:00
py-markdown-math textproc/py-markdown-math: initial import 2019-03-01 04:26:05 +00:00
py-markdown2 py-markdown2: updated to 2.3.7 2018-12-06 20:30:31 +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 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +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 6.0.0 2019-02-08 10:52:03 +00:00
py-numpydoc py-numpydoc: updated to 0.8.0 2018-08-29 11:04:42 +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.2 2019-04-01 09:12:03 +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.12.0 2019-04-11 08:31:55 +00:00
py-parse_type py-parse_type: added version 0.4.2 2018-08-28 09:56:44 +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.3 2019-01-11 14:34:15 +00:00
py-poyo textproc/py-poyo: Import version 0.4.0 from pkgsrc-wip 2018-02-14 16:54:24 +00:00
py-precis-i18n textproc/py-precis-i18n: import version 1.0.0 2018-11-15 23:48:23 +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: ...and do not install tests 2018-12-13 21:01:01 +00:00
py-pybtex-docutils py-pybtex-docutils: clean-up 2018-12-13 20:46:09 +00:00
py-pygments py-pygments: updated to 2.3.1 2018-12-16 17:56:54 +00:00
py-pyphen py-pyphen: updated to 0.9.5 2018-10-11 10:52:51 +00:00
py-pyquery py-pyquery: updated to 1.4.0 2018-01-24 11:51:06 +00:00
py-pysrt
py-pytoml py-pytoml: updated to 0.1.20 2018-12-09 20:50:51 +00:00
py-ramlfications Add py-ramlfications-0.1.9: 2017-09-29 21:20:16 +00:00
py-rdflib py-rdflib: update to 4.2.2 2017-09-27 13:30:03 +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.0 2018-11-28 14:45:36 +00:00
py-regex py-regex: updated to 2019.03.12 2019-03-21 21:45:15 +00:00
py-relatorio py-relatorio: updated to 0.8.1 2019-03-04 12:08:09 +00:00
py-rst2pdf py-rst2pdf: updated to 0.94 2019-04-03 15:23:24 +00:00
py-smartypants py-smartypants: added version 2.0.1 2019-04-03 14:49:27 +00:00
py-snowballstemmer
py-sphinx py-sphinx: updated to 1.8.5 2019-03-10 13:36:02 +00:00
py-sphinx-autodoc-typehints py-sphinx-autodoc-typehints: BUILD_DEPENDS on py-setuptools_scm 2018-09-27 22:38:59 +00:00
py-sphinx-rtd-theme py-sphinx-rtd-theme: updated to 0.4.3 2019-02-13 12:50:40 +00:00
py-sphinx-theme-cloud py-sphinx-theme-cloud: update to 1.9.4 2017-10-07 11:25:00 +00:00
py-sphinxcontrib-bibtex py-sphinxcontrib-bibtex: updated to 0.4.2 2019-01-07 17:00:33 +00:00
py-sphinxcontrib-newsfeed
py-sphinxcontrib-websupport py-sphinxcontrib-websupport: updated to 1.1.0 2018-08-18 21:18:28 +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.3 2019-01-28 14:17:18 +00:00
py-Tempita
py-text-unidecode py-text-unidecode: updated to 1.2 2018-04-13 07:16:33 +00:00
py-textile py-textile: Needs py-test-runner. Downgrade various other build deps. 2017-10-08 20:25:53 +00:00
py-tinycss
py-tinycss2 Convert test dependencies to TEST_DEPENDS. 2018-03-25 20:30:38 +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.0.23 2018-11-21 11:00:05 +00:00
py-uritemplate
py-validators py-validators: updated to 0.12.4 2019-01-20 13:16:01 +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
py-X2 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-xapian Update xapian bindings for 1.4.6. 2018-07-06 16:23:11 +00:00
py-xlrd py-xlrd: updated to 1.2.0 2018-12-15 21:02:58 +00:00
py-xlsxwriter py-xlsxwriter: updated to 1.1.6 2019-04-07 16:00:09 +00:00
py-xlwt
py-xml *: reset maintainer for drochner 2018-08-19 20:16:39 +00:00
py-xmltodict py-xmltodict: updated to 0.12.0 2019-02-12 16:36:12 +00:00
py-yamcha extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-yaml py-yaml: updated to 5.1 2019-04-07 22:02:09 +00:00
qore-json-module Updated textproc/qore-json-module to version 1.7 . 2018-06-08 19:53:30 +00:00
qore-xml-module Updated textproc/qore-xml-module to version 1.4.1 . 2018-06-08 19:40:44 +00:00
qore-yaml-module Updated textproc/qore-yaml-module to version 0.6 . 2018-06-08 20:12:49 +00:00
qprint
qsubst
queequeg extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
R-formatR Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-gsubfn Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-highr Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-htmltools textproc/R-htmltools: Import version 0.3.6 2018-05-12 21:54:24 +00:00
R-jsonlite Update to 1.6 2019-01-27 15:04:51 +00:00
R-markdown Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-stringi Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
R-stringr Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-utf8 Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
R-yaml Remove MASTER_SITES= from individual R package Makefiles. 2018-07-28 14:40:42 +00:00
rapidjson textproc/rapidjson: Do not treat warnings as errors 2018-04-02 16:07:47 +00:00
raptor revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
raptor2 revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
rarian
rasqal revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
redland revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
regexx
regxml
rfcutil Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ripgrep ripgrep: update to 0.10.0 2019-04-12 08:08:48 +00:00
rman
robodoc *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
rtf-tools
rtfm
rubber extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
ruby-albino
ruby-amrita
ruby-bluecloth
ruby-buftok
ruby-builder
ruby-builder30 textproc/ruby-builder30: remove obsolete patch 2017-09-18 13:03:37 +00:00
ruby-cabocha
ruby-classifier-reborn textproc/ruby-classifier-reborn: update to 2.2.0 2018-03-14 15:40:07 +00:00
ruby-coderay
ruby-diff-lcs
ruby-erubi textproc/ruby-erubi: update to 1.8.0 2019-01-20 14:46:38 +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-haml textproc/ruby-haml: update to 5.0.4 2018-03-14 15:41:36 +00:00
ruby-hikidoc
ruby-hpricot
ruby-html-parser
ruby-htree
ruby-itex2MML
ruby-json
ruby-json-pure
ruby-kramdown textproc/ruby-kramdown: update to 1.17.0 2018-09-23 16:35:23 +00:00
ruby-levenshtein
ruby-libxml textproc/ruby-libxml: update to 3.1.0 2018-03-14 15:42:36 +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
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 ruby-nokogiri: update to 1.10.1. 2019-03-10 11:24:17 +00:00
ruby-nqxml
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
ruby-rdtool
ruby-redcarpet
ruby-redcloth
ruby-rison
ruby-rttool
ruby-safe_yaml textproc/ruby-safe_yaml: add pkg_alternatives support 2018-03-21 13:56:43 +00:00
ruby-sary
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
ruby-syntax
ruby-temple
ruby-text
ruby-textpow
ruby-tilt textproc/ruby-tilt: fix ALTERNATIVES file 2018-12-22 17:31:02 +00:00
ruby-tilt1
ruby-toml textproc/ruby-toml: update to 0.2.0 2018-03-17 16:34:11 +00:00
ruby-treetop
ruby-ultraviolet
ruby-will-paginate
ruby-xapian Update xapian bindings for 1.4.6. 2018-07-06 16:23:11 +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 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/ruby-yard: update to 0.9.16 2018-09-23 16:44:15 +00:00
sablotron Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
sary textproc/sary: Fix build problem on NetBSD 8.0_RC2 2018-06-29 17:01:16 +00:00
saxon
scew
scrollkeeper-dtd
sdop Add sdop 0.80 2018-06-15 13:12:30 +00:00
serd serd: require c99 2019-01-04 16:02:21 +00:00
sgrep
shared-desktop-ontologies Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
sift Revbump all Go packages after Go 1.12.1 update. 2019-03-16 08:35:37 +00:00
sonnet Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
soprano revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
sord Update sord to 0.16.2. 2019-01-02 19:46:10 +00:00
source-highlight revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
sphinxsearch *: update email for fhajny 2018-12-15 21:12:18 +00:00
stardic
sub2srt Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
sublib Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
subliminal
subtitleripper Sort PLIST files. 2018-01-01 22:29:15 +00:00
swath
syntax-highlighting Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
tcl-dom Sort PLIST files. 2018-01-01 22:29:15 +00:00
tcl-expat
tcl-tDOM
tcl-xapian
tcl-xml Sort PLIST files. 2018-01-01 22:29:15 +00:00
tei
tei-p5-schema
tei-xsl
tex-csvsimple
tex-csvsimple-doc
tex-latexdiff tex-latexdiff{,-doc}: update to 1.3.0 2019-01-26 10:54:00 +00:00
tex-latexdiff-doc tex-latexdiff{,-doc}: update to 1.3.0 2019-01-26 10:54:00 +00:00
tex-lwarp tex-lwarp{,-doc}: update to 0.65 2019-01-29 06:58:06 +00:00
tex-lwarp-doc tex-lwarp{,-doc}: update to 0.65 2019-01-29 06:58:06 +00:00
tex-makeindex
tex-makeindex-doc
tex-xindy tex-xindy: add dependency on xindy 2018-12-03 19:31:56 +00:00
tex-xindy-doc
tex-xmltex tex-xmltex: add tex-dehyph dependency 2019-01-26 04:02:59 +00:00
tex-xmltex-doc
tex-xmltexconfig
texi2html Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +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
tokyodystopia
trang
translate-shell translate-shell: Update to 0.9.6.9 2018-12-23 22:52:21 +00:00
translate-toolkit add textproc/translate-toolkit 2.2.5 2018-03-11 15:42:31 +00:00
troffcvt Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
unac
uncrustify
uni2ascii
unicode-character-database unicode-character-database: pax is needed as tool dependency 2019-03-28 22:38:44 +00:00
unicode-emoji unicode-emoji: update to 11.0. 2018-08-12 11:42:16 +00:00
unroff Sort PLIST files. 2018-01-01 22:29:15 +00:00
untex
uriparser Update uriparser to 0.9.1. 2019-01-06 13:47:19 +00:00
urlview Sort PLIST files. 2018-01-01 22:29:15 +00:00
verify-synopsis
vis
wbxml2
wdiff
WordNet Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
writer2latex
xalan-j
xapian Update to 1.4.11. From the changelog: 2019-03-04 01:38:00 +00:00
xapian-omega Avoid conflicting with system bswap32(). Use SUBST_VARS to mollify pkglint. 2019-03-10 13:21:05 +00:00
xerces-c xerces-c: update to 3.2.2. 2018-12-01 16:36:55 +00:00
xerces-j
xfce4-dict textproc/xfce4-dict: update to version 0.8.2 2019-01-17 06:20:10 +00:00
xfpt Add xfpt 0.09 2018-06-15 13:08:52 +00:00
xhtml
xindy xindy: add dependencies 2019-04-10 11:49:43 +00:00
xml-coreutils
xml2
xml2doc Sort PLIST files. 2018-01-01 22:29:15 +00:00
xmlada xmlada: fix PLIST, bump revision 2019-03-31 09:04:01 +00:00
xmlcatmgr Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
xmlindent
xmlrpc-c revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
xmlstarlet
xmlto *: Add some required USE_GCC_RUNTIME. 2018-07-17 10:56:23 +00:00
xmltoman Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
xmltooling Make packages build again. Partially addresses PR pkg/52851. 2019-01-24 16:46:21 +00:00
xp
xqilla xqilla: update to 2.3.3. 2017-10-01 09:45:50 +00:00
xslide
xt
xxdiff Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
xxdiff-scripts xxdiff-scripts: Fix DEPENDS match. 2018-03-15 07:14:50 +00:00
yamcha Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
yaml-cpp yaml-cpp: updated to 0.6.2 2018-03-06 10:05:49 +00:00
yaml-cpp03 Pick up the correct yaml-cpp version. 2018-06-02 19:04:32 +00:00
yelp-tools yelp-tools: update to 3.32.0 2019-03-26 07:27:15 +00:00
yelp-xsl yelp-xsl: update to 3.32.0 2019-03-26 07:29:02 +00:00
yodl
zoem
Makefile py-smartypants: added version 2.0.1 2019-04-03 14:49:27 +00:00