sm-commit AT lists.ibiblio.org
Subject: Source Mage code commit list
List archive
[[SM-Commit] ] GIT changes to master grimoire by Justin Boffemmyer (bcb03ee97fb1d7a82a3ca8f58b34ea3effb53f9d)
- From: Justin Boffemmyer <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 Justin Boffemmyer (bcb03ee97fb1d7a82a3ca8f58b34ea3effb53f9d)
- Date: Wed, 2 Apr 2025 12:32:52 +0000
GIT changes to master grimoire by Justin Boffemmyer <flux AT sourcemage.org>:
devel/doxygen/BUILD | 14 -
devel/doxygen/CONFIGURE | 3
devel/doxygen/DEPENDS | 40 ++-
devel/doxygen/DETAILS | 24 +-
devel/doxygen/HISTORY | 8
devel/doxygen/PRE_BUILD | 3
devel/doxygen/patches/0001-Adjust-to-libfmt-11-changes.patch | 117
-----------
7 files changed, 54 insertions(+), 155 deletions(-)
New commits:
commit bcb03ee97fb1d7a82a3ca8f58b34ea3effb53f9d
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>
devel/doxygen: 1.13.2
diff --git a/devel/doxygen/BUILD b/devel/doxygen/BUILD
index b621581..3f72712 100755
--- a/devel/doxygen/BUILD
+++ b/devel/doxygen/BUILD
@@ -1,10 +1,14 @@
-OPTS+=" $ENGLISH_ONLY" &&
-OPTS+=' -DGIT_EXECUTABLE=/bin/false' && # Don't try to use Git during build
-if is_depends_enabled $SPELL qt6base; then
+. "$GRIMOIRE/build_system_handler.function" &&
+
+OPTS="$OPTS $ENGLISH_ONLY" &&
+OPTS="$OPTS -DGIT_EXECUTABLE=/bin/false" && # Don't try to use Git during
build
+
+if is_depends_enabled "$SPELL" qt6base ;then
PATH="$QT6DIR/bin/:$PATH"
fi &&
-if is_depends_enabled $SPELL fmt;then
- export CXXFLAGS+=' -DSPDLOG_FMT_EXTERNAL=ON'
+
+if is_depends_enabled "$SPELL" fmt ;then
+ export CXXFLAGS="$CXXFLAGS -DSPDLOG_FMT_EXTERNAL=ON"
fi &&
cmake_build
diff --git a/devel/doxygen/CONFIGURE b/devel/doxygen/CONFIGURE
index 0525d8f..58c5f87 100755
--- a/devel/doxygen/CONFIGURE
+++ b/devel/doxygen/CONFIGURE
@@ -1,2 +1,3 @@
source $GRIMOIRE/CMAKE_CONFIGURE &&
-config_query_option ENGLISH_ONLY "only support English documents?" y "
-Denglish_only=1" ""
+
+config_query_option ENGLISH_ONLY "only support English documents?" y
"-Denglish_only=1" ""
diff --git a/devel/doxygen/DEPENDS b/devel/doxygen/DEPENDS
index a77daab..24d7027 100755
--- a/devel/doxygen/DEPENDS
+++ b/devel/doxygen/DEPENDS
@@ -1,23 +1,27 @@
-source $GRIMOIRE/CMAKE_DEPENDS &&
-depends bison &&
-depends flex &&
-depends perl &&
-depends PYTHON &&
-depends -sub CXX gcc &&
+. "$GRIMOIRE/build_system_handler.function" &&
+. "$GRIMOIRE/CMAKE_DEPENDS" &&
-optional_depends graphviz \
- "" \
- "" \
- "for graphical charts" &&
+buildsys_depends bison &&
+buildsys_depends flex &&
+buildsys_depends perl &&
+buildsys_depends PYTHON &&
+buildsys_depends -sub CXX gcc &&
-optional_depends texlive \
- "" \
- "" \
- "for generating LaTeX, Postscript, and PDF output" &&
+buildsys_optional_depends graphviz \
+ "for graphical charts" \
+ "" \
+ "" &&
+
+buildsys_optional_depends texlive \
+ "for generating LaTeX, Postscript, and PDF output"
\
+ "" \
+ "" &&
+
+buildsys_optional_depends -o build_wizard QT "for DoxyWizard GUI" &&
+buildsys_optional_depends -o use_sys_spdlog spdlog "use system spdlog" &&
-optional_depends QT ' -Dbuild_wizard=1' '' 'for DoxyWizard GUI' &&
-optional_depends spdlog -Duse_sys_spdlog=ON -Duse_sys_spdlog=OFF 'use system
spdlog' &&
if is_depends_enabled $SPELL spdlog;then
- depends fmt
+ buildsys_depends fmt
fi &&
-optional_depends sqlite -Duse_sys_sqlite3=ON -Duse_sys_sqlite3=OFF 'use
system sqlite'
+
+buildsys_optional_depends -o use_sys_sqlite3 sqlite "use system sqlite"
diff --git a/devel/doxygen/DETAILS b/devel/doxygen/DETAILS
index 470f7f1..a3b24e5 100755
--- a/devel/doxygen/DETAILS
+++ b/devel/doxygen/DETAILS
@@ -1,14 +1,16 @@
- SPELL=doxygen
- VERSION=1.12.0
-
SOURCE_HASH=sha512:e407e29c5e232e1f8dca291dd2d00b1dd400be709400225339408fad2cd758563b69f290cbd7c0efeb76b1335c4672fb1d6d580b9e6ed570708cf9b7d78951b1
- SOURCE=$SPELL-$VERSION.src.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=https://doxygen.nl/files/$SOURCE
- WEB_SITE=https://www.doxygen.org/
- LICENSE[0]=GPL
- ENTERED=20020310
- KEYWORDS="java devel"
- SHORT="Documentation system for C++, Java, IDL and C"
+ SPELL=doxygen
+ VERSION=1.13.2
+
SOURCE_HASH=sha512:7b6b3285706e10c0b27230503b83cc669aec83ebc3ef9cc1087d5e36118fd726a5368d567dd553ba01acf4d739cdbb41c5e66af4541fc8e51effbbdaa241c812
+ SOURCE=$SPELL-$VERSION.src.tar.gz
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=https://doxygen.nl/files/$SOURCE
+# Watch: https://github.com/doxygen/doxygen/tags tags/v([0-9.]+)[.]tar
+SPELL_BUILD_SYSTEM=cmake
+ WEB_SITE=https://www.doxygen.org/
+ LICENSE[0]=GPL
+ ENTERED=20020310
+ KEYWORDS="java devel"
+ SHORT="Documentation system for C++, Java, IDL and C"
cat << EOF
Doxygen can generate an on-line documentation browser (in HTML) and/or
an off-line reference manual (in LaTeX) from a set of [un]documented
diff --git a/devel/doxygen/HISTORY b/devel/doxygen/HISTORY
index 24b1e35..7ce0697 100644
--- a/devel/doxygen/HISTORY
+++ b/devel/doxygen/HISTORY
@@ -1,3 +1,11 @@
+2025-04-02 Justin Boffemmyer <flux AT sourcemage.org>
+ * BUILD: formatting, comply with grimoire policy for variables
+ * DETAILS: updated spell to 1.13.2, add watch line, define build
system
+ * DEPENDS: convert to buildsys
+ * PRE_BUILD: remove, no longer needed
+ * patches/0001-Adjust-to-libfmt-11-changes.patch: remove, patch no
+ longer applies
+
2024-12-27 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 1.12.0
* BUILD: avoid using git
diff --git a/devel/doxygen/PRE_BUILD b/devel/doxygen/PRE_BUILD
deleted file mode 100755
index c230ad1..0000000
--- a/devel/doxygen/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-apply_patch_dir patches
diff --git a/devel/doxygen/patches/0001-Adjust-to-libfmt-11-changes.patch
b/devel/doxygen/patches/0001-Adjust-to-libfmt-11-changes.patch
deleted file mode 100644
index 3a38929..0000000
--- a/devel/doxygen/patches/0001-Adjust-to-libfmt-11-changes.patch
+++ /dev/null
@@ -1,117 +0,0 @@
-From 567aca983f70b01103271e431bc71a13ac79213c Mon Sep 17 00:00:00 2001
-From: Alfred Wingate <parona AT protonmail.com>
-Date: Fri, 9 Aug 2024 03:00:05 +0300
-Subject: [PATCH] Adjust to libfmt-11 changes
-
-Bug: https://bugs.gentoo.org/937599
-See-Also:
https://github.com/fmtlib/fmt/commit/d70729215fba1d54862e407b626abf86ddf409bf
-Signed-off-by: Alfred Wingate <parona AT protonmail.com>
-Upstream-Status: Backport
-Signed-off-by: Ismael Luceno <ismael AT sourcemage.org>
----
- src/trace.h | 22 +++++++++++-----------
- 1 file changed, 11 insertions(+), 11 deletions(-)
-
-diff --git a/src/trace.h b/src/trace.h
-index 13a816650d7..8062e0b19ef 100644
---- a/src/trace.h
-+++ b/src/trace.h
-@@ -156,7 +156,7 @@ namespace fmt { template<typename T> struct formatter
{}; }
- //! adds support for formatting QCString
- template<> struct fmt::formatter<QCString> : formatter<std::string>
- {
-- auto format(const QCString &c, format_context& ctx) {
-+ auto format(const QCString &c, format_context& ctx) const {
- return formatter<std::string>::format(c.str(), ctx);
- }
- };
-@@ -164,7 +164,7 @@ template<> struct fmt::formatter<QCString> :
formatter<std::string>
- //! adds support for formatting Protected
- template<> struct fmt::formatter<Protection> : formatter<std::string>
- {
-- auto format(Protection prot, format_context& ctx) {
-+ auto format(Protection prot, format_context& ctx) const {
- std::string result="Unknown";
- switch (prot)
- {
-@@ -180,7 +180,7 @@ template<> struct fmt::formatter<Protection> :
formatter<std::string>
- //! adds support for formatting Specifier
- template<> struct fmt::formatter<Specifier> : formatter<std::string>
- {
-- auto format(Specifier spec, format_context& ctx) {
-+ auto format(Specifier spec, format_context& ctx) const {
- std::string result="Unknown";
- switch (spec)
- {
-@@ -195,7 +195,7 @@ template<> struct fmt::formatter<Specifier> :
formatter<std::string>
- //! adds support for formatting MethodTypes
- template<> struct fmt::formatter<MethodTypes> : formatter<std::string>
- {
-- auto format(MethodTypes mtype, format_context& ctx) {
-+ auto format(MethodTypes mtype, format_context& ctx) const {
- std::string result="Unknown";
- switch (mtype)
- {
-@@ -213,7 +213,7 @@ template<> struct fmt::formatter<MethodTypes> :
formatter<std::string>
- //! adds support for formatting RelatesType
- template<> struct fmt::formatter<RelatesType> : formatter<std::string>
- {
-- auto format(RelatesType type, format_context& ctx) {
-+ auto format(RelatesType type, format_context& ctx) const {
- std::string result="Unknown";
- switch (type)
- {
-@@ -228,7 +228,7 @@ template<> struct fmt::formatter<RelatesType> :
formatter<std::string>
- //! adds support for formatting RelationShip
- template<> struct fmt::formatter<Relationship> : formatter<std::string>
- {
-- auto format(Relationship relation, format_context& ctx) {
-+ auto format(Relationship relation, format_context& ctx) const {
- std::string result="Unknown";
- switch (relation)
- {
-@@ -243,7 +243,7 @@ template<> struct fmt::formatter<Relationship> :
formatter<std::string>
- //! adds support for formatting SrcLangExt
- template<> struct fmt::formatter<SrcLangExt> : formatter<std::string>
- {
-- auto format(SrcLangExt lang, format_context& ctx) {
-+ auto format(SrcLangExt lang, format_context& ctx) const {
- std::string result="Unknown";
- switch (lang)
- {
-@@ -273,7 +273,7 @@ template<> struct fmt::formatter<SrcLangExt> :
formatter<std::string>
- //! adds support for formatting MemberType
- template<> struct fmt::formatter<MemberType> : formatter<std::string>
- {
-- auto format(MemberType mtype, format_context& ctx) {
-+ auto format(MemberType mtype, format_context& ctx) const {
- std::string result="Unknown";
- switch (mtype)
- {
-@@ -301,7 +301,7 @@ template<> struct fmt::formatter<MemberType> :
formatter<std::string>
- //! adds support for formatting TypeSpecifier
- template<> struct fmt::formatter<TypeSpecifier> : formatter<std::string>
- {
-- auto format(TypeSpecifier type, format_context& ctx) {
-+ auto format(TypeSpecifier type, format_context& ctx) const {
- return formatter<std::string>::format(type.to_string(),ctx);
- }
- };
-@@ -309,7 +309,7 @@ template<> struct fmt::formatter<TypeSpecifier> :
formatter<std::string>
- //! adds support for formatting EntryType
- template<> struct fmt::formatter<EntryType> : formatter<std::string>
- {
-- auto format(EntryType type, format_context& ctx) {
-+ auto format(EntryType type, format_context& ctx) const {
- return formatter<std::string>::format(type.to_string(),ctx);
- }
- };
-@@ -317,7 +317,7 @@ template<> struct fmt::formatter<EntryType> :
formatter<std::string>
- //! adds support for formatting MemberListType
- template<> struct fmt::formatter<MemberListType> : formatter<std::string>
- {
-- auto format(MemberListType type, format_context& ctx) {
-+ auto format(MemberListType type, format_context& ctx) const {
- return formatter<std::string>::format(type.to_string(),ctx);
- }
- };
- [[SM-Commit] ] GIT changes to master grimoire by Justin Boffemmyer (bcb03ee97fb1d7a82a3ca8f58b34ea3effb53f9d), Justin Boffemmyer, 04/02/2025
Archive powered by MHonArc 2.6.24.