[eigen3] 01/04: Merge.
Anton Gladky
gladk at moszumanska.debian.org
Sat Jun 14 07:00:44 UTC 2014
This is an automated email from the git hooks/post-receive script.
gladk pushed a commit to branch wheezy-backports
in repository eigen3.
commit a7ce9b31fdc559060b9e89e0bb1cdce4f86d7a16
Merge: ab2b5d3 98342da
Author: Anton Gladky <gladk at debian.org>
Date: Fri Jun 13 22:09:44 2014 +0200
Merge.
.gitignore | 1 +
.hg_archival.txt | 4 +-
.hgtags | 1 +
CMakeLists.txt | 2 +-
Eigen/Eigen2Support | 15 +-
Eigen/src/Cholesky/LDLT.h | 52 ++-
Eigen/src/CholmodSupport/CholmodSupport.h | 23 +-
Eigen/src/Core/Array.h | 2 +-
Eigen/src/Core/BooleanRedux.h | 8 +-
Eigen/src/Core/EigenBase.h | 30 --
Eigen/src/Core/IO.h | 9 +-
Eigen/src/Core/Matrix.h | 2 +-
Eigen/src/Core/MatrixBase.h | 45 +++
Eigen/src/Core/PermutationMatrix.h | 3 +-
Eigen/src/Core/PlainObjectBase.h | 16 +-
Eigen/src/Core/Ref.h | 5 +-
Eigen/src/Core/StableNorm.h | 27 +-
Eigen/src/Core/Transpose.h | 4 +-
Eigen/src/Core/VectorwiseOp.h | 5 +-
Eigen/src/Core/arch/SSE/MathFunctions.h | 11 +
Eigen/src/Core/arch/SSE/PacketMath.h | 11 +-
Eigen/src/Core/products/GeneralBlockPanelKernel.h | 6 +
Eigen/src/Core/products/GeneralMatrixVector.h | 15 +-
Eigen/src/Core/products/SelfadjointMatrixVector.h | 6 +-
Eigen/src/Core/util/Macros.h | 9 +-
Eigen/src/Core/util/Memory.h | 13 +-
Eigen/src/Eigen2Support/SVD.h | 3 +-
Eigen/src/Geometry/EulerAngles.h | 2 +-
Eigen/src/Geometry/Quaternion.h | 27 +-
Eigen/src/Geometry/Transform.h | 4 +-
Eigen/src/QR/ColPivHouseholderQR.h | 2 +-
Eigen/src/QR/FullPivHouseholderQR.h | 53 +--
Eigen/src/SPQRSupport/SuiteSparseQRSupport.h | 18 +-
Eigen/src/SVD/JacobiSVD.h | 5 +-
.../SparseCore/ConservativeSparseSparseProduct.h | 34 +-
Eigen/src/SparseCore/MappedSparseMatrix.h | 2 +
Eigen/src/SparseCore/SparseBlock.h | 4 +
Eigen/src/SparseCore/SparseColEtree.h | 6 +-
Eigen/src/SparseCore/SparseDenseProduct.h | 4 +-
Eigen/src/SparseCore/SparseMatrix.h | 21 +-
Eigen/src/SparseCore/SparseMatrixBase.h | 4 +-
Eigen/src/SparseCore/SparsePermutation.h | 4 +-
Eigen/src/SparseCore/SparseProduct.h | 5 +-
.../SparseCore/SparseSparseProductWithPruning.h | 13 +-
Eigen/src/SparseCore/SparseUtil.h | 2 +-
Eigen/src/SparseLU/SparseLU.h | 8 +-
Eigen/src/SparseLU/SparseLU_Memory.h | 43 +-
Eigen/src/SparseQR/SparseQR.h | 13 +-
Eigen/src/plugins/BlockMethods.h | 240 ++++++-----
Eigen/src/plugins/MatrixCwiseBinaryOps.h | 4 +-
blas/CMakeLists.txt | 3 +
cmake/language_support.cmake | 2 +-
debian/Changelog_upstream | 47 +++
debian/changelog | 33 ++
debian/control | 5 +-
...indEigen3.patch => 01_install_FindEigen3.patch} | 0
...check.patch => 02_remove_buildtype_check.patch} | 6 +-
debian/patches/03_fix_spline_module.patch | 17 +
debian/patches/04_remove_piwik.patch | 26 ++
.../patches/port_ConstrainedConjGrad_eigen3.patch | 41 --
debian/patches/removeBVH_example.patch | 58 ---
debian/patches/series | 9 +-
debian/tests/build1 | 445 +++++++++++++++++++++
debian/tests/control | 2 +
doc/A05_PortingFrom2To3.dox | 2 +
doc/A10_Eigen2SupportModes.dox | 2 +
doc/AsciiQuickReference.txt | 62 ++-
doc/LinearLeastSquares.dox | 27 --
doc/PreprocessorDirectives.dox | 6 +-
doc/QuickReference.dox | 20 +-
doc/TutorialGeometry.dox | 2 +-
doc/TutorialSparse.dox | 2 +-
doc/eigendoxy.css | 10 +
doc/eigendoxy_footer.html.in | 4 +-
doc/snippets/MatrixBase_applyOnTheLeft.cpp | 7 +
doc/snippets/MatrixBase_applyOnTheRight.cpp | 9 +
doc/special_examples/CMakeLists.txt | 6 +-
.../Tutorial_sparse_example_details.cpp | 4 +-
lapack/CMakeLists.txt | 3 +
scripts/eigen_gen_docs | 5 +-
test/array.cpp | 13 +-
test/array_for_matrix.cpp | 15 +-
test/cholesky.cpp | 24 +-
test/conservative_resize.cpp | 31 +-
test/geo_eulerangles.cpp | 67 ++--
test/geo_transformations.cpp | 7 +
test/product_trmm.cpp | 1 +
test/qr_fullpivoting.cpp | 4 +
test/ref.cpp | 4 +-
test/sparse.h | 10 +-
test/sparse_product.cpp | 17 +-
test/sparse_vector.cpp | 13 +-
test/stable_norm.cpp | 14 +-
test/umeyama.cpp | 9 +-
test/vectorwiseop.cpp | 10 +
test/zerosized.cpp | 31 +-
unsupported/Eigen/OpenGLSupport | 7 +-
.../src/IterativeSolvers/ConstrainedConjGrad.h | 10 +-
unsupported/test/FFTW.cpp | 13 +-
99 files changed, 1390 insertions(+), 621 deletions(-)
diff --cc debian/changelog
index 0c00ee9,6959de9..cc0c7f2
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,36 +1,42 @@@
+ eigen3 (3.2.1-2) unstable; urgency=medium
+
+ * [2044fe6] Add autopkgtest.
+
+ -- Anton Gladky <gladk at debian.org> Sun, 11 May 2014 23:12:57 +0200
+
+ eigen3 (3.2.1-1) unstable; urgency=medium
+
+ * [62dde2a] Imported Upstream version 3.2.1
+ * [fea9591] Remove applied patches.
+ * [bb1c8b6] Update/rename patches.
+ * [1e623ff] Replace ttf-freefont by fonts-freefont-ttf. (Closes: #738232)
+
+ -- Anton Gladky <gladk at debian.org> Thu, 27 Feb 2014 20:08:17 +0100
+
+ eigen3 (3.2.0-8) unstable; urgency=medium
+
+ * [93ce22f] Add Provides section for eigen2 package.
+ Prepare for eigen2 removal.
+
+ -- Anton Gladky <gladk at debian.org> Wed, 05 Feb 2014 19:45:59 +0100
+
+ eigen3 (3.2.0-7) unstable; urgency=medium
+
+ [ Philipp Büttgenbach ]
+ * [2311eec] Fix spline module. (Closes: #736985)
+
+ [ Anton Gladky ]
+ * [acab013] Remove piwik scripts.
+ * [dd630a6] Ignore quilt dir
+
+ -- Anton Gladky <gladk at debian.org> Thu, 30 Jan 2014 21:53:10 +0100
+
+eigen3 (3.2.0-6~bpo70+1) wheezy-backports; urgency=medium
+
+ * Rebuild for wheezy-backports. (Closes: #736985)
+
+ -- Anton Gladky <gladk at debian.org> Wed, 29 Jan 2014 09:19:19 +0100
+
eigen3 (3.2.0-6) unstable; urgency=medium
* [6d44773] Add libmrpt-dev to Suggests section of libeigen3-dev.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/eigen3.git
More information about the debian-science-commits
mailing list