diff options
author | David Seifert <soap@gentoo.org> | 2020-08-22 01:20:41 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-08-22 01:20:41 +0200 |
commit | 420bf4ec987bdb21ac66a246b7912a05b8b0e234 (patch) | |
tree | 92f30f914dde3611b631365769327876dacd2766 /dev-python/reportlab/files | |
parent | dev-python/pygraphviz: Version bump to 1.6 (diff) | |
download | gentoo-420bf4ec987bdb21ac66a246b7912a05b8b0e234.tar.gz gentoo-420bf4ec987bdb21ac66a246b7912a05b8b0e234.tar.bz2 gentoo-420bf4ec987bdb21ac66a246b7912a05b8b0e234.zip |
dev-python/reportlab: Version bump to 3.5.48
Closes: https://bugs.gentoo.org/738312
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/reportlab/files')
-rw-r--r-- | dev-python/reportlab/files/reportlab-3.5.48-usr-lib-LLD.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/reportlab/files/reportlab-3.5.48-usr-lib-LLD.patch b/dev-python/reportlab/files/reportlab-3.5.48-usr-lib-LLD.patch new file mode 100644 index 000000000000..09ae9675eb58 --- /dev/null +++ b/dev-python/reportlab/files/reportlab-3.5.48-usr-lib-LLD.patch @@ -0,0 +1,34 @@ +--- a/setup.py ++++ b/setup.py +@@ -163,22 +163,6 @@ + if self.L is None: + L = [] + I = [] +- if platform == "cygwin": +- aDir(L, os.path.join("/usr/lib", "python%s" % sys.version[:3], "config")) +- elif platform == "darwin": +- # attempt to make sure we pick freetype2 over other versions +- aDir(I, "/sw/include/freetype2") +- aDir(I, "/sw/lib/freetype2/include") +- # fink installation directories +- aDir(L, "/sw/lib") +- aDir(I, "/sw/include") +- # darwin ports installation directories +- aDir(L, "/opt/local/lib") +- aDir(I, "/opt/local/include") +- aDir(I, "/usr/local/include") +- aDir(L, "/usr/local/lib") +- aDir(I, "/usr/include") +- aDir(L, "/usr/lib") + aDir(I, "/usr/include/freetype2") + prefix = sysconfig.get_config_var("prefix") + if prefix: +@@ -574,7 +558,7 @@ + SOURCES, + include_dirs=[RENDERPM,LIBART_INC,GT1_DIR]+FT_INC_DIR, + define_macros=FT_MACROS+[('LIBART_COMPILATION',None)]+debug_macros+[('LIBART_VERSION',LIBART_VERSION)], +- library_dirs=[]+FT_LIB_DIR, ++ library_dirs=[], + + # libraries to link against + libraries=FT_LIB+LIBART_LIB, |