From 0ee7098c4566f6d03a37519b11ceb5dbf4ff7e95 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Mon, 21 Oct 2024 18:03:55 -0700 Subject: [PATCH 01/10] Initial import --- .gitignore | 1 + sources | 1 + xournalpp.spec | 112 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 114 insertions(+) create mode 100644 .gitignore create mode 100644 sources create mode 100644 xournalpp.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f2dfbf8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/xournalpp-1.2.4.tar.gz diff --git a/sources b/sources new file mode 100644 index 0000000..f0eeb0e --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (xournalpp-1.2.4.tar.gz) = 45f09757f8dba67f64d53cd05c400bd563e5168eb24d1a0b5a4c407427dc4427adf54d22c5cae6a56945cef71016ff23cad077994dcb20f262082380dd284094 diff --git a/xournalpp.spec b/xournalpp.spec new file mode 100644 index 0000000..5e5e495 --- /dev/null +++ b/xournalpp.spec @@ -0,0 +1,112 @@ +%global __cmake_in_source_build 0 +%global with_cppunit 1 +%global gtest 1 +%global profiling 1 + +Name: xournalpp +Version: 1.2.4 +Release: %autorelease +Summary: Handwriting note-taking software with PDF annotation support +# Automatically converted from old format: GPLv2+ - review is highly recommended. +License: GPL-2.0-or-later +URL: https://github.com/%{name}/%{name} +Source: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz + +BuildRequires: cmake >= 3.10 +BuildRequires: desktop-file-utils +BuildRequires: fdupes +BuildRequires: gcc-c++ +BuildRequires: gettext +BuildRequires: help2man +BuildRequires: libappstream-glib +%if 0%{?with_cppunit} +BuildRequires: pkgconfig(cppunit) >= 1.12-0 +%endif +BuildRequires: pkgconfig(glib-2.0) >= 2.32.0 +%if 0%{?gtest} +BuildRequires: pkgconfig(gtest) +%endif +BuildRequires: pkgconfig(gtk+-3.0) >= 3.19.9 +BuildRequires: pkgconfig(gtksourceview-4) >= 4.0.0 +BuildRequires: pkgconfig(librsvg-2.0) +%if 0%{?profiling} +BuildRequires: pkgconfig(libprofiler) >= 2.5 +BuildRequires: pkgconfig(libtcmalloc) >= 2.5 +%endif +BuildRequires: pkgconfig(libxml-2.0) >= 2.0.0 +BuildRequires: pkgconfig(libzip) >= 1.0.1 +BuildRequires: pkgconfig(lua) >= 5.3 +BuildRequires: pkgconfig(poppler-glib) >= 0.41.0 +BuildRequires: pkgconfig(portaudiocpp) >= 12 +BuildRequires: pkgconfig(sndfile) >= 1.0.25 +Recommends: texlive-latex-bin +Requires: hicolor-icon-theme +Requires: %{name}-plugins = %{version}-%{release} +Requires: %{name}-ui = %{version}-%{release} + +%description +Xournal++ is a handwriting note-taking software with PDF annotation support. +Supports Pen input like Wacom Tablets + +%package plugins +Summary: Default plugin for %{name} +BuildArch: noarch + +%description plugins +The %{name}-plugins package contains sample plugins for %{name}. + +%package ui +Summary: User interface for %{name} +BuildArch: noarch + +%description ui +The %{name}-ui package contains a graphical user interface for %{name}. + + +%prep +%autosetup -p1 + +%build +%cmake \ + -DDISTRO_CODENAME="Fedora Linux" \ + -DENABLE_GTEST=%{gtest} \ + -DENABLE_PROFILING=%{profiling} + +%cmake_build + +%install +%cmake_install + +%find_lang %{name} + +# REMOVE UNNECESSARY SCRIPTS +find %{buildroot}%{_datadir}/%{name} -name update-icon-cache.sh -delete -print +%fdupes %{buildroot}%{_datadir} + +%check +desktop-file-validate %{buildroot}%{_datadir}/applications/com.github.%{name}.%{name}.desktop +appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/com.github.%{name}.%{name}.appdata.xml + +%files -f %{name}.lang +%license LICENSE +%doc README.md AUTHORS +%{_bindir}/%{name}-thumbnailer +%{_bindir}/%{name} +%{_datadir}/applications/com.github.%{name}.%{name}.desktop +%{_datadir}/icons/hicolor/scalable/apps/com.github.%{name}.%{name}.svg +%{_datadir}/icons/hicolor/scalable/mimetypes/* +%{_datadir}/mime/packages/com.github.%{name}.%{name}.xml +%{_datadir}/thumbnailers/com.github.%{name}.%{name}.thumbnailer +%dir %{_datadir}/%{name} +%{_datadir}/%{name}/resources/*_template.tex +%{_mandir}/man1/%{name}*.gz +%{_metainfodir}/com.github.%{name}.%{name}.appdata.xml + +%files plugins +%{_datadir}/%{name}/plugins + +%files ui +%{_datadir}/%{name}/ui + +%changelog +%autochangelog From 38c78fc42d14a6182341d210a5dcea57a8ee87b1 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Thu, 5 Dec 2024 20:15:42 -0800 Subject: [PATCH 02/10] Update to 1.2.5 (rhbz#2330518) --- .gitignore | 1 + sources | 2 +- xournalpp.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f2dfbf8..54b9a1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /xournalpp-1.2.4.tar.gz +/xournalpp-1.2.5.tar.gz diff --git a/sources b/sources index f0eeb0e..42b63bc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xournalpp-1.2.4.tar.gz) = 45f09757f8dba67f64d53cd05c400bd563e5168eb24d1a0b5a4c407427dc4427adf54d22c5cae6a56945cef71016ff23cad077994dcb20f262082380dd284094 +SHA512 (xournalpp-1.2.5.tar.gz) = c95854b73b3b63fbb154e5c952a15fe94bfb8e71a52f0cf0b606a5be792c1375d540dd820bfbda182d38ad8627afc4eb10c9b636d1be0fe6e77a462e2e6b6b9f diff --git a/xournalpp.spec b/xournalpp.spec index 5e5e495..46fa280 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -4,7 +4,7 @@ %global profiling 1 Name: xournalpp -Version: 1.2.4 +Version: 1.2.5 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support # Automatically converted from old format: GPLv2+ - review is highly recommended. From 2c6e51db2cc071ae004b91d0e550b8194e162be3 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Sat, 22 Feb 2025 13:26:22 -0800 Subject: [PATCH 03/10] Update to 1.2.6 --- xournalpp.spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xournalpp.spec b/xournalpp.spec index 46fa280..d5803b5 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -4,10 +4,9 @@ %global profiling 1 Name: xournalpp -Version: 1.2.5 +Version: 1.2.6 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support -# Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://github.com/%{name}/%{name} Source: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz From 40660a86db5fc7a39bc771a723965d5791776e24 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Sun, 11 May 2025 10:30:30 -0700 Subject: [PATCH 04/10] Update to 1.2.7 (#2365399) --- .gitignore | 1 + sources | 2 +- xournalpp.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 54b9a1a..1cd448a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /xournalpp-1.2.4.tar.gz /xournalpp-1.2.5.tar.gz +/xournalpp-1.2.7.tar.gz diff --git a/sources b/sources index 42b63bc..88a8c03 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xournalpp-1.2.5.tar.gz) = c95854b73b3b63fbb154e5c952a15fe94bfb8e71a52f0cf0b606a5be792c1375d540dd820bfbda182d38ad8627afc4eb10c9b636d1be0fe6e77a462e2e6b6b9f +SHA512 (xournalpp-1.2.7.tar.gz) = cbec828769405ccbe753e63279c3faabf253678543281c9da8ea67e665bafac43cebcd50a5d6588a123c6956e9d672be25e66a2231e9d44fa0640a379eabb70c diff --git a/xournalpp.spec b/xournalpp.spec index d5803b5..cb77d64 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -4,7 +4,7 @@ %global profiling 1 Name: xournalpp -Version: 1.2.6 +Version: 1.2.7 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support License: GPL-2.0-or-later From 857d1948f62bf7e57c44956b845e6585d140f983 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Wed, 3 Sep 2025 22:31:01 -0700 Subject: [PATCH 05/10] Update to 1.2.8 --- .gitignore | 1 + sources | 2 +- xournalpp.spec | 71 +++++++++++++++++++++++++------------------------- 3 files changed, 38 insertions(+), 36 deletions(-) diff --git a/.gitignore b/.gitignore index 1cd448a..8914e80 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /xournalpp-1.2.4.tar.gz /xournalpp-1.2.5.tar.gz /xournalpp-1.2.7.tar.gz +/xournalpp-1.2.8.tar.gz diff --git a/sources b/sources index 88a8c03..8c4109c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xournalpp-1.2.7.tar.gz) = cbec828769405ccbe753e63279c3faabf253678543281c9da8ea67e665bafac43cebcd50a5d6588a123c6956e9d672be25e66a2231e9d44fa0640a379eabb70c +SHA512 (xournalpp-1.2.8.tar.gz) = 1f9e7e80b62728043d09db00d9c0ec1e827c2ee4ebc196269c18155240fa47d72f367fc0f40fe41e22044518e23fe4c5360c6e24bdc9d100506ed871998b6998 diff --git a/xournalpp.spec b/xournalpp.spec index cb77d64..0a214d5 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -1,15 +1,16 @@ -%global __cmake_in_source_build 0 -%global with_cppunit 1 -%global gtest 1 -%global profiling 1 +%bcond_without cppunit +%bcond_without gtest +%bcond_without profiling +%global forgeurl https://github.com/xournalpp/xournalpp Name: xournalpp -Version: 1.2.7 +Version: 1.2.8 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support -License: GPL-2.0-or-later -URL: https://github.com/%{name}/%{name} -Source: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz +License: GPL-2.0-or-later +%forgemeta +URL: %{forgeurl} +Source: %{forgesource} BuildRequires: cmake >= 3.10 BuildRequires: desktop-file-utils @@ -18,69 +19,69 @@ BuildRequires: gcc-c++ BuildRequires: gettext BuildRequires: help2man BuildRequires: libappstream-glib -%if 0%{?with_cppunit} -BuildRequires: pkgconfig(cppunit) >= 1.12-0 + +%if %{with cppunit} +BuildRequires: pkgconfig(cppunit) >= 1.12 %endif -BuildRequires: pkgconfig(glib-2.0) >= 2.32.0 -%if 0%{?gtest} +BuildRequires: pkgconfig(glib-2.0) >= 2.32 +%if %{with gtest} BuildRequires: pkgconfig(gtest) %endif BuildRequires: pkgconfig(gtk+-3.0) >= 3.19.9 BuildRequires: pkgconfig(gtksourceview-4) >= 4.0.0 BuildRequires: pkgconfig(librsvg-2.0) -%if 0%{?profiling} +%if %{with profiling} BuildRequires: pkgconfig(libprofiler) >= 2.5 BuildRequires: pkgconfig(libtcmalloc) >= 2.5 %endif -BuildRequires: pkgconfig(libxml-2.0) >= 2.0.0 +BuildRequires: pkgconfig(libxml-2.0) >= 2.0 BuildRequires: pkgconfig(libzip) >= 1.0.1 BuildRequires: pkgconfig(lua) >= 5.3 -BuildRequires: pkgconfig(poppler-glib) >= 0.41.0 +BuildRequires: pkgconfig(poppler-glib) >= 0.41 BuildRequires: pkgconfig(portaudiocpp) >= 12 BuildRequires: pkgconfig(sndfile) >= 1.0.25 + Recommends: texlive-latex-bin Requires: hicolor-icon-theme Requires: %{name}-plugins = %{version}-%{release} Requires: %{name}-ui = %{version}-%{release} %description -Xournal++ is a handwriting note-taking software with PDF annotation support. -Supports Pen input like Wacom Tablets +Xournal++ is a handwriting note-taking application with PDF annotation support. +It is optimized for pen input such as Wacom tablets. -%package plugins -Summary: Default plugin for %{name} +%package plugins +Summary: Default plugins for %{name} BuildArch: noarch -%description plugins -The %{name}-plugins package contains sample plugins for %{name}. +%description plugins +This package contains sample plugins for %{name}. -%package ui -Summary: User interface for %{name} +%package ui +Summary: User interface files for %{name} BuildArch: noarch -%description ui -The %{name}-ui package contains a graphical user interface for %{name}. - +%description ui +This package contains user interface resources for %{name}. %prep -%autosetup -p1 +%forgeautosetup -p1 %build %cmake \ - -DDISTRO_CODENAME="Fedora Linux" \ - -DENABLE_GTEST=%{gtest} \ - -DENABLE_PROFILING=%{profiling} + -DDISTRO_CODENAME="Fedora Linux" \ + -DENABLE_GTEST=%{with gtest} \ + -DENABLE_PROFILING=%{with profiling} %cmake_build %install %cmake_install - %find_lang %{name} -# REMOVE UNNECESSARY SCRIPTS -find %{buildroot}%{_datadir}/%{name} -name update-icon-cache.sh -delete -print -%fdupes %{buildroot}%{_datadir} +# Remove unnecessary scripts and duplicate files +find %{buildroot} -name "*.sh" -delete +%fdupes %{buildroot} %check desktop-file-validate %{buildroot}%{_datadir}/applications/com.github.%{name}.%{name}.desktop @@ -89,8 +90,8 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/com.github.%{n %files -f %{name}.lang %license LICENSE %doc README.md AUTHORS -%{_bindir}/%{name}-thumbnailer %{_bindir}/%{name} +%{_bindir}/%{name}-thumbnailer %{_datadir}/applications/com.github.%{name}.%{name}.desktop %{_datadir}/icons/hicolor/scalable/apps/com.github.%{name}.%{name}.svg %{_datadir}/icons/hicolor/scalable/mimetypes/* From 4c6d72e1042781fd2bc281c5a51f7172f1251228 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Sun, 7 Dec 2025 10:07:22 -0800 Subject: [PATCH 06/10] Update to 1.2.10 --- .gitignore | 1 + sources | 2 +- xournalpp.spec | 12 ++++++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 8914e80..289c89a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /xournalpp-1.2.5.tar.gz /xournalpp-1.2.7.tar.gz /xournalpp-1.2.8.tar.gz +/xournalpp-1.2.10.tar.gz diff --git a/sources b/sources index 8c4109c..21be706 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xournalpp-1.2.8.tar.gz) = 1f9e7e80b62728043d09db00d9c0ec1e827c2ee4ebc196269c18155240fa47d72f367fc0f40fe41e22044518e23fe4c5360c6e24bdc9d100506ed871998b6998 +SHA512 (xournalpp-1.2.10.tar.gz) = 1bdbbc53b31e295ced095667dfb1935c624ec967d2aaa29ccf244f9e0a661bc5397a5bc66365e8d250071c0393695b404616ceee68438c2cb282ffb6a895ff02 diff --git a/xournalpp.spec b/xournalpp.spec index 0a214d5..2be3666 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -1,10 +1,11 @@ -%bcond_without cppunit -%bcond_without gtest -%bcond_without profiling +%bcond cppunit 1 +%bcond gtest 1 +%bcond profiling 1 +%bcond qpdf 1 %global forgeurl https://github.com/xournalpp/xournalpp Name: xournalpp -Version: 1.2.8 +Version: 1.2.10 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support License: GPL-2.0-or-later @@ -34,6 +35,9 @@ BuildRequires: pkgconfig(librsvg-2.0) BuildRequires: pkgconfig(libprofiler) >= 2.5 BuildRequires: pkgconfig(libtcmalloc) >= 2.5 %endif +%if %{with qpdf} +BuildRequires: pkgconfig(libqpdf) >= 10.6.0 +%endif BuildRequires: pkgconfig(libxml-2.0) >= 2.0 BuildRequires: pkgconfig(libzip) >= 1.0.1 BuildRequires: pkgconfig(lua) >= 5.3 From 0de6b44d8f76f31964d906ed83f0b07c22ee2078 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Sat, 13 Dec 2025 00:49:03 -0800 Subject: [PATCH 07/10] Upload source --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 289c89a..7b19a10 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /xournalpp-1.2.7.tar.gz /xournalpp-1.2.8.tar.gz /xournalpp-1.2.10.tar.gz +/xournalpp-1.3.0.tar.gz diff --git a/sources b/sources index 21be706..ae73a51 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xournalpp-1.2.10.tar.gz) = 1bdbbc53b31e295ced095667dfb1935c624ec967d2aaa29ccf244f9e0a661bc5397a5bc66365e8d250071c0393695b404616ceee68438c2cb282ffb6a895ff02 +SHA512 (xournalpp-1.3.0.tar.gz) = 35de6577261f07d0213551c1869af114ae4dfd295d414de78c4c209a78963a6aa5ffe322a4ba15b2f3240aac092b86635965b776a16a9417bd350eecfd87be40 From e5d30de8c9c4935afc97d863a3080fd66cd5f2fb Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Sat, 13 Dec 2025 00:43:14 -0800 Subject: [PATCH 08/10] Update to 1.3.0 --- xournalpp.spec | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/xournalpp.spec b/xournalpp.spec index 2be3666..05cd75d 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -5,7 +5,7 @@ %global forgeurl https://github.com/xournalpp/xournalpp Name: xournalpp -Version: 1.2.10 +Version: 1.3.0 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support License: GPL-2.0-or-later @@ -18,8 +18,10 @@ BuildRequires: desktop-file-utils BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: gettext +BuildRequires: git BuildRequires: help2man BuildRequires: libappstream-glib +BuildRequires: ninja-build %if %{with cppunit} BuildRequires: pkgconfig(cppunit) >= 1.12 @@ -73,6 +75,7 @@ This package contains user interface resources for %{name}. %build %cmake \ + -DCMAKE_BUILD_TYPE="Release" \ -DDISTRO_CODENAME="Fedora Linux" \ -DENABLE_GTEST=%{with gtest} \ -DENABLE_PROFILING=%{with profiling} @@ -83,6 +86,17 @@ This package contains user interface resources for %{name}. %cmake_install %find_lang %{name} +# Generate and install man pages. +install -d '%{buildroot}%{_mandir}/man1' +for cmd in %{buildroot}%{_bindir}/* +do + LD_LIBRARY_PATH='%{buildroot}%{_libdir}' \ + help2man \ + --no-info --no-discard-stderr --version-string='%{version}' \ + --output="%{buildroot}%{_mandir}/man1/$(basename "${cmd}").1" \ + "${cmd}" +done + # Remove unnecessary scripts and duplicate files find %{buildroot} -name "*.sh" -delete %fdupes %{buildroot} @@ -94,22 +108,24 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/com.github.%{n %files -f %{name}.lang %license LICENSE %doc README.md AUTHORS -%{_bindir}/%{name} -%{_bindir}/%{name}-thumbnailer +%{_bindir}/%{name}{,-thumbnailer,-wrapper} %{_datadir}/applications/com.github.%{name}.%{name}.desktop %{_datadir}/icons/hicolor/scalable/apps/com.github.%{name}.%{name}.svg %{_datadir}/icons/hicolor/scalable/mimetypes/* %{_datadir}/mime/packages/com.github.%{name}.%{name}.xml %{_datadir}/thumbnailers/com.github.%{name}.%{name}.thumbnailer %dir %{_datadir}/%{name} +%{_datadir}/%{name}/palettes/*.gpl %{_datadir}/%{name}/resources/*_template.tex %{_mandir}/man1/%{name}*.gz %{_metainfodir}/com.github.%{name}.%{name}.appdata.xml %files plugins +%doc README.md %{_datadir}/%{name}/plugins %files ui +%doc README.md %{_datadir}/%{name}/ui %changelog From 62be5aa039531884df262f443ba56b27029059f2 Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Mon, 22 Dec 2025 08:39:15 -0800 Subject: [PATCH 09/10] Update to 1.3.1 (rhbz#2424237) --- .gitignore | 1 + sources | 2 +- xournalpp.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7b19a10..fc36afa 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /xournalpp-1.2.8.tar.gz /xournalpp-1.2.10.tar.gz /xournalpp-1.3.0.tar.gz +/xournalpp-1.3.1.tar.gz diff --git a/sources b/sources index ae73a51..5af3675 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xournalpp-1.3.0.tar.gz) = 35de6577261f07d0213551c1869af114ae4dfd295d414de78c4c209a78963a6aa5ffe322a4ba15b2f3240aac092b86635965b776a16a9417bd350eecfd87be40 +SHA512 (xournalpp-1.3.1.tar.gz) = b8febeb5a1c74cf02b490f92165e776fe52f4683b627e905f22bc2ea6de6c8482dc1639546a41edd433c2125d6657084ea04dc125320c099d2f04cd0d5795f4b diff --git a/xournalpp.spec b/xournalpp.spec index 05cd75d..aecf323 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -5,7 +5,7 @@ %global forgeurl https://github.com/xournalpp/xournalpp Name: xournalpp -Version: 1.3.0 +Version: 1.3.1 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support License: GPL-2.0-or-later From dae0d2ae2714074ecda9ea05b20373c5abaa932e Mon Sep 17 00:00:00 2001 From: Luya Tshimbalanga Date: Tue, 3 Feb 2026 16:04:17 -0800 Subject: [PATCH 10/10] Update to 1.3.2 (rhbz#2436551) --- .gitignore | 1 + sources | 2 +- xournalpp.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fc36afa..5d224dc 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /xournalpp-1.2.10.tar.gz /xournalpp-1.3.0.tar.gz /xournalpp-1.3.1.tar.gz +/xournalpp-1.3.2.tar.gz diff --git a/sources b/sources index 5af3675..fcb1cac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xournalpp-1.3.1.tar.gz) = b8febeb5a1c74cf02b490f92165e776fe52f4683b627e905f22bc2ea6de6c8482dc1639546a41edd433c2125d6657084ea04dc125320c099d2f04cd0d5795f4b +SHA512 (xournalpp-1.3.2.tar.gz) = 64cd0b7a9e030da8f1c655527556918d0a9d9010153ef565044020180af375b6a71a8ae7f8d91e85634f541cb3a25727c306b1d929bce9017fb4346af5b5baa1 diff --git a/xournalpp.spec b/xournalpp.spec index aecf323..bced8de 100644 --- a/xournalpp.spec +++ b/xournalpp.spec @@ -5,7 +5,7 @@ %global forgeurl https://github.com/xournalpp/xournalpp Name: xournalpp -Version: 1.3.1 +Version: 1.3.2 Release: %autorelease Summary: Handwriting note-taking software with PDF annotation support License: GPL-2.0-or-later