py-reportlab: add 3.6.12 (#34396)

* py-reportlab: add 3.6.12

* Update var/spack/repos/builtin/packages/py-reportlab/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Manuela Kuhn 2022-12-09 03:08:00 +01:00 committed by GitHub
parent f8c0d9728d
commit d29cb87ecc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,10 @@ class PyReportlab(PythonPackage):
"""The ReportLab Toolkit. An Open Source Python library for generating
PDFs and graphics."""
homepage = "https://www.reportlab.com"
pypi = "reportlab/reportlab-3.4.0.tar.gz"
version("3.6.12", sha256="b13cebf4e397bba14542bcd023338b6ff2c151a3a12aabca89eecbf972cb361a")
version("3.4.0", sha256="5beaf35e59dfd5ebd814fdefd76908292e818c982bd7332b5d347dfd2f01c343")
# py-reportlab provides binaries that duplicate those of other packages,
@ -20,7 +22,19 @@ class PyReportlab(PythonPackage):
# - pip, provided by py-pip
extends("python", ignore=r"bin/.*")
depends_on("python@3.7:3", when="@3.6.9:", type=("build", "run"))
depends_on("py-setuptools@2.2:", type="build")
depends_on("py-pip@1.4.1:", type="build")
depends_on("pil@9:", when="@3.6.10:", type=("build", "run"))
depends_on("pil@2.4.0:", type=("build", "run"))
depends_on("freetype")
def patch(self):
filter_file(
"[FREETYPE_PATHS]",
"[FREETYPE_PATHS]\n"
+ "lib={}\n".format(self.spec["freetype"].libs.directories[0])
+ "inc={}\n".format(self.spec["freetype"].headers.directories[0]),
"setup.cfg",
string=True,
)