debian/0000755000000000000000000000000011713360351007166 5ustar debian/vistrails.docs0000644000000000000000000000000611711264100012045 0ustar doc/* debian/control0000644000000000000000000000232311711264100010562 0ustar Source: vistrails Section: science Priority: extra Maintainer: Alastair McKinstry Build-Depends: debhelper (>= 8.1.3~), python, debhelper (>= 8.1.3~), python-numpy, python-support Standards-Version: 3.9.2 Homepage: http://www.vistrails.org/index.php/Main_Page Package: vistrails Section: science Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-numpy, python-scipy, python-qt4, python-matplotlib, python-suds, python-sip, python-vtk, python-qt4-gl Description: Science visualisation workflow toolkit VisTrails is an open-source scientific workflow and provenance management system developed at the University of Utah that provides support for data exploration and visualization. Whereas workflows have been traditionally used to automate repetitive tasks, for applications that are exploratory in nature, such as simulations, data analysis and visualization, very little is repeated---change is the norm. As an engineer or scientist generates and evaluates hypotheses about data under study, a series of different, albeit related, workflows are created while a workflow is adjusted in an interactive process. VisTrails was designed to manage these rapidly-evolving workflows. debian/vistrails.examples0000644000000000000000000000001311711264100012731 0ustar examples/* debian/source/0000755000000000000000000000000011711264100010457 5ustar debian/source/format0000644000000000000000000000001411711264100011665 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011711264100010606 5ustar debian/patches/series0000644000000000000000000000002511711264100012020 0ustar vistrails-path.patch debian/patches/vistrails-path.patch0000644000000000000000000000175011711264100014604 0ustar Description: Make vistrails a standalone executable in /usr/bin Author: Alastair McKinstry Last-Updated: 2011-10-04 Forwarded: no Index: vistrails-2.0.alpha~1/vistrails/vistrails.py =================================================================== --- vistrails-2.0.alpha~1.orig/vistrails/vistrails.py 2011-10-03 16:16:39.000000000 +0100 +++ vistrails-2.0.alpha~1/vistrails/vistrails.py 2011-10-03 16:28:09.000000000 +0100 @@ -1,3 +1,4 @@ +#!/usr/bin/python ############################################################################### ## ## Copyright (C) 2006-2011, University of Utah. @@ -33,6 +34,9 @@ ############################################################################### """Main file for the VisTrails distribution.""" +import sys +sys.path.append('/usr/share/pyshared/vistrails') + def disable_lion_restore(): """ Prevent Mac OS 10.7 to restore windows state since it would make Qt 4.7.3 unstable due to its lack of handling Cocoa's Main debian/rules0000755000000000000000000000055011711264100010237 0ustar #!/usr/bin/make -f export DH_VERBOSE=1 # The magic debhelper rule: %: dh $@ override_dh_auto_install: dh_auto_install cp vistrails/vistrails.py debian/vistrails/usr/bin/vistrails cp -a vistrails debian/vistrails/usr/share/pyshared rm -r debian/vistrails/usr/share/pyshared/vistrails/tests find debian/vistrails -type f -exec chmod 644 {} \; dh_numpy debian/compat0000644000000000000000000000000211711264100010355 0ustar 8 debian/vistrails.dirs0000644000000000000000000000004711711264100012063 0ustar /usr/bin /usr/share/pyshared/vistrails debian/changelog0000644000000000000000000000112511711264100011030 0ustar vistrails (2.0.alpha~1-3) unstable; urgency=low * Make vistrails Architecture: all. Closes: #654910. * Add build-dep on python-support. Closes: 652288. -- Alastair McKinstry Sun, 29 Jan 2012 15:37:24 +0000 vistrails (2.0.alpha~1-2) unstable; urgency=low * Add runtime dependency on python-qt4-gl. Closes: #644355 -- Alastair McKinstry Wed, 05 Oct 2011 10:13:32 +0100 vistrails (2.0.alpha~1-1) unstable; urgency=low * Initial release. (Closes: #644096) -- Alastair McKinstry Tue, 04 Oct 2011 11:09:27 +0100 debian/copyright0000644000000000000000000000304511711264100011114 0ustar VisTrails is distributed under the "Modified BSD License". Copyright (c) 2006-2011, University of Utah. 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 Utah 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 COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER 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.