aboutsummaryrefslogtreecommitdiff
path: root/editors/apel
diff options
context:
space:
mode:
authorMANTANI Nobutaka <nobutaka@FreeBSD.org>2020-08-24 12:19:10 +0000
committerMANTANI Nobutaka <nobutaka@FreeBSD.org>2020-08-24 12:19:10 +0000
commitc2cfc1ab7e6a7270aaa9ac37b1cb669223e0b09f (patch)
treed86af9235e975ccfba348e2f0a038c88994e0e90 /editors/apel
parente7d39340c042bc7fc345f8c052cafb5f47a1d7b6 (diff)
downloadports-c2cfc1ab7e6a7270aaa9ac37b1cb669223e0b09f.tar.gz
ports-c2cfc1ab7e6a7270aaa9ac37b1cb669223e0b09f.zip
Update to the snapshot on 2020-08-24.
Notes
Notes: svn path=/head/; revision=546071
Diffstat (limited to 'editors/apel')
-rw-r--r--editors/apel/Makefile5
-rw-r--r--editors/apel/distinfo6
-rw-r--r--editors/apel/files/patch-APEL-MK11
-rw-r--r--editors/apel/files/patch-pccl-20.el14
4 files changed, 5 insertions, 31 deletions
diff --git a/editors/apel/Makefile b/editors/apel/Makefile
index 1edb99266457..3ed2da3d6f40 100644
--- a/editors/apel/Makefile
+++ b/editors/apel/Makefile
@@ -3,7 +3,6 @@
PORTNAME= apel
PORTVERSION= 10.8.${SNAPDATE}
-PORTREVISION= 3
CATEGORIES= editors elisp
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
@@ -15,9 +14,9 @@ LICENSE= GPLv2
USES= emacs
USE_GITHUB= yes
GH_ACCOUNT= wanderlust
-GH_TAGNAME= d146ddb
+GH_TAGNAME= 414dc33
-SNAPDATE= 20190407
+SNAPDATE= 20200824
NO_ARCH= yes
ALL_TARGET= elc
diff --git a/editors/apel/distinfo b/editors/apel/distinfo
index e871183bf4ba..044517898356 100644
--- a/editors/apel/distinfo
+++ b/editors/apel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1565577043
-SHA256 (wanderlust-apel-10.8.20190407-d146ddb_GH0.tar.gz) = 9709b1ed326a51c98f1f28722b03db725b904e0dbd771d441e098837266af7dd
-SIZE (wanderlust-apel-10.8.20190407-d146ddb_GH0.tar.gz) = 94730
+TIMESTAMP = 1598264008
+SHA256 (wanderlust-apel-10.8.20200824-414dc33_GH0.tar.gz) = 95f4e90f6a6791cde53aa803ac5471db338f734b3817d74b9b2d5573e1f5990e
+SIZE (wanderlust-apel-10.8.20200824-414dc33_GH0.tar.gz) = 69965
diff --git a/editors/apel/files/patch-APEL-MK b/editors/apel/files/patch-APEL-MK
deleted file mode 100644
index 966ecc083364..000000000000
--- a/editors/apel/files/patch-APEL-MK
+++ /dev/null
@@ -1,11 +0,0 @@
---- APEL-MK.orig 2006-12-20 17:24:49 UTC
-+++ APEL-MK
-@@ -41,7 +41,7 @@
- ;; Make "emu" subdirectory.
- "emu"
- ;; Don't make "emu" subdirectory.
-- ""))
-+ "emu"))
-
- ;; The directories where APEL and EMU modules will be installed.
- ;; These two variables will be generated from other variables above.
diff --git a/editors/apel/files/patch-pccl-20.el b/editors/apel/files/patch-pccl-20.el
deleted file mode 100644
index 73e90e202aff..000000000000
--- a/editors/apel/files/patch-pccl-20.el
+++ /dev/null
@@ -1,14 +0,0 @@
---- pccl-20.el.orig 2019-04-07 10:56:27 UTC
-+++ pccl-20.el
-@@ -88,8 +88,9 @@ CODING-SYSTEM, DECODER and ENCODER must be symbol."
- (when-broken ccl-accept-symbol-as-program
- (setq decoder (symbol-value decoder))
- (setq encoder (symbol-value encoder)))
-- (make-coding-system coding-system 4 mnemonic docstring
-- (cons decoder encoder)))
-+ (if (fboundp 'make-coding-system)
-+ (make-coding-system coding-system 4 mnemonic docstring (cons decoder encoder))
-+ (define-coding-system coding-system docstring :mnemonic mnemonic :coding-type 'ccl :ccl-decoder decoder :ccl-encoder encoder)))
- )
-
- (when-broken ccl-accept-symbol-as-program