git: 6548f83829a3 - main - deskutils/remind: update to 03.03.10
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 03 Dec 2021 10:37:33 UTC
The branch main has been updated by rm:
URL: https://cgit.FreeBSD.org/ports/commit/?id=6548f83829a3a8744f109d91d4d20436b3c22311
commit 6548f83829a3a8744f109d91d4d20436b3c22311
Author: Ruslan Makhmatkhanov <rm@FreeBSD.org>
AuthorDate: 2021-12-03 10:35:42 +0000
Commit: Ruslan Makhmatkhanov <rm@FreeBSD.org>
CommitDate: 2021-12-03 10:35:42 +0000
deskutils/remind: update to 03.03.10
Upstream changes:
- TkRemind: Apply window and text colors to all GUI elements
including buttons and status labels.
- The new ADDOMIT keyword can shorten reminder files.
- Update contrib/remind-conf-mode to latest release
- The parser does not auto-convert numbers 90-99 to 1990-1999. This
was messing up things like "DURATION 90". It also means you can no
longer abbreviate the years 1990-1999 as 90-99.
- Various documentation fixes
- When switching users with the "-u" option, call initgroups()
to properly set group membership list.
PR: 260156
Submitted by: Robert Clausecker <fuz@fuz.su>
---
deskutils/remind/Makefile | 8 +++-----
deskutils/remind/distinfo | 6 +++---
deskutils/remind/files/patch-rem2html_Makefile.in | 4 ++--
3 files changed, 8 insertions(+), 10 deletions(-)
diff --git a/deskutils/remind/Makefile b/deskutils/remind/Makefile
index fd98ffcc2ec4..e5413b71310e 100644
--- a/deskutils/remind/Makefile
+++ b/deskutils/remind/Makefile
@@ -1,7 +1,7 @@
# Created by: Lewis Thompson <purple@lewiz.net>
PORTNAME= remind
-DISTVERSION= 03.03.09
+DISTVERSION= 03.03.10
CATEGORIES= deskutils
MASTER_SITES= https://dianne.skoll.ca/projects/remind/download/
@@ -51,10 +51,8 @@ TCLTK_PLIST_FILES= bin/tkremind \
man/man1/tkremind.1.gz
REM2HTML_USES= perl5
-REM2HTML_BUILD_DEPENDS= p5-JSON-Any>0:converters/p5-JSON-Any \
- p5-Getopt-Long>0:devel/p5-Getopt-Long
-REM2HTML_RUN_DEPENDS= p5-JSON-Any>0:converters/p5-JSON-Any \
- p5-Getopt-Long>0:devel/p5-Getopt-Long
+REM2HTML_BUILD_DEPENDS= p5-JSON-Any>0:converters/p5-JSON-Any
+REM2HTML_RUN_DEPENDS= p5-JSON-Any>0:converters/p5-JSON-Any
REM2HTML_PLIST_FILES= bin/rem2html
# hard wired customisation variables
diff --git a/deskutils/remind/distinfo b/deskutils/remind/distinfo
index 6b43ae9c75a2..db7bf0467552 100644
--- a/deskutils/remind/distinfo
+++ b/deskutils/remind/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1634383830
-SHA256 (remind-03.03.09.tar.gz) = c9087a8c691136442f3e882e46677ad36e69084b2f3bbc3c5b760d3b6bf3b6f3
-SIZE (remind-03.03.09.tar.gz) = 408928
+TIMESTAMP = 1638372316
+SHA256 (remind-03.03.10.tar.gz) = 06a16dddfe3e85fcf89e3cce2359a4ad426147bcceab34ff4cd592fac9365c47
+SIZE (remind-03.03.10.tar.gz) = 420644
diff --git a/deskutils/remind/files/patch-rem2html_Makefile.in b/deskutils/remind/files/patch-rem2html_Makefile.in
index 5385f9413023..fcff8437266a 100644
--- a/deskutils/remind/files/patch-rem2html_Makefile.in
+++ b/deskutils/remind/files/patch-rem2html_Makefile.in
@@ -8,7 +8,7 @@
- echo "Not installing rem2html; Perl is required"; exit 0; fi; \
- for m in $(PERLMODS_NEEDED) ; \
- do \
-- perl -M$$m -e 1 > /dev/null 2>&1; \
+- $(PERL) -M$$m -e 1 > /dev/null 2>&1; \
- if test $$? != 0 ; then echo "Not installing rem2html; missing $$m"; exit 0; fi; \
- done; \
- echo "Installing rem2html in $(DESTDIR)$(bindir)"; \
@@ -16,7 +16,7 @@
- exit 1;
+ @for m in $(PERLMODS_NEEDED) ; \
+ do \
-+ perl -M$$m -e 1 ; \
++ $(PERL) -M$$m -e 1 ; \
+ done
+ @echo "Installing rem2html in $(DESTDIR)$(bindir)"
+ mkdir -p $(DESTDIR)$(bindir)