- Upgrade to 2.0.43 (2.0.41 didn't work on emacs-21.3 by using

not existing function "copy-tree").
- Use autoconf-2.59 and regenerate configure script to avoid a bug in
  AC_CHECK_PROG(..., [$PATH:/]).
This commit is contained in:
Jun Kuriyama 2004-07-21 22:19:34 +00:00
parent 6a027d62cd
commit 1e02a33001
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114372
3 changed files with 4 additions and 47 deletions

View file

@ -6,8 +6,7 @@
#
PORTNAME= tramp
PORTVERSION= 2.0.41
PORTREVISION= 1
PORTVERSION= 2.0.43
CATEGORIES= net elisp
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -19,7 +18,7 @@ COMMENT= Transparent remote file access tool for emacsen
EMACS_PORT_NAME?= emacs21
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_AUTOCONF_VER= 259
TRAMP_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
PLIST_SUB+= TRAMP_LISPDIR=${TRAMP_LISPDIR} \

View file

@ -1,2 +1,2 @@
MD5 (tramp-2.0.41.tar.gz) = 2176af2ee6a0651c666b695b5508f923
SIZE (tramp-2.0.41.tar.gz) = 285435
MD5 (tramp-2.0.43.tar.gz) = a594c9a93239a81e8a51fe54f5a7dcbf
SIZE (tramp-2.0.43.tar.gz) = 368387

View file

@ -1,42 +0,0 @@
Index: lisp/tramp.el
===================================================================
RCS file: /cvsroot/tramp/tramp/lisp/tramp.el,v
retrieving revision 2.359.2.3
retrieving revision 2.359.2.4
diff -u -r2.359.2.3 -r2.359.2.4
--- lisp/tramp.el 29 May 2004 21:40:49 -0000 2.359.2.3
+++ lisp/tramp.el 30 May 2004 20:55:59 -0000 2.359.2.4
@@ -1885,6 +1885,16 @@
;; To be activated for debugging containing this macro
(def-edebug-spec with-parsed-tramp-file-name t)
+(defmacro tramp-let-maybe (variable value &rest body)
+ "Let-bind VARIABLE to VALUE in BODY, but only if VARIABLE is not obsolete.
+BODY is executed whether or not the variable is obsolete.
+The intent is to protect against `obsolete variable' warnings."
+ `(if (get ',variable 'byte-obsolete-variable)
+ (progn ,@body)
+ (let ((,variable ,value))
+ ,@body)))
+(put 'tramp-let-maybe 'lisp-indent-function 2)
+
;;; Config Manipulation Functions:
(defun tramp-set-completion-function (method function-list)
@@ -6790,16 +6800,6 @@
(funcall (symbol-function 'process-kill-without-query)
process flag)))
-(defmacro tramp-let-maybe (variable value &rest body)
- "Let-bind VARIABLE to VALUE in BODY, but only if VARIABLE is not obsolete.
-BODY is executed whether or not the variable is obsolete.
-The intent is to protect against `obsolete variable' warnings."
- `(if (get 'byte-obsolete-variable ',variable)
- (progn ,@body)
- (let ((,variable ,value))
- ,@body)))
-(put 'tramp-let-maybe 'lisp-indent-function 2)
-
;; ------------------------------------------------------------
;; -- Kludges section --