Update to current dev version
git-svn-id: svn://bknr.net/svn/trunk/thirdparty/cl-ppcre@3581 4281704c-cde7-0310-8518-8e2dc76b1ff0
This commit is contained in:
31
cl-ppcre.asd
31
cl-ppcre.asd
@ -1,5 +1,5 @@
|
||||
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
|
||||
;;; $Header: /usr/local/cvsrep/cl-ppcre/cl-ppcre.asd,v 1.30 2008/07/03 10:06:15 edi Exp $
|
||||
;;; $Header: /usr/local/cvsrep/cl-ppcre/cl-ppcre.asd,v 1.45 2008/07/23 02:14:06 edi Exp $
|
||||
|
||||
;;; This ASDF system definition was kindly provided by Marco Baringer.
|
||||
|
||||
@ -29,14 +29,23 @@
|
||||
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
(asdf:defsystem :cl-ppcre
|
||||
:version "1.4.1"
|
||||
(in-package :cl-user)
|
||||
|
||||
(defpackage :cl-ppcre-asd
|
||||
(:use :cl :asdf))
|
||||
|
||||
(in-package :cl-ppcre-asd)
|
||||
|
||||
(defsystem :cl-ppcre
|
||||
:version "2.0.0"
|
||||
:serial t
|
||||
:components ((:file "packages")
|
||||
(:file "specials")
|
||||
(:file "charset")
|
||||
(:file "util")
|
||||
(:file "errors")
|
||||
(:file "charset")
|
||||
(:file "charmap")
|
||||
(:file "chartest")
|
||||
#-:use-acl-regexp2-engine
|
||||
(:file "lexer")
|
||||
#-:use-acl-regexp2-engine
|
||||
@ -44,6 +53,8 @@
|
||||
#-:use-acl-regexp2-engine
|
||||
(:file "regex-class")
|
||||
#-:use-acl-regexp2-engine
|
||||
(:file "regex-class-util")
|
||||
#-:use-acl-regexp2-engine
|
||||
(:file "convert")
|
||||
#-:use-acl-regexp2-engine
|
||||
(:file "optimize")
|
||||
@ -54,3 +65,15 @@
|
||||
#-:use-acl-regexp2-engine
|
||||
(:file "scanner")
|
||||
(:file "api")))
|
||||
|
||||
(defsystem :cl-ppcre-test
|
||||
:depends-on (:cl-ppcre :flexi-streams)
|
||||
:components ((:module "test"
|
||||
:serial t
|
||||
:components ((:file "packages")
|
||||
(:file "tests")
|
||||
(:file "perl-tests")))))
|
||||
|
||||
(defmethod perform ((o test-op) (c (eql (find-system :cl-ppcre))))
|
||||
(operate 'load-op :cl-ppcre-test)
|
||||
(funcall (intern (symbol-name :run-all-tests) (find-package :cl-ppcre-test))))
|
||||
|
||||
Reference in New Issue
Block a user