1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

Add pre-installed python packages within rootfs overlay

TODO: This is just a quick fix and need to be changed to
buildroot packages in the upcoming days/weeks/months.
This commit is contained in:
j1nx
2022-12-08 21:02:30 +01:00
parent ce2443f753
commit 37d97e1551
36609 changed files with 7287696 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ACOS_HPP
#define PYTHONIC_CMATH_ACOS_HPP
#include "pythonic/include/cmath/acos.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ACOSH_HPP
#define PYTHONIC_CMATH_ACOSH_HPP
#include "pythonic/include/cmath/acosh.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ASIN_HPP
#define PYTHONIC_CMATH_ASIN_HPP
#include "pythonic/include/cmath/asin.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ASINH_HPP
#define PYTHONIC_CMATH_ASINH_HPP
#include "pythonic/include/cmath/asinh.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ATAN_HPP
#define PYTHONIC_CMATH_ATAN_HPP
#include "pythonic/include/cmath/atan.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ATANH_HPP
#define PYTHONIC_CMATH_ATANH_HPP
#include "pythonic/include/cmath/atanh.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,29 @@
#ifndef PYTHONIC_CMATH_COS_HPP
#define PYTHONIC_CMATH_COS_HPP
#include "pythonic/include/cmath/cos.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
template <class T>
std::complex<T> cos(std::complex<T> const &v)
{
return std::cos(v);
}
template <class T>
std::complex<T> cos(T const &v)
{
return std::cos(v);
}
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_COSH_HPP
#define PYTHONIC_CMATH_COSH_HPP
#include "pythonic/include/cmath/cosh.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,6 @@
#ifndef PYTHONIC_CMATH_E_HPP
#define PYTHONIC_CMATH_E_HPP
#include "pythonic/include/cmath/e.hpp"
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_EXP_HPP
#define PYTHONIC_CMATH_EXP_HPP
#include "pythonic/include/cmath/exp.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ISINF_HPP
#define PYTHONIC_CMATH_ISINF_HPP
#include "pythonic/include/cmath/isinf.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_ISNAN_HPP
#define PYTHONIC_CMATH_ISNAN_HPP
#include "pythonic/include/cmath/isnan.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,23 @@
#ifndef PYTHONIC_CMATH_LOG_HPP
#define PYTHONIC_CMATH_LOG_HPP
#include "pythonic/include/cmath/log.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
using std::log;
double log(double x, double base)
{
return log(x) / log(base);
}
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_LOG10_HPP
#define PYTHONIC_CMATH_LOG10_HPP
#include "pythonic/include/cmath/log10.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,6 @@
#ifndef PYTHONIC_CMATH_PI_HPP
#define PYTHONIC_CMATH_PI_HPP
#include "pythonic/include/cmath/pi.hpp"
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_SIN_HPP
#define PYTHONIC_CMATH_SIN_HPP
#include "pythonic/include/cmath/sin.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_SINH_HPP
#define PYTHONIC_CMATH_SINH_HPP
#include "pythonic/include/cmath/sinh.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_SQRT_HPP
#define PYTHONIC_CMATH_SQRT_HPP
#include "pythonic/include/cmath/sqrt.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_TAN_HPP
#define PYTHONIC_CMATH_TAN_HPP
#include "pythonic/include/cmath/tan.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif

View File

@ -0,0 +1,18 @@
#ifndef PYTHONIC_CMATH_TANH_HPP
#define PYTHONIC_CMATH_TANH_HPP
#include "pythonic/include/cmath/tanh.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
}
PYTHONIC_NS_END
#endif