debian/0000775000000000000000000000000012301671074007171 5ustar debian/convert-changelog.sh0000664000000000000000000000066712275266777013167 0ustar #!/bin/sh exec sed -r \ -e '1,3 d' \ -e 's| ?\\ref | |g' \ -e 's|\\link ||g' \ -e 's|\\endlink||g' \ -e 's|\\#|#|g' \ -e 's|

||' \ -e 's|]*>||g' \ -e 's|||g' \ -e 's| *(.*)|\1|g' \ -e 's|||g' \ -e 's|||g' \ -e 's|( *)

  • |\n\1*|' \ -e 's|
    $||' \ -e 's|ö|ö|g' \ -e '/^[*][/]$/ d' \ | tr '\n' '$' \ | sed -r -e 's|\$\$+|\n\n|g' -e 's| *\$ *| |g' \ | fmt debian/python-vigra-doc.doc-base0000664000000000000000000000052312275266777014006 0ustar Document: vigranumpy-reference Title: Vigranumpy Reference Author: Ullrich Köthe Section: Programming Format: HTML Index: /usr/share/doc/python-vigra-doc/html/index.html Files: /usr/share/doc/python-vigra-doc/html/*.html Format: Text Index: /usr/share/doc/python-vigra-doc/rst/index.txt Files: /usr/share/doc/python-vigra-doc/rst/*.txt debian/rules0000775000000000000000000001435612301671031010253 0ustar #!/usr/bin/make -f CFLAGS := $(shell env DEB_CFLAGS_MAINT_APPEND=-pipe dpkg-buildflags --get CFLAGS; dpkg-buildflags --get CPPFLAGS) CXXFLAGS := $(shell env DEB_CXXFLAGS_MAINT_APPEND=-pipe dpkg-buildflags --get CXXFLAGS; dpkg-buildflags --get CPPFLAGS) LDFLAGS := $(shell env DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed dpkg-buildflags --get LDFLAGS) # These don't need to be exported and if they are we'll get the flags # duplicated in the command line. unexport CFLAGS unexport CXXFLAGS unexport LDFLAGS ifeq ($(DEB_HOST_ARCH_CPU),i386) CFLAGS += -ffloat-store CXXFLAGS += -ffloat-store endif ifeq ($(DEB_HOST_ARCH),ppc64el) CFLAGS := $(subst -O3,-O2,$(CFLAGS)) CXXFLAGS := $(subst -O3,-O2,$(CXXFLAGS)) endif space = $() $() here = $(dir $(firstword $(MAKEFILE_LIST)))/.. current_version = $(shell cd $(here) && dpkg-parsechangelog | sed -n -r -e "/Version: (.*)/ { s//\1/p; q; }") upstream_version = $(firstword $(subst -,$(space),$(current_version))) cmake_options = \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_VERBOSE_MAKEFILE=ON \ -DWITH_OPENEXR=ON \ -DCMAKE_C_FLAGS_RELEASE="$(CFLAGS)" \ -DCMAKE_CXX_FLAGS_RELEASE="$(CXXFLAGS)" \ -DCMAKE_SHARED_LINKER_FLAGS_RELEASE="$(LDFLAGS)" cmake_python_options = \ -DPYTHON_EXECUTABLE=/usr/bin/python$(1) \ -DPYTHON_INCLUDE_DIR=/usr/include/python$(1)/ \ -DPYTHON_LIBRARY=$(wildcard /usr/lib/libpython$(1).so /usr/lib/$(DEB_HOST_MULTIARCH)/libpython$(1).so) \ -DBoost_PYTHON_LIBRARY_RELEASE=/usr/lib/$(DEB_HOST_MULTIARCH)/libboost_python-py$$(echo $(1) | tr -d .).so # build and build-* targets # ========================= .PHONY: build build-arch build-indep build: build-arch build-indep build-indep: # Nothing to do in build-indep, "thanks" to bug #374029. build-arch: dh_testdir echo DEBUGMEMSIZE ; if which free ; then free ; fi $(MAKE) -f debian/rules \ obj/CMakeCache.txt \ $(patsubst %,obj.%/CMakeCache.txt,$(shell pyversions -r)) $(MAKE) -f debian/rules \ doc/changelog \ obj/build-stamp \ $(patsubst %,obj.%/build-stamp,$(shell pyversions -r)) ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) ifneq (,$(filter $(DEB_HOST_ARCH_CPU),powerpc)) : # run the tests, but ignore test results -$(MAKE) -k -f debian/rules \ obj/test-stamp \ $(patsubst %,obj.%/test-stamp,$(shell pyversions -r)) else $(MAKE) -k -f debian/rules \ obj/test-stamp \ $(patsubst %,obj.%/test-stamp,$(shell pyversions -r)) endif endif obj/CMakeCache.txt: mkdir -p $(dir $(@)) cd $(dir $(@)) && cmake .. $(cmake_options) \ -DPYTHON_EXECUTABLE=/usr/bin/python \ -DWITH_VIGRANUMPY=0 obj.python%/CMakeCache.txt: mkdir -p $(dir $(@)) cd $(dir $(@)) && \ CXXFLAGS=-fno-strict-aliasing cmake .. $(cmake_options) $(call cmake_python_options,$(*)) if ! grep VIGRANUMPY_DEPENDENCIES $(@) > /dev/null; then \ echo "Error: Numpy for Python $* not found" >&2; \ rm -f $(@); \ exit 1; \ fi # We don't want to link with libpythonX.Y. # We don't want SONAMES (except vigranumpycore.so) find $(dir $(@))/vigranumpy/ -name 'link.txt' -exec sed -i \ -e 's/ -lpython[0-9.]\+ / /g' \ -e '/-Wl,-soname,vigranumpycore/b' \ -e 's/ -Wl,-soname,[^ ]\+ / /' \ {} + obj/build-stamp: obj/CMakeCache.txt $(MAKE) -C $(dir $(@)) chmod a-x vigranumpy/test/*.py # nosetest would skip executable *.py touch $(@) obj.python%/build-stamp: obj.python%/CMakeCache.txt obj/build-stamp cd obj && find . -name '*.o' -o -name '*.so' -o -name '*.so.*' | xargs cp -v --preserve=links --parents -t ../$(dir $(@)) $(MAKE) -C $(dir $(@)) touch $(@) obj/test-stamp: obj/build-stamp $(MAKE) check -C $(dir $(@)) touch $(@) obj.python%/test-stamp:: obj.python%/build-stamp $(MAKE) vigranumpytest -C $(dir $(@)) touch $(@) doc/changelog: docsrc/credits_changelog.dxx sh debian/convert-changelog.sh < $(<) > $(@) # binary and binary-* targets # =========================== .PHONY: binary binary-arch binary-indep binary: binary-arch binary-indep binary-arch: build-arch dh_testdir dh_testroot $(MAKE) -f debian/rules \ obj/install-stamp \ $(patsubst %,obj.%/install-stamp,$(shell pyversions -r)) dh_install -a dh_installdocs -a dh_installchangelogs -a doc/changelog dh_installexamples -a find -path './debian/*/usr/share/doc/*/examples/*' -exec chmod a-x '{}' + dh_installman -a dh_python2 -a dh_link -a dh_compress -a dh_fixperms -a dh_strip -a dh_makeshlibs -V 'libvigraimpex5 (>= 1.10.0)' dh_shlibdeps # See : $(or $(wildcard /usr/bin/dh_numpy),debian/dh_numpy) -p python-vigra dh_installdeb -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a .PHONY: binary-indep binary-indep: build-indep dh_testdir dh_testroot $(MAKE) -f debian/rules \ doc/vigra/build-stamp \ doc/vigranumpy/build-stamp dh_installdocs -i -XLICENSE.txt -Xobjects.inv -Xdoctrees -X.buildinfo -Xbuild-stamp cd debian/libvigraimpex-doc/usr/share/doc/libvigraimpex-doc/ && \ rm -rf html && \ mv vigra html && \ rm -f html/jquery.js && \ sed -r -i \ -e 's!()!\1/usr/share/doc/libvigraimpex-doc/copyright\2!g' \ html/index.html cd debian/python-vigra-doc/usr/share/doc/python-vigra-doc/ && \ rm -rf html && \ mv vigranumpy html dh_installchangelogs -i dh_link -i ifeq "$(wildcard /usr/bin/dh_sphinxdoc)" "" echo "sphinxdoc:Depends=libjs-jquery" >> debian/python-vigra-doc.substvars else dh_sphinxdoc -p python-vigra-doc /usr/share/doc/python-vigra-doc/html/ endif dh_compress -i -X.js -X_sources dh_fixperms -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i %/install-stamp: %/build-stamp $(MAKE) -C $(dir $(@)) install DESTDIR=$(CURDIR)/debian/tmp/ touch $(@) doc/vigra/build-stamp: obj/build-stamp $(MAKE) doc_cpp -C obj/ touch $(@) doc/vigranumpy/build-stamp: obj.$(shell pyversions -d)/build-stamp doc/vigra/build-stamp ln -sf $(CURDIR)/vigranumpy/docsrc/c_api_replaces.txt obj.$(shell pyversions -d)/vigranumpy/docsrc/ $(MAKE) doc_python -C obj.$(shell pyversions -d)/ touch $(@) # clean target # ============ .PHONY: clean clean: dh_testdir dh_clean rm -rf obj*/ find doc/ -type f -delete # get-orig-source target # ====================== .PHONY: get-orig-source get-orig-source: sh $(here)/debian/get-orig-source.sh 1.10.0+dfsg #sh $(here)/debian/get-orig-source.sh $(upstream_version) .NOTPARALLEL: # vim:ts=4 sw=4 noet debian/libvigraimpex-dev.dirs0000664000000000000000000000002412275266777013512 0ustar usr/lib usr/include debian/libvigraimpex-dev.docs0000664000000000000000000000002512275266777013502 0ustar debian/README.Debian debian/libvigraimpex-dev.install0000664000000000000000000000006612275266777014225 0ustar /usr/bin/vigra-config /usr/include/* /usr/lib/lib*.so debian/watch0000664000000000000000000000021312275267025010225 0ustar version=3 opts=dversionmangle=s/\+dfsg[0-9]*// \ http://hci.iwr.uni-heidelberg.de/vigra/ \ (?:.*/)vigra-([\d.]+)-src(?:-with-docu|).tar.gz debian/get-orig-source.sh0000664000000000000000000000167612275267025012561 0ustar #!/bin/sh set -e export GZIP="-9 -n" export TAR_OPTIONS="--owner root --group root --mode a+rX" pwd=`pwd` dfsgversion="$1" version="${1%+dfsg*}" if [ -z "$version" ] then printf 'Usage: %s \n' "$0" exit 1 fi cd "`dirname "$0"`/../" tmpdir=`mktemp -d get-orig-source.XXXXXX` uscan --noconf --force-download --rename --download-version="$version" --destdir="$tmpdir" cd "$tmpdir" tar -xzf libvigraimpex_*.orig.tar.gz rm *.tar.gz # Remove documentation without source: find vigra-* -name '*.ps' -delete # Remove not-for-us stuff: rm -v vigra-*/*win32*.zip # Remove documentation that we'll rebuild anyway: rm -v vigra-*/doc/vigra/*.html rm -v vigra-*/doc/vigra/*.png rm -rv vigra-*/doc/vigranumpy/ rm -rv vigra-*/vigranumpy/docsrc/_static/ # Remove Mercurial artifacts: rm -v vigra-*/.hg* mv vigra-*/ "vigra-${version%+dfsg*}.orig" tar -cJf "$pwd/libvigraimpex_$dfsgversion.orig.tar.xz" vigra-*.orig/ cd .. rm -Rf "$tmpdir" # vim:ts=4 sw=4 et debian/copyright0000664000000000000000000000457012275267025011141 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: VIGRA Upstream-Contact: Ullrich Köthe Source: http://hci.iwr.uni-heidelberg.de/vigra/ Files: * Comment: PostScript documents without source has been stripped from the Debian version of this package. Copyright: 1998-2013, Ullrich Köthe 1998-2010, Hans Meine 2010, Joachim Schleicher 2009, Nico Splitthoff 2003-2009, Rahul Nair 2008-2011, Michael Hanselmann 1998-2013, Gunnar Kedenburg 1998-2002, 2007 Pablo d'Angelo 2003-2004, 2006-2007, B. Seppke 2003-2004, 2006-2007, F. Heinrich 2003-2007, Kasim Terzic 2003-2007, Christian-Dennis Rahn 1999, Paul Moore 2011-2012 by Markus Nullmeier 2012 Christoph Spiel 2011-2012 by Stefan Schmidt 2012 by Frank Lenzen 2011 Lukas Jirkovsky 1993 by Sun Microsystems, Inc. 2011 by Michael Tesch 2009-2011 Janis Fehr 2009-2013 Thorben Kroeger 2012-2013 by Thorsten Beier License: MIT Files: debian/* Copyright: 1995-1996, Alejandro Sierra 2009-2011, Jakub Wilk 2011, Ralf Treinen 2012-2013 Matthias Klose 2013 Andreas Metzler License: MIT License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/source/0000775000000000000000000000000012276221121010464 5ustar debian/source/format0000664000000000000000000000001412275266777011723 0ustar 3.0 (quilt) debian/libvigraimpex-dev.examples0000664000000000000000000000013412275266777014371 0ustar src/examples/*.cxx src/examples/*.gif src/examples/*.tif src/examples/*.JPG debian/Makefile debian/libvigraimpex-doc.docs0000664000000000000000000000001312275266777013466 0ustar doc/vigra/ debian/python-vigra-doc.docs0000664000000000000000000000002012275266777013251 0ustar doc/vigranumpy/ debian/vigra-config.10000664000000000000000000000141112275266777011647 0ustar .TH VIGRA-CONFIG "1" "January 2011" "vigra-config 1.7.1" "User Commands" .SH NAME vigra-config \- get information about the installed version of VIGRA .SH SYNOPSIS .B vigra-config [\fIoptions\fR] .SH OPTIONS .TP \fB\-h\fR, \fB\-\-help\fR Display help message and exit. .TP \fB\-\-version\fR Print version information. .TP \fB\-\-impex\-lib\fR, \fB\-\-libs\fR Print the linker flags that are needed to link with the \fBlibvigraimpex\fR library. .TP \fB\-\-fftw\-lib\fR Print the linker flags that are needed to link with the FFTW library. .TP \fB\-\-cppflags\fR Print the compiler flags that are needed to find the VIGRA include files. .TP \fB\-\-include\-path\fR, \fB\-\-includepath\fR Print path to VIGRA include files. .TP \fB\-\-docdir\fR Print path to VIGRA documentation. debian/libvigraimpex-dev.manpages0000664000000000000000000000002612275266777014346 0ustar debian/vigra-config.1 debian/libvigraimpex5.docs0000664000000000000000000000001212275267025012772 0ustar README.md debian/libvigraimpex-doc.links0000664000000000000000000000011212275266777013656 0ustar usr/share/doc/libvigraimpex-doc/html usr/share/doc/libvigraimpex-dev/html debian/libvigraimpex5.dirs0000664000000000000000000000001012275267025013001 0ustar usr/lib debian/Makefile0000664000000000000000000000040112275266777010650 0ustar CXXFLAGS = -g -O2 -Wall LDFLAGS = -lvigraimpex SOURCES = $(wildcard *.cxx) TARGETS = $(SOURCES:.cxx=) all: $(TARGETS) %.o: %.cxx $(COMPILE.cc) -o $(@) $(<) $(TARGETS): %: %.o $(LINK.cc) -o $(@) $(<) clean: rm -f *.o $(TARGETS) # vim:ts=4 sw=4 noet debian/NEWS0000664000000000000000000000054712275266777007722 0ustar libvigraimpex (1.7.0+dfsg-3) unstable; urgency=low VIGRA 1.7.0 introduces two backwards incompatible changes: * Angle convention was modified from counter-clockwise to clockwise. * symmetricEigensystem() sorts eigenvalues by decreasing value (was: decreasing absolute values). -- Jakub Wilk Wed, 16 Jun 2010 01:12:04 +0200 debian/patches/0000775000000000000000000000000012276221121010613 5ustar debian/patches/disable-noise-variance-clustering-vigranumpy-test.diff0000664000000000000000000000132712275267370023324 0ustar Description: Disable vigranumpy test for noiseVarianceClustering() For the time being, disable failing vigranumpy test for noiseVarianceClustering(). Author: Jakub Wilk Forwarded: not-needed Last-Update: 2011-03-02 --- a/vigranumpy/test/test2.py +++ b/vigranumpy/test/test2.py @@ -144,7 +144,8 @@ image += np.random.normal(size=(100,100, 3)) noiseVarianceEstimation(image.bindAxis('c', 0)) - noiseVarianceClustering(image.bindAxis('c', 0)) + # FIXME: Disabled, see http://bugs.debian.org/586247 + # XXX noiseVarianceClustering(scalar_image) nonparametricNoiseNormalization(image) quadraticNoiseNormalizationEstimated(image) linearNoiseNormalizationEstimated(image) debian/patches/docsrc-paths.diff0000664000000000000000000000576512275267406014073 0ustar Description: Fix hyperlinks from the C++ library documentation to python-vigra documentation and the other way round. Bug-Debian: http://bugs.debian.org/590069 Bug-Debian: http://bugs.debian.org/590068 Forwarded: not-needed Last-Update: 2011-03-02 --- a/docsrc/credits_changelog.dxx +++ b/docsrc/credits_changelog.dxx @@ -43,7 +43,7 @@ also contributed his pLSA (probabilistic latent semantic analysis) implementation.
  • Nathan Huesken and Christoph Sommer helped a lot in developing - vigranumpy, the VIGRA Python bindings. + vigranumpy, the VIGRA Python bindings.
  • Jens-Malte Gottfried contributed to the cmake-based build system. @@ -224,7 +224,7 @@
  • Added \ref vigra::NumpyAnyArray and \ref vigra::NumpyArray, improved \ref vigra::MultiArrayView. -
  • Added vigranumpy (VIGRA Python bindings). +
  • Added vigranumpy (VIGRA Python bindings).
  • Added \ref VigraMatlab. --- a/docsrc/index.dxx +++ b/docsrc/index.dxx @@ -37,7 +37,7 @@
       Demonstration programs for VIGRA's usage
  • \ref VigraMatlab
       VIGRA Matlab bindings -
  • vigranumpy +
  • vigranumpy
       VIGRA Python bindings
  • \ref CreditsChangelog
       Who contributed what? --- a/vigranumpy/docsrc/conf.py.in +++ b/vigranumpy/docsrc/conf.py.in @@ -239,7 +239,7 @@ .. |%s| replace:: %s """% (replacement[0],replacement[0][k+1:]) rst_epilog += """ - .. _%s: ../../doc/vigra/%s + .. _%s: /usr/share/doc/libvigraimpex-doc/html/%s """% (replacement[0],replacement[1]) # make python accumulators documentation better (?) --- a/vigranumpy/docsrc/index.rst +++ b/vigranumpy/docsrc/index.rst @@ -14,7 +14,7 @@ Introduction ------------ -Vigranumpy exports the functionality of the C++ image processing library `VIGRA <../vigra/index.html>`_ to Python. It can be invoked by importing the vigra module:: +Vigranumpy exports the functionality of the C++ image processing library `VIGRA `_ to Python. It can be invoked by importing the vigra module:: import vigra @@ -403,7 +403,7 @@ The module vigra.colors provides functions to adjust image brightness and contrast, and to transform between different color spaces. -See `Color Conversions <../vigra/group__ColorConversions.html>`_ in the C++ documentation +See `Color Conversions `_ in the C++ documentation for more information. .. automodule:: vigra.colors debian/patches/vigra-config-docdir.diff0000664000000000000000000000054312275267413015301 0ustar Description: Correct output of ‘vigra-config --docdir’. Author: Jakub Wilk Forwarded: not-needed Last-Update: 2011-01-22 --- a/config/vigra-config.in +++ b/config/vigra-config.in @@ -91,4 +91,4 @@ print '@CMAKE_INSTALL_PREFIX@/include' if op.docdir: - print '@DOCDIR@' + print '/usr/share/doc/libvigraimpex-dev/html/' debian/patches/series0000664000000000000000000000024212275267025012042 0ustar disable-noise-variance-clustering-vigranumpy-test.diff docsrc-out-of-source.diff docsrc-paths.diff vigra-config-docdir.diff no-hdf5.diff removed-static-docs.diff debian/patches/docsrc-out-of-source.diff0000664000000000000000000000117412275267400015443 0ustar Description: Add support for out-of-source documentation building. Author: Jakub Wilk Forwarded: not-needed Last-Update: 2010-04-16 --- a/docsrc/makeFunctionIndex.py +++ b/docsrc/makeFunctionIndex.py @@ -143,7 +143,7 @@ # crosslinking of vigranumpy documentation. # Note that '::' are not allowed in reStructuedText link names, # so we have to use '.' instead. -replaces=open("../vigranumpy/docsrc/c_api_replaces.txt","w") +replaces=open("../../vigranumpy/docsrc/c_api_replaces.txt","w") for i in range(len(functionList)): functionName = functionList[i][1] overloadDisambiguation = functionList[i][2] debian/patches/no-hdf5.diff0000664000000000000000000000112312275267421012716 0ustar Description: ifdef out additional HDF5 related methods, since libvigraimpex is in main but libhdf5-serial-dev is in universe. Author: Barry Warsaw Bug-Ubuntu: http://pad.lv/635891 Forwarded: no --- a/include/vigra/random_forest/rf_visitors.hxx +++ b/include/vigra/random_forest/rf_visitors.hxx @@ -37,6 +37,11 @@ #ifdef HasHDF5 # include "vigra/hdf5impex.hxx" +#else +# include "vigra/impex.hxx" +# include "vigra/multi_array.hxx" +# include "vigra/multi_impex.hxx" +# include "vigra/inspectimage.hxx" #endif // HasHDF5 #include #include debian/patches/removed-static-docs.diff0000664000000000000000000000110012275267425015331 0ustar --- a/vigranumpy/docsrc/CMakeLists.txt +++ b/vigranumpy/docsrc/CMakeLists.txt @@ -19,7 +19,7 @@ -c ${CMAKE_CURRENT_BINARY_DIR} ${SPHINX_OPTS}) file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/_static) - configure_file(_static/vigra-icon.ico ${CMAKE_CURRENT_BINARY_DIR}/_static/vigra-icon.ico COPYONLY) + configure_file(../../docsrc/vigra-icon.ico ${CMAKE_CURRENT_BINARY_DIR}/_static/vigra-icon.ico COPYONLY) DEPENDENCY_PATH(VIGRAIMPEX_PATH vigraimpex) STRING(REGEX REPLACE "/vigra$" "" VIGRANUMPY_TMP_PATH ${vigranumpy_tmp_dir}) debian/libvigraimpex5.install0000664000000000000000000000002312275267025013512 0ustar /usr/lib/lib*.so.* debian/compat0000664000000000000000000000000212275266777010413 0ustar 7 debian/README.Debian0000664000000000000000000000036012275266777011255 0ustar vigra for Debian ---------------- To compile the examples, copy all from the directory examples/ to a place you have write permision, ungzip all files, and make. -- Alejandro Sierra , Sat, 4 Jun 2005 23:59:00 -0500 debian/dh_numpy0000775000000000000000000000145212275266777010770 0ustar #!/usr/bin/perl -w use strict; use File::Find; use Debian::Debhelper::Dh_Lib; init(); my $numpy_next_version; my $numpy_version = `python -c 'from numpy import __version__; print __version__'`; if (! defined $numpy_version || $numpy_version eq "") { error("Numpy is not installed, aborting. (Probably forgot to Build-Depend on python-numpy.)"); } elsif ($numpy_version =~ m/^(\d+)[.](\d+)([.]\d+)*/) { $numpy_version = sprintf("%d.%d", $1, $2); $numpy_next_version = sprintf("%d.%d", $1, $2 + 1); } else { error("Unable to parse Numpy version out of \"$numpy_version\"."); } foreach my $package (@{$dh{DOPACKAGES}}) { addsubstvar($package, "python:Depends", "python-numpy (>= 1:$numpy_version), " . "python-numpy (<< 1:$numpy_next_version)" ); } # vim:ts=4 sw=4 et debian/clean0000664000000000000000000000014312275266777010220 0ustar doc/*/build-stamp doc/changelog vigranumpy/docsrc/c_api_replaces.txt vigranumpy/lib/__version__.py debian/changelog0000664000000000000000000006065212301671074011054 0ustar libvigraimpex (1.10.0+dfsg-3ubuntu2) trusty; urgency=medium * Build with -O2 on ppc64el. -- Matthias Klose Fri, 21 Feb 2014 16:34:51 +0100 libvigraimpex (1.10.0+dfsg-3ubuntu1) trusty; urgency=medium * Merge with Debian experimental to fix FTBFS; remaining changes: - Remove build dependency on libhdf5-serial-dev (universe). - debian/patches/no-hdf5.diff: Comment out additional methods requiring HDF5. - build using tiff5 -- Barry Warsaw Fri, 07 Feb 2014 18:43:30 -0500 libvigraimpex (1.10.0+dfsg-3) experimental; urgency=medium * QA upload. * Build with -pipe. -- Andreas Metzler Mon, 27 Jan 2014 17:27:13 +0100 libvigraimpex (1.10.0+dfsg-2) experimental; urgency=medium * QA upload. * (Build-)Depend on libhdf5-dev instead of removed transitional package libhdf5-serial-dev. Closes: #735569 * (Build-)Depend on libtiff-dev instead of transitional package libtiff4-dev. -- Andreas Metzler Sat, 18 Jan 2014 16:23:38 +0100 libvigraimpex (1.10.0+dfsg-1) experimental; urgency=low * QA upload. * Update watchfile. * Use xz compression for source tarball. * New upstream version. + Drop patches previously pulled from upstream 20_increased-tolerance-tests.diff ref-to-temporary-in-Sampler.diff + soname bumped, change package name. + Filename of upstream README changed. -- Andreas Metzler Sat, 07 Dec 2013 19:56:15 +0100 libvigraimpex (1.9.0+dfsg-7) unstable; urgency=low * QA upload. * Make debian/rules work with both multiarch and non-multiarch libboost-python. (This supersedes the change in Ubuntu 1.9.0+dfsg-6ubuntu2.) -- Andreas Metzler Sat, 05 Oct 2013 13:45:19 +0200 libvigraimpex (1.9.0+dfsg-6ubuntu3) trusty; urgency=low * No change rebuild for Boost 1.54 transition. -- Dmitrijs Ledkovs Tue, 22 Oct 2013 18:08:36 +0100 libvigraimpex (1.9.0+dfsg-6ubuntu2) saucy; urgency=low * Fix build failure with multi-arch'd libboost-python. -- Matthias Klose Tue, 24 Sep 2013 22:06:59 +0200 libvigraimpex (1.9.0+dfsg-6ubuntu1) saucy; urgency=low * Merge with Debian; remaining changes: - Remove build dependency on libhdf5-serial-dev (universe). - debian/patches/no-hdf5.diff: Comment out additional methods requiring HDF5. - debian/libvigraimpex4.symbols: Mark additional HDF5 related symbols as optional since these won't appear in the library. - build using tiff5 -- Dmitrijs Ledkovs Fri, 02 Aug 2013 12:50:27 +0100 libvigraimpex (1.9.0+dfsg-6) unstable; urgency=low * QA upload. * Drop parallell build support. -- Andreas Metzler Fri, 05 Jul 2013 19:05:49 +0200 libvigraimpex (1.9.0+dfsg-5) unstable; urgency=low * Also append CPPFLAGS to CXXFLAGS. * Increase minimum memory requirement for parallel build on buildd by factor three since s390 exhausted virtual memory on parallel build. -- Andreas Metzler Thu, 04 Jul 2013 19:08:27 +0200 libvigraimpex (1.9.0+dfsg-4) unstable; urgency=low * QA upload. * Switch back to tiff4, we do not want to start our own mini-tiff-transition. * Upload to unstable. -- Andreas Metzler Sun, 16 Jun 2013 13:57:23 +0200 libvigraimpex (1.9.0+dfsg-3) experimental; urgency=low * QA upload. * [ref-to-temporary-in-Sampler.diff] Fix FTBFS witch gcc-4.8. Closes: #701313 -- Andreas Metzler Sun, 19 May 2013 15:44:09 +0200 libvigraimpex (1.9.0+dfsg-2) experimental; urgency=low * QA upload. * [20_increased-tolerance-tests.diff] from upstream GIT: Increase tolerance for a few tests hopefully fixing testsuite errors on s390x and ia64. -- Andreas Metzler Tue, 23 Apr 2013 19:10:22 +0200 libvigraimpex (1.9.0+dfsg-1) experimental; urgency=low * QA upload. * New upstream version. * Partial sync from Ubuntu: + Unfuzz patches docsrc-out-of-source.diff and docsrc-paths.diff + Drop no-offline-ps-doc.diff, doxygen-1.8.diff and gcc-4.7-fixes.diff, included upstream. + Drop gzipped-tutorial-reference.diff, pointing to upstream copy instead. + Downgrade python-h5py from python-vigra's Recommends to Suggests. * Use $(wildcard) to find both multiarched and regular libpython. * Explicitly enable OpenEXR-support, it is not selected automatically anymore. * Bump shlibs. -- Andreas Metzler Sun, 07 Apr 2013 13:38:04 +0200 libvigraimpex (1.9.0-0ubuntu4) saucy; urgency=low * Cherry pick a patch from upstream to fix FTBFS against boost1.53 & gcc4.8. * Actually apply "Stop using .symbols files, and use dh_makeshlibs -V" from 1.8.0+dfsg-2 upload, but using ubuntu version number. -- Dmitrijs Ledkovs Wed, 22 May 2013 11:52:49 +0100 libvigraimpex (1.9.0-0ubuntu3) saucy; urgency=low * No change rebuild for Boost 1.53 transition. -- Dmitrijs Ledkovs Fri, 26 Apr 2013 19:18:42 +0100 libvigraimpex (1.9.0-0ubuntu2) raring; urgency=low * Disable parallel build. -- Matthias Klose Wed, 27 Feb 2013 06:25:02 +0100 libvigraimpex (1.9.0-0ubuntu1) raring; urgency=low * New upstream version. -- Matthias Klose Tue, 26 Feb 2013 20:36:20 +0100 libvigraimpex (1.8.0+dfsg-2ubuntu1) raring; urgency=low * Merge with Debian; remaining changes: - Remove build dependency on libhdf5-serial-dev (universe). - debian/patches/no-hdf5.diff: Comment out additional methods requiring HDF5. - debian/libvigraimpex4.symbols: Mark additional HDF5 related symbols as optional since these won't appear in the library. * Fix build failure with libpython.so in the multiarch lib location. -- Matthias Klose Sat, 23 Feb 2013 15:01:51 +0100 libvigraimpex (1.8.0+dfsg-2) experimental; urgency=low * QA upload. * Enable OpenEXR support by adding a build-dependency on libopenexr-dev. * Stop using .symbols files, and use 'dh_makeshlibs -V ...' to version the shlibs file. This fixes FTBFS with diffferent gcc != 4.7. Closes: #691095 -- Andreas Metzler Sun, 13 Jan 2013 13:10:39 +0100 libvigraimpex (1.8.0+dfsg-1) experimental; urgency=low * QA upload. * New upstream version. * Update patches for new upstream release. * Bump libvigraimpex soname to 4, update symbols file. * Fix (new?) GCC 4.7 build failures. * Fix build failure with doxygen 1.8.x. * Build using dh_python2. * debian/rules: Remove -mieee for sh4, it's now the default. * Build with -ffloat-store on i386, to let the testsuite pass. * Don't stop running the testsuite on the first error. * On powerpc, run the tests, but ignore the test results. It's likely that the build will fail on other archs, after inspecting the test results, the outcome of the test should be disabled or the precision for some tests be adjusted. -- Matthias Klose Wed, 26 Sep 2012 23:52:37 +0200 libvigraimpex (1.8.0+dfsg-0ubuntu2) quantal; urgency=low * New upstream version. - Fixes build failure; tested that the two rdeps in thea archive do build and work. LP: #1056759. * Update patches for new upstream release. * Bump libvigraimpex soname to 4, update symbols file. * Fix (new?) GCC 4.7 build failures. * Fix build failure with doxygen 1.8.x. * debian/rules: Remove -mieee for sh4, it's now the default. * Build with -ffloat-store on i386, to let the testsuite pass. * Don't stop running the testsuite on the first error. * On powerpc, run the tests, but ignore the test results. -- Matthias Klose Tue, 25 Sep 2012 16:18:23 +0200 libvigraimpex (1.7.1+dfsg1-3ubuntu2) quantal; urgency=low * debian/control: - Build-Depend on libtiff5-dev -- Michael Terry Mon, 09 Jul 2012 17:21:58 -0400 libvigraimpex (1.7.1+dfsg1-3ubuntu1) quantal; urgency=low * Merge with Debian testing. Remaining Ubuntu changes: - Remove build dependency on libhdf5-serial-dev (universe). LP: #635891. - debian/patches/no-hdf5.diff: Comment out additional methods requiring HDF5. - debian/libvigraimpex3.symbols: Mark additional HDF5 related symbols as optional since these won't appear in the library. - Build using dh_python2 - debian/patches/debian-changes-1.7.1+dfsg1-2ubuntu1: refactor include/vigra/noise_normalization.hxx * Dropped changes: - 1.7.1+dfsg1-2ubuntu1 upload introduced an auto-generated patch with merge conflicts and changes to include/vigra/numpy_array.hxx, which got reverted in the 1.7.1+dfsg1-2ubuntu2 upload by ending sizeof_ldbl_not_sizeof_dbl.diff to fix FTBFS. I have dropped merge conflicts & changes to numpy_array.hxx in both patches. Remaining change is documented above. -- Dmitrijs Ledkovs Thu, 14 Jun 2012 20:58:40 +0100 libvigraimpex (1.7.1+dfsg1-3) unstable; urgency=low * QA upload * Fix build failure with GCC 4.7. Closes: #667258. * Build-depend on libpng-dev. Closes: #662414. -- Matthias Klose Mon, 16 Apr 2012 23:06:00 +0200 libvigraimpex (1.7.1+dfsg1-2ubuntu4) precise; urgency=low * No change rebuild to pick up a numpy ABI -- Micah Gersten Sun, 19 Feb 2012 15:51:36 -0600 libvigraimpex (1.7.1+dfsg1-2ubuntu3) precise; urgency=low * Build using dh_python2 -- Matthias Klose Sat, 17 Dec 2011 12:59:21 +0000 libvigraimpex (1.7.1+dfsg1-2ubuntu2) precise; urgency=low * Add sizeof_ldbl_not_sizeof_dbl.diff (backport fix from upstream refactored include/vigra/numpy_array_traits.hxx). Fixes FTBFS on armel. -- Daniel T Chen Tue, 08 Nov 2011 19:31:51 -0500 libvigraimpex (1.7.1+dfsg1-2ubuntu1) precise; urgency=low * Merge with Debian testing. Remaining Ubuntu changes: - Remove build dependency on libhdf5-serial-dev (universe). LP: #635891. - debian/patches/no-hdf5.diff: Comment out additional methods requiring HDF5. - debian/libvigraimpex3.symbols: Mark additional HDF5 related symbols as optional since these won't appear in the library. -- Barry Warsaw Thu, 20 Oct 2011 09:30:45 -0400 libvigraimpex (1.7.1+dfsg1-2) unstable; urgency=low * QA upload * Patch libpng15: Fix FTBFS with libpng 1.5 (closes: #636003). Thanks to Nobuhiro Iwamatsu and Joachim Schleicher for forwarding and testing the patch. * Replace build-dependency on libpng12-dev by libpng-dev | libpng12-dev in order to ease the upcoming libpng transition. * Fix FTBFS on sh4 architecture by using -mieee flag (closes: #633818). Thanks to Nobuhiro Iwamatsu for the patch! -- Ralf Treinen Thu, 04 Aug 2011 13:57:08 +0200 libvigraimpex (1.7.1+dfsg1-1) unstable; urgency=low * QA upload. * Set maintainer to Debian QA Group. * Demote Recommends of the documentation packages to Suggests. * Drop fix-tinyvectortest.diff, no longer needed. * Drop Vcs-* fields. * Strip jQuery code from .orig.tar.gz, as we don't have source for it. + Update debian/get-orig-source.sh, debian/rules, debian/watch. + Update debian/copyright. * Overhaul debian/rules. Stop using dh. * Use dh_sphinxdoc: + Update debian/control to use ${sphinxdoc:Depends} instead of hardcoded libjs-jquery. + Call it in debian/rules if it's installed. Otherwise, generate substvars manually. * Add missing build-dependency on python-support. -- Jakub Wilk Tue, 12 Jul 2011 19:34:24 +0200 libvigraimpex (1.7.1+dfsg-8) unstable; urgency=low * Unbreak fix-tinyvectortest.diff. -- Jakub Wilk Wed, 25 May 2011 01:21:31 +0200 libvigraimpex (1.7.1+dfsg-7) unstable; urgency=low * To fix FTBFS on s390, rewrite a loop in TinyVectorTest::equalIter(), so that it doesn't trigger bug in GCC 4.6 (see Debian bug #627795). [fix-tinyvectortest.diff] -- Jakub Wilk Tue, 24 May 2011 22:09:12 +0200 libvigraimpex (1.7.1+dfsg-6) unstable; urgency=low * To fix FTBFS on powerpc with GCC 4.6, use epsilon comparison in ConvolutionTest::recursiveFilterTestFromRepeatWithAvoid. Thanks to Stefano Rivera for debugging and for the patch. [fix-convolutiontest.diff] * Allow libvigraimpex-dev to be co-installable with over providers of libhdf5-dev than libhdf5-serial-dev (closes: #627421). Thanks to Laurent Bonnaud for the bug report. -- Jakub Wilk Fri, 20 May 2011 20:24:30 +0200 libvigraimpex (1.7.1+dfsg-5) unstable; urgency=low * Use default Python version when building documentation. * Update docsrc-doxygen-1.7.diff to deal with the latest Doxygen. * Remove unused jquery.js from libvigraimpex-doc. * Add a missing include to fix FTBFS with GCC 4.6 (closes: #625104). Thanks to Lucas Nussbaum for the bug report. [fix-ftbfs-gcc4.6.diff] * Bump standards version to 3.9.2 (no changes needed). * Mark more symbols as optional. -- Jakub Wilk Mon, 02 May 2011 19:47:58 +0200 libvigraimpex (1.7.1+dfsg-4) unstable; urgency=low * Preserve symlinks when copying object files from one build directory to another (closes: #618667). -- Jakub Wilk Sun, 20 Mar 2011 15:50:05 +0100 libvigraimpex (1.7.1+dfsg-3) unstable; urgency=low * Update the symbols file. * On buildds, artificially limit paralellism in order not to run out of RAM. -- Jakub Wilk Tue, 15 Mar 2011 15:14:04 +0100 libvigraimpex (1.7.1+dfsg-2) unstable; urgency=low * Upload to unstable. * Fix patch headers to be in line with DEP-3. * Update the symbols file. -- Jakub Wilk Sat, 12 Mar 2011 20:29:34 +0100 libvigraimpex (1.7.1+dfsg-1) experimental; urgency=low * New upstream release. + Drop numpy-double-longdouble.diff, applied upstream. + Drop noise-normalization-invariant.diff, applied upstream. + Update debian/copyright. + Rename libvigraimpex2 to libvigraimpex3, following SONAME bump. + Update the symbols file. + Include the vigra-config script. + Patch it to return correct documentation path. [vigra-config-docdir.diff] + Update debian/NEWS. + Provide a new manual page. * Update patch headers. * Export LDFLAGS. * Remove Win32-only files and pre-built documentation from the .orig tarball to save some space. * Respect DEB_BUILD_OPTIONS=parallel=N. * Respect DEB_BUILD_OPTIONS=noopt. * Rename some private variables in debian/rules to make them lowercase. * Require that Numpy is usable with every supported Python version. * Avoid using SONAMEs in Python extension modules. * Convert debian/copyright to the latest DEP-5 version. * Install symlinks from /usr/share/doc/libvigraimpex-dev/html to /usr/share/doc/libvigraimpex-doc/html. * Install symlinks from /usr/share/doc/python-vigra/{html,rst} to /usr/share/doc/python-vigra-doc/{html,rst}. * Build Python extensions with -fno-strict-aliasing. * Remove ‘debian/tmp’ prefix from debian/*.install files. * Provide ‘build-arch’ and ‘build-indep’ targets in debian/rules. * Use an alternative dependency template in the symbols file to make sure that a strict versioned dependency on the shared library will be generated for packages using optional (private) symbols. -- Jakub Wilk Sun, 20 Feb 2011 23:21:40 +0100 libvigraimpex (1.7.0+dfsg-7ubuntu7) oneiric; urgency=low * Backport from Debian (Jakub Wilk, LP: #829462): - Update docsrc-doxygen-1.7.diff to deal with the latest Doxygen. -- Colin Watson Thu, 25 Aug 2011 11:48:11 +0100 libvigraimpex (1.7.0+dfsg-7ubuntu6) natty; urgency=low * Adjust symbols file for ppc64. -- Matthias Klose Sun, 20 Feb 2011 18:11:12 +0100 libvigraimpex (1.7.0+dfsg-7ubuntu5) natty; urgency=low * No change rebuild to pick up numpy 1.5. (LP: #711468) -- Barry Warsaw Tue, 01 Feb 2011 15:16:44 -0500 libvigraimpex (1.7.0+dfsg-7ubuntu4) natty; urgency=low * Build to add support for python2.7. * Temporarily build using g++-4.4 and sort out the symbol mismatches with g++-4.5 later. LP: #689247. -- Matthias Klose Wed, 15 Dec 2010 11:27:55 +0100 libvigraimpex (1.7.0+dfsg-7ubuntu3) maverick; urgency=low * python-vigra: Make the recommendation of python-h5py a suggestion. -- Matthias Klose Wed, 15 Sep 2010 22:12:22 +0200 libvigraimpex (1.7.0+dfsg-7ubuntu2) maverick; urgency=low * vigranumpy/lib/__init__.py: Don't fail on import of missing HDF5 functions (which are not used in this module). -- Matthias Klose Wed, 15 Sep 2010 14:43:59 +0200 libvigraimpex (1.7.0+dfsg-7ubuntu1) maverick; urgency=low * Remove build dependency on libhdf5-serial-dev (universe). Reconsider after the release of maverick. LP: #635891. * debian/libvigraimpex2.symbols: Mark HDF5 symbols as optional. -- Matthias Klose Wed, 15 Sep 2010 13:31:29 +0200 libvigraimpex (1.7.0+dfsg-7) unstable; urgency=low * Bump all versions in the symbols file to 1.7.0. * Make python-vigra-doc recommend libvigraimpex-doc. * Make libvigraimpex-doc suggest python-vigra-doc. * Fix documentation generation with Doxygen 1.7. * Fix hyperlinks from the C++ library documentation to python-vigra documentation (closes: #590069) and the other way round (closes: #590068). [docsrc-paths.diff] * Stop using g++-4.3 on hppa, as #585925 is fixed now (closes: #588168). -- Jakub Wilk Wed, 25 Aug 2010 20:54:45 +0200 libvigraimpex (1.7.0+dfsg-6) unstable; urgency=low * Fix generation of dependencies on python-numpy to take epochs into account. Use dh_numpy provided by python-numpy if available. -- Jakub Wilk Wed, 28 Jul 2010 12:15:09 +0200 libvigraimpex (1.7.0+dfsg-5) unstable; urgency=low * To fix ABI breakage, rename binary package from libvigraimpex2ldbl to libvigraimpex2 (closes: #589779). * Bump standards version to 3.9.1 (no changes needed). * Automatically generate versioned dependencies on python-numpy. -- Jakub Wilk Mon, 26 Jul 2010 23:17:03 +0200 libvigraimpex (1.7.0+dfsg-4) unstable; urgency=low * Bump standards version to 3.9.0 (no changes needed). * In order to mitigate bug #586247, add invariant check to noiseVarianceListMedianCut(). [noise-normalization-invariant.diff] * For the time being, disable failing vigranumpy test for noiseVarianceClustering(); see bug #586247. [disable-noise-variance-clustering-vigranumpy-test.diff] * Update headers for patches that has been applied upstream. -- Jakub Wilk Mon, 05 Jul 2010 17:18:21 +0200 libvigraimpex (1.7.0+dfsg-3) unstable; urgency=low * New upstream release, which includes backwards-incompatible changes (see NEWS.Debian for details). * Drop all existing patches: they have been either applied upstream or become irrelevant. * Upstream added support for HDF5: + Add libhdf5-serial-dev to Build-Depends and Depends of libvigraimpex-dev. * Upstream has implemented new build system on the basis of cmake: + Build-depend on cmake. + Reimplement debian/rules from scratch; update other files in debian/ accordingly. + Drop vigra-config along with its manual page. + No longer provide static library. * Simplify makefile for examples. * Build Python bindings for VIGRA: + Build-depend on python-all-dev, python-numpy, libboost-python-dev, python-sphinx. + Patch documentation generation system to support out-of-source building. [docsrc-out-of-source.diff] * Run tests at build time. + Build-depend on python-nose. * Update the symbols file. * Update the watch file. * Install JPEG files into examples, too. * Update debian/copyright and convert it do DEP-5 format. * Fix link in the documentation to cope with the fact that tutorial_reference.pdf is compressed in the binary package. [gzipped-tutorial-reference.diff] * Don't declare the same NumpyArrayValuetypeTraits instance twice if sizeof(double) == sizeof(long double); fix FTBFS on such architectures (closes: #581688). [numpy-double-longdouble.diff] * Use g++-4.3 on hppa for the time being (closes: #582379). g++-4.4 is known to generate buggy code, see bug #585925. -- Jakub Wilk Wed, 16 Jun 2010 01:12:04 +0200 libvigraimpex (1.6.0+dfsg1-1) unstable; urgency=low * Drop README.source, no longer needed. * Strip PostScript documents without source from the .orig.tar.gz (closes: #580154): + Update get-orig-source target. + Update links in the HTML documentation to point to copies of these documents on VIGRA homepage. [no-offline-ps-doc.diff] -- Jakub Wilk Mon, 10 May 2010 19:07:57 +0200 libvigraimpex (1.6.0+dfsg-2) unstable; urgency=low * Update symbols file to fix FTBFS on sparc64. * Bump standards version to 3.8.4 (no changes needed). * Update my e-mail address. * Replace (build-)dependency on libjpeg62-dev with libjpeg-dev (closes: #569280). * Switch to source format 3.0 (quilt). Drop build-dependency on quilt and adjust debian/rules accordingly. * Fix a typo in src/impex/tiff.cxx (tiff-typo.diff). * Update patch descriptions. -- Jakub Wilk Thu, 11 Feb 2010 13:02:46 +0100 libvigraimpex (1.6.0+dfsg-1) unstable; urgency=low * Use upstream VCS to recreate .orig.tar.gz with the documentation source included (closes: #547943). * Fix documentation generator to be compatible with recent Doxygen (docsrc-doxygen-any-version.diff). Documentation is now regenerated at build time. * Use sed+tr (rather than lynx) to convert upstream changelog to text. * Avoid copy-all-remove-some in the install target. * Add Vcs-* fields. * Mark more symbols as optional. -- Jakub Wilk Fri, 09 Oct 2009 21:25:37 +0200 libvigraimpex (1.6.0-2) unstable; urgency=low * Make debian/rules safe for parallel builds. * Don't install *.la files. * Include symbols file. * Drop runtime dependency on fftw3. -- Jakub Wilk Thu, 03 Sep 2009 15:37:01 +0200 libvigraimpex (1.6.0-1) unstable; urgency=low * New upstream release (closes: #419431, #540242). * New maintainer (closes: #503486). * Use quilt to manage patches. * Add resampleImage() with different x- and y-factors (resample-image-different-xy.diff backported from the upstream VCS; closes: #540334). * Fix a typo in src/impex/viff.cxx (viff-typo.diff). * Sanitize the upstream build system (build-system.diff); run autoreconf at build time; remove all autogenerated files at build time. * Rewrite debian/rules from scratch; use dh from debhelper 7. * Provide a separate documentation package. * Update the examples Makefile. * Depend of lynx-cur rather than lynx. * Bump standards version to 3.8.3 (no changes needed). * Drop initial articles from package descriptions. * Update the homepage URL. * Update debian/copyright. -- Jakub Wilk Mon, 17 Aug 2009 22:32:07 +0200 libvigraimpex (1.5.0-2) unstable; urgency=low * QA upload. + Set maintainer to Debian QA Group . * Acknowledge NMUs. * Add Homepage. * Add watch file. * Make clean not ignore errors. * Update ${Source-Version} depends to ${binary:Version}. * Convert debian/copyright to UTF-8. * Update fftw3-dev build-depends to libfftw3-dev. * Update fftw3 dependency to libfftw3-3. * Remove redundant section from libvigraimpex binary. * Fix short descriptions. * Add proper copyright holders to debian/copyright. * Bump debhelper build-dep and compat to 5. * Bump Standards Version to 3.8.0. -- Barry deFreese Mon, 02 Feb 2009 17:07:57 -0500 libvigraimpex (1.5.0-1.1) unstable; urgency=medium * Non-maintainer upload. * Rename libvigraimpex2 for the ldbl128 transition (Closes: #430309). -- Luk Claes Sat, 02 Feb 2008 14:56:45 +0000 libvigraimpex (1.5.0-1) unstable; urgency=low * New upstream release. Several additions and improvements. Bug fixes in code and documentation. Improved the Image Import/Export Facilities. Improved support of 64-bit compilers. Added elliptic integrals. -- Alejandro Sierra Sat, 9 Dec 2006 11:45:33 -0600 libvigraimpex (1.4.0-1) unstable; urgency=low * Initial Release. (Closes: #251616) -- Alejandro Sierra Sun, 21 Dec 2005 14:07:11 -0500 debian/control0000664000000000000000000001065012275267260010606 0ustar Source: libvigraimpex Section: libs Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian QA Group Build-Depends: dpkg-dev (>= 1.15.3~), debhelper (>= 7.0.50~), cmake, libfftw3-dev, libpng-dev, libjpeg-dev, libtiff5-dev, python-all-dev, python-numpy, libboost-python-dev, python-nose, libopenexr-dev Build-Depends-Indep: python, python-sphinx, doxygen, texlive-latex-base, ghostscript Build-Conflicts: autoconf2.13 X-Python-Version: >= 2.5 Standards-Version: 3.9.5 Homepage: http://hci.iwr.uni-heidelberg.de/vigra/ Package: libvigraimpex-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, ${python:Depends}, libvigraimpex5 (= ${binary:Version}), libfftw3-dev, libpng12-dev, libjpeg-dev, libtiff5-dev Suggests: libvigraimpex-doc Description: development files for the C++ computer vision library Vision with Generic Algorithms (VIGRA) is a computer vision library that puts its main emphasis on flexible algorithms, because algorithms represent the principle know-how of this field. The library was consequently built using generic programming as introduced by Stepanov and Musser and exemplified in the C++ Standard Template Library. By writing a few adapters (image iterators and accessors) you can use VIGRA's algorithms on top of your data structures, within your environment. . This package contains the header and development files needed to build programs and packages using VIGRA. Package: libvigraimpex5 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: C++ computer vision library Vision with Generic Algorithms (VIGRA) is a computer vision library that puts its main emphasis on flexible algorithms, because algorithms represent the principle know-how of this field. The library was consequently built using generic programming as introduced by Stepanov and Musser and exemplified in the C++ Standard Template Library. By writing a few adapters (image iterators and accessors) you can use VIGRA's algorithms on top of your data structures, within your environment. Package: libvigraimpex-doc Section: doc Architecture: all Depends: ${misc:Depends} Suggests: libvigraimpex-dev, python-vigra-doc Description: Documentation for the C++ computer vision library Vision with Generic Algorithms (VIGRA) is a computer vision library that puts its main emphasis on flexible algorithms, because algorithms represent the principle know-how of this field. The library was consequently built using generic programming as introduced by Stepanov and Musser and exemplified in the C++ Standard Template Library. By writing a few adapters (image iterators and accessors) you can use VIGRA's algorithms on top of your data structures, within your environment. . This package contains documentation for the VIGRA library. Package: python-vigra Section: python Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends} Recommends: python-qt4 Suggests: python-vigra-doc, python-h5py Description: Python bindings for the C++ computer vision library Vision with Generic Algorithms (VIGRA) is a computer vision library that puts its main emphasis on flexible algorithms, because algorithms represent the principle know-how of this field. The library was consequently built using generic programming as introduced by Stepanov and Musser and exemplified in the C++ Standard Template Library. By writing a few adapters (image iterators and accessors) you can use VIGRA's algorithms on top of your data structures, within your environment. . This package exports the functionality of the VIGRA library to Python. Package: python-vigra-doc Section: doc Architecture: all Depends: ${misc:Depends}, ${sphinxdoc:Depends} Suggests: python-vigra, libvigraimpex-doc Description: Documentation for Python bindings for the C++ computer vision library Vision with Generic Algorithms (VIGRA) is a computer vision library that puts its main emphasis on flexible algorithms, because algorithms represent the principle know-how of this field. The library was consequently built using generic programming as introduced by Stepanov and Musser and exemplified in the C++ Standard Template Library. By writing a few adapters (image iterators and accessors) you can use VIGRA's algorithms on top of your data structures, within your environment. . This package contains documentation for Python bindings for the VIGRA library. debian/libvigraimpex-doc.doc-base0000664000000000000000000000034612275266777014224 0ustar Document: vigra-reference-manual Title: VIGRA Reference Manual Author: Ullrich Köthe Section: Programming Format: HTML Index: /usr/share/doc/libvigraimpex-doc/html/index.html Files: /usr/share/doc/libvigraimpex-doc/html/*.html debian/python-vigra.install0000664000000000000000000000003512275266777013232 0ustar /usr/lib/python*/*-packages/ debian/python-vigra-doc.links0000664000000000000000000000046612275266777013457 0ustar usr/share/javascript/jquery/jquery.min.js usr/share/doc/python-vigra-doc/html/_static/jquery.js usr/share/doc/python-vigra-doc/html/_sources usr/share/doc/python-vigra-doc/rst usr/share/doc/python-vigra-doc/html usr/share/doc/python-vigra/html usr/share/doc/python-vigra-doc/rst usr/share/doc/python-vigra/rst