From e367e4a31710722d925dbc01612c05f61460a95f Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Wed, 8 Jul 2020 09:59:52 +0000 Subject: [PATCH 01/14] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..76d00d2 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# libmysofa + +The libmysofa package \ No newline at end of file From 9059f07e45c4ce77c23289880f282db22f15287d Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 8 Jul 2020 15:19:39 +0200 Subject: [PATCH 02/14] Initial import for libmysofa --- .gitignore | 1 + libmysofa.spec | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 95 insertions(+) create mode 100644 .gitignore create mode 100644 libmysofa.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40acb68 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +libmysofa-*.tar.gz diff --git a/libmysofa.spec b/libmysofa.spec new file mode 100644 index 0000000..cc9f203 --- /dev/null +++ b/libmysofa.spec @@ -0,0 +1,93 @@ +Name: libmysofa +Version: 1.1 +Release: 1%{?dist} +Summary: C functions for reading HRTFs + +License: BSD +URL: https://github.com/hoene/libmysofa +Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz +# See https://github.com/hoene/libmysofa/pull/127 +Patch0: libmysofa-no_static.patch + +BuildRequires: cmake3 +BuildRequires: gcc +BuildRequires: gcc-c++ +BuildRequires: pkgconfig(cunit) +BuildRequires: pkgconfig(zlib) +# for tests +BuildRequires: nodejs + + +%description +This is a simple set of C functions to read AES SOFA files, if they +contain HRTFs stored according to the AES69-2015 standard. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package -n mysofa +Summary: Tools for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description -n mysofa +Tools for %{name}. + + +%prep +%autosetup -p1 + + +%build +mkdir -p build +cd build +%cmake3 \ + -DBUILD_STATIC_LIBS=OFF \ + -DCODE_COVERAGE=OFF \ + -DCMAKE_VERBOSE_MAKEFILE=ON \ + .. + +%make_build + + +%install +cd build +%make_install + + +%check +cd build +make test + + +%ldconfig_scriptlets + + +%files +%license LICENSE +%doc README.md +%{_libdir}/libmysofa.so.1* + +%files -n mysofa +%{_bindir}/mysofa2json +%dir %{_datadir}/libmysofa +%{_datadir}/libmysofa/default.sofa +%{_datadir}/libmysofa/MIT_KEMAR_normal_pinna.sofa + +%files devel +%doc CODE_OF_CONDUCT.md +%{_includedir}/mysofa.h +%{_libdir}/libmysofa.so +%{_libdir}/pkgconfig/libmysofa.pc + + +%changelog +* Mon Jun 29 2020 Nicolas Chauvet - 1.1-1 +- Update to 1.1 + +* Mon Apr 13 2020 Nicolas Chauvet - 1.0-1 +- Initial spec file diff --git a/sources b/sources new file mode 100644 index 0000000..3146b02 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (libmysofa-1.1.tar.gz) = 8feafbf447f21f3ef5a283f5f494a647dd5db47cc43af4cc26efeae9f8684c93f5aa1131d8c5570d1d7811c3e3b08763fabdfad2beff0858eeb3cb78dda22332 From bc0149a6029adbb3ba55a73fb41c0165d278ed0d Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 8 Jul 2020 15:21:56 +0200 Subject: [PATCH 03/14] Add patch --- libmysofa-no_static.patch | 87 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 libmysofa-no_static.patch diff --git a/libmysofa-no_static.patch b/libmysofa-no_static.patch new file mode 100644 index 0000000..a840252 --- /dev/null +++ b/libmysofa-no_static.patch @@ -0,0 +1,87 @@ +diff -up libmysofa-1.1/CMakeLists.txt.static libmysofa-1.1/CMakeLists.txt +--- libmysofa-1.1/CMakeLists.txt.static 2020-06-13 17:02:13.000000000 +0200 ++++ libmysofa-1.1/CMakeLists.txt 2020-07-08 10:13:45.639569055 +0200 +@@ -7,6 +7,7 @@ include(GNUInstallDirs) + + option(BUILD_TESTS "Build test programs" ON) + option(BUILD_SHARED_LIBS "Build shared library" ON) ++option(BUILD_STATIC_LIBS "Build static library" OFF) + option(CODE_COVERAGE "Enable coverage reporting" ON) + + set(CPACK_PACKAGE_DESCRIPTION "SOFA file reader for better HRTFs") +diff -up libmysofa-1.1/src/CMakeLists.txt.static libmysofa-1.1/src/CMakeLists.txt +--- libmysofa-1.1/src/CMakeLists.txt.static 2020-06-13 17:02:13.000000000 +0200 ++++ libmysofa-1.1/src/CMakeLists.txt 2020-07-08 10:18:22.885044829 +0200 +@@ -75,6 +75,7 @@ set(libsrc + hrtf/easy.c + hrtf/cache.c + resampler/speex_resampler.c) ++if(BUILD_STATIC_LIBS) + add_library(mysofa-static STATIC ${libsrc}) + target_link_libraries(mysofa-static LINK_PRIVATE ${MATH} ${ZLIB_LIBRARIES}) + set_target_properties( +@@ -83,15 +84,16 @@ set_target_properties( + ON) + install(TARGETS mysofa-static ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) + +-if(UNIX +- AND CODE_COVERAGE +- AND CMAKE_CXX_COMPILER_ID MATCHES "GNU") +- target_compile_options(mysofa-static PUBLIC -g -O0 -Wall -fprofile-arcs +- -ftest-coverage) +- if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.13) +- target_link_options(mysofa-static PUBLIC --coverage) +- else() +- target_link_libraries(mysofa-static LINK_PUBLIC gcov --coverage) ++ if(UNIX ++ AND CODE_COVERAGE ++ AND CMAKE_CXX_COMPILER_ID MATCHES "GNU") ++ target_compile_options(mysofa-static PUBLIC -g -O0 -Wall -fprofile-arcs ++ -ftest-coverage) ++ if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.13) ++ target_link_options(mysofa-static PUBLIC --coverage) ++ else() ++ target_link_libraries(mysofa-static LINK_PUBLIC gcov --coverage) ++ endif() + endif() + endif() + +@@ -137,7 +139,11 @@ install(FILES hrtf/mysofa.h DESTINATION + + if(BUILD_TESTS) + add_executable(mysofa2json tests/sofa2json.c tests/json.c) +- target_link_libraries(mysofa2json mysofa-static) ++ if(BUILD_STATIC_LIBS) ++ target_link_libraries(mysofa2json mysofa-static) ++ else() ++ target_link_libraries(mysofa2json mysofa-shared) ++ endif() + + add_executable( + external +@@ -159,7 +159,11 @@ if(BUILD_TESTS) + tests/cache.c + tests/json.c + tests/user_defined_variable.c) +- target_link_libraries(external mysofa-static ${CUNIT_LIBRARIES}) ++ if(BUILD_STATIC_LIBS) ++ target_link_libraries(external mysofa-static ${CUNIT_LIBRARIES}) ++ else() ++ target_link_libraries(external mysofa-shared ${CUNIT_LIBRARIES} m) ++ endif() + add_test( + NAME external + WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} +@@ -173,7 +177,11 @@ if(BUILD_TESTS) + COMMAND internal) + + add_executable(multithread tests/multithread.c) +- target_link_libraries(multithread mysofa-static pthread) ++ if(BUILD_STATIC_LIBS) ++ target_link_libraries(multithread mysofa-static pthread) ++ else() ++ target_link_libraries(multithread mysofa-shared pthread m) ++ endif() + add_test( + NAME multithread + WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} From d376c77356b23fc3d9091027238af079eb20d374 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 8 Jul 2020 22:19:57 +0200 Subject: [PATCH 04/14] Handle to disable tests --- libmysofa.spec | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/libmysofa.spec b/libmysofa.spec index cc9f203..a22429e 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -1,3 +1,14 @@ +# Some tests are failing: +# https://github.com/hoene/libmysofa/issues/129 +%ifarch s390x +%global _without_tests 1 +%endif +%if 0%{?el7:1} +%ifarch ppc64le +%global _without_tests 1 +%endif +%endif + Name: libmysofa Version: 1.1 Release: 1%{?dist} @@ -15,7 +26,7 @@ BuildRequires: gcc-c++ BuildRequires: pkgconfig(cunit) BuildRequires: pkgconfig(zlib) # for tests -BuildRequires: nodejs +%{?!_without_tests:BuildRequires: nodejs} %description @@ -59,9 +70,11 @@ cd build %make_install +%{?!_without_tests: %check cd build -make test +make test || (cat Testing/Temporary/LastTest.log && exit 1) +} %ldconfig_scriptlets From fd0d89c95173fe9451e55bcc8acf8e4d66a7bdf9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 05:09:48 +0000 Subject: [PATCH 05/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmysofa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmysofa.spec b/libmysofa.spec index a22429e..043de8a 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -11,7 +11,7 @@ Name: libmysofa Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C functions for reading HRTFs License: BSD @@ -99,6 +99,9 @@ make test || (cat Testing/Temporary/LastTest.log && exit 1) %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jun 29 2020 Nicolas Chauvet - 1.1-1 - Update to 1.1 From cd00693bd0cabdba226900592b841cd12f35dc72 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 04:02:50 +0000 Subject: [PATCH 06/14] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmysofa.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libmysofa.spec b/libmysofa.spec index 043de8a..ae94840 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -11,7 +11,7 @@ Name: libmysofa Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C functions for reading HRTFs License: BSD @@ -99,6 +99,10 @@ make test || (cat Testing/Temporary/LastTest.log && exit 1) %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 1.1-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From eb2f8d512448e0344cf85d8eaa5896cee138a653 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 26 Aug 2020 13:17:38 +0200 Subject: [PATCH 07/14] Fix build --- libmysofa.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libmysofa.spec b/libmysofa.spec index ae94840..c3429c7 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -1,3 +1,5 @@ +%global __cmake_in_source_build 1 + # Some tests are failing: # https://github.com/hoene/libmysofa/issues/129 %ifarch s390x From c80d946c04e3274711e27f8da108d4b0eb0d40f8 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 5 Jan 2021 02:18:12 +0000 Subject: [PATCH 08/14] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- libmysofa.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libmysofa.spec b/libmysofa.spec index c3429c7..0caf6a1 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -27,6 +27,7 @@ BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: pkgconfig(cunit) BuildRequires: pkgconfig(zlib) +BuildRequires: make # for tests %{?!_without_tests:BuildRequires: nodejs} From 0bec85c4cc3cf781044748d27443c579aa870a54 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 17:34:41 +0000 Subject: [PATCH 09/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmysofa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmysofa.spec b/libmysofa.spec index 0caf6a1..4342650 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -13,7 +13,7 @@ Name: libmysofa Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C functions for reading HRTFs License: BSD @@ -102,6 +102,9 @@ make test || (cat Testing/Temporary/LastTest.log && exit 1) %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering - 1.1-3 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 90a4de47d4e164cb6c5afc14262260b78fc6874f Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 8 Feb 2021 22:33:42 +0100 Subject: [PATCH 10/14] Update to 1.2 --- libmysofa.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/libmysofa.spec b/libmysofa.spec index 4342650..8c65dad 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -12,7 +12,7 @@ %endif Name: libmysofa -Version: 1.1 +Version: 1.2 Release: 4%{?dist} Summary: C functions for reading HRTFs @@ -102,6 +102,9 @@ make test || (cat Testing/Temporary/LastTest.log && exit 1) %changelog +* Mon Feb 08 2021 Nicolas Chauvet - 1.2-4 +- Update to 1.2 + * Tue Jan 26 2021 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 3146b02..fea7da5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libmysofa-1.1.tar.gz) = 8feafbf447f21f3ef5a283f5f494a647dd5db47cc43af4cc26efeae9f8684c93f5aa1131d8c5570d1d7811c3e3b08763fabdfad2beff0858eeb3cb78dda22332 +SHA512 (libmysofa-1.2.tar.gz) = 5d6f46b8c3a9c464db25fbb2cda1f7172429f4ac79d95d29396edcb49312cf80fdfc0d46132745892b502be142f80e70126c7bae5891c1423b19bde7df0e8a56 From 9a817750d024bfa7ac8cf6e2c0efcb51e208d100 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 8 Feb 2021 22:39:27 +0100 Subject: [PATCH 11/14] Drop patch --- libmysofa-no_static.patch | 87 --------------------------------------- libmysofa.spec | 2 - 2 files changed, 89 deletions(-) delete mode 100644 libmysofa-no_static.patch diff --git a/libmysofa-no_static.patch b/libmysofa-no_static.patch deleted file mode 100644 index a840252..0000000 --- a/libmysofa-no_static.patch +++ /dev/null @@ -1,87 +0,0 @@ -diff -up libmysofa-1.1/CMakeLists.txt.static libmysofa-1.1/CMakeLists.txt ---- libmysofa-1.1/CMakeLists.txt.static 2020-06-13 17:02:13.000000000 +0200 -+++ libmysofa-1.1/CMakeLists.txt 2020-07-08 10:13:45.639569055 +0200 -@@ -7,6 +7,7 @@ include(GNUInstallDirs) - - option(BUILD_TESTS "Build test programs" ON) - option(BUILD_SHARED_LIBS "Build shared library" ON) -+option(BUILD_STATIC_LIBS "Build static library" OFF) - option(CODE_COVERAGE "Enable coverage reporting" ON) - - set(CPACK_PACKAGE_DESCRIPTION "SOFA file reader for better HRTFs") -diff -up libmysofa-1.1/src/CMakeLists.txt.static libmysofa-1.1/src/CMakeLists.txt ---- libmysofa-1.1/src/CMakeLists.txt.static 2020-06-13 17:02:13.000000000 +0200 -+++ libmysofa-1.1/src/CMakeLists.txt 2020-07-08 10:18:22.885044829 +0200 -@@ -75,6 +75,7 @@ set(libsrc - hrtf/easy.c - hrtf/cache.c - resampler/speex_resampler.c) -+if(BUILD_STATIC_LIBS) - add_library(mysofa-static STATIC ${libsrc}) - target_link_libraries(mysofa-static LINK_PRIVATE ${MATH} ${ZLIB_LIBRARIES}) - set_target_properties( -@@ -83,15 +84,16 @@ set_target_properties( - ON) - install(TARGETS mysofa-static ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) - --if(UNIX -- AND CODE_COVERAGE -- AND CMAKE_CXX_COMPILER_ID MATCHES "GNU") -- target_compile_options(mysofa-static PUBLIC -g -O0 -Wall -fprofile-arcs -- -ftest-coverage) -- if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.13) -- target_link_options(mysofa-static PUBLIC --coverage) -- else() -- target_link_libraries(mysofa-static LINK_PUBLIC gcov --coverage) -+ if(UNIX -+ AND CODE_COVERAGE -+ AND CMAKE_CXX_COMPILER_ID MATCHES "GNU") -+ target_compile_options(mysofa-static PUBLIC -g -O0 -Wall -fprofile-arcs -+ -ftest-coverage) -+ if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.13) -+ target_link_options(mysofa-static PUBLIC --coverage) -+ else() -+ target_link_libraries(mysofa-static LINK_PUBLIC gcov --coverage) -+ endif() - endif() - endif() - -@@ -137,7 +139,11 @@ install(FILES hrtf/mysofa.h DESTINATION - - if(BUILD_TESTS) - add_executable(mysofa2json tests/sofa2json.c tests/json.c) -- target_link_libraries(mysofa2json mysofa-static) -+ if(BUILD_STATIC_LIBS) -+ target_link_libraries(mysofa2json mysofa-static) -+ else() -+ target_link_libraries(mysofa2json mysofa-shared) -+ endif() - - add_executable( - external -@@ -159,7 +159,11 @@ if(BUILD_TESTS) - tests/cache.c - tests/json.c - tests/user_defined_variable.c) -- target_link_libraries(external mysofa-static ${CUNIT_LIBRARIES}) -+ if(BUILD_STATIC_LIBS) -+ target_link_libraries(external mysofa-static ${CUNIT_LIBRARIES}) -+ else() -+ target_link_libraries(external mysofa-shared ${CUNIT_LIBRARIES} m) -+ endif() - add_test( - NAME external - WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} -@@ -173,7 +177,11 @@ if(BUILD_TESTS) - COMMAND internal) - - add_executable(multithread tests/multithread.c) -- target_link_libraries(multithread mysofa-static pthread) -+ if(BUILD_STATIC_LIBS) -+ target_link_libraries(multithread mysofa-static pthread) -+ else() -+ target_link_libraries(multithread mysofa-shared pthread m) -+ endif() - add_test( - NAME multithread - WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} diff --git a/libmysofa.spec b/libmysofa.spec index 8c65dad..16d2e83 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -19,8 +19,6 @@ Summary: C functions for reading HRTFs License: BSD URL: https://github.com/hoene/libmysofa Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz -# See https://github.com/hoene/libmysofa/pull/127 -Patch0: libmysofa-no_static.patch BuildRequires: cmake3 BuildRequires: gcc From b5007268c1ea09e225bb35804a9d64624a3a06a1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 11:54:43 +0000 Subject: [PATCH 12/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmysofa.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmysofa.spec b/libmysofa.spec index 16d2e83..1c87997 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -13,7 +13,7 @@ Name: libmysofa Version: 1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C functions for reading HRTFs License: BSD @@ -100,6 +100,9 @@ make test || (cat Testing/Temporary/LastTest.log && exit 1) %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Mon Feb 08 2021 Nicolas Chauvet - 1.2-4 - Update to 1.2 From 2602093d4fc850f2beb76245be018f362d75dc43 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 6 Dec 2021 23:22:41 +0100 Subject: [PATCH 13/14] Update to 1.2.1 --- libmysofa.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libmysofa.spec b/libmysofa.spec index 1c87997..4caed78 100644 --- a/libmysofa.spec +++ b/libmysofa.spec @@ -12,8 +12,8 @@ %endif Name: libmysofa -Version: 1.2 -Release: 5%{?dist} +Version: 1.2.1 +Release: 1%{?dist} Summary: C functions for reading HRTFs License: BSD @@ -100,6 +100,9 @@ make test || (cat Testing/Temporary/LastTest.log && exit 1) %changelog +* Mon Dec 06 2021 Nicolas Chauvet - 1.2.1-1 +- Update to 1.2.1 + * Thu Jul 22 2021 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index fea7da5..8641e39 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libmysofa-1.2.tar.gz) = 5d6f46b8c3a9c464db25fbb2cda1f7172429f4ac79d95d29396edcb49312cf80fdfc0d46132745892b502be142f80e70126c7bae5891c1423b19bde7df0e8a56 +SHA512 (libmysofa-1.2.1.tar.gz) = 2058c94cd09aeeabe40975edd320d7447bd9e535108f32b2a5305c023c7bf89f0c2f44df182390b7e4be8f6ffc9b09c2e35817896bb5e63d3ec9f1bd5b7e972c From 8729893ae36e36b26691d9b6704b19a4d68fac8b Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:12:33 +0300 Subject: [PATCH 14/14] Remove unnecessary files --- README.md | 3 --- sources | 1 - 2 files changed, 4 deletions(-) delete mode 100644 README.md delete mode 100644 sources diff --git a/README.md b/README.md deleted file mode 100644 index 76d00d2..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# libmysofa - -The libmysofa package \ No newline at end of file diff --git a/sources b/sources deleted file mode 100644 index 8641e39..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (libmysofa-1.2.1.tar.gz) = 2058c94cd09aeeabe40975edd320d7447bd9e535108f32b2a5305c023c7bf89f0c2f44df182390b7e4be8f6ffc9b09c2e35817896bb5e63d3ec9f1bd5b7e972c