public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Patrick Monnerat <patrick@monnerat.net>
To: git-commits@fedoraproject.org
Subject: [rpms/itk] f44: New upstream release.
Date: Wed, 01 Jul 2026 06:57:35 GMT [thread overview]
Message-ID: <178288905500.1.17040598518032552147.rpms-itk-c1a69254ede6@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/itk
Branch : f44
Commit : c1a69254ede69f7cc354c2da455f86c3baa27ef3
Author : Patrick Monnerat <patrick@monnerat.net>
Date : 2026-07-01T08:57:03+02:00
Stats : +128/-173 in 11 file(s)
URL : https://src.fedoraproject.org/rpms/itk/c/c1a69254ede69f7cc354c2da455f86c3baa27ef3?branch=f44
Log:
New upstream release.
Use Tcl/Tk version 9.
---
diff --git a/.gitignore b/.gitignore
index ab2e26c..b873f3d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ itk-20071231cvs.tgz
/itk4.0.0.tar.gz
/itk4.0.1.tar.gz
/itk4.1.0.tar.gz
+/itk-4.2.3.tar.gz
diff --git a/itcl4.0.0-linuxloading.patch b/itcl4.0.0-linuxloading.patch
deleted file mode 100644
index 1960500..0000000
--- a/itcl4.0.0-linuxloading.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- itk4.0.0.orig/generic/itkBase.c 2013-02-03 17:25:51.000000000 +0100
-+++ itk4.0.0.orig/generic/itkBase.c 2014-06-06 16:56:28.045513277 +0200
-@@ -73,7 +73,7 @@ namespace eval ::itk {\n\
- lappend dirs [file join $bindir .. .. library]\n\
- lappend dirs [file join $bindir .. .. itk library]\n\
- # On MacOSX, check the directories in the tcl_pkgPath\n\
-- if {[string equal $::tcl_platform(platform) \"unix\"] && \
-+ if {[string equal $::tcl_platform(platform) \"unix\"] || \
- [string equal $::tcl_platform(os) \"Darwin\"]} {\n\
- foreach d $::tcl_pkgPath {\n\
- lappend dirs [file join $d itk$patchLevel]\n\
diff --git a/itk-4.2.3-libdir.patch b/itk-4.2.3-libdir.patch
new file mode 100644
index 0000000..7e8a15b
--- /dev/null
+++ b/itk-4.2.3-libdir.patch
@@ -0,0 +1,45 @@
+diff -Naurp itk-4.2.3.orig/configure itk-4.2.3.new/configure
+--- itk-4.2.3.orig/configure 2023-09-27 22:01:01.000000000 +0200
++++ itk-4.2.3.new/configure 2025-10-26 15:45:17.281190067 +0100
+@@ -9808,13 +9808,13 @@ itk_STUB_LIB_FILE="${PKG_STUB_LIB_FILE}"
+ #--------------------------------------------------------------------
+
+ # pkglibdir must be a fully qualified path and (not ${exec_prefix}/lib)
+- eval pkglibdir="${libdir}/itk${PACKAGE_VERSION}"
++ eval pkglibdir="${libdir}/tcl${TCL_VERSION}/itk${PACKAGE_VERSION}"
+ if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
+- eval itk_LIB_FLAG="-litk${PACKAGE_VERSION}"
+- eval itk_STUB_LIB_FLAG="-litkstub${PACKAGE_VERSION}"
++ eval itk_LIB_FLAG="-l${PACKAGE_LIB_PREFIX}itk${PACKAGE_VERSION}"
++ eval itk_STUB_LIB_FLAG="-l${PACKAGE_LIB_PREFIX8}itkstub${PACKAGE_VERSION}"
+ else
+- eval itk_LIB_FLAG="-litk`echo ${PACKAGE_VERSION} | tr -d .`"
+- eval itk_STUB_LIB_FLAG="-litkstub`echo ${PACKAGE_VERSION} | tr -d .`"
++ eval itk_LIB_FLAG="-l${PACKAGE_LIB_PREFIX}itk`echo ${PACKAGE_VERSION} | tr -d .`"
++ eval itk_STUB_LIB_FLAG="-l${PACKAGE_LIB_PREFIX8}itkstub`echo ${PACKAGE_VERSION} | tr -d .`"
+ fi
+ itk_BUILD_LIB_SPEC="-L`$CYGPATH $(pwd)` ${itk_LIB_FLAG}"
+ itk_LIB_SPEC="-L`$CYGPATH ${pkglibdir}` ${itk_LIB_FLAG}"
+diff -Naurp itk-4.2.3.orig/Makefile.in itk-4.2.3.new/Makefile.in
+--- itk-4.2.3.orig/Makefile.in 2023-09-27 22:01:01.000000000 +0200
++++ itk-4.2.3.new/Makefile.in 2025-10-26 15:31:51.987582918 +0100
+@@ -84,8 +84,8 @@ mandir = @mandir@
+ DESTDIR =
+
+ PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION)
+-pkgdatadir = $(datadir)/$(PKG_DIR)
+-pkglibdir = $(libdir)/$(PKG_DIR)
++pkgdatadir = $(datadir)/tcl@TCL_VERSION@/$(PKG_DIR)
++pkglibdir = $(libdir)/tcl@TCL_VERSION@/$(PKG_DIR)
+ pkgincludedir = $(includedir)/$(PKG_DIR)
+
+ top_builddir = @abs_top_builddir@
+@@ -437,7 +437,7 @@ install-lib-binaries: binaries
+ echo " Install pkgIndex.tcl $(DESTDIR)$(pkglibdir)"; \
+ $(INSTALL_DATA) pkgIndex.tcl "$(DESTDIR)$(pkglibdir)"; \
+ fi
+- $(INSTALL_DATA) itkConfig.sh "$(DESTDIR)$(pkglibdir)"
++ $(INSTALL_DATA) itkConfig.sh "$(DESTDIR)$(libdir)"
+
+ #========================================================================
+ # Install binary executables (e.g. .exe files and dependent .dll files)
diff --git a/itk-4.2.3-linuxloading.patch b/itk-4.2.3-linuxloading.patch
new file mode 100644
index 0000000..630c370
--- /dev/null
+++ b/itk-4.2.3-linuxloading.patch
@@ -0,0 +1,11 @@
+--- itk4.0.0.orig/generic/itkBase.c 2013-02-03 17:25:51.000000000 +0100
++++ itk4.0.0.orig/generic/itkBase.c 2014-06-06 16:56:28.045513277 +0200
+@@ -71,7 +71,7 @@ namespace eval ::itk {\n\
+ lappend dirs [file join $bindir .. .. library]\n\
+ lappend dirs [file join $bindir .. .. itk library]\n\
+ # On MacOSX, check the directories in the tcl_pkgPath\n\
+- if {[string equal $::tcl_platform(platform) \"unix\"] && \
++ if {[string equal $::tcl_platform(platform) \"unix\"] || \
+ [string equal $::tcl_platform(os) \"Darwin\"]} {\n\
+ foreach d $::tcl_pkgPath {\n\
+ lappend dirs [file join $d itk$patchLevel]\n\
diff --git a/itk-4.2.3-soname.patch b/itk-4.2.3-soname.patch
new file mode 100644
index 0000000..1e550dd
--- /dev/null
+++ b/itk-4.2.3-soname.patch
@@ -0,0 +1,12 @@
+diff -Naurp itk-4.2.3.orig/configure itk-4.2.3.new/configure
+--- itk-4.2.3.orig/configure 2023-09-27 22:01:01.000000000 +0200
++++ itk-4.2.3.new/configure 2025-10-25 19:38:48.611938935 +0200
+@@ -7932,7 +7932,7 @@ fi
+
+ # TEA specific: use LDFLAGS_DEFAULT instead of LDFLAGS
+ SHLIB_LD='${CC} ${CFLAGS} ${LDFLAGS_DEFAULT} -shared'
+- LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
++ LDFLAGS="$LDFLAGS -Wl,--export-dynamic -Wl,-soname,\${@}"
+
+ case $system in
+ DragonFly-*|FreeBSD-*)
diff --git a/itk-4.2.3-tclsize.patch b/itk-4.2.3-tclsize.patch
new file mode 100644
index 0000000..d2e56f6
--- /dev/null
+++ b/itk-4.2.3-tclsize.patch
@@ -0,0 +1,18 @@
+diff -Naurp itk-4.2.3.orig/generic/itk.h itk-4.2.3.new/generic/itk.h
+--- itk-4.2.3.orig/generic/itk.h 2023-09-27 22:01:01.000000000 +0200
++++ itk-4.2.3.new/generic/itk.h 2025-10-26 16:16:51.612574550 +0100
+@@ -118,5 +118,14 @@ EXTERN const char *
+ #undef TCL_STORAGE_CLASS
+ #define TCL_STORAGE_CLASS DLLIMPORT
+
++/*
++ * Define Tcl_Size for Tcl < 9.
++ */
++#ifndef TCL_SIZE_MAX
++# ifndef Tcl_Size
++# define Tcl_Size int
++# endif
++#endif
++
+ #endif /* RC_INVOKED */
+ #endif /* ITK_H */
diff --git a/itk-libdir.patch b/itk-libdir.patch
deleted file mode 100644
index f707d32..0000000
--- a/itk-libdir.patch
+++ /dev/null
@@ -1,122 +0,0 @@
-diff -up itk4.1.0/configure.in.libdir itk4.1.0/configure.in
---- itk4.1.0/configure.in.libdir 2017-07-28 11:01:26.000000000 -0600
-+++ itk4.1.0/configure.in 2019-09-18 21:20:01.450013803 -0600
-@@ -211,6 +211,39 @@ AC_SUBST(itkstub_LIB_FILE)
- AC_SUBST(itk_LIB_FILE)
-
- #--------------------------------------------------------------------
-+# These are for itkConfig.sh
-+#--------------------------------------------------------------------
-+
-+# pkglibdir must be a fully qualified path and (not ${exec_prefix}/lib)
-+eval pkglibdir="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}"
-+if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
-+ eval ITK_LIB_FLAG="-litk${PACKAGE_VERSION}${DBGX}"
-+ eval ITK_STUB_LIB_FLAG="-litkstub${PACKAGE_VERSION}${DBGX}"
-+else
-+ eval ITK_LIB_FLAG="-litk`echo ${PACKAGE_VERSION} | tr -d .`${DBGX}"
-+ eval ITK_STUB_LIB_FLAG="-litkstub`echo ${PACKAGE_VERSION} | tr -d .`${DBGX}"
-+fi
-+ITK_BUILD_LIB_SPEC="-L`pwd` ${itk_LIB_FLAG}"
-+ITK_LIB_SPEC="-L${libdir} ${itk_LIB_FLAG}"
-+
-+ITK_BUILD_STUB_LIB_SPEC="-L`pwd` ${ITK_STUB_LIB_FLAG}"
-+ITK_STUB_LIB_SPEC="-L${pkglibdir} ${ITK_STUB_LIB_FLAG}"
-+ITK_BUILD_STUB_LIB_PATH="`pwd`/${ITK_STUB_LIB_FILE}"
-+ITK_STUB_LIB_PATH="${pkglibdir}/${ITK_STUB_LIB_FILE}"
-+
-+AC_SUBST(ITK_BUILD_LIB_SPEC)
-+AC_SUBST(ITK_LIB_SPEC)
-+AC_SUBST(ITK_BUILD_STUB_LIB_SPEC)
-+AC_SUBST(ITK_STUB_LIB_SPEC)
-+AC_SUBST(ITK_BUILD_STUB_LIB_PATH)
-+AC_SUBST(ITK_STUB_LIB_PATH)
-+
-+# ITK_SRC_DIR must be a fully qualified path
-+eval ITK_SRC_DIR="$srcdir"
-+ITK_SRC_DIR=`cd "${ITK_SRC_DIR}"; pwd`
-+AC_SUBST(ITK_SRC_DIR)
-+
-+#--------------------------------------------------------------------
- # Find tclsh so that we can run pkg_mkIndex to generate the pkgIndex.tcl
- # file during the install process. Don't run the TCLSH_PROG through
- # ${CYGPATH} because it's being used directly by make.
-diff -up itk4.1.0/configure.libdir itk4.1.0/configure
---- itk4.1.0/configure.libdir 2017-07-28 11:01:26.000000000 -0600
-+++ itk4.1.0/configure 2019-09-18 21:20:01.453013824 -0600
-@@ -9360,6 +9360,32 @@ rm -f conftest*
- #--------------------------------------------------------------------
-
-
-+#--------------------------------------------------------------------
-+# These are for itkConfig.sh
-+#--------------------------------------------------------------------
-+
-+# pkglibdir must be a fully qualified path and (not ${exec_prefix}/lib)
-+eval pkglibdir="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}"
-+if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
-+ eval ITK_LIB_FLAG="-litk${PACKAGE_VERSION}${DBGX}"
-+ eval ITK_STUB_LIB_FLAG="-litkstub${PACKAGE_VERSION}${DBGX}"
-+else
-+ eval ITK_LIB_FLAG="-litk`echo ${PACKAGE_VERSION} | tr -d .`${DBGX}"
-+ eval ITK_STUB_LIB_FLAG="-litkstub`echo ${PACKAGE_VERSION} | tr -d .`${DBGX}"
-+fi
-+ITK_BUILD_LIB_SPEC="-L`pwd` ${itk_LIB_FLAG}"
-+ITK_LIB_SPEC="-L${libdir} ${itk_LIB_FLAG}"
-+
-+ITK_BUILD_STUB_LIB_SPEC="-L`pwd` ${ITK_STUB_LIB_FLAG}"
-+ITK_STUB_LIB_SPEC="-L${pkglibdir} ${ITK_STUB_LIB_FLAG}"
-+ITK_BUILD_STUB_LIB_PATH="`pwd`/${ITK_STUB_LIB_FILE}"
-+ITK_STUB_LIB_PATH="${pkglibdir}/${ITK_STUB_LIB_FILE}"
-+
-+
-+# ITK_SRC_DIR must be a fully qualified path
-+eval ITK_SRC_DIR="$srcdir"
-+ITK_SRC_DIR=`cd "${ITK_SRC_DIR}"; pwd`
-+
-
-
- #--------------------------------------------------------------------
-diff -up itk4.1.0/Makefile.in.libdir itk4.1.0/Makefile.in
---- itk4.1.0/Makefile.in.libdir 2017-07-28 11:00:34.000000000 -0600
-+++ itk4.1.0/Makefile.in 2019-09-18 21:20:01.453013824 -0600
-@@ -94,8 +94,8 @@ includedir = @includedir@
- DESTDIR =
-
- PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION)
--pkgdatadir = $(datadir)/$(PKG_DIR)
--pkglibdir = $(libdir)/$(PKG_DIR)
-+pkgdatadir = $(datadir)/tcl@TCL_VERSION@/$(PKG_DIR)
-+pkglibdir = $(libdir)/tcl@TCL_VERSION@/$(PKG_DIR)
- pkgincludedir = $(includedir)/$(PKG_DIR)
-
- top_builddir = .
-@@ -364,13 +364,15 @@ install-lib-binaries:
- @mkdir -p $(DESTDIR)$(pkglibdir)
- @list='$(lib_BINARIES)'; for p in $$list; do \
- if test -f $$p; then \
-- echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p"; \
-- $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p; \
- stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \
- if test "x$$stub" = "xstub"; then \
-+ echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p"; \
-+ $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p; \
- echo " $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p"; \
- $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p; \
- else \
-+ echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libdir)/$$p"; \
-+ $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libdir)/$$p; \
- echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \
- $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p; \
- fi; \
-diff -up itk4.1.0/pkgIndex.tcl.in.libdir itk4.1.0/pkgIndex.tcl.in
---- itk4.1.0/pkgIndex.tcl.in.libdir 2019-09-18 21:20:01.454013832 -0600
-+++ itk4.1.0/pkgIndex.tcl.in 2019-09-18 21:20:45.225321448 -0600
-@@ -2,5 +2,5 @@
-
- if {![package vsatisfies [package provide Tcl] 8.6]} return
- if {[string length [package provide Itcl]] && ![package vsatisfies [package provide Itcl] 4.1]} return
--package ifneeded itk @PACKAGE_VERSION@ [list load [file join $dir "@PKG_LIB_FILE@"] Itk]
--package ifneeded Itk @PACKAGE_VERSION@ [list load [file join $dir "@PKG_LIB_FILE@"] Itk]
-+package ifneeded itk @PACKAGE_VERSION@ [list load [file join $dir .. .. "@PKG_LIB_FILE@"] Itk]
-+package ifneeded Itk @PACKAGE_VERSION@ [list load [file join $dir .. .. "@PKG_LIB_FILE@"] Itk]
diff --git a/itk-soname.patch b/itk-soname.patch
deleted file mode 100644
index 69fa155..0000000
--- a/itk-soname.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -up itk4.0.0/configure.soname itk4.0.0/configure
---- itk4.0.0/configure.soname 2014-05-27 11:35:04.662558550 -0600
-+++ itk4.0.0/configure 2014-05-27 11:36:47.192992831 -0600
-@@ -7074,7 +7074,7 @@ fi
-
- # TEA specific: use LDFLAGS_DEFAULT instead of LDFLAGS
- SHLIB_LD='${CC} -shared ${CFLAGS} ${LDFLAGS_DEFAULT}'
-- LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
-+ LDFLAGS="$LDFLAGS -Wl,--export-dynamic -Wl,-soname,\${@}"
- if test $doRpath = yes; then :
-
- CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
diff --git a/itk-tolowercase.patch b/itk-tolowercase.patch
deleted file mode 100644
index aca0fad..0000000
--- a/itk-tolowercase.patch
+++ /dev/null
@@ -1,10 +0,0 @@
-diff -up itk4.1.0/pkgIndex.tcl.in.tolowercase itk4.1.0/pkgIndex.tcl.in
---- itk4.1.0/pkgIndex.tcl.in.tolowercase 2019-09-18 21:21:06.557471167 -0600
-+++ itk4.1.0/pkgIndex.tcl.in 2019-09-18 21:21:52.466793382 -0600
-@@ -2,5 +2,5 @@
-
- if {![package vsatisfies [package provide Tcl] 8.6]} return
- if {[string length [package provide Itcl]] && ![package vsatisfies [package provide Itcl] 4.1]} return
--package ifneeded itk @PACKAGE_VERSION@ [list load [file join $dir .. .. "@PKG_LIB_FILE@"] Itk]
-+package ifneeded itk @PACKAGE_VERSION@ [list load [file join $dir .. .. "@PKG_LIB_FILE@"] itk]
- package ifneeded Itk @PACKAGE_VERSION@ [list load [file join $dir .. .. "@PKG_LIB_FILE@"] Itk]
diff --git a/itk.spec b/itk.spec
index c9d6889..01221e6 100644
--- a/itk.spec
+++ b/itk.spec
@@ -1,23 +1,30 @@
-%{!?tcl_version: %define tcl_version %(echo 'puts $tcl_version' | tclsh)}
+%{!?tcl_version: %define tcl_version %(echo 'puts $tcl_version' | tclsh || echo 0)}
%{!?tcl_sitearch: %define tcl_sitearch %{_libdir}/tcl%{tcl_version}}
+# The following definitions identify the packaged source release.
+%global tagname itk-%{version}
+%global tagcommit fd455dc9a1
+
+# Link time optimisation causes problems.
+%define _lto_cflags %{nil}
+
Name: itk
-Version: 4.1.0
-Release: 15%{?dist}
+Version: 4.2.3
+Release: 1%{?dist}
Summary: Object oriented extensions to Tk
License: TCL
-URL: http://incrtcl.sourceforge.net/itcl/
-Source0: https://downloads.sourceforge.net/incrtcl/%{name}%{version}.tar.gz
-Patch0: itk-libdir.patch
-Patch1: itk-soname.patch
-Patch2: itcl4.0.0-linuxloading.patch
-Patch4: itk-tolowercase.patch
-
-Requires: tcl(abi) = 8.6 itcl tk
+URL: https://core.tcl-lang.org/itk
+Source0: https://core.tcl-lang.org/%{name}/tarball/%{name}-%{version}.tar.gz?uuid=%{tagcommit}#/%{name}-%{version}.tar.gz
+Patch0: itk-4.2.3-libdir.patch
+Patch1: itk-4.2.3-soname.patch
+Patch2: itk-4.2.3-linuxloading.patch
+Patch3: itk-4.2.3-tclsize.patch
+
+Requires: tcl(abi) = %{tcl_version} itcl tk
BuildRequires: gcc
BuildRequires: tk-devel itcl-devel
-BuildRequires: make
+BuildRequires: make
%description
[incr Tk] is Tk extension that provides object-oriented features that are
@@ -31,11 +38,11 @@ Requires: %{name} = %{version}-%{release}
Development headers and libraries for linking against itk.
%prep
-%setup -q -n %{name}%{version}
+%setup -q
%patch -P0 -p1 -b .libdir
%patch -P1 -p1 -b .soname
%patch -P2 -p1 -b .linuxloading
-%patch -P4 -p1 -b .tolowercase
+%patch -P3 -p1 -b .tclsize
%build
%configure
@@ -43,22 +50,38 @@ Development headers and libraries for linking against itk.
%install
%make_install
+chmod +x '%{buildroot}%{tcl_sitearch}/%{name}%{version}/'*.so
+
+
+%check
+# Tests require a GUI display: do not perform.
+#make test
%files
-%{_libdir}/*.so
-%dir %{tcl_sitearch}/itk%{version}
+%dir %{tcl_sitearch}/%{name}%{version}
%{tcl_sitearch}/%{name}%{version}/*.tcl
%{tcl_sitearch}/%{name}%{version}/*.itk
+%{tcl_sitearch}/%{name}%{version}/*.so
%{tcl_sitearch}/%{name}%{version}/tclIndex
%{_mandir}/mann/*.gz
%license license.terms
%files devel
%{_includedir}/*.h
-# What happened to itk's stub library and itkConfig.sh?
+%{tcl_sitearch}/%{name}%{version}/*.a
+%{_libdir}/itkConfig.sh
%changelog
+* Wed Jul 1 2026 Patrick Monnerat <patrick@monnerat.net> 4.2.3-1
+- New upstream release.
+ https://bugzilla.redhat.com/show_bug.cgi?id=2405003
+ https://bugzilla.redhat.com/show_bug.cgi?id=2434688
+- New URL.
+- New source URL.
+- Use Tcl/Tk version 9.
+- Patch "tclsize" to retain Tcl8 compatibility.
+
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
diff --git a/sources b/sources
index b52220a..c5d09ce 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (itk4.1.0.tar.gz) = 1deed09daf66ae1d0cc88550be13814edff650f3ef2ecb5ae8d28daf92e37550b0e46921eb161da8ccc3886aaf62a4a3087df0f13610839b7c2d6f4b39c9f07e
+SHA512 (itk-4.2.3.tar.gz) = 9090e55e8a83a26c14b6476791ce81d3484baa31b64bd42c909d3e86099655ca90cdeb9a2525076db41dade701623ab3cbe0915ee3173f3d3f1d1261994a0714
reply other threads:[~2026-07-01 6:57 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178288905500.1.17040598518032552147.rpms-itk-c1a69254ede6@fedoraproject.org \
--to=patrick@monnerat.net \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox