public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/xournalpp] f43: Merge branch 'rawhide' into f43
@ 2026-08-11 15:45 Luya Tshimbalanga
  0 siblings, 0 replies; 2+ messages in thread
From: Luya Tshimbalanga @ 2026-08-11 15:45 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xournalpp
Branch : f43
Commit : 6c65840692f3f1e29b3bde3d8f9ce0ab840147a8
Author : Luya Tshimbalanga <luya@fedoraproject.org>
Date   : 2026-08-11T08:44:29-07:00
Stats  : +3/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xournalpp/c/6c65840692f3f1e29b3bde3d8f9ce0ab840147a8?branch=f43

Log:
Merge branch 'rawhide' into f43

---
diff --git a/.gitignore b/.gitignore
index 6059c29..3c82a5f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,3 +24,4 @@
 /xournalpp-1.3.4.tar.gz
 /xournalpp-1.3.5.tar.gz
 /xournalpp-1.3.6.tar.gz
+/xournalpp-1.3.7.tar.gz

diff --git a/sources b/sources
index bf8ddfc..8ad1f7c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xournalpp-1.3.6.tar.gz) = 8530920b197343a80607e44759bf46f3deb274781de0509e30e49a9728896e3d96e7749f0e7025fdabb4be3969146d26ede215583ac1fb67043d73476fd00d89
+SHA512 (xournalpp-1.3.7.tar.gz) = 119f11d9a6a22c616b104b559a56fa960047a898e016c22987d44fadcae5659896f7d7ecb110b86bd3bce8d5bdfb5b78849233e96bfa3905b6c750ce80ea3c5d

diff --git a/xournalpp.spec b/xournalpp.spec
index 2071c61..c2389af 100644
--- a/xournalpp.spec
+++ b/xournalpp.spec
@@ -12,7 +12,7 @@
 %global forgeurl https://github.com/xournalpp/xournalpp
 
 Name:           xournalpp
-Version:        1.3.6
+Version:        1.3.7
 Release:        %autorelease
 Summary:        Handwriting note-taking software with PDF annotation support
 License:        GPL-2.0-or-later

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [rpms/xournalpp] f43: Merge branch 'rawhide' into f43
@ 2026-07-15  0:26 Luya Tshimbalanga
  0 siblings, 0 replies; 2+ messages in thread
From: Luya Tshimbalanga @ 2026-07-15  0:26 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xournalpp
Branch : f43
Commit : 836e8ce07341637a6815e79d189dd9f5d0f5795d
Author : Luya Tshimbalanga <luya@fedoraproject.org>
Date   : 2026-07-14T17:25:40-07:00
Stats  : +12/-3 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xournalpp/c/836e8ce07341637a6815e79d189dd9f5d0f5795d?branch=f43

Log:
Merge branch 'rawhide' into f43

---
diff --git a/.gitignore b/.gitignore
index 4831843..6059c29 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,4 @@
 /xournalpp-1.3.3.tar.gz
 /xournalpp-1.3.4.tar.gz
 /xournalpp-1.3.5.tar.gz
+/xournalpp-1.3.6.tar.gz

diff --git a/sources b/sources
index c94c393..bf8ddfc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xournalpp-1.3.5.tar.gz) = 0906cbf40ec9b12493c1b021ca3dd7fa123934b4cd97a36a78960d3af38fbec25b8097a9d9a1610e392132caeac40e34065b87b769872f93afa999b08ac8724d
+SHA512 (xournalpp-1.3.6.tar.gz) = 8530920b197343a80607e44759bf46f3deb274781de0509e30e49a9728896e3d96e7749f0e7025fdabb4be3969146d26ede215583ac1fb67043d73476fd00d89

diff --git a/xournalpp.spec b/xournalpp.spec
index 7516510..2071c61 100644
--- a/xournalpp.spec
+++ b/xournalpp.spec
@@ -1,11 +1,18 @@
 %bcond cppunit  1
 %bcond gtest 1
 %bcond profiling 1
+
+# qpdf is not available with the required version on RHEL ≤ 9
+%if 0%{?rhel} && 0%{?rhel} <= 9
+%bcond qpdf 0
+%else
 %bcond qpdf 1
+%endif
+
 %global forgeurl https://github.com/xournalpp/xournalpp
 
 Name:           xournalpp
-Version:        1.3.5
+Version:        1.3.6
 Release:        %autorelease
 Summary:        Handwriting note-taking software with PDF annotation support
 License:        GPL-2.0-or-later
@@ -78,7 +85,8 @@ This package contains user interface resources for %{name}.
     -DCMAKE_BUILD_TYPE="Release" \
     -DDISTRO_CODENAME="Fedora Linux" \
     -DENABLE_GTEST=%{with gtest} \
-    -DENABLE_PROFILING=%{with profiling}
+    -DENABLE_PROFILING=%{with profiling} \
+    -DENABLE_QPDF=%{with qpdf}
 
 %cmake_build
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-08-11 15:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-11 15:45 [rpms/xournalpp] f43: Merge branch 'rawhide' into f43 Luya Tshimbalanga
  -- strict thread matches above, loose matches on Subject: below --
2026-07-15  0:26 Luya Tshimbalanga

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox