python-pr10995.sh 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #! /bin/sh
  2. # Copyright (C) 2012-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Test automake bug#10995: am__py_compile doesn't get correctly defined
  17. # when there a 'noinst_PYTHON' declaration precedes a 'foo_PYTHON'
  18. # declaration.
  19. required=python
  20. . test-init.sh
  21. cat >> configure.ac <<'EOF'
  22. AM_PATH_PYTHON
  23. AC_OUTPUT
  24. EOF
  25. cat > Makefile.am <<'END'
  26. yesinstdir = $(prefix)/py
  27. noinst_PYTHON = no.py
  28. yesinst_PYTHON = yes.py
  29. disttest: distdir
  30. test -f $(distdir)/no.py
  31. test -f $(distdir)/yes.py
  32. END
  33. echo 'def foo(): return 1' > yes.py
  34. # no.py shouldn't be byte-compiled, so lets make it syntactically invalid.
  35. echo 'if' > no.py
  36. $ACLOCAL
  37. $AUTOCONF
  38. $AUTOMAKE --add-missing
  39. test -f py-compile
  40. ./configure --prefix="$(pwd)/inst"
  41. $MAKE install
  42. test -f inst/py/yes.py
  43. test ! -e inst/py/no.py
  44. py_installed inst/py/yes.pyc
  45. py_installed --not inst/py/no.pyc
  46. $MAKE disttest
  47. :