[Pkg-mysql-commits] r1703 - mysql-workbench-oss/trunk/debian

Norbert Tretkowski nobse at alioth.debian.org
Fri Aug 28 07:28:41 UTC 2009


Author: nobse
Date: 2009-08-28 07:28:41 +0000 (Fri, 28 Aug 2009)
New Revision: 1703

Modified:
   mysql-workbench-oss/trunk/debian/changelog
   mysql-workbench-oss/trunk/debian/control
   mysql-workbench-oss/trunk/debian/copyright
   mysql-workbench-oss/trunk/debian/rules
Log:
Prepare next upload.

Modified: mysql-workbench-oss/trunk/debian/changelog
===================================================================
--- mysql-workbench-oss/trunk/debian/changelog	2009-08-24 11:19:02 UTC (rev 1702)
+++ mysql-workbench-oss/trunk/debian/changelog	2009-08-28 07:28:41 UTC (rev 1703)
@@ -2,6 +2,9 @@
 
   * Enhance package description.
   * Build against libmysqlclient-dev.
+  * Suggest mysql-client-5.1 instead mysql-client-5.0.
+  * Drop empty README.Debian file.
+  * Add get-orig-source target.
 
  -- Norbert Tretkowski <nobse at debian.org>  Sun, 23 Aug 2009 12:06:09 +0200
 

Modified: mysql-workbench-oss/trunk/debian/control
===================================================================
--- mysql-workbench-oss/trunk/debian/control	2009-08-24 11:19:02 UTC (rev 1702)
+++ mysql-workbench-oss/trunk/debian/control	2009-08-28 07:28:41 UTC (rev 1703)
@@ -10,11 +10,12 @@
 Vcs-Svn: svn://svn.debian.org/svn/pkg-mysql/mysql-workbench-oss/
 
 Package: mysql-workbench-oss
-Suggests: mysql-client-5.0
+Suggests: mysql-client-5.1
 Architecture: i386 amd64
 Depends: ${shlibs:Depends}
 Description: Database diagramming and development tool for MySQL
  MySQL Workbench is a cross-platform, visual database design tool developed by
  MySQL. It is the highly anticipated successor application of the DBDesigner4
- project. MySQL Workbench will be available as a native GUI tool on Window,
- Linux and OS X.
+ project.
+ .
+ This is the OSS Community Edition of MySQL Workbench.

Modified: mysql-workbench-oss/trunk/debian/copyright
===================================================================
--- mysql-workbench-oss/trunk/debian/copyright	2009-08-24 11:19:02 UTC (rev 1702)
+++ mysql-workbench-oss/trunk/debian/copyright	2009-08-28 07:28:41 UTC (rev 1703)
@@ -1,3 +1,5 @@
+== MySQL Workbench ==
+
 This package was first debianized by MySQL Workbench team on
 Thu, 25 Sep 2008 and is now maintained by Norbert Tretkowski
 since Wed, 11 Feb 2009.
@@ -4,25 +6,32 @@
 
 It was downloaded from http://dev.mysql.com/workbench/
 
-
 Copyright: 
+	(C) 2006-2008 MySQL AB, 2009 Sun Microsystems, Inc. 
 
-	(C) 2008 Sun Microsystems
+License:
+	GPL v2 with "FLOSS exception"
 
+	On Debian systems, the complete text of the GNU General Public
+	License can be found in /usr/share/common-licenses/GPL-2.
+
+
+
+== MySQL Connector/C++ ==
+
+Copyright:
+	(C) 2006-2008 MySQL AB, 2009 Sun Microsystems, Inc.
+
 License:
+	GPL v2 with "FLOSS exception"
 
-    This package is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; version 2 dated June, 1991.
+	On Debian systems, the complete text of the GNU General Public
+	License can be found in /usr/share/common-licenses/GPL-2.
 
-    This package is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
+== yaSSL ==
 
-    You should have received a copy of the GNU General Public License
-    along with this package; if not, write to the Free Software
-    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+Copyright:
+	(C) FOO
 
-On Debian systems, the complete text of the GNU General Public
-License can be found in /usr/share/common-licenses/GPL-2.
+License:
+	GPL v2 with "FLOSS exception"

Modified: mysql-workbench-oss/trunk/debian/rules
===================================================================
--- mysql-workbench-oss/trunk/debian/rules	2009-08-24 11:19:02 UTC (rev 1702)
+++ mysql-workbench-oss/trunk/debian/rules	2009-08-28 07:28:41 UTC (rev 1703)
@@ -9,9 +9,12 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+DEB_SOURCE_PACKAGE ?= $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':'))
 
+DEB_VERSION ?= $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
+DEB_NOEPOCH_VERSION ?= $(shell echo $(DEB_VERSION) | cut -d: -f2-)
+DEB_UPSTREAM_VERSION ?= $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//')
 
-
 configure: configure-stamp
 configure-stamp:
 	dh_testdir
@@ -88,4 +91,19 @@
 	dh_builddeb
 
 binary: binary-indep binary-arch
+
+get-orig-source:
+	@wget -nv -T10 -t3 \
+	  -O /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).tar.gz \
+	  http://ftp.gwdg.de/pub/misc/mysql/Downloads/MySQLGUITools/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).tar.gz
+	@tar xfz /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).tar.gz -C /tmp
+	@rm -rf /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)/debian/
+	@rm -rf /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)/ext/boost/
+	@rm -rf /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)/ext/curl/
+	@rm -rf /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)/ext/libsigc++/
+	@mv /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION) /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).orig
+	@cd /tmp ; tar czf $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).orig
+	@rm -f /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).tar.gz
+	@rm -rf /tmp/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).orig
+
 .PHONY: build clean binary-indep binary-arch binary install configure




More information about the Pkg-mysql-commits mailing list