1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

[maint] Remove unused script guile-doc-snarf.

* doc/ref/tools.texi (Doc Snarfing): Don't mention guile-doc-snarf.

* configure.ac (libguile/guile-doc-snarf): Delete ‘GUILE_CONFIG_SCRIPT’.

* libguile/Makefile.am (noinst_SCRIPTS): Remove guile-doc-snarf.
* libguile/.gitignore: Remove guile-doc-snarf.
* libguile/guile-doc-snarf.in: Delete file.

* module/scripts/doc-snarf.scm: Comment munging; nfc.

* AUTHORS: Update.
This commit is contained in:
Thien-Thi Nguyen 2010-07-22 21:02:45 +02:00
parent 3d9f7bd57e
commit 395afce9f2
7 changed files with 3 additions and 41 deletions

View file

@ -270,7 +270,7 @@ In the subdirectory scripts, wrote:
In the subdirectory scripts, changes to: In the subdirectory scripts, changes to:
doc-snarf doc-snarf
In the subdirectory libguile, changes to: In the subdirectory libguile, changes to:
guile-doc-snarf.in regex-posix.c regex-posix.c
In the subdirectory doc, changes to: In the subdirectory doc, changes to:
intro.texi preface.texi intro.texi preface.texi
scheme-modules.texi scheme-procedures.texi scheme-modules.texi scheme-procedures.texi

View file

@ -1650,7 +1650,6 @@ GUILE_CONFIG_SCRIPT([meta/uninstalled-env])
GUILE_CONFIG_SCRIPT([meta/gdb-uninstalled-guile]) GUILE_CONFIG_SCRIPT([meta/gdb-uninstalled-guile])
GUILE_CONFIG_SCRIPT([meta/guile-tools]) GUILE_CONFIG_SCRIPT([meta/guile-tools])
GUILE_CONFIG_SCRIPT([libguile/guile-snarf]) GUILE_CONFIG_SCRIPT([libguile/guile-snarf])
GUILE_CONFIG_SCRIPT([libguile/guile-doc-snarf])
GUILE_CONFIG_SCRIPT([libguile/guile-snarf-docs]) GUILE_CONFIG_SCRIPT([libguile/guile-snarf-docs])
GUILE_CONFIG_SCRIPT([test-suite/standalone/test-use-srfi]) GUILE_CONFIG_SCRIPT([test-suite/standalone/test-use-srfi])
GUILE_CONFIG_SCRIPT([test-suite/standalone/test-fast-slot-ref]) GUILE_CONFIG_SCRIPT([test-suite/standalone/test-fast-slot-ref])

View file

@ -288,7 +288,6 @@ Here is a list of what does what according to @file{libguile/Makefile.am}:
@item ../scripts/snarf-check-and-output-texi makes guile.texi @item ../scripts/snarf-check-and-output-texi makes guile.texi
@item ../scripts/snarf-check-and-output-texi makes guile-procedures.txt @item ../scripts/snarf-check-and-output-texi makes guile-procedures.txt
@item guile-func-name-check checks source snarf-syntax integrity (optional?) @item guile-func-name-check checks source snarf-syntax integrity (optional?)
@item guile-doc-snarf calls guile-snarf-docs (to make .doc) and guile-snarf
@end itemize @end itemize
Note that for guile-1.4, a completely different approach was used! All this Note that for guile-1.4, a completely different approach was used! All this

1
libguile/.gitignore vendored
View file

@ -4,7 +4,6 @@ cpp_sig_symbols.c
gen-scmconfig gen-scmconfig
gen-scmconfig.h gen-scmconfig.h
guile guile
guile-doc-snarf
guile-func-name-check guile-func-name-check
guile-procedures.texi guile-procedures.texi
guile-snarf guile-snarf

View file

@ -593,7 +593,7 @@ bin_SCRIPTS = guile-snarf
# We can re-enable install for some of these if/when they are documented # We can re-enable install for some of these if/when they are documented
# and people feel like maintaining them. For now, this is not the case. # and people feel like maintaining them. For now, this is not the case.
noinst_SCRIPTS = guile-doc-snarf guile-snarf-docs guile-func-name-check noinst_SCRIPTS = guile-snarf-docs guile-func-name-check
EXTRA_DIST = ChangeLog-scm ChangeLog-threads \ EXTRA_DIST = ChangeLog-scm ChangeLog-threads \
ChangeLog-1996-1999 ChangeLog-2000 ChangeLog-2008 \ ChangeLog-1996-1999 ChangeLog-2000 ChangeLog-2008 \

View file

@ -1,35 +0,0 @@
#!/bin/sh
# Extract the initialization actions for builtin things.
#
# Copyright (C) 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 3, or (at
# your option) any later version.
#
# This program 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this software; see the file COPYING.LESSER. If
# not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301 USA
fullfilename=$1
# strip path to source directory
filename=`basename $fullfilename`
no_ext=`echo $filename | sed 's/\.[^.]*$//g'`
dot_doc=${no_ext}.doc
bindir=`dirname $0`
${bindir}/guile-snarf-docs "$@" > $dot_doc
${bindir}/guile-snarf "$@"
# guile-doc-snarf ends here

View file

@ -70,7 +70,7 @@ This procedure foos, or bars, depending on the argument @var{braz}.
;; TODO: Convert option lines to alist. ;; TODO: Convert option lines to alist.
;; More parameterization. ;; More parameterization.
;; ../libguile/guile-doc-snarf emulation ;; (maybe) Use in Guile build itself.
(define doc-snarf-version "0.0.2") ; please update before publishing! (define doc-snarf-version "0.0.2") ; please update before publishing!