[Pkg-tcltk-commits] r1342 - bwidget/trunk/debian
sgolovan at alioth.debian.org
sgolovan at alioth.debian.org
Sun May 5 07:33:04 UTC 2013
Author: sgolovan
Date: 2013-05-05 07:33:04 +0000 (Sun, 05 May 2013)
New Revision: 1342
Added:
bwidget/trunk/debian/docs
bwidget/trunk/debian/examples
bwidget/trunk/debian/source/
Removed:
bwidget/trunk/debian/README.source
Modified:
bwidget/trunk/debian/changelog
bwidget/trunk/debian/compat
bwidget/trunk/debian/control
bwidget/trunk/debian/rules
Log:
[bwidget]
* Merged changes from the experimental branch.
Deleted: bwidget/trunk/debian/README.source
===================================================================
--- bwidget/trunk/debian/README.source 2013-04-18 10:24:15 UTC (rev 1341)
+++ bwidget/trunk/debian/README.source 2013-05-05 07:33:04 UTC (rev 1342)
@@ -1,8 +0,0 @@
-This package uses quilt to manage all modifications to the upstream
-source. Changes are stored in the source package as diffs in
-debian/patches and applied during the build.
-
-To get detailed instructions on how to apply the series of patches
-and modify them, please read /usr/share/doc/quilt/README.source
-
- -- Sergei Golovan <sgolovan at debian.org> Sat, 05 Sep 2009 11:33:56 +0400
Modified: bwidget/trunk/debian/changelog
===================================================================
--- bwidget/trunk/debian/changelog 2013-04-18 10:24:15 UTC (rev 1341)
+++ bwidget/trunk/debian/changelog 2013-05-05 07:33:04 UTC (rev 1342)
@@ -1,9 +1,19 @@
-bwidget (1.9.5-2) UNRELEASED; urgency=low
+bwidget (1.9.6-2) UNRELEASED; urgency=low
* NOT RELEASED YET
- -- Sergei Golovan <sgolovan at debian.org> Tue, 09 Aug 2011 23:21:23 +0400
+ -- Sergei Golovan <sgolovan at debian.org> Sat, 28 Jul 2012 20:03:42 +0400
+bwidget (1.9.6-1) experimental; urgency=low
+
+ * New upstream release.
+ * Switched to 3.0 (quilt) source package format.
+ * Increased debhelper compatibility level to 8 and use much shorter
+ debian/rules script.
+ * Bumped standards version to 3.9.3.
+
+ -- Sergei Golovan <sgolovan at debian.org> Sat, 28 Jul 2012 19:43:53 +0400
+
bwidget (1.9.5-1) unstable; urgency=low
* New upstream release.
Modified: bwidget/trunk/debian/compat
===================================================================
--- bwidget/trunk/debian/compat 2013-04-18 10:24:15 UTC (rev 1341)
+++ bwidget/trunk/debian/compat 2013-05-05 07:33:04 UTC (rev 1342)
@@ -1 +1 @@
-5
+8
Modified: bwidget/trunk/debian/control
===================================================================
--- bwidget/trunk/debian/control 2013-04-18 10:24:15 UTC (rev 1341)
+++ bwidget/trunk/debian/control 2013-05-05 07:33:04 UTC (rev 1342)
@@ -3,9 +3,9 @@
Priority: optional
Maintainer: Debian Tcl/Tk Packagers <pkg-tcltk-devel at lists.alioth.debian.org>
Uploaders: Sergei Golovan <sgolovan at debian.org>
-Build-Depends: debhelper (>> 5.0.0), quilt
+Build-Depends: debhelper (>= 8.0.0), quilt
Build-Depends-Indep: tcl-dev
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
Homepage: http://sourceforge.net/projects/tcllib/
Package: bwidget
Copied: bwidget/trunk/debian/docs (from rev 1341, bwidget/branches/experimental/debian/docs)
===================================================================
--- bwidget/trunk/debian/docs (rev 0)
+++ bwidget/trunk/debian/docs 2013-05-05 07:33:04 UTC (rev 1342)
@@ -0,0 +1,2 @@
+README.txt
+CHANGES.txt
Copied: bwidget/trunk/debian/examples (from rev 1341, bwidget/branches/experimental/debian/examples)
===================================================================
--- bwidget/trunk/debian/examples (rev 0)
+++ bwidget/trunk/debian/examples 2013-05-05 07:33:04 UTC (rev 1342)
@@ -0,0 +1,2 @@
+demo/*.tcl
+demo/*.xbm
Modified: bwidget/trunk/debian/rules
===================================================================
--- bwidget/trunk/debian/rules 2013-04-18 10:24:15 UTC (rev 1341)
+++ bwidget/trunk/debian/rules 2013-05-05 07:33:04 UTC (rev 1342)
@@ -1,51 +1,11 @@
#!/usr/bin/make -f
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+VERSION = 1.9.6
-export QUILT_PATCHES := debian/patches
+%:
+ dh $@
-VERSION = 1.9.5
-
-unpatch:
- dh_testdir
- quilt pop -a || test $$? = 2
- rm -rf patch-stamp .pc
-
-patch: patch-stamp
-patch-stamp:
- dh_testdir
- quilt push -a || test $$? = 2
- touch patch-stamp
-
-build: build-stamp
-build-stamp: patch-stamp
- dh_testdir
-
- # Add here commands to compile the package
- # Nothing to be done since this is a Tcl-only package.
- # ./configure --prefix=/usr --mandir=/usr/share/doc/bwidget/html
-
- touch build-stamp
-
-clean: clean-patched unpatch
- dh_testdir
- dh_testroot
- dh_clean
-
-clean-patched: patch-stamp
- dh_testdir
- dh_testroot
- -rm -f build-stamp install-stamp
- # -$(MAKE) distclean
-
-install: install-stamp
-install-stamp: build-stamp
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
+override_dh_auto_install:
# $(MAKE) install prefix=`pwd`/debian/bwidget/usr \
# HTMLDIR=`pwd`/debian/bwidget/usr/share/doc/bwidget/html
mkdir debian/bwidget/usr/share/tcltk/bwidget$(VERSION)
@@ -53,31 +13,15 @@
rm -rf debian/bwidget/usr/share/tcltk/bwidget$(VERSION)/images/CVS
cp BWman/* debian/bwidget/usr/share/doc/bwidget/html
- touch install-stamp
-
-binary-indep: build install
- dh_testdir
- dh_testroot
- dh_installdocs README.txt CHANGES.txt
- dh_installexamples demo/*.tcl demo/*.xbm
- dh_installchangelogs ChangeLog
+override_dh_compress:
dh_compress -X.tcl -X.xbm
- dh_fixperms
- dh_installdeb
+
+override_dh_installdeb:
tcltk-depends
- dh_gencontrol
- dh_md5sums
- dh_builddeb
+ dh_installdeb
-binary-arch: build install
-
-binary: binary-indep binary-arch
-
-source diff:
- @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
get-orig-source:
wget -O bwidget_$(VERSION).orig.tar.gz \
http://heanet.dl.sourceforge.net/sourceforge/tcllib/bwidget-$(VERSION).tar.gz
-.PHONY: patch unpatch clean-patched build clean binary-indep binary-arch binary install get-orig-source
+.PHONY: override_dh_auto_install override_dh_compress override_dh_installdeb get-orig-source
More information about the Pkg-tcltk-commits
mailing list