Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cl-base64
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nyxt
cl-base64
Commits
8cf30dbe
Commit
8cf30dbe
authored
20 years ago
by
Kevin M. Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
r9053: rename system
parent
8b55e3d2
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cl-base64.asd
+13
-13
13 additions, 13 deletions
cl-base64.asd
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
debian/control
+1
-1
1 addition, 1 deletion
debian/control
tests.lisp
+3
-3
3 additions, 3 deletions
tests.lisp
with
23 additions
and
17 deletions
base64.asd
→
cl-
base64.asd
+
13
−
13
View file @
8cf30dbe
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
;;;; *************************************************************************
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;; FILE IDENTIFICATION
;;;;
;;;;
;;;; Name: base64.asd
;;;; Name:
cl-
base64.asd
;;;; Purpose: ASDF definition file for Base64
;;;; Purpose: ASDF definition file for
Cl-
Base64
;;;; Programmer: Kevin M. Rosenberg
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;; Date Started: Dec 2002
;;;;
;;;;
...
@@ -11,11 +11,11 @@
...
@@ -11,11 +11,11 @@
;;;; *************************************************************************
;;;; *************************************************************************
(
in-package
#:cl-user
)
(
in-package
#:cl-user
)
(
defpackage
#:base64-system
(
:use
#:asdf
#:cl
))
(
defpackage
#:
cl-
base64-system
(
:use
#:asdf
#:cl
))
(
in-package
#:base64-system
)
(
in-package
#:
cl-
base64-system
)
(
defsystem
base64
(
defsystem
cl-
base64
:name
"cl-base64"
:name
"cl-base64"
:author
"Kevin M. Rosenberg based on initial code by Juri Pakaste"
:author
"Kevin M. Rosenberg based on initial code by Juri Pakaste"
:version
"3.1"
:version
"3.1"
...
@@ -32,17 +32,17 @@
...
@@ -32,17 +32,17 @@
(
:file
"decode"
:depends-on
(
"package"
))
(
:file
"decode"
:depends-on
(
"package"
))
))
))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'base64
))))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'
cl-
base64
))))
(
operate
'load-op
'base64-tests
)
(
operate
'load-op
'
cl-
base64-tests
)
(
operate
'test-op
'base64-tests
:force
t
))
(
operate
'test-op
'
cl-
base64-tests
:force
t
))
(
defsystem
base64-tests
(
defsystem
cl-
base64-tests
:depends-on
(
base64
ptester
)
:depends-on
(
cl-
base64
ptester
)
:components
:components
((
:file
"tests"
)))
((
:file
"tests"
)))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'base64-tests
))))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'
cl-
base64-tests
))))
(
operate
'load-op
'base64-tests
)
(
operate
'load-op
'
cl-
base64-tests
)
(
or
(
funcall
(
intern
(
symbol-name
'
#:do-tests
)
(
or
(
funcall
(
intern
(
symbol-name
'
#:do-tests
)
(
find-package
'base64-test
)))
(
find-package
'
#:cl-
base64-test
s
)))
(
error
"test-op failed"
)))
(
error
"test-op failed"
)))
This diff is collapsed.
Click to expand it.
debian/changelog
+
6
−
0
View file @
8cf30dbe
cl-base64 (3.3.1-1) unstable; urgency=low
* Rename ASDF system to cl-base64
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 18 Apr 2004 10:39:51 -0600
cl-base64 (3.3-1) unstable; urgency=low
cl-base64 (3.3-1) unstable; urgency=low
* Rework test loading
* Rework test loading
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
1
−
1
View file @
8cf30dbe
...
@@ -3,7 +3,7 @@ Section: devel
...
@@ -3,7 +3,7 @@ Section: devel
Priority: optional
Priority: optional
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Build-Depends-Indep: debhelper (>= 4.0.0)
Build-Depends-Indep: debhelper (>= 4.0.0)
Standards-Version: 3.
5
.1
0
.0
Standards-Version: 3.
6
.1.0
Package: cl-base64
Package: cl-base64
Architecture: all
Architecture: all
...
...
This diff is collapsed.
Click to expand it.
tests.lisp
+
3
−
3
View file @
8cf30dbe
...
@@ -12,10 +12,10 @@
...
@@ -12,10 +12,10 @@
(
in-package
#:cl-user
)
(
in-package
#:cl-user
)
(
defpackage
#:base64-test
(
defpackage
#:base64-test
s
(
:use
#:cl
#:kmrcl
#:base64
#:ptester
))
(
:use
#:cl
#:kmrcl
#:
cl-
base64
#:ptester
))
(
in-package
#:base64-test
)
(
in-package
#:
cl-
base64-test
)
(
defun
do-tests
()
(
defun
do-tests
()
(
with-tests
(
:name
"cl-base64 tests"
)
(
with-tests
(
:name
"cl-base64 tests"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment