Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 469832 - dev-python/pypy-2.0_beta2 - gcc_version => gcc-version
Summary: dev-python/pypy-2.0_beta2 - gcc_version => gcc-version
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Nirbheek Chauhan (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-05-14 13:05 UTC by MiPnamic
Modified: 2013-05-14 14:27 UTC (History)
1 user (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description MiPnamic 2013-05-14 13:05:20 UTC
/usr/portage/dev-python/pypy/pypy-2.0_beta2.ebuild: line 36: gcc_version: command not found

looking into the ebuild:

pkg_pretend() {
        CHECKREQS_MEMORY="2G"
        use amd64 && CHECKREQS_MEMORY="4G"
        check-reqs_pkg_pretend
        if [[ ${MERGE_TYPE} != binary && "$(gcc_version)" == "4.8" ]]; then
                die "PyPy does not build correctly with GCC 4.8"
        fi
}

commmand shouldn't be $(gcc -dumpversion) ?

Reproducible: Always
Comment 1 Mike Gilbert gentoo-dev 2013-05-14 14:27:49 UTC
+  14 May 2013; Mike Gilbert <floppym@gentoo.org> pypy-2.0_beta2.ebuild:
+  Fix typo in gcc-version, bug 469832 by MiPnamic.