summaryrefslogtreecommitdiff
path: root/newmoon/newmoon.spec
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-25 13:22:17 +0000
committerB. Stack <bgstack15@gmail.com>2023-02-25 13:22:17 +0000
commit1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9 (patch)
treee9ef3b12c5f2edaabed1a7dedc4ca9d64bcd2758 /newmoon/newmoon.spec
parentMerge branch 'freefilesync-bump' into 'master' (diff)
parentnewmoon spec handles perl in fc38 (diff)
downloadstackrpms-1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9.tar.gz
stackrpms-1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9.tar.bz2
stackrpms-1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9.zip
Merge branch 'newmoon-bump' into 'master'
newmoon 32.0.1 See merge request bgstack15/stackrpms!341
Diffstat (limited to 'newmoon/newmoon.spec')
-rw-r--r--newmoon/newmoon.spec11
1 files changed, 9 insertions, 2 deletions
diff --git a/newmoon/newmoon.spec b/newmoon/newmoon.spec
index 969cd1b..6a7e5e1 100644
--- a/newmoon/newmoon.spec
+++ b/newmoon/newmoon.spec
@@ -4,7 +4,7 @@
%global stackrpms_custom 1
# derive from inside the source tree or from https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases
# git submodule | awk -v "name=platform" '$2 == name {gsub("-","",$1); print $1}'
-%global submodule_platform_tag RB_20221122
+%global submodule_platform_tag RB_20230219
%global badname palemoon
%global git_commit db5ee3c1968212742b4ed8b9883069ea7b03f0e1
%global tarballdir pale-moon
@@ -44,7 +44,7 @@ Name: newmoon
Name: newmoon
%endif
Summary: Newmoon web browser
-Version: 31.4.0
+Version: 32.0.1
Release: 1
Group: Networking/Web
@@ -82,6 +82,10 @@ BuildRequires: libXt-devel
BuildRequires: mesa-libGL-devel
BuildRequires: notification-daemon
BuildRequires: %{_libdir}/libssl.so
+%if 0%{?fedora} >= 38
+# somehow fedora 38 does not include /usr/bin/perl by default in build environment
+BuildRequires: perl-interpreter
+%endif
BuildRequires: pkgconfig
BuildRequires: pkgconfig(gtk+-2.0)
BuildRequires: pulseaudio-libs-devel
@@ -300,6 +304,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Thu Feb 16 2023 B. Stack <bgstack15@gmail.com> - 32.0.0-1
+- update version
+
* Tue Nov 22 2022 B. Stack <bgstack15@gmail.com> - 31.4.0-1
- update version
bgstack15