[Pkg-cli-apps-commits] r4499 - in /packages/bless/trunk/debian: changelog control postinst postrm rules

laney-guest at users.alioth.debian.org laney-guest at users.alioth.debian.org
Sun Feb 1 18:42:24 UTC 2009


Author: laney-guest
Date: Sun Feb  1 18:42:24 2009
New Revision: 4499

URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=4499
Log:
* Adopt into pkg-cli-apps team (Closes: #513631, #460540)
* debian/rules: Don't remove so many upstream docs
* debian/rules: Add get-orig-source target
* debian/post{inst,rm}: Drop, not needed
* debian/control: Allow rarian-compat to be used as an alternative to
  scrollkeeper, since it provides scrollkeeper. 

Removed:
    packages/bless/trunk/debian/postinst
    packages/bless/trunk/debian/postrm
Modified:
    packages/bless/trunk/debian/changelog
    packages/bless/trunk/debian/control
    packages/bless/trunk/debian/rules

Modified: packages/bless/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/bless/trunk/debian/changelog?rev=4499&op=diff
==============================================================================
--- packages/bless/trunk/debian/changelog (original)
+++ packages/bless/trunk/debian/changelog Sun Feb  1 18:42:24 2009
@@ -1,10 +1,15 @@
 bless (0.6.0-1) UNRELEASED; urgency=low
 
-  * Adopt into pkg-cli-apps team (Closes: #513631)
+  * Adopt into pkg-cli-apps team (Closes: #513631, #460540)
   * New upstream release 0.6.0
   * Add myself to Uploaders
+  * debian/rules: Don't remove so many upstream docs
+  * debian/rules: Add get-orig-source target
+  * debian/post{inst,rm}: Drop, not needed
+  * debian/control: Allow rarian-compat to be used as an alternative to
+    scrollkeeper, since it provides scrollkeeper. 
 
- -- Iain Lane <laney at ubuntu.com>  Sun, 01 Feb 2009 02:07:22 +0000
+ -- Iain Lane <laney at ubuntu.com>  Sun, 01 Feb 2009 18:36:22 +0000
 
 bless (0.5.2-2) experimental; urgency=low
 

Modified: packages/bless/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/bless/trunk/debian/control?rev=4499&op=diff
==============================================================================
--- packages/bless/trunk/debian/control (original)
+++ packages/bless/trunk/debian/control Sun Feb  1 18:42:24 2009
@@ -3,15 +3,23 @@
 Priority: optional
 Maintainer: Debian CLI Applications Team <pkg-cli-apps-team at lists.alioth.debian.org>
 Uploaders: Iain Lane <laney at ubuntu.com>
-Build-Depends: cdbs, debhelper (>= 5.0.0), pkg-config, scrollkeeper
-Build-Depends-Indep: cli-common-dev (>= 0.4.4), mono-devel (>= 2.0.1), libmono-dev (>= 1.1.14), libgtk2.0-cil (>= 2.8), libglade2.0-cil (>= 2.8), libmono-posix2.0-cil (>= 2.0)
+Build-Depends: cdbs,
+               debhelper (>= 5.0.0),
+               pkg-config,
+               rarian-compat | scrollkeeper
+Build-Depends-Indep: cli-common-dev (>= 0.4.4),
+                     mono-devel (>= 2.0.1),
+                     libgtk2.0-cil (>= 2.8),
+                     libglade2.0-cil (>= 2.8),
+                     libmono-posix2.0-cil (>= 2.0)
 Standards-Version: 3.8.0
+Homepage: http://home.gna.org/bless/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-cli-apps/packages/bless/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-cli-apps/packages/bless/trunk/
 
 Package: bless
 Architecture: all
-Depends: ${cli:Depends}, scrollkeeper
+Depends: ${cli:Depends}, ${misc:Depends}, rarian-compat | scrollkeeper
 Description: A full featured hexadecimal editor
  Bless is a binary (hex) editor, a program that enables you to edit files
  as a sequence of bytes written for the GNOME Desktop. Main features are:

Modified: packages/bless/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/bless/trunk/debian/rules?rev=4499&op=diff
==============================================================================
--- packages/bless/trunk/debian/rules (original)
+++ packages/bless/trunk/debian/rules Sun Feb  1 18:42:24 2009
@@ -3,6 +3,9 @@
 
 # Uncomment this to turn on verbose mode.
 # export DH_VERBOSE=1
+
+VERSION = $(shell dpkg-parsechangelog | grep ^Vers | cut -d\  -f2)
+UPVERSION = $(shell echo $(VERSION) | sed 's,-.*,,' | sed 's,+dfsg.*,,') 
 
 # Mono Shared directory redirection
 export MONO_SHARED_DIR=$(CURDIR)
@@ -26,14 +29,20 @@
 
 install/bless::
 # remove extra doc-files
-	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/AUTHORS
 	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/bless.spec
-	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/ChangeLog
-	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/COPYING
+	rm -f $(curdir)/debian/bless/usr/share/doc/bless/copying
+	rm -f $(curdir)/debian/bless/usr/share/doc/bless/ChangeLog
 	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/INSTALL
-	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/NEWS
 	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/README
 	rm -f $(CURDIR)/debian/bless/usr/share/doc/bless/README.packaging
 
 clean::
 	rm -rf $(MONO_SHARED_DIR)/.wapi
+
+get-orig-source:
+	[ -d ../tarballs ] || mkdir ../tarballs
+	uscan \
+		--force-download \
+		--download-version $(UPVERSION) \
+		--rename \
+		--destdir ../tarballs




More information about the Pkg-cli-apps-commits mailing list