pkgsrc/textproc
pin 128a8e630c textproc/git-delta: update to 0.11.3
0.9.0
=====
With this release, long lines are wrapped in side-by-side mode, thanks to a
far-reaching series of contributions by @th1000s (see #515). No special
customization is needed, but sophisticated control over the details is
available: see --wrap-max-lines, --wrap-left-symbol, --wrap-right-symbol,
--wrap-right-percent, --wrap-right-prefix-symbol, --inline-hint-style.

The long deleted line in the left panel overflows by a small amount, and the
wrapped content is right-aligned in the next line. In contrast, the long
replacement line in the right panel overflows by almost an entire line,
and so the wrapped content is left aligned in the next line. The arrow markers
and ellipsis explain when and how text has been wrapped.

What's Changed
-Fix the empty result issue in add -p by @norisio in #664
-Recognize GitHub SSH remote URLs that don't start with git@ for hyperlinks by
 @spaarmann in #668
-Terminate process gracefully on error in diff() by @dandavison in #685
-Ignore ctrl-c (SIGINT) to avoid leaving an orphaned pager process. by
 @dandavison in #686
-Remove unnecessary borrows by @benarmstead in #692
-Fix computed values to be computed after all set_options by @ulwlu in #690
-Make it possible to jump between files when navigate is active by @dandavison
 in #684
-Fix empty line highlighting by @th1000s in #642
-Fix deadlock in git diff mode by @dandavison in #695
-Support insteadOf replacements in git remote URLs by @dandavison in #694
-Do not suppress submodule diffs by @dandavison in #699
-More minimalistic display of submodule (short) diffs by @dandavison in #700
-Fix hunk header when line number is not requested and navigate is enabled by
 @dandavison in #710
-Display removed file name in file deletion case by @dandavison in #717
-Remove superfluous lowercasing of feature names by @Tak in #718
-Option to set the background extension mode to ANSI or spaces by @th1000s
 in #512
-Add side-by-side line wrapping mode by @th1000s in #515
-Width can be an offset from the terminal width by @th1000s in #727
-Linenumber refactoring by @th1000s in #740
-Use fatal() to exit with errorcode 2 by @th1000s in #739
-Re-enable ANSI fill by equalizing panel sizes by @th1000s in #742
-Update syntaxes and themes from bat v0.18.3 by @FnControlOption in #702
-Line numbers and side-by-side mode by @th1000s in #748

0.9.1
=====
This is a followup to release 0.9.0 fixing a bug in the --help text emitted by
the 0.9.0 binary (see 3aab5d1).

0.9.0 was a major release adding line-wrapping to side-by-side mode: 0.9.0
release notes.

0.9.2
=====
This release fixes a regression introduced in 0.9.0 affecting the use of
git add -p when submodules are present. See #755

What's Changed
-Do not reformat submodule diffs under git add -p by @dandavison in #756

0.10.0
======
New features in this release:

-delta displays output from git grep and rg --json ... | delta with code syntax
 highlighting and navigate functionality. See README#grep and #774.
-delta displays output from git blame with code syntax highlighting, hyperlinks
 to commits, and control over formatting. See README#git-blame and #761.
-delta syntax highlights file contents produced by git show $revision
 /path/to/file
-delta can apply syntax highlighting and arbitrary styling to the raw colors
 emitted by git --color-moved. This is done by specifying rules for remapping
 styles using map-styles. See below, and README#--color-moved-support and #72
-More powerful configuration options: styles can reference other styles, custom
 styles and custom colors can be defined in gitconfig and reused, and 140 colors
 can be specified using their standard CSS names. See below.
-New subcommand --show-colors outputs a demo of 140 background colors with
 syntax highlighting, to help choose background colors.
-New subcommand --parse-ansi takes color input and prints out the corresponding
 style strings (useful for map-styles)
-Utilities for interrogating the command line of the process that is sending
 output to delta, added by @th1000s.

Additionally, we can now use the 140 color names that are standard in CSS. Use
delta --show-colors to get a demo of the available colors, as background colors
to see how they look with syntax highlighting.

0.10.1
======
This release fixes a bug in color-moved handling when files have DOS line
endings. See #800

What's Changed
-Remove trailing \r from raw line, in presence of ANSI escape sequences by
 @dandavison in #800

0.10.2
======
This releases fixes a bug when using side-by-side with git diff.colorMoved.
See #802

What's Changed
-802 fix color moved side by side panic by @dandavison in #803

0.10.3
======
Delta was previously handling --word-diff and --color-words output in a
nonsensical way. With this release, delta does not attempt to handle these
output types, allowing git's raw output through unchanged. Appropriate handling
may be added later. See #152
When a line is unchanged but paired with a line that has additions/deletions,
delta now assigns the unchanged line {plus,minus}-non-emph-style; previously it
assigned {plus,minus}-style. This change does not alter visual output by default
because by default those two style styles are set to the same value. See #785
Fixes a bug affecting line numbers in side-by-side mode, see #819

0.11.0
======
This release adds handling of merge conflicts and the "combined" diff format
which git uses for merge commits; see the Merge conflicts README section and
#189. Please consider setting

[merge]
    conflictstyle = diff3

With that setting, when a merge conflict is encountered, delta will display
diffs between the ancestral commit and each of the two merge parents.

0.11.1
======
Fixes a crash that can occur, see for example #826. Thanks @mrjoel.

What's Changed
-Be permissive about unexpected state machine state by @dandavison in #827

0.11.2
======
This release fixes a performance problem that was affecting some users. See #824

0.11.3
======
Fix handling of --word-diff and --color-words (#829). Note that line-numbers and
side-by-side will be ignored if delta detects that the input was generated by
git --word-diff / --color-words.
DELTA_FEATURES can now be used to add to features specified in ~/.gitconfig.
Use a + prefix to do this: an example is DELTA_FEATURES=+side-by-side which will
activate side-by-side, in addition to your usual features.
Store less history file in a better location on Windows. Thanks @rashil2000 for
this work!

Fix performance issue affecting some linux users (#839)

What's Changed
-Bump sysinfo from 0.19.2 to 0.20.5 by @dependabot in #811
-#833 refactoring by @dandavison in #834
-Store history file in data_local_dir for Windows by @rashil2000 in #847
-Query fewer processes when searching for the parent by @th1000s in #841
-Do not query CPU data when querying process data by @dandavison in #845
-Fix --word-diff / --color-words handling by @dandavison in #833
-Add features from DELTA_FEATURES env var instead of replacing with them by
 @dandavison in #849
-Fix raw line styles by @dandavison in #850
-Fix side-by-side syntax ANSI test failure by @dandavison in #852
-DeltaTest inspect() additions by @dandavison in #853
-Line state refactor by @dandavison in #851
2022-01-14 10:36:08 +00:00
..
aha textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aiksaurus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
align textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ansifilter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
antiword textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
artha revbump for icu and libffi 2021-12-08 16:01:42 +00:00
asciidir textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
asciidoc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
aspell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-af textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-am textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ar textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ast textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-az textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-be textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-bg textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-bn textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-br textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ca textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-cs textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-csb textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-cy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-da textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-de textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-de-alt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-el textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-en textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-eo textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-es textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-et textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-fa textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-fi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-fo textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-fr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-fy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ga textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-gd textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-gl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-grc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-gu textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-gv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-he textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-hi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-hil textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-hr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-hsb textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-hu textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-hus textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-hy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ia textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-id textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-is textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-it textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-kn textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ku textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ky textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-la textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-lt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-lv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-mg textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-mi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-mk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-mn textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-mr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ms textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-mt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-nb textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-nds textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-nl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-nn textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ny textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-or textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-pa textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-pl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-pt_BR textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-pt_PT textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-qu textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ro textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ru textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-rw textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-sc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-sk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-sl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-sr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-sv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-sw textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-ta textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-te textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-tet textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-tk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-tl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-tn textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-tr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-uk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-uz textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-vi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-wa textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-yi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspell-zu textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
aspic textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
awf textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
bat textproc/bat: Updates to 0.19.0 2022-01-09 23:16:43 +00:00
bibclean textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
biblook textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
bibparse textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
bk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
bsdgrep-devel textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
btparse textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
c2html textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cabocha textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
catdoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
catdoc-tk
cawf textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cdif textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
chasen
chasen-base textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cityhash textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cjose textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cJSON textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cldr-emoji-annotation textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cmark cmark: Fix building dependencies with strict function prototypes 2021-11-29 10:44:16 +00:00
cmark-gfm textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cmigemo textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
coccigrep *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
colorit
convertlit convertlit: use BLAKE2s 2021-11-15 18:14:47 +00:00
CRF++ textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
crimson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
crush-tools textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
csharp-xapian Reset PKGREVISION for xapian update. 2022-01-02 09:31:59 +00:00
csview textproc/csview: add warning 2022-01-03 17:30:30 +00:00
csvkit python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
csvtomd python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
csvutils textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
cwdiff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dadadodo textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
db2latex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dblatex *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
detex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dict-client
dict-dictionaries textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dict-mueller7 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dict-server textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dictem textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
diction textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
diffr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
diffsplit textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
diffstat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dikt *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
discount textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
docbook textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
docbook-simple textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
docbook-website textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
docbook-xml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
docbook-xsl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
docbook2mdoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
docbook2odf textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
doclifter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dsssl-docbook-modular textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dtdparse textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
DWB textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
dwdiff dwdiff: Add missing dependency on gettext tools. 2021-12-13 13:04:17 +00:00
eb textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
eblook textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ebook-tools revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ebview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
emacs-dict-client textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
emacs-muse textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
enca textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
enchant revbump for icu and libffi 2021-12-08 16:01:42 +00:00
enchant2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
epubcheck textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
epubpreflight textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
erlang-fast_xml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
erlang-fast_yaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
erlang-jiffy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
erlang-p1_xmlrpc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
erlang-stringprep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
erlang-yconf textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
expat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
expatobjc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ezxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
FlightCrew *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
flyspell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
fmtlib fmtlib: updated to 8.1.1 2022-01-07 21:16:09 +00:00
fop textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
freepwing textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
freexl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
gdome2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
git-delta textproc/git-delta: update to 0.11.3 2022-01-14 10:36:08 +00:00
glimpse textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
gnome-dictionary revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-doc-utils revbump for icu and libffi 2021-12-08 16:01:42 +00:00
go-kr-text Revbump all Go packages after go117 update 2022-01-09 20:10:29 +00:00
go-md2man Revbump all Go packages after go117 update 2022-01-09 20:10:29 +00:00
go-mmark Revbump all Go packages after go117 update 2022-01-09 20:10:29 +00:00
go-text Revbump all Go packages after go117 update 2022-01-09 20:10:29 +00:00
grep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
grepcidr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
groff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
groonga revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gsed textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
gspell revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtk-doc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtkspell revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtkspell3 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
guile-commonmark textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
guile-json textproc/guile-json: Update to 4.5.2 2021-12-17 14:07:09 +00:00
guile-syntax-highlight textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
gutcheck textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
GutenMark textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
GutenMark-words textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
halibut textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
harmony textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
heirloom-bdiff
heirloom-bfs
heirloom-col
heirloom-comm
heirloom-cut
heirloom-diff3
heirloom-doctools textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +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 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hevea textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hfstospell revbump for icu and libffi 2021-12-08 16:01:42 +00:00
hgrep hgrep: update to 0.2.2. 2021-12-12 09:57:46 +00:00
highlight revbump for icu and libffi 2021-12-08 16:01:42 +00:00
highway textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hre textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-annotated-wl-pprint textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-ansi-wl-pprint textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-appar textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-attoparsec textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-blaze-html textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-blaze-markup textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-case-insensitive textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-cassava textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-cassava-megaparsec textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-cgrep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-cheapskate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-citeproc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-cmark-gfm textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-commonmark textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-commonmark-extensions textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-commonmark-pandoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-css-text textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-csv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-Diff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-doclayout textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-doctemplates textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-edit-distance textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-Glob textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-haddock-library textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-hscolour textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-hslua-module-text textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-HsYAML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-html textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-hxt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-hxt-charproperties textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-hxt-regex-xmlschema textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-hxt-unicode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-jira-wiki-markup textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-libyaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-lucid textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-megaparsec textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-pandoc-types textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-polyparse textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-prettyprinter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-prettyprinter-ansi-terminal textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-regex-base textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-regex-pcre textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-regex-posix textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-regex-tdfa textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-rfc5051 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-shakespeare textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-skylighting textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-skylighting-core textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-stringsearch textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-tagsoup textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-texmath textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-text-short textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-unicode-show textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-unicode-transforms textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-wcwidth textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-xml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-xml-conduit textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-xml-types textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hs-yaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
html textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
html2text textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
html2wml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hugs-HaXml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell hunspell: Allow NetBSD curses to count as "wide curses" 2021-11-28 19:24:19 +00:00
hunspell-af_ZA textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-ar textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-bg_BG textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-ca_ES textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-cs_CZ textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-cy_GB textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-da_DK textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-de textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-el_GR textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-en_CA textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-en_GB textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-en_NZ textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-en_US textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-en_ZA textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-es_ES textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-es_MX textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-fo_FO textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-fr_FR textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-fy_NL textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-ga_IE textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-he_IL textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-hr_HR textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-hu_HU textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-id_ID textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-it_IT textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-lt_LT textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-lv_LV textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-mg_MG textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-ms_MY textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-nl_NL textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-ny_MW textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-pl_PL textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-ru_RU textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-sk_SK textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hunspell-sv_SE textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hyperestraier textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
hyphen textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
icu icu: properly bump the bl3 for version 70 solib major 2021-12-08 23:53:30 +00:00
igor textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
iksemel revbump for icu and libffi 2021-12-08 16:01:42 +00:00
inih textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
intltool textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ipadic textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
isearch textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
iso-codes textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
iso8879 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
iso12083 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-ca textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-de textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-emacs textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-en_GB
ispell-es textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-fr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-ga textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-gl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-ku textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-lt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-pl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-pt_BR textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-ro textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-ru textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-ru-io
ispell-sk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ispell-sv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
itex2MML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
itstool textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ja-grep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ja-groff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ja-sed textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
jansson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
java-mecab textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
java-native-hyperestraier
java-pure-hyperestraier
jdom textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
jing textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
jo jo: update to 1.6. 2022-01-07 21:29:43 +00:00
jrep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
json-c textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
json-glib revbump for icu and libffi 2021-12-08 16:01:42 +00:00
json-schema textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
json-yaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
json2tsv json2tsv: Update to 0.8 2021-12-21 14:49:05 +00:00
jsoncpp jsoncpp: updated to 1.9.5 2021-11-03 20:52:23 +00:00
kakasi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
kapidox *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
kbanner textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
kcodecs revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kcompletion revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kpimtextedit revbump for icu and libffi 2021-12-08 16:01:42 +00:00
latex2html textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
LDoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libclucene *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
libcroco revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libcsv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libcue textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libcyaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libexttextcat libexttextcat: update to 3.4.6. 2021-11-16 14:30:51 +00:00
libfastjson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libhighlight Bump BUILDLINK_API_DEPENDS to match current version. Found via 2021-11-01 20:39:18 +00:00
libkolabxml *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
liblinebreak textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
liblrdf revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libnxml revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libodfgen *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
libpinyin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libplist revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libstemmer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libunicode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libuninameslist textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libunistring textproc/libunistring: Note that licenses are "or later". 2022-01-14 01:14:04 +00:00
libxls textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libxlsxwriter textproc/libxlsxwriter: Update to 1.1.4 2021-11-19 22:13:32 +00:00
libxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
libxml++ revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libxml++5.0 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libxml2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libxslt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libyaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
link-grammar link-grammar: update to 5.10.2 2021-10-29 21:11:25 +00:00
lit2epub textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
log4cpp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lok textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lout textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lowdown lowdown: update to 0.10.0. 2021-11-05 11:06:24 +00:00
lq-sp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-cjson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-cmark textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-cosmo textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-dkjson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-etlua textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-expat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-inifile textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-lustache textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-lyaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-markdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-rapidjson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-slnunicode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-stringy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-utf8 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
lua-xapian Reset PKGREVISION for xapian update. 2022-01-02 09:31:59 +00:00
lucene++ *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
makeindexk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
makeztxt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
man2html textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
mandoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
marisa textproc/marisa: update to 0.2.6 2021-12-12 13:55:13 +00:00
Markdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
markdown-mode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
markdown2social py-markdown2social: convert to egg.mk 2022-01-10 20:38:01 +00:00
mecab
mecab-base textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
mecab-ipadic textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
mecab-jumandic textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
mecab-naistdic textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
mendexk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
metauml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
migemo textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
migemo-elisp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
miller textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
molybdenum textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
multimarkdown revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
mythes textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
namazu textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
nanogrep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
nbsed
ndtpd textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
nltk_data-abc nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-alpino nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-averaged_perceptron_tagger nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-averaged_perceptron_tagger_ru nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-basque_grammars nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-biocreative_ppi nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-bllip_wsj_no_aux nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-book_grammars nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-brown nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-brown_tei nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-cess_cat nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-cess_esp nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-chat80 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-city_database nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-cmudict nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-comparative_sentences nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-comtrans nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-conll2000 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-conll2002 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-conll2007 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-crubadan nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-dependency_treebank nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-dolch nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-europarl_raw nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-floresta nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-framenet_v15 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-framenet_v17 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-gazetteers nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-genesis nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-gutenberg nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-ieer nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-inaugural nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-indian nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-jeita nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-kimmo nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-knbc nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-large_grammars nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-lin_thesaurus nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-mac_morpho nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-machado nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-masc_tagged nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-maxent_ne_chunker nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-maxent_treebank_pos_tagger nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-moses_sample nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-movie_reviews nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-mte_teip5 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-mwa_ppdb nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-names nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-nombank.1.0 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-nonbreaking_prefixes nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-nps_chat nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-omw nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-opinion_lexicon nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-panlex_swadesh nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-paradigms nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-pe08 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-perluniprops nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-pil nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-pl196x nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-porter_test nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-ppattach nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-problem_reports nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-product_reviews_1 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-product_reviews_2 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-propbank nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-pros_cons nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-ptb nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-punkt nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-qc nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-reuters nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-rslp nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-rte nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-sample_grammars nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-semcor nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-senseval nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-sentence_polarity nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-sentiwordnet nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-shakespeare nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-sinica_treebank nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-smultron nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-snowball_data nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-spanish_grammars nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-state_union nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-stopwords nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-subjectivity nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-swadesh nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-switchboard nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-tagsets nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-timit nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-toolbox nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-treebank nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-twitter_samples nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-udhr nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-udhr2 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-unicode_samples nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-universal_tagset nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-universal_treebanks_v20 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-vader_lexicon nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-verbnet nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-verbnet3 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-webtext nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-wmt15_eval nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-word2vec_sample nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-wordnet nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-wordnet31 nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-wordnet_ic nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-words nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nltk_data-ycoe nltk_data-*: add data packages for NLTK, the Natural Language Toolkit 2021-11-24 15:57:00 +00:00
nxml-mode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
o3read textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-csv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-easy-format textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-expat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-jsonm textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-markup textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-text textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-textutils textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-tyxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-uchar textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-uutf textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ocaml-xml-light textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
OdfConverter revbump for icu and libffi 2021-12-08 16:01:42 +00:00
odt2tex revbump for icu and libffi 2021-12-08 16:01:42 +00:00
oniguruma textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
openjade textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
opensp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ots revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-ack textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Alien-Hunspell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Alien-Libxml2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-Biblio-EndnoteStyle textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-cabocha
p5-CAM-PDF textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Convert-ASCII-Armour textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Convert-ASN1 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Convert-BER textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Convert-PEM textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Convert-Translit textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Data-FormValidator textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Data-HexDump textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Dist-Zilla-Plugin-PodWeaver textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Encode-Detect textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Encode-EUCJPASCII textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Encode-HanExtra textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Encode-IMAPUTF7 Add p5-Encode-IMAPUTF7 version 1.05 2021-12-18 14:56:49 +00:00
p5-Encode-JIS2K textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Encode-Locale textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Feed-Find Update to 0.12. From the changelog: 2021-10-31 08:35:05 +00:00
p5-File-ReadBackwards textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Filter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-FormValidator-Simple textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-highlight
p5-HTML-FormatText-WithLinks textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-HTML-FormatText-WithLinks-AndTables textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-iCal-Parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Kwalify textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-libxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Fathom textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-FindNumber textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Inflect textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Inflect-Number textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Inflect-Phrase textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Number-IsOrdinal textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Numbers-Ordinate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Sentence textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Syllable textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Tagger textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-EN-Words2Nums textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Identify textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Preferred textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-PT-Stemmer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Stem textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Stem-Fr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Stem-It textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Stem-Ru textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Stem-Snowball textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Stem-Snowball-Da textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Lingua-Translit textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-List-Compare textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Locale-Maketext-Gettext textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-marisa textproc/marisa: update to 0.2.6 2021-12-12 13:55:13 +00:00
p5-mecab textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-mobiperl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-MultiMarkdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-native-hyperestraier
p5-Net-Dict textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Net-IDN-Encode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Number-Format textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Number-Spell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-ODF-lpOD textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-PDF textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-PDF-API2 Update to 2.042 2021-10-30 02:21:32 +00:00
p5-PDF-Create textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-PDF-Reuse textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-PDF-Reuse-Barcode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-PDF-Table textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Abstract textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Coverage textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Coverage-TrustPod textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Elemental textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Elemental-PerlMunger textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Eventual Update to 0.094002 2021-10-30 08:44:52 +00:00
p5-Pod-Markdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-POM textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Readme textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Spell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Spell-CommonMistakes textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Strip textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Tests textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Tree textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Pod-Weaver textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-POD2-Base textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-podlators textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-PPI-HTML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-PPIx-QuoteLike Update to 0.018 2021-10-30 02:16:39 +00:00
p5-PPIx-Utils textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Publican textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Regexp-Common textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Regexp-Copy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-sdf textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Search-Indexer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Search-Xapian textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-SGMLS textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Snowball-Norwegian textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Snowball-Swedish textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Approx textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-BufferStack textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-CamelCase textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Compare-ConstantTime textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-CRC32 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Errf textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Expand textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Flogger textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Formatter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Interpolate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Koremutake textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-RewritePrefix textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-ShellQuote textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Similarity textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-ToIdentifier-EN textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Trim textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-String-Truncate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Swim textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Syntax-Highlight-Engine-Kate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Syntax-SourceHighlight *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
p5-Template-Declare textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Template-Plugin-Autoformat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Template-Plugin-CSV textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Template-Plugin-Latex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Template-Plugin-Number-Format textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Template-Plugin-YAML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Template-Tiny textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Test-YAML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Affixes textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Aligner textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Aspell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Autoformat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Balanced textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-BibTeX textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Brew textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-CharWidth textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-ChaSen textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Context-EitherSide textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-CSV textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-CSV-Encoded textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-CSV-Hash textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-CSV-Simple textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-CSV_XS textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-DelimMatch textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-DHCPLeases textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Diff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Diff-HTML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Diff-Parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-DoubleMetaphone textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Emoticon textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Emoticon-MSN textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-FindIndent textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Format textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-German textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Glob textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Hunspell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Kakasi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-LevenshteinXS textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Markdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Markdown-Discount textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Microformat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-MicroTemplate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Morse Add p5-Text-Morse v0.07: encodes and decodes Morse code in perl 2021-12-10 18:42:53 +00:00
p5-Text-MultiMarkdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Ngram textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Nimble textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Patch textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-PDF textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Quoted textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-RecordParser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Reflow textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Reform textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-RewriteRules textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Roman textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Sass textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Shellwords textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-SimpleTable textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-SimpleTable-AutoWidth textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Soundex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-SpellChecker textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Table textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-TabularDisplay textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Template Update to 1.60 2021-10-30 08:55:08 +00:00
p5-Text-Textile textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Trac textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Typography textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Unaccent textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Unidecode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-vCard textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-vFile-asData textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-VisualWidth-PP textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-WagnerFischer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-WikiCreole textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-WikiFormat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-WrapI18N textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Wrapper textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-Xslate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Text-xSV textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Tie-Handle-Offset textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Unicode-CaseFold textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Unicode-LineBreak textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Win32-ShellQuote textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-Xapian Reset PKGREVISION for xapian update. 2022-01-02 09:31:59 +00:00
p5-XML-Atom textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Atom-SimpleFeed textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Atom-Stream textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-AutoWriter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Bare textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Catalog textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Checker textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Clean textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Compile textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Compile-Cache textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Compile-SOAP textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Compile-SOAP12 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Compile-Tester textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Descent textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-DOM textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Dumper textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Elemental textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Encoding textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Entities textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Feed textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-FeedPP textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Filter-BufferText textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Filter-DetectWS textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Filter-DOMFilter-LibXML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Filter-Reindent textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Filter-SAXT textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Generator textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Grove textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Handler-Trees textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Handler-YAWriter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-LibXML revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-XML-LibXML-Iterator textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-LibXML-Simple textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-LibXSLT revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-XML-NamespaceSupport textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Node textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-NodeFilter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Parser-Lite textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Parser-Lite-Tree textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Rabbit textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-RAI textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-RegExp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-RSS textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-RSS-Parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-SAX textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-SAX-Base textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-SAX-Expat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-SAX-ExpatXS textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-SAX-Writer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-SemanticDiff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Simple textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Stream textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Tidy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Tiny textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-TokeParser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-TreeBuilder textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-TreePP textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Twig textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-UM textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Writer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-Writer-String textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-XPath textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-XPathEngine textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-XQL textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-XSLT textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-XML-XUpdate-LibXML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-YAML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-YAML-LibYAML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-YAML-PP Update to 0.029 2021-10-30 09:01:22 +00:00
p5-YAML-Syck textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
p5-YAML-Tiny textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
paperoni textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
par textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
pdfgrep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
pear-Console_Table textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
pear-File_Find textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
PEGTL textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
php-enchant revbump for icu and libffi 2021-12-08 16:01:42 +00:00
php-excel textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
php-intl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
php-json Retire of php73, PHP 7.3.x. 2021-12-29 06:05:18 +00:00
php-mecab textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
php-pspell
php-sphinx textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
php-wddx Retire of php73, PHP 7.3.x. 2021-12-29 06:05:18 +00:00
php-xapian Define PHP_VERSIONS_INCOMPATIBLE before including phpversion.mk. 2021-12-19 10:09:29 +00:00
php-xsl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
php-yaml textproc/php-yaml: update to 2.2.2 2021-12-12 15:24:24 +00:00
po-mode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
po4a revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pod2mdoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
postgresql-autodoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
prose textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
psgml-mode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
pugixml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
pxp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
py-acora *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-alabaster *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-antlr4 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-anyjson *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-babelfish *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-biplist *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-black py-black: unrestrict tomli 2022-01-13 19:40:07 +00:00
py-bracex *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cabocha py-cabocha: convert to egg.mk 2022-01-10 08:52:16 +00:00
py-cElementTree py-cElementTree: needs wrappers to add std=c99... 2021-10-09 10:54:06 +00:00
py-cmTemplate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
py-color *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-colored *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-colour *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-commonmark python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-creole python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-css-parser *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cssselect *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cssselect2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cssutils py-cssutils: update to 2.3.0. 2022-01-05 21:26:01 +00:00
py-deepdiff python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-defusedxml *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-demjson *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-dicttoxml py-dicttoxml: convert to egg.mk 2022-01-10 20:33:18 +00:00
py-diff-match-patch *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-docutils *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-docx *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-dominate *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-ejson *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-elementpath *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-elementtree py-elementtree: convert to egg.mk 2022-01-10 09:05:01 +00:00
py-empy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
py-enchant *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-epr-reader python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-eradicate py-eradicate: convert to egg.mk 2022-01-10 18:28:51 +00:00
py-Excelerator py-Excelerator: convert to egg.mk 2022-01-10 18:19:20 +00:00
py-expat py-expat: needs wrappers to add std=c99... 2021-10-09 10:55:00 +00:00
py-feedparser *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-feedparser5 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-ftfy python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-generateDS python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-gnosis-utils py-gnosis-utils: convert to egg.mk 2022-01-10 09:10:43 +00:00
py-guessit python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-HappyDoc py-Happydoc: convert to egg.mk 2022-01-10 08:39:32 +00:00
py-html-sanitizer *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-html2text python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-html2text-2019.8.11 *: set USE_PKG_RESOURCES for more packages 2022-01-05 20:47:34 +00:00
py-html5-parser *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-html5lib *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-humanize py-humanize: fix dependency type for setuptools* 2022-01-05 10:02:48 +00:00
py-ICU *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-inflection *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-iniparse *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-isc_dhcp_leases *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-itemadapter *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-itemloaders *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jade python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-jellyfish *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jinja2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jmespath *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jsbeautifier python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-jsonlib *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jsonlib3 py-jsonlib: convert to egg.mk 2022-01-10 19:46:26 +00:00
py-jsonpickle *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
py-jsonref *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jsonrpc-server *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jsonrpclib *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jsonrpclib-pelix *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jsonschema *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
py-JWT *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jxmlease *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-Levenshtein py-Levenshtein: remove unnecessary setuptools dependency 2022-01-05 10:01:08 +00:00
py-libxml2 egg.mk: remove --single-version-externally-managed 2022-01-09 11:58:13 +00:00
py-libxslt *: convert to egg.mk 2022-01-10 23:46:48 +00:00
py-loremipsum *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-lsp-jsonrpc *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-lxml *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-m2r python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-manuel *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-marisa py-marisa: convert to egg.mk 2022-01-10 22:15:36 +00:00
py-markdown python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-markdown-math *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-markdown2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-markdown3 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-markovify *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-markups *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-markupsafe *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-mecab py-mecab: convert to egg.mk 2022-01-10 07:55:48 +00:00
py-mistune *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-mkdocs python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-mkdocs-bootstrap *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-mkdocs-bootswatch *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-natsort python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-nltk python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-numpydoc *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-odfpy *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-openapi-core *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-openapi-schema-validator *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-openapi-spec-validator python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-openapi3 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-openpyxl *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pallets-sphinx-themes *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pandocfilters egg.mk: remove --single-version-externally-managed 2022-01-09 11:58:13 +00:00
py-parse *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-parse_type *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-parsimonious *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-patiencediff *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pdf-parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
py-pdfrw *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-peg2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-phonenumbers *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-poyo *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-precis-i18n *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-prettytable py-prettytable: update to 3.0.0. 2022-01-07 23:15:04 +00:00
py-ptable python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-pyaml *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pybtex python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-pybtex-docutils *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pygments py-pygments: updated to 2.11.2 2022-01-07 12:20:37 +00:00
py-pygments25 *: set USE_PKG_RESOURCES for more packages 2022-01-05 20:47:34 +00:00
py-pylev py-pylev: added version 1.4.0 2022-01-11 19:09:24 +00:00
py-pyphen *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pyquery *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pysrt python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-pytoml *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-ramlfications python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-rapidjson *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-rdflib python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-readme_renderer *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-rebulk *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-regex *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-relatorio *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-rst2pdf python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-sgmllib3k *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-smartypants py-smartypants: convert to egg.mk 2022-01-10 18:54:33 +00:00
py-snowballstemmer *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinx python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-sphinx-autoapi *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinx-autodoc-typehints *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinx-issues *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinx-rtd-theme *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinx-theme-cloud *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinx1 *: set USE_PKG_RESOURCES for more packages 2022-01-05 20:47:34 +00:00
py-sphinxcontrib-applehelp *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-bibtex *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-devhelp *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-htmlhelp *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-jsmath *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-log-cabinet *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-newsfeed *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-qthelp *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-serializinghtml *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphinxcontrib-websupport *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sphobjinv python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-tablib *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-tabulate python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-Tempita *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-text-unidecode *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-textile python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-tinycss2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-toml *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-tomli py-tomli: build using the wheel to avoid a dependency cycle 2022-01-13 09:47:04 +00:00
py-tomli_w make py-tomli_w use pep517 for buildling 2022-01-11 21:55:32 +00:00
py-tomlkit py-tomlkit: added version 0.8.0 2022-01-11 19:17:22 +00:00
py-ujson *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-Unidecode python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-uritemplate *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-validators *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-vobject python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-wcmatch *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-webencodings *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-Whoosh *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-X py-X: convert to egg.mk 2022-01-10 21:51:09 +00:00
py-X2 py-X: convert to egg.mk 2022-01-10 22:45:10 +00:00
py-xapian Reset PKGREVISION for xapian update. 2022-01-02 09:31:59 +00:00
py-xlrd *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-xlsxwriter *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-xlwt *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-xml py-xml: convert to egg.mk 2022-01-10 20:55:50 +00:00
py-xml2rfc python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-xmlschema python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-xmltodict *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-yamcha py-yamcha: convert to egg.mk 2022-01-10 22:18:00 +00:00
py-yaml *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py27-cssselect2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py27-pyphen *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py27-tinycss2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
qore-json-module textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
qore-xml-module revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qore-yaml-module textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
qprint textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
qsubst textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
queequeg textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-brew textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-cellranger textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-clisymbols textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-commonmark textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-crosstalk textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-data.table textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-DT textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-formatR textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-gsubfn textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-haven textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-highr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-htmlTable textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-htmltools textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-hunspell textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-jsonlite textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-markdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-openxlsx textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-readr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-readstata13 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-readxl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-rjson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-rmarkdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-selectr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-spelling textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-stringi revbump for icu and libffi 2021-12-08 16:01:42 +00:00
R-stringr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-utf8 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-vroom textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-xml2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
R-xmlparsedata textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
R-yaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
rapidjson textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
raptor revbump for icu and libffi 2021-12-08 16:01:42 +00:00
raptor2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rarian revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rasqal revbump for icu and libffi 2021-12-08 16:01:42 +00:00
redland revbump for icu and libffi 2021-12-08 16:01:42 +00:00
regexx textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
regxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
rfcutil textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ripgrep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
rman textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
robodoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
rtf-tools textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
rtfm textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
rubber textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-actionpack-xml_parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-actiontext60 textproc/ruby-actiontext60: update to 6.0.4.4 2021-12-19 05:18:27 +00:00
ruby-actiontext61 textproc/ruby-actiontext61: update to 6.1.4.4 2021-12-19 05:31:28 +00:00
ruby-actiontext70 textproc/ruby-actiontext70: add package version 7.0.0 2021-12-19 06:21:17 +00:00
ruby-albino textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-amrita textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-asciidoctor textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-bluecloth textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-buftok textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-builder textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-cabocha
ruby-classifier-reborn textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-coderay textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-csv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-diff-lcs textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-erubi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-escape textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-fast-stemmer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-fastercsv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-feed-normalizer textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-ferret textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-fuzzyurl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-gyoku textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-haml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-hikidoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-hpricot textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-html-parser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-htmlentities textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-htree textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-inifile textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-itex2MML textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-jmespath textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-json textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-json-pure textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-kramdown textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-kramdown-parser-gfm textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-kramdown-rfc2629 textproc/ruby-kramdown-rfc2629: update to 1.5.24 2021-12-19 06:44:06 +00:00
ruby-levenshtein textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-libxml revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ruby-mab textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-marisa
ruby-markaby textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-maruku textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-mecab textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-multi_json textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-native-hyperestraier
ruby-nokogiri ruby-nokogiri: update to 1.13.0. 2022-01-09 19:19:23 +00:00
ruby-nokogumbo textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-nori textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-nqxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-oniguruma textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-plist textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-pure-hyperestraier
ruby-rails-dom-testing textproc/ruby-rails-dom-testing: allow more rails version 2021-12-19 06:29:32 +00:00
ruby-rdiscount textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-rdtool textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-redcarpet textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-redcloth textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-review textproc/ruby-review: update to 5.3.0 2021-12-11 14:37:48 +00:00
ruby-rexml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-rison textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-rqrcode textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-rqrcode_core textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-rttool textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-safe_yaml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-sary revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ruby-simple-rss textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-simplecov_json_formatter textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-stringex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-stringex1 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-strings textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-strings-ansi textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-syntax textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-temple textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-terminal-table textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-text textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-textpow textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-tilt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-toml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-treetop textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-ultraviolet textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-unicode-display_width textproc/ruby-unicode-display_width: update to 2.1.0 2021-12-11 14:39:28 +00:00
ruby-unicode_utils textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-will-paginate textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-xapian
ruby-xhtmldiff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-xmlparser textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-xpath textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-xslt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ruby-yajl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ruby-yamcha
ruby-yard textproc/ruby-yard: update to 0.9.27 2021-12-11 14:41:21 +00:00
sablotron textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
sary revbump for icu and libffi 2021-12-08 16:01:42 +00:00
saxon textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
scdoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
scew textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
scrollkeeper-dtd textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
sd textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
sdop textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
serd textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
sgrep textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
shared-desktop-ontologies textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
sift Revbump all Go packages after go117 update 2022-01-09 20:10:29 +00:00
sonnet revbump for icu and libffi 2021-12-08 16:01:42 +00:00
soprano *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
sord textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
source-highlight *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
sphinxsearch textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
split-thai revbump for icu and libffi 2021-12-08 16:01:42 +00:00
stardic textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
stava textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
sub2srt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
sublib revbump for icu and libffi 2021-12-08 16:01:42 +00:00
subliminal python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
subtitleripper textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
swath textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
syntax-highlighting revbump for icu and libffi 2021-12-08 16:01:42 +00:00
tcl-dom textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tcl-expat textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tcl-tDOM textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tcl-xapian
tcl-xml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tei textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tei-p5-schema textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tei-xsl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-csvsimple textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-csvsimple-doc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-latexdiff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-latexdiff-doc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-lwarp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-lwarp-doc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-makeindex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-makeindex-doc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-xindy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-xindy-doc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-xmltex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-xmltex-doc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tex-xmltexconfig textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
texi2html textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
texi2mdoc textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
texi2roff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
the_silver_searcher textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tinyxml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tinyxml2 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
tokyodystopia textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
trang textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
translate-shell revbump for icu and libffi 2021-12-08 16:01:42 +00:00
translate-toolkit python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
troffcvt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
uchardet textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
ugrep *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
unac textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
uncrustify textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
uni2ascii textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
unicode-character-database textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
unicode-emoji textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
unroff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
untex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
upmendex revbump for icu and libffi 2021-12-08 16:01:42 +00:00
uriparser Update uriparser to version 0.9.6 2022-01-07 12:40:08 +00:00
urlview textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
utf8-cpp utf8-cpp: updated to 3.2.1 2021-12-29 17:00:23 +00:00
verify-synopsis
vis textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
wbxml2 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
wdiff textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
word2vec textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
WordNet textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
writer2latex textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xalan-j textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xapian Oops, missed updating the language bindings in previous. Spotted by wiz@. 2022-01-08 16:30:35 +00:00
xapian-omega Update to 1.4.19. From the changelog: 2022-01-02 09:32:06 +00:00
xerces-c textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xerces-j textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xfce4-dict revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfpt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xhtml textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xindy textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xml-coreutils textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xml2 textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xml2doc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xmlada textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xmlcatmgr textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xmlindent textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xmlrpc-c revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xmlstarlet revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xmlto revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xmltoman textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xmltooling *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
xp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xqilla textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xslide textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xsv textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xt textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
xxdiff revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xxdiff-scripts xxdiff-scripts: convert to egg.mk 2022-01-10 22:24:39 +00:00
yamcha p5-yamcha: remove 2022-01-08 12:02:21 +00:00
yaml-cpp textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
yelp-tools revbump for icu and libffi 2021-12-08 16:01:42 +00:00
yelp-xsl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
yodl textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
yq python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
zet textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
zoem textproc: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:21:28 +00:00
Makefile py-tomlkit: added version 0.8.0 2022-01-11 19:17:22 +00:00