--- cappuccino-0.5.1.orig/debian/changelog +++ cappuccino-0.5.1/debian/changelog @@ -1,3 +1,36 @@ +cappuccino (0.5.1-2.2) unstable; urgency=low + + * Non-maintainer upload. + * debian/rules + - add /usr/games to PATH (for polygen). Closes: #720685 + - fix build target to actually build, and binary-arch to actually generate + the package + * debian/control + - remove article from synopsis + - add ${misc:Depends} to Depends + + -- Bill Allombert Thu, 10 Oct 2013 22:42:57 +0200 + +cappuccino (0.5.1-2.1) unstable; urgency=low + + * Non-maintainer upload, to prepare for Python 2.6 transition + * debian/rules + - use '--install-layout=deb' when installing; thanks to Jakub Wilk for the + report; Closes: #571207 + * debian/control + - bump b-d on python to '>= 2.5.3-1~', to support install-layout + + -- Sandro Tosi Mon, 01 Mar 2010 13:14:53 +0100 + +cappuccino (0.5.1-2) unstable; urgency=low + + * "Don Zauker" Release: the upload + * debian/control: we need polygen to build + * debian/rules: now we build .grm.o files, to satisfy polygen + * debian/rules: we remove build/ directory in cleaning + + -- Christian Surchi Mon, 20 Nov 2006 23:59:05 +0100 + cappuccino (0.5.1-1) unstable; urgency=low * "Halloween Release": new upstream release --- cappuccino-0.5.1.orig/debian/control +++ cappuccino-0.5.1/debian/control @@ -3,12 +3,12 @@ Priority: optional Maintainer: Christian Surchi Standards-Version: 3.7.2 -Build-Depends: debhelper (>> 4.0.0), python +Build-Depends: debhelper (>> 4.0.0), python (>= 2.5.3-1~), polygen Package: cappuccino Architecture: all -Depends: python, python-gtk2, polygen -Description: an utility to let your boss think that you're working hard +Depends: python, python-gtk2, polygen, ${misc:Depends} +Description: utility to let your boss think that you're working hard Run this software on your computer when you are not motivated to work, and enjoy doing something different. If your boss come in your cubicle, he'll think "Yeah, he's doing something different since his computer is really --- cappuccino-0.5.1.orig/debian/rules +++ cappuccino-0.5.1/debian/rules @@ -5,7 +5,7 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 - +PATH:=$(PATH):/usr/games build: build-stamp @@ -23,7 +23,7 @@ dh_testdir dh_testroot rm -f build-stamp - + rm -rf build/ # Add here commands to clean up after the build process. python setup.py clean #-$(MAKE) distclean @@ -39,15 +39,12 @@ # Add here commands to install the package into debian/cappuccino. #$(MAKE) install prefix=$(CURDIR)/debian/cappuccino/usr #$(MAKE) install DESTDIR=$(CURDIR)/debian/cappuccino - python setup.py install --prefix=$(CURDIR)/debian/cappuccino/usr - + python setup.py install --prefix=$(CURDIR)/debian/cappuccino/usr --install-layout=deb + polygen $(CURDIR)/debian/cappuccino/usr/share/cappuccino/cappuccino.grm > /dev/null + polygen $(CURDIR)/debian/cappuccino/usr/share/cappuccino/compileline.grm > /dev/null # Build architecture-independent files here. binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install dh_testdir dh_testroot # dh_installdebconf @@ -76,5 +73,8 @@ dh_md5sums dh_builddeb +# Build architecture-dependent files here. +binary-arch: build install + binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install