2013-08-02 22:19:07 +00:00
|
|
|
# The (empty) main package is arch, to have the package built and tests run
|
|
|
|
# on all arches, but the actual result package is the noarch -devel subpackge.
|
2014-02-26 17:44:57 +00:00
|
|
|
# Debuginfo packages are disabled to prevent rpmbuild from generating an empty
|
|
|
|
# debuginfo package for the empty main package.
|
2013-08-02 22:19:07 +00:00
|
|
|
%global debug_package %{nil}
|
|
|
|
|
2020-09-01 20:07:37 +00:00
|
|
|
%if 0%{?fedora} >= 33
|
|
|
|
%global blaslib flexiblas
|
|
|
|
%else
|
|
|
|
%global blaslib openblas
|
|
|
|
%endif
|
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
Name: eigen3
|
2020-10-05 13:23:42 +00:00
|
|
|
Version: 3.3.8
|
2020-10-05 14:45:04 +00:00
|
|
|
Release: 2%{?dist}
|
2011-07-09 23:33:13 +00:00
|
|
|
Summary: A lightweight C++ template library for vector and matrix math
|
|
|
|
|
2013-03-06 00:35:27 +00:00
|
|
|
License: MPLv2.0 and LGPLv2+ and BSD
|
2011-07-09 23:33:13 +00:00
|
|
|
URL: http://eigen.tuxfamily.org/index.php?title=Main_Page
|
2019-12-18 15:36:21 +00:00
|
|
|
Source0: https://gitlab.com/libeigen/eigen/-/archive/%{version}/eigen-%{version}.tar.bz2
|
2014-12-17 23:32:10 +00:00
|
|
|
|
2020-10-05 14:45:04 +00:00
|
|
|
# Drop reference to undefined Eigen::eigen_assert_exception (FIXME??)
|
|
|
|
Patch0: eigen_assert_exception.patch
|
|
|
|
|
2020-09-01 20:07:37 +00:00
|
|
|
BuildRequires: %{blaslib}-devel
|
2011-07-09 23:33:13 +00:00
|
|
|
BuildRequires: fftw-devel
|
|
|
|
BuildRequires: glew-devel
|
|
|
|
BuildRequires: gmp-devel
|
|
|
|
BuildRequires: gsl-devel
|
|
|
|
BuildRequires: mpfr-devel
|
|
|
|
BuildRequires: sparsehash-devel
|
|
|
|
BuildRequires: suitesparse-devel
|
2013-08-02 16:59:48 +00:00
|
|
|
BuildRequires: gcc-gfortran
|
2013-08-02 21:27:41 +00:00
|
|
|
BuildRequires: SuperLU-devel
|
|
|
|
BuildRequires: qt-devel
|
2016-02-20 18:08:48 +00:00
|
|
|
BuildRequires: scotch-devel
|
|
|
|
BuildRequires: metis-devel
|
2011-07-09 23:33:13 +00:00
|
|
|
|
|
|
|
BuildRequires: cmake
|
2018-02-18 19:13:40 +00:00
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: gcc-c++
|
2011-07-09 23:33:13 +00:00
|
|
|
BuildRequires: doxygen
|
|
|
|
BuildRequires: graphviz
|
|
|
|
BuildRequires: tex(latex)
|
|
|
|
|
|
|
|
%description
|
2013-08-02 21:27:41 +00:00
|
|
|
%{summary}.
|
2011-07-09 23:33:13 +00:00
|
|
|
|
2018-12-26 00:15:13 +00:00
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
%package devel
|
2018-12-26 00:15:13 +00:00
|
|
|
Summary: A lightweight C++ template library for vector and matrix math
|
|
|
|
BuildArch: noarch
|
2011-07-09 23:33:13 +00:00
|
|
|
# -devel subpkg only atm, compat with other distros
|
2018-12-26 00:15:13 +00:00
|
|
|
Provides: %{name} = %{version}-%{release}
|
2011-07-09 23:33:13 +00:00
|
|
|
# not *strictly* a -static pkg, but the results are the same
|
2018-12-26 00:15:13 +00:00
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
%description devel
|
2013-08-02 21:27:41 +00:00
|
|
|
%{summary}.
|
2011-07-09 23:33:13 +00:00
|
|
|
|
2014-02-27 09:30:36 +00:00
|
|
|
%package doc
|
2018-12-26 00:15:13 +00:00
|
|
|
Summary: Developer documentation for Eigen
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
2014-02-27 09:30:36 +00:00
|
|
|
%description doc
|
|
|
|
Developer documentation for Eigen.
|
|
|
|
|
2018-12-26 00:15:13 +00:00
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
%prep
|
2019-12-18 16:16:56 +00:00
|
|
|
%autosetup -p1 -n eigen-%{version}
|
2018-12-26 00:15:13 +00:00
|
|
|
|
2018-07-26 09:20:05 +00:00
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
%build
|
2020-08-29 14:37:12 +00:00
|
|
|
%cmake \
|
2020-10-05 13:23:42 +00:00
|
|
|
-DINCLUDE_INSTALL_DIR=include/%{name} \
|
2020-09-01 20:07:37 +00:00
|
|
|
-DBLAS_LIBRARIES="-l%{blaslib}" \
|
2020-08-29 14:37:12 +00:00
|
|
|
-DSUPERLU_INCLUDES=%{_includedir}/SuperLU \
|
|
|
|
-DSCOTCH_INCLUDES=%{_includedir} -DSCOTCH_LIBRARIES="scotch" \
|
|
|
|
-DMETIS_INCLUDES=%{_includedir} -DMETIS_LIBRARIES="metis" \
|
2020-10-05 13:23:42 +00:00
|
|
|
-DCMAKEPACKAGE_INSTALL_DIR=share/cmake/%{name}
|
2018-09-06 18:08:42 +00:00
|
|
|
|
2020-08-29 14:37:12 +00:00
|
|
|
%cmake_build
|
|
|
|
%cmake_build --target doc
|
2011-07-09 23:33:13 +00:00
|
|
|
|
2020-08-29 14:37:12 +00:00
|
|
|
rm -f %{_vpath_builddir}/doc/html/installdox
|
|
|
|
rm -f %{_vpath_builddir}/doc/html/unsupported/installdox
|
2011-07-09 23:33:13 +00:00
|
|
|
|
2018-12-26 00:15:13 +00:00
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
%install
|
2020-08-29 14:37:12 +00:00
|
|
|
%cmake_install
|
2011-07-09 23:33:13 +00:00
|
|
|
|
2018-12-26 00:15:13 +00:00
|
|
|
|
2013-08-02 16:59:48 +00:00
|
|
|
%check
|
2014-02-26 20:32:01 +00:00
|
|
|
# Run tests but make failures non-fatal. Note that upstream doesn't expect the
|
|
|
|
# tests to pass consistently since they're seeded randomly.
|
2020-08-29 14:37:12 +00:00
|
|
|
#cmake_build --target buildtests
|
|
|
|
#cmake_build --target test -- test ARGS="-V" || :
|
2018-12-26 00:15:13 +00:00
|
|
|
|
2013-08-02 16:59:48 +00:00
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
%files devel
|
2015-06-16 13:28:38 +00:00
|
|
|
%license COPYING.README COPYING.BSD COPYING.MPL2 COPYING.LGPL
|
2020-10-05 13:23:42 +00:00
|
|
|
%{_includedir}/%{name}
|
|
|
|
%{_datadir}/cmake/%{name}
|
|
|
|
%{_datadir}/pkgconfig/%{name}.pc
|
2011-07-09 23:33:13 +00:00
|
|
|
|
2014-02-27 09:30:36 +00:00
|
|
|
%files doc
|
2020-08-29 14:37:12 +00:00
|
|
|
%doc %{_vpath_builddir}/doc/html
|
2018-12-26 00:15:13 +00:00
|
|
|
|
2014-02-27 09:30:36 +00:00
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
%changelog
|
2020-10-05 14:45:04 +00:00
|
|
|
* Mon Oct 05 2020 Sandro Mani <manisandro@gmail.com> - 3.3.8-2
|
|
|
|
- Drop reference to undefined Eigen::eigen_assert_exception
|
|
|
|
|
2020-10-05 13:23:42 +00:00
|
|
|
* Mon Oct 05 2020 Sandro Mani <manisandro@gmail.com> - 3.3.8-1
|
|
|
|
- Update to 3.3.8
|
|
|
|
|
2020-09-01 20:07:37 +00:00
|
|
|
* Tue Sep 01 2020 Iñaki Úcar <iucar@fedoraproject.org> - 3.3.7-7
|
|
|
|
- https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager
|
|
|
|
|
2020-08-29 14:37:12 +00:00
|
|
|
* Sat Aug 29 2020 Fabio Valentini <decathorpe@gmail.com> - 3.3.7-6
|
|
|
|
- Adapt to CMake macros changes in fedora 33+.
|
|
|
|
|
2020-07-27 16:21:21 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.7-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-01-28 17:03:33 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.7-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-24 23:15:56 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-01-31 18:25:55 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-26 00:15:13 +00:00
|
|
|
* Tue Dec 25 2018 Sandro Mani <manisandro@gmail.com> - 3.3.7-1
|
|
|
|
- Update to 3.3.7
|
|
|
|
- Modernize spec
|
|
|
|
- Add doc
|
|
|
|
|
2018-12-10 15:42:34 +00:00
|
|
|
* Mon Dec 10 2018 Sandro Mani <manisandro@gmail.com> - 3.3.6-1
|
|
|
|
- Update to 3.3.6
|
|
|
|
|
2018-09-06 18:08:42 +00:00
|
|
|
* Thu Sep 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.3.5-2
|
|
|
|
- backport upstream fix for step FTBFS (#1619860)
|
|
|
|
|
2018-07-26 09:20:05 +00:00
|
|
|
* Thu Jul 26 2018 Sandro Mani <manisandro@gmail.com> - 3.3.5-1
|
|
|
|
- Update to 3.3.5
|
|
|
|
|
2018-07-12 23:43:24 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-05-25 13:21:55 +00:00
|
|
|
* Fri May 25 2018 Björn Esser <besser82@fedoraproject.org> - 3.3.4-6
|
|
|
|
- Fix compilation of Jacobi rotations with ARM NEON, some
|
|
|
|
specializations of internal::conj_helper were missing
|
|
|
|
|
2018-02-18 19:13:40 +00:00
|
|
|
* Sun Feb 18 2018 Sandro Mani <manisandro@gmail.com> - 3.3.4-5
|
|
|
|
- Add missing BR: gcc-c++, make
|
|
|
|
|
2018-02-07 08:15:43 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-02 19:59:10 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 07:15:31 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-19 08:50:36 +00:00
|
|
|
* Mon Jun 19 2017 Sandro Mani <manisandro@gmail.com> - 3.3.4-1
|
|
|
|
- Update to 3.3.4
|
|
|
|
|
2017-02-22 10:18:35 +00:00
|
|
|
* Wed Feb 22 2017 Sandro Mani <manisandro@gmail.com> - 3.3.3-1
|
|
|
|
- Update to 3.3.3
|
|
|
|
|
2017-02-10 09:05:34 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-22 13:30:49 +00:00
|
|
|
* Sun Jan 22 2017 Sandro Mani <manisandro@gmail.com> - 3.3.2-1
|
|
|
|
- Update to 3.3.2
|
|
|
|
|
2016-12-28 16:45:57 +00:00
|
|
|
* Wed Dec 28 2016 Rich Mattes <richmattes@gmail.com> - 3.3.1-1
|
|
|
|
- Update to 3.3.1 (rhbz#1408538)
|
|
|
|
|
2016-11-23 18:06:23 +00:00
|
|
|
* Wed Nov 23 2016 Rich Mattes <richmattes@gmail.com> - 3.3.0-1
|
|
|
|
- Update to 3.3.0
|
|
|
|
- Stop renaming tarball - just use upstream tarball
|
|
|
|
|
2016-10-04 09:09:27 +00:00
|
|
|
* Tue Oct 04 2016 Sandro Mani <manisandro@gmail.com> - 3.2.10-1
|
|
|
|
- Update to 3.2.10
|
|
|
|
|
2016-07-19 12:25:57 +00:00
|
|
|
* Tue Jul 19 2016 Sandro Mani <manisandro@gmail.com> - 3.2.9-1
|
|
|
|
- Update to 3.2.9
|
|
|
|
|
2016-02-20 18:08:48 +00:00
|
|
|
* Sat Feb 20 2016 Sandro Mani <manisandro@gmail.com> - 3.2.8-1
|
|
|
|
- Update to 3.2.8
|
|
|
|
|
2016-02-03 19:42:32 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.7-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-06 20:04:56 +00:00
|
|
|
* Fri Nov 06 2015 Sandro Mani <manisandro@gmail.com> - 3.2.7-3
|
|
|
|
- Again: Fix incorrect include path in pkgconfig file
|
|
|
|
|
2015-11-06 15:21:54 +00:00
|
|
|
* Fri Nov 06 2015 Sandro Mani <manisandro@gmail.com> - 3.2.7-2
|
|
|
|
- Fix incorrect include path in pkgconfig file
|
|
|
|
|
2015-11-05 16:15:44 +00:00
|
|
|
* Thu Nov 05 2015 Sandro Mani <manisandro@gmail.com> - 3.2.7-1
|
|
|
|
- Update to release 3.2.7
|
|
|
|
|
|
|
|
* Thu Oct 01 2015 Sandro Mani <manisandro@gmail.com> - 3.2.6-1
|
2015-10-01 12:22:22 +00:00
|
|
|
- Update to release 3.2.6
|
|
|
|
|
2015-08-21 23:06:46 +00:00
|
|
|
* Fri Aug 21 2015 Rich Mattes <richmattes@gmail.com> - 3.2.5-2
|
|
|
|
- Apply patch to install FindEigen3.cmake
|
|
|
|
|
2015-06-16 13:28:38 +00:00
|
|
|
* Tue Jun 16 2015 Sandro Mani <manisandro@gmail.com> - 3.2.5-1
|
|
|
|
- Update to release 3.2.5
|
|
|
|
|
2015-01-24 12:37:19 +00:00
|
|
|
* Thu Jan 22 2015 Sandro Mani <manisandro@gmail.com> - 3.2.4-1
|
|
|
|
- Update to release 3.2.4
|
|
|
|
|
2015-01-05 01:20:13 +00:00
|
|
|
* Mon Jan 05 2015 Rich Mattes <richmattes@gmail.com> - 3.2.3-2
|
|
|
|
- Backport upstream Rotation2D fix
|
|
|
|
|
2014-12-17 23:32:10 +00:00
|
|
|
* Thu Dec 18 2014 Sandro Mani <manisandro@gmail.com> - 3.2.3-1
|
|
|
|
- Update to release 3.2.3
|
|
|
|
- Drop upstreamed eigen3-ppc64.patch
|
|
|
|
|
2014-08-16 10:29:58 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-04 17:23:35 +00:00
|
|
|
* Mon Aug 04 2014 Sandro Mani <manisandro@gmail.com> - 3.2.2-1
|
|
|
|
- Update to release 3.2.2
|
|
|
|
|
2014-06-07 10:02:26 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-03-11 21:01:27 +00:00
|
|
|
* Tue Mar 11 2014 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-4
|
|
|
|
- Add ppc64 support
|
|
|
|
|
2014-02-27 13:51:46 +00:00
|
|
|
* Thu Feb 27 2014 Sandro Mani <manisandro@gmail.com> - 3.2.1-3
|
|
|
|
- Make doc package noarch
|
|
|
|
|
2014-02-27 09:30:36 +00:00
|
|
|
* Thu Feb 27 2014 Sandro Mani <manisandro@gmail.com> - 3.2.1-2
|
|
|
|
- Split off doc to a separate package
|
|
|
|
|
2014-02-26 17:29:12 +00:00
|
|
|
* Wed Feb 26 2014 Sandro Mani <manisandro@gmail.com> - 3.2.1-1
|
|
|
|
- Udpate to release 3.2.1
|
|
|
|
|
2013-08-10 22:03:36 +00:00
|
|
|
* Sun Aug 11 2013 Sandro Mani <manisandro@gmail.com> - 3.2-3
|
2013-08-02 16:59:48 +00:00
|
|
|
- Build and run tests
|
|
|
|
- Drop -DBLAS_LIBRARIES_DIR, not used
|
2013-08-02 21:27:41 +00:00
|
|
|
- Add some BR to enable tests of corresponding backends
|
|
|
|
- spec cleanup
|
2013-08-02 16:59:48 +00:00
|
|
|
|
2013-07-24 10:22:04 +00:00
|
|
|
* Wed Jul 24 2013 Sandro Mani <manisandro@gmail.com> - 3.2-1
|
|
|
|
- Update to release 3.2
|
|
|
|
|
2013-06-29 17:23:33 +00:00
|
|
|
* Sat Jun 29 2013 Rich Mattes <richmattes@gmail.com> - 3.1.3-2
|
|
|
|
- Add upstream patch to fix malloc/free bugs (rhbz#978971)
|
|
|
|
|
2013-04-19 12:52:20 +00:00
|
|
|
* Fri Apr 19 2013 Sandro Mani <manisandro@gmail.com> - 3.1.3-1
|
|
|
|
- Update to release 3.1.3
|
|
|
|
- Add patch for unused typedefs warning with gcc4.8
|
|
|
|
|
2013-03-06 00:35:27 +00:00
|
|
|
* Tue Mar 05 2013 Rich Mattes <richmattes@gmail.com> - 3.1.2-1
|
2013-03-06 00:16:56 +00:00
|
|
|
- Update to release 3.1.2
|
|
|
|
|
2013-02-13 20:45:37 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-28 21:44:45 +00:00
|
|
|
* Sat Jul 28 2012 Tim Niemueller <tim@niemueller.de> - 3.0.6-1
|
|
|
|
- Update to release 3.0.6 (fixes GCC 4.7 warnings)
|
|
|
|
|
2012-07-18 23:07:15 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-05-05 16:29:22 +00:00
|
|
|
* Sun Mar 11 2012 Rich Mattes <richmattes@gmail.com> - 3.0.5-1
|
|
|
|
- Update to release 3.0.5
|
|
|
|
|
2012-01-13 01:40:13 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-19 03:12:03 +00:00
|
|
|
* Sun Dec 18 2011 Rich Mattes <richmattes@gmail.com> - 3.0.4-1
|
|
|
|
- Update to release 3.0.4
|
|
|
|
|
2011-11-15 05:44:54 +00:00
|
|
|
* Tue Nov 15 2011 Rich Mattes <richmattes@gmail.com> - 3.0.3-1
|
|
|
|
- Update to release 3.0.3
|
|
|
|
|
2011-07-09 23:33:13 +00:00
|
|
|
* Sun Apr 17 2011 Rich Mattes <richmattes@gmail.com> - 3.0.0-2
|
|
|
|
- Patched sources to fix build failure
|
|
|
|
- Removed fixes made upstream
|
|
|
|
- Added project name to source tarball filename
|
|
|
|
|
|
|
|
* Sat Mar 26 2011 Rich Mattes <richmattes@gmail.com> - 3.0.0-1
|
|
|
|
- Update to release 3.0.0
|
|
|
|
|
|
|
|
* Tue Jan 25 2011 Rich Mattes <richmattes@gmail.com> - 3.0-0.2.beta2
|
|
|
|
- Change blas-devel buildrequirement to atlas-devel
|
|
|
|
- Don't make the built-in experimental blas library
|
|
|
|
|
|
|
|
* Mon Jan 24 2011 Rich Mattes <richmattes@gmail.com> - 3.0-0.1.beta2
|
|
|
|
- Initial package
|