Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 596448 - dev-util/uncrustify-9999 build system switched to CMake
Summary: dev-util/uncrustify-9999 build system switched to CMake
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Fabian Groffen
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-10-07 13:32 UTC by Eugene Shalygin
Modified: 2016-12-06 19:13 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 Eugene Shalygin 2016-10-07 13:32:58 UTC
dev-util/uncrustify-9999 ebuild can't build the package because autotools files were removed from git. The trivial change fixes the ebuild:

--- /var/portage/gentoo/dev-util/uncrustify/uncrustify-9999.ebuild      2016-07-13 22:20:09.000000000 +0200
+++ /var/portage/repository/my-gentoo/dev-util/uncrustify/uncrustify-9999.ebuild        2016-10-03 21:07:19.928628090 +0200
@@ -16,7 +16,7 @@
        S=${WORKDIR}/${PN}-${P}
 fi
 
-inherit autotools ${scm_eclass}
+inherit cmake-utils ${scm_eclass}
 
 PYTHON_COMPAT=( python2_7 )
 
@@ -31,11 +31,6 @@
 
 DEPEND="test? ( ${PYTHON_DEPS} )"
 
-src_prepare() {
-       eautoreconf
-       default
-}
-
 python_test() {
        cd tests
        ${EPYTHON} run_tests.py || die "tests failed"
Comment 1 Fabian Groffen gentoo-dev 2016-12-06 19:13:23 UTC
Thanks, applied.  Sorry for the long wait.