Accepting request 664442 from home:jbrownell:branches:devel:languages:python

- Restrict pattern matching to real files (not symlinks) during packaging
  of fake_libc_include to avoid build errors on Red Hat platforms.
  * fix-lexer-build.patch

OBS-URL: https://build.opensuse.org/request/show/664442
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pycparser?expand=0&rev=25
This commit is contained in:
Tomáš Chvátal 2019-01-10 18:56:38 +00:00 committed by Git OBS Bridge
parent d96b4a85a1
commit a05a5d17db
2 changed files with 8 additions and 1 deletions

View File

@ -38,6 +38,6 @@ Index: pycparser-release_v2.14/setup.py
- package_data={'pycparser': ['*.cfg']},
- cmdclass={'install': install, 'sdist': sdist},
+ packages=['pycparser', 'pycparser.ply', 'utils.fake_libc_include'],
+ package_data={'pycparser': ['*.cfg'], 'utils.fake_libc_include': ['*']},
+ package_data={'pycparser': ['*.cfg'], 'utils.fake_libc_include': ['*.h', 'xcb/*']},
+ cmdclass={'build': build, 'sdist': sdist},
)

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Jan 9 21:51:00 UTC 2019 - Jonathan Brownell <jbrownell@suse.com>
- Restrict pattern matching to real files (not symlinks) during packaging
of fake_libc_include to avoid build errors on Red Hat platforms.
* fix-lexer-build.patch
-------------------------------------------------------------------
Tue Dec 4 12:51:59 UTC 2018 - Matej Cepl <mcepl@suse.com>