summaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
authorFlorian Franzmann2021-05-22 19:25:11 +0200
committerFlorian Franzmann2021-05-22 19:31:04 +0200
commitdb0cc80d661d4991ec0b75f46aa53291bd47f1df (patch)
treed0efea455197d9f07873d538ff2d49900fdb6a2f /editors
parentd3577935b25d2fee1c36400ef930a347c4f3da96 (diff)
editors/sc-im: version 0.8.2
Diffstat (limited to 'editors')
-rw-r--r--editors/sc-im/0001-link-against-zlib-if-libxlsxwriter-is-detected.patch32
-rwxr-xr-xeditors/sc-im/DETAILS4
-rw-r--r--editors/sc-im/HISTORY5
3 files changed, 24 insertions, 17 deletions
diff --git a/editors/sc-im/0001-link-against-zlib-if-libxlsxwriter-is-detected.patch b/editors/sc-im/0001-link-against-zlib-if-libxlsxwriter-is-detected.patch
index 94a4b18e7a..706ac96741 100644
--- a/editors/sc-im/0001-link-against-zlib-if-libxlsxwriter-is-detected.patch
+++ b/editors/sc-im/0001-link-against-zlib-if-libxlsxwriter-is-detected.patch
@@ -1,25 +1,27 @@
-From affc72b043d5056c95721bec485dc1a1790ee536 Mon Sep 17 00:00:00 2001
+From ba7544e08b378ad014cfafc0745a0f97478562e9 Mon Sep 17 00:00:00 2001
From: Florian Franzmann <bwlf@bandrate.org>
-Date: Sun, 16 Dec 2018 19:47:36 +0100
+Date: Sat, 22 May 2021 19:29:09 +0200
Subject: [PATCH] link against zlib if libxlsxwriter is detected
---
- src/Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
+ src/Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Makefile b/src/Makefile
-index dd49467..518ed1f 100755
+index e9a1454..5498911 100755
--- a/src/Makefile
+++ b/src/Makefile
-@@ -75,7 +75,7 @@ endif
- # NOTE: libxlsxwriter is required for xlsx file export support
- ifneq (,$(wildcard /usr/include/xlsxwriter.h))
- CFLAGS += -DXLSX_EXPORT
-- LDLIBS += -lxlsxwriter
-+ LDLIBS += -lxlsxwriter -lz
- endif
- ifneq (,$(wildcard /usr/local/include/xlsxwriter.h))
- CFLAGS += -DXLSX_EXPORT
+@@ -129,8 +129,8 @@ ifneq (, $(shell which pkg-config))
+
+ # NOTE: libxlsxwriter is required for xlsx file export support
+ ifneq ($(shell pkg-config --exists xlsxwriter || echo 'no'),no)
+- CFLAGS += -DXLSX_EXPORT $(shell pkg-config --cflags xlsxwriter)
+- LDLIBS += $(shell pkg-config --libs xlsxwriter)
++ CFLAGS += -DXLSX_EXPORT $(shell pkg-config --cflags xlsxwriter) $(shell pkg-config --cflags zlib)
++ LDLIBS += $(shell pkg-config --libs xlsxwriter) $(shell pkg-config --libs zlib)
+ endif
+
+ # NOTE: lua support
--
-2.20.1
+2.31.1
diff --git a/editors/sc-im/DETAILS b/editors/sc-im/DETAILS
index b3efcc81ec..9d8632f9d9 100755
--- a/editors/sc-im/DETAILS
+++ b/editors/sc-im/DETAILS
@@ -1,8 +1,8 @@
SPELL=sc-im
- VERSION=0.8.1
+ VERSION=0.8.2
SOURCE="$SPELL-$VERSION.tar.gz"
SOURCE_URL[0]=https://github.com/andmarti1424/${SPELL}/archive/v${VERSION}.tar.gz
- SOURCE_HASH=sha512:43fcdd71e999be155700532f7a14971619838f1e34bbc7cc0b9dd2e90c805a277f4a3948c146f6b1f881c55d8199d4ab65b70fefd1dd21415c67dfa4dfc209b2
+ SOURCE_HASH=sha512:ae02fd31eb7254208de26802ed6d8b21d77ce2d6997f4a2de5bd2f0a002c763f67f53e6c8e49d66ded096ecd8bf50b1117015e9a0356eaf11c3caef22cf4552c
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/$SPELL-$VERSION"
WEB_SITE="https://github.com/andmarti1424/sc-im"
LICENSE[0]=BSD
diff --git a/editors/sc-im/HISTORY b/editors/sc-im/HISTORY
index 7f2ef7138c..a5c6718a52 100644
--- a/editors/sc-im/HISTORY
+++ b/editors/sc-im/HISTORY
@@ -1,3 +1,8 @@
+2021-05-22 Florian Franzmann <bwlf@bandrate.org>
+ * DETAILS: version 0.8.2
+ * 0001-link-against-zlib-if-libxlsxwriter-is-detected.patch:
+ regenerate patch
+
2021-04-04 Florian Franzmann <bwlf@bandrate.org>
* DETAILS: version 0.8.1