Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 622802 - dev-python/astropy-1.3.3 - generic_lextab.py illegal syntax
Summary: dev-python/astropy-1.3.3 - generic_lextab.py illegal syntax
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Deadline: 2019-12-29
Assignee: Gentoo Astronomy project
URL:
Whiteboard:
Keywords: PMASKED
Depends on:
Blocks:
 
Reported: 2017-06-27 07:34 UTC by Helmut Jarausch
Modified: 2019-12-28 17:11 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build log (astropy-1.3.3.build,193.43 KB, text/plain)
2017-06-27 07:34 UTC, Helmut Jarausch
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Helmut Jarausch 2017-06-27 07:34:37 UTC
Created attachment 478150 [details]
build log

dev-python/astropy-1.3.3 fails to install with

>>> Install astropy-1.3.3 into /var/tmp/portage/dev-python/astropy-1.3.3/image/ category dev-python
 * python3_6: running distutils-r1_run_phase distutils-r1_python_install
/usr/bin/python3.6 setup.py --offline install --root=/var/tmp/portage/dev-python/astropy-1.3.3/image/_python3.6
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/utils/decorators.py", line 734, in __get__
    return obj.__dict__[self._key]
KeyError: '_unit'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/format/generic.py", line 470, in _do_parse
    return cls._parse_unit(s, detailed_exception=False)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/format/generic.py", line 450, in _parse_unit
    raise ValueError()
ValueError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/core.py", line 1828, in __call__
    return f.parse(s)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/format/generic.py", line 457, in parse
    result = cls._do_parse(s, debug=debug)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/format/generic.py", line 473, in _do_parse
    return cls._parser.parse(s, lexer=cls._lexer, debug=debug)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/utils/decorators.py", line 648, in __get__
    val = self.fget.__wrapped__(objtype)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/format/generic.py", line 101, in _lexer
    return cls._make_lexer()
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/format/generic.py", line 162, in _make_lexer
    reflags=re.UNICODE)
  File "/usr/lib64/python3.6/site-packages/ply/lex.py", line 914, in lex
    lexobj.readtab(lextab, ldict)
  File "/usr/lib64/python3.6/site-packages/ply/lex.py", line 215, in readtab
    exec('import %s' % tabfile)
  File "<string>", line 1, in <module>
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/format/generic_lextab.py", line 4
    _lexreflags   = <RegexFlag.UNICODE: 32>
                    ^
SyntaxError: invalid syntax

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "setup.py", line 46, in <module>
    package_info = get_package_info()
  File "/usr/lib64/python3.6/site-packages/astropy_helpers/setup_helpers.py", line 401, in get_package_info
    ext_modules.extend(setuppkg.get_extensions())
  File "astropy/wcs/setup_package.py", line 252, in get_extensions
    generate_c_docstrings()
  File "astropy/wcs/setup_package.py", line 126, in generate_c_docstrings
    from astropy.wcs import docstrings
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/wcs/__init__.py", line 30, in <module>
    from .wcs import *
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/wcs/wcs.py", line 50, in <module>
    from ..io import fits
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/io/fits/__init__.py", line 70, in <module>
    from . import convenience
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/io/fits/convenience.py", line 72, in <module>
    from ...units.format.fits import UnitScaleError
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/__init__.py", line 20, in <module>
    from . import astrophys
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/astrophys.py", line 46, in <module>
    def_unit(['lyr', 'lightyear'], (_si.c * si.yr).to(si.m),
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/constants/constant.py", line 45, in wrapper
    self.unit.to(inst.unit)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/quantity.py", line 793, in unit
    return self._unit
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/utils/decorators.py", line 736, in __get__
    val = self.fget(obj)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/constants/constant.py", line 165, in _unit
    return Unit(self._unit_string)
  File "/var/tmp/portage/dev-python/astropy-1.3.3/work/astropy-1.3.3/astropy/units/core.py", line 1842, in __call__
    raise ValueError(msg)
ValueError: 'm / (s)' did not parse as unit: invalid syntax (generic_lextab.py, line 4)
 * ERROR: dev-python/astropy-1.3.3::gentoo failed (install phase):

-----
units/format/generic_lextab.py :
_lexreflags   = <RegexFlag.UNICODE: 32>

-----

emerge --info dev-python/astropy
Portage 2.3.6 (python 3.6.1-final-0, default/linux/amd64/13.0/desktop, gcc-6.3.0, glibc-2.25-r2, 4.11.6-gentoo x86_64)
=================================================================
                         System Settings
=================================================================
System uname: Linux-4.11.6-gentoo-x86_64-AMD_Phenom-tm-_II_X4_940_Processor-with-gentoo-2.4.1
KiB Mem:     7903448 total,     76520 free
KiB Swap:    4194300 total,   4194300 free
Timestamp of repository gentoo: Tue, 27 Jun 2017 05:15:01 +0000
sh bash 4.4_p12
ld GNU ld (Gentoo 2.27 p1.0) 2.27
ccache version 3.3.4 [disabled]
app-shells/bash:          4.4_p12::gentoo
dev-java/java-config:     2.2.0-r3::local
dev-lang/perl:            5.24.1-r2::gentoo
dev-lang/python:          2.7.13::gentoo, 3.6.1-r1::gentoo
dev-util/ccache:          3.3.4::gentoo
dev-util/cmake:           3.8.2::gentoo
dev-util/pkgconfig:       0.29.2::gentoo
sys-apps/baselayout:      2.4.1::gentoo
sys-apps/openrc:          0.27.2::gentoo
sys-apps/sandbox:         2.10-r4::gentoo
sys-devel/autoconf:       2.13::gentoo, 2.69-r3::gentoo
sys-devel/automake:       1.9.6-r4::gentoo, 1.10.3-r2::gentoo, 1.11.6-r2::gentoo, 1.12.6-r1::gentoo, 1.13.4-r1::gentoo, 1.15.1::gentoo
sys-devel/binutils:       2.27::gentoo, 2.28-r2::gentoo
sys-devel/gcc:            5.4.0-r3::gentoo, 6.3.0::gentoo, 7.1.0-r1::gentoo
sys-devel/gcc-config:     1.8-r1::gentoo
sys-devel/libtool:        2.4.6-r4::gentoo
sys-devel/make:           4.2.1-r1::gentoo
sys-kernel/linux-headers: 4.10::gentoo (virtual/os-headers)
sys-libs/glibc:           2.25-r2::gentoo
Repositories:

gentoo
    location: /usr/portage
    sync-type: rsync
    sync-uri: rsync://rsync.informatik.rwth-aachen.de/gentoo-portage
    priority: -1000

java
    location: /usr/local/portage/layman/java
    sync-type: git
    sync-uri: git://anongit.gentoo.org/proj/java.git
    masters: gentoo
    priority: 50

lisp
    location: /usr/local/portage/layman/lisp
    sync-type: git
    sync-uri: git://anongit.gentoo.org/proj/lisp.git
    masters: gentoo
    priority: 50

nx
    location: /usr/local/portage/layman/nx
    sync-type: laymansync
    sync-uri: https://anongit.gentoo.org/git/proj/nx.git
    masters: gentoo
    priority: 50

octave
    location: /usr/local/portage/layman/octave
    sync-type: git
    sync-uri: git://github.com/rafaelmartins/octave-overlay.git
    masters: gentoo
    priority: 50

palemoon
    location: /usr/local/portage/layman/palemoon
    sync-type: git
    sync-uri: https://github.com/deuiore/palemoon-overlay.git
    masters: gentoo
    priority: 50

science
    location: /usr/local/portage/layman/science
    sync-type: laymansync
    sync-uri: git://anongit.gentoo.org/proj/sci.git
    masters: gentoo
    priority: 50

seden
    location: /usr/local/portage/layman/seden
    sync-type: laymansync
    sync-uri: git://anongit.gentoo.org/user/seden.git
    masters: gentoo
    priority: 50

local
    location: /usr/local/portage
    masters: gentoo
    priority: 99

ACCEPT_KEYWORDS="amd64 ~amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -O2 -msse3 -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc /usr/share/config /usr/share/gnupg/qualified.txt /var/lib/hsqldb"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php5.6/ext-active/ /etc/php/apache2-php7.1/ext-active/ /etc/php/cgi-php5.6/ext-active/ /etc/php/cgi-php7.1/ext-active/ /etc/php/cli-php5.6/ext-active/ /etc/php/cli-php7.1/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c"
CXXFLAGS="-march=native -O2 -msse3 -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables"
DISTDIR="/usr/portage/distfiles"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-logs buildpkg config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync news parallel-fetch preserve-libs protect-owned sandbox sfperms splitdebug strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/gentoo "
LANG="en_US.iso88591"
LC_ALL=""
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
MAKEOPTS="-j4"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
USE="3dnow 3dnowext 3dnowprefetch X a52 aac acl acpi alsa amd64 avahi berkdb branding bzip2 cairo cdda cdr cli consolekit cracklib crypt cups cxx dbus dri dts dvd dvdr emboss encode exif fam ffmpeg fftw firefox flac fortran fuse gcj gdbm gfortran gif gimp glamor gpm gtk gtk3 iconv ipv6 jpeg lapack lcms libnotify mad mmx mmxext mng modules mp3 mp4 mpeg multilib ncurses nls nptl nptlonly ogg opengl openmp pam pango pcre pdf png policykit ppds python qt qt3support qt4 qt5 readline sdl seccomp session smp spell sqlite sqlite3 sse sse2 sse3 sse4a ssl startup-notification svg tcl tcpd threads tiff tk truetype udev udisks unicode upower usb vorbis wxwidgets x264 xattr xcb xml xulrunner xv xvid zlib" ABI_X86="64" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="3dnow mmx 3dnowext mmxext popcnt sse sse2 sse3 sse4a" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="pc multiboot" INPUT_DEVICES="keyboard mouse evdev wacom" KERNEL="linux" L10N="en de" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="en de" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python3_6" RUBY_TARGETS="ruby24" USERLAND="GNU" VIDEO_CARDS="radeon radeonsi r600" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON

=================================================================
                        Package Settings
=================================================================

dev-python/astropy-1.3::local was built with the following:
USE="-doc -test" ABI_X86="(64)" PYTHON_TARGETS="python3_6 -python2_7"
CFLAGS="-mtune=native -O2 -msse3 -pipe -fPIC"
CXXFLAGS="-mtune=native -O2 -msse3 -pipe -fPIC"