Compare commits
No commits in common. "rawhide" and "f21" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
/lucene++-3.0.7.tar.gz
|
||||
/lucene++-3.0.6.tar.gz
|
||||
|
@ -1,78 +0,0 @@
|
||||
From 972c9cb37457c70530610c22a5f3ff68adf3bd5b Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Va=CC=81clav=20Slavi=CC=81k?= <vaclav@slavik.io>
|
||||
Date: Tue, 3 Feb 2015 18:22:25 +0100
|
||||
Subject: [PATCH 1/6] Fix FSDirectory::sync() to sync writes to disk
|
||||
|
||||
Contrary to the documentation, FSDirectory::sync() conversion to C++
|
||||
omitted the most important line of the Java original: actually fsyncing
|
||||
the file descriptor. As the result, its current code amounts to little
|
||||
more than a little nonsensical noop dance.
|
||||
|
||||
Add the missing fsync() call. Use fsync() on Unix, its
|
||||
FlushFileBuffers() equivalent on Windows, and F_FULLFSYNC on OS X where
|
||||
fsync() is documented as not always sufficient. F_FULLFSYNC is more
|
||||
expensive than fsync(), but guarantees physical write; SQLite uses it
|
||||
too.
|
||||
---
|
||||
src/core/store/FSDirectory.cpp | 25 +++++++++++++++++++++----
|
||||
1 file changed, 21 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/core/store/FSDirectory.cpp b/src/core/store/FSDirectory.cpp
|
||||
index 82b5736..2cb257a 100644
|
||||
--- a/src/core/store/FSDirectory.cpp
|
||||
+++ b/src/core/store/FSDirectory.cpp
|
||||
@@ -5,7 +5,6 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "LuceneInc.h"
|
||||
-#include <boost/filesystem/fstream.hpp>
|
||||
#include "FSDirectory.h"
|
||||
#include "NativeFSLockFactory.h"
|
||||
#include "SimpleFSDirectory.h"
|
||||
@@ -14,6 +13,15 @@
|
||||
#include "FileUtils.h"
|
||||
#include "StringUtils.h"
|
||||
|
||||
+#if defined(_WIN32)
|
||||
+ #include <windows.h>
|
||||
+#elif defined(__APPLE__)
|
||||
+ #include <fcntl.h>
|
||||
+#else
|
||||
+ #include <unistd.h>
|
||||
+#endif
|
||||
+#include <boost/iostreams/device/file_descriptor.hpp>
|
||||
+
|
||||
extern "C"
|
||||
{
|
||||
#include "../util/md5/md5.h"
|
||||
@@ -148,15 +156,24 @@ void FSDirectory::sync(const String& name) {
|
||||
bool success = false;
|
||||
|
||||
for (int32_t retryCount = 0; retryCount < 5; ++retryCount) {
|
||||
- boost::filesystem::ofstream syncFile;
|
||||
+ boost::iostreams::file_descriptor syncFile;
|
||||
try {
|
||||
- syncFile.open(path, std::ios::binary | std::ios::in | std::ios::out);
|
||||
+ syncFile.open(boost::filesystem::path(path));
|
||||
} catch (...) {
|
||||
}
|
||||
|
||||
if (syncFile.is_open()) {
|
||||
+ boost::iostreams::file_descriptor::handle_type fd = syncFile.handle();
|
||||
+#if defined(_WIN32)
|
||||
+ bool ok = ::FlushFileBuffers(fd) != 0;
|
||||
+#elif defined(__APPLE__)
|
||||
+ bool ok = fcntl(fd, F_FULLFSYNC) == 0;
|
||||
+#else
|
||||
+ bool ok = fsync(fd) == 0;
|
||||
+#endif
|
||||
syncFile.close();
|
||||
- success = true;
|
||||
+ if (ok)
|
||||
+ success = true;
|
||||
break;
|
||||
}
|
||||
|
||||
--
|
||||
2.3.6
|
||||
|
@ -1,25 +0,0 @@
|
||||
From a02e5b6d422191a3674b13f1becf9c2ec90e83a5 Mon Sep 17 00:00:00 2001
|
||||
From: gbjbaanb <gbjbaanb@users.sourceforce.net>
|
||||
Date: Tue, 24 Mar 2015 15:17:28 +0000
|
||||
Subject: [PATCH 2/6] minor fix to allow full lines to be input to demo queries
|
||||
|
||||
---
|
||||
src/demo/searchfiles/main.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/demo/searchfiles/main.cpp b/src/demo/searchfiles/main.cpp
|
||||
index de4d303..748003c 100644
|
||||
--- a/src/demo/searchfiles/main.cpp
|
||||
+++ b/src/demo/searchfiles/main.cpp
|
||||
@@ -265,7 +265,7 @@ int main(int argc, char* argv[]) {
|
||||
}
|
||||
} else {
|
||||
std::wcout << L"Enter query: ";
|
||||
- std::wcin >> line;
|
||||
+ getline(std::wcin, line);
|
||||
}
|
||||
boost::trim(line);
|
||||
|
||||
--
|
||||
2.3.6
|
||||
|
@ -1,25 +0,0 @@
|
||||
From 229f783749283d1ec2bed4593805f7a8458ab819 Mon Sep 17 00:00:00 2001
|
||||
From: "Uwe L. Korn" <uwelk@xhochy.com>
|
||||
Date: Mon, 6 Apr 2015 16:48:16 +0200
|
||||
Subject: [PATCH 5/6] Use maxSize of BooleanQuery as base for the queue size
|
||||
|
||||
---
|
||||
src/core/search/FuzzyQuery.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/core/search/FuzzyQuery.cpp b/src/core/search/FuzzyQuery.cpp
|
||||
index 5291995..38e1bf2 100644
|
||||
--- a/src/core/search/FuzzyQuery.cpp
|
||||
+++ b/src/core/search/FuzzyQuery.cpp
|
||||
@@ -83,7 +83,7 @@ QueryPtr FuzzyQuery::rewrite(const IndexReaderPtr& reader) {
|
||||
}
|
||||
|
||||
int32_t maxSize = BooleanQuery::getMaxClauseCount();
|
||||
- ScoreTermQueuePtr stQueue(newLucene<ScoreTermQueue>(1024));
|
||||
+ ScoreTermQueuePtr stQueue(newLucene<ScoreTermQueue>(maxSize + 1));
|
||||
FilteredTermEnumPtr enumerator(getEnum(reader));
|
||||
LuceneException finally;
|
||||
try {
|
||||
--
|
||||
2.3.6
|
||||
|
@ -1,54 +0,0 @@
|
||||
From dd6ba769ea8b411d6e09720dfe7f38d027d8f8fc Mon Sep 17 00:00:00 2001
|
||||
From: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
|
||||
Date: Tue, 28 Apr 2015 09:31:35 +0200
|
||||
Subject: [PATCH 6/6] Fix packageconfig path. Rationale: LIB_DESTINATION is set
|
||||
as CMAKE_INSTALL_FULL_LIBDIR. So repeating "{prefix}" results in a double
|
||||
usr/usr inclusion
|
||||
|
||||
---
|
||||
liblucene++-contrib.pc.cmake | 4 ++--
|
||||
liblucene++.pc.cmake | 4 ++--
|
||||
2 files changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/liblucene++-contrib.pc.cmake b/liblucene++-contrib.pc.cmake
|
||||
index 98b6381..21026e0 100644
|
||||
--- a/liblucene++-contrib.pc.cmake
|
||||
+++ b/liblucene++-contrib.pc.cmake
|
||||
@@ -1,13 +1,13 @@
|
||||
prefix=@CMAKE_INSTALL_PREFIX@
|
||||
exec_prefix=${prefix}/bin
|
||||
-libdir=${prefix}/@LIB_DESTINATION@
|
||||
+libdir=@LIB_DESTINATION@
|
||||
includedir=${prefix}/include/lucene++
|
||||
lib=lucene++-contrib
|
||||
|
||||
Name: liblucene++-contrib
|
||||
Description: Contributions for Lucene++ - a C++ search engine, ported from the popular Apache Lucene
|
||||
Version: @lucene++_VERSION@
|
||||
-Libs: -L${prefix}/@LIB_DESTINATION@ -l${lib}
|
||||
+Libs: -L@LIB_DESTINATION@ -l${lib}
|
||||
Cflags: -I${includedir}
|
||||
Requires: liblucene++ = @lucene++_VERSION@
|
||||
|
||||
diff --git a/liblucene++.pc.cmake b/liblucene++.pc.cmake
|
||||
index c526d4a..32d16ad 100644
|
||||
--- a/liblucene++.pc.cmake
|
||||
+++ b/liblucene++.pc.cmake
|
||||
@@ -1,12 +1,12 @@
|
||||
prefix=@CMAKE_INSTALL_PREFIX@
|
||||
exec_prefix=${prefix}/bin
|
||||
-libdir=${prefix}/@LIB_DESTINATION@
|
||||
+libdir=@LIB_DESTINATION@
|
||||
includedir=${prefix}/include/lucene++
|
||||
lib=lucene++
|
||||
|
||||
Name: liblucene++
|
||||
Description: Lucene++ - a C++ search engine, ported from the popular Apache Lucene
|
||||
Version: @lucene++_VERSION@
|
||||
-Libs: -L${prefix}/@LIB_DESTINATION@ -l${lib}
|
||||
+Libs: -L@LIB_DESTINATION@ -l${lib}
|
||||
Cflags: -I${includedir}
|
||||
|
||||
--
|
||||
2.3.6
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- LucenePlusPlus-rel_3.0.7/include/VariantUtils.h~ 2015-08-05 17:03:05.196684008 +0100
|
||||
+++ LucenePlusPlus-rel_3.0.7/include/VariantUtils.h 2015-08-05 17:03:08.230687346 +0100
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
template <typename TYPE, typename VAR>
|
||||
static TYPE get(VAR var) {
|
||||
- return var.type() == typeid(TYPE) ? boost::get<TYPE>(var) : TYPE();
|
||||
+ return var.type() == typeid(TYPE) ? boost::relaxed_get<TYPE>(var) : TYPE();
|
||||
}
|
||||
|
||||
template <typename TYPE, typename VAR>
|
44
lucene++-3.0.6-fix_installing_headers.patch
Normal file
44
lucene++-3.0.6-fix_installing_headers.patch
Normal file
@ -0,0 +1,44 @@
|
||||
From 994f03cf736229044a168835ae7387696041658f Mon Sep 17 00:00:00 2001
|
||||
From: rezso <rezso@example.com>
|
||||
Date: Mon, 19 May 2014 09:20:40 +0100
|
||||
Subject: [PATCH] fix installing lucene++ headers in 3.0.6
|
||||
Upstream: committed
|
||||
References: https://github.com/luceneplusplus/LucenePlusPlus/commit/994f03cf736229044a168835ae7387696041658f
|
||||
|
||||
---
|
||||
CMakeLists.txt | 8 ++++++++
|
||||
src/core/CMakeLists.txt | 2 +-
|
||||
2 files changed, 9 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: LucenePlusPlus-rel_3.0.6/CMakeLists.txt
|
||||
===================================================================
|
||||
--- LucenePlusPlus-rel_3.0.6.orig/CMakeLists.txt 2014-04-19 19:26:40.000000000 +0100
|
||||
+++ LucenePlusPlus-rel_3.0.6/CMakeLists.txt 2014-10-18 10:54:14.000000000 +0100
|
||||
@@ -138,6 +138,14 @@ if(NOT WIN32)
|
||||
DESTINATION ${LIB_DESTINATION}/pkgconfig)
|
||||
endif()
|
||||
|
||||
+#################################
|
||||
+# install Config.h
|
||||
+#################################
|
||||
+install(
|
||||
+ FILES
|
||||
+ "${CMAKE_CURRENT_BINARY_DIR}/include/Config.h"
|
||||
+ DESTINATION include/lucene++)
|
||||
+
|
||||
####################################
|
||||
# custom targets
|
||||
####################################
|
||||
Index: LucenePlusPlus-rel_3.0.6/src/core/CMakeLists.txt
|
||||
===================================================================
|
||||
--- LucenePlusPlus-rel_3.0.6.orig/src/core/CMakeLists.txt 2014-04-19 19:26:40.000000000 +0100
|
||||
+++ LucenePlusPlus-rel_3.0.6/src/core/CMakeLists.txt 2014-10-18 10:54:14.000000000 +0100
|
||||
@@ -20,7 +20,7 @@ file(GLOB_RECURSE lucene_internal_header
|
||||
)
|
||||
|
||||
file(GLOB_RECURSE lucene_headers
|
||||
- include/*.h
|
||||
+ "${lucene++_SOURCE_DIR}/include/*.h"
|
||||
)
|
||||
|
||||
add_definitions(-DLPP_BUILDING_LIB)
|
28
lucene++-3.0.6-multiarch.patch
Normal file
28
lucene++-3.0.6-multiarch.patch
Normal file
@ -0,0 +1,28 @@
|
||||
From fcdcf1945f0325c8dfdcdfa03ae8af5247602e6e Mon Sep 17 00:00:00 2001
|
||||
From: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
|
||||
Date: Wed, 2 Jul 2014 17:20:57 +0200
|
||||
Subject: [PATCH] enable multiarch lib location
|
||||
References: https://github.com/luceneplusplus/LucenePlusPlus/commit/4c533e7f87ce6032284c44d12e022dc2498b49df
|
||||
Uptream: committed
|
||||
|
||||
Cherry picked from ubuntu lucene++ package
|
||||
---
|
||||
CMakeLists.txt | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 6ae96b7..4b74427 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -75,9 +75,10 @@ set(lucene_boost_libs
|
||||
|
||||
include(Lucene++Docs)
|
||||
include(TestCXXAcceptsFlag)
|
||||
+include(GNUInstallDirs)
|
||||
|
||||
set(LIB_DESTINATION
|
||||
- "lib" CACHE STRING "Define lib output directory name"
|
||||
+ "${CMAKE_INSTALL_FULL_LIBDIR}" CACHE STRING "Define lib output directory name"
|
||||
)
|
||||
|
||||
if(ENABLE_CYCLIC_CHECK)
|
71
lucene++-3.0.6-pc_files_fix.patch
Normal file
71
lucene++-3.0.6-pc_files_fix.patch
Normal file
@ -0,0 +1,71 @@
|
||||
From c5ed014df578f2be4c48ac8e6f09d6450d1a2a03 Mon Sep 17 00:00:00 2001
|
||||
From: rezso <rezso@example.com>
|
||||
Date: Mon, 19 May 2014 09:23:35 +0100
|
||||
Subject: [PATCH] lucene++ .pc files fix
|
||||
Upstream: Committed:
|
||||
References: https://github.com/luceneplusplus/LucenePlusPlus/commit/c5ed014df578f2be4c48ac8e6f09d6450d1a2a03
|
||||
|
||||
Without this patch, liblucene++-contrib.pc contains:
|
||||
> Requires: liblucene++=3.0.6
|
||||
|
||||
Which breaks pkg-config:
|
||||
> $ pkg-config --libs liblucene++-contrib
|
||||
> Package liblucene++=3.0.6 was not found in the pkg-config search path.
|
||||
> Perhaps you should add the directory containing `liblucene++=3.0.6.pc'
|
||||
> to the PKG_CONFIG_PATH environment variable
|
||||
> Package 'liblucene++=3.0.6', required by 'liblucene++-contrib', not found
|
||||
|
||||
The correct line is:
|
||||
> Requires: liblucene++ = 3.0.6
|
||||
|
||||
Which returns correctly:
|
||||
> $ pkg-config --libs liblucene++-contrib
|
||||
> -L/usr/lib/ -llucene++-contrib -llucene++
|
||||
|
||||
---
|
||||
liblucene++-contrib.pc.cmake | 7 +++----
|
||||
liblucene++.pc.cmake | 5 ++---
|
||||
2 files changed, 5 insertions(+), 7 deletions(-)
|
||||
|
||||
Index: LucenePlusPlus-rel_3.0.6/liblucene++-contrib.pc.cmake
|
||||
===================================================================
|
||||
--- LucenePlusPlus-rel_3.0.6.orig/liblucene++-contrib.pc.cmake 2014-10-19 19:13:45.000000000 +0100
|
||||
+++ LucenePlusPlus-rel_3.0.6/liblucene++-contrib.pc.cmake 2014-10-19 19:18:37.000000000 +0100
|
||||
@@ -1,14 +1,13 @@
|
||||
prefix=@CMAKE_INSTALL_PREFIX@
|
||||
exec_prefix=${prefix}/bin
|
||||
-libdir=@LIB_DESTINATION@
|
||||
+libdir=@LIB_INSTALL_DIR@
|
||||
includedir=${prefix}/include/lucene++
|
||||
lib=lucene++-contrib
|
||||
|
||||
Name: liblucene++-contrib
|
||||
Description: Contributions for Lucene++ - a C++ search engine, ported from the popular Apache Lucene
|
||||
Version: @lucene++_VERSION@
|
||||
-Libs: -L@LIB_DESTINATION@/ -l${lib}
|
||||
+Libs: -L@LIB_INSTALL_DIR@ -l${lib}
|
||||
Cflags: -I${includedir}
|
||||
-Requires: liblucene++=@lucene++_VERSION@
|
||||
-~
|
||||
+Requires: liblucene++ = @lucene++_VERSION@
|
||||
|
||||
Index: LucenePlusPlus-rel_3.0.6/liblucene++.pc.cmake
|
||||
===================================================================
|
||||
--- LucenePlusPlus-rel_3.0.6.orig/liblucene++.pc.cmake 2014-10-19 19:13:45.000000000 +0100
|
||||
+++ LucenePlusPlus-rel_3.0.6/liblucene++.pc.cmake 2014-10-19 19:18:19.000000000 +0100
|
||||
@@ -1,13 +1,12 @@
|
||||
prefix=@CMAKE_INSTALL_PREFIX@
|
||||
exec_prefix=${prefix}/bin
|
||||
-libdir=@LIB_DESTINATION@
|
||||
+libdir=@LIB_INSTALL_DIR@
|
||||
includedir=${prefix}/include/lucene++
|
||||
lib=lucene++
|
||||
|
||||
Name: liblucene++
|
||||
Description: Lucene++ - a C++ search engine, ported from the popular Apache Lucene
|
||||
Version: @lucene++_VERSION@
|
||||
-Libs: -L@LIB_DESTINATION@ -l${lib}
|
||||
+Libs: -L@LIB_INSTALL_DIR@ -l${lib}
|
||||
Cflags: -I${includedir}
|
||||
-~
|
||||
|
155
lucene++.spec
155
lucene++.spec
@ -1,24 +1,19 @@
|
||||
|
||||
Name: lucene++
|
||||
Summary: A high-performance, full-featured text search engine written in C++
|
||||
Version: 3.0.7
|
||||
Release: 38%{?dist}
|
||||
Version: 3.0.6
|
||||
Release: 1%{?dist}
|
||||
|
||||
License: ASL 2.0 or LGPLv3+
|
||||
Url: https://github.com/luceneplusplus/LucenePlusPlus
|
||||
Source: https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
|
||||
## upstream patches
|
||||
Patch1: 0001-Fix-FSDirectory-sync-to-sync-writes-to-disk.patch
|
||||
Patch2: 0002-minor-fix-to-allow-full-lines-to-be-input-to-demo-qu.patch
|
||||
Patch5: 0005-Use-maxSize-of-BooleanQuery-as-base-for-the-queue-si.patch
|
||||
Patch6: 0006-Fix-packageconfig-path.patch
|
||||
Patch7: 0007-boost-1.58-variant.patch
|
||||
|
||||
Patch1: lucene++-3.0.6-pc_files_fix.patch
|
||||
Patch2: lucene++-3.0.6-fix_installing_headers.patch
|
||||
Patch3: lucene++-3.0.6-multiarch.patch
|
||||
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: cmake >= 2.8.6
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: subversion
|
||||
|
||||
@ -33,23 +28,33 @@ Development files for lucene++, a high-performance, full-featured text search en
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n LucenePlusPlus-rel_%{version}
|
||||
%setup -q -n LucenePlusPlus-rel_%{version}
|
||||
|
||||
%patch1 -p1 -b .pc_files_fix
|
||||
%patch2 -p1 -b .fix_installing_headers
|
||||
%patch3 -p1 -b .multiarch
|
||||
|
||||
|
||||
%build
|
||||
%cmake -DCMAKE_BUILD_TYPE:String="release"
|
||||
%cmake_build --target lucene++ lucene++-contrib
|
||||
mkdir %{_target_platform}
|
||||
pushd %{_target_platform}
|
||||
%cmake .. \
|
||||
-DCMAKE_BUILD_TYPE:String="release"
|
||||
|
||||
make %{?_smp_mflags} lucene++ lucene++-contrib
|
||||
popd
|
||||
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
|
||||
|
||||
|
||||
%ldconfig_scriptlets
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc COPYING APACHE.license GPL.license LGPL.license
|
||||
%doc AUTHORS README* REQUESTS
|
||||
%license COPYING APACHE.license GPL.license LGPL.license
|
||||
%{_libdir}/liblucene++.so.0*
|
||||
%{_libdir}/liblucene++.so.%{version}
|
||||
%{_libdir}/liblucene++-contrib.so.0*
|
||||
@ -64,124 +69,6 @@ Development files for lucene++, a high-performance, full-featured text search en
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-38
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Mon Feb 20 2023 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-37
|
||||
- Rebuilt for Boost 1.81
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-36
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-35
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed May 04 2022 Thomas Rodgers <trodgers@redhat.com> - 3.0.7-34
|
||||
- Rebuilt for Boost 1.78
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-33
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Aug 06 2021 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-32
|
||||
- Rebuilt for Boost 1.76
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-31
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Mar 30 2021 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-30
|
||||
- Rebuilt for removed libstdc++ symbol (#1937698)
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jan 22 2021 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-28
|
||||
- Rebuilt for Boost 1.75
|
||||
|
||||
* Tue Aug 04 2020 Wolfgang Stöggl <c72578@yahoo.de> - 3.0.7-27
|
||||
- Use %%cmake_build and %%cmake_install macros to fix FTBFS (#1864096)
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-26
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu May 28 2020 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-24
|
||||
- Rebuilt for Boost 1.73
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jan 25 2019 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-20
|
||||
- Rebuilt for Boost 1.69
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Mar 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.0.7-18
|
||||
- BR: gcc-c++, use %%license %%make_build
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Jan 23 2018 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-16
|
||||
- Rebuilt for Boost 1.66
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2017 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-13
|
||||
- Rebuilt for s390x binutils bug
|
||||
|
||||
* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-12
|
||||
- Rebuilt for Boost 1.64
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-10
|
||||
- Rebuilt for Boost 1.63
|
||||
|
||||
* Tue May 17 2016 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-9
|
||||
- Rebuilt for linker errors in boost (#1331983)
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.7-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-7
|
||||
- Rebuilt for Boost 1.60
|
||||
|
||||
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-6
|
||||
- Rebuilt for Boost 1.59
|
||||
|
||||
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 3.0.7-5
|
||||
- Patch for changes to Boost.Variant in Boost 1.58
|
||||
|
||||
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.7-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
|
||||
|
||||
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 3.0.7-3
|
||||
- rebuild for Boost 1.58
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Apr 29 2015 Rex Dieter <rdieter@fedoraproject.org> 3.0.7-1
|
||||
- 3.0.7
|
||||
|
||||
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 3.0.6-2
|
||||
- Rebuild for boost 1.57.0
|
||||
|
||||
* Wed Nov 05 2014 Rex Dieter <rdieter@fedoraproject.org> 3.0.6-1
|
||||
- fedora-ize opensuse .spec
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user