File tree Expand file tree Collapse file tree 1 file changed +24
-17
lines changed
Modules/ThirdParty/Eigen3 Expand file tree Collapse file tree 1 file changed +24
-17
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- thirdparty_module_name=" Eigen3"
3
+ set -e
4
+ set -x
5
+ shopt -s dotglob
4
6
7
+ readonly name=" Eigen3"
8
+ readonly ownership=" Eigen Upstream <kwrobot@kitware.com>"
9
+ readonly subtree=" Modules/ThirdParty/Eigen3/src/itkeigen"
10
+ # readonly repo="https://github.com/eigenteam/eigen-git-mirror"
5
11
# readonly repo="https://gitlab.kitware.com/third-party/eigen.git"
6
- upstream_git_url=" https://gitlab.kitware.com/phcerdan/eigen.git"
7
- upstream_git_branch=" for/itk-3.3-find_package"
8
-
9
- snapshot_author_name=" Eigen Upstream"
10
- snapshot_author_email=" kwrobot@kitware.com"
11
-
12
- snapshot_redact_cmd=' '
13
- snapshot_relative_path=" src/itkeigen"
14
-
15
- snapshot_paths="
12
+ readonly repo=" https://gitlab.kitware.com/phcerdan/eigen.git"
13
+ readonly tag=" for/itk-eigen-3.3"
14
+ readonly paths="
15
+ Eigen/CMakeLists.txt
16
16
Eigen/Cholesky
17
17
Eigen/CholmodSupport
18
- Eigen/CMakeLists.txt
19
18
Eigen/Core
20
19
Eigen/Dense
21
20
Eigen/Eigen
@@ -27,34 +26,42 @@ Eigen/Jacobi
27
26
Eigen/LU
28
27
Eigen/MetisSupport
29
28
Eigen/OrderingMethods
30
- Eigen/PardisoSupport
31
29
Eigen/PaStiXSupport
30
+ Eigen/PardisoSupport
32
31
Eigen/QR
33
32
Eigen/QtAlignedMalloc
33
+ Eigen/SPQRSupport
34
+ Eigen/SVD
34
35
Eigen/Sparse
35
36
Eigen/SparseCholesky
36
37
Eigen/SparseCore
37
38
Eigen/SparseLU
38
39
Eigen/SparseQR
39
- Eigen/SPQRSupport
40
40
Eigen/StdDeque
41
41
Eigen/StdList
42
42
Eigen/StdVector
43
43
Eigen/SuperLUSupport
44
- Eigen/SVD
45
44
Eigen/UmfPackSupport
46
45
Eigen/src
46
+
47
47
COPYING.BSD
48
48
COPYING.MINPACK
49
49
COPYING.MPL2
50
50
COPYING.README
51
51
README.md
52
52
README.kitware.md
53
+
53
54
CMakeLists.txt
54
55
cmake/FindStandardMathLibrary.cmake
55
56
cmake/Eigen3Config.cmake.in
57
+
56
58
.gitattributes
57
59
"
58
60
59
- source " ${BASH_SOURCE%/* } /../../../Utilities/Maintenance/UpdateThirdPartyFromUpstream.sh"
60
- update_from_upstream
61
+ extract_source () {
62
+ git_archive
63
+ pushd " $extractdir "
64
+ popd
65
+ }
66
+
67
+ source " ${BASH_SOURCE%/* } /../../../Utilities/Maintenance/update-third-party.bash"
You can’t perform that action at this time.
0 commit comments