[Python-modules-commits] r6985 - in packages/python-gasp/trunk/debian (4 files)

ffm-guest at users.alioth.debian.org ffm-guest at users.alioth.debian.org
Wed Nov 26 22:35:02 UTC 2008


    Date: Wednesday, November 26, 2008 @ 22:35:01
  Author: ffm-guest
Revision: 6985

Updated gasp packaging for style. 

Modified:
  packages/python-gasp/trunk/debian/control
  packages/python-gasp/trunk/debian/copyright
  packages/python-gasp/trunk/debian/rules
Deleted:
  packages/python-gasp/trunk/debian/patches/

Modified: packages/python-gasp/trunk/debian/control
===================================================================
--- packages/python-gasp/trunk/debian/control	2008-11-26 20:23:16 UTC (rev 6984)
+++ packages/python-gasp/trunk/debian/control	2008-11-26 22:35:01 UTC (rev 6985)
@@ -13,8 +13,7 @@
 Depends: ${python:Depends}, python-pygame
 Provides: ${python:Provides}
 XB-Python-Version: ${python:Versions}
-Description: a procedural Python graphics library for beginning programmers
+Description: procedural Python graphics library for beginning programmers
  GASP is a wrapper around the Pygame SDL library which makes writing graphical
  applications in Python easy for beginners, requiring no knowledge of classes
  or instances.
-

Modified: packages/python-gasp/trunk/debian/copyright
===================================================================
--- packages/python-gasp/trunk/debian/copyright	2008-11-26 20:23:16 UTC (rev 6984)
+++ packages/python-gasp/trunk/debian/copyright	2008-11-26 22:35:01 UTC (rev 6985)
@@ -1,11 +1,22 @@
 This package was debianized by Luke Faraone <lfaraone at ubuntu.com> on
 Friday November 21, 2008 22:30:00 -0500.
 
-It was downloaded from https://launchpad.net/gasp
+It was downloaded from https://launchpad.net/gasp-code/
 
 Copyright Holder:
  * Copyright 2006 - 2008 James Hancock
 
+Major contributors:
+    David Cooper
+    Kevin Kubasik
+    Stephan Richter
+    David Muffley
+    Preetam D'Souza
+    George Paci
+    Jeff Elkner <jeff at elkner.net>
+    Matt Gallagher <mattva01 at gmail.com>
+    Thomas Doggette <tdoggette at gmail.com>
+
 License:
 
 This is free software; you can redistribute it and/or modify it under the terms
@@ -31,4 +42,3 @@
 
 The Debian packaging is (C) 2008, Luke Faraone <lfaraone at ubuntu.com> and is
 licensed under the GPL version 3 or later.  See above.
-

Modified: packages/python-gasp/trunk/debian/rules
===================================================================
--- packages/python-gasp/trunk/debian/rules	2008-11-26 20:23:16 UTC (rev 6984)
+++ packages/python-gasp/trunk/debian/rules	2008-11-26 22:35:01 UTC (rev 6985)
@@ -7,5 +7,18 @@
 
 DEB_PYTHON_SETUP_CMD = gasp/setup.py
 
+
+PACKAGE = python-gasp
+SRC_VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p')
+SVN_REVISION := $(shell echo $(SRC_VERSION) | awk -F"+" '{ print $$2 }' | sed 's/.\..\..~bzr//' )
+TARBALL = $(PACKAGE)_$(SRC_VERSION).orig.tar.gz
+.PHONY: get-orig-source
 get-orig-source:
-	bzr branch lp:gasp-code
+	rm -rf get-orig-source $(TARBALL)
+	mkdir get-orig-source
+	bzr export -r $(SVN_REVISION) $(BRANCH_LOC) \
+	 get-orig-source/$(PACKAGE)-$(SRC_VERSION).orig
+	GZIP=--best tar czf $(TARBALL) -C get-orig-source $(PACKAGE)-$(SRC_VERSION).orig
+	rm -rf get-orig-source
+	echo "  "$(TARBALL)" created; move it to the right destination to build the package"
+




More information about the Python-modules-commits mailing list