[svn] gpg-error - r167 - in trunk: . lang/cl

svn author marcus cvs at cvs.gnupg.org
Thu May 25 03:02:00 CEST 2006


Author: marcus
Date: 2006-05-25 03:02:00 +0200 (Thu, 25 May 2006)
New Revision: 167

Modified:
   trunk/ChangeLog
   trunk/lang/cl/Makefile.am
   trunk/lang/cl/README
   trunk/lang/cl/gpg-error-package.lisp
   trunk/lang/cl/gpg-error.asd
   trunk/lang/cl/gpg-error.lisp
   trunk/lang/cl/mkerrcodes.awk
Log:
2006-05-25  Marcus Brinkmann  <marcus at g10code.de>

	* lang/cl/mkerrcodes.awk, lang/cl/gpg-error-package.lisp,
	lang/cl/gpg-error.lisp, lang/cl/gpg-error.asd, lang/cl/Makefile.am
	(clfilesdir): Fix package and file names.


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-05-24 22:45:01 UTC (rev 166)
+++ trunk/ChangeLog	2006-05-25 01:02:00 UTC (rev 167)
@@ -1,5 +1,9 @@
 2006-05-25  Marcus Brinkmann  <marcus at g10code.de>
 
+	* lang/cl/mkerrcodes.awk, lang/cl/gpg-error-package.lisp,
+	lang/cl/gpg-error.lisp, lang/cl/gpg-error.asd, lang/cl/Makefile.am
+	(clfilesdir): Fix package and file names.
+	
 	* lang/cl/Makefile.am (clfilesdir): Use datadir, not prefix.
 
 2006-05-05  Marcus Brinkmann  <marcus at g10code.de>

Modified: trunk/lang/cl/Makefile.am
===================================================================
--- trunk/lang/cl/Makefile.am	2006-05-24 22:45:01 UTC (rev 166)
+++ trunk/lang/cl/Makefile.am	2006-05-25 01:02:00 UTC (rev 167)
@@ -26,7 +26,7 @@
 clfiles = $(distributed_clfiles) $(generated_clfiles)
 
 # FIXME: Should be configurable.
-clfilesdir = $(datadir)/common-lisp/source/libgpg-error
+clfilesdir = $(datadir)/common-lisp/source/gpg-error
 dist_clfiles_DATA = $(distributed_clfiles)
 nodist_clfiles_DATA = $(generated_clfiles)
 

Modified: trunk/lang/cl/README
===================================================================
--- trunk/lang/cl/README	2006-05-24 22:45:01 UTC (rev 166)
+++ trunk/lang/cl/README	2006-05-25 01:02:00 UTC (rev 167)
@@ -6,3 +6,7 @@
 ASDF	Packaging Support
 CFFI	Foreign Function Interface
 
+Use with:
+
+> (asdf:operate 'asdf:load-op ':gpg-error)
+> (use-package :gpg-error)

Modified: trunk/lang/cl/gpg-error-package.lisp
===================================================================
--- trunk/lang/cl/gpg-error-package.lisp	2006-05-24 22:45:01 UTC (rev 166)
+++ trunk/lang/cl/gpg-error-package.lisp	2006-05-25 01:02:00 UTC (rev 167)
@@ -43,7 +43,7 @@
 ;;; *gpg-err-source-default* is a dynamic variable that can be set to
 ;;; change the default for gpg-error.
 
-(defpackage #:org.gnupg.libgpg-error
+(defpackage #:gpg-error
   (:use #:common-lisp #:cffi)
 
   (:export :gpg-err-code-as-key

Modified: trunk/lang/cl/gpg-error.asd
===================================================================
--- trunk/lang/cl/gpg-error.asd	2006-05-24 22:45:01 UTC (rev 166)
+++ trunk/lang/cl/gpg-error.asd	2006-05-25 01:02:00 UTC (rev 167)
@@ -19,13 +19,13 @@
 ;;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 ;;; 02111-1307, USA.
 
-(defpackage #:org.gnupg.libgpg-error.system
+(defpackage #:gpg-error-system
   (:use #:common-lisp #:asdf))
 
-(in-package #:org.gnupg.libgpg-error.system)
+(in-package #:gpg-error-system)
 
-(defsystem org.gnupg.libgpg-error
-    :components ((:file "libgpg-error-package")
-		 (:file "libgpg-error-codes"
+(defsystem gpg-error
+    :components ((:file "gpg-error-package")
+		 (:file "gpg-error-codes"
 			:depends-on ("libgpg-error-package"))
-		 (:file "libgpg-error" :depends-on ("error-codes"))))
+		 (:file "gpg-error" :depends-on ("error-codes"))))

Modified: trunk/lang/cl/gpg-error.lisp
===================================================================
--- trunk/lang/cl/gpg-error.lisp	2006-05-24 22:45:01 UTC (rev 166)
+++ trunk/lang/cl/gpg-error.lisp	2006-05-25 01:02:00 UTC (rev 167)
@@ -21,7 +21,7 @@
 
 ;;; Set up the library.
 
-(in-package :org.gnupg.libgpg-error)
+(in-package :gpg-error)
 
 (define-foreign-library libgpg-error
   (:unix "libgpg-error.so")

Modified: trunk/lang/cl/mkerrcodes.awk
===================================================================
--- trunk/lang/cl/mkerrcodes.awk	2006-05-24 22:45:01 UTC (rev 166)
+++ trunk/lang/cl/mkerrcodes.awk	2006-05-25 01:02:00 UTC (rev 167)
@@ -99,7 +99,7 @@
 	{
 	  header = 0;
 	  
-	  print "(in-package :org.gnupg.libgpg-error)";
+	  print "(in-package :gpg-error)";
 	  print "";
 	  print ";;; The error code type gpg-err-code-t.";
 	  print "";




More information about the Gnupg-commits mailing list