pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/gspell



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Jun 23 10:15:09 UTC 2026

Modified Files:
        pkgsrc/textproc/gspell: Makefile PLIST distinfo

Log Message:
gspell: update to 1.14.3.

News in 1.14.3, 2026-03-17 (stable version)
-------------------------------------------
* Translation updates.

News in 1.14.2, 2025-11-28 (stable version)
-------------------------------------------
* Publish tarballs from CI.

News in 1.14.1, 2025-10-01 (stable version)
-------------------------------------------
* Documentation: update some URLs.
* Translation updates.

News in 1.14.0, 2024-09-13 (stable version)
-------------------------------------------
* Build: re-add support for macOS.

News in 1.13.2, 2024-08-29 (rc version)
---------------------------------------
This is a development snapshot (release candidate version). The stable versions
will be the 1.14.x.

* Re-add support for installed unit tests.

Modernize a bit the codebase:
* License headers: follow the REUSE way of applying licenses, with SPDX tags.
* Convert #include guards to #pragma once

Small improvements:
* Rename config.h to gspell-config.h
* Update gconstructor.h
* Re-organize files within the repository: have tests/interactive-tests/ and
  tests/unit-tests/

News in 1.13.1, 2024-08-05 (beta version)
-----------------------------------------
This is a development snapshot (beta version). The stable versions will be the
1.14.x.

* Build systems:
  - Add Meson.
  - Remove Autotools.
  - Add CMake experiment but reverted.
* Bump soversion because a symbol was exported by mistake with the Autotools.
* Translation updates.

News in 1.12.2, 2023-07-28
--------------------------
* Small code maintenance: don't use g_slice_*().

News in 1.12.1, 2023-04-30
--------------------------
* Build: remove gtk-mac-integration dependency.
* Documentation improvements.
* Translation updates.

News in 1.12.0, 2022-09-27
--------------------------
* Use G_MODULE_EXPORT instead of the custom _GSPELL_EXTERN macro.
* Small maintenance tasks, some minor simplifications.
* Translation updates.

News in 1.11.1, 2022-06-10
--------------------------
* Build: minor improvements, small change to how enum-types are built.
* A few documentation improvements.

News in 1.10.0, 2022-04-16
--------------------------
* Build from git: some updates, take newer version of autoconf-archive.
* Build: distribute more files in tarballs.
* Documentation improvements.
* Translation updates.

News in 1.9.1, 2020-10-10
-------------------------
* gspell_language_get_name() is now implemented with the ICU library, not with
  the iso-codes package. As a result, gspell no longer depends on the
  iso-codes, and has the ICU as a new dependency.
* Translation updates.


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 pkgsrc/textproc/gspell/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/gspell/PLIST
cvs rdiff -u -r1.10 -r1.11 pkgsrc/textproc/gspell/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/gspell/Makefile
diff -u pkgsrc/textproc/gspell/Makefile:1.55 pkgsrc/textproc/gspell/Makefile:1.56
--- pkgsrc/textproc/gspell/Makefile:1.55        Thu Jun 11 07:17:43 2026
+++ pkgsrc/textproc/gspell/Makefile     Tue Jun 23 10:15:09 2026
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.55 2026/06/11 07:17:43 wiz Exp $
+# $NetBSD: Makefile,v 1.56 2026/06/23 10:15:09 wiz Exp $
 
-DISTNAME=      gspell-1.8.4
-PKGREVISION=   14
+DISTNAME=      gspell-1.14.3
 CATEGORIES=    textproc gnome
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/gspell/${PKGVERSION_NOREV:R}/}
 EXTRACT_SUFX=  .tar.xz
@@ -12,38 +11,39 @@ COMMENT=    Spell checking API for GTK+ app
 LICENSE=       gnu-lgpl-v2.1
 
 USE_LANGUAGES=         c
-USE_LIBTOOL=           yes
 USE_PKGLOCALEDIR=      yes
-USE_TOOLS+=            gmake pkg-config
-GNU_CONFIGURE=         yes
+USE_TOOLS+=            pkg-config
 
-PKGCONFIG_OVERRIDE+=   gspell.pc.in
+MESON_ARGS+=           -Dgtk_doc=false
+
+PKGCONFIG_OVERRIDE+=           output/meson-private/gspell-1.pc
+PKGCONFIG_OVERRIDE_STAGE=      post-configure
 
 PLIST_VARS=    gir
 
 .include "../../mk/bsd.prefs.mk"
 .if ${OPSYS} == "Darwin"
-.include "../../x11/gtk-mac-integration/buildlink3.mk"
 USE_LANGUAGES+=                objc
 # introspection fails
-CONFIGURE_ARGS+=       --disable-introspection
+#CONFIGURE_ARGS+=      --disable-introspection
 # Some .c files contain objective-c code.
 CPPFLAGS+=             -x objective-c
 # tests do not link
-SUBST_CLASSES+=         tests
-SUBST_STAGE.tests=      pre-configure
-SUBST_MESSAGE.tests=    Disabling tests.
-SUBST_FILES.tests=      Makefile.in
-SUBST_SED.tests=        -e 's,tests testsuite,,'
+#SUBST_CLASSES+=         tests
+#SUBST_STAGE.tests=      pre-configure
+#SUBST_MESSAGE.tests=    Disabling tests.
+#SUBST_FILES.tests=      Makefile.in
+#SUBST_SED.tests=        -e 's,tests testsuite,,'
 .else
 TOOL_DEPENDS+=         glib2-introspection-[0-9]*:../../devel/glib2-introspection
 .include "../../devel/gobject-introspection/buildlink3.mk"
 PLIST.gir=             yes
 .endif
 
+.include "../../devel/meson/build.mk"
 .include "../../devel/glib2/buildlink3.mk"
 .include "../../lang/vala/buildlink3.mk"
 .include "../../textproc/enchant2/buildlink3.mk"
-.include "../../textproc/iso-codes/buildlink3.mk"
+.include "../../textproc/icu/buildlink3.mk"
 .include "../../x11/gtk3/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/gspell/PLIST
diff -u pkgsrc/textproc/gspell/PLIST:1.7 pkgsrc/textproc/gspell/PLIST:1.8
--- pkgsrc/textproc/gspell/PLIST:1.7    Tue Aug  8 08:31:55 2023
+++ pkgsrc/textproc/gspell/PLIST        Tue Jun 23 10:15:09 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2023/08/08 08:31:55 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2026/06/23 10:15:09 wiz Exp $
 bin/gspell-app1
 include/gspell-1/gspell/gspell-checker-dialog.h
 include/gspell-1/gspell/gspell-checker.h
@@ -13,49 +13,28 @@ include/gspell-1/gspell/gspell-navigator
 include/gspell-1/gspell/gspell-navigator.h
 include/gspell-1/gspell/gspell-text-buffer.h
 include/gspell-1/gspell/gspell-text-view.h
-include/gspell-1/gspell/gspell-version.h
 include/gspell-1/gspell/gspell.h
 ${PLIST.gir}lib/girepository-1.0/Gspell-1.typelib
-lib/libgspell-1.la
+lib/libgspell-1.so
+lib/libgspell-1.so.3
 lib/pkgconfig/gspell-1.pc
+libexec/installed-tests/gspell-1/test-checker
+libexec/installed-tests/gspell-1/test-entry
+libexec/installed-tests/gspell-1/test-icu
+libexec/installed-tests/gspell-1/test-inline-checker-text-buffer
+libexec/installed-tests/gspell-1/test-text-iter
+libexec/installed-tests/gspell-1/test-utils
 ${PLIST.gir}share/gir-1.0/Gspell-1.gir
-share/gtk-doc/html/gspell-1.0/GspellChecker.html
-share/gtk-doc/html/gspell-1.0/GspellCheckerDialog.html
-share/gtk-doc/html/gspell-1.0/GspellEntry.html
-share/gtk-doc/html/gspell-1.0/GspellEntryBuffer.html
-share/gtk-doc/html/gspell-1.0/GspellLanguage.html
-share/gtk-doc/html/gspell-1.0/GspellLanguageChooser.html
-share/gtk-doc/html/gspell-1.0/GspellLanguageChooserButton.html
-share/gtk-doc/html/gspell-1.0/GspellLanguageChooserDialog.html
-share/gtk-doc/html/gspell-1.0/GspellNavigator.html
-share/gtk-doc/html/gspell-1.0/GspellNavigatorTextView.html
-share/gtk-doc/html/gspell-1.0/GspellTextBuffer.html
-share/gtk-doc/html/gspell-1.0/GspellTextView.html
-share/gtk-doc/html/gspell-1.0/GtkEntry-support.html
-share/gtk-doc/html/gspell-1.0/GtkTextView-support.html
-share/gtk-doc/html/gspell-1.0/annexes.html
-share/gtk-doc/html/gspell-1.0/annotation-glossary.html
-share/gtk-doc/html/gspell-1.0/api-index-1-2.html
-share/gtk-doc/html/gspell-1.0/api-index-1-4.html
-share/gtk-doc/html/gspell-1.0/api-index-1-6.html
-share/gtk-doc/html/gspell-1.0/api-index-full.html
-share/gtk-doc/html/gspell-1.0/api-reference.html
-share/gtk-doc/html/gspell-1.0/core-classes.html
-share/gtk-doc/html/gspell-1.0/gspell-1.0.devhelp2
-share/gtk-doc/html/gspell-1.0/home.png
-share/gtk-doc/html/gspell-1.0/index.html
-share/gtk-doc/html/gspell-1.0/intro.html
-share/gtk-doc/html/gspell-1.0/language-choosers.html
-share/gtk-doc/html/gspell-1.0/left-insensitive.png
-share/gtk-doc/html/gspell-1.0/left.png
-share/gtk-doc/html/gspell-1.0/object-tree.html
-share/gtk-doc/html/gspell-1.0/right-insensitive.png
-share/gtk-doc/html/gspell-1.0/right.png
-share/gtk-doc/html/gspell-1.0/spell-checker-dialog.html
-share/gtk-doc/html/gspell-1.0/style.css
-share/gtk-doc/html/gspell-1.0/up-insensitive.png
-share/gtk-doc/html/gspell-1.0/up.png
+share/installed-tests/gspell-1/test-checker.test
+share/installed-tests/gspell-1/test-entry.test
+share/installed-tests/gspell-1/test-icu.test
+share/installed-tests/gspell-1/test-inline-checker-text-buffer.test
+share/installed-tests/gspell-1/test-text-iter.test
+share/installed-tests/gspell-1/test-utils.test
+share/locale/ab/LC_MESSAGES/gspell-1.mo
 share/locale/ar/LC_MESSAGES/gspell-1.mo
+share/locale/be/LC_MESSAGES/gspell-1.mo
+share/locale/bg/LC_MESSAGES/gspell-1.mo
 share/locale/ca/LC_MESSAGES/gspell-1.mo
 share/locale/ca@valencia/LC_MESSAGES/gspell-1.mo
 share/locale/ckb/LC_MESSAGES/gspell-1.mo
@@ -71,16 +50,22 @@ share/locale/fa/LC_MESSAGES/gspell-1.mo
 share/locale/fi/LC_MESSAGES/gspell-1.mo
 share/locale/fr/LC_MESSAGES/gspell-1.mo
 share/locale/fur/LC_MESSAGES/gspell-1.mo
+share/locale/gd/LC_MESSAGES/gspell-1.mo
 share/locale/gl/LC_MESSAGES/gspell-1.mo
 share/locale/he/LC_MESSAGES/gspell-1.mo
+share/locale/hi/LC_MESSAGES/gspell-1.mo
 share/locale/hr/LC_MESSAGES/gspell-1.mo
 share/locale/hu/LC_MESSAGES/gspell-1.mo
 share/locale/id/LC_MESSAGES/gspell-1.mo
+share/locale/ie/LC_MESSAGES/gspell-1.mo
 share/locale/is/LC_MESSAGES/gspell-1.mo
 share/locale/it/LC_MESSAGES/gspell-1.mo
 share/locale/ja/LC_MESSAGES/gspell-1.mo
+share/locale/ka/LC_MESSAGES/gspell-1.mo
+share/locale/kab/LC_MESSAGES/gspell-1.mo
 share/locale/kk/LC_MESSAGES/gspell-1.mo
 share/locale/ko/LC_MESSAGES/gspell-1.mo
+share/locale/kw/LC_MESSAGES/gspell-1.mo
 share/locale/lt/LC_MESSAGES/gspell-1.mo
 share/locale/lv/LC_MESSAGES/gspell-1.mo
 share/locale/mjw/LC_MESSAGES/gspell-1.mo
@@ -101,8 +86,12 @@ share/locale/sl/LC_MESSAGES/gspell-1.mo
 share/locale/sr/LC_MESSAGES/gspell-1.mo
 share/locale/sr@latin/LC_MESSAGES/gspell-1.mo
 share/locale/sv/LC_MESSAGES/gspell-1.mo
+share/locale/ta/LC_MESSAGES/gspell-1.mo
+share/locale/th/LC_MESSAGES/gspell-1.mo
 share/locale/tr/LC_MESSAGES/gspell-1.mo
+share/locale/ug/LC_MESSAGES/gspell-1.mo
 share/locale/uk/LC_MESSAGES/gspell-1.mo
+share/locale/uz/LC_MESSAGES/gspell-1.mo
 share/locale/vi/LC_MESSAGES/gspell-1.mo
 share/locale/zh_CN/LC_MESSAGES/gspell-1.mo
 share/locale/zh_TW/LC_MESSAGES/gspell-1.mo

Index: pkgsrc/textproc/gspell/distinfo
diff -u pkgsrc/textproc/gspell/distinfo:1.10 pkgsrc/textproc/gspell/distinfo:1.11
--- pkgsrc/textproc/gspell/distinfo:1.10        Tue Aug  8 08:31:55 2023
+++ pkgsrc/textproc/gspell/distinfo     Tue Jun 23 10:15:09 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.10 2023/08/08 08:31:55 adam Exp $
+$NetBSD: distinfo,v 1.11 2026/06/23 10:15:09 wiz Exp $
 
-BLAKE2s (gspell-1.8.4.tar.xz) = e73a7247d34c0045b9015af3e4dd81995067d24b9e851dd24b1f253af481b208
-SHA512 (gspell-1.8.4.tar.xz) = adb481590442d81040151746c7747791d76248b1b35af1702dc5389efbd2e0c6bdda070b8e84384d22f4922b5a382ac2c6519e425f417ec85c8efbe22dc38c82
-Size (gspell-1.8.4.tar.xz) = 424356 bytes
+BLAKE2s (gspell-1.14.3.tar.xz) = 9e36dffd7c37dfe4334acd998ea68d6243beaafcf456de12cd5c090fc8592518
+SHA512 (gspell-1.14.3.tar.xz) = fd22f6c60e46976697619385b6c7f32c399126b3c057f929c9a504eb8ee8a8376e240cff67fc94e0ccf20b832556f0e3362ddf2771a5d7616264841113d6da26
+Size (gspell-1.14.3.tar.xz) = 118848 bytes



Home | Main Index | Thread Index | Old Index