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

WIP: Implementing all goodies and required changes / dependencies.

This commit is contained in:
j1nx
2021-01-07 21:21:21 +01:00
parent 96ddea2de3
commit 68d555fb16
71 changed files with 1181 additions and 195 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_PYTHON_CONVERTDATE
bool "python-convertdate"
select BR2_PACKAGE_PYTHON_PYMEEUS # runtime
select BR2_PACKAGE_PYTHON_PYTZ # runtime
help
Converts between Gregorian dates and other calendar
systems.Calendars included: Baha'i, French Republican,
Hebrew, Indian Civil, Islamic, ISO, Julian, Mayan and
Persian.
https://github.com/fitnr/convertdate

View File

@@ -0,0 +1,4 @@
# md5, sha256 from https://pypi.org/pypi/convertdate/json
sha256 9d2b0cd8d5382d2458d4cfa59665abba398a9e9bfd3a01c6f61b7b47768d28bf convertdate-2.2.0.tar.gz
# Locally computed sha256 checksums
sha256 9ba9629594544da774effccbc0d1e7c9ebe17438e860db8a1bf11cf8081aef9f LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-convertdate
#
################################################################################
PYTHON_CONVERTDATE_VERSION = 2.2.0
PYTHON_CONVERTDATE_SOURCE = convertdate-$(PYTHON_CONVERTDATE_VERSION).tar.gz
PYTHON_CONVERTDATE_SITE = https://files.pythonhosted.org/packages/92/c1/1125eba52ce9bccf783f0640eaad39ffa6e4271dcf37d19438c2ef115233
PYTHON_CONVERTDATE_SETUP_TYPE = setuptools
PYTHON_CONVERTDATE_LICENSE = MIT
PYTHON_CONVERTDATE_LICENSE_FILES = LICENSE
$(eval $(python-package))