SCM Repository
View of /XEmacs/packages/hack-package-index.el
Parent Directory
|
Revision Log
Revision 1.6 -
(download)
(annotate)
Wed Feb 5 08:26:43 2003 UTC (10 years, 3 months ago) by youngs
Branch: MAIN
CVS Tags: sumo-2004-02-02, sumo-2007-04-27, sumo-2004-05-17, sumo-2005-05-05, sumo-2003-06-29, sumo-2005-12-08, sumo-2005-01-18, sumo-2003-08-31, sumo-2003-04-14, sumo-2003-11-13, sumo-2003-04-12, sumo-2003-10-03, sumo-2004-08-18, sumo-2005-07-15, sumo-2005-03-07, sumo-2006-12-21, sumo-2006-05-10
Changes since 1.5: +3 -8 lines
Wed Feb 5 08:26:43 2003 UTC (10 years, 3 months ago) by youngs
Branch: MAIN
CVS Tags: sumo-2004-02-02, sumo-2007-04-27, sumo-2004-05-17, sumo-2005-05-05, sumo-2003-06-29, sumo-2005-12-08, sumo-2005-01-18, sumo-2003-08-31, sumo-2003-04-14, sumo-2003-11-13, sumo-2003-04-12, sumo-2003-10-03, sumo-2004-08-18, sumo-2005-07-15, sumo-2005-03-07, sumo-2006-12-21, sumo-2006-05-10
Changes since 1.5: +3 -8 lines
2003-02-04 Steve Youngs <youngs@xemacs.org> * Local.rules.template: Remove all the 'unsupported' stuff. The unsupported packages weren't meant to be built from the toplevel directory. * package-net-packages.el (package-net-packages-convert-index-to-ini): Ditto. * package-compile.el (package-directory-map): Ditto. * meta-iterate.rules: Ditto. * hack-package-index.el (batch-hack-package-index): Ditto. * XEmacs.rules: Ditto. * Makefile: Ditto.
;;; hack-package-index.el --- Update package-get-base package index file ;; Copyright (C) 1998 by Free Software Foundation, Inc. ;; Author: SL Baur <steve@xemacs.org> ;; Keywords: internal ;; This file is part of XEmacs. ;; XEmacs is free software; you can redistribute it and/or modify it ;; under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; XEmacs is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with XEmacs; see the file COPYING. If not, write to the Free ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ;; 02111-1307, USA. ;;; Synched up with: Not in FSF ;;; Commentary: ;; usage xemacs -batch -l hack-package-index.el -f batch-hack-package-index \ ;; package-name /path/to/package-info /path/to/package-get-base.el ;;; Code: (defvar end-of-package-marker ";;;@@@" "Marker in between entries.") (defun locate-package-entry (name) (goto-char (point-min)) (if (re-search-forward (concat "^(package-get-update-base-entry (quote\n(" name "$") nil t) (let ((from (match-beginning 0))) (re-search-forward (concat "^" end-of-package-marker "$")) (delete-region from (1+ (point-at-eol)))) (re-search-forward (concat "^" end-of-package-marker "$")) (forward-char))) (defun convert-crlf () "Convert CRLF to LF." (save-excursion (goto-char (point-min)) (while (search-forward "\r\n" nil t) (replace-match "\n" t t)))) (defun batch-hack-package-index () (let* ((package-name (pop command-line-args-left)) (package-info (pop command-line-args-left)) (package-get-base (pop command-line-args-left))) (set-buffer (get-buffer-create "*package index*")) (when (file-exists-p package-get-base) (insert-file-contents-literally package-get-base)) (when (eq (point-min) (point-max)) (insert ";; Package Index file -- Do not edit manually.\n") (insert end-of-package-marker "\n") (insert ";; Package Index file ends here\n")) (locate-package-entry package-name) (insert "))\n") (insert end-of-package-marker "\n") (forward-line -2) (insert "(package-get-update-base-entry (quote\n") (let ((length (second (insert-file-contents-literally package-info)))) (save-restriction (narrow-to-region (point) (+ (point) length)) (convert-crlf))) (write-file package-get-base))) (provide 'hack-package-index) ;;; hack-package-index.el ends here
| root@alioth.debian.org | ViewVC Help |
| Powered by ViewVC 1.0.0 |

