Apply some MOTU suggested changes and switch back to CDBS
This commit is contained in:
parent
886e418671
commit
be96c38db7
8
AUTHORS
8
AUTHORS
|
@ -1,8 +0,0 @@
|
||||||
Chris Jones <cmsj@tenshu.net>
|
|
||||||
|
|
||||||
Draws heavily from the example python-vte code and the gedit terminal plugin.
|
|
||||||
|
|
||||||
Most excellent patches have been gratefully received from:
|
|
||||||
o Huang He
|
|
||||||
o Kees Cook
|
|
||||||
o Thomas Meire
|
|
|
@ -1,7 +1,6 @@
|
||||||
terminator (0.7-2) hardy; urgency=low
|
terminator (0.7-2) hardy; urgency=low
|
||||||
|
|
||||||
* Switch from cdbs to python-central
|
* Various changes from MOTU feedback
|
||||||
* Move change log details to ChangeLog and no longer be a native package
|
|
||||||
|
|
||||||
-- Chris Jones <cmsj@tenshu.net> Wed, 02 Jan 2008 22:50:18 +0000
|
-- Chris Jones <cmsj@tenshu.net> Wed, 02 Jan 2008 22:50:18 +0000
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ Section: misc
|
||||||
XS-Python-Version: all
|
XS-Python-Version: all
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Chris Jones <cmsj@tenshu.net>
|
Maintainer: Chris Jones <cmsj@tenshu.net>
|
||||||
Build-Depends-Indep: debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), python-vte
|
Build-Depends-Indep: debhelper (>= 5.0.38), python, python-central (>= 0.5.6), cdbs (>=0.4.49), python-vte
|
||||||
Standards-Version: > 3.7.3
|
Standards-Version: > 3.7.3
|
||||||
|
|
||||||
Package: terminator
|
Package: terminator
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
This package was debianized by Chris Jones <cmsj@tenshu.net> on
|
This package was debianized by Chris Jones <cmsj@tenshu.net> on
|
||||||
Sat, 28 Jul 2007 04:12:30 +0100.
|
Sat, 28 Jul 2007 04:12:30 +0100.
|
||||||
|
|
||||||
It was downloaded from https://launchpad.net/terminator/trunk/0.1/+download/terminator-0.1.tar.bzr2
|
It was downloaded from https://launchpad.net/terminator/+download
|
||||||
|
|
||||||
Upstream Author(s):
|
Upstream Authors:
|
||||||
|
|
||||||
Chris Jones <cmsj@tenshu.net>
|
Chris Jones <cmsj@tenshu.net>
|
||||||
|
Huang He
|
||||||
|
Kees Cook
|
||||||
|
Thomas Meire
|
||||||
|
|
||||||
Copyright:
|
Copyright:
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
AUTHORS
|
|
||||||
README
|
README
|
||||||
|
|
|
@ -1,70 +1,9 @@
|
||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
# -*- makefile -*-
|
# -*- makefile -*-
|
||||||
# Sample debian/rules that uses debhelper.
|
DEB_PYTHON_SYSTEM = pycentral
|
||||||
# GNU copyright 1997 to 1999 by Joey Hess.
|
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
#export DH_VERBOSE=1
|
include /usr/share/cdbs/1/class/python-distutils.mk
|
||||||
|
|
||||||
PYTHON := /usr/bin/python
|
DEB_COMPRESS_EXCLUDE := .py
|
||||||
PYVER := $(shell $(PYTHON) -c 'import sys; print sys.version[:3]')
|
|
||||||
|
|
||||||
build: build-stamp
|
|
||||||
|
|
||||||
build-stamp:
|
|
||||||
dh_testdir
|
|
||||||
python setup.py build
|
|
||||||
touch build-stamp
|
|
||||||
|
|
||||||
clean:
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
rm -f build-stamp
|
|
||||||
rm -rf build
|
|
||||||
-find . -name '*.py[co]' | xargs rm -f
|
|
||||||
dh_clean
|
|
||||||
|
|
||||||
install: build
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_clean -k
|
|
||||||
dh_installdirs
|
|
||||||
python setup.py install \
|
|
||||||
--root=$(CURDIR)/debian/terminator
|
|
||||||
|
|
||||||
# Build architecture-independent files here.
|
|
||||||
binary-indep: build install
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_installchangelogs ChangeLog
|
|
||||||
dh_installdocs README
|
|
||||||
# dh_installexamples examples/*
|
|
||||||
dh_installman
|
|
||||||
: # Replace all '#!' calls to python with $(PYTHON)
|
|
||||||
: # and make them executable
|
|
||||||
for i in `find debian -mindepth 3 -type f`; do \
|
|
||||||
sed '1s,#!.*python[^ ]*\(.*\),#! $(PYTHON)\1,' \
|
|
||||||
$$i > $$i.temp; \
|
|
||||||
if cmp --quiet $$i $$i.temp; then \
|
|
||||||
rm -f $$i.temp; \
|
|
||||||
else \
|
|
||||||
mv -f $$i.temp $$i; \
|
|
||||||
chmod 755 $$i; \
|
|
||||||
echo "fixed interpreter: $$i"; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
dh_pycentral
|
|
||||||
dh_python
|
|
||||||
dh_compress -X.py
|
|
||||||
dh_fixperms
|
|
||||||
dh_installdeb
|
|
||||||
dh_gencontrol
|
|
||||||
dh_md5sums
|
|
||||||
dh_builddeb
|
|
||||||
|
|
||||||
# Build architecture-dependent files here.
|
|
||||||
binary-arch: build install
|
|
||||||
# We have nothing to do by default.
|
|
||||||
|
|
||||||
binary: binary-indep binary-arch
|
|
||||||
.PHONY: build clean binary-indep binary-arch binary install configure
|
|
||||||
|
|
Loading…
Reference in New Issue