summaryrefslogtreecommitdiff
path: root/scite/debian/patches/0003-reproducible_build.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-04-16 16:51:44 +0000
committerB. Stack <bgstack15@gmail.com>2022-04-16 16:51:44 +0000
commit2611ac2c41471e12a2b1e6b217322f00cb9266d1 (patch)
tree9fc348166a26334b739259b11e039570c23f1f4d /scite/debian/patches/0003-reproducible_build.patch
parentMerge branch 'librewolf-bump' into 'master' (diff)
parentfix #29: add functions to scite stackrpms.lua (diff)
downloadstackrpms-2611ac2c41471e12a2b1e6b217322f00cb9266d1.tar.gz
stackrpms-2611ac2c41471e12a2b1e6b217322f00cb9266d1.tar.bz2
stackrpms-2611ac2c41471e12a2b1e6b217322f00cb9266d1.zip
Merge branch 'scite-bump' into 'master'
Scite bump Closes #29 See merge request bgstack15/stackrpms!294
Diffstat (limited to 'scite/debian/patches/0003-reproducible_build.patch')
-rw-r--r--scite/debian/patches/0003-reproducible_build.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/scite/debian/patches/0003-reproducible_build.patch b/scite/debian/patches/0003-reproducible_build.patch
new file mode 100644
index 0000000..0a8ce2a
--- /dev/null
+++ b/scite/debian/patches/0003-reproducible_build.patch
@@ -0,0 +1,20 @@
+From: Antonio Valentino <antonio.valentino@tiscali.it>
+Date: Sat, 14 Apr 2018 17:39:34 +0000
+Subject: Allow reproducible build
+
+===================================================================
+---
+ scite/src/Credits.cxx | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/scite/src/Credits.cxx
++++ b/scite/src/Credits.cxx
+@@ -601,7 +601,7 @@
+ }
+ AddStyledText(wsci, GetTranslationToAbout("Version").c_str(), trsSty);
+ AddStyledText(wsci, sVersion.c_str(), 1);
+- AddStyledText(wsci, " " __DATE__ " " __TIME__ "\n", 1);
++ AddStyledText(wsci, " " BUILD_DATE "\n", 1);
+ SetAboutStyle(wsci, 2, ColourRGB(0, 0, 0));
+ wsci.StyleSetItalic(2, true);
+ AddStyledText(wsci, GetTranslationToAbout("by").c_str(), trsSty);
bgstack15