Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kmrcl
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
kmrcl
Commits
43a47b24
Commit
43a47b24
authored
15 years ago
by
Kevin Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
Convert to dh-lisp; add Vcs-Browser
parent
2d863a7d
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
+7
-0
7 additions, 0 deletions
debian/changelog
debian/control
+3
-1
3 additions, 1 deletion
debian/control
debian/postinst
+0
-20
0 additions, 20 deletions
debian/postinst
debian/prerm
+0
-20
0 additions, 20 deletions
debian/prerm
debian/rules
+25
-36
25 additions, 36 deletions
debian/rules
with
35 additions
and
77 deletions
debian/changelog
+
7
−
0
View file @
43a47b24
cl-kmrcl (1.99-4) unstable; urgency=low
* Build with debhelper extension dh-lisp
* control: Add Vcs-Browser field. Fix Depends field.
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 03 Aug 2009 14:12:47 -0600
cl-kmrcl (1.99-3) unstable; urgency=low
cl-kmrcl (1.99-3) unstable; urgency=low
* debian/control: Added Homepage and Vcs-Git fields
* debian/control: Added Homepage and Vcs-Git fields
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
3
−
1
View file @
43a47b24
...
@@ -2,14 +2,16 @@ Source: cl-kmrcl
...
@@ -2,14 +2,16 @@ Source: cl-kmrcl
Section: lisp
Section: lisp
Priority: optional
Priority: optional
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Build-Depends-Indep: dh-lisp
Build-Depends: debhelper (>= 7.0.0)
Build-Depends: debhelper (>= 7.0.0)
Standards-Version: 3.8.2.0
Standards-Version: 3.8.2.0
Homepage: http://files.b9.com/kmrcl/
Homepage: http://files.b9.com/kmrcl/
Vcs-Git: git://git.b9.com/kmrcl.git
Vcs-Git: git://git.b9.com/kmrcl.git
Vcs-Browser: http://git.b9.com/?p=kmrcl.git
Package: cl-kmrcl
Package: cl-kmrcl
Architecture: all
Architecture: all
Depends:
common-lisp-controller
, cl-rt
Depends:
${misc:Depends}
, cl-rt
Description: General Utilities for Common Lisp Programs
Description: General Utilities for Common Lisp Programs
This package includes general purpose utilities for Common Lisp
This package includes general purpose utilities for Common Lisp
programs. It is packages for Debian primarily to support more complex
programs. It is packages for Debian primarily to support more complex
...
...
This diff is collapsed.
Click to expand it.
debian/postinst
deleted
100755 → 0
+
0
−
20
View file @
2d863a7d
#! /bin/sh
set
-e
LISP_PKG
=
kmrcl
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
−
20
View file @
2d863a7d
#! /bin/sh
set
-e
LISP_PKG
=
kmrcl
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
exit
0
This diff is collapsed.
Click to expand it.
debian/rules
+
25
−
36
View file @
43a47b24
#!/usr/bin/make -f
#!/usr/bin/make -f
pkg := kmrcl
pkg
:= kmrcl
pkg-tests := $(pkg)-tests
pkg-tests
:= $(pkg)-tests
debpkg := cl-$(pkg)
debpkg
:= cl-$(pkg)
clc-source := usr/share/common-lisp/source
clc-source := usr/share/common-lisp/source
clc-systems := usr/share/common-lisp/systems
clc-systems := usr/share/common-lisp/systems
clc-files := $(clc-source)/$(pkg)
clc-files := $(clc-source)/$(pkg)
clc-tests := $(clc-source)/$(pkg-tests)
clc-tests := $(clc-source)/$(pkg-tests)
doc-dir := usr/share/doc/$(debpkg)
tests-files := tests.lisp
tests-files := tests.lisp
source-files := $(filter-out $(tests-files),$(wildcard *.lisp))
source-files := $(filter-out $(tests-files),$(wildcard *.lisp))
configure: configure-stamp
configure-stamp:
dh_testdir
touch configure-stamp
build: build-stamp
build-stamp: configure-stamp
build:
dh_testdir
touch build-stamp
clean:
clean:
dh_testdir
dh_testdir
dh_testroot
dh_testroot
rm -f build-stamp configure-stamp
rm -f debian/$(debpkg).postinst.* debian/$(debpkg).prerm.*
dh_clean
dh_clean
install: build
install: build
dh_testdir
dh_testdir
dh_testroot
dh_testroot
dh_prep
dh_prep
dh_installdirs
$(clc-systems) $(clc-files) $(clc-tests)
dh_installdirs
dh_install $(pkg).asd $(source-files) $(clc-files)
dh_install $(pkg).asd $(source-files) $(clc-files)
dh_link $(clc-files)/$(pkg).asd $(clc-systems)/$(pkg).asd
dh_install $(pkg-tests).asd $(tests-files) $(clc-tests)
dh_install $(pkg-tests).asd $(tests-files) $(clc-tests)
dh_link $(clc-tests)/$(pkg-tests).asd $(clc-systems)/$(pkg-tests).asd
binary-indep: install
binary-indep: build install
dh_testdir
dh_testdir -i
dh_testroot
dh_testroot -i
dh_installdocs
dh_installdocs -i
dh_installchangelogs
dh_installchangelogs -i ChangeLog
dh_lisp
dh_strip -i
dh_compress
dh_compress -i
dh_fixperms
dh_fixperms -i
dh_installdeb
dh_installdeb -i
dh_gencontrol
dh_gencontrol -i
dh_md5sums
dh_md5sums -i
dh_builddeb
dh_builddeb -i
binary-arch:
binary-arch: build install
binary: binary-indep
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
.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