mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
As we're seeing in various test.sh scrip runs, importing 'email' fails
with not finding 'urllib' and vice-versa.
Then via a7e96ec91 ("python3-email: add python3-urllib as dependency")
I created a circular dependency.
So, might as well merge the two packages into one (named python3-urllib)
and updates all dependencies to pull python3-urllib.
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
51 lines
1.5 KiB
Makefile
51 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2015-2016, 2018-2020, 2023 Jeffery To
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-gmpy2
|
|
PKG_VERSION:=2.3.0
|
|
PKG_RELEASE:=2
|
|
|
|
PYPI_NAME:=gmpy2
|
|
PKG_HASH:=2d943cc9051fcd6b15b2a09369e2f7e18c526bc04c210782e4da61b62495eb4a
|
|
|
|
PKG_LICENSE:=LGPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING.LESSER
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
PKG_BUILD_DEPENDS:= \
|
|
python-setuptools/host \
|
|
python-setuptools-scm/host
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-gmpy2
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=GMP/MPIR, MPFR, and MPC interface
|
|
URL:=https://github.com/aleaxit/gmpy
|
|
DEPENDS:=+libgmp +libmpc +libmpfr +python3-light +python3-urllib
|
|
endef
|
|
|
|
define Package/python3-gmpy2/description
|
|
gmpy2 is a C-coded Python extension module that supports multiple-precision
|
|
arithmetic. gmpy2 is the successor to the original gmpy module. The gmpy module
|
|
only supported the GMP multiple-precision library. gmpy2 adds support for the
|
|
MPFR (correctly rounded real floating-point arithmetic) and MPC (correctly
|
|
rounded complex floating-point arithmetic) libraries. gmpy2 also updates the
|
|
API and naming conventions to be more consistent and support the additional
|
|
functionality.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-gmpy2))
|
|
$(eval $(call BuildPackage,python3-gmpy2))
|
|
$(eval $(call BuildPackage,python3-gmpy2-src))
|