[Python-modules-commits] r7853 - in packages/pyfltk/trunk (16 files)

dktrkranz-guest at users.alioth.debian.org dktrkranz-guest at users.alioth.debian.org
Wed Mar 11 23:04:44 UTC 2009


    Date: Wednesday, March 11, 2009 @ 23:04:43
  Author: dktrkranz-guest
Revision: 7853

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/pyfltk/trunk/debian/
  packages/pyfltk/trunk/debian/README.source
  packages/pyfltk/trunk/debian/changelog
  packages/pyfltk/trunk/debian/compat
  packages/pyfltk/trunk/debian/control
  packages/pyfltk/trunk/debian/copyright
  packages/pyfltk/trunk/debian/docs
  packages/pyfltk/trunk/debian/patches/
  packages/pyfltk/trunk/debian/patches/Py_ssize_t
  packages/pyfltk/trunk/debian/patches/force_opengl_support
  packages/pyfltk/trunk/debian/patches/no_docs
  packages/pyfltk/trunk/debian/patches/series
  packages/pyfltk/trunk/debian/python-pyfltk-doc.docs
  packages/pyfltk/trunk/debian/pyversions
  packages/pyfltk/trunk/debian/rules
  packages/pyfltk/trunk/debian/watch


Property changes on: packages/pyfltk/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/pyfltk/trunk/debian/README.source
===================================================================
--- packages/pyfltk/trunk/debian/README.source	                        (rev 0)
+++ packages/pyfltk/trunk/debian/README.source	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,57 @@
+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 configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+    for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+        if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+                export QUILT_PATCHES=debian/patches
+        fi
+    done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+    quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+    quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches.  Then, for every file that will be modified by this patch,
+run:
+
+    quilt add <file>
+
+before editing those files.  You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly.  After editing the files, run:
+
+    quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+    quilt import -P <patch> /path/to/patch
+    quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches.  The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+    quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.

Added: packages/pyfltk/trunk/debian/changelog
===================================================================
--- packages/pyfltk/trunk/debian/changelog	                        (rev 0)
+++ packages/pyfltk/trunk/debian/changelog	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,5 @@
+pyfltk (1.1.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #506646).
+
+ -- Luca Falavigna <dktrkranz at ubuntu.com>  Wed, 11 Mar 2009 23:23:35 +0100

Added: packages/pyfltk/trunk/debian/compat
===================================================================
--- packages/pyfltk/trunk/debian/compat	                        (rev 0)
+++ packages/pyfltk/trunk/debian/compat	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1 @@
+6

Added: packages/pyfltk/trunk/debian/control
===================================================================
--- packages/pyfltk/trunk/debian/control	                        (rev 0)
+++ packages/pyfltk/trunk/debian/control	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,29 @@
+Source: pyfltk
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Luca Falavigna <dktrkranz at ubuntu.com>
+Build-Depends: debhelper (>= 6), python-all-dev, python-support (>= 0.5.3), libfltk1.1-dev, mesa-common-dev, quilt
+Standards-Version: 3.8.0
+Homepage: http://pyfltk.sourceforge.net/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyfltk/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pyfltk/trunk/
+
+Package: python-pyfltk
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Description: Python wrapper for the Fast Light Toolkit
+ pyFltk provides a Python wrapper for the Fast Light Tool Kit cross-platform
+ graphical user-interface library (http://www.fltk.org/).
+ .
+ This package contains the wrapper itself.
+
+Package: python-pyfltk-doc
+Section: doc
+Architecture: all
+Recommends: python-pyfltk
+Description: Documentation for pyFltk
+ pyFltk provides a Python wrapper for the Fast Light Tool Kit cross-platform
+ graphical user-interface library (http://www.fltk.org/).
+ .
+ This package contains pyFltk documentation.

Added: packages/pyfltk/trunk/debian/copyright
===================================================================
--- packages/pyfltk/trunk/debian/copyright	                        (rev 0)
+++ packages/pyfltk/trunk/debian/copyright	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,172 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Upstream-Name: pyFltk
+Upstream-Maintainer: Andreas Held <a.held at computer.org>
+Upstream-Source: http://pyfltk.sourceforge.net/
+
+
+
+Files: contrib/*
+Copyright: Copyright 2002, Greg Ercolano
+
+Files: contrib/Fl_Table.cxx, contrib/Fl_Table.H:
+Copyright: Copyright 2002, Greg Ercolano
+Copyright: Copyright 2004, O'ksi'D
+
+Files: fltk/docs/*
+Copyright: Copyright 1998-2006, Bill Spitzak, Michael Sweet, Craig P. Earls
+
+Files: fltk/test/*
+Copyright: Copyright 1998-2003, Bill Spitzak and others
+Copyright: Copyright 2003-2006, Andreas Held and others
+
+Files: fltk/test/fltk_threads.py, fltk/test/sudoku.py
+Copyright: Copyright 2005-2006, Michael Sweet.
+Copyright: Copyright 1998-1999, Bill Spitzak and others
+Copyright: Copyright 2003, Andreas Held and others
+
+Files: fltk/test/simple_table.py, fltk/test/table.py
+Copyright: Copyright 2003, Greg Ercolano
+Copyright: Copyright 1998-1999, Bill Spitzak and others
+Copyright: Copyright 2003, Andreas Held and others
+
+Files: fltk/test/TextEditor.py
+Copyright: Copyright 2004, Chris Green
+Copyright: Copyright 1998-1999, Bill Spitzak and others
+Copyright: Copyright 2003, Andreas Held and others
+
+License: LGPL-2
+  This library is free software; you can redistribute it and/or
+  modify it under the terms of the GNU Library General Public
+  License as published by the Free Software Foundation; either
+  version 2 of the License, or (at your option) any later version.
+
+  This library 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
+  Library General Public License for more details.
+
+  You should have received a copy of the GNU Library General Public
+  License along with this library; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 USA
+
+  On Debian systems, the complete text of the GNU Library General
+  Public License can be found in `/usr/share/common-licenses/LGPL-2'.
+
+
+
+Files: swig/*
+Copyright: Copyright 1995-1998, The University of Utah and the Regents
+           of the University of California
+Copyright: Copyright 1998-2005, University of Chicago
+Copyright: Copyright 2005-2006, Arizona Board of Regents (University of Arizona)
+License:
+  I.
+  Copyright (c) 1995-1998
+  The University of Utah and the Regents of the University of California
+  All Rights Reserved
+
+  Permission is hereby granted, without written agreement and without
+  license or royalty fees, to use, copy, modify, and distribute this
+  software and its documentation for any purpose, provided that 
+  (1) The above copyright notice and the following two paragraphs
+  appear in all copies of the source code and (2) redistributions
+  including binaries reproduces these notices in the supporting
+  documentation.   Substantial modifications to this software may be
+  copyrighted by their authors and need not follow the licensing terms
+  described here, provided that the new terms are clearly indicated in
+  all files where they apply.
+
+  IN NO EVENT SHALL THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, THE 
+  UNIVERSITY OF UTAH OR DISTRIBUTORS OF THIS SOFTWARE BE LIABLE TO ANY
+  PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
+  DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
+  EVEN IF THE AUTHORS OR ANY OF THE ABOVE PARTIES HAVE BEEN ADVISED OF
+  THE POSSIBILITY OF SUCH DAMAGE.
+
+  THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, AND THE UNIVERSITY OF UTAH
+  SPECIFICALLY DISCLAIM ANY WARRANTIES,INCLUDING, BUT NOT LIMITED TO, 
+  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+  PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND 
+  THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE,
+  SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+  II.
+  This software includes contributions that are Copyright (c) 1998-2005
+  University of Chicago.
+  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions are
+  met:
+
+  Redistributions of source code must retain the above copyright notice,
+  this list of conditions and the following disclaimer.  Redistributions
+  in binary form must reproduce the above copyright notice, this list of
+  conditions and the following disclaimer in the documentation and/or
+  other materials provided with the distribution.  Neither the name of
+  the University of Chicago nor the names of its contributors may be
+  used to endorse or promote products derived from this software without
+  specific prior written permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF CHICAGO AND CONTRIBUTORS
+  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+  PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF
+  CHICAGO OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+  TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  III. 
+  This software includes contributions that are Copyright (c) 2005-2006
+  Arizona Board of Regents (University of Arizona).
+  All Rights Reserved
+
+  Permission is hereby granted, without written agreement and without
+  license or royalty fees, to use, copy, modify, and distribute this
+  software and its documentation for any purpose, provided that 
+  (1) The above copyright notice and the following two paragraphs
+  appear in all copies of the source code and (2) redistributions
+  including binaries reproduces these notices in the supporting
+  documentation. Substantial modifications to this software may be
+  copyrighted by their authors and need not follow the licensing terms
+  described here, provided that the new terms are clearly indicated in
+  all files where they apply.
+
+  THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF ARIZONA AND CONTRIBUTORS
+  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+  PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF
+  ARIZONA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+  TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+Files: debian/*
+Copyright: Copyright 2009, Luca Falavigna <dktrkranz at ubuntu.com>
+License: GPL-3
+  This program 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; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program 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.
+
+  You should have received a copy of the GNU General Public License along
+  with this program; if not, write to the Free Software Foundation, Inc.,
+  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+  On Debian systems, the complete text of the GNU General
+  Public License can be found in `/usr/share/common-licenses/GPL-3'.
+

Added: packages/pyfltk/trunk/debian/docs
===================================================================
--- packages/pyfltk/trunk/debian/docs	                        (rev 0)
+++ packages/pyfltk/trunk/debian/docs	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1 @@
+README

Added: packages/pyfltk/trunk/debian/patches/Py_ssize_t
===================================================================
--- packages/pyfltk/trunk/debian/patches/Py_ssize_t	                        (rev 0)
+++ packages/pyfltk/trunk/debian/patches/Py_ssize_t	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,70 @@
+Make some variables be Py_ssize_t instead of int, fix FTBFS on 64bit systems.
+
+Index: pyfltk-1.1.3/python/fltk_wrap.cpp
+===================================================================
+--- pyfltk-1.1.3.orig/python/fltk_wrap.cpp	2008-10-27 10:15:29.000000000 +0100
++++ pyfltk-1.1.3/python/fltk_wrap.cpp	2009-03-11 09:17:46.000000000 +0100
+@@ -5138,7 +5138,8 @@
+ SWIGINTERN void Fl_Gl_Window_drawPixels(Fl_Gl_Window *self,PyObject *rgb_py){
+ 
+     char *rgb;
+-    int len, i, height=self->h(), halfheight=self->h()/2, rowsize=self->w()*3;
++    int i, height=self->h(), halfheight=self->h()/2, rowsize=self->w()*3;
++    Py_ssize_t len;
+     char *row0, *row1;
+ 
+     char tmp[rowsize];
+@@ -39856,7 +39857,7 @@
+   arg1 = obj0;
+   {
+     /* Check if the input support the buffer protocol */
+-    int size_buffer;
++    Py_ssize_t size_buffer;
+     const void * buffer;
+     int failure = PyObject_AsReadBuffer(obj1,&buffer,&size_buffer);
+     if (!failure) {
+@@ -40509,7 +40510,7 @@
+   arg1 = obj0;
+   {
+     /* Check if the input support the buffer protocol */
+-    int size_buffer;
++    Py_ssize_t size_buffer;
+     const void * buffer;
+     int failure = PyObject_AsReadBuffer(obj1,&buffer,&size_buffer);
+     if (!failure) {
+@@ -55536,7 +55537,7 @@
+   if(!PyArg_UnpackTuple(args,(char *)"fl_draw_image",5,7,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail;
+   {
+     /* Check if the input support the buffer protocol */
+-    int size_buffer;
++    Py_ssize_t size_buffer;
+     const void * buffer;
+     int failure = PyObject_AsReadBuffer(obj0,&buffer,&size_buffer);
+     if (!failure) {
+@@ -55644,7 +55645,7 @@
+   if(!PyArg_UnpackTuple(args,(char *)"fl_draw_image_mono",5,7,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail;
+   {
+     /* Check if the input support the buffer protocol */
+-    int size_buffer;
++    Py_ssize_t size_buffer;
+     const void * buffer;
+     int failure = PyObject_AsReadBuffer(obj0,&buffer,&size_buffer);
+     if (!failure) {
+@@ -59783,7 +59784,7 @@
+   arg3 = static_cast< int >(val3);
+   {
+     /* Check if the input support the buffer protocol */
+-    int size_buffer;
++    Py_ssize_t size_buffer;
+     const void * buffer;
+     int failure = PyObject_AsReadBuffer(obj3,&buffer,&size_buffer);
+     if (!failure) {
+@@ -63120,7 +63121,7 @@
+   if(!PyArg_UnpackTuple(args,(char *)"gl_draw_image",5,7,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail;
+   {
+     /* Check if the input support the buffer protocol */
+-    int size_buffer;
++    Py_ssize_t size_buffer;
+     const void * buffer;
+     int failure = PyObject_AsReadBuffer(obj0,&buffer,&size_buffer);
+     if (!failure) {

Added: packages/pyfltk/trunk/debian/patches/force_opengl_support
===================================================================
--- packages/pyfltk/trunk/debian/patches/force_opengl_support	                        (rev 0)
+++ packages/pyfltk/trunk/debian/patches/force_opengl_support	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,16 @@
+Force OpenGL support, fix FTBFS.
+
+Index: pyfltk-1.1.3/setup.py
+===================================================================
+--- pyfltk-1.1.3.orig/setup.py	2009-03-10 19:49:01.929451202 +0100
++++ pyfltk-1.1.3/setup.py	2009-03-10 19:49:40.297440498 +0100
+@@ -223,7 +223,7 @@
+ 
+     # check also for multi-threading
+     doMulti = False
+-    doOpenGL = False
++    doOpenGL = True
+     doForms = False
+     pos = 0
+     for item in additional_libs:
+

Added: packages/pyfltk/trunk/debian/patches/no_docs
===================================================================
--- packages/pyfltk/trunk/debian/patches/no_docs	                        (rev 0)
+++ packages/pyfltk/trunk/debian/patches/no_docs	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,15 @@
+Do not install documentation files with distutils, ship them in a separate package.
+
+Index: pyfltk-1.1.3/setup.py
+===================================================================
+--- pyfltk-1.1.3.orig/setup.py	2009-03-10 19:47:59.853448944 +0100
++++ pyfltk-1.1.3/setup.py	2009-03-10 19:48:16.597764723 +0100
+@@ -291,7 +291,7 @@
+        description = 'This is a wrapper for the FLTK',
+        ext_modules = [module1],
+        packages = ['fltk'],
+-       package_data={'fltk': ['test/*.*', 'docs/*.*']},
++       package_data={'fltk': ['test/*.*']},
+        )
+ 
+ 

Added: packages/pyfltk/trunk/debian/patches/series
===================================================================
--- packages/pyfltk/trunk/debian/patches/series	                        (rev 0)
+++ packages/pyfltk/trunk/debian/patches/series	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,3 @@
+no_docs
+force_opengl_support
+Py_ssize_t

Added: packages/pyfltk/trunk/debian/python-pyfltk-doc.docs
===================================================================
--- packages/pyfltk/trunk/debian/python-pyfltk-doc.docs	                        (rev 0)
+++ packages/pyfltk/trunk/debian/python-pyfltk-doc.docs	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1 @@
+fltk/docs/*

Added: packages/pyfltk/trunk/debian/pyversions
===================================================================
--- packages/pyfltk/trunk/debian/pyversions	                        (rev 0)
+++ packages/pyfltk/trunk/debian/pyversions	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1 @@
+2.4-

Added: packages/pyfltk/trunk/debian/rules
===================================================================
--- packages/pyfltk/trunk/debian/rules	                        (rev 0)
+++ packages/pyfltk/trunk/debian/rules	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,60 @@
+#!/usr/bin/make -f
+
+include /usr/share/quilt/quilt.make
+
+PYVERS := $(shell pyversions -vs)
+
+build: patch build-stamp
+build-stamp:
+	dh_testdir
+	set -e ;\
+	for v in $(PYVERS); do \
+		python$$v ./setup.py build; \
+	done
+	touch $@
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	for v in $(PYVERS); do \
+	    python$$v setup.py clean; \
+	done
+	rm -fr build
+	dh_clean build-stamp
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	for v in $(PYVERS); do \
+  	    python$$v setup.py install --root=$(CURDIR)/debian/python-pyfltk; \
+	done
+
+binary-common: install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs CHANGES
+	dh_installdocs
+
+binary-indep: install
+	dh_compress -i
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+binary-arch: install
+	dh_pysupport -a
+	dh_strip -a
+	dh_compress -a
+	dh_fixperms -a
+	dh_installdeb -a
+	dh_shlibdeps -a
+	dh_gencontrol -a
+	dh_md5sums -a
+	dh_builddeb -a
+
+binary: binary-common binary-indep binary-arch
+.PHONY: build clean binary-common binary-indep binary-arch binary install


Property changes on: packages/pyfltk/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/pyfltk/trunk/debian/watch
===================================================================
--- packages/pyfltk/trunk/debian/watch	                        (rev 0)
+++ packages/pyfltk/trunk/debian/watch	2009-03-11 23:04:43 UTC (rev 7853)
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/pyfltk/pyFltk-([0-9.]*)\.tar\.gz




More information about the Python-modules-commits mailing list