pkgsrc/graphics
wiz a130383688 librsvg: update to 2.52.6.
With a little bit of help of pin.

==============
Version 2.52.6
==============

Backport a fix from the main branch:

- #599 - Fix incorrect text rendering when text has different scales
  in the X/Y axes.  This regressed after librsvg 2.52.5, when Pango
  had to revert its fix for the same bug.  Now librsvg renders all
  text as paths, and does the scaling itself.  Please file a bug if
  you have evidence that this presents a performance problem for you.

==============
Version 2.52.5
==============

Just bugfixes this time:

- #812 - Fix mangled output in rsvg-convert when redirecting output to
  a pipe on Windows (Michael Howell).

- #766 - When outputting to SVG, rsvg-convert now uses the
  width/height units specified in the command line; it always used
  pixels before (Daniel Petri Rocha).

- #814 - Fix incorrect top/left margins for SVG/PS/EPS/PDF output
  (Daniel Petri Rocha).

- #599 - Fix incorrect placement of glyphs when text has non-uniform
  scaling in the X/Y axes.  This is not a librsvg bug, but is fixed by
  Pango 1.49.3 and later.  Hopefully Pango 1.48.11 will be released
  soon with this fix as well.  Note that this release of librsvg
  cannot increase the minimum Pango version to 1.48.11 because it is
  not released yet.

Miscellaneous:

- Updated crate dependencies: assert_cmd, cast, clap cssparser,
  float-cmp, itertools, nalgebra, png, proptest, rctree, selectors,
  system-deps.

==============
Version 2.52.4
==============

New features:

- #816 - Support the isolation property from the Compositing and
  Blending Level 1 specification.

- Support Visual Studio 2022 (Chun-wei Fan).

Fixes:

- #818 - The opacity and mix-blend-mode properties were not being
  applied when an element has a mask.

- Fix panic when an empty group has a pattern fill and filters.

- Fix the tests on Windows; the still only work when Fontconfig is
  present (Chun-wei Fan).

- Work around a bug in the cairo-rs bindings in the test suite, that
  only manifests itself in s/390x due to its calling convention.  See
  https://github.com/gtk-rs/gtk-rs-core/issues/335

==============
Version 2.52.3
==============

Bugfixes, mostly for text layout.  Also, text links in PDF!

- #17 - Support text-decoration=overline.

- #249 - Basic support for the unicode-bidi property.  Librsvg still
  considers each tspan independently of others, which is incorrect, but
  at least bidi-override works now for a single embedding level.

- #804 - Fix placement of tspan that changes the text direction.

- #805 - :lang() selector should now match lang attribute from an
  element's parent. (Michael Howell)

- #806 - Fix the text-anchor property for right-to-left text.

- #807 - PDF now includes links inside text elements. (Michael Howell)

==============
Version 2.52.2
==============

Bugfixes and new features!

## New features

Thanks to Michael Howell, rsvg-convert now supports generating
multi-page PDFs in a sensible way.

With one SVG document per page, each page with the
SVG's natural size:

  rsvg-convert --format=pdf -o out.pdf a.svg b.svg c.svg

With all pages sized as portrait US Letter, and each SVG scaled to fit
so that there is a 1in margin around each page:

  rsvg-convert --format=pdf -o out.pdf \
    --page-width=8.5in --page-height=11in \
    --width=6.5in --height=8.5in --keep-aspect-ratio \
    --top=1in --left=1in \
    a.svg b.svg c.svg

Please see the man page for details.

- #738 - Support <a> elements inside <text>.  Also, support the CSS :link
  pseudo-class for matching against links. (Michael Howell)

- #649 - Support the CSS :lang() pseudo-class for matching against an
  element's xml:lang attribute. (Michael Howell)

- #790 - Support the mask-type property from SVG2.

## Fixes

- #800 - Don't panic when a shorthand property is set to
  inherit. (Michael Howell)

- #788 - Fix regression with the viewport size of interior <svg>
  elements. (Michael Howell)

- #731 - Allow length units to be case-insensitive, per SVG2. (Kolja Lampe)

## Documentation

- There is now a FEATURES.md in the repository, where you can see all
  the elements, attributes, and properties that librsvg supports.  We
  will be adding detail to this gradually.

- For developers, there is now devel-docs/adding-a-property.md with a
  tutorial on how to add support for new CSS properties.

==============
Version 2.52.1
==============

This is a bugfix release; there are no new features this time.

## Changes:

- #791 - Fix ordering of tspan inside text elements for right-to-left
  languages.

- #789 - Fix text-anchor positioning for right-to-left languages.

- #797 - Fix regression in computing sizes when an SVG has only one of
  width/height and a viewBox.  Thanks to Joshua Fogg for compiling a
  list of test cases for this.

- #565 - Spec compliance - the writing-mode property applies only to
  text elements, no to individual tspan elements.

- #794 - Fix build on big-endian platforms.

- Clarify documentation for the rsvg_handle_write() /
  rsvg_handle_close() deprecated APIs.


==============
Version 2.52.0
==============

This is a big release!  What follows is a summary from the 2.51.x
release notes; you can also read them for more detail.

The biggest user-visible change is that rsvg-convert has been ported
to Rust (Sven Neumann, Paolo Borelli), and it has new features!

## New features in rsvg-convert

### Support for physical units

rsvg-convert is now aware of physical units, and
fixes a bug where PDFs were created at the wrong size.  Do you need to
render an SVG in a PDF file, scaled to 10x10 cm, placed at a certain
position of a landscape A4 page?

  rsvg-convert --format=pdf \
    --page-width=297mm --page-height=210mm \
    --width=10cm --height=10cm --keep-aspect-ratio \
    --top=5cm --left=8cm \
    foo.svg > foo.pdf

Please see the rsvg-convert(1) man page for more details and plenty of
examples.

### Support for Accept-Language

Previously, librsvg picked up the user's language preferences through
environment variables like LANG and LC_MESSAGES.  This is inconvenient
for applications that call rsvg-convert but don't want to synthesize a
LANG variable.

There is a new option in rsvg-convert so you can pass
--accept-language=<languages> formatted as an HTTP Accept-Language
header.  This is used to specify which languages will be chosen from
elements with the "systemLanguage" attribute:

    rsvg-convert --accept-language=es-MX,en foo.svg

That command will select Mexican Spanish and English from suitable SVG
elements.  Please see the man page for details.

### Miscellaneous

rsvg-convert's default DPI is now 96, to better match W3C
standards.  It was 90 before for historical reasons.  We can change
this back to 90 if it breaks too many scripts.  You can use the
options "--dpi-x=90 --dpi-y=90" to restore the old behavior.

rsvg-convert no longer supports the "xml" or "recording" output
formats.  These are useful only for debugging Cairo, not for general
usage.

## SVG2/CSS3 features

The following features are supported now.  Madds H, John Ledbetter,
worked on these features.

- transform property from SVG2; previously librsvg only supported the
  transform attribute from SVG1.1, which has different syntax.

- context-fill and context-stroke for <marker> and <use> elements.

- markers now support orient="auto-start-reverse".

- paint-order for text elements.

- "auto" values for the width and height attributes of the <image>,
  <rect>, and <svg> elements.

- All the <filter-function> types from the Filter Effects Module Level
  1 specification: blur(), brightness(), contrast(), drop-shadow(),
  grayscale(), hue-rotate(), invert(), opacity(), sepia(), saturate().

- The filter property now supports chains of uri() filters or
  <filter-function> shortcuts.

- Support CSS selectors for attribute matching, like rect[attr^="prefix"]

## New APIs

See the HTML documentation for details:

- rsvg_handle_get_intrinsic_size_in_pixels()

- rsvg_major_version / rsvg_minor_version / rsvg_micro_version
  variables - used to obtain the librsvg version from languages other
  than C, since they do not have access to the C macros like
  LIBRSVG_MAJOR_VERSION.

## Deprecations

The following APIs are deprecated but still available:

- rsvg_handle_render_cairo() - use rsvg_handle_render_document() instead.

- rsvg_handle_render_cairo_sub() - use rsvg_handle_render_layer() or
  rsvg_handle_render_element() depending on what you want to do.

Please see the "Migrating from old APIs" chapter in the HTML
documentation for details.

## News for developers

If you want to run the librsvg test suite easily, there are now Docker
scripts to do so.  Please see the tools/docker/README.md file for
details. (Madds H)

There is no leftover C code in the library; all of the implementation
and the publically-visible symbols are defined in the Rust code.  The
remaining .h files are all public and do not reflect any .c
code. (Sven Neumann)

The test suite is now ported to Rust.  The only remaining tests in C
are for the C API itself (tests/api.c).  With the test suite in
Rust, the tests are automatically run in parallel across CPU cores,
making test runs much faster.  (Sven Neumann, Dunja Lalic)

"cargo build", "cargo test" now work without running autotools first,
so you can in general develop librsvg as a normal Rust project.

The HTML documentation has new chapters; you may find interesting
things there!

## News for distributors

There is a new list of librsvg releases with security fixes in
SECURITY.md.  That file also contains security-related information
on librsvg's dependencies.

The Minimum Supported Rust Version (MSRV) is now Rust 1.52.

## Special thanks

Paolo Borelli and Sven Neumann did a lot of painstaking work to finish
porting the library and rsvg-convert to Rust.

Sven Neumann and Dunja Lalic ported the test suite to Rust, making it
much faster.

Dunja Lalic rewrote the Continuous Integration infrastructure, making
it MUCH faster.

Madds H did their Outreachy internship for librsvg and implemented a
bunch of useful SVG2/CSS3 features.

John Ledbetter methodically went through all the <filter-function>
shortcuts and implemented them for SVG2.

Ismael Luceno has been cleaning up our autotools scripts.

Andre Klapper has been wrangling numerous bug reports from Wikimedia
as usual.

Chun-wei Fan, Abraham Toriz, Christian Hergert, Ignacio Casal Quinteiro
have been keeping the Windows and MacOS builds working.


==============
Version 2.51.4
==============

- #618 - SVG2: Implement context-fill and context-stroke for markers
  (Madds H).

- #727 - SVG2: Implement paint-order for text elements (Madds H).

- #747 - SVG2: Support width="auto" and height="auto" for the image element.

- Fix the Windows build (Chun-wei Fan).

- The tools/docker directory now has scripts that developers can use
  to test librsvg on containers for various Linux distributions.

- Gtk-rs dependency is updated to 0.14.0 (Bilal Elmoussaoui, Chun-wei Fan).

- #758 - Panic when rendering with masks or opacity to a non-image surface.

- #757 - Fix 32-bit builds.

==============
Version 2.51.3
==============

The big news is that rsvg-convert is now aware of physical units, and
fixes a bug where PDFs were created at the wrong size.  Do you need to
render an SVG in a PDF file, scaled to 10x10 cm, placed at a certain
position of a landscape A4 page?

  rsvg-convert --format=pdf \
    --page-width=297mm --page-height=210mm \
    --width=10cm --height=10cm --keep-aspect-ratio \
    --top=5cm --left=8cm \
    foo.svg > foo.pdf

Please see the rsvg-convert(1) man page for more details and plenty of
examples.

SVG2 features:

Markers now implement orient="auto-start-reverse".  The work on
markers is by Madds H., who is doing their Outreachy internship for
librsvg.

All the <filter-function> types in SVG2 are now supported, thanks to
John Ledbetter.

- The Minimum Supported Rust Version (MSRV) is now Rust 1.52.  This
  takes care of CVE-2021-28878 in the Rust standard library.

- #514 - rsvg-convert is now aware of physical units.

- #484 - Markers can now have orient="auto-start-reverse" per SVG2
  (Madds H - Outreachy internship).

- #711 - Implement the drop-shadow() filter function (John Ledbetter).

- #713 - Implement the hue-rotate() filter function (John Ledbetter).

- #677 - rsvg-convert, do not clip the rightmost/bottomost pixels of
  an image with partial pixel coverage.

- Partial fix for #668 - Render small caps for fonts that support the
  "smcp" OpenType feature.  Librsvg and Pango are not yet able to
  synthesize small caps for fonts that do not support them, but for
  those that do, they should work fine now.

- #566 - Restrict which elements can appear inside a clipPath, to be
  spec compliant.

- #746 - Possible cairo_save() without cairo_restore() in render_layer().

- Various updates to the developer's documentation.

==============
Version 2.51.2
==============

This release fixes an important bug about text spacing.  The bug fix
requires an update to at least Pango 1.44.  Sorry for the increased
requirements!

Librsvg now supports most of the filter function shortcuts in SVG2;
see below.

Previously, librsvg picked up the user's language preferences through
environment variables like LANG and LC_MESSAGES.  This is inconvenient
for applications that call rsvg-convert but don't want to synthesize a
LANG variable.

There is a new option in rsvg-convert so you can pass
--accept-language=<languages> formatted as an HTTP Accept-Language
header.  This is used to specify which languages will be chosen from
elements with the "systemLanguage" attribute:

    rsvg-convert --accept-language=es-MX,en foo.svg

That command will select Mexican Spanish and English from suitable SVG
elements.  Please see the man page for details.

- The Minimum Supported Rust Version (MSRV) is now Rust 1.51.

- Librsvg now requires at least Pango 1.44.

- #730 - Incorrect text spacing when the transform is not 1:1.  You
  can see this when a small font-size is scaled up due to a
  transform.  It is less visible for a large font-size scaled down.

- #709 #710 #712 714 #715 #716 #717 - The "filter" attribute now
  accepts lists of "<filter-function>" per SVG2.  There is support for
  blur(), contrast(), grayscale(), invert(), opacity(), saturate(),
  sepia() (John Ledbetter).

- #356 - Add --accept-language option to rsvg-convert.

- #704 - Fix circle/ellipse in paths when they are made out of a
  single Arc command.

- #691 - Don't allow number lists with unbounded lengths in
  tableValues attributes, for feComponentTransfer and
  feConvolveMatrix (Madds H).

- #718 - Negative rx/ry in rect element should be ignored.

- #687 - Reduce memory pressure when rendering text.

- Fix build on 32-bit ARM (Lovell Fuller).

- Update the Rust crate dependencies (Bastien Orivel).

- Refactoring parsers (Paolo Borelli).

- There is a new list of librsvg releases with security fixes in
  SECURITY.md.  That file also contains security-related information
  on librsvg's dependencies.

Special thanks to John Ledbetter for carefully implementing each of
the new shortcuts for filter functions in SVG2.


==============
Version 2.51.1
==============

- The Minimum Supported Rust Version is now 1.48.

- rsvg-convert should fully work on Windows again (Abraham Toriz).

- rsvg-convert's SVG output format uses pixel units instead of points again.

- #699 - Images embedded as data: URLs didn't render if they had a
  MIME type with a charset parameter.

- #698 - Add limit for too-large radiuses on the feMorphology filter (Madds H).

- #686 - Reduced stack usage (Sebastian Dröge).

- #261 - Parse the enable-background property.

- #703 - Properly ignore elements in an error state inside the "switch" element.

- #695 - Fix cascading mode for the "feImage" element.

- Fix cascading for the "filter" element and filter primitives in general.

- Remove constraints on the types of units used within the "filter"
  element and filter primitives.

- Reduced memory consumption in general by about 300 bytes per SVG element.

- Update vulnerable crates:
    smallvec to 1.6.1 (RUSTSEC-2021-0003)
    generic-array to 0.13.3 (RUSTSEC-2020-0146)

- Lots of cleanups to the build (Sven Neumann).

- Update to gtk-rs 0.9 (Bilal Elmoussaoui).

- Updated ARCHITECTURE.md and documentation in general.

Special thanks to Dunja Lalic for adding the start of code coverage
analysis to the build.


==============
Version 2.51.0
==============

There are many changes in this development release!  This experimental
release is meant for early testing, with the understanding that some
things may be broken, especially since we have large changes to the
way librsvg's artifacts are built.

The biggest user-visible change is that rsvg-convert has been ported
to Rust (Sven Neumann, Paolo Borelli).

Please file bugs at https://gitlab.gnome.org/GNOME/librsvg/-/issues/new
if these changes break your scripts; they are experimental for the
2.51.x development series:

- #646 - rsvg-convert's default DPI is now 96, to better match W3C
  standards.  It was 90 before for historical reasons.  We can change
  this back to 90 if it breaks too many scripts.  You can use the
  options "--dpi-x=90 --dpi-y=90" to restore the old behavior.

- rsvg-convert's --export-id (-i) option should now have more useful
  behavior.  This extracts a particular element from the SVG document
  and renders it scaled to the size specified by the --width/--height
  arguments, or to the pixel size of the element as if it had no
  transformations applied.

- rsvg-convert no longer supports the "xml" or "recording" output
  formats.  These are useful only for debugging Cairo, not for general
  usage.

Known missing features, which should be restored for the stable release:

- rsvg-convert does not allow stdin/stdout streams on Windows; this is
  being tracked in issue #676.

The following are changes related to porting to Rust; they are not
necessarily user-visible, but important for developers of the library:

- There is no leftover C code in the library; all of the
  implementation and the publically-visible symbols are defined in the
  Rust code.  The remaining .h files are all public and do not reflect
  any .c code.  (Sven Neumann)

- The test suite is now ported to Rust.  The only remaining tests in C
  are for the C API itself (tests/api.c).  With the test suite in
  Rust, the tests are automatically run in parallel across CPU cores,
  making test runs much faster.  (Sven Neumann, Dunja Lalic)

- "cargo build", "cargo test" should now work without running
  autotools first.

- The C API is now implemented on top of the public Rust API, without
  special hooks into the library's internals.

The following APIs are deprecated but still available:

- rsvg_handle_render_cairo() - use rsvg_handle_render_document() instead.

- rsvg_handle_render_cairo_sub() - use rsvg_handle_render_layer() or
  rsvg_handle_render_element() depending on what you want to do.

- These deprecations are because the new APIs conform with the web
  world's view of how SVGs should be positioned and scaled in
  surrounding content.  Whereas the old APIs were about rendering SVGs
  to whatever current transformation matrix a Cairo context may
  contain, the new APIs take a rectangular viewport and librsvg
  automatically scales the SVG document to fit in it.  The "natural
  sizing" that was implicit in the deprecated APIs is now explicitly
  documented, and available through the new API
  rsvg_handle_get_intrinsic_size_in_pixels().

New APIs:

- rsvg_handle_get_intrinsic_size_in_pixels() converts an SVG
  document's intrinsic dimensions to pixels, i.e. transforms the SVG
  document's "width" and "height" attributes to CSS pixels.

New features and bug fixes:

- #615: SVG2: Support a chain of uri() filters in the "filter" property
  (John Ledbetter, Sven Neumann).

- #483: Support CSS selectors for attribute matching, like rect[attr^="prefix"]

- #554: Fixed the geometry_for_layer() APIs to not ignore the passed viewport.

- Fixed CSS "import" so it allows only files from the same base directory
  (Lars Schmertmann).

- #642 - Fix dx/dy offsets in nested <tspan> elements.

- #601 - Compute correct bounds for objects with stroke-width=0.

- Slight speed improvements in the RGBA premultiplication code (Sven Neumann).

- #623 - The pkg-config files (*.pc) do not define the 'svgz_supported' and
  'css_supported' variables anymore.  These variables were hardcoded
  to 'true' and unchanged since 2011.

- #624 - The source repository no longer produces a librsvg-uninstalled.pc file.

- Fix the MacOS build (Christian Hergert, Ignacio Casal Quinteiro).

- Deal with missing pkg-config (Ismael Luceno).

- For cross-compilation, check for target-specific prefixed tools like
  rustc/cargo (Heiko Becker).

Changes in the Rust API:

- #597 - The LoadingError and RenderingError enums have changed, and
  are now marked #[non_exhaustive].  They will probably change again
  to hide details of error variants before we make librsvg available
  as a crate on crates.io.

Special thanks for this release:

- Dunja Lalic for revamping the CI infrastructure and making our CI
  runs much, much faster - !398.

- Sven Neumann, Dunja Lalic for porting the test suite to Rust.

- Sven Neumann, Paolo Borelli for porting rsvg-convert to Rust and
  unraveling all the little historical details that were embedded in
  it.

- Paolo Borelli for constant refactoring.
2022-02-23 20:45:44 +00:00
..
aalib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
adaptagrams graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
adwaita-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
agg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ansilove ansilove: update to 4.1.6. 2022-02-10 20:37:37 +00:00
aqsis *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
arc-theme revbump for icu and libffi 2021-12-08 16:01:42 +00:00
artist graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
asymptote graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
autopano-sift-C revbump for icu and libffi 2021-12-08 16:01:42 +00:00
autotrace revbump for icu and libffi 2021-12-08 16:01:42 +00:00
aview graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
babl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
barcode graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
bktr2jpeg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
blender blender: Add pulseaudio option and depend on graphics/potrace 2022-02-04 16:47:52 +00:00
blender-lts *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
blinkenthemes revbump for icu and libffi 2021-12-08 16:01:42 +00:00
blinkentools revbump for icu and libffi 2021-12-08 16:01:42 +00:00
box2d graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
breeze-icons revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cairo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cairo-gobject revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cairomm graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cairomm1.16 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cal3d graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cal3d-examples revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cambevao graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
camediaplay graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
camlimages graphics/camlimages: make it build again 2021-12-26 05:28:23 +00:00
cdlabelgen graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
Cenon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cglm graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
charls graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cheese revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cinepaint revbump for icu and libffi 2021-12-08 16:01:42 +00:00
circos graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
claraocr graphics/claraocr: fix up invalid calls to open, found by RHEL compiler 2021-12-29 09:18:42 +00:00
clutter revbump for icu and libffi 2021-12-08 16:01:42 +00:00
clutter-box2d revbump for icu and libffi 2021-12-08 16:01:42 +00:00
clutter-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
clutter-gtk0.10 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
clutter-mx revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cnxtview graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cogl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
Coin graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
colord revbump for icu and libffi 2021-12-08 16:01:42 +00:00
colord-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
comix revbump for icu and libffi 2021-12-08 16:01:42 +00:00
compface graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cpia2view graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
cqcam graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
CRWInfo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
darktable darktable: disable some more Werror 2022-02-13 10:53:12 +00:00
dcraw graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
deforaos-camera revbump for icu and libffi 2021-12-08 16:01:42 +00:00
deforaos-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
denemo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dia revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dia-python revbump for icu and libffi 2021-12-08 16:01:42 +00:00
digikam *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
djview4 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
djvulibre-lib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
djvulibre-tools
drawing graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
drawpile revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dvipng graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
dx revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dxsamples graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
edje revbump for icu and libffi 2021-12-08 16:01:42 +00:00
elementary-xfce-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
enblend-enfuse *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
eog revbump for icu and libffi 2021-12-08 16:01:42 +00:00
eom revbump for icu and libffi 2021-12-08 16:01:42 +00:00
epeg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
erlang-eimp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
evas graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
evas-buffer
evas-edb
evas-eet
evas-gif
evas-jpeg
evas-pmaps
evas-png
evas-software-x11
evas-tiff
evas-xpm
ewipe graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
exif graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
exifprobe graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
exiftags graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
exiv2 exiv2: update to 0.27.5. 2021-11-07 12:09:12 +00:00
extrema revbump for icu and libffi 2021-12-08 16:01:42 +00:00
faba-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
farbfeld graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
fbm graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
feh feh: update to 3.8 2022-01-11 10:30:56 +00:00
fly graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
fna3d revbump for icu and libffi 2021-12-08 16:01:42 +00:00
fnlib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
fotoxx revbump for icu and libffi 2021-12-08 16:01:42 +00:00
frameworks revbump for icu and libffi 2021-12-08 16:01:42 +00:00
freeglut revbump for icu and libffi 2021-12-08 16:01:42 +00:00
freeimage graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
freeimageplus Recursive revbump for graphics/libraw. 2021-09-28 10:28:36 +00:00
freetype
freetype-lib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
freetype-utils
freetype2 freetype2: Update to 2.11.1 2022-01-04 13:16:17 +00:00
fswebcam graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ftgl graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
fujiplay graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
g2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gd graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gdchart graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gdk-pixbuf2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gdk-pixbuf2-xlib revbump for icu and libffi 2021-12-08 16:01:42 +00:00
geeqie revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gegl gegl: Update to 0.4.34 2022-01-04 12:58:25 +00:00
geomview graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
get_ds7 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gexiv2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gfract revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gif2png Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
gif320 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
giflib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
giflib-util
gifsicle graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
giftrans graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gimmage revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp gimp: Update to 2.10.30 2022-01-04 13:07:18 +00:00
gimp-color-manager revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-create-spritesheet graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gimp-docs-de
gimp-docs-en graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gimp-docs-es
gimp-docs-fr
gimp-docs-it
gimp-docs-ja
gimp-docs-ko
gimp-docs-nl
gimp-docs-nn
gimp-docs-pl
gimp-docs-ru
gimp-docs-sv
gimp-docs-zh_CN
gimp-exif-browser revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-fix-ca revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-high-pass-filter graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gimp-jxr revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-liquid-rescale revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-rawphoto revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-refocus-it revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-resynthesizer revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-ufraw revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gimp-warp-sharp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gimp2-wideangle revbump for icu and libffi 2021-12-08 16:01:42 +00:00
giram revbump for icu and libffi 2021-12-08 16:01:42 +00:00
girara Updated graphics/girara to 0.3.7 2022-02-17 16:26:44 +00:00
gl2ps gl2ps: Darwin provides its own OpenGL and GLUT; no need for Mesa and FreeGLUT 2021-12-15 17:15:13 +00:00
glad graphics/glad needs py-expat to build. (seen in a bulk build a while back) 2021-12-25 21:50:20 +00:00
gle graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
glew graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
glfw revbump for icu and libffi 2021-12-08 16:01:42 +00:00
glitz graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gliv revbump for icu and libffi 2021-12-08 16:01:42 +00:00
glm glm: update to 0.9.9.8 (needed for kicad 6) 2022-01-02 14:53:26 +00:00
glpng graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
glu graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
glw graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
glx-utils graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gmic revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gmngview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
GMT revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-backgrounds graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gnome-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gnome-icon-theme-extras graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gnome-icon-theme-symbolic revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-screenshot revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-themes-standard revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnuplot gnuplot: updated to 5.4.2 2021-12-15 17:16:43 +00:00
gocr graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
goocanvas2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gource *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
gphoto2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gpick *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
gpicview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gqview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gqview-devel revbump for icu and libffi 2021-12-08 16:01:42 +00:00
grafx2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
grap graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
graphene revbump for icu and libffi 2021-12-08 16:01:42 +00:00
GraphicsMagick GraphicsMagick: updated to 1.3.37 2021-12-14 19:56:24 +00:00
graphite2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
graphviz graphviz: Use release tarballs, not tagged snapshots from gitlab. 2022-02-15 16:16:53 +00:00
graphviz-dot-mode graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gri revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins0.10-cairo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins0.10-jpeg revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins0.10-png revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins1-aalib graphics/gst-plugins1-aalib: import gst-plugins1-aalib-1.18.5 2021-11-15 22:06:12 +00:00
gst-plugins1-cairo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins1-gdk_pixbuf revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins1-jpeg gst-plugins1-jpeg: fix 2021-11-17 08:36:03 +00:00
gst-plugins1-png *: update gstreamer1 and plugins and related packages to 1.18.5 2021-11-15 22:01:15 +00:00
gst-plugins1-webp graphics/gst-plugins1-webp: import gst-plugins1-webp-1.18.5 2021-11-15 22:07:34 +00:00
gthumb revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gthumb3 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtkam revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtkglext revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtkimageview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtksee graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gts revbump for icu and libffi 2021-12-08 16:01:42 +00:00
guetzli graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
guile-cairo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
GUIlib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
gwenview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
h5utils graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
hermes graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
hicolor-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
hp2xx graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
hs-dotgen graphics/hs-dotgen: import hs-dotgen-0.4.3 2022-02-23 16:53:38 +00:00
hs-JuicyPixels revbump after changing the default Haskell compiler 2022-02-12 08:50:25 +00:00
hugin *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
icon-naming-utils graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
icoutils graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
iGMT graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ImageMagick ImageMagick: update to 7.1.0.25. 2022-02-20 21:29:45 +00:00
ImageMagick6 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ImageViewer revbump for icu and libffi 2021-12-08 16:01:42 +00:00
imlib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
imlib-gtk
imlib2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
impress graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
imv imv: update to 4.3.1. 2021-12-19 10:51:04 +00:00
inkscape *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
ipe revbump for icu and libffi 2021-12-08 16:01:42 +00:00
irrlicht graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ivtools graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jasper revbump for icu and libffi 2021-12-08 16:01:42 +00:00
jbig2dec graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jbig2enc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jbigkit graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jhead graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jp2a revbump for icu and libffi 2021-12-08 16:01:42 +00:00
jpeg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jpeg2ps graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jpeg_ls graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jpeginfo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jpegoptim graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jpegpixi graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jpegquality graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
jxrlib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
kamera revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kcolorchooser revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kde-base-artwork *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
kdegraphics-mobipocket revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kdegraphics-strigi-analyzer *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
kdegraphics-thumbnailers revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kgamma *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
kiconthemes revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kimageformats revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kipi-plugins revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kolourpaint revbump for icu and libffi 2021-12-08 16:01:42 +00:00
koverartist *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
kplotting revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kqtquickcharts revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kqtquickcharts4 *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
krita *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
kruler revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kvantum graphics/kvantum: add update warning 2022-02-18 13:13:28 +00:00
lasem revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lcms graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
lcms2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
lensfun revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lepton graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
leptonica graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
lib3ds revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libansilove libansilove: update to 1.2.9. 2022-02-10 20:37:02 +00:00
libart graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libbpg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libcaca graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libdmtx graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libepoxy graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libexif libexif: Update to 0.6.24 2021-11-30 16:25:40 +00:00
libexif-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libfpx graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libgdiplus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libggi graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libggigcp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libggimisc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libggiwmh graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libgii graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libgiigic graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libgltf *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
libgnomecanvas revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libgnomecanvasmm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libheif graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libimagequant graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libiptcdata revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libjpeg-turbo libjpeg-turbo: updated to 2.1.2 2021-11-19 21:55:01 +00:00
libkdcraw revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libkexiv2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libkexiv2-kde4 *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
libkipi revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libksane revbump for icu and libffi 2021-12-08 16:01:42 +00:00
liblqr revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libmypaint graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libotf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libpano13 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libpgf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libpuzzle graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libraw graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
librsvg librsvg: update to 2.52.6. 2022-02-23 20:45:44 +00:00
librsvg-c revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libscigraphica revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libsixel revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libspiro graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libv4l libv4l: update to 1.22.1. 2021-11-01 20:35:16 +00:00
libvideogfx graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libwebp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
libwmf revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libxmi graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ljpeg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
lsix revbump for icu and libffi 2021-12-08 16:01:42 +00:00
luminance-hdr *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
luv-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
lxde-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
lximage-qt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lxqt-themes graphics/lxqt-themes: update to 1.0.0 2021-11-19 09:45:31 +00:00
magicpoint graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mandelbulber revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mate-backgrounds revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mate-icon-theme revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mate-icon-theme-faenza revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mate-themes revbump for icu and libffi 2021-12-08 16:01:42 +00:00
materia-gtk-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
MesaDemos revbump for icu and libffi 2021-12-08 16:01:42 +00:00
MesaLib Revert addition of patch for older macOS, breaks joyent bulk builds 2021-12-23 20:29:09 +00:00
metacam graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mgl graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mng graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mojoshader revbump for icu and libffi 2021-12-08 16:01:42 +00:00
moka-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mpeg2codec graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mpgtx graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mscgen graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
mygui revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mypaint mypaint: restrict to python 3 2022-01-28 12:14:58 +00:00
mypaint-brushes graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ncview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
netpbm netpbm: Update to 10.86.25 2021-12-20 20:41:38 +00:00
Ngraph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ns-cult3d graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
numix-gtk-theme revbump for icu and libffi 2021-12-08 16:01:42 +00:00
numix-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
numix-icon-theme-circle graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
nvidia-texture-tools graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
nvtv revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ocaml-cairo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ocrad graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
opencolorio graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
opencsg revbump for icu and libffi 2021-12-08 16:01:42 +00:00
opencv revbump for icu and libffi 2021-12-08 16:01:42 +00:00
opencv-contrib-face opencv-contrib-face: regen distinfo for new opencv patch 2021-11-15 17:49:44 +00:00
opendis graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
openexr openexr: update to 3.1.4. 2022-02-02 14:48:18 +00:00
openimageio *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
openjpeg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
OpenRM graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
optipng graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
osg *: revbump for gdal-lib update 2022-01-18 17:42:25 +00:00
oxipng graphics/oxipng: update to 5.0.1 2021-11-16 08:20:00 +00:00
oxygen-icons graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Barcode-Code128 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-cairo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-cairo-gobject revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-Chart graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Chart-ThreeD graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-clutter graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GD graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GD-Barcode graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GD-Graph-sparklines graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GD-Graph3d graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GD-SecurityImage graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GD-SVG graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GDGraph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GDGraph-boxplot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GDTextUtil graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GIFgraph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Gnome2-Canvas revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-goocanvas2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-Graph-Easy graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GraphicsMagick GraphicsMagick: updated to 1.3.37 2021-12-14 19:56:24 +00:00
p5-GraphViz graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-GraphViz2 Update to 2.66. From the changelog: 2021-10-31 08:49:41 +00:00
p5-Image-BMP graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Image-ExifTool graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Image-Imlib2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Image-Info graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Image-JpegTran-AutoRotate graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Image-Sane graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Image-Size graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-PerlMagick p5-PerlMagick: reset PKGREVISION after update 2022-01-31 11:34:52 +00:00
p5-RRDTool-OO graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-SVG graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-SVG-Graph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-SWF-File graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
p5-Template-GD graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
panomatic graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
PanoTools graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
paper-icon-theme revbump for icu and libffi 2021-12-08 16:01:42 +00:00
papirus-folders graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
papirus-icon-theme graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pastel graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pcl *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
pdfpc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pdiff graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pear-Image_Canvas graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pear-Image_Color graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pear-Image_Graph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pfstools revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pgraf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
photopc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
php-exif
php-gd
php-imagick graphics/php-imagick: update to 3.7.0 2022-02-20 13:23:16 +00:00
php-jpgraph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
picat graphics/picat: import package 2022-02-22 10:11:01 +00:00
pikchr Honor LDFLAGS to fix NetBSD build. Ride recent import. 2021-11-26 19:39:15 +00:00
pixmap graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ploticus graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ploticus-examples graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
plotmtv graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
plotutils graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
png graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
png2html graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pngcheck graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pngcrush graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pngquant pngquant: updated to 2.17.0 2021-12-02 12:35:00 +00:00
potrace graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
povray graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
prag graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
prison revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ps2eps graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
pstoedit revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ptex graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
py-aafigure *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-actdiag python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-altgraph *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-blockdiag python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-blurhash *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-brewer2mpl *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cairo py-cairo: mark as conflicting with other versions of this package 2022-01-29 07:25:34 +00:00
py-cairo118 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cairocffi *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-chart *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-cycler *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-dot *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-exifread *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-gdchart graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
py-gdmodule *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-ggplot *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-graphviz *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-gtkglext py-pygtkglext: convert to egg.mk 2022-01-22 14:45:45 +00:00
py-imageio python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-imagesize *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-imaging *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-leather *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-matplotlib *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-matplotlib-inline py-matplotlib-inline: added version 0.1.3 2022-01-24 18:35:27 +00:00
py-matplotlib-venn *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-mcomix *: set USE_PKG_RESOURCES for some more packages 2022-01-05 20:07:10 +00:00
py-nwdiag python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-objgraph *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-openexr *: fix for python 3.x 2022-01-19 17:50:45 +00:00
py-OpenGL *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-OpenGL-accelerate py-OpenGL-accelerate: run cython before building 2022-01-27 08:35:28 +00:00
py-piddle *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-piexif *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-Pillow *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-Pillow6 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pycha python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-pygal python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-pygraphviz py-pygraphviz: updated to 1.9 2022-02-10 10:53:43 +00:00
py-qrcode python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-scour py-scour: rename scour to scour-${PYVERSSUFFIX} to avoid self-conflict 2022-01-29 07:36:00 +00:00
py-seaborn *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-seqdiag python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-sk1libs *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-strich *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-tifffile python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-uniconvertor *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-wand *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-Willow *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
qimageblitz revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qiv revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qore-glut-module mark qore-glut-module broken since it is incompatible with the new qore apis 2022-01-27 18:16:55 +00:00
qore-opengl-module mark qore-opengl-module broken since it is incompatible with the new qore apis 2022-01-27 18:15:27 +00:00
qr-code-generator graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
qr-code-generator16 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
qrrs graphics/qrrs: update to 0.1.8 2022-01-02 20:03:55 +00:00
quesoglc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qvplay graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-Cairo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-colorspace graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-colourpicker graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-dichromat graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-effects graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-farver graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-ggExtra graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-ggplot2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-ggtern graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-ggthemes graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-gridExtra graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-isoband graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-jpeg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-labeling graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-latex2exp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-latticeExtra graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-manipulateWidget graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-munsell graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-png graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-polyclip graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-rgl graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-scales graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-thematic graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-viridis graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
R-viridisLite graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
rabbit graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
radiance graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
raleigh-reloaded raleigh-reloade: update to 1.4. 2022-02-01 19:03:23 +00:00
rawtherapee revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rayshade graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
refocus-it graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
resize_image graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ristretto ristretto: update to 0.12.2 2022-01-20 01:03:55 +00:00
ruby-cairo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-cairo-gobject ruby-gnome: update to 3.5.1. 2022-01-17 15:17:14 +00:00
ruby-chunky_png graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-clutter ruby-gnome: update to 3.5.1. 2022-01-17 15:17:14 +00:00
ruby-clutter-gdk ruby-gnome: update to 3.5.1. 2022-01-17 15:17:14 +00:00
ruby-clutter-gtk ruby-gnome: update to 3.5.1. 2022-01-17 15:17:14 +00:00
ruby-color graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-color-japanese graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-color-tools graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-gd graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-gdk3 ruby-gnome: update to 3.5.1. 2022-01-17 15:17:14 +00:00
ruby-gdk_pixbuf2 ruby-gnome: update to 3.5.1. 2022-01-17 15:17:14 +00:00
ruby-gnuplot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-image_size graphics/ruby-image_size: update to 3.0.1 2021-11-23 14:32:01 +00:00
ruby-imlib2 graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-mini-magick graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-oily_png graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ruby-opengl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ruby-RMagick graphics/ruby-RMagick: update to 4.2.4 2022-02-12 15:29:23 +00:00
ruby-rsvg2 ruby-gnome: update to 3.5.1. 2022-01-17 15:17:14 +00:00
ruby-screengif graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
s10sh graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
sane-airscan revbump for icu and libffi 2021-12-08 16:01:42 +00:00
sane-backends sane-backends: Reorganize PLIST_VARS 2022-01-26 17:17:39 +00:00
sane-frontends revbump for icu and libffi 2021-12-08 16:01:42 +00:00
scidavis revbump for icu and libffi 2021-12-08 16:01:42 +00:00
scigraphica revbump for icu and libffi 2021-12-08 16:01:42 +00:00
screengrab revbump for icu and libffi 2021-12-08 16:01:42 +00:00
scrot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
SDL2_gfx revbump for icu and libffi 2021-12-08 16:01:42 +00:00
SDL2_image revbump for icu and libffi 2021-12-08 16:01:42 +00:00
SDL_image graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
shotwell revbump for icu and libffi 2021-12-08 16:01:42 +00:00
silgraphite graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
silgraphite-ft graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
silgraphite-xft graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
simage graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
skencil graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
slim-themes graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
spcaview graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
spectacle revbump for icu and libffi 2021-12-08 16:01:42 +00:00
stitchy graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
svgpart revbump for icu and libffi 2021-12-08 16:01:42 +00:00
sxiv graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tango-icon-theme revbump for icu and libffi 2021-12-08 16:01:42 +00:00
termtosvg *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
tesseract revbump for icu and libffi 2021-12-08 16:01:42 +00:00
tex-a2ping graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-a2ping-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-animate graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-animate-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-asyfig graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-asyfig-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-auto-pst-pdf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-auto-pst-pdf-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-automata graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-automata-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-bbcard graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-bbcard-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-bclogo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-bclogo-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-blockdraw_mp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-blockdraw_mp-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-bpolynomial graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-bpolynomial-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-chemfig graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-chemfig-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-circuitikz graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-circuitikz-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-cmarrows graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-cmarrows-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-contour graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-contour-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-drv graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-drv-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-dviincl graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-dviincl-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-dvipng-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-eepic graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-eepic-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-ellipse graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-ellipse-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-emp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-emp-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-epsincl graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-epsincl-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-epstopdf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-epstopdf-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-expressg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-expressg-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-exteps graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-exteps-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-featpost graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-featpost-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-feynmf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-feynmf-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-feynmp-auto graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-feynmp-auto-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-fiziko graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-fiziko-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-garrigues graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-garrigues-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-gmp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-gmp-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-graphics-pln graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-graphics-pln-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-hatching graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-hatching-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-incgraph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-incgraph-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-latexmp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-latexmp-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mcf2graph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mcf2graph-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metago graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metago-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metaobj graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metaobj-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metaplot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metaplot-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metapost graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metapost-colorbrewer graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metapost-colorbrewer-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metapost-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metauml graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-metauml-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mfpic graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mfpic-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mfpic4ode graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mfpic4ode-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mp3d graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mp3d-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mparrows graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mparrows-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mpattern graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mpattern-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mpcolornames graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mpcolornames-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mpgraphics graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mpgraphics-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mptopdf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mptopdf-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mptrees graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-mptrees-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pdfcrop graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pdfcrop-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pgf-umlsd graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pgf-umlsd-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pgfgantt graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pgfgantt-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pictex graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pictex-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-piechartmp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-piechartmp-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-psgo graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-psgo-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-2dplot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-2dplot-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-3d graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-3d-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-3dplot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-3dplot-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-barcode graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-barcode-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-blur graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-blur-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-circ graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-circ-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-coil graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-coil-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-eps graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-eps-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-fill graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-fill-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-ghsb graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-ghsb-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-gr3d graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-gr3d-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-grad graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-grad-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-lens graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-lens-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-math graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-math-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-node graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-node-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-osci graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-osci-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-ovl graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-ovl-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-pdf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-pdf-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-plot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-plot-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-poly graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-poly-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-slpe graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-slpe-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-text graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-text-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-tools graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-tools-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-tree graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pst-tree-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pstricks graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pstricks-add graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pstricks-add-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-pstricks-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-qrcode graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-qrcode-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-repere graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-repere-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-roex graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-roundrect graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-roundrect-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-shapes graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-shapes-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-slideshow graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-slideshow-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-splines graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-splines-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-suanpan graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-suanpan-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tex-ps graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tex-ps-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-texdraw graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-texdraw-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-textpath graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-textpath-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-threeddice graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-threeddice-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikz-3dplot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikz-3dplot-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikz-cd graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikz-cd-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikz-feynhand graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikz-feynhand-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzinclude graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzinclude-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzmark graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzmark-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzorbital graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzorbital-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzpagenodes graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzpagenodes-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzpfeile graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzpfeile-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzposter graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzposter-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzscale graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzscale-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzsymbols graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tikzsymbols-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tkz-base graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tkz-base-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tkz-fct graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-tkz-fct-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-venndiagram graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-venndiagram-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-xypic graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tex-xypic-doc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tgif graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tiff graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tk-tkimg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tkpiechart graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tuxpaint revbump for icu and libffi 2021-12-08 16:01:42 +00:00
tuxpaint-config graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
tuxpaint-stamps graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
ucview revbump for icu and libffi 2021-12-08 16:01:42 +00:00
unicap revbump for icu and libffi 2021-12-08 16:01:42 +00:00
urt graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
vcg graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
veusz veusz: convert to egg.mk 2022-01-10 07:37:36 +00:00
vid graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
viewfax graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
viewnior revbump for icu and libffi 2021-12-08 16:01:42 +00:00
vigra graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
viu graphics/viu: update to 1.4.0 2021-12-19 15:56:24 +00:00
vnc2swf graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
vp graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
vtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
vtk-docs graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
vulkan-headers vulkan-headers: Update to 1.3.204 2022-01-29 22:07:27 +00:00
wcslib graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
wld revbump for icu and libffi 2021-12-08 16:01:42 +00:00
wm-icons graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
wmphoto graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
wxsvg revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xart graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xbmbrowser graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xdot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xdvipresent graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xfce4-icon-theme revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfig graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xgc graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xgraph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xli graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xmorph graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xpaint graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xplot graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xplot-devel graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xsane revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xv graphics: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:45:53 +00:00
xzgv revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zathura-cb revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zathura-djvu revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zbar revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zphoto revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zxing-cpp zxing-cpp: Fix build without the internet access 2022-02-06 13:22:47 +00:00
Makefile graphics/Makefile: + hs-dotgen 2022-02-23 16:53:53 +00:00