diff --git a/ti-tensorflow-src-8.1/suite/bullseye/debian/changelog b/ti-tensorflow-src-8.1/suite/bullseye/debian/changelog new file mode 100644 index 0000000000000000000000000000000000000000..6fb0d13ebd63606c48c54209b58fe48172b83cae --- /dev/null +++ b/ti-tensorflow-src-8.1/suite/bullseye/debian/changelog @@ -0,0 +1,6 @@ +ti-tensorflow-src-8.1 (8.1.0.0-0~bullseye+20220524) bullseye; urgency=low + + * Rebuild for repos.rcn-ee.com + + -- Robert Nelson <robertcnelson@gmail.com> Tue, 24 May 2022 08:51:26 -0500 + diff --git a/ti-tensorflow-src-8.1/suite/bullseye/debian/compat b/ti-tensorflow-src-8.1/suite/bullseye/debian/compat new file mode 100644 index 0000000000000000000000000000000000000000..ec635144f60048986bc560c5576355344005e6e7 --- /dev/null +++ b/ti-tensorflow-src-8.1/suite/bullseye/debian/compat @@ -0,0 +1 @@ +9 diff --git a/ti-tensorflow-src-8.1/suite/bullseye/debian/control b/ti-tensorflow-src-8.1/suite/bullseye/debian/control new file mode 100644 index 0000000000000000000000000000000000000000..7d799c931154fbf09183ff63158c92cd00dc7438 --- /dev/null +++ b/ti-tensorflow-src-8.1/suite/bullseye/debian/control @@ -0,0 +1,18 @@ +Source: ti-tensorflow-src-8.1 +Section: misc +Priority: optional +Maintainer: Robert Nelson <robertcnelson@gmail.com> +Build-Depends: + debhelper (>= 9) + , ca-certificates + , git + , unzip + , tree +Standards-Version: 4.5.1 + +Package: ti-tensorflow-8.1 +Architecture: arm64 +Depends: + ${misc:Depends} +Description: TI tensorflow src + TI tensorflow src /opt/tensorflow diff --git a/ti-tensorflow-src-8.1/suite/bullseye/debian/install b/ti-tensorflow-src-8.1/suite/bullseye/debian/install new file mode 100644 index 0000000000000000000000000000000000000000..e7e7fdb96f1f8ba4dbd037233c3d692659570985 --- /dev/null +++ b/ti-tensorflow-src-8.1/suite/bullseye/debian/install @@ -0,0 +1 @@ +tmp/opt/tensorflow* /opt/tensorflow diff --git a/ti-tensorflow-src-8.1/suite/bullseye/debian/rules b/ti-tensorflow-src-8.1/suite/bullseye/debian/rules new file mode 100755 index 0000000000000000000000000000000000000000..7cedbce079d29725e1fab6aac3b183dd6eee1f8a --- /dev/null +++ b/ti-tensorflow-src-8.1/suite/bullseye/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +DEB_BUILD_OPTIONS=noautodbgsym + +wfile="v1.12.0.tar.gz" + +# Disable dh_strip +override_dh_strip: + +# Disable dh_strip_nondeterminism +override_dh_strip_nondeterminism: + +override_dh_auto_configure: + mkdir -p ./tmp/opt/ ; git clone --single-branch --branch TIDL_PSDK_8.1 --depth 1 https://github.com/TexasInstruments/tensorflow.git ./tmp/opt/tensorflow/ ; mkdir -p ./tmp/opt/tensorflow/lite/tools/make/downloads/flatbuffers ; tar xf ./debian/$(wfile) --strip-components=1 -C ./tmp/opt/tensorflow/lite/tools/make/downloads/flatbuffers + cd ./tmp/opt/tensorflow/ ; find . | grep .git | xargs rm -rf + cd ./tmp/opt/tensorflow/ ; tree + +%: + dh $@ diff --git a/ti-tensorflow-src-8.1/version.sh b/ti-tensorflow-src-8.1/version.sh new file mode 100644 index 0000000000000000000000000000000000000000..d7ae4242bd338b588338fec4fa863c8865921c4f --- /dev/null +++ b/ti-tensorflow-src-8.1/version.sh @@ -0,0 +1,22 @@ +#!/bin/bash -e + +package_name="ti-tensorflow-src-8.1" +debian_pkg_name="${package_name}" +package_version="8.1.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/google/flatbuffers/archive/v1.12.0.tar.gz" + +clear_changelog="enable" + +bullseye_version="~bullseye+20220524"