public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Orphaned Packages Process <packaging-reports@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/grantlee-qt5] rawhide: Orphaned for 6+ weeks
Date: Fri, 11 Sep 2026 21:37:18 GMT	[thread overview]
Message-ID: <178916263825.1.11864048363287159243.rpms-grantlee-qt5-8dff0c9bcff9@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/grantlee-qt5
Branch : rawhide
Commit : 8dff0c9bcff98aec87b8a869bd594ff5f2eb6ba1
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date   : 2026-09-11T16:37:10-05:00
Stats  : +1/-398 in 7 file(s)
URL    : https://src.fedoraproject.org/rpms/grantlee-qt5/c/8dff0c9bcff98aec87b8a869bd594ff5f2eb6ba1?branch=rawhide

Log:
Orphaned for 6+ weeks

---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index bbcd005..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-/grantlee-5.0.0.tar.gz
-/grantlee-5.1.0.tar.gz
-/grantlee-5.2.0.tar.gz
-/grantlee-5.3.1.tar.gz

diff --git a/0001-Remove-template-id-in-constructor-of-template-class.patch b/0001-Remove-template-id-in-constructor-of-template-class.patch
deleted file mode 100644
index 7f633ab..0000000
--- a/0001-Remove-template-id-in-constructor-of-template-class.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-taken from https://github.com/steveire/grantlee/pull/93
-
-From 261bfe75d718abfc537ddcebfe805df01c33ab3a Mon Sep 17 00:00:00 2001
-From: Pino Toscano <toscano.pino@tiscali.it>
-Date: Sat, 25 Apr 2026 10:21:47 +0200
-Subject: [PATCH] Remove template-id in constructor of template class
-
-It was not required, and it is invalid now in C++ 20.
-
----
- templates/defaulttags/cycle.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/templates/defaulttags/cycle.h b/templates/defaulttags/cycle.h
-index 936c2a2..a917555 100644
---- a/templates/defaulttags/cycle.h
-+++ b/templates/defaulttags/cycle.h
-@@ -40,9 +40,9 @@ Cycles endlessly over elements.
- template <typename T> class RingIterator
- {
- public:
--  RingIterator<T>() {}
-+  RingIterator() {}
- 
--  RingIterator<T>(const QList<T> &list)
-+  RingIterator(const QList<T> &list)
-       : m_begin(list.constBegin()), m_it(list.constBegin()),
-         m_end(list.constEnd())
-   {
--- 
-2.54.0
-

diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5204a84
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Orphaned for 6+ weeks

diff --git a/grantlee-5.2.0-install_headers_into_versioned_directory.patch b/grantlee-5.2.0-install_headers_into_versioned_directory.patch
deleted file mode 100644
index 8d6ce77..0000000
--- a/grantlee-5.2.0-install_headers_into_versioned_directory.patch
+++ /dev/null
@@ -1,80 +0,0 @@
-From 9dfa187569e4c9c4e72ace60c051cbfa79434d77 Mon Sep 17 00:00:00 2001
-From: Troy Dawson <tdawson@redhat.com>
-Date: Fri, 14 Feb 2020 13:43:27 -0800
-Subject: [PATCH] install headers into versioned directory
-
----
- CMakeLists.txt                  | 1 +
- templates/lib/CMakeLists.txt    | 6 ++++--
- textdocument/lib/CMakeLists.txt | 8 ++++++--
- 3 files changed, 11 insertions(+), 4 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 20edcdc..8df3dd6 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -80,6 +80,7 @@ set (LIB_SUFFIX "" CACHE STRING "Define suffix of library directory name (eg. '6
- 
- set( LIB_INSTALL_DIR lib${LIB_SUFFIX} )
- set( PLUGIN_INSTALL_DIR ${LIB_INSTALL_DIR}/grantlee/${Grantlee5_MAJOR_MINOR_VERSION_STRING} )
-+set( INCLUDE_INSTALL_DIR include/Grantlee5 )
- 
- # set up RPATH/install_name_dir
- set( CMAKE_INSTALL_NAME_DIR ${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR})
-diff --git a/templates/lib/CMakeLists.txt b/templates/lib/CMakeLists.txt
-index 5058481..c4262f3 100644
---- a/templates/lib/CMakeLists.txt
-+++ b/templates/lib/CMakeLists.txt
-@@ -106,6 +106,8 @@ if (Qt5Qml_FOUND)
-   )
- endif()
- 
-+target_include_directories(Grantlee_Templates INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}>")
-+
- if (BUILD_TESTS)
-   set(GRANTLEE_TESTS_EXPORT "GRANTLEE_TEMPLATES_EXPORT")
- endif()
-@@ -152,10 +154,10 @@ install(FILES
-   token.h
-   util.h
-   variable.h
--  DESTINATION include/grantlee COMPONENT Templates
-+  DESTINATION ${INCLUDE_INSTALL_DIR}/grantlee COMPONENT Templates
- )
- 
- install(FILES
-   grantlee_templates.h
--  DESTINATION include COMPONENT Templates
-+  DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Templates
- )
-diff --git a/textdocument/lib/CMakeLists.txt b/textdocument/lib/CMakeLists.txt
-index 2c5a96f..bf56052 100644
---- a/textdocument/lib/CMakeLists.txt
-+++ b/textdocument/lib/CMakeLists.txt
-@@ -35,6 +35,10 @@ if (CMAKE_GENERATOR MATCHES "Visual Studio")
-   endforeach()
- endif()
- 
-+target_include_directories(Grantlee_TextDocument
-+    INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}>"
-+)
-+
- target_link_libraries(Grantlee_TextDocument
-   PUBLIC Qt5::Gui
- )
-@@ -59,10 +63,10 @@ install(FILES
-   texthtmlbuilder.h
-   mediawikimarkupbuilder.h
-   ${CMAKE_CURRENT_BINARY_DIR}/grantlee_textdocument_export.h
--  DESTINATION include/grantlee COMPONENT TextDocument
-+  DESTINATION ${INCLUDE_INSTALL_DIR}/grantlee COMPONENT TextDocument
- )
- 
- install(FILES
-   grantlee_textdocument.h
--  DESTINATION include COMPONENT TextDocument
-+  DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT TextDocument
- )
--- 
-2.24.1
-

diff --git a/grantlee-qt5.spec b/grantlee-qt5.spec
deleted file mode 100644
index 53a3e4d..0000000
--- a/grantlee-qt5.spec
+++ /dev/null
@@ -1,269 +0,0 @@
-
-%define apidocs 1
-
-Name:    grantlee-qt5
-Summary: Qt5 string template engine based on the Django template system
-Version: 5.3.1
-Release: 11%{?dist}
-
-# Automatically converted from old format: LGPLv2+ - review is highly recommended.
-License: LicenseRef-Callaway-LGPLv2+
-URL:     https://github.com/steveire/grantlee
-Source0: http://downloads.grantlee.org/grantlee-%{version}%{?pre:-%{pre}}.tar.gz
-Patch:   0001-Remove-template-id-in-constructor-of-template-class.patch
-
-%global rpm_macros_dir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
-Source1: macros.grantlee5
-%global grantlee5_plugins 5.3
-%global grantlee5_plugindir %{_libdir}/grantlee/%{grantlee5_plugins}/
-Provides: %{name}(%{grantlee5_plugins}) = %{version}-%{release}
-
-## upstreamable patches
-# Install headers into a versioned directory to be parallel-installable
-# based on:
-# https://github.com/steveire/grantlee/pull/1
-#Patch1: grantlee-5.2.0-install_headers_into_versioned_directory.patch
-
-BuildRequires: cmake >= 2.8.12
-BuildRequires: gcc-c++
-BuildRequires: cmake(Qt5Gui)
-BuildRequires: cmake(Qt5Qml)
-BuildRequires: cmake(Qt5LinguistTools)
-BuildRequires: cmake(Qt5Test)
-%if 0%{?apidocs}
-BuildRequires: doxygen
-BuildRequires: graphviz
-%endif
-## for %%check
-BuildRequires: xorg-x11-server-Xvfb
-
-%description
-Grantlee is a plug-in based String Template system written
-using the Qt framework. The goals of the project are to make it easier for
-application developers to separate the structure of documents from the
-data they contain, opening the door for theming.
-
-The syntax is intended to follow the syntax of the Django template system,
-and the design of Django is reused in Grantlee.
-
-Part of the design of both is that application developers can extend
-the syntax by implementing their own tags and filters. For details of
-how to do that, see the API documentation.
-
-For template authors, different applications using Grantlee will present
-the same interface and core syntax for creating new themes. For details of
-how to write templates, see the documentation.
-
-%package devel
-Summary: Development files for %{name}
-Requires: %{name}%{?_isa} = %{version}-%{release}
-# without versioning patch above, conflicts with older kde4 grantlee-devel
-# no biggie, only one pkg in distro depends on kde4 grantlee -- rex
-Conflicts: grantlee-devel
-%description devel
-The %{name}-devel package contains libraries and header files for
-developing applications that use %{name}.
-
-%package apidocs
-Summary: Grantlee API documentation
-Requires: kde-filesystem
-BuildArch: noarch
-%description apidocs
-This package includes the Grantlee API documentation in HTML
-format for easy browsing.
-
-
-%prep
-%autosetup -n grantlee-%{version} -p1
-
-%build
-%cmake \
-  -DBUILD_TESTS:BOOL=OFF \
-  -DCMAKE_BUILD_TYPE=release
-
-%cmake_build
-
-%if 0%{?apidocs}
-cd %{__cmake_builddir}
-ninja-build docs
-%endif
-
-
-%install
-%cmake_install
-
-%if 0%{?apidocs}
-mkdir -p %{buildroot}%{_docdir}/HTML/en/Grantlee5/
-cp -prf %{__cmake_builddir}/apidox/* %{buildroot}%{_docdir}/HTML/en/Grantlee5/
-%endif
-
-# rpm macros
-install -p -m644 -D %{SOURCE1} \
-  %{buildroot}%{rpm_macros_dir}/macros.grantlee5
-sed -i \
-  -e "s|@@NAME@@|%{name}|g" \
-  -e "s|@@EPOCH@@|%{?epoch}%{!?epoch:0}|g" \
-  -e "s|@@VERSION@@|%{version}|g" \
-  -e "s|@@EVR@@|%{?epoch:%{epoch:}}%{version}-%{release}|g" \
-  -e "s|@@GRANTLEE5_PLUGINS@@|%{grantlee5_plugins}|g" \
-  -e "s|@@GRANTLEE5_PLUGINDIR@@|%{grantlee5_plugindir}|g" \
-  %{buildroot}%{rpm_macros_dir}/macros.grantlee5
-
-
-%check
-#export CTEST_OUTPUT_ON_FAILURE=1
-#xvfb-run -a make test -C %{__cmake_builddir} ||:
-
-
-%ldconfig_scriptlets
-
-%files
-%license COPYING.LIB
-%doc AUTHORS CHANGELOG README.md
-%{_libdir}/libGrantlee_Templates.so.5*
-%{_libdir}/libGrantlee_TextDocument.so.5*
-%dir %{_libdir}/grantlee/
-%{grantlee5_plugindir}/
-
-%files devel
-%{_includedir}/grantlee/
-%{_includedir}/grantlee_templates.h
-%{_includedir}/grantlee_textdocument.h
-%{_libdir}/libGrantlee_Templates.so
-%{_libdir}/libGrantlee_TextDocument.so
-%{_libdir}/cmake/Grantlee5/
-%{rpm_macros_dir}/macros.grantlee5
-
-%if 0%{?apidocs}
-%files apidocs
-%{_docdir}/HTML/en/Grantlee5/
-%endif
-
-
-%changelog
-* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-11
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
-
-* Fri Jun 19 2026 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 5.3.1-10
-- Make it build again. Closes #2434636
-
-* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Mon Sep 02 2024 Miroslav Suchý <msuchy@redhat.com> - 5.3.1-6
-- convert license to SPDX
-
-* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Tue Mar 21 2023 Jan Grulich <jgrulich@redhat.com> - 5.3.1-1
-- 5.3.1
-
-* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-14
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-13
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-12
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-11
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Mon Feb 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-10
-- disable autotests, fixes FTBFS (#1923556)
-
-* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Mon Sep 07 2020 Than Ngo <than@redhat.com> - 5.2.0-9
-- use cmake macro
-
-* Tue Aug 11 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-8
-- FTBFS, define %__cmake_in_source_build until we have time to port to new cmake macros
-
-* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-7
-- Second attempt - Rebuilt for
-  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Mon Mar 02 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-5
-- BR: Qt5Qml, use cmake-style Qt5 deps
-
-* Mon Feb 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-4
-- drop problematic versioned includes patch
-
-* Fri Feb 14 2020 Troy Dawson <tdawson@redhat.com> - 5.2.0-3
-- Fix templates multiversion include directory
-
-* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Tue Jan 28 2020 Troy Dawson <tdawson@redhat.com> - 5.2.0-1
-- Update to 5.2.0
-
-* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-12
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-11
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Thu Jun 28 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.1.0-9
-- use %%make_build %%ldconfig_scriptlets
-
-* Tue Feb 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.1.0-8
-- BR: gcc-c++
-
-* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
-
-* Mon Aug 07 2017 Björn Esser <besser82@fedoraproject.org> - 5.1.0-6
-- Rebuilt for AutoReq cmake-filesystem
-
-* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
-
-* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
-
-* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Wed Aug 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.1.0-2
-- macros.grantlee5: notably, %%{grantlee5_plugindir} %%{grantlee5_requires}
-
-* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.1.0-1
-- grantlee-5.1.0
-
-* Fri Feb 19 2016 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-4
-- grantlee-qt5: FTBFS in rawhide (#1307592)
-
-* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Sat Aug 08 2015 Rex Dieter <rdieter@fedoraproject.org>  5.0.0-2
-- update URL
-
-* Thu May 28 2015 Rex Dieter <rdieter@fedoraproject.org>  5.0.0-1
-- grantlee-5.0.0

diff --git a/macros.grantlee5 b/macros.grantlee5
deleted file mode 100644
index 1bf87d1..0000000
--- a/macros.grantlee5
+++ /dev/null
@@ -1,12 +0,0 @@
-%grantlee5 @@NAME@@
-%grantlee5_epoch @@EPOCH@@
-%grantlee5_version @@VERSION@@
-%grantlee5_evr @@EVR@@
-
-%grantlee5_plugins @@GRANTLEE5_PLUGINS@@ 
-%grantlee5_plugindir @@GRANTLEE5_PLUGINDIR@@
-
-%grantlee5_requires \
-Requires: %{grantlee5}(%{grantlee5_plugins}) \
-%{nil}
-

diff --git a/sources b/sources
deleted file mode 100644
index f999d44..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (grantlee-5.3.1.tar.gz) = dc7192fe0553954fffc3e2c584e4fdd80fc1f22d25846cacc5f2dcd1db2673ca62464c8492a4ed3bfc9dfc3e62ef13322809dd29bd56fa4a3a153a8d373ddde5

                 reply	other threads:[~2026-09-11 21:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178916263825.1.11864048363287159243.rpms-grantlee-qt5-8dff0c9bcff9@fedoraproject.org \
    --to=packaging-reports@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox