* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/tiny-dnn/, dev-cpp/tiny-dnn/files/
@ 2022-04-23 1:52 Alessandro Barbieri
0 siblings, 0 replies; only message in thread
From: Alessandro Barbieri @ 2022-04-23 1:52 UTC (permalink / raw
To: gentoo-commits
commit: 4e77e72cf8e7f05dc42cbea65fefb39ceec49c6f
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 23 00:48:59 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Apr 23 01:52:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4e77e72c
dev-cpp/tiny-dnn: update EAPI 7 -> 8
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
.../files/tiny-dnn-1.0.0_alpha3-system-libs.patch | 123 +++++++++++++++++++++
...pha3.ebuild => tiny-dnn-1.0.0_alpha3-r1.ebuild} | 26 +++--
2 files changed, 139 insertions(+), 10 deletions(-)
diff --git a/dev-cpp/tiny-dnn/files/tiny-dnn-1.0.0_alpha3-system-libs.patch b/dev-cpp/tiny-dnn/files/tiny-dnn-1.0.0_alpha3-system-libs.patch
new file mode 100644
index 000000000..5871abad7
--- /dev/null
+++ b/dev-cpp/tiny-dnn/files/tiny-dnn-1.0.0_alpha3-system-libs.patch
@@ -0,0 +1,123 @@
+--- a/test/test_core.h
++++ b/test/test_core.h
+@@ -35,7 +35,7 @@
+ #include "tiny_dnn/tiny_dnn.h"
+
+ #if defined(USE_OPENCL) || defined(USE_CUDA)
+-#include "third_party/CLCudaAPI/clpp11.h"
++#include "CLCudaAPI/clpp11.h"
+ #endif // defined(USE_OPENCL) || defined(USE_CUDA)
+
+ namespace tiny_dnn {
+--- a/tiny_dnn/core/framework/device.fwd.h
++++ b/tiny_dnn/core/framework/device.fwd.h
+@@ -46,9 +46,9 @@
+
+ #if defined(USE_OPENCL) || defined(USE_CUDA)
+ #ifdef USE_OPENCL
+-#include "third_party/CLCudaAPI/clpp11.h"
++#include "CLCudaAPI/clpp11.h"
+ #else
+-#include "third_party/CLCudaAPI/cupp11.h"
++#include "CLCudaAPI/cupp11.h"
+ #endif
+ #endif
+
+--- a/tiny_dnn/core/framework/program.h
++++ b/tiny_dnn/core/framework/program.h
+@@ -49,9 +49,9 @@
+
+ #if defined(USE_OPENCL) || defined(USE_CUDA)
+ #ifdef USE_OPENCL
+-#include "third_party/CLCudaAPI/clpp11.h"
++#include "CLCudaAPI/clpp11.h"
+ #else
+-#include "third_party/CLCudaAPI/cupp11.h"
++#include "CLCudaAPI/cupp11.h"
+ #endif
+ #endif
+
+--- a/tiny_dnn/core/framework/program_manager.h
++++ b/tiny_dnn/core/framework/program_manager.h
+@@ -51,9 +51,9 @@
+
+ #if defined(USE_OPENCL) || defined(USE_CUDA)
+ #ifdef USE_OPENCL
+-#include "third_party/CLCudaAPI/clpp11.h"
++#include "CLCudaAPI/clpp11.h"
+ #else
+-#include "third_party/CLCudaAPI/cupp11.h"
++#include "CLCudaAPI/cupp11.h"
+ #endif
+ #endif
+
+--- a/tiny_dnn/core/framework/tensor.h
++++ b/tiny_dnn/core/framework/tensor.h
+@@ -53,9 +53,9 @@
+
+ #if defined(USE_OPENCL) || defined(USE_CUDA)
+ #ifdef USE_OPENCL
+-#include "third_party/CLCudaAPI/clpp11.h"
++#include "CLCudaAPI/clpp11.h"
+ #else
+-#include "third_party/CLCudaAPI/cupp11.h"
++#include "CLCudaAPI/cupp11.h"
+ #endif
+ #endif
+
+--- a/tiny_dnn/core/kernels/tiny_quantized_matmul_kernel.h
++++ b/tiny_dnn/core/kernels/tiny_quantized_matmul_kernel.h
+@@ -15,7 +15,7 @@
+
+ // Implements a quantized eight-bit version of the matmul operation.
+
+-#include "third_party/gemmlowp/public/gemmlowp.h"
++#include "gemmlowp/public/gemmlowp.h"
+ #include "tiny_dnn/core/kernels/tiny_quantization_kernel.h"
+
+ namespace tiny_dnn {
+--- a/tiny_dnn/util/image.h
++++ b/tiny_dnn/util/image.h
+@@ -39,15 +39,15 @@
+
+ #define STB_IMAGE_IMPLEMENTATION
+ #define STB_IMAGE_INLINE // We need this define to avoid multiple definition
+-#include "third_party/stb/stb_image.h"
++#include "stb/stb_image.h"
+
+ #define STB_IMAGE_RESIZE_IMPLEMENTATION
+ #define STB_IMAGE_RESIZE_INLINE
+-#include "third_party/stb/stb_image_resize.h"
++#include "stb/stb_image_resize.h"
+
+ #define STB_IMAGE_WRITE_IMPLEMENTATION
+ #define STB_IMAGE_WRITE_INLINE
+-#include "third_party/stb/stb_image_write.h"
++#include "stb/stb_image_write.h"
+
+
+ namespace tiny_dnn {
+--- a/tiny_dnn/util/util.h
++++ b/tiny_dnn/util/util.h
+@@ -52,9 +52,9 @@
+
+ #if defined(USE_OPENCL) || defined(USE_CUDA)
+ #ifdef USE_OPENCL
+-#include "third_party/CLCudaAPI/clpp11.h"
++#include "CLCudaAPI/clpp11.h"
+ #else
+-#include "third_party/CLCudaAPI/cupp11.h"
++#include "CLCudaAPI/cupp11.h"
+ #endif
+ #endif
+
+--- a/.travis/cpplint_test.sh
++++ b/.travis/cpplint_test.sh
+@@ -1,6 +1,6 @@
+ #!/bin/bash
+
+-python third_party/cpplint.py \
++cpplint.py \
+ --extensions=cpp,h \
+ --filter=-build/header_guard,-runtime/references \
+ tiny_dnn/*/* examples/*/* test/*/*/*/*
diff --git a/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3.ebuild b/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3-r1.ebuild
similarity index 84%
rename from dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3.ebuild
rename to dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3-r1.ebuild
index 93895644b..7235c5afa 100644
--- a/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3.ebuild
+++ b/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
DOCS_BUILDER="sphinx"
DOCS_DEPEND="dev-python/recommonmark"
@@ -15,17 +15,16 @@ DESCRIPTION="header only, dependency-free deep learning framework in C++14"
HOMEPAGE="https://github.com/tiny-dnn/tiny-dnn"
SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${MYPV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MYPV}"
+
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
-IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse double-precision opencl openmp +serialization tbb test"
-REQUIRED_USE="
- ?? ( openmp tbb )
-"
-RESTRICT="test" #tests doesn't build ...
+IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse double-precision opencl openmp +serialization tbb test" # TODO: cuda
# headers as rdepend because this is also an header only library
RDEPEND="
+ dev-cpp/gemmlowp
+ dev-libs/stb
opencl? (
dev-util/opencl-headers
virtual/opencl
@@ -33,19 +32,26 @@ RDEPEND="
serialization? ( dev-libs/cereal )
tbb? ( dev-cpp/tbb )
"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
+DEPEND="
+ ${RDEPEND}
+ test? (
+ dev-cpp/catch:0
+ dev-cpp/gtest
+ )
"
+REQUIRED_USE="^^ ( openmp tbb )"
+RESTRICT="test" #tests doesn't build ...
PATCHES=(
"${FILESDIR}/${PN}-add-sphinx-ext-autodoc-to-conf-py.patch"
"${FILESDIR}/${PN}-disable-gtest-download.patch"
+ "${FILESDIR}/${P}-system-libs.patch"
)
src_prepare() {
#remove bundled cereal
rm -r cereal || die
+ rm -r third_party || die
cmake_src_prepare
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-04-23 1:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-23 1:52 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/tiny-dnn/, dev-cpp/tiny-dnn/files/ Alessandro Barbieri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox