Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/gtypist/files: gtypist-2.7-xemacs-compat.patch digest-gtypist-2.7-r1 50gtypist-gentoo.el digest-gtypist-2.6.2 digest-gtypist-2.5
Date: Fri, 05 Oct 2007 20:42:24
Message-Id: E1Idtqz-0000OP-4H@stork.gentoo.org
1 ulm 07/10/05 20:32:57
2
3 Added: gtypist-2.7-xemacs-compat.patch
4 digest-gtypist-2.7-r1 50gtypist-gentoo.el
5 Removed: digest-gtypist-2.6.2 digest-gtypist-2.5
6 Log:
7 Fix Emacs compilation issues, bug #165441.
8 (Portage version: 2.1.3.11)
9
10 Revision Changes Path
11 1.1 app-misc/gtypist/files/gtypist-2.7-xemacs-compat.patch
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gtypist/files/gtypist-2.7-xemacs-compat.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gtypist/files/gtypist-2.7-xemacs-compat.patch?rev=1.1&content-type=text/plain
15
16 Index: gtypist-2.7-xemacs-compat.patch
17 ===================================================================
18 --- gtypist-2.7-orig/tools/gtypist-mode.el 2003-09-28 23:35:22.000000000 +0200
19 +++ gtypist-2.7/tools/gtypist-mode.el 2007-04-21 14:49:16.000000000 +0200
20 @@ -95,7 +95,14 @@
21
22 (require 'font-lock)
23 (require 'thingatpt)
24 -(require 'executable) ;; executable-find
25 +
26 +(eval-and-compile
27 + (cond
28 + ((fboundp 'executable-find))
29 + ((fboundp 'locate-file)
30 + (defun executable-find (command)
31 + (locate-file command exec-path nil 'executable)))
32 + (t (require 'executable))))
33
34 (defvar gtypist-mode-syntax-table nil "Syntax-table for gtypist-mode.")
35 (unless gtypist-mode-syntax-table
36
37
38
39 1.1 app-misc/gtypist/files/digest-gtypist-2.7-r1
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gtypist/files/digest-gtypist-2.7-r1?rev=1.1&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gtypist/files/digest-gtypist-2.7-r1?rev=1.1&content-type=text/plain
43
44 Index: digest-gtypist-2.7-r1
45 ===================================================================
46 MD5 2e69a3fd10f9e7fba0dadb1189dc185a gtypist-2.7.tar.gz 1019990
47 RMD160 3bd7f01c6cd4f9f453744c76296701967786fe19 gtypist-2.7.tar.gz 1019990
48 SHA256 d73da348bfe32f54bfcc20afdff64168faf38b19172992bebdf693876d102a33 gtypist-2.7.tar.gz 1019990
49
50
51
52 1.1 app-misc/gtypist/files/50gtypist-gentoo.el
53
54 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gtypist/files/50gtypist-gentoo.el?rev=1.1&view=markup
55 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gtypist/files/50gtypist-gentoo.el?rev=1.1&content-type=text/plain
56
57 Index: 50gtypist-gentoo.el
58 ===================================================================
59
60 ;; gtypist site-lisp configuration
61
62 (add-to-list 'load-path "@SITELISP@")
63 (autoload 'gtypist-mode "gtypist-mode" nil t)
64 (add-to-list 'auto-mode-alist '("\\.typ\\'" . gtypist-mode))
65
66
67
68 --
69 gentoo-commits@g.o mailing list