wok-current rev 22691
updated emacs again (24.3 -> 26.3)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jan 20 17:26:23 2020 +0100 (2020-01-20) |
parents | 4bd6f9e1ae03 |
children | bb2badbb79d8 |
files | emacs-help/receipt emacs/receipt |
line diff
1.1 --- a/emacs-help/receipt Mon Jan 20 17:02:02 2020 +0100 1.2 +++ b/emacs-help/receipt Mon Jan 20 17:26:23 2020 +0100 1.3 @@ -1,46 +1,50 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="emacs-help" 1.7 -VERSION="24.3" 1.8 +VERSION="26.3" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="The GNU Emacs editor - Help files" 1.11 +SHORT_DESC="The GNU Emacs editor - Help files." 1.12 MAINTAINER="domcox@slitaz.org" 1.13 LICENSE="GPL3" 1.14 -WEB_SITE="http://www.gnu.org/software/emacs/" 1.15 -WANTED="emacs" 1.16 +WEB_SITE="https://www.gnu.org/software/emacs/" 1.17 1.18 DEPENDS="emacs" 1.19 +WANTED="emacs" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 # Help files 1.25 echo -n "Copying info files" 1.26 - mkdir -p $fs/usr/share/info && \ 1.27 - cp -a $install/usr/share/info/* $fs/usr/share/info && \ 1.28 + mkdir -p $fs/usr/share/info && 1.29 + cp -a $install/usr/share/info/* $fs/usr/share/info && 1.30 status 1.31 + 1.32 # Tutorial 1.33 echo -n "Copying tutorial files" 1.34 - mkdir -p $fs/usr/share/emacs/$VERSION/etc && \ 1.35 + mkdir -p $fs/usr/share/emacs/$VERSION/etc && 1.36 cp -a $install/usr/share/emacs/$VERSION/etc/tutorials \ 1.37 - $fs/usr/share/emacs/$VERSION/etc 1.38 + $fs/usr/share/emacs/$VERSION/etc 1.39 status 1.40 + 1.41 # refcards 1.42 echo -n "Copying refcards" 1.43 - mkdir -p $fs/usr/share/emacs/$VERSION/etc/refcards && \ 1.44 + mkdir -p $fs/usr/share/emacs/$VERSION/etc/refcards && 1.45 cp -a $install/usr/share/emacs/$VERSION/etc/refcards/*pdf \ 1.46 - $fs/usr/share/emacs/$VERSION/etc/refcards 1.47 + $fs/usr/share/emacs/$VERSION/etc/refcards 1.48 status 1.49 - # Doc 1.50 - echo -n "Copying doc files" 1.51 - DOC_FILES="COOKIES DOC-$VERSION.1 DEVEL.HUMOR ERC-NEWS ETAGS.EBNF \ 1.52 -GNUS-NEWS HELLO INTERVIEW JOKES LINUX-GNU MH-E-NEWS MORE.STUFF MOTIVATION \ 1.53 + 1.54 + # Documentation 1.55 + echo -n "Copying documentation files" 1.56 + DOC_FILES="DOC DEVEL.HUMOR ERC-NEWS ETAGS.EBNF \ 1.57 +GNUS-NEWS HELLO JOKES LINUX-GNU MH-E-NEWS MORE.STUFF \ 1.58 NEWS.* NXML-NEWS ORG-NEWS PROBLEMS TERMS THE-GNU-PROJECT WHY-FREE \ 1.59 compilation.txt gnus-tut.txt grep.txt" 1.60 - for file in $DOC_FILES; do 1.61 + for file in $DOC_FILES 1.62 + do 1.63 cp -a $install/usr/share/emacs/$VERSION/etc/$file \ 1.64 - $fs/usr/share/emacs/$VERSION/etc 1.65 - done 1.66 + $fs/usr/share/emacs/$VERSION/etc 1.67 + done 1.68 status 1.69 } 1.70
2.1 --- a/emacs/receipt Mon Jan 20 17:02:02 2020 +0100 2.2 +++ b/emacs/receipt Mon Jan 20 17:26:23 2020 +0100 2.3 @@ -78,9 +78,9 @@ 2.4 lisp/cedet/semantic lisp/cedet/semantic/analyze lisp/cedet/semantic/bovine \ 2.5 lisp/cedet/semantic/decorate lisp/cedet/semantic/symref lisp/cedet/srecode \ 2.6 lisp/cedet/semantic/wisent lisp/emacs-lisp lisp/emulation lisp/erc lisp/eshell \ 2.7 -lisp/gnus lisp/international lisp/language lisp/mail lisp/mh-e lisp/net \ 2.8 -lisp/nxml lisp/obsolete lisp/org lisp/play lisp/progmodes lisp/textmodes \ 2.9 -lisp/url lisp/vc" 2.10 +lisp/gnus lisp/international lisp/language lisp/leim lisp/leim/ja-dic lisp/leim/quail \ 2.11 +lisp/mail lisp/mh-e lisp/net lisp/nxml lisp/obsolete lisp/org lisp/play \ 2.12 +lisp/progmodes lisp/textmodes lisp/url lisp/vc" 2.13 for dir in $LISP_DIR 2.14 do 2.15 echo -n "Copying $dir files" 2.16 @@ -116,28 +116,29 @@ 2.17 status 2.18 2.19 # leim files 2.20 - echo -n "Copying leim files" 2.21 - mkdir -p $fs/usr/share/$PACKAGE/$VERSION/leim && 2.22 - cp -a $install/usr/share/$PACKAGE/$VERSION/leim/*.el \ 2.23 - $fs/usr/share/$PACKAGE/$VERSION/leim 2.24 - status 2.25 - LEIM_FILES="leim/ja-dic leim/quail" 2.26 - for dir in $LEIM_FILES 2.27 - do 2.28 - echo -n "Copying $dir files" 2.29 - mkdir -p $fs/usr/share/$PACKAGE/$VERSION/$dir && 2.30 - cp -a $install/usr/share/$PACKAGE/$VERSION/$dir/*.elc \ 2.31 - $fs/usr/share/$PACKAGE/$VERSION/$dir && \ 2.32 - for file in COPYING README TODO 2.33 - do 2.34 - if [ -e $install/usr/share/$PACKAGE/$VERSION/$dir/$file ] 2.35 - then 2.36 - cp -a $install/usr/share/$PACKAGE/$VERSION/$dir/$file \ 2.37 - $fs/usr/share/$PACKAGE/$VERSION/$dir 2.38 - fi 2.39 - done 2.40 - status 2.41 - done 2.42 + # 26.3 copied with lisp files 2.43 +# echo -n "Copying leim files" 2.44 +# mkdir -p $fs/usr/share/$PACKAGE/$VERSION/leim && 2.45 +# cp -a $install/usr/share/$PACKAGE/$VERSION/leim/*.el \ 2.46 +# $fs/usr/share/$PACKAGE/$VERSION/leim 2.47 +# status 2.48 +# LEIM_FILES="leim/ja-dic leim/quail" 2.49 +# for dir in $LEIM_FILES 2.50 +# do 2.51 +# echo -n "Copying $dir files" 2.52 +# mkdir -p $fs/usr/share/$PACKAGE/$VERSION/$dir && 2.53 +# cp -a $install/usr/share/$PACKAGE/$VERSION/$dir/*.elc \ 2.54 +# $fs/usr/share/$PACKAGE/$VERSION/$dir && \ 2.55 +# for file in COPYING README TODO 2.56 +# do 2.57 +# if [ -e $install/usr/share/$PACKAGE/$VERSION/$dir/$file ] 2.58 +# then 2.59 +# cp -a $install/usr/share/$PACKAGE/$VERSION/$dir/$file \ 2.60 +# $fs/usr/share/$PACKAGE/$VERSION/$dir 2.61 +# fi 2.62 +# done 2.63 +# status 2.64 +# done 2.65 2.66 # Configuration files 2.67 echo -n "Copying configuration files" 2.68 @@ -186,7 +187,7 @@ 2.69 done 2.70 2.71 # Licence 2.72 - GNU_FILES="AUTHORS CENSORSHIP COPYING DISTRIB FTP GNU ORDERS README SERVICE" 2.73 + GNU_FILES="AUTHORS CENSORSHIP COPYING DISTRIB FTP GNU ORDERS README" 2.74 echo -n "Copying License files" 2.75 for file in $GNU_FILES 2.76 do