diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-05-27 23:05:32 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-27 23:05:32 +0200 |
commit | ef1eb6cda412a67d7c695683b3634d7c37b45a47 (patch) | |
tree | e3e00ede93378d99f7714a5e4eafdbeef87d819e /sci-libs/dlib | |
parent | sci-libs/libgeotiff: Drop unused USE=static-libs in 1.6.0 (diff) | |
download | gentoo-ef1eb6cda412a67d7c695683b3634d7c37b45a47.tar.gz gentoo-ef1eb6cda412a67d7c695683b3634d7c37b45a47.tar.bz2 gentoo-ef1eb6cda412a67d7c695683b3634d7c37b45a47.zip |
sci-libs/dlib: Remove old 19.16-r1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-libs/dlib')
-rw-r--r-- | sci-libs/dlib/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/dlib/dlib-19.16-r1.ebuild | 106 |
2 files changed, 0 insertions, 107 deletions
diff --git a/sci-libs/dlib/Manifest b/sci-libs/dlib/Manifest index f824015a6761..21442f52ac6e 100644 --- a/sci-libs/dlib/Manifest +++ b/sci-libs/dlib/Manifest @@ -1,2 +1 @@ -DIST dlib-19.16.tar.gz 10411975 BLAKE2B 93047590a4d8f4685970d3db6841cbf9cc90ca8a5e50f0929a106d887e5db1b4fd96bbe14380537a3e28369a8db6d9d8c067e7768000ac3c7d0f225b46369326 SHA512 4e040ef88acff05e1a48e499b813c876b22ad3f989d076bdf19969d01036b62e51a0dff30b70046910ba31dfa1b1c2450a7fad41ae3142b7285ed74b8d584887 DIST dlib-19.22.tar.gz 10796236 BLAKE2B 5ca840536f61b38557d39ff6c24d9727f7c494e032d5abf912ccf83f724ecad61ce241126478eeed8b14e33b994af4065b1cfaf17a3b29cfa0dafc236e4c2a06 SHA512 49af41460de9aa270e47ee1d158231e87ffdbbf56ca29a3382dd896fcf81ef04729e59bd9c26eac63fb088cefce651149e5cdb0ffed73bfd6b05127887114d94 diff --git a/sci-libs/dlib/dlib-19.16-r1.ebuild b/sci-libs/dlib/dlib-19.16-r1.ebuild deleted file mode 100644 index b962a0da02e0..000000000000 --- a/sci-libs/dlib/dlib-19.16-r1.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_OPTIONAL=1 -inherit cmake cuda distutils-r1 - -DESCRIPTION="Numerical and networking C++ library" -HOMEPAGE="http://dlib.net/" -SRC_URI="https://github.com/davisking/dlib/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Boost-1.0" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="cblas cuda debug examples gif jpeg lapack mkl png python sqlite test X cpu_flags_x86_avx cpu_flags_x86_sse2 cpu_flags_x86_sse4_1" -REQUIRED_USE="python? ( png ${PYTHON_REQUIRED_USE} )" - -RESTRICT="!test? ( test )" - -# doc needs a bunch of deps not in portage -RDEPEND=" - cblas? ( virtual/cblas ) - cuda? ( dev-libs/cudnn:= ) - gif? ( media-libs/giflib:= ) - jpeg? ( virtual/jpeg:0= ) - lapack? ( virtual/lapack ) - mkl? ( sci-libs/mkl ) - png? ( media-libs/libpng:0= ) - python? ( ${PYTHON_DEPS} ) - sqlite? ( dev-db/sqlite:3 ) - X? ( x11-libs/libX11 )" -DEPEND="${RDEPEND}" -BDEPEND="python? ( test? ( dev-python/pytest[${PYTHON_USEDEP}] ) )" - -DOCS=( docs/README.txt ) - -src_prepare() { - use cuda && cuda_src_prepare - cmake_src_prepare - use python && distutils-r1_src_prepare -} - -python_configure_all() { - mydistutilsargs=( - --"$(usex gif)" DLIB_GIF_SUPPORT - --"$(usex jpeg)" DLIB_JPEG_SUPPORT - --"$(usex png)" DLIB_PNG_SUPPORT - --"$(usex X no yes)" DLIB_NO_GUI_SUPPORT - --"$(usex cblas)" DLIB_USE_BLAS - --"$(usex cuda)" DLIB_USE_CUDA - --"$(usex lapack)" DLIB_USE_LAPACK - --"$(usex cpu_flags_x86_avx)" USE_AVX_INSTRUCTIONS - --"$(usex cpu_flags_x86_sse2)" USE_SSE2_INSTRUCTIONS - --"$(usex cpu_flags_x86_sse4_1)" USE_SSE4_INSTRUCTIONS - ) -} - -src_configure() { - local mycmakeargs=( - -DDLIB_ENABLE_ASSERTS="$(usex debug)" - -DDLIB_ENABLE_STACK_TRACE="$(usex debug)" - -DDLIB_GIF_SUPPORT="$(usex gif)" - -DDLIB_JPEG_SUPPORT="$(usex jpeg)" - -DDLIB_PNG_SUPPORT="$(usex png)" - -DDLIB_LINK_WITH_SQLITE3="$(usex sqlite)" - -DDLIB_NO_GUI_SUPPORT="$(usex X OFF ON)" - -DDLIB_USE_BLAS="$(usex cblas)" - -DDLIB_USE_CUDA="$(usex cuda)" - -DDLIB_USE_LAPACK="$(usex lapack)" - -DUSE_AVX_INSTRUCTIONS="$(usex cpu_flags_x86_avx)" - -DUSE_SSE2_INSTRUCTIONS="$(usex cpu_flags_x86_sse2)" - -DUSE_SSE4_INSTRUCTIONS="$(usex cpu_flags_x86_sse4_1)" - ) - cmake_src_configure - use python && distutils-r1_src_configure -} - -src_compile() { - cmake_src_compile - use python && distutils-r1_src_compile -} - -python_test() { - esetup.py test -} - -src_test() { - mkdir "${BUILD_DIR}"/dlib/test || die - pushd "${BUILD_DIR}"/dlib/test > /dev/null || die - cmake "${S}"/dlib/test || die - emake - ./dtest --runall || die - popd > /dev/null || die - use python && distutils-r1_src_test -} - -src_install() { - cmake_src_install - use python && distutils-r1_src_install - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF} - fi -} |