pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/x11/gtk4
Module Name: pkgsrc
Committed By: adam
Date: Wed Jul 19 07:15:30 UTC 2023
Modified Files:
pkgsrc/x11/gtk4: Makefile PLIST distinfo
Removed Files:
pkgsrc/x11/gtk4/patches: patch-demos_gtk-demo_gtkgears.c
patch-meson.build patch-tests_gtkgears.c
Log Message:
gtk4: updated to 4.10.4
Overview of Changes in 4.10.4, 05-06 2023
=========================================
* GtkFileChooser
- Fix some memory leaks
* GtkUriLauncher
- Validate the uri
* GtkStack
- Fix a crash
* GtkGridView
- Respect css border-spacing
* GtkScrolledWindow
- Propagate child measure size whenever possible
* GtkPopoverMenu:
- Avoid unnecessary left padding
* GtkSearchEntry:
- Improve size allocation for the clear icon
* X11
- Avoid black flickering with xwayland window decorations
- Trap XRandr errors
* CSS
- Various fixes to transitions
* Translation updates:
Basque
Catalan
Chinese (China)
French
Galician
Indonesian
Lithuanian
Persian
Russian
Swedish
Turkish
Ukrainian
Overview of Changes in 4.10.3, 22-04-2023
=========================================
* Fix a popover positioning regression in 4.10.2
* Fix issues with slow loading files in the file chooser
Overview of Changes in 4.10.2, 21-04-2023
=========================================
* Fixed issues:
- Holding control to select multiple files broken in filechooser
- Inspector crash
- Listbase doesn't account for bottom padding in size_allocate_child
- Leaking AT contexts
- OpenGL / Windows: Crash when closing gtk4-widget-factory
- GTK apps crash on startup when setting cursor-size to 0 on Wayland
- Segmentation fault: gdk_wayland_toplevel_set_startup_id() needs to null-check
display->xdg_activation before using it
- Possible use-after-free under gtk_scrolled_window_update_use_indicators()
- Wrong error message in `gtk_init`
- Segfault when scrolling after changing ListView model
- Bluetooth panel from the Settings app: clicking in the "Downloads" link
no longer opens Nautilus
- Broadway docs or code is broken
- Disabled GtkPicture's are not properly themed
- Setting CSS padding to a GtkTextView gives the context menu an offset
- A11y: the Showing state is used only for windows
- Gtk4 expander: CSS nodes mismatch code vs. documentation
- Invoking gtk inspector on a folder results in a crash
- Double tap requires very precise touch input
- Name autocompletion dropdown in the GTK4 FileChooser's Save dialog gets
stuck, creates artifacts, jumps around
- Links are not opened when xdg-desktop-portal OpenURI is not available
- GtkSnapshot generates no nodes appending whitespace-only layouts
* Translation updates
British English
Bulgarian
Chinese (China)
French
Indonesian
Korean
Russian
Serbian
Slovenian
Turkish
Overview of Changes in 4.10.1, 14-03-2023
=========================================
* GtkFileChooser
- Improve search performance
- Be safe against pathless files
- Fix memory leaks
- Only show local files in recent files
- Show most recent files first
- Make files non-selectable in selet_folder mode
* GtkListView / GtkColumnView / GtkGridView
- Fix scrolling problems
- Support CSS border-spacing
* GtkComboBox
- Fix a size allocation problem
* gtk
- Size allocation fixes
* Accessibility
- Miscellaneous property fixes and improvements
* Wayland
- Fix an ordering problem in surface disposal
* Windows
- Fix Visual Studio build with older GLib
* Translation updates
Basque
Bulgarian
Catalan
Czech
Danish
Finnish
Friulian
Galician
Georgian
Hungarian
Lithuanian
Polish
Portuguese
Swedish
Turkish
Ukrainian
Overview of Changes in 4.10.0, 04-03-2023
=========================================
* GtkTextView
- Document hanging indentation
* GtkListView
- Fix a size allocation problem
* GtkFileChooser
- Fix paned behavior
- Fix a crash
* GtkText
- Fix various problems with undo
* Accessibility
- Make some getters transfer-full
- Allow setting accessible parents and siblings
- Add a role for toggle buttons
- Miscellaneous property fixes and improvements
* gtk
- Improve the handling resize-during-size-allocate
* gdk
- Introduce GdkTextureDownloader and use it
- Make gdk_texture_get_format public
* gsk
- Make mask nodes more versatile
- Improve the GL implementation for texture scale nodes
* X11
- Fix key handling during DND
* Tools
- gtk-builder-tool: Try harder to handle templates
- gtk-builder-tool: Prefer properties over <child>
* Translation updates
Basque
Belarusian
Bulgarian
Indonesian
Galician
Georgian
German
Hebrew
Lithuanian
Portuguese
Spanish
Swedish
Turkish
Ukrainian
To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 pkgsrc/x11/gtk4/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/x11/gtk4/PLIST
cvs rdiff -u -r1.12 -r1.13 pkgsrc/x11/gtk4/distinfo
cvs rdiff -u -r1.1 -r0 \
pkgsrc/x11/gtk4/patches/patch-demos_gtk-demo_gtkgears.c \
pkgsrc/x11/gtk4/patches/patch-tests_gtkgears.c
cvs rdiff -u -r1.3 -r0 pkgsrc/x11/gtk4/patches/patch-meson.build
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/x11/gtk4/Makefile
diff -u pkgsrc/x11/gtk4/Makefile:1.27 pkgsrc/x11/gtk4/Makefile:1.28
--- pkgsrc/x11/gtk4/Makefile:1.27 Fri Jun 2 16:56:22 2023
+++ pkgsrc/x11/gtk4/Makefile Wed Jul 19 07:15:30 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.27 2023/06/02 16:56:22 wiz Exp $
+# $NetBSD: Makefile,v 1.28 2023/07/19 07:15:30 adam Exp $
-DISTNAME= gtk-4.8.3
+DISTNAME= gtk-4.10.4
PKGNAME= ${DISTNAME:S/gtk/gtk4/}
-PKGREVISION= 2
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gtk/${PKGVERSION_NOREV:R}/}
EXTRACT_SUFX= .tar.xz
@@ -25,7 +24,7 @@ USE_TOOLS+= gdbus-codegen msgfmt msgmerg
USE_LANGUAGES= c c++
MESON_REQD+= 0.60.0
-MESON_ARGS+= -Dgtk_doc=false
+MESON_ARGS+= -Dintrospection=enabled
# needs gstreamer-gl
MESON_ARGS+= -Dmedia-gstreamer=disabled
# ffmpeg backend is disabled by default
Index: pkgsrc/x11/gtk4/PLIST
diff -u pkgsrc/x11/gtk4/PLIST:1.8 pkgsrc/x11/gtk4/PLIST:1.9
--- pkgsrc/x11/gtk4/PLIST:1.8 Mon Jan 23 21:04:31 2023
+++ pkgsrc/x11/gtk4/PLIST Wed Jul 19 07:15:30 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2023/01/23 21:04:31 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2023/07/19 07:15:30 adam Exp $
bin/gtk4-builder-tool
bin/gtk4-demo
bin/gtk4-demo-application
@@ -53,6 +53,7 @@ include/gtk-4.0/gdk/gdkseat.h
include/gtk-4.0/gdk/gdksnapshot.h
include/gtk-4.0/gdk/gdksurface.h
include/gtk-4.0/gdk/gdktexture.h
+include/gtk-4.0/gdk/gdktexturedownloader.h
include/gtk-4.0/gdk/gdktoplevel.h
include/gtk-4.0/gdk/gdktoplevellayout.h
include/gtk-4.0/gdk/gdktoplevelsize.h
@@ -100,21 +101,73 @@ include/gtk-4.0/gtk/css/gtkcssenumtypes.
include/gtk-4.0/gtk/css/gtkcsserror.h
include/gtk-4.0/gtk/css/gtkcsslocation.h
include/gtk-4.0/gtk/css/gtkcsssection.h
+include/gtk-4.0/gtk/deprecated/gtkappchooser.h
+include/gtk-4.0/gtk/deprecated/gtkappchooserbutton.h
+include/gtk-4.0/gtk/deprecated/gtkappchooserdialog.h
+include/gtk-4.0/gtk/deprecated/gtkappchooserwidget.h
+include/gtk-4.0/gtk/deprecated/gtkassistant.h
+include/gtk-4.0/gtk/deprecated/gtkcellarea.h
+include/gtk-4.0/gtk/deprecated/gtkcellareabox.h
+include/gtk-4.0/gtk/deprecated/gtkcellareacontext.h
+include/gtk-4.0/gtk/deprecated/gtkcelleditable.h
+include/gtk-4.0/gtk/deprecated/gtkcelllayout.h
+include/gtk-4.0/gtk/deprecated/gtkcellrenderer.h
+include/gtk-4.0/gtk/deprecated/gtkcellrendereraccel.h
+include/gtk-4.0/gtk/deprecated/gtkcellrenderercombo.h
+include/gtk-4.0/gtk/deprecated/gtkcellrendererpixbuf.h
+include/gtk-4.0/gtk/deprecated/gtkcellrendererprogress.h
+include/gtk-4.0/gtk/deprecated/gtkcellrendererspin.h
+include/gtk-4.0/gtk/deprecated/gtkcellrendererspinner.h
+include/gtk-4.0/gtk/deprecated/gtkcellrenderertext.h
+include/gtk-4.0/gtk/deprecated/gtkcellrenderertoggle.h
+include/gtk-4.0/gtk/deprecated/gtkcellview.h
+include/gtk-4.0/gtk/deprecated/gtkcolorbutton.h
+include/gtk-4.0/gtk/deprecated/gtkcolorchooser.h
+include/gtk-4.0/gtk/deprecated/gtkcolorchooserdialog.h
+include/gtk-4.0/gtk/deprecated/gtkcolorchooserwidget.h
+include/gtk-4.0/gtk/deprecated/gtkcombobox.h
+include/gtk-4.0/gtk/deprecated/gtkcomboboxtext.h
+include/gtk-4.0/gtk/deprecated/gtkdialog.h
+include/gtk-4.0/gtk/deprecated/gtkentrycompletion.h
+include/gtk-4.0/gtk/deprecated/gtkfilechooser.h
+include/gtk-4.0/gtk/deprecated/gtkfilechooserdialog.h
+include/gtk-4.0/gtk/deprecated/gtkfilechoosernative.h
+include/gtk-4.0/gtk/deprecated/gtkfilechooserwidget.h
+include/gtk-4.0/gtk/deprecated/gtkfontbutton.h
+include/gtk-4.0/gtk/deprecated/gtkfontchooser.h
+include/gtk-4.0/gtk/deprecated/gtkfontchooserdialog.h
+include/gtk-4.0/gtk/deprecated/gtkfontchooserwidget.h
+include/gtk-4.0/gtk/deprecated/gtkiconview.h
+include/gtk-4.0/gtk/deprecated/gtkinfobar.h
+include/gtk-4.0/gtk/deprecated/gtkliststore.h
+include/gtk-4.0/gtk/deprecated/gtklockbutton.h
+include/gtk-4.0/gtk/deprecated/gtkmessagedialog.h
+include/gtk-4.0/gtk/deprecated/gtkrender.h
+include/gtk-4.0/gtk/deprecated/gtkshow.h
+include/gtk-4.0/gtk/deprecated/gtkstatusbar.h
+include/gtk-4.0/gtk/deprecated/gtkstylecontext.h
+include/gtk-4.0/gtk/deprecated/gtktreednd.h
+include/gtk-4.0/gtk/deprecated/gtktreemodel.h
+include/gtk-4.0/gtk/deprecated/gtktreemodelfilter.h
+include/gtk-4.0/gtk/deprecated/gtktreemodelsort.h
+include/gtk-4.0/gtk/deprecated/gtktreeselection.h
+include/gtk-4.0/gtk/deprecated/gtktreesortable.h
+include/gtk-4.0/gtk/deprecated/gtktreestore.h
+include/gtk-4.0/gtk/deprecated/gtktreeview.h
+include/gtk-4.0/gtk/deprecated/gtktreeviewcolumn.h
+include/gtk-4.0/gtk/deprecated/gtkvolumebutton.h
include/gtk-4.0/gtk/gtk.h
include/gtk-4.0/gtk/gtkaboutdialog.h
include/gtk-4.0/gtk/gtkaccelgroup.h
include/gtk-4.0/gtk/gtkaccessible.h
+include/gtk-4.0/gtk/gtkaccessiblerange.h
include/gtk-4.0/gtk/gtkactionable.h
include/gtk-4.0/gtk/gtkactionbar.h
include/gtk-4.0/gtk/gtkadjustment.h
-include/gtk-4.0/gtk/gtkappchooser.h
-include/gtk-4.0/gtk/gtkappchooserbutton.h
-include/gtk-4.0/gtk/gtkappchooserdialog.h
-include/gtk-4.0/gtk/gtkappchooserwidget.h
+include/gtk-4.0/gtk/gtkalertdialog.h
include/gtk-4.0/gtk/gtkapplication.h
include/gtk-4.0/gtk/gtkapplicationwindow.h
include/gtk-4.0/gtk/gtkaspectframe.h
-include/gtk-4.0/gtk/gtkassistant.h
include/gtk-4.0/gtk/gtkatcontext.h
include/gtk-4.0/gtk/gtkbinlayout.h
include/gtk-4.0/gtk/gtkbitset.h
@@ -129,33 +182,15 @@ include/gtk-4.0/gtk/gtkbuilderlistitemfa
include/gtk-4.0/gtk/gtkbuilderscope.h
include/gtk-4.0/gtk/gtkbutton.h
include/gtk-4.0/gtk/gtkcalendar.h
-include/gtk-4.0/gtk/gtkcellarea.h
-include/gtk-4.0/gtk/gtkcellareabox.h
-include/gtk-4.0/gtk/gtkcellareacontext.h
-include/gtk-4.0/gtk/gtkcelleditable.h
-include/gtk-4.0/gtk/gtkcelllayout.h
-include/gtk-4.0/gtk/gtkcellrenderer.h
-include/gtk-4.0/gtk/gtkcellrendereraccel.h
-include/gtk-4.0/gtk/gtkcellrenderercombo.h
-include/gtk-4.0/gtk/gtkcellrendererpixbuf.h
-include/gtk-4.0/gtk/gtkcellrendererprogress.h
-include/gtk-4.0/gtk/gtkcellrendererspin.h
-include/gtk-4.0/gtk/gtkcellrendererspinner.h
-include/gtk-4.0/gtk/gtkcellrenderertext.h
-include/gtk-4.0/gtk/gtkcellrenderertoggle.h
-include/gtk-4.0/gtk/gtkcellview.h
include/gtk-4.0/gtk/gtkcenterbox.h
include/gtk-4.0/gtk/gtkcenterlayout.h
include/gtk-4.0/gtk/gtkcheckbutton.h
-include/gtk-4.0/gtk/gtkcolorbutton.h
-include/gtk-4.0/gtk/gtkcolorchooser.h
-include/gtk-4.0/gtk/gtkcolorchooserdialog.h
-include/gtk-4.0/gtk/gtkcolorchooserwidget.h
+include/gtk-4.0/gtk/gtkcolordialog.h
+include/gtk-4.0/gtk/gtkcolordialogbutton.h
include/gtk-4.0/gtk/gtkcolorutils.h
include/gtk-4.0/gtk/gtkcolumnview.h
include/gtk-4.0/gtk/gtkcolumnviewcolumn.h
-include/gtk-4.0/gtk/gtkcombobox.h
-include/gtk-4.0/gtk/gtkcomboboxtext.h
+include/gtk-4.0/gtk/gtkcolumnviewsorter.h
include/gtk-4.0/gtk/gtkconstraint.h
include/gtk-4.0/gtk/gtkconstraintguide.h
include/gtk-4.0/gtk/gtkconstraintlayout.h
@@ -164,7 +199,7 @@ include/gtk-4.0/gtk/gtkcustomfilter.h
include/gtk-4.0/gtk/gtkcustomlayout.h
include/gtk-4.0/gtk/gtkcustomsorter.h
include/gtk-4.0/gtk/gtkdebug.h
-include/gtk-4.0/gtk/gtkdialog.h
+include/gtk-4.0/gtk/gtkdialogerror.h
include/gtk-4.0/gtk/gtkdirectorylist.h
include/gtk-4.0/gtk/gtkdragicon.h
include/gtk-4.0/gtk/gtkdragsource.h
@@ -178,7 +213,6 @@ include/gtk-4.0/gtk/gtkeditablelabel.h
include/gtk-4.0/gtk/gtkemojichooser.h
include/gtk-4.0/gtk/gtkentry.h
include/gtk-4.0/gtk/gtkentrybuffer.h
-include/gtk-4.0/gtk/gtkentrycompletion.h
include/gtk-4.0/gtk/gtkenums.h
include/gtk-4.0/gtk/gtkeventcontroller.h
include/gtk-4.0/gtk/gtkeventcontrollerfocus.h
@@ -188,21 +222,17 @@ include/gtk-4.0/gtk/gtkeventcontrollermo
include/gtk-4.0/gtk/gtkeventcontrollerscroll.h
include/gtk-4.0/gtk/gtkexpander.h
include/gtk-4.0/gtk/gtkexpression.h
-include/gtk-4.0/gtk/gtkfilechooser.h
-include/gtk-4.0/gtk/gtkfilechooserdialog.h
-include/gtk-4.0/gtk/gtkfilechoosernative.h
-include/gtk-4.0/gtk/gtkfilechooserwidget.h
+include/gtk-4.0/gtk/gtkfiledialog.h
include/gtk-4.0/gtk/gtkfilefilter.h
+include/gtk-4.0/gtk/gtkfilelauncher.h
include/gtk-4.0/gtk/gtkfilter.h
include/gtk-4.0/gtk/gtkfilterlistmodel.h
include/gtk-4.0/gtk/gtkfixed.h
include/gtk-4.0/gtk/gtkfixedlayout.h
include/gtk-4.0/gtk/gtkflattenlistmodel.h
include/gtk-4.0/gtk/gtkflowbox.h
-include/gtk-4.0/gtk/gtkfontbutton.h
-include/gtk-4.0/gtk/gtkfontchooser.h
-include/gtk-4.0/gtk/gtkfontchooserdialog.h
-include/gtk-4.0/gtk/gtkfontchooserwidget.h
+include/gtk-4.0/gtk/gtkfontdialog.h
+include/gtk-4.0/gtk/gtkfontdialogbutton.h
include/gtk-4.0/gtk/gtkframe.h
include/gtk-4.0/gtk/gtkgesture.h
include/gtk-4.0/gtk/gtkgestureclick.h
@@ -220,13 +250,11 @@ include/gtk-4.0/gtk/gtkgridlayout.h
include/gtk-4.0/gtk/gtkgridview.h
include/gtk-4.0/gtk/gtkheaderbar.h
include/gtk-4.0/gtk/gtkicontheme.h
-include/gtk-4.0/gtk/gtkiconview.h
include/gtk-4.0/gtk/gtkimage.h
include/gtk-4.0/gtk/gtkimcontext.h
include/gtk-4.0/gtk/gtkimcontextsimple.h
include/gtk-4.0/gtk/gtkimmodule.h
include/gtk-4.0/gtk/gtkimmulticontext.h
-include/gtk-4.0/gtk/gtkinfobar.h
include/gtk-4.0/gtk/gtkinscription.h
include/gtk-4.0/gtk/gtklabel.h
include/gtk-4.0/gtk/gtklayoutchild.h
@@ -237,16 +265,13 @@ include/gtk-4.0/gtk/gtklistbase.h
include/gtk-4.0/gtk/gtklistbox.h
include/gtk-4.0/gtk/gtklistitem.h
include/gtk-4.0/gtk/gtklistitemfactory.h
-include/gtk-4.0/gtk/gtkliststore.h
include/gtk-4.0/gtk/gtklistview.h
-include/gtk-4.0/gtk/gtklockbutton.h
include/gtk-4.0/gtk/gtkmain.h
include/gtk-4.0/gtk/gtkmaplistmodel.h
include/gtk-4.0/gtk/gtkmediacontrols.h
include/gtk-4.0/gtk/gtkmediafile.h
include/gtk-4.0/gtk/gtkmediastream.h
include/gtk-4.0/gtk/gtkmenubutton.h
-include/gtk-4.0/gtk/gtkmessagedialog.h
include/gtk-4.0/gtk/gtkmountoperation.h
include/gtk-4.0/gtk/gtkmultifilter.h
include/gtk-4.0/gtk/gtkmultiselection.h
@@ -276,7 +301,6 @@ include/gtk-4.0/gtk/gtkprintsettings.h
include/gtk-4.0/gtk/gtkprogressbar.h
include/gtk-4.0/gtk/gtkrange.h
include/gtk-4.0/gtk/gtkrecentmanager.h
-include/gtk-4.0/gtk/gtkrender.h
include/gtk-4.0/gtk/gtkrevealer.h
include/gtk-4.0/gtk/gtkroot.h
include/gtk-4.0/gtk/gtkscale.h
@@ -300,7 +324,6 @@ include/gtk-4.0/gtk/gtkshortcutssection.
include/gtk-4.0/gtk/gtkshortcutsshortcut.h
include/gtk-4.0/gtk/gtkshortcutswindow.h
include/gtk-4.0/gtk/gtkshortcuttrigger.h
-include/gtk-4.0/gtk/gtkshow.h
include/gtk-4.0/gtk/gtksignallistitemfactory.h
include/gtk-4.0/gtk/gtksingleselection.h
include/gtk-4.0/gtk/gtksizegroup.h
@@ -314,11 +337,9 @@ include/gtk-4.0/gtk/gtkspinner.h
include/gtk-4.0/gtk/gtkstack.h
include/gtk-4.0/gtk/gtkstacksidebar.h
include/gtk-4.0/gtk/gtkstackswitcher.h
-include/gtk-4.0/gtk/gtkstatusbar.h
include/gtk-4.0/gtk/gtkstringfilter.h
include/gtk-4.0/gtk/gtkstringlist.h
include/gtk-4.0/gtk/gtkstringsorter.h
-include/gtk-4.0/gtk/gtkstylecontext.h
include/gtk-4.0/gtk/gtkstyleprovider.h
include/gtk-4.0/gtk/gtkswitch.h
include/gtk-4.0/gtk/gtksymbolicpaintable.h
@@ -334,24 +355,15 @@ include/gtk-4.0/gtk/gtktexttagtable.h
include/gtk-4.0/gtk/gtktextview.h
include/gtk-4.0/gtk/gtktogglebutton.h
include/gtk-4.0/gtk/gtktooltip.h
-include/gtk-4.0/gtk/gtktreednd.h
include/gtk-4.0/gtk/gtktreeexpander.h
include/gtk-4.0/gtk/gtktreelistmodel.h
include/gtk-4.0/gtk/gtktreelistrowsorter.h
-include/gtk-4.0/gtk/gtktreemodel.h
-include/gtk-4.0/gtk/gtktreemodelfilter.h
-include/gtk-4.0/gtk/gtktreemodelsort.h
-include/gtk-4.0/gtk/gtktreeselection.h
-include/gtk-4.0/gtk/gtktreesortable.h
-include/gtk-4.0/gtk/gtktreestore.h
-include/gtk-4.0/gtk/gtktreeview.h
-include/gtk-4.0/gtk/gtktreeviewcolumn.h
include/gtk-4.0/gtk/gtktypebuiltins.h
include/gtk-4.0/gtk/gtktypes.h
+include/gtk-4.0/gtk/gtkurilauncher.h
include/gtk-4.0/gtk/gtkversion.h
include/gtk-4.0/gtk/gtkvideo.h
include/gtk-4.0/gtk/gtkviewport.h
-include/gtk-4.0/gtk/gtkvolumebutton.h
include/gtk-4.0/gtk/gtkwidget.h
include/gtk-4.0/gtk/gtkwidgetpaintable.h
include/gtk-4.0/gtk/gtkwindow.h
@@ -375,7 +387,7 @@ ${PLIST.lpr}lib/gtk-4.0/4.0.0/printbacke
lib/libgtk-4.${SOEXT}
${PLIST.dylib}lib/libgtk-4.1.dylib
${PLIST.no-dylib}lib/libgtk-4.so.1
-${PLIST.no-dylib}lib/libgtk-4.so.1.800.3
+${PLIST.no-dylib}lib/libgtk-4.so.1.1000.4
${PLIST.quartz}lib/pkgconfig/gtk4-macos.pc
lib/pkgconfig/gtk4-unix-print.pc
${PLIST.x11}lib/pkgconfig/gtk4-x11.pc
Index: pkgsrc/x11/gtk4/distinfo
diff -u pkgsrc/x11/gtk4/distinfo:1.12 pkgsrc/x11/gtk4/distinfo:1.13
--- pkgsrc/x11/gtk4/distinfo:1.12 Mon Jan 23 21:04:31 2023
+++ pkgsrc/x11/gtk4/distinfo Wed Jul 19 07:15:30 2023
@@ -1,8 +1,5 @@
-$NetBSD: distinfo,v 1.12 2023/01/23 21:04:31 adam Exp $
+$NetBSD: distinfo,v 1.13 2023/07/19 07:15:30 adam Exp $
-BLAKE2s (gtk-4.8.3.tar.xz) = 70e8422a70c05c786ef56171b8ad0b0bbb98d85a2faed19e7fd1e50ee62ceece
-SHA512 (gtk-4.8.3.tar.xz) = 56be0f5ce85a9cbbda4a5de53baeeb6b8cc527a5d34723ae5548759ec7c28f03d204b6b6758dffed02a9e226f3bfcd1f15971105c2f2f7be7cef22538be27754
-Size (gtk-4.8.3.tar.xz) = 20297060 bytes
-SHA1 (patch-demos_gtk-demo_gtkgears.c) = f09912bb4bef8589f694d4ed1a4744afe422ccbd
-SHA1 (patch-meson.build) = 89b91ba48b35baafb35598d3dd82577de8fc424c
-SHA1 (patch-tests_gtkgears.c) = 2af0628eb8c8286c85cd5c64a9da561fa375e8b3
+BLAKE2s (gtk-4.10.4.tar.xz) = f6a2247632075bde1bc76130d6b76f83d281aa9b798bfb6db5ea16a7b3f8a3a9
+SHA512 (gtk-4.10.4.tar.xz) = 0c5db3af72227977e11fea3adddec1321b82bcace3c3d10a7c914b8d98b0bdb7994084c0a9e883b24815038bf4a0efe1eb1c4ff79e6838e83cadb6ddf2a1239f
+Size (gtk-4.10.4.tar.xz) = 20526652 bytes
Home |
Main Index |
Thread Index |
Old Index