pkgsrc/x11
vins f4e7a74a53 x11/dunst: update to dunst-1.9.0
Disable Wayland support by default (alongside systemd).
Fix building on systems w/o evdev.
Enable running regressions tests and replace interpreters in test
scripts.

CHANGELOG (since version 1.5.0):

# Dunst v1.9.0

This release marks the point for a few big features to be useable. The
recursive icon lookup is marked stable and is used by default for new users. It
is now also possible to add gaps between notifications, although it is not done
with separate windows, so clicks in between notification will not register to
the below window. You'll also need a compositor for the transparancy to take
effect.

 Added

   * override_dbus_timeout setting to override the notification timeout set via
     dbus. (#1035)
   * Support notification gaps via the gap_size setting. Note that since the
     notifications are not separate windows, you cannot click in between the
     notifications. (#1053)
   * Make min_icon_size and max_icon_size a rule for even more flexibility
     (#1069)

Changed

   * The window offset is now scaled according to scale as well. This way
     notification stay visually in the same place on higher DPI screens. (#1039)
   * For the recursive icon lookup, revert to using min_icon_size and
     max_icon_size instead of icon_size. min_icon_size is used as the size to
     look for in icon themes. This way of defining icon size is more flexible and
     compatible with the old icon lookup. The new icon lookup should now be
     superior for all use cases. (#1069)
   * Recursive icon lookup is no longer experimental.
   * Recursive icon lookup is enabled in the default dunstrc. This does not change
     your settings when you have a custom dunstrc.

 Fixed

   * Added back the action_name setting that was accidentally dropped. (#1051)
   * Broken dunstctl history. (#1060)
   * Merged a few wayland fixes from mako (https://github.com/emersion/mako)
     (#1067)
   * follow=keyboard: Fix regression where we don't fall back to mouse (#1062)
   * Raw icons not being scaled according to icon size (#1043)
   * Notifications not disappearing. For some people notifications would sometimes
     stay on screen until a new notification appeared. This should not happen
     anymore (#1073).

 Merged pull requests

   * Rule attribute to override timeout set by dbus by @rpbranco in #1038
   * Scale offset according to DPI by @livanh in #1039
   * Fixes dunstctl history command by @stremlenye in #1060
   * Add support for notification gaps by @paddyw2 in #1053
   * Mako wayland fixes by @fwsmit in #1067
   * follow=keyboard: Fix regression where we don't fall back to mouse by @cdown in #1062
   * Recursive icons: Use min_icon_size and max_icon_size instead of icon_size. by @fwsmit in #1069
   * Fix notifications sometimes not disappearing by @fwsmit in #1073


# Dunst v1.8.1

 Fixed

   * Dunst sometimes not using the right config file, sometimes falling back to the
     internal defaults by @alebastr in #1042


# Dunst v1.8.0

 Added

   * Implemented progress_bar_min_width. Before it was an unused setting. (#1006)
     progress_bar_horizontal_alignment for changing the alignment of the progress
     bar. (#1021)
   * Support for config drop-ins. You can add as many configuration files as you
     want in dunstrc.d. See the man page dunst(1) for more information. This was
     done with help from @WhitePeter. (#997)
   * Thanks to @m-barlett you can place your icons at the center of your
     notifications with icon_position = top.
   * icon_position is now a rule (also by @m-barlett).
   *  hide_text for hiding all text of a notification. This also removes all
     padding that would be present for a notification without text. (also by
     @m-barlett) (#985)
   * The previously removed keyboard shortcuts have been added again, but now they
     are in the [global] section of the config. Not everything that was possible
     with the keyboard shortcuts was possible with dunstctl on X11. Mainly
     activating a keyboard shortcut only when notifications are on screen. Thanks
     to @wgmayer0 for testing. (#1033).

 Changed

   * Improved the man page regarding transitioning from the old geometry.
   * The default alignment of the progress bar is now center instead of left.
   * Better regex matching for rules. When you set enable_posix_regex. Take a
     look at
     https://en.m.wikibooks.org/wiki/Regular_Expressions/POSIX-Extended_Regular_Expressions
     for how the new regex syntax works. Note that you cannot do inverse matching
     yet, I'm working on that in #1040. (#1017)
   * Thanks to @kurogetsusai you can once again use negative offsets to put a
     notification window slightly off-screen if you so like. (#1027)
   * As mentioned above, the keyboard shortcuts have been moved to the [global]
     section. Please move your settings there.

 Fixed

   * Crash when open_url was used without URL's. (#1000)
   * Icons sometimes being incorrectly sized with the new icon lookup. (#1003)
   * Incorrect defaults mentioned in the documentation. (#1004, #1029 and more)
   * Crash when icon could not be read by glib. (#1023)
   * Not being able to override anymore raw icons with new_icon (#1009)
   * High cpu usage when selecting an action in dmenu or similar. This was caused
     by dunst not going to sleep when waiting for a response. (#898)
   * Updated default values documentation (with help from @profpatch) (#1004 and
     more)


# Dunst v1.7.3

 Changed

   * follow is now none again by default. This was the case before v1.7.0 as well. (#990).

 Fixed

   * dunstctl action is now working again.
   * Segfault in experimental icon lookup when an inherited theme doesn't exist.
   * icon_position = off not being respected (#996).


# Dunst v1.7.2

 Added

   * Experimental recursive icon lookup. This is not enabled by default and can be
     enabled by setting enable_recursive_icon_lookup=true. Setting icon sizes
     still doesn't work entirely as it's supposed to and will be improved in future
     releases. (#965)
   * You can now enable or disable rules on the fly with dunstctl rule $name$ enable/disable. (#981)
     dunstctl history lists your notification history in JSON format for
     processing by scripts. (#970)
   * You can now pop specific notifications from history by passing a notification
     ID to dunstctl history-pop. (#970)
   * default_icon setting for setting the icon when no icons are given (#984)
   * Implemented display size detection in Wayland. (#973)

 Fixed

   * Text being cut off on X11 when using fractional scaling. (#975)
   * Incorrect hitbox for notification on X11 with scaling. (#980)
   * Improved warning messages for deprecated sections. (#974)
   * icon being interpreted as a filter and not being allowed in the special
     urgency sections. This is a compatibility fix, but it's recommended to replace
     all usages of icon in these sections with default_icon to prevent
     confusion with the icon rule in other sections. (#984)
   * new_icon being used in the default dunstrc where default_icon is the
     intended settings. This was commented by default, so it doesn't affect any
     default behaviour. (#984)
   * Notifications bleeding to other screens when the width was big enough. Now the
     notification's width is lowered when it would otherwise leave the display.


# Dunst v1.7.1

 Added

   * Script environment variable DUNST_DESKTOP_ENTRY. (#874)
   * Rule set_category for change a notifications category with rules. (1b72b2a)

 Fixed

   * Dunst not building with WAYLAND=0. (#938)
   * Wrong icon being shown in chromium-based browsers. (#939)
   * set_stack_tag not working anymore. (#942)
   * Outdated documentation. (#943, #944 and more)
   * Empty strings not being allowed in settings. (#946)
   * Dunst crashing when compositor doesn't support zwlr_foreign_toplevel_v1. (#948)
   * Xmore notifications showing a progress bar and icon. (#915)
   * Markup is now a rule again. Before this was undocumented behaviour. (#955)
   * Double free when setting XDG_CONFIG_DIR. (#957)
   * Dunst crashing on some compositors. (#948)
   * Dunst not exiting when wayland compositor quits. (#961)
   * Now the separators are not responsive to mouse clicks anymore. (#960)
   * Mouse action stopping the rest of the actions. (bf58928)


# Dunst v1.7.0

 Added

   * context and context_all mouse actions for opening the context menu (#848)
     open_url mouse action for opening url's in a notification (#848)
   * action_name rule for setting a default action to perform when using
     do_action (#848)
   * HiDPI support for both Wayland and X11. On wayland the scale can be set from
     your compositor's settings and is automatically picked up by dunst. On X11
     dunst will guess the scale based on the DPI of the screen. If that isn't good,
     you can set the scale variable in the settings. (#854 and #890)
     highlight can now also be set through dbus hints with the key hlcolor
     (#862)
   * Your dunstrc is now being checked by dunst. Dunst will print a warning when
     coming across an non-existing/invalid setting. (#803)
   * Wayland fullscreen detection (#814)
   * Wayland touch support (#814)
   * Cursor is now being changed to left_ptr when hovering over dunst (Wayland)
     (#903)

 Changed

   * startup_notification and verbosity are now only available as a command
     line arguments. (#803)

   * Rule settings can now also be used in the [global] section. They will then
     apply to all the notifications. (#803)

   * fullscreen, ellpsize and word_wrap are now rules. They can still be used
     in the [global] section as well (see above). (#937 and #803)

   * The appid's now also need to match when stacking notifications. (#886)

   * xdg-open is now being used by default for opening URL's. (#889)

   * geometry has been replaced by origin, width, height, offset and
     notification_height. This allows for more flexible geometry settings. (#855)

   * For quickly transitioning to the new syntax, you can take the numbers from your
     old geometry config as follows:
     geometry = <width>x<height>+<offset>

   * In the new config you can then set the following variables (make sure to remove
     any negative signs)

	width = <width>
	height = <height>
	offset = <offset>
	origin = top-right # or top-left, or any other direction you prefer

   * There were a bunch of changes in the installation and default locations. See
     the release notes for more information.
     Upon seeing invalid markup, dunst is a bit smarter in stripping the markup.

 Fixed

   * Lots of debug messages when idle_timeout=0 (#814)
     follow=none not working on Wayland (#814)
   * Incorrect sorting when sort is false
     NULL pointer dereference on Wayland
   * Dunst not redrawing after close_all action.
     Dunst not announcing icon-static capability over dbus (#867)
   * Dunst not falling back to X11 output when it can't initialize the Wayland
     output. (#834)
   * Improve stability on Wayland. (#930 and more)

 Removed

   * The [shortcuts] section with all it's settings. Use your WM/DE's shortcut
     manager and dunstctl to replace it. (#803)
   * Setting settings via command line arguments. (#803)
   * Setting settings via config.h. (#803)


# Dunst v1.6.0

 Added

   * Wayland support. Dunst now runs natively on wayland. This fixes several bugs
     with dunst on wayland and allows idle detection. (#781)
   * A progress bar, useful for showing volume or brightness in notifications (#775)
     A script in contrib for using the progress bar (#791)
     dunstctl count for showing the number of notifications (#793)
   * Expose environment variables info about the notification to scripts (#802)
     text_icon_padding for adding padding between the notification icon and text
     (#810)

 Changed

   * Dunst now installs a system-wide config in /etc/dunst/dunstrc (#798)
   * Move part of the man page to dunst(5) (#799)

 Fixed

   * history_ignore flag broken when using multiple rules (#747)
   * Divide by zero in radius calculation (#750)
   * Monitor setting overriding follow_mode (#755)
   * Incorrect monitor usage when using multiple X11 screens (#762)
   * Emit signal when paused property changes (#766)
   * dunstify can pass empty appname to libnotify (#768)
   * Incorrect handling of 'do_action, close' mouse action (#778)
2023-01-09 18:44:17 +00:00
..
alacritty alacritty: use wildcard for x11-dl crate's version in SUBST_FILES 2022-10-14 14:23:40 +00:00
antiright *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
appmenu-qt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
appres Reset MAINTAINER 2022-11-09 13:14:06 +00:00
arandr *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
asnap x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
aterm *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
autocutsel x11/autocutsel: update to version 10.0.1 2023-01-09 12:42:45 +00:00
avant-window-navigator *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
bbapm x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
beforelight Reset MAINTAINER 2022-11-09 13:14:06 +00:00
bitmap Reset MAINTAINER 2022-11-09 13:14:06 +00:00
blt Patch up x11/blt some. 2022-06-06 04:27:14 +00:00
c++-gtk-utils *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
caribou *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
citron citron: rename the distfile to a distinguished name 2022-08-17 11:28:46 +00:00
clipit *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
clipnotify x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
clisp-gtk2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
clisp-mit-clx x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
clisp-new-clx x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
cool-retro-term massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
deforaos-integration *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
deforaos-keyboard *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
deforaos-libdesktop *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
deforaos-locker *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
deforaos-notes *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
deforaos-panel *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
desklaunch *: summon ghosts of HOMEPAGEs past with Wayback Machine 2022-08-19 09:58:30 +00:00
deskmenu *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
devilspie *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
dmenu dmenu: Update to 5.2 2022-10-09 12:56:39 +00:00
docker revbump for icu and libffi 2021-12-08 16:01:42 +00:00
drawterm x11/drawterm: Makefile revision. 2022-12-18 17:43:28 +00:00
driconf *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
dtx11session
dunst x11/dunst: update to dunst-1.9.0 2023-01-09 18:44:17 +00:00
dxpc x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
ede x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
editres Reset MAINTAINER 2022-11-09 13:14:06 +00:00
eekboard *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
efltk efltk: Does not USE_PKGLOCALEDIR 2022-09-20 07:05:12 +00:00
elementary Reset MAINTAINER 2022-11-09 13:14:06 +00:00
elementary-icon-theme Reset MAINTAINER 2022-11-09 13:14:06 +00:00
enlightenment Reset MAINTAINER 2022-11-09 13:14:06 +00:00
eterm x11/eterm: Fix for graphics/imlib2 update 2022-07-29 06:05:49 +00:00
fbdesk x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
filerunner filerunner: Fix RELRO builds. Do not mandate -O3. 2022-03-27 10:26:53 +00:00
fltk fltk: fix png library name. 2022-07-27 18:42:42 +00:00
fltk13 fltk: fix png library name. 2022-07-27 18:46:49 +00:00
fox *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
frameworkintegration massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
fspanel x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
ftmenu *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
fvwm-wharf x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
gcolor2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
ggiterm x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
gnome-desktop *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnome-desktop3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnome-session *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnome-shell *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnome-terminal *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnome-themes *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnome-themes-extras *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnustep-back massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
gnustep-gui *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gnustep-preferences massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
gromit *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gselt *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gst-plugins0.10-x11
gst-plugins1-x11 gst-plugins1: Update to 1.20.1 2022-04-18 12:36:04 +00:00
gst-plugins1-ximagesrc x11/gst-plugins1-ximagesrc: import gst-plugins1-ximagesrc-1.18.5 2021-11-15 22:09:58 +00:00
gtk *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gtk+extra x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
gtk-mac-integration *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk-sharp *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk-sharp3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk2+extra *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk2-chtheme *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk2-engines *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk2-engines-bluecurve *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk2-engines-murrine *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk2-theme-switch *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk3 gtk3: Fix PKGLOCALEDIR and SunOS ld args. 2023-01-05 15:59:58 +00:00
gtk3-engines-unico *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk3-nocsd *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtk4 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtkdatabox *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtkglarea x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
gtkglarea2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtkmm *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtkmm-utils *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtkmm3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtkmm4 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtksourceview2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtksourceview3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtksourceview4 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtksourceviewmm *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gtkstep x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
gtkterm2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
gxmessage *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
hanterm x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
hot-babe *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
hs-X11 Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-X11-xft Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hsetroot *: Re-apply SunOS linker argument removals. 2022-11-21 18:20:40 +00:00
i3lock i3lock: make this work out of the box on NetBSD, per netbsd-users@ 2021-11-09 09:01:08 +00:00
iceauth Reset MAINTAINER 2022-11-09 13:14:06 +00:00
ico Reset MAINTAINER 2022-11-09 13:14:06 +00:00
imwheel x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kactivities massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kactivities-stats massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kactivities5 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kconfigwidgets massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kde-baseapps4 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kde-runtime4 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
kde-workspace4 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kde4-l10n-ar x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-bg x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-bs x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ca x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-cat x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-cs x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-da x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-de x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-el x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-en_GB x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-es x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-et x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-eu x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-fa x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-fi x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-fr x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ga x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-gl x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-he x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-hi x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-hr x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-hu x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ia x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-is x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-it x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ja x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-kk x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-km x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ko x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-lt x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-lv x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-mr x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-nb x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-nds x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-nl x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-nn x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-pa x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-pl x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-pt x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-pt_BR x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ro x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ru x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-sk x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-sl x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-sr x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-sv x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-tr x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-ug x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-uk x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-wa x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-zh_CN x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kde4-l10n-zh_TW x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
kded massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kdelibs4 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kdelibs4support massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kdesignerplugin massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
keybinder *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
keybinder3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
keylaunch *: summon ghosts of HOMEPAGEs past with Wayback Machine 2022-08-19 09:58:30 +00:00
kglobalaccel massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kguiaddons massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kinit massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kirigami2 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kitemviews massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kitty x11/kitty: update to 0.26.5 2022-11-13 15:44:52 +00:00
kjobwidgets massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
konsole massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kterm x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
ktextwidgets massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kwidgetsaddons massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kwindowsystem massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
kxmlgui massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
labltk labltk: update to 8.06.12. 2022-06-03 08:51:22 +00:00
lemonbar x11/lemonbar: prepare import of Xft variant 2022-07-04 19:51:29 +00:00
lemonbar-xft lemonbar-xft: correct patch comment 2022-07-04 21:37:25 +00:00
lesstif x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
libdesktop-agnostic *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
libdrm Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libfakekey x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
libfm-qt libfm-qt: update to 1.2.1 2023-01-06 00:34:31 +00:00
libFS Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libgdm *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
libgnomekbd *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
libICE libICE: update to 1.1.1. 2022-12-08 23:36:29 +00:00
libkactivities4 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
libkscreen massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
liblxqt massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
libmatekbd *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
liboldXrandr x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
libqtxdg massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
libSM libSM: update to 1.2.4. 2022-12-26 22:11:05 +00:00
libunique *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
libunique3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
libX11 libX11: update to 1.8.3. 2022-12-16 01:10:01 +00:00
libXau libXau: update to 1.0.11. 2022-12-08 23:33:26 +00:00
libXaw Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXaw3d libXaw3d: update to 1.6.4. 2022-08-29 09:45:50 +00:00
libxcb libxcb: depend on latest py-xcbgen, and fix PLIST for it. 2022-06-17 16:43:34 +00:00
libXcomposite libXcomposite: update to 0.4.6. 2022-12-04 22:16:39 +00:00
libXcursor Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libxcvt libxcvt: update to 0.1.2. 2022-07-20 07:57:48 +00:00
libXdamage libXdamage: update to 1.1.6. 2022-12-04 23:16:35 +00:00
libxdg-basedir *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libXdmcp libXdmcp: update to 1.1.4. 2022-11-19 08:10:45 +00:00
libXext Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libxfce4ui *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
libxfce4util *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
libXfixes Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXfont Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXfont2 Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXft libXft: pkglint cleanup 2022-11-16 11:56:15 +00:00
libXi Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXinerama Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libxkbcommon libxkbcommon: update to 1.5.0. 2023-01-09 13:20:33 +00:00
libxkbfile libxkbfile: update to 1.1.2. 2022-12-08 23:35:00 +00:00
libxklavier massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
libXmu Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXpm libXpm: update to 3.5.14. 2022-11-19 21:34:31 +00:00
libXpresent libXpresent: update to 1.0.1. 2022-10-17 22:31:00 +00:00
libXrandr libXrandr: update to 1.5.3. 2022-11-20 22:17:45 +00:00
libXrender Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXres libXres: update to 1.2.2. 2022-12-05 08:50:26 +00:00
libXScrnSaver libXScrnSaver: update to 1.2.4. 2022-12-05 08:52:03 +00:00
libxshmfence libxshmfence: update to 1.3.2. 2022-12-08 23:35:48 +00:00
libXt Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXtst Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXv libXv: update to 1.0.12. 2022-12-05 08:53:14 +00:00
libXvMC Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libXxf86dga libXxf86dga: update to 1.1.6. 2022-12-05 08:54:21 +00:00
libXxf86vm Reset MAINTAINER 2022-11-09 13:14:06 +00:00
listres Reset MAINTAINER 2022-11-09 13:14:06 +00:00
lua-keybinder *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
luit Reset MAINTAINER 2022-11-09 13:14:06 +00:00
lxappearance *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
lxde-common x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
lxhotkey *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
lxinput *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
lxlauncher *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
lxqt-about massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
lxqt-admin massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
lxqt-config massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
lxqt-globalkeys lxqt-globalkeys: adjust previous LOG_MAKEPRI patch 2023-01-07 01:26:14 +00:00
lxqt-notificationd massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
lxqt-panel lxqt-panel: update to 1.2.1 2023-01-06 00:18:08 +00:00
lxqt-qtplugin Bump PKGREVISIONs for libfm-qt update 2023-01-06 00:38:23 +00:00
lxqt-runner massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
lxqt-session massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
lxrandr *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
lxsession *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
lxterminal *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
maim massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
matchbox-common x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
matchbox-desktop x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
matchbox-nest x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
matchbox-panel x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
matchbox-panel-manager *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
matchbox-themes-extra x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
mate-applets *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-control-center *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-desktop *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-indicator-applet *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-menus *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-panel *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-screensaver *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-session-manager *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-settings-daemon *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mate-terminal *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mcookie
mkcomposecache mkcomposecache: update to 1.2.2. 2022-04-03 19:22:49 +00:00
mlterm *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
modeline x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
modular-xorg-server modular-xorg-server: bump xorgproto requirements 2022-12-25 09:17:27 +00:00
modular-xorg-xephyr modular-xorg-server and friends: update to 1.20.10 2020-12-01 21:03:16 +00:00
modular-xorg-xquartz Remove errant PLIST entry for a file that's installed under 2022-05-14 21:32:33 +00:00
modular-xorg-xwayland modular-xorg-server*: update to 21.1.5 2022-12-15 10:29:59 +00:00
motif x11/motif: Explain what's going on with the libXt tool dependency. 2022-04-16 10:40:05 +00:00
mowitz x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
mozo *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
mrxvt mrxvt: needs pkg-config. Else Xft gets silently disabled. 2022-07-29 20:46:37 +00:00
mxterm x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
neXtaw x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
numlockx x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
nx-libs x11/nx-libs: Update to 3.5.99.26 2022-08-18 15:35:29 +00:00
ocaml-graphics Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-lablgtk *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
ocaml-lablgtk3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
oneko x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
p5-Alien-wxWidgets *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
p5-Clipboard *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-gtk2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
p5-Gtk2-Ex-FormFactory *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-gtk3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
p5-Gtk3-SimpleList *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
p5-Tk *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Wx *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
p5-Wx-Perl-ProcessStream *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
p5-X11-Protocol *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
picom picom: update to 9.1 2022-09-04 12:12:01 +00:00
pixman pixman: update to 0.42.2. 2022-11-03 08:51:25 +00:00
plasma-framework massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
py-gnome2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-gnome2-extras *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-gtk2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-gtksourceview *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-keybinder *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-kiwi *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-pyperclip *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-qt-builder py-qt-builder: update CATEGORIES 2022-12-31 22:23:54 +00:00
py-qt5 x11/py-qt5: fix PLIST for when option dbus is disabled. 2022-12-11 18:20:42 +00:00
py-qt5-qscintilla py-qt5-qscintilla: mark as not for python 2.7; DEPEND on py-qt5 2022-12-02 15:54:21 +00:00
py-qt5-webengine py-qt5-webengine: update to 5.15.6. 2022-12-02 15:34:17 +00:00
py-qtgraph-qt5 py-qtgraph-qt5: use DEPENDS for py-qt5 2022-12-02 15:52:48 +00:00
py-qwt-qt5 py-qwt-qt5: try fixing PLIST for Python != 3.10 2022-12-07 14:58:52 +00:00
py-sip x11/py-sip: Adjust DESCR 2022-11-28 19:10:52 +00:00
py-sip-qt5 py-sip-qt5: update HOMEPAGE 2022-12-30 20:35:52 +00:00
py-sip5 x11/py-sip5: Drop buildlink3.mk 2022-12-03 12:12:08 +00:00
py-sip6 py-sip6: add PYTHON_SELF_CONFLICT 2022-12-31 22:51:43 +00:00
py-terminator py-terminator: convert to egg.mk 2022-01-10 08:02:13 +00:00
py-terminator-plugins x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
py-Tk
py-vte *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-wxWidgets *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
py-xcbgen py-xcbgen, xcb-proto: update to 1.15.2 2022-06-18 08:25:05 +00:00
py-Xlib *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
qqc2-desktop-style massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
qt4 qt{4,5}: https for HOMEPAGE 2022-09-29 06:18:55 +00:00
qt4-docs revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qt4-libs *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
qt4-mng *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
qt4-mysql *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
qt4-pgsql *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
qt4-qdbus *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
qt4-sqlite3 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
qt4-tiff *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
qt4-tools *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
qt5 qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-mysql qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-odbc qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-psql qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qscintilla qt5-qscintilla: update to 2.13.3. 2022-12-02 15:39:01 +00:00
qt5-qtbase qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtcharts qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtconnectivity qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtdeclarative qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtdoc qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtgraphicaleffects qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtimageformats qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtlocation qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtmacextras qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtmultimedia qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtnetworkauth qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtquickcontrols qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtquickcontrols2 qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtscript qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtscxml qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtsensors qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtserialport qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtspeech qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtsvg qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qttools qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qttranslations qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtvirtualkeyboard qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtwayland qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtwebchannel qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtwebengine qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtwebkit qt5-qtwebkit: restore PKGREVISION 2023-01-05 23:30:09 +00:00
qt5-qtwebsockets qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtx11extras qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-qtxmlpatterns qt5: updated to 5.15.8 2023-01-05 16:01:15 +00:00
qt5-styleplugins *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
qt5ct massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
qt6-qtbase qt6-qtbase: fix build failure on NetBSD/i386. 2023-01-08 08:13:31 +00:00
qterminal massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
qtermwidget massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
qtxdg-tools massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
qwt-qt4 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qwt6-qt4 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qwt6-qt5 massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
qwtplot3d-qt4 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ratmen x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
redshift revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rendercheck x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
rep-gtk2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
rgb Reset MAINTAINER 2022-11-09 13:14:06 +00:00
rofi *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
rox-session *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
rox-wallpaper *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
rterm x11/rterm: update to 0.0.7 2023-01-03 15:34:37 +00:00
ruby-gtk3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
ruby-gtksourceview3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
ruby-tk x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
ruby-wxruby Use RUBY_VERSIONS_ACCEPTED for ruby27 only packages. 2023-01-04 10:50:17 +00:00
rxvt Use CONF_FILES for lib/X11/app-defaults/Rxvt 2021-11-24 06:55:41 +00:00
rxvt-unicode *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
sakura *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
sessreg Reset MAINTAINER 2022-11-09 13:14:06 +00:00
setxkbmap Reset MAINTAINER 2022-11-09 13:14:06 +00:00
slim revbump for icu and libffi 2021-12-08 16:01:42 +00:00
slock slock: Update to 1.5 2022-10-09 12:52:21 +00:00
slop massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
space_dapp x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
speyes x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
ssystem Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
st-term st-term: Update to 0.9 2022-10-09 12:40:57 +00:00
stalonetray x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
startup-notification x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
sxhkd x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
tabbed tabbed: Update to 0.7 2022-10-09 12:32:02 +00:00
tile x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
tint2 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
tk tk: updated to 8.6.12 2021-11-16 16:25:09 +00:00
tk-BWidget x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
tk-Tix x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
tk85 x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
tkinfo x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
tktable x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
transset transset: update to 1.0.3. 2022-12-04 15:29:25 +00:00
tzosdclock x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
unclutter x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
unibar x11/unibar: Reset maintainer for stagnated project. 2022-02-25 09:17:37 +00:00
unicode-screensaver x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
viewres viewres: update to 1.0.7. 2022-10-15 23:10:56 +00:00
vte *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
vte3 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
vte029 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wdm *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wired-notify x11/wired-notify: update to 0.10.2 2022-06-10 07:30:56 +00:00
wmavgload x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
wmfire x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
wmfstatus x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
wmweather *: bump PKGREVISION for libunistring shlib major bump 2022-10-26 10:31:34 +00:00
worker x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
wterm *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wxGTK28 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wxGTK28-contrib *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wxGTK30 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wxGTK31 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wxGTK32 *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
wxWindows-docs x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
x2go-client *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
x2x x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
x11perf Reset MAINTAINER 2022-11-09 13:14:06 +00:00
x11vnc *: bump PKGREVISION for libunistring shlib major bump 2022-10-26 10:31:34 +00:00
x3270 x11/x3270: update to 4.2ga6 2022-10-01 21:07:51 +00:00
xaniroc x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
XaoS massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
xauth Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xautolock x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
Xaw-Xpm x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xbacklight Reset MAINTAINER 2022-11-09 13:14:06 +00:00
Xbae x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xbanish x11/xbanish: update to 1.8 2022-07-07 21:32:21 +00:00
xbanner x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xbindkeys *: bump PKGREVISION for libunistring shlib major bump 2022-10-26 10:31:34 +00:00
xbindkeys-tk
xbitmaps Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xbrightness Reset maintainer for my packages to reflect new mail address. 2022-12-06 14:41:38 +00:00
xcalc Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xcalib x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcb x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcb-imdkit *: Re-apply SunOS linker argument removals. 2022-11-21 18:20:40 +00:00
xcb-proto massive revision bump after textproc/icu update 2022-11-23 16:18:32 +00:00
xcb-util xcb-util: update to 0.4.1. 2022-12-26 22:10:43 +00:00
xcb-util-cursor xcb-util-cursor: improve DESCR 2022-10-18 17:50:08 +00:00
xcb-util-errors xcb-util-errors: update to 1.0.1. 2022-10-19 08:29:35 +00:00
xcb-util-image xcb-util-image: update to 0.4.1. 2022-10-18 22:07:05 +00:00
xcb-util-keysyms xcb-util-keysyms: update to 0.4.1. 2022-10-19 08:31:22 +00:00
xcb-util-renderutil xcb-util-renderutil: update to 0.3.10. 2022-10-19 08:32:36 +00:00
xcb-util-wm xcb-util-wm: use gmake, otherwise main header file is empty 2022-10-23 07:34:07 +00:00
xcb-util-xrm x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xclip *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
xclipboard xclipboard: update to 1.1.4. 2022-07-11 19:30:51 +00:00
xcmsdb xcmsdb: update to 1.0.6. 2022-07-11 19:32:05 +00:00
xcolor x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcolors x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcolorsel X11R6 -> X11R7 2021-12-26 08:55:07 +00:00
xcompmgr xcompmgr: update to 1.1.9. 2022-11-12 23:32:51 +00:00
xconsole Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xcruise x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcursor x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xcursor-capitaine x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcursor-core-hr x11/xcursor: import package from wip. 2022-12-06 15:00:38 +00:00
xcursor-themes x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcursor-vanilla-dmz x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xcursorgen xcursorgen: update to 1.0.8. 2022-12-04 15:30:18 +00:00
xdaemon x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xdaemon2 x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xdbedizzy x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xdesktopwaves x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xdg-user-dirs xdg-user-dirs: update to 0.18. 2022-10-24 14:14:14 +00:00
xdialog *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xditview xditview: update to 1.0.6. 2022-10-15 23:11:48 +00:00
xdm xdm: update to 1.1.14. 2022-12-04 15:32:23 +00:00
xdm3d x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xdo x11/xdo: Reset maintainer for stagnated project. 2022-02-25 09:18:15 +00:00
xdotool x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xdpyinfo Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xdriinfo xdriinfo: update to 1.0.7. 2022-12-20 14:39:23 +00:00
xearth x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xedit xedit: update to 1.2.3. 2022-04-03 22:16:01 +00:00
xephem *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
xev Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xeyes Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-input-acecad x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-input-elographics xf86-input-elographics: update to 1.4.3. 2022-12-09 08:45:05 +00:00
xf86-input-fpit x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-input-hyperpen x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-input-joystick xf86-input-joystick: update to 1.6.4. 2022-12-09 08:47:33 +00:00
xf86-input-keyboard Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-input-mouse Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-input-mutouch x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-input-penmount x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-input-vmmouse Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-input-void Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-input-ws xf86-input-ws: stable releases of NetBSD lack WSCONS_EVENT_HSCROLL 2022-08-08 13:53:57 +00:00
xf86-video-amdgpu Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-apm Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-ark Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-ast xf86-video-ast: update to 1.1.6. 2022-12-09 08:49:16 +00:00
xf86-video-ati Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-ati6 Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-chips Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-cirrus Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-dummy x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-video-fbdev xf86-video-fbdev: Not for NetBSD 2022-04-17 07:38:51 +00:00
xf86-video-glint Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-i128 Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-i740 Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-intel Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-mach64 Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-mga Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-neomagic Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-nouveau xf86-video-nouveau: newspeak compliance 2022-08-14 23:35:48 +00:00
xf86-video-nv Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-openchrome x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-video-qxl x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-video-r128 xf86-video-r128: update to 6.12.1. 2022-12-04 22:04:58 +00:00
xf86-video-rendition Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-s3 Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-s3virge Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-savage Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-siliconmotion Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-sis Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-suncg3 xf86-video-suncg3: update to 1.1.3. 2022-12-09 21:45:49 +00:00
xf86-video-suncg6 xf86-video-suncg6: update to 1.1.3. 2022-12-09 21:47:20 +00:00
xf86-video-suncg14 xf86-video-suncg14: update to 1.1.3. 2022-12-10 07:20:10 +00:00
xf86-video-sunffb xf86-video-sunffb: update to 1.2.3. 2022-12-09 21:48:31 +00:00
xf86-video-sunleo xf86-video-sunleo: update to 1.2.3. 2022-12-09 21:59:15 +00:00
xf86-video-suntcx xf86-video-suntcx: update to 1.1.3. 2022-12-09 21:59:40 +00:00
xf86-video-tdfx Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-tga Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-trident Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-tseng Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-vboxvideo Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-vesa xf86-video-vesa: update to 2.6.0. 2022-12-09 22:01:01 +00:00
xf86-video-vmware Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86-video-voodoo xf86-video-voodoo: update to 1.2.6. 2022-12-09 22:01:57 +00:00
xf86-video-wsfb x11: adapt to new avoid-duplicate.mk usage 2022-04-10 08:53:14 +00:00
xf86-video-xgi Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xf86dga x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xfce4-clipman-plugin *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-dashboard *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-desktop *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-exo *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-eyes-plugin *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-garcon *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-indicator-plugin *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-notes-plugin *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-notifyd *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-panel *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-places-plugin *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-screenshooter *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-session *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-settings *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-terminal *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-tumbler *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfce4-whiskermenu-plugin *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfd xfd: update to 1.1.4. 2022-12-04 15:33:25 +00:00
xfishtank x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xflame x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xfontsel Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xforms *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xfsinfo xfsinfo: update to 1.0.7. 2022-10-22 16:53:28 +00:00
xfstt x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xgamma xgamma: update to 1.0.7. 2022-12-04 15:34:12 +00:00
xgas x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xgrk x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xhangglider x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xhost xhost: update to 1.0.9. 2022-12-13 00:02:33 +00:00
xicc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xidle x11/xidle: prevent deprecated linking mode for libbsd on Linux. 2022-12-19 16:37:21 +00:00
xinit xinit: update to 1.4.2. 2022-12-04 15:35:27 +00:00
xinput x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xisxwayland x11/xisxwayland: import xisxwayland-2 2022-08-29 12:21:41 +00:00
xjman x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xkbcomp xkbcomp: update to 1.4.6. 2022-12-08 09:54:20 +00:00
xkbd x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xkbdata Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xkbevd xkbevd: update to 1.1.5. 2022-11-13 08:07:49 +00:00
xkbprint xkbprint: update to 1.0.6. 2022-10-15 23:13:19 +00:00
xkbset *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
xkbutils xkbutils: update to 1.0.5. 2022-07-13 20:48:09 +00:00
xkeyboard-config xkeyboard-config: fix checksum for patch 2022-10-18 07:31:56 +00:00
xkeycaps x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xkill xkill: update to 1.0.6. 2022-11-13 08:08:52 +00:00
xlax x11/xlax: add missing runtime dependency on perl. 2022-12-11 10:51:05 +00:00
xless x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xload Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xlockmore *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xlockmore-lite x11/xlockmore-lite: Update to 5.68 2022-01-24 18:10:32 +00:00
xlogo xlogo: update to 1.0.6. 2022-11-13 08:09:44 +00:00
xlogout x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xlsatoms xlsatoms: update to 1.1.4. 2022-11-13 21:20:05 +00:00
xlsclients xlsclients: update to 1.1.5. 2022-11-13 21:20:52 +00:00
xlsfonts xlsfonts: update to 1.0.7. 2022-04-04 09:47:04 +00:00
xlt x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xlupe x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xmag Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xman Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xmascot x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xmem x11/xmem: add MESSAGE for NetBSD. 2022-12-20 10:49:04 +00:00
xmessage Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xmh xmh: update to 1.0.4. 2022-08-31 19:25:59 +00:00
XmHTML x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xmindpath x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xmodmap Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xmon x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xmore Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xmountains x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xmove x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xmx x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xneko x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xnodecor x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xnotify xnotify: set -D_XOPEN_SOURCE=500 on SunOS 2022-08-22 19:46:47 +00:00
xorg-cf-files xorg-cf-files: Support Darwin/aarch64. 2022-12-01 21:14:08 +00:00
xorgproto Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xosd x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xp x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xpad *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xpaste x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xpenguins x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xphoon x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xplanet *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xpmicons x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xpns x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xpostit x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xpr xpr: update to 1.1.0. 2022-07-11 19:40:33 +00:00
xprop xprop: update to 1.2.6. 2022-12-04 15:36:13 +00:00
xrandr xrandr: update to 1.5.2. 2022-12-04 15:39:27 +00:00
xrdb Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xrectsel x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xrefresh Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xrestop x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xrootconsole xrootconsole: Remove libutil on SunOS. 2022-12-15 11:31:43 +00:00
xscope xscope: update to 1.4.3. 2022-07-11 19:42:18 +00:00
xscreensaver *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xscribble x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xscript x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xsel x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xservers x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xset xset: update to 1.2.5. 2022-12-04 15:44:19 +00:00
xsetroot Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xsm Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xsnow *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xss-lock Reset maintainer for my packages to reflect new mail address. 2022-12-06 14:41:38 +00:00
xst x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xstdcmap xstdcmap: update to 1.0.5. 2022-12-04 15:45:17 +00:00
xtar xtar: Patch some more obvious 1995-era code problems. 2022-01-07 13:02:31 +00:00
xteddy x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xteddy2 x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xterm x11/xterm: update to 377 2023-01-03 14:10:12 +00:00
xtermcontrol x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xtermset x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xtoolwait x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xtrace x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xtrans Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xtrlock Reset maintainer for my packages to reflect new mail address. 2022-12-06 14:41:38 +00:00
xtruss x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xvattr x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xvidcap *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
xvidtune x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xview xview*: mark generally BROKEN_ON_PLATFORM for 64-bit archs 2022-04-23 00:15:46 +00:00
xview-clients xview*: mark generally BROKEN_ON_PLATFORM for 64-bit archs 2022-04-23 00:15:46 +00:00
xview-config x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xview-lib xview*: mark generally BROKEN_ON_PLATFORM for 64-bit archs 2022-04-23 00:15:46 +00:00
xvinfo xvinfo: update to 1.1.5. 2022-12-04 15:46:39 +00:00
xvkbd x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xwatchwin x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xwd x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xwininfo Reset MAINTAINER 2022-11-09 13:14:06 +00:00
xwit x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xworld x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xwrits x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
xwud xwud: update to 1.0.6. 2022-07-11 19:43:40 +00:00
xxkb x11: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:33:42 +00:00
yad *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
zenity *: recursive bump for tiff shlib major bump 2023-01-03 17:36:14 +00:00
Makefile + xmem 2022-12-19 21:01:40 +00:00