summaryrefslogtreecommitdiff
path: root/newmoon
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-22 14:14:16 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-22 14:14:16 -0400
commit5390fe959b7062cb74497b680edbd10335bd028c (patch)
tree224fa67f10c072c76d9f708b71589759f6b5c14c /newmoon
parentnm: remove revert-mach-file from rpm (diff)
downloadstackrpms-5390fe959b7062cb74497b680edbd10335bd028c.tar.gz
stackrpms-5390fe959b7062cb74497b680edbd10335bd028c.tar.bz2
stackrpms-5390fe959b7062cb74497b680edbd10335bd028c.zip
nm: re-add the submodule to rpm spec
Diffstat (limited to 'newmoon')
-rw-r--r--newmoon/newmoon.spec6
1 files changed, 3 insertions, 3 deletions
diff --git a/newmoon/newmoon.spec b/newmoon/newmoon.spec
index d3ff2a7..7e7311c 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 RELBASE_20210817
+%global submodule_platform_tag RB_20220510
%global badname palemoon
%global git_commit db5ee3c1968212742b4ed8b9883069ea7b03f0e1
%global tarballdir pale-moon
@@ -52,7 +52,7 @@ License: MPLv2.0
URL: http://linux.palemoon.org/
Source0: https://repo.palemoon.org/MoonChildProductions/Pale-Moon/archive/%{version}_Release.tar.gz
#Source0: https://gitlab.com/opensource-tracking/palemoon/-/archive/%%{git_commit}/palemoon-%%{git_commit}.tar.gz
-#Source1: https://repo.palemoon.org/MoonchildProductions/UXP/archive/%%{submodule_platform_tag}.tar.gz
+Source1: https://repo.palemoon.org/MoonchildProductions/UXP/archive/%{submodule_platform_tag}.tar.gz
Source2: newmoon-mozconfig
Source3: newmoon.desktop
Source4: newmoon-mimeinfo.xml
@@ -114,7 +114,7 @@ and themes to make the browser truly your own.
%prep
%setup -q -n %{tarballdir}
-#tar -C platform --strip-components=1 -zxf %%{SOURCE1} # git submodule
+tar -C platform --strip-components=1 -zxf %%{SOURCE1} # git submodule
%{__cp} %{SOURCE2} ./.mozconfig
%if 0%{?fedora} >= 30
sed -i -r -e '/enable-optimize/s/"\s*$/ -Wno-format-overflow"/' ./.mozconfig
bgstack15