rpms/sbcl/devel sbcl-0.9.14-LIB_DIR.patch, NONE, 1.1 .cvsignore, 1.13, 1.14 sbcl.spec, 1.47, 1.48 sources, 1.15, 1.16 sbcl-0.9.13-LIB_DIR.patch, 1.1, NONE sbcl-0.9.13-PIC.patch, 1.1, NONE

Rex Dieter (rdieter) fedora-extras-commits at redhat.com
Mon Jun 26 20:33:51 UTC 2006


Author: rdieter

Update of /cvs/extras/rpms/sbcl/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv29323

Modified Files:
	.cvsignore sbcl.spec sources 
Added Files:
	sbcl-0.9.14-LIB_DIR.patch 
Removed Files:
	sbcl-0.9.13-LIB_DIR.patch sbcl-0.9.13-PIC.patch 
Log Message:
* Mon Jun 26 2006 Rex Dieter <rexdieter[AT]users.sf.net> 0.9.14-1
- 0.9.14


sbcl-0.9.14-LIB_DIR.patch:

--- NEW FILE sbcl-0.9.14-LIB_DIR.patch ---
--- sbcl-0.9.14/install.sh.LIB_DIR	2006-06-12 13:18:21.000000000 -0500
+++ sbcl-0.9.14/install.sh	2006-06-26 14:34:15.000000000 -0500
@@ -23,9 +23,10 @@
 MAN_DIR=${MAN_DIR-$INSTALL_ROOT/share/man}
 INFO_DIR=${INFO_DIR-$INSTALL_ROOT/share/info}
 DOC_DIR=${DOC_DIR-$INSTALL_ROOT/share/doc/sbcl}
+LIB_DIR=${LIB_DIR-$INSTALL_ROOT/lib}
 
 # Does the environment look sane?
-if [ -n "$SBCL_HOME" -a "$INSTALL_ROOT/lib/sbcl" != "$SBCL_HOME" ];then
+if [ -n "$SBCL_HOME" -a "$LIB_DIR/sbcl" != "$SBCL_HOME" ];then
    echo SBCL_HOME environment variable is set, and conflicts with INSTALL_ROOT.
    echo Aborting installation.  Unset one or reset the other, then try again
    echo INSTALL_ROOT="$INSTALL_ROOT"
@@ -46,10 +47,10 @@
     exit 1
 fi
 
-SBCL_HOME=$INSTALL_ROOT/lib/sbcl
+SBCL_HOME=$LIB_DIR/sbcl
 export SBCL_HOME INSTALL_ROOT
 ensure_dirs $BUILD_ROOT$INSTALL_ROOT $BUILD_ROOT$INSTALL_ROOT/bin \
-    $BUILD_ROOT$INSTALL_ROOT/lib  \
+    $BUILD_ROOT$LIB_DIR  \
     $BUILD_ROOT$MAN_DIR $BUILD_ROOT$MAN_DIR/man1 \
     $BUILD_ROOT$INFO_DIR $BUILD_ROOT$DOC_DIR \
     $BUILD_ROOT$DOC_DIR/html \
@@ -89,7 +90,7 @@
 echo
 echo "SBCL has been installed:"
 echo " binary $BUILD_ROOT$INSTALL_ROOT/bin/$RUNTIME"
-echo " core and contribs in $BUILD_ROOT$INSTALL_ROOT/lib/sbcl/"
+echo " core and contribs in $BUILD_ROOT$LIB_DIR/sbcl" 
 
 # Installing manual & misc bits of documentation
 #


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/sbcl/devel/.cvsignore,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- .cvsignore	30 May 2006 20:24:54 -0000	1.13
+++ .cvsignore	26 Jun 2006 20:33:51 -0000	1.14
@@ -1,4 +1,4 @@
-sbcl-0.9.13-source.tar.bz2
 sbcl-0.9.11-x86-64-linux-binary.tar.bz2 
 sbcl-0.9.11-x86-linux-binary.tar.bz2
 sbcl-0.9.8-powerpc-linux-binary.tar.bz2
+sbcl-0.9.14-source.tar.bz2


Index: sbcl.spec
===================================================================
RCS file: /cvs/extras/rpms/sbcl/devel/sbcl.spec,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- sbcl.spec	20 Jun 2006 13:16:11 -0000	1.47
+++ sbcl.spec	26 Jun 2006 20:33:51 -0000	1.48
@@ -9,8 +9,8 @@
 
 Name: 	 sbcl
 Summary: Steel Bank Common Lisp
-Version: 0.9.13
-Release: 3%{?dist}
+Version: 0.9.14
+Release: 1%{?dist}
 
 License: BSD/MIT
 Group: 	 Development/Languages
@@ -56,13 +56,11 @@
 Patch1: sbcl-0.8.18-default-sbcl-home.patch
 Patch2: sbcl-0.9.5-personality.patch
 Patch3: sbcl-0.9.5-optflags.patch
-Patch4: sbcl-0.9.13-LIB_DIR.patch
+Patch4: sbcl-0.9.14-LIB_DIR.patch
 
 Patch6: sbcl-0.9.5-verbose-build.patch
 # Allow override of contrib test failure(s)
 Patch7: sbcl-0.9.9-permissive.patch
-# use -fPIC in threads.impure.lisp
-Patch8: sbcl-0.9.13-PIC.patch
 
 Requires(post): /sbin/install-info
 Requires(preun): /sbin/install-info
@@ -91,10 +89,8 @@
 %patch2 -p1 -b .personality
 %patch3 -p1 -b .optflags
 %patch4 -p1 -b .LIB_DIR
-#patch5 -p1 -b .make-config-ppc
 %{?sbcl_verbose:%patch6 -p1 -b .verbose-build}
 %patch7 -p1 -b .permissive
-%patch8 -p1 -b .PIC
 
 # Enable sb-thread
 %ifarch %{ix86} x86_64
@@ -219,6 +215,9 @@
 
 
 %changelog
+* Mon Jun 26 2006 Rex Dieter <rexdieter[AT]users.sf.net> 0.9.14-1
+- 0.9.14
+
 * Tue Jun 20 2006 Rex Dieter <rexdieter[AT]users.sf.net> 0.9.13-3
 - use -fPIC in threads.impure.lisp
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/sbcl/devel/sources,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- sources	30 May 2006 20:24:54 -0000	1.15
+++ sources	26 Jun 2006 20:33:51 -0000	1.16
@@ -1 +1 @@
-1423210cc88b6c373f1db3dccc76acf6  sbcl-0.9.13-source.tar.bz2
+d37a369e387286a0ceca51dbd8d1b173  sbcl-0.9.14-source.tar.bz2


--- sbcl-0.9.13-LIB_DIR.patch DELETED ---


--- sbcl-0.9.13-PIC.patch DELETED ---




More information about the fedora-extras-commits mailing list