diff --git a/ti-onnxruntime-src-8.6/suite/bullseye/debian/changelog b/ti-onnxruntime-src-8.6/suite/bullseye/debian/changelog new file mode 100644 index 0000000000000000000000000000000000000000..5d260c38bca575ea9a51b56e5dd803d9c57c2d57 --- /dev/null +++ b/ti-onnxruntime-src-8.6/suite/bullseye/debian/changelog @@ -0,0 +1,6 @@ +ti-onnxruntime-src-8.6 (8.6.0.0-0~bullseye+20230414) bullseye; urgency=low + + * Rebuild for repos.rcn-ee.com + + -- Robert Nelson <robertcnelson@gmail.com> Fri, 14 Apr 2023 15:59:35 -0500 + diff --git a/ti-onnxruntime-src-8.6/suite/bullseye/debian/compat b/ti-onnxruntime-src-8.6/suite/bullseye/debian/compat new file mode 100644 index 0000000000000000000000000000000000000000..ec635144f60048986bc560c5576355344005e6e7 --- /dev/null +++ b/ti-onnxruntime-src-8.6/suite/bullseye/debian/compat @@ -0,0 +1 @@ +9 diff --git a/ti-onnxruntime-src-8.6/suite/bullseye/debian/control b/ti-onnxruntime-src-8.6/suite/bullseye/debian/control new file mode 100644 index 0000000000000000000000000000000000000000..3f97ad2c5f0ff9171b9b79b54e6994d94a77fcd1 --- /dev/null +++ b/ti-onnxruntime-src-8.6/suite/bullseye/debian/control @@ -0,0 +1,17 @@ +Source: ti-onnxruntime-src-8.6 +Section: misc +Priority: optional +Maintainer: Robert Nelson <robertcnelson@gmail.com> +Build-Depends: + debhelper (>= 9) + , ca-certificates + , git + , unzip +Standards-Version: 4.5.1 + +Package: ti-onnxruntime-src-8.6 +Architecture: arm64 +Depends: + ${misc:Depends} +Description: TI onnxruntime 8.6 src + TI tensorflow 8.6 src /opt/onnxruntime diff --git a/ti-onnxruntime-src-8.6/suite/bullseye/debian/install b/ti-onnxruntime-src-8.6/suite/bullseye/debian/install new file mode 100644 index 0000000000000000000000000000000000000000..3dd1d710956a03196a5dc4dd4c64b710ae20c15d --- /dev/null +++ b/ti-onnxruntime-src-8.6/suite/bullseye/debian/install @@ -0,0 +1 @@ +tmp/opt/onnxruntime/* /opt/onnxruntime diff --git a/ti-onnxruntime-src-8.6/suite/bullseye/debian/rules b/ti-onnxruntime-src-8.6/suite/bullseye/debian/rules new file mode 100755 index 0000000000000000000000000000000000000000..1bb6fefef3c3e8e10ffa8b439ce57d1b6c03defe --- /dev/null +++ b/ti-onnxruntime-src-8.6/suite/bullseye/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +# Disable dh_strip +override_dh_strip: + +# Disable dh_strip_nondeterminism +override_dh_strip_nondeterminism: + +# Disable dh_shlibdeps +override_dh_shlibdeps: + +override_dh_auto_configure: + mkdir -p ./tmp/opt/ ; git clone --single-branch --branch tidl-j7 --depth 1 https://github.com/TexasInstruments/onnxruntime.git ./tmp/opt/onnxruntime/ + unzip debian/protoc-3.11.3-linux-aarch_64.zip -d ./tmp/opt/onnxruntime/cmake/external/protoc-3.11.3-linux-aarch_64 + cp -v debian/tool.cmake ./tmp/opt/onnxruntime/ + cd ./tmp/opt/onnxruntime/ ; git submodule update --init --recursive + cd ./tmp/opt/onnxruntime/ ; find . | grep .git | xargs rm -rf + +%: + dh $@ diff --git a/ti-onnxruntime-src-8.6/suite/bullseye/debian/tool.cmake b/ti-onnxruntime-src-8.6/suite/bullseye/debian/tool.cmake new file mode 100644 index 0000000000000000000000000000000000000000..718ee37db957d9a7a6be447f10c1d1261d3283aa --- /dev/null +++ b/ti-onnxruntime-src-8.6/suite/bullseye/debian/tool.cmake @@ -0,0 +1,10 @@ +SET(CMAKE_SYSTEM_NAME Linux) +SET(CMAKE_SYSTEM_PROCESSOR aarch64) +SET(CMAKE_SYSTEM_VERSION 1) +SET(CMAKE_C_COMPILER /usr/bin/aarch64-linux-gnu-gcc) +SET(CMAKE_CXX_COMPILER /usr/bin/aarch64-linux-gnu-g++) +SET(CMAKE_INSTALL_PREFIX /usr) +SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) +SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) +SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +SET(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) diff --git a/ti-onnxruntime-src-8.6/version.sh b/ti-onnxruntime-src-8.6/version.sh new file mode 100644 index 0000000000000000000000000000000000000000..17acd370030c681e45d29aecbfcd920c79d6a03d --- /dev/null +++ b/ti-onnxruntime-src-8.6/version.sh @@ -0,0 +1,22 @@ +#!/bin/bash -e + +package_name="ti-onnxruntime-src-8.6" +debian_pkg_name="${package_name}" +package_version="8.6.0.0" +package_source="" +src_dir="" + +git_repo="" +git_sha="" +reprepro_dir="t/${package_name}" +dl_path="pool/main/${reprepro_dir}/" + +debian_version="${package_version}-0" +debian_untar="" +debian_patch="" + +debian_dl_1="https://github.com/protocolbuffers/protobuf/releases/download/v3.11.3/protoc-3.11.3-linux-aarch_64.zip" + +clear_changelog="enable" + +bullseye_version="~bullseye+20230414"