The package rpms/lammps.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/lammps.git/commit/?id=4bcdebca9044bb....
Change: +ExcludeArch: i686
Thanks.
Full change: ============
commit ad6fe6215272b798fefcb791a958e01981fce9e4 Author: Richard Berger richard.berger@outlook.com Date: Tue Feb 28 21:32:13 2023 -0700
Use pyproject RPM macros
diff --git a/lammps.spec b/lammps.spec index a61f933..d75e74c 100644 --- a/lammps.spec +++ b/lammps.spec @@ -37,6 +37,7 @@ Source0: https://github.com/lammps/lammps/archive/%%7Buversion%7D.tar.gz#/%%7Bn Source1: https://github.com/google/googletest/archive/release-1.12.1.tar.gz#/googlete... Source2: https://pyyaml.org/download/libyaml/yaml-0.2.5.tar.gz Source3: https://download.lammps.org/thirdparty/opencl-loader-2022.01.04.tar.gz +Patch0: remove-python-package-install-from-cmake-install.patch BuildRequires: fftw-devel BuildRequires: gcc-c++ BuildRequires: gcc-fortran @@ -47,10 +48,7 @@ BuildRequires: python%{python3_pkgversion}-mpi4py-openmpi BuildRequires: mpich-devel BuildRequires: python%{python3_pkgversion}-mpi4py-mpich BuildRequires: python%{python3_pkgversion}-devel -BuildRequires: python%{python3_pkgversion}-setuptools -BuildRequires: python%{python3_pkgversion}-pip -BuildRequires: python%{python3_pkgversion}-wheel -BuildRequires: python%{python3_pkgversion}-build +BuildRequires: python%{python3_pkgversion}-numpy BuildRequires: fftw3-devel BuildRequires: zlib-devel BuildRequires: gsl-devel @@ -87,6 +85,7 @@ LAMMPS runs on single processors or in parallel using message-passing \ techniques and a spatial-decomposition of the simulation domain. The code is \ designed to be easy to modify or extend with new functionality.
+ %description %{lammps_desc}
@@ -114,6 +113,7 @@ This package contains LAMMPS MPICH binaries and libraries %package -n python%{python3_pkgversion}-%{name} Summary: LAMMPS Python interface Requires: python%{python3_pkgversion} +Requires: python%{python3_pkgversion}-numpy Requires: %{name}%{?_isa} = %{version}-%{release} %{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
@@ -193,12 +193,17 @@ BuildArch: noarch
This package contains data files for LAMMPS.
+%generate_buildrequires +cd python +%pyproject_buildrequires + %prep %if %{git} %setup -q -n %{name}-%{commit} %else %setup -q -n %{name}-%{uversion} %endif +%patch0 -p1
%build %global _vpath_srcdir cmake @@ -240,6 +245,9 @@ for mpi in '' mpich openmpi %{?el7:openmpi3} ; do test -n "${mpi}" && module unload mpi/${mpi}-%{_arch} done
+cd python +%pyproject_wheel + %install . /etc/profile.d/modules.sh
@@ -247,6 +255,10 @@ for mpi in '' mpich openmpi %{?el7:openmpi3} ; do %cmake_install done
+cd python +%pyproject_install +%pyproject_save_files lammps + %check
%global testargs --label-exclude unstable --exclude-regex '(Variables|ComputeGlobal|MolPairStyle:tip4p_long|MolPairStyle:tip4p_table|MolPairStyle:lj_cut_tip4p_table|FixTimestep:rigid_nvt|MolPairStyle:coul_slater_long|AtomicPairStyle:meam_spline|FixTimestep:addtorque_const|FixTimestep:spring_rg|FixTimestep:wall_harmonic_const)' @@ -263,6 +275,8 @@ for mpi in '' mpich openmpi %{?el7:openmpi3} ; do test -n "${mpi}" && module unload mpi/${mpi}-%{_arch} && export PYTHONPATH="${old_PYTHONPATH}" done
+%pyproject_check_import -t + %ldconfig_scriptlets
%files @@ -294,9 +308,7 @@ done %{_libdir}/mpich*/lib/pkgconfig/liblammps_mpich.pc %{_libdir}/mpich*/lib/cmake/LAMMPS
-%files -n python%{python3_pkgversion}-%{name} -%{python3_sitelib}/%{name}/ -%{python3_sitelib}/%{name}-*.egg-info +%files -n python%{python3_pkgversion}-%{name} -f %{pyproject_files}
%files headers %license LICENSE diff --git a/remove-python-package-install-from-cmake-install.patch b/remove-python-package-install-from-cmake-install.patch new file mode 100644 index 0000000..ea70d75 --- /dev/null +++ b/remove-python-package-install-from-cmake-install.patch @@ -0,0 +1,52 @@ +From a0bf63bdd5f7d705b78299027506b227c2d1cf4a Mon Sep 17 00:00:00 2001 +From: Richard Berger richard.berger@outlook.com +Date: Tue, 28 Feb 2023 20:16:47 -0700 +Subject: [PATCH] Remove python package install from CMake install + +--- + cmake/CMakeLists.txt | 29 ----------------------------- + 1 file changed, 29 deletions(-) + +diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt +index f29ff52e8a..83f43ab30f 100644 +--- a/cmake/CMakeLists.txt ++++ b/cmake/CMakeLists.txt +@@ -856,35 +856,6 @@ else() + ${CMAKE_COMMAND} -E echo "Must build LAMMPS as a shared library to use the Python module") + endif() + +-############################################################################### +-# Add LAMMPS python module to "install" target. This is taylored for building +-# LAMMPS for package managers and with different prefix settings. +-# This requires either a shared library or that the PYTHON package is included. +-############################################################################### +-if(BUILD_SHARED_LIBS OR PKG_PYTHON) +- if(CMAKE_VERSION VERSION_LESS 3.12) +- # adjust so we find Python 3 versions before Python 2 on old systems with old CMake +- set(Python_ADDITIONAL_VERSIONS 3.12 3.11 3.10 3.9 3.8 3.7 3.6) +- find_package(PythonInterp) # Deprecated since version 3.12 +- if(PYTHONINTERP_FOUND) +- set(Python_EXECUTABLE ${PYTHON_EXECUTABLE}) +- endif() +- else() +- # backward compatibility +- if(PYTHON_EXECUTABLE) +- set(Python_EXECUTABLE ${PYTHON_EXECUTABLE}) +- endif() +- find_package(Python COMPONENTS Interpreter) +- endif() +- if(Python_EXECUTABLE) +- file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/python/lib) +- file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/python/src) +- file(COPY ${LAMMPS_SOURCE_DIR}/version.h DESTINATION ${CMAKE_BINARY_DIR}/python/src) +- file(COPY ${LAMMPS_PYTHON_DIR}/README ${LAMMPS_PYTHON_DIR}/pyproject.toml ${LAMMPS_PYTHON_DIR}/setup.py ${LAMMPS_PYTHON_DIR}/lammps DESTINATION ${CMAKE_BINARY_DIR}/python/lib) +- install(CODE "if("$ENV{DESTDIR}" STREQUAL "")\n execute_process(COMMAND ${Python_EXECUTABLE} -m pip install -v ${CMAKE_BINARY_DIR}/python/lib --prefix=${CMAKE_INSTALL_PREFIX})\n else()\n execute_process(COMMAND ${Python_EXECUTABLE} -m pip install -v ${CMAKE_BINARY_DIR}/python/lib --prefix=${CMAKE_INSTALL_PREFIX} --root=$ENV{DESTDIR})\n endif()") +- endif() +-endif() +- + include(Testing) + include(CodeCoverage) + include(CodingStandard) +-- +2.39.2 +
commit f6e1630c484062feccbc827fe1b7dfb8e51bbb84 Author: Richard Berger richard.berger@outlook.com Date: Mon Feb 27 21:25:35 2023 -0700
Add missing python build dependencies
diff --git a/lammps.spec b/lammps.spec index 47ce746..a61f933 100644 --- a/lammps.spec +++ b/lammps.spec @@ -48,6 +48,9 @@ BuildRequires: mpich-devel BuildRequires: python%{python3_pkgversion}-mpi4py-mpich BuildRequires: python%{python3_pkgversion}-devel BuildRequires: python%{python3_pkgversion}-setuptools +BuildRequires: python%{python3_pkgversion}-pip +BuildRequires: python%{python3_pkgversion}-wheel +BuildRequires: python%{python3_pkgversion}-build BuildRequires: fftw3-devel BuildRequires: zlib-devel BuildRequires: gsl-devel
commit 4bcdebca9044bb0582950a20008d7520a4ffd7f7 Author: Richard Berger richard.berger@outlook.com Date: Mon Feb 20 10:58:54 2023 -0700
Version bump 20220623.3
diff --git a/2986.patch b/2986.patch deleted file mode 100644 index bb1192b..0000000 --- a/2986.patch +++ /dev/null @@ -1,91 +0,0 @@ -From 2ad136f97f97380ae8da848d3d08c78dbd01d35b Mon Sep 17 00:00:00 2001 -From: Christoph Junghans junghans@lanl.gov -Date: Tue, 5 Oct 2021 16:15:03 -0600 -Subject: [PATCH] cmake: label tests in force-styles - ---- - unittest/force-styles/CMakeLists.txt | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -diff --git a/unittest/force-styles/CMakeLists.txt b/unittest/force-styles/CMakeLists.txt -index 75e95c3bf03..28a58369c66 100644 ---- a/unittest/force-styles/CMakeLists.txt -+++ b/unittest/force-styles/CMakeLists.txt -@@ -45,6 +45,7 @@ add_executable(test_error_stats test_error_stats.cpp) - target_include_directories(test_error_stats PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${LAMMPS_SOURCE_DIR}) - target_link_libraries(test_error_stats PRIVATE GTest::GTestMain GTest::GTest) - add_test(NAME ErrorStats COMMAND test_error_stats) -+set_tests_properties(ErrorStats PROPERTIES LABELS "force-style") - - # pair style tester - add_executable(test_pair_style test_pair_style.cpp) -@@ -63,6 +64,7 @@ foreach(TEST ${MOL_PAIR_TESTS}) - string(REGEX REPLACE "^.*mol-pair-(.*).yaml" "MolPairStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_pair_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # tests for metal-like atomic systems and related pair styles -@@ -71,6 +73,7 @@ foreach(TEST ${ATOMIC_PAIR_TESTS}) - string(REGEX REPLACE "^.*atomic-pair-(.*).yaml" "AtomicPairStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_pair_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # tests for Si-like manybody systems and related pair styles -@@ -79,6 +82,7 @@ foreach(TEST ${MANYBODY_PAIR_TESTS}) - string(REGEX REPLACE "^.*manybody-pair-(.*).yaml" "ManybodyPairStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_pair_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # bond style tester -@@ -90,6 +94,7 @@ foreach(TEST ${BOND_TESTS}) - string(REGEX REPLACE "^.*bond-(.*).yaml" "BondStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_bond_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # angle style tester -@@ -101,6 +106,7 @@ foreach(TEST ${ANGLE_TESTS}) - string(REGEX REPLACE "^.*angle-(.*).yaml" "AngleStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_angle_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # kspace style tester, currently uses the pair style tool -@@ -113,6 +119,7 @@ foreach(TEST ${KSPACE_TESTS}) - string(REGEX REPLACE "^.*kspace-(.*).yaml" "KSpaceStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_pair_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # tester for timestepping fixes -@@ -128,6 +135,7 @@ foreach(TEST ${FIX_TIMESTEP_TESTS}) - string(REGEX REPLACE "^.*fix-timestep-(.*).yaml" "FixTimestep:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_fix_timestep ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:${LAMMPS_PYTHON_DIR}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # dihedral style tester -@@ -139,6 +147,7 @@ foreach(TEST ${DIHEDRAL_TESTS}) - string(REGEX REPLACE "^.*dihedral-(.*).yaml" "DihedralStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_dihedral_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() - - # improper style tester -@@ -150,4 +159,5 @@ foreach(TEST ${IMPROPER_TESTS}) - string(REGEX REPLACE "^.*improper-(.*).yaml" "ImproperStyle:\1" TNAME ${TEST}) - add_test(NAME ${TNAME} COMMAND test_improper_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}") -+ set_tests_properties(${TNAME} PROPERTIES LABELS "force-style") - endforeach() diff --git a/lammps.spec b/lammps.spec index 16774f7..47ce746 100644 --- a/lammps.spec +++ b/lammps.spec @@ -1,7 +1,6 @@ %global git 0 -%global commit 7d5fc356fefa1dd31d64b1cc856134b165febb8a +%global commit 83ba1c9d20a7370b629bbebe88238a2c3c8194b3 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global gtest_commit 8d51dc50eb7e7698427fed81b85edad0e032112e
%if 0%{?fedora} >= 33 || 0%{?rhel} >= 9 %global blaslib flexiblas @@ -14,9 +13,9 @@
Name: lammps %if %{git} -Version: 20220623^%{shortcommit} +Version: 20220623.3^%{shortcommit} %else -Version: 20220623 +Version: 20220623.3 %endif %global uversion %(v=%{version}; \ patch=${v##*.}; [[ $v = $patch ]] && patch= \ @@ -26,7 +25,7 @@ Version: 20220623 m=${v:4:2}; y=${v:0:4}; echo $([[ -z $patch ]] && echo patch || echo stable)_${d#0}${months[${m#0}]}${y}$([[ -n $patch ]] && echo _update${patch})) -Release: 4%{?dist} +Release: 1%{?dist} Summary: Molecular Dynamics Simulator License: GPLv2 Url: https://www.lammps.org/ @@ -35,11 +34,9 @@ Source0: https://github.com/lammps/lammps/archive/%%7Bcommit%7D/lammps-%%7Bcomm %else Source0: https://github.com/lammps/lammps/archive/%%7Buversion%7D.tar.gz#/%%7Bname%7D... %endif -Source1: https://github.com/google/googletest/archive/%%7Bgtest_commit%7D.tar.gz#/goo... +Source1: https://github.com/google/googletest/archive/release-1.12.1.tar.gz#/googlete... Source2: https://pyyaml.org/download/libyaml/yaml-0.2.5.tar.gz Source3: https://download.lammps.org/thirdparty/opencl-loader-2022.01.04.tar.gz -Patch0: https://github.com/lammps/lammps/commit/cf942e7d5f7af16b308a9e652cda8ccc78e2... -Patch1: https://github.com/lammps/lammps/commit/a00201c899b054923ffe9c21874aa207bc79... BuildRequires: fftw-devel BuildRequires: gcc-c++ BuildRequires: gcc-fortran @@ -94,6 +91,7 @@ designed to be easy to modify or extend with new functionality. Summary: LAMMPS Open MPI binaries and libraries Requires: openmpi Requires: %{name}-data +ExcludeArch: i686
%description openmpi %{lammps_desc} @@ -153,6 +151,7 @@ This package contains development headers and libraries for MPICH LAMMPS. Summary: Development libraries for Open MPI LAMMPS Requires: %{name}-openmpi%{?_isa} = %{version}-%{release} Requires: %{name}-headers%{?_isa} = %{version}-%{release} +ExcludeArch: i686
%description openmpi-devel %{lammps_desc} @@ -197,13 +196,13 @@ This package contains data files for LAMMPS. %else %setup -q -n %{name}-%{uversion} %endif -%patch0 -p1 -%patch1 -p1
%build %global _vpath_srcdir cmake %global _vpath_builddir ${mpi:-serial} . /etc/profile.d/modules.sh + + for mpi in '' mpich openmpi %{?el7:openmpi3} ; do test -n "${mpi}" && module load mpi/${mpi}-%{_arch} #python wrapper isn't mpi specific @@ -240,18 +239,20 @@ done
%install . /etc/profile.d/modules.sh + for mpi in '' mpich openmpi %{?el7:openmpi3} ; do %cmake_install done
%check
-%global testargs --label-exclude unstable --exclude-regex '(Variables|ComputeGlobal|MolPairStyle:tip4p_long|MolPairStyle:tip4p_table|MolPairStyle:lj_cut_tip4p_table|FixTimestep:rigid_nvt)' +%global testargs --label-exclude unstable --exclude-regex '(Variables|ComputeGlobal|MolPairStyle:tip4p_long|MolPairStyle:tip4p_table|MolPairStyle:lj_cut_tip4p_table|FixTimestep:rigid_nvt|MolPairStyle:coul_slater_long|AtomicPairStyle:meam_spline|FixTimestep:addtorque_const|FixTimestep:spring_rg|FixTimestep:wall_harmonic_const)' %ifarch ppc64le -%global testargs --label-exclude unstable --exclude-regex '(Variables|ComputeGlobal|MolPairStyle:tip4p_long|MolPairStyle:tip4p_table|MolPairStyle:lj_cut_tip4p_table|MolPairStyle:tip4p_cut|MolPairStyle:lj_cut_tip4p_cut|MolPairStyle:lj_cut_tip4p_long_soft|FixTimestep:rigid_nvt)' +%global testargs --label-exclude unstable --exclude-regex '(Variables|ComputeGlobal|MolPairStyle:tip4p_long|MolPairStyle:tip4p_table|MolPairStyle:lj_cut_tip4p_table|MolPairStyle:tip4p_cut|MolPairStyle:lj_cut_tip4p_cut|MolPairStyle:lj_cut_tip4p_long_soft|FixTimestep:rigid_nvt|MolPairStyle:coul_slater_long|AtomicPairStyle:meam_spline|FixTimestep:addtorque_const|FixTimestep:spring_rg|FixTimestep:wall_harmonic_const)' %endif
. /etc/profile.d/modules.sh + for mpi in '' mpich openmpi %{?el7:openmpi3} ; do old_PYTHONPATH="${PYTHONPATH}" test -n "${mpi}" && module load mpi/${mpi}-%{_arch} && export PYTHONPATH="${MPI_PYTHON3_SITEARCH}:${PYTHONPATH}" @@ -331,6 +332,9 @@ done %config %{_sysconfdir}/profile.d/lammps.*
%changelog +* Mon Feb 20 2023 Richard Berger richard.berger@outlook.com - 20220623.3-1` +- Version bump to 20220623.3 + * Thu Jan 19 2023 Fedora Release Engineering releng@fedoraproject.org - 20220623-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
diff --git a/sources b/sources index 9e2c201..118f298 100644 --- a/sources +++ b/sources @@ -1,6 +1,4 @@ +SHA512 (googletest-1.12.1.tar.gz) = a9104dc6c53747e36e7dd7bb93dfce51a558bd31b487a9ef08def095518e1296da140e0db263e0644d9055dbd903c0cb69380cb2322941dbfb04780ef247df9c +SHA512 (lammps-stable_23Jun2022_update3.tar.gz) = fa5c7f605cfc7d5dde847afafe298e63516a2c2d22cd434b0fc16930e3e013c5e07324b89e11130138475e1873869eb501fea9e9deac0a477ef97f774ea9e6f1 SHA512 (opencl-loader-2022.01.04.tar.gz) = cfedca22d06e547b5621eebd9a9c112ba923bd940c0e46723cf2e0a139a50bf8080c28481435b011f20e72c525e793b51d38679ebb1656375e3c14c20301d2e8 SHA512 (yaml-0.2.5.tar.gz) = dadd7d8e0d88b5ebab005e5d521d56d541580198aa497370966b98c904586e642a1cd4f3881094eb57624f218d50db77417bbfd0ffdce50340f011e35e8c4c02 -SHA512 (googletest-8d51dc50eb7e7698427fed81b85edad0e032112e.tar.gz) = f7f804abf68af5e4e6cd767151773394fb8297d7d7fc878532ebb22b8c41d13554f68fa38a27470d458b590259a939e93cee7e5f5f6de8f1726c7ce85a606099 -SHA512 (lammps-patch_23Jun2022.tar.gz) = cc02b6d8958a452f4c06c19e2e08978db9cc41e8dfe868406c847a3b1912ae113d72ad6d2bd3b0139a1a1f2f8575eb3e7ff7fef2f6472ea94476d8033d59ac1d -SHA512 (a00201c899b054923ffe9c21874aa207bc791a1a.patch) = 6c76688cb9a683faa41d795d53ffacef493f2a2c2e1dfa911c0387fda8848735903a574fa06a61e2f3113e1795a83878dbb53abee3745b81daed12d128d871d3 -SHA512 (cf942e7d5f7af16b308a9e652cda8ccc78e2d19e.patch) = a83029319a72b0871b2fc229dda2c1d20bf113f65cacbcc2b634843d121db144ec0c86468cf1e18e8df4ad6440e9bfc75a6cbfbd6d6f42fdac999d7ebf176b14
arch-excludes@lists.fedoraproject.org