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
a1790b59
Commit
a1790b59
authored
15 years ago
by
Kevin Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
convert to dh-lisp
parent
27bc69ee
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
debian/control
+2
-1
2 additions, 1 deletion
debian/control
debian/postinst
+0
-22
0 additions, 22 deletions
debian/postinst
debian/prerm
+0
-25
0 additions, 25 deletions
debian/prerm
debian/rules
+26
-39
26 additions, 39 deletions
debian/rules
with
34 additions
and
87 deletions
debian/changelog
+
6
−
0
View file @
a1790b59
cl-base64 (3.3.3-2) unstable; urgency=low
* Convert to dh-lisp
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 03 Aug 2009 10:21:24 -0600
cl-base64 (3.3.3-1) unstable; urgency=low
* New upstream
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
2
−
1
View file @
a1790b59
...
...
@@ -2,6 +2,7 @@ Source: cl-base64
Section: lisp
Priority: optional
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Build-Depends-Indep: dh-lisp
Build-Depends: debhelper (>= 7.0.0)
Standards-Version: 3.8.2.0
Vcs-Git: git://git.b9.com/cl-base64.git
...
...
@@ -9,7 +10,7 @@ Homepage: http://files.b9.com/cl-base64/
Package: cl-base64
Architecture: all
Depends:
common-lisp-controller (>= 3.47)
, cl-kmrcl
Depends:
${misc:Depends}
, cl-kmrcl
Description: Common Lisp package to encode and decode base64 with URI support
This package provides highly optimized base64 encoding and decoding.
Besides conversion to and from strings, integer conversions are supported.
...
...
This diff is collapsed.
Click to expand it.
debian/postinst
deleted
100755 → 0
+
0
−
22
View file @
27bc69ee
#! /bin/sh
set
-e
LISP_PKG
=
cl-base64
case
"
$1
"
in
configure
)
register-common-lisp-source
${
LISP_PKG
}
;;
abort-upgrade|abort-remove|abort-deconfigure
)
;;
*
)
echo
"postinst called with unknown argument
\`
$1
'"
>
&2
exit
1
;;
esac
#DEBHELPER#
exit
0
This diff is collapsed.
Click to expand it.
debian/prerm
deleted
100755 → 0
+
0
−
25
View file @
27bc69ee
#! /bin/sh
set
-e
LISP_PKG
=
cl-base64
case
"
$1
"
in
remove|upgrade|deconfigure
)
unregister-common-lisp-source
${
LISP_PKG
}
;;
failed-upgrade
)
;;
*
)
echo
"prerm called with unknown argument
\`
$1
'"
>
&2
exit
1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit
0
This diff is collapsed.
Click to expand it.
debian/rules
+
26
−
39
View file @
a1790b59
#!/usr/bin/make -f
pkg := cl-base64
debpkg := cl-base64
pkg
:= cl-base64
debpkg
:= cl-base64
clc-source := usr/share/common-lisp/source
clc-systems := usr/share/common-lisp/systems
clc-base64 := $(clc-source)/$(pkg)
clc-files := $(clc-source)/$(pkg)
doc-dir := usr/share/doc/$(debpkg)
configure: configure-stamp
configure-stamp:
dh_testdir
touch configure-stamp
build: build-stamp
build-stamp: configure-stamp
dh_testdir
touch build-stamp
build:
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
rm -f debian/cl-base64.postinst.* debian/cl-base64.prerm.*
dh_clean
install: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs $(clc-systems) $(clc-base64)
dh_install *.asd $(shell echo *.lisp) $(clc-base64)
dh_link $(clc-base64)/cl-base64.asd $(clc-systems)/cl-base64.asd
# Build architecture-independent files here.
binary-indep: build install
dh_testdir -i
dh_testroot -i
dh_installdocs -i
dh_installchangelogs -i
dh_strip -i
dh_compress -i
dh_fixperms -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
binary-arch: build install
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary install configure
dh_installdirs
dh_install $(pkg).asd $(clc-files)
dh_install *.lisp $(clc-files)
binary-indep: install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_lisp
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary-arch:
binary: binary-indep
.PHONY: build clean binary-indep binary-arch binary install
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