summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Kennedy <mkennedy@gentoo.org>2005-04-11 07:08:39 +0000
committerMatthew Kennedy <mkennedy@gentoo.org>2005-04-11 07:08:39 +0000
commitacc074174c2ac180272ca84df76b9b34a188ef0f (patch)
treeba3fc760b1f75cd40e52f2429b4801516eeec252 /dev-lisp/cl-mcclim/files
parentmake sure the skip patch dir is auto-created for us (diff)
downloadhistorical-acc074174c2ac180272ca84df76b9b34a188ef0f.tar.gz
historical-acc074174c2ac180272ca84df76b9b34a188ef0f.tar.bz2
historical-acc074174c2ac180272ca84df76b9b34a188ef0f.zip
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-lisp/cl-mcclim/files')
-rw-r--r--dev-lisp/cl-mcclim/files/0.9.1-mcclim.asd-cmucl.patch23
-rw-r--r--dev-lisp/cl-mcclim/files/0.9.20040603/50mcclim-gentoo.el7
-rw-r--r--dev-lisp/cl-mcclim/files/0.9.20041227-gentoo.patch136
-rw-r--r--dev-lisp/cl-mcclim/files/0.9/system.lisp-gentoo.patch24
-rw-r--r--dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.91
-rw-r--r--dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.12
-rw-r--r--dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.200406033
-rw-r--r--dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.200412272
-rw-r--r--dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.200502022
9 files changed, 25 insertions, 175 deletions
diff --git a/dev-lisp/cl-mcclim/files/0.9.1-mcclim.asd-cmucl.patch b/dev-lisp/cl-mcclim/files/0.9.1-mcclim.asd-cmucl.patch
new file mode 100644
index 000000000000..4a625c7ba6fa
--- /dev/null
+++ b/dev-lisp/cl-mcclim/files/0.9.1-mcclim.asd-cmucl.patch
@@ -0,0 +1,23 @@
+diff -ur cl-mcclim-0.9.1.orig.orig/mcclim.asd cl-mcclim-0.9.1.orig/mcclim.asd
+--- cl-mcclim-0.9.1.orig.orig/mcclim.asd 2005-04-11 01:45:44.000000000 -0500
++++ cl-mcclim-0.9.1.orig/mcclim.asd 2005-04-11 01:46:54.000000000 -0500
+@@ -35,16 +35,8 @@
+ ;;; Legacy CMUCL support stuff
+ #+cmu
+ (progn
+- (unless (fboundp 'ext:stream-read-char)
+- (unless (ignore-errors (ext:search-list "gray-streams:"))
+- (setf (ext:search-list "gray-streams:")
+- '("target:pcl/" "library:subsystems/")))
+- (if (fboundp 'extensions:without-package-locks)
+- (extensions:without-package-locks
+- (load "gray-streams:gray-streams-library"))
+- (load "gray-streams:gray-streams-library")))
+- #-clx
+- (require :clx)
++ (asdf:oos 'asdf:load-op :cmucl-graystream)
++ (asdf:oos 'asdf:load-op :cmucl-clx)
+ #+mp (when (eq mp::*initial-process* mp::*current-process*)
+ (format t "~%~%You need to run (mp::startup-idle-and-top-level-loops) to start up the multiprocessing support.~%~%")))
+
+Only in cl-mcclim-0.9.1.orig: mcclim.asd~
diff --git a/dev-lisp/cl-mcclim/files/0.9.20040603/50mcclim-gentoo.el b/dev-lisp/cl-mcclim/files/0.9.20040603/50mcclim-gentoo.el
deleted file mode 100644
index ffb5076201d1..000000000000
--- a/dev-lisp/cl-mcclim/files/0.9.20040603/50mcclim-gentoo.el
+++ /dev/null
@@ -1,7 +0,0 @@
-
-;; mcclim site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(load-library "indent-clim")
-(load-library "climbols")
-
diff --git a/dev-lisp/cl-mcclim/files/0.9.20041227-gentoo.patch b/dev-lisp/cl-mcclim/files/0.9.20041227-gentoo.patch
deleted file mode 100644
index b39c1063fbef..000000000000
--- a/dev-lisp/cl-mcclim/files/0.9.20041227-gentoo.patch
+++ /dev/null
@@ -1,136 +0,0 @@
-diff -ur cl-mcclim-0.9+cvs.2004.12.27.orig.orig/Backends/CLX/system.lisp cl-mcclim-0.9+cvs.2004.12.27.orig/Backends/CLX/system.lisp
---- cl-mcclim-0.9+cvs.2004.12.27.orig.orig/Backends/CLX/system.lisp 2004-12-27 03:44:13.000000000 -0600
-+++ cl-mcclim-0.9+cvs.2004.12.27.orig/Backends/CLX/system.lisp 2005-01-04 20:11:44.472818141 -0600
-@@ -15,12 +15,13 @@
- ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- ;;; Boston, MA 02111-1307 USA.
-
--(in-package :common-lisp-user)
-+(in-package #:clim-system)
-
- #+:excl(require :clx)
- #+:excl(require :loop)
-
--(clim-defsystem (:clim-clx :depends-on (:clim #+(and sbcl asdf) :clx))
-+#+(and (or sbcl cmu) asdf common-lisp-controller)
-+(clim-defsystem (:clim-clx :depends-on (:clim :clx))
- "Backends/CLX/package"
- "Backends/CLX/keysyms-common"
- "Backends/CLX/keysyms"
-diff -ur cl-mcclim-0.9+cvs.2004.12.27.orig.orig/debian/mcclim.asd cl-mcclim-0.9+cvs.2004.12.27.orig/debian/mcclim.asd
---- cl-mcclim-0.9+cvs.2004.12.27.orig.orig/debian/mcclim.asd 2005-01-04 10:57:04.000000000 -0600
-+++ cl-mcclim-0.9+cvs.2004.12.27.orig/debian/mcclim.asd 2005-01-04 20:09:28.446124914 -0600
-@@ -22,64 +22,37 @@
- ;;; Modified in 2004 by Milan Zamazal <pdm@debian.org> for Debian installation.
- ;;; Make diff against ../system.lisp to get the detailed modification report.
-
--(in-package :common-lisp-user)
-+(defpackage #:clim-system
-+ (:use #:asdf
-+ #:common-lisp))
-+
-+(in-package #:clim-system)
-
- (defparameter *clim-directory* (directory-namestring *load-truename*))
-
--#+cmu
--(progn
-- (unless (fboundp 'ext:stream-read-char)
-- (asdf:operate 'asdf:load-op :cmucl-graystream)
-- #+nil
-- (unless (ignore-errors (ext:search-list "gray-streams:"))
-- (setf (ext:search-list "gray-streams:")
-- '("target:pcl/" "library:subsystems/")))
-- #+nil
-- (if (fboundp 'without-package-locks)
-- (without-package-locks
-- (load "gray-streams:gray-streams-library"))
-- (load "gray-streams:gray-streams-library")))
-- #-clx
-- (asdf:operate 'asdf:load-op :cmucl-clx)
-- #-(or mk-defsystem asdf)
-- (load "library:subsystems/defsystem")
-- #+mp (when (eq mp::*initial-process* mp::*current-process*)
-- (format t "~%~%You need to run (mp::startup-idle-and-top-level-loops) to start up the multiprocessing support.~%~%")))
-+;; #+(and cmu mp)
-+;; (progn
-+;; (when (eq mp::*initial-process* mp::*current-process*)
-+;; (format t "~%~%You need to run (mp::startup-idle-and-top-level-loops) to start up the multiprocessing support.~%~%")))
-
- (pushnew :clim *features*)
- (pushnew :mcclim *features*)
-
--#+mk-defsystem (use-package "MK")
--
- (defmacro clim-defsystem ((module &key depends-on) &rest components)
- `(progn
-- #+mk-defsystem
-- (defsystem ,module
-- :source-pathname *clim-directory*
-- :source-extension "lisp"
-- ,@(and depends-on `(:depends-on ,depends-on))
-- :components
-- (:serial
-- ,@components))
-- #+asdf
- (asdf:defsystem ,module
-- ,@(and depends-on
-- `(:depends-on ,depends-on))
-- :serial t
-- :components
-- (,@(loop for c in components
-- for p = (merge-pathnames
-- (parse-namestring c)
-- (make-pathname :type "lisp"
-- :defaults *clim-directory*))
-- collect `(:file ,(pathname-name p) :pathname ,p))))
-- #-(or mk-defsystem asdf)
-- (defsystem ,module ()
-- (:serial
-- ,@depends-on
-- ,@components))))
-+ ,@(and depends-on
-+ `(:depends-on ,depends-on))
-+ :serial t
-+ :components
-+ (,@(loop for c in components
-+ for p = (merge-pathnames
-+ (parse-namestring c)
-+ (make-pathname :type "lisp"
-+ :defaults *clim-directory*))
-+ collect `(:file ,(pathname-name p) :pathname ,p))))))
-
--(clim-defsystem (:clim-lisp)
-+(clim-defsystem (:clim-lisp :depends-on (#+cmu :cmucl-graystream))
- ;; First possible patches
- "patch"
- #+cmu "Lisp-Dep/fix-cmu"
-@@ -92,18 +65,16 @@
-
- (clim-defsystem (:clim-core :depends-on (:clim-lisp))
- "decls"
--
-- #.(or
-- #+(and :cmu :mp (not :pthread)) "Lisp-Dep/mp-cmu"
--
-- ;; Rumor is that SB-THREAD is a feature test for the presence of
-- ;; multithreading in SBCL.
--
-- #+sb-thread "Lisp-Dep/mp-sbcl"
-- #+excl "Lisp-Dep/mp-acl"
-- #+openmcl "Lisp-Dep/mp-openmcl"
-- #+lispworks "Lisp-Dep/mp-lw"
-- #| fall back |# "Lisp-Dep/mp-nil")
-+ #+(and :cmu :mp (not :pthread)) "Lisp-Dep/mp-cmu"
-+ #+sb-thread "Lisp-Dep/mp-sbcl"
-+ #+excl "Lisp-Dep/mp-acl"
-+ #+openmcl "Lisp-Dep/mp-openmcl"
-+ #+lispworks "Lisp-Dep/mp-lw"
-+ #-(or (and :cmu :mp (not :pthread))
-+ sb-thread
-+ excl
-+ openmcl
-+ lispworks) "Lisp-Dep/mp-nil"
- "utils"
- "defresource"
- "setf-star"
diff --git a/dev-lisp/cl-mcclim/files/0.9/system.lisp-gentoo.patch b/dev-lisp/cl-mcclim/files/0.9/system.lisp-gentoo.patch
deleted file mode 100644
index 4011b7b95271..000000000000
--- a/dev-lisp/cl-mcclim/files/0.9/system.lisp-gentoo.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- McCLIM/system.lisp.original 2004-03-04 14:54:12.750240760 -0600
-+++ McCLIM/system.lisp 2004-03-04 14:58:50.797971080 -0600
-@@ -25,15 +25,12 @@
-
- #+cmu
- (progn
-- (unless (fboundp 'ext:stream-read-char)
-- (unless (ignore-errors (ext:search-list "gray-streams:"))
-- (setf (ext:search-list "gray-streams:")
-- '("target:pcl/" "library:subsystems/")))
-- (load "gray-streams:gray-streams-library"))
-- #-clx
-- (require :clx)
-- #-mk-defsystem
-- (load "library:subsystems/defsystem"))
-+ (require :cmucl-graystream)
-+ (require :cmucl-clx))
-+
-+#+sbcl
-+(progn
-+ (require :clx))
-
- (pushnew :clim *features*)
- (pushnew :mcclim *features*)
diff --git a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9 b/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9
deleted file mode 100644
index f93d39b37fd0..000000000000
--- a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9
+++ /dev/null
@@ -1 +0,0 @@
-MD5 1d35c9ccedfd210ae996bb700793a7c6 McCLIM-0.9.tgz 3304356
diff --git a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.1 b/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.1
new file mode 100644
index 000000000000..d5e7c7862817
--- /dev/null
+++ b/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.1
@@ -0,0 +1,2 @@
+MD5 400de75e688f540d6a5a0b9dcbe515bc cl-mcclim_0.9.1.orig.tar.gz 3000070
+MD5 5637edc98b38d38b1279ec473c3edfdf cl-mcclim_0.9.1-1.diff.gz 4548
diff --git a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20040603 b/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20040603
deleted file mode 100644
index 157230fe493d..000000000000
--- a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20040603
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 633998af38391ad5c1e25d7818879746 cl-mcclim_0.9+cvs.2004.06.03.orig.tar.gz 1431568
-MD5 5035f9a31b30d0669688ca49f8bf367b cl-mcclim_0.9+cvs.2004.06.03-1.diff.gz 5466
-MD5 f367f54686417532f81c943be1f9c58c cl-mcclim-0.9+cvs.2004.06.03.gentoo-Spec.tar.gz 321280
diff --git a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20041227 b/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20041227
deleted file mode 100644
index 8af6080e403e..000000000000
--- a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20041227
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 e6fde96fccd576d8d18982ca4496cef9 cl-mcclim_0.9+cvs.2004.12.27.orig.tar.gz 1550281
-MD5 e07bd48ecd117adf81c684bab1b04d4f cl-mcclim_0.9+cvs.2004.12.27-1.diff.gz 6063
diff --git a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20050202 b/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20050202
deleted file mode 100644
index 70ac1cd20551..000000000000
--- a/dev-lisp/cl-mcclim/files/digest-cl-mcclim-0.9.20050202
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 5ac097951ab7600494b0bfe9289ba1e0 cl-mcclim_0.9+cvs.2005.02.02.orig.tar.gz 1561028
-MD5 49c1e508dc08b8df5600f159836e22ee cl-mcclim_0.9+cvs.2005.02.02-1.diff.gz 6519