libunistring: apply upstream fix for test suite (#25691)
Simple case of pragma weak not working with --as-needed https://bugs.gentoo.org/688464 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925746 Added possiblity to build from git master(new version master)
This commit is contained in:
parent
c424b86a64
commit
b5fa64fb10
1 changed files with 20 additions and 0 deletions
|
@ -12,7 +12,10 @@ class Libunistring(AutotoolsPackage, GNUMirrorPackage):
|
|||
|
||||
homepage = "https://www.gnu.org/software/libunistring/"
|
||||
gnu_mirror_path = "libunistring/libunistring-0.9.10.tar.xz"
|
||||
git = 'https://git.savannah.gnu.org/git/libunistring.git'
|
||||
maintainers = ['bernhardkaindl']
|
||||
|
||||
version('master', branch='master')
|
||||
version('0.9.10', sha256='eb8fb2c3e4b6e2d336608377050892b54c3c983b646c561836550863003c05d7')
|
||||
version('0.9.9', sha256='a4d993ecfce16cf503ff7579f5da64619cee66226fb3b998dafb706190d9a833')
|
||||
version('0.9.8', sha256='7b9338cf52706facb2e18587dceda2fbc4a2a3519efa1e15a3f2a68193942f80')
|
||||
|
@ -20,6 +23,23 @@ class Libunistring(AutotoolsPackage, GNUMirrorPackage):
|
|||
version('0.9.6', sha256='2df42eae46743e3f91201bf5c100041540a7704e8b9abfd57c972b2d544de41b')
|
||||
|
||||
depends_on('iconv')
|
||||
with when('@master'):
|
||||
depends_on('autoconf', type='build')
|
||||
depends_on('automake', type='build')
|
||||
depends_on('libtool', type='build')
|
||||
depends_on('texinfo', type='build')
|
||||
depends_on('gperf', type='build')
|
||||
|
||||
# glibc 2.28+ removed libio.h and thus _IO_ftrylockfile
|
||||
patch('removed_libio.patch', when='@:0.9.9')
|
||||
|
||||
@when('@0.9.10')
|
||||
def patch(self):
|
||||
# Applies upstream fix for testcase: pragma weak conflicts with --as-needed
|
||||
# https://bugs.gentoo.org/688464#c9 (this links to all further info)
|
||||
filter_file('# pragma weak pthread_create', '', 'tests/glthread/thread.h')
|
||||
|
||||
@when('@master')
|
||||
def autoreconf(self, spec, prefix):
|
||||
which('./gitsub.sh')('pull')
|
||||
which('./autogen.sh')()
|
||||
|
|
Loading…
Reference in a new issue