[csw-devel] SF.net SVN: gar:[5598] csw/mgar/pkg/cswclassutils/trunk
bdwalton at users.sourceforge.net
bdwalton at users.sourceforge.net
Fri Jul 17 20:18:26 CEST 2009
Revision: 5598
http://gar.svn.sourceforge.net/gar/?rev=5598&view=rev
Author: bdwalton
Date: 2009-07-17 18:18:25 +0000 (Fri, 17 Jul 2009)
Log Message:
-----------
reverting the addition of cswelispcompile; downgrade version to previous value
Modified Paths:
--------------
csw/mgar/pkg/cswclassutils/trunk/Makefile
csw/mgar/pkg/cswclassutils/trunk/checksums
csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.prototype
Removed Paths:
-------------
csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswelispcompile
csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswelispcompile
Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile
===================================================================
--- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-07-17 12:47:39 UTC (rev 5597)
+++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-07-17 18:18:25 UTC (rev 5598)
@@ -1,5 +1,5 @@
GARNAME = cswclassutils
-GARVERSION = 1.18
+GARVERSION = 1.17
CATEGORIES = utils
DESCRIPTION = CSW class action utilities
@@ -19,8 +19,7 @@
WORKSRC = $(WORKDIR)
SPKG_SOURCEURL = http://www.opencsw.org
-CASLIST = cswcpsampleconf cswpreserveconf cswinitsmf cswusergroup cswpycompile
-CASLIST += cswelispcompile
+CASLIST = cswcpsampleconf cswpreserveconf cswinitsmf cswusergroup cswpycompile
install-custom:
@echo " ==> Installing $(GARNAME) (custom)"
Modified: csw/mgar/pkg/cswclassutils/trunk/checksums
===================================================================
--- csw/mgar/pkg/cswclassutils/trunk/checksums 2009-07-17 12:47:39 UTC (rev 5597)
+++ csw/mgar/pkg/cswclassutils/trunk/checksums 2009-07-17 18:18:25 UTC (rev 5598)
@@ -1,2 +1,2 @@
38e0bf6e204e003254ed246df2b4e1f9 download/CSWcswclassutils.gspec
-1784907098d9cf9f5784e9a0fbc6495f download/CSWcswclassutils.prototype
+854d77b21b177b15fd2aac39339a0c8c download/CSWcswclassutils.prototype
Deleted: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswelispcompile
===================================================================
--- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswelispcompile 2009-07-17 12:47:39 UTC (rev 5597)
+++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswelispcompile 2009-07-17 18:18:25 UTC (rev 5598)
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# i.elispcompile: Class action script for installing emacs .el files
-# and automatically compiling them to their .elc equivalents
-#
-# $Id$
-#
-# Written By: Ben Walton <bwalton at opencsw.org>
-#
-# Release History:
-# 2009-07-11 - Initial Release
-
-EMACS=${PKG_INSTALL_ROOT}/opt/csw/bin/emacs
-
-if [ ! -f "${EMACS}" -o ! -x "${EMACS}" ]; then
- echo "Could not find a working emacs at ${EMACS}."
- exit 2
-fi
-
-echo "About to install and compile .el files in package ${PKGINST}"
-
-while read src dest; do
- elc="${dest}"c
- echo "${dest}"
-
- /usr/bin/cp -p "$src" "$dest" || exit 2
- ${EMACS} -batch -f batch-byte-compile "$dest" || exit 2
-
- set -- `grep "^${dest}" /var/sadm/install/contents`
- chmod $4 ${elc}
- chown $5:$6 ${elc}
-done
-
-exit 0
Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.prototype
===================================================================
--- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.prototype 2009-07-17 12:47:39 UTC (rev 5597)
+++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.prototype 2009-07-17 18:18:25 UTC (rev 5598)
@@ -17,8 +17,6 @@
f none /usr/sadm/install/scripts/r.cswpreserveconf 0555 root sys
f none /usr/sadm/install/scripts/i.cswpycompile 0555 root sys
f none /usr/sadm/install/scripts/r.cswpycompile 0555 root sys
-f none /usr/sadm/install/scripts/i.cswelispcompile 0555 root sys
-f none /usr/sadm/install/scripts/r.cswelispcompile 0555 root sys
d none /opt/csw/share 0755 root bin
d none /opt/csw/share/doc 0755 root bin
d none /opt/csw/share/doc/cswclassutils 0755 root bin
Deleted: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswelispcompile
===================================================================
--- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswelispcompile 2009-07-17 12:47:39 UTC (rev 5597)
+++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswelispcompile 2009-07-17 18:18:25 UTC (rev 5598)
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# r.elispcompile: Class action script for removing emacs .el and
-# their automatically generated .elc files
-#
-# $Id$
-#
-# Written By: Ben Walton <bwalton at opencsw.org>
-#
-# Release History
-# 2009-07-11 - Initial Release
-
-while read dest; do
- elc="${dest}"c
-
- if [ -f "${elc}" ]; then
- echo "${elc}"
- /usr/bin/rm -f "${elc}" || exit 2
- fi
-
- echo "${dest}"
- /usr/bin/rm -f "$dest" || exit 2
-done
-
-exit 0
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list