Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (33a49edc8e27b73f8a58b1c849ec266113269db0)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (33a49edc8e27b73f8a58b1c849ec266113269db0)
  • Date: Thu, 8 Jan 2015 11:29:37 -0600

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 1 +
emacs-lisp/FUNCTIONS | 4 ++--
emacs-lisp/w3/DEPENDS | 1 +
emacs-lisp/w3/DETAILS | 18 ++++++++++++++++++
emacs-lisp/w3/HISTORY | 23 +++++++++++++++++++++++
emacs-lisp/w3/INSTALL | 2 ++
http/w3/DEPENDS | 1 -
http/w3/DETAILS | 19 -------------------
http/w3/HISTORY | 19 -------------------
9 files changed, 47 insertions(+), 41 deletions(-)

New commits:
commit 33a49edc8e27b73f8a58b1c849ec266113269db0
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

w3 4.0.49

commit 30fd4edb2261b59c483fd1f7ef13ac9deb2430bb
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

w3: Move to emacs-lisp section

commit 54b4d8dbca58fb2332261a8fd12415598c55d0b0
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

emacs-lisp/FUNCTIONS: Search for .txi files too

diff --git a/ChangeLog b/ChangeLog
index 4927fbe..f855d77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@

2015-01-07 Ismael Luceno <ismael AT sourcemage.org>
* devel/nickle: new spell, Nickle prototyping environment
+ * w3: Moved to emacs-lisp section

2015-01-06 Pol Vinogradov <vin.public AT gmail.com>
* video/xbmc: spell deprecated [in favour of kodi]
diff --git a/emacs-lisp/FUNCTIONS b/emacs-lisp/FUNCTIONS
index 6d51acc..491b4f9 100755
--- a/emacs-lisp/FUNCTIONS
+++ b/emacs-lisp/FUNCTIONS
@@ -15,11 +15,11 @@ function default_build_emacs_lisp() {
find "$@" -maxdepth 1 -name \*.el \
-execdir emacs -Q -L . --batch -f batch-byte-compile {} + \
-execdir gzip -9 {} + \
- -o -name \*.texi -print |
+ -o \( -name \*.txi -o -name \*.texi \) -print |
while read file; do
local t=$(mktemp -p "$SOURCE_DIRECTORY")
makeinfo -o - "$file" | gzip -9 > "$t" &&
- mv "$t" "${file%.texi}.info.gz"
+ mv "$t" "${file%.t*xi}.info.gz"
done
}

diff --git a/emacs-lisp/w3/DEPENDS b/emacs-lisp/w3/DEPENDS
new file mode 100755
index 0000000..0bc4bcf
--- /dev/null
+++ b/emacs-lisp/w3/DEPENDS
@@ -0,0 +1 @@
+depends EMACS
diff --git a/emacs-lisp/w3/DETAILS b/emacs-lisp/w3/DETAILS
new file mode 100755
index 0000000..e83124a
--- /dev/null
+++ b/emacs-lisp/w3/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=w3
+ VERSION=4.0.49
+ SOURCE=$SPELL-$VERSION.tar
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=https://elpa.gnu.org/packages/$SOURCE
+
SOURCE_HASH=sha512:7755f8eebb83cf685149bcb6042a6dee6da658c567659029f4036d02d38dffcfc87f3eb333027530bad3d4b29a4f45ae3387ca8b86e7c57465aef752f64ca081
+ WEB_SITE=https://elpa.gnu.org/packages/w3.html
+ ENTERED=20021002
+ LICENSE[0]=GPL
+ KEYWORDS="emacs web http"
+ SHORT='EMACS Web Browser'
+cat << EOF
+Emacs/W3 is a full-featured web browser, written entirely in Emacs-Lisp, that
+supports all the bells and whistles you will find in use on the web today,
+including frames, tables, stylesheets, and much more. Emacs/W3 runs on most
+major operating systems, including almost any flavor of Unix, Windows NT/95,
+AmigaDOS, OS/2, and VMS.
+EOF
diff --git a/emacs-lisp/w3/HISTORY b/emacs-lisp/w3/HISTORY
new file mode 100644
index 0000000..f6ce21a
--- /dev/null
+++ b/emacs-lisp/w3/HISTORY
@@ -0,0 +1,23 @@
+2015-01-08 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 4.0.49
+ fixed WEB_SITE
+ * INSTALL: Install stylesheet and icons
+
+2010-09-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: fix dependency on emacsen
+
+2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
+ * DETAILS: (automated) Add KEYWORDS
+
+2005-11-29 Seth Woolley <seth AT tautology.org>
+ * DETAILS: MD5 -> SHA512
+
+2003-07-26 Sergey Lipnevich <sergey AT sourcemage.org>
+ * Cosmetic updates.
+ SOURCE now has version in it.
+
+2002-10-02 Eric Sandall <sandalle AT sourcemage.org>
+ * Added to grimoire
+
+2002-08-16 Joel Mayes <bluebird AT optushome.com.au>
+ * Created spell
diff --git a/emacs-lisp/w3/INSTALL b/emacs-lisp/w3/INSTALL
new file mode 100755
index 0000000..7e66d73
--- /dev/null
+++ b/emacs-lisp/w3/INSTALL
@@ -0,0 +1,2 @@
+default_install &&
+emacs_lisp_install etc
diff --git a/http/w3/DEPENDS b/http/w3/DEPENDS
deleted file mode 100755
index 0bc4bcf..0000000
--- a/http/w3/DEPENDS
+++ /dev/null
@@ -1 +0,0 @@
-depends EMACS
diff --git a/http/w3/DETAILS b/http/w3/DETAILS
deleted file mode 100755
index adbc8ec..0000000
--- a/http/w3/DETAILS
+++ /dev/null
@@ -1,19 +0,0 @@
- SPELL=w3
- VERSION=4.0pre.47
- SOURCE=$SPELL-$VERSION.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=ftp://ftp.xemacs.org/pub/xemacs/emacs-w3/$SOURCE
-
SOURCE_HASH=sha512:8ac2f58bebaa98bb3c7dee80578910ac04152f2d5844140f9bf419831b3e1344634781fd4d0145d52676cc21e8845858e1321b98665e19c6136dacfea59ba38f
- WEB_SITE=http://www.cs.indiana.edu/elisp/w3/docs.html
- ENTERED=20021002
- UPDATED=20030726
- LICENSE[0]=GPL
- KEYWORDS="emacs web http"
- SHORT='EMACS Web Browser'
-cat << EOF
-Emacs/W3 is a full-featured web browser, written entirely in Emacs-Lisp, that
-supports all the bells and whistles you will find in use on the web today,
-including frames, tables, stylesheets, and much more. Emacs/W3 runs on most
-major operating systems, including almost any flavor of Unix, Windows NT/95,
-AmigaDOS, OS/2, and VMS.
-EOF
diff --git a/http/w3/HISTORY b/http/w3/HISTORY
deleted file mode 100644
index 4192df4..0000000
--- a/http/w3/HISTORY
+++ /dev/null
@@ -1,19 +0,0 @@
-2010-09-27 Ismael Luceno <ismael AT sourcemage.org>
- * DEPENDS: fix dependency on emacsen
-
-2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
- * DETAILS: (automated) Add KEYWORDS
-
-2005-11-29 Seth Woolley <seth AT tautology.org>
- * DETAILS: MD5 -> SHA512
-
-2003-07-26 Sergey Lipnevich <sergey AT sourcemage.org>
- * Cosmetic updates.
- SOURCE now has version in it.
-
-2002-10-02 Eric Sandall <sandalle AT sourcemage.org>
- * Added to grimoire
-
-2002-08-16 Joel Mayes <bluebird AT optushome.com.au>
- * Created spell
-



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (33a49edc8e27b73f8a58b1c849ec266113269db0), Ismael Luceno, 01/08/2015

Archive powered by MHonArc 2.6.24.

Top of Page