[DRE-commits] [SCM] rdtool.git branch, master, updated. debian/0.6.34-2-2-gdd02be5

Taku YASUI tach at debian.org
Sat May 19 16:13:17 UTC 2012


The following commit has been merged in the master branch:
commit 20a1b0c05086dc3259e55de77d2a5a0bc2fc807e
Author: Taku YASUI <tach at debian.org>
Date:   Sun May 20 01:06:30 2012 +0900

    Use *.el symlink instead of copy

diff --git a/debian/changelog b/debian/changelog
index cb2e819..0f5e1ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+rdtool (0.6.34-3) UNRELEASED; urgency=low
+
+  * rdtool-elisp: Use *.el symlink instead of copy for linking source on
+    describe-function. (closes: #671571)
+
+ -- Taku YASUI <tach at debian.org>  Sun, 20 May 2012 01:05:13 +0900
+
 rdtool (0.6.34-2) unstable; urgency=low
 
   * Add librd-html-ext-ruby1.8 dummy package for replacing it.
diff --git a/debian/rdtool-elisp.emacsen-install b/debian/rdtool-elisp.emacsen-install
index d2dcd86..354de93 100644
--- a/debian/rdtool-elisp.emacsen-install
+++ b/debian/rdtool-elisp.emacsen-install
@@ -21,6 +21,7 @@ fi
 FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile"
 
 ELDIR=/usr/share/emacs/site-lisp/${PACKAGE}
+TOELDIR=../../../emacs/site-lisp/$PACKAGE
 ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
 
 # Install-info-altdir does not actually exist. 
@@ -33,13 +34,15 @@ ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
 install -m 755 -d ${ELCDIR}
 cd ${ELDIR}
 FILES=`echo *.el`
-cp ${FILES} ${ELCDIR}
 cd ${ELCDIR}
+for f in $FILES; do
+    ln -s $TOELDIR/$f .
+done
 
 cat << EOF > path.el
 (setq load-path (cons "." load-path) byte-compile-warnings nil)
 EOF
 ${FLAVOR} ${FLAGS} ${FILES}
-rm -f *.el path.el
+rm -f path.el
 
 exit 0

-- 
rdtool.git



More information about the Pkg-ruby-extras-commits mailing list