debian/ 0000775 0000000 0000000 00000000000 12301671074 007171 5 ustar debian/convert-changelog.sh 0000664 0000000 0000000 00000000667 12275266777 013167 0 ustar #!/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|?[Uu][Ll]>||g' \
-e 's|?[Tt][Tt]>||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-base 0000664 0000000 0000000 00000000523 12275266777 014006 0 ustar 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/rules 0000775 0000000 0000000 00000014356 12301671031 010253 0 ustar #!/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.dirs 0000664 0000000 0000000 00000000024 12275266777 013512 0 ustar usr/lib
usr/include
debian/libvigraimpex-dev.docs 0000664 0000000 0000000 00000000025 12275266777 013502 0 ustar debian/README.Debian
debian/libvigraimpex-dev.install 0000664 0000000 0000000 00000000066 12275266777 014225 0 ustar /usr/bin/vigra-config
/usr/include/*
/usr/lib/lib*.so
debian/watch 0000664 0000000 0000000 00000000213 12275267025 010225 0 ustar 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.sh 0000664 0000000 0000000 00000001676 12275267025 012561 0 ustar #!/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/copyright 0000664 0000000 0000000 00000004570 12275267025 011141 0 ustar 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/ 0000775 0000000 0000000 00000000000 12276221121 010464 5 ustar debian/source/format 0000664 0000000 0000000 00000000014 12275266777 011723 0 ustar 3.0 (quilt)
debian/libvigraimpex-dev.examples 0000664 0000000 0000000 00000000134 12275266777 014371 0 ustar src/examples/*.cxx
src/examples/*.gif
src/examples/*.tif
src/examples/*.JPG
debian/Makefile
debian/libvigraimpex-doc.docs 0000664 0000000 0000000 00000000013 12275266777 013466 0 ustar doc/vigra/
debian/python-vigra-doc.docs 0000664 0000000 0000000 00000000020 12275266777 013251 0 ustar doc/vigranumpy/
debian/vigra-config.1 0000664 0000000 0000000 00000001411 12275266777 011647 0 ustar .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.manpages 0000664 0000000 0000000 00000000026 12275266777 014346 0 ustar debian/vigra-config.1
debian/libvigraimpex5.docs 0000664 0000000 0000000 00000000012 12275267025 012772 0 ustar README.md
debian/libvigraimpex-doc.links 0000664 0000000 0000000 00000000112 12275266777 013656 0 ustar usr/share/doc/libvigraimpex-doc/html usr/share/doc/libvigraimpex-dev/html
debian/libvigraimpex5.dirs 0000664 0000000 0000000 00000000010 12275267025 013001 0 ustar usr/lib
debian/Makefile 0000664 0000000 0000000 00000000401 12275266777 010650 0 ustar 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/NEWS 0000664 0000000 0000000 00000000547 12275266777 007722 0 ustar 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/ 0000775 0000000 0000000 00000000000 12276221121 010613 5 ustar debian/patches/disable-noise-variance-clustering-vigranumpy-test.diff 0000664 0000000 0000000 00000001327 12275267370 023324 0 ustar 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.diff 0000664 0000000 0000000 00000005765 12275267406 014073 0 ustar 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.diff 0000664 0000000 0000000 00000000543 12275267413 015301 0 ustar 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/series 0000664 0000000 0000000 00000000242 12275267025 012042 0 ustar 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.diff 0000664 0000000 0000000 00000001174 12275267400 015443 0 ustar 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.diff 0000664 0000000 0000000 00000001123 12275267421 012716 0 ustar 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.diff 0000664 0000000 0000000 00000001100 12275267425 015331 0 ustar --- 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.install 0000664 0000000 0000000 00000000023 12275267025 013512 0 ustar /usr/lib/lib*.so.*
debian/compat 0000664 0000000 0000000 00000000002 12275266777 010413 0 ustar 7
debian/README.Debian 0000664 0000000 0000000 00000000360 12275266777 011255 0 ustar 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_numpy 0000775 0000000 0000000 00000001452 12275266777 010770 0 ustar #!/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/clean 0000664 0000000 0000000 00000000143 12275266777 010220 0 ustar doc/*/build-stamp
doc/changelog
vigranumpy/docsrc/c_api_replaces.txt
vigranumpy/lib/__version__.py
debian/changelog 0000664 0000000 0000000 00000060652 12301671074 011054 0 ustar 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/control 0000664 0000000 0000000 00000010650 12275267260 010606 0 ustar 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-base 0000664 0000000 0000000 00000000346 12275266777 014224 0 ustar 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.install 0000664 0000000 0000000 00000000035 12275266777 013232 0 ustar /usr/lib/python*/*-packages/
debian/python-vigra-doc.links 0000664 0000000 0000000 00000000466 12275266777 013457 0 ustar 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