Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (bec56d33a724d5e4b99aa213b9470d3caee95c83)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (bec56d33a724d5e4b99aa213b9470d3caee95c83)
  • Date: Sun, 20 Sep 2026 18:13:01 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

net/gerbera/DETAILS | 4 -
net/gerbera/HISTORY | 4 +
net/gerbera/PRE_BUILD | 4 -
net/gerbera/patches/0001-missing-headers.patch | 72
-------------------------
4 files changed, 6 insertions(+), 78 deletions(-)

New commits:
commit bec56d33a724d5e4b99aa213b9470d3caee95c83
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

net/gerbera: version 3.3.0

diff --git a/net/gerbera/DETAILS b/net/gerbera/DETAILS
index 2af27f1..ad004d0 100755
--- a/net/gerbera/DETAILS
+++ b/net/gerbera/DETAILS
@@ -1,7 +1,7 @@
. "${GRIMOIRE}/CMAKE_FUNCTIONS"
SPELL=gerbera
- VERSION=3.2.1
-
SOURCE_HASH="sha512:f1f4b44174e0d43ae90b65515ea02b93b09241300a58d134b04e374c97154d10de69ec02ff8e03775131a2b337d8186da9fbc08c8b0219b498ebd549a40a6ec3"
+ VERSION=3.3.0
+
SOURCE_HASH="sha512:6349e2fd2f9cab213de84d6f6188e23c387c5866bc31c9ca00af731f0e029ef01a78a02398a4014b8db046c6a27d64fbb28b6dd14de2be2aaf44ce4ac47f2af8"
SOURCE="${SPELL}-${VERSION}.tar.gz"

SOURCE_URL[0]="https://github.com/${SPELL}/${SPELL}/archive/v${VERSION}.tar.gz";
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
diff --git a/net/gerbera/HISTORY b/net/gerbera/HISTORY
index 4f28b89..4929d3a 100644
--- a/net/gerbera/HISTORY
+++ b/net/gerbera/HISTORY
@@ -1,3 +1,7 @@
+2026-09-20 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: version 3.3.0
+ * PRE_BUILD, patches/0001-missing-headers.patch: dropped, not needed
anymore
+
2026-06-20 Pavel Vinogradov <public AT sourcemage.org>
* PRE_BUILD, patches/0001-missing-headers.patch: added patch to fix
missing
headers build errors
diff --git a/net/gerbera/PRE_BUILD b/net/gerbera/PRE_BUILD
deleted file mode 100755
index 6c5c8c9..0000000
--- a/net/gerbera/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd "${SOURCE_DIRECTORY}" &&
-
-apply_patch_dir "patches"
diff --git a/net/gerbera/patches/0001-missing-headers.patch
b/net/gerbera/patches/0001-missing-headers.patch
deleted file mode 100644
index 4890c0d..0000000
--- a/net/gerbera/patches/0001-missing-headers.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-diff --git a/src/exceptions.h b/src/exceptions.h
-index 180e63a..aa137e0 100644
---- a/src/exceptions.h
-+++ b/src/exceptions.h
-@@ -35,6 +35,7 @@
- #define __EXCEPTIONS_H__
-
- #include <fmt/core.h>
-+#include <fmt/format.h>
- #include <stdexcept>
- #include <string>
-
-diff --git a/src/util/logger.h b/src/util/logger.h
-index 6519d88..9458481 100644
---- a/src/util/logger.h
-+++ b/src/util/logger.h
-@@ -40,6 +40,7 @@
- #endif
- #include <spdlog/spdlog.h>
- #include <type_traits>
-+#include <cstring>
-
- #ifdef GRBDEBUG
- #include <array>
-diff --git a/src/util/thread_runner.h b/src/util/thread_runner.h
-index a2e55f8..08dbc8b 100644
---- a/src/util/thread_runner.h
-+++ b/src/util/thread_runner.h
-@@ -36,6 +36,7 @@
- #include <mutex>
- #include <pthread.h>
- #include <thread>
-+#include <cstring>
-
- using ThreadProc = std::function<void(void* target)>;
-
-diff --git a/src/util/url_utils.h b/src/util/url_utils.h
-index 4ab8ace..6365623 100644
---- a/src/util/url_utils.h
-+++ b/src/util/url_utils.h
-@@ -28,6 +28,7 @@
- #include <string_view>
- #include <utility>
- #include <vector>
-+#include <cstring>
-
- // URL FORMATTING CONSTANTS
- constexpr auto URL_PARAM_SEPARATOR = std::string_view("/");
-diff --git a/src/iohandler/mem_io_handler.h b/src/iohandler/mem_io_handler.h
-index 3e29aa7..71e09c1 100644
---- a/src/iohandler/mem_io_handler.h
-+++ b/src/iohandler/mem_io_handler.h
-@@ -37,6 +37,7 @@
- #include "io_handler.h"
-
- #include <string>
-+#include <cstring>
-
- /// @brief Allows the web server to read from a memory buffer instead of a
file.
- class MemIOHandler : public IOHandler {
-diff --git a/src/database/search_handler.h b/src/database/search_handler.h
-index ac5afb1..30181e0 100644
---- a/src/database/search_handler.h
-+++ b/src/database/search_handler.h
-@@ -33,6 +33,7 @@
-
- #include <algorithm>
- #include <fmt/core.h>
-+#include <fmt/format.h>
- #include <map>
- #include <memory>
- #include <tuple>


  • [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (bec56d33a724d5e4b99aa213b9470d3caee95c83), Pavel Vinogradov, 09/20/2026

Archive powered by MHonArc 2.6.24.

Top of Page