Upgrade to 0.85 release candidate 3.
This commit is contained in:
parent
513e4c50af
commit
ef56dfa201
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=79040
4 changed files with 13 additions and 40 deletions
|
@ -6,20 +6,23 @@
|
|||
#
|
||||
|
||||
PORTNAME= mule-ucs
|
||||
PORTVERSION= 0.84
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.85.r3
|
||||
CATEGORIES= converters elisp
|
||||
MASTER_SITES= ftp://ftp.m17n.org/pub/mule/Mule-UCS/ \
|
||||
ftp://ftp.etl.go.jp/pub/mule/Mule-UCS/ \
|
||||
ftp://ftp.kddlabs.co.jp/Japan/m17n.org/mule/Mule-UCS/ \
|
||||
ftp://ftp.media.kyoto-u.ac.jp/mule/Mule-UCS/ \
|
||||
ftp://ftp.nihon-u.ac.jp/pub/text/m17n/mule/Mule-UCS/
|
||||
MASTER_SITES= ${MASTER_SITE_M17N}
|
||||
MASTER_SITE_SUBDIR= mule/Mule-UCS/test
|
||||
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
||||
DISTNAME= Mule-UCS-${PORTVERSION}
|
||||
DISTNAME= Mule-UCS-current
|
||||
|
||||
MAINTAINER?= okazaki@FreeBSD.org
|
||||
COMMENT?= Universal encoding system for GNU Emacs 21
|
||||
|
||||
MASTER_SITE_M17N+= \
|
||||
ftp://ftp.m17n.org/pub/%SUBDIR%/ \
|
||||
ftp://ftp.etl.go.jp/pub/%SUBDIR%/ \
|
||||
ftp://ftp.kddlabs.co.jp/Japan/m17n.org/%SUBDIR%/ \
|
||||
ftp://ftp.media.kyoto-u.ac.jp/%SUBDIR%/ \
|
||||
ftp://ftp.nihon-u.ac.jp/pub/text/m17n/%SUBDIR%/
|
||||
|
||||
# This is a master port.
|
||||
PORTCLASS?= master
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (Mule-UCS-0.84.tar.gz) = 4c91c2e427a182ac748573d19e095107
|
||||
MD5 (Mule-UCS-current.tar.gz) = 1387a2273fe9a9a160f3a0f63e06dbac
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
--- lisp/un-define.el.orig Wed Mar 7 07:41:38 2001
|
||||
+++ lisp/un-define.el Thu May 16 22:15:03 2002
|
||||
@@ -610,13 +610,21 @@
|
||||
|
||||
(mapcar
|
||||
(lambda (x)
|
||||
- (mapcar
|
||||
- (lambda (y)
|
||||
- (mucs-define-coding-system
|
||||
- (nth 0 y) (nth 1 y) (nth 2 y)
|
||||
- (nth 3 y) (nth 4 y) (nth 5 y) (nth 6 y))
|
||||
- (coding-system-put (car y) 'alias-coding-systems (list (car x))))
|
||||
- (cdr x)))
|
||||
+ (if (fboundp 'register-char-codings)
|
||||
+ ;; Mule 5, where we don't need the eol-type specified and
|
||||
+ ;; register-char-codings may be very slow for these coding
|
||||
+ ;; system definitions.
|
||||
+ (let ((y (cadr x)))
|
||||
+ (mucs-define-coding-system
|
||||
+ (car x) (nth 1 y) (nth 2 y)
|
||||
+ (nth 3 y) (nth 4 y) (nth 5 y)))
|
||||
+ (mapcar
|
||||
+ (lambda (y)
|
||||
+ (mucs-define-coding-system
|
||||
+ (nth 0 y) (nth 1 y) (nth 2 y)
|
||||
+ (nth 3 y) (nth 4 y) (nth 5 y) (nth 6 y))
|
||||
+ (coding-system-put (car y) 'alias-coding-systems (list (car x))))
|
||||
+ (cdr x))))
|
||||
`((utf-8
|
||||
(utf-8-unix
|
||||
?u "UTF-8 coding system"
|
|
@ -64,6 +64,7 @@
|
|||
%%EMACS_LIBDIR_WITH_VER%%/site-lisp/mule-ucs/reldata/ujisx0208.el
|
||||
%%EMACS_LIBDIR_WITH_VER%%/site-lisp/mule-ucs/reldata/ujisx0212.el
|
||||
%%EMACS_LIBDIR_WITH_VER%%/site-lisp/mule-ucs/reldata/uksc5601.el
|
||||
%%EMACS_LIBDIR_WITH_VER%%/site-lisp/mule-ucs/reldata/ulao.el
|
||||
%%EMACS_LIBDIR_WITH_VER%%/site-lisp/mule-ucs/reldata/usisheng.el
|
||||
%%EMACS_LIBDIR_WITH_VER%%/site-lisp/mule-ucs/reldata/usupple.el
|
||||
%%EMACS_LIBDIR_WITH_VER%%/site-lisp/mule-ucs/reldata/utibetan.el
|
||||
|
|
Loading…
Reference in a new issue