public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Susi Lehtola <jussilehtola@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/libxc] rawhide: Update to 7.1.1.
Date: Mon, 20 Jul 2026 08:51:27 GMT [thread overview]
Message-ID: <178453748764.1.5173457858363911090.rpms-libxc-93de49aff43a@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/libxc
Branch : rawhide
Commit : 93de49aff43acab7377ad0d47b63bf439c8aa5c7
Author : Susi Lehtola <jussilehtola@fedoraproject.org>
Date : 2026-07-20T08:51:22+00:00
Stats : +6/-49 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/libxc/c/93de49aff43acab7377ad0d47b63bf439c8aa5c7?branch=rawhide
Log:
Update to 7.1.1.
---
diff --git a/808.patch b/808.patch
deleted file mode 100644
index 471fb62..0000000
--- a/808.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 06ee8c97b019ffca88c586e1fccd8642425d3d55 Mon Sep 17 00:00:00 2001
-From: Susi Lehtola <susi.lehtola@gmail.com>
-Date: Fri, 17 Jul 2026 21:32:22 +0300
-Subject: [PATCH] examples: use the c_size_t kind for np in the Fortran basic
- example
-
-xc_f03_lda_exc / xc_f03_gga_exc declare np as integer(c_size_t). The example
-passed the literal 5_8 (INTEGER(8)), which matches c_size_t only on 64-bit
-platforms; on 32-bit targets (e.g. i686) c_size_t is 4 bytes and the build
-fails with "Type mismatch in argument 'np' ... passed INTEGER(8) to INTEGER(4)".
-This surfaced now that 7.1.0 compiles the examples as part of the build. Pass
-5_c_size_t instead (portable across ILP32/LP64).
-
-Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
----
- examples/fortran/basic.f90 | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/examples/fortran/basic.f90 b/examples/fortran/basic.f90
-index fd33d9a65..d6fef7ac5 100644
---- a/examples/fortran/basic.f90
-+++ b/examples/fortran/basic.f90
-@@ -1,5 +1,6 @@
- program lxctest
- use xc_f03_lib_m
-+ use iso_c_binding, only : c_size_t
-
- implicit none
-
-@@ -18,9 +19,9 @@ program lxctest
-
- select case (xc_f03_func_info_get_family(xc_info))
- case(XC_FAMILY_LDA)
-- call xc_f03_lda_exc(xc_func, 5_8, rho(1), exc(1))
-+ call xc_f03_lda_exc(xc_func, 5_c_size_t, rho(1), exc(1))
- case(XC_FAMILY_GGA, XC_FAMILY_HYB_GGA)
-- call xc_f03_gga_exc(xc_func, 5_8, rho(1), sigma(1), exc(1))
-+ call xc_f03_gga_exc(xc_func, 5_c_size_t, rho(1), sigma(1), exc(1))
- end select
-
- do i = 1, 5
---
-GitLab
-
diff --git a/libxc.spec b/libxc.spec
index d63645f..1c283cc 100644
--- a/libxc.spec
+++ b/libxc.spec
@@ -15,7 +15,7 @@
Name: libxc
Summary: Library of exchange and correlation functionals for density-functional theory
-Version: 7.1.0
+Version: 7.1.1
Release: 1%{?dist}
License: MPL-2.0
Source0: https://gitlab.com/libxc/libxc/-/archive/%{version}/%{name}-%{version}.tar.gz
@@ -23,7 +23,6 @@ URL: http://www.tddft.org/programs/octopus/wiki/index.php/Libxc
# Hardcode the system libxc library path in pylibxc instead of autodetecting it
Patch0: libxc-7.1.0-pylibxc.patch
-Patch1: https://gitlab.com/libxc/libxc/-/merge_requests/808.patch
BuildRequires: make
BuildRequires: cmake
@@ -80,7 +79,6 @@ This package contains the Python3 interface library to libxc.
%prep
%setup -q
%patch 0 -p1 -b .pylibxc
-%patch 1 -p1 -b .example
# Plug in library soversion
sed -i "s|@SOVERSION@|%{soversion}|g;s|@LIBDIR@|%{_libdir}|g" pylibxc/core.py
@@ -112,9 +110,9 @@ sed -i 's|includedir=${prefix}/include/|includedir=%{_libdir}/gfortran/modules|g
%ldconfig_scriptlets
-# Run tests, don't parallellize them
+# Run tests
%check
-%ctest --parallel 1
+%ctest
%files
%doc README NEWS AUTHORS ChangeLog.md libxc.bib
@@ -136,6 +134,9 @@ sed -i 's|includedir=${prefix}/include/|includedir=%{_libdir}/gfortran/modules|g
%{python3_sitearch}/pylibxc/
%changelog
+* Mon Jul 20 2026 Susi Lehtola <jussilehtola@fedoraproject.org> - 7.1.1-1
+- Update to 7.1.1.
+
* Fri Jul 17 2026 Susi Lehtola <jussilehtola@fedoraproject.org> - 7.1.0-1
- Update to 7.1.0.
reply other threads:[~2026-07-20 8:51 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=178453748764.1.5173457858363911090.rpms-libxc-93de49aff43a@fedoraproject.org \
--to=jussilehtola@fedoraproject.org \
--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