diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2016-07-13 23:20:09 +0300 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2016-07-13 23:20:09 +0300 |
commit | eba0cde00e6b281a8d977abda769b06a8e2638e6 (patch) | |
tree | cd575cabd3455a74d7f52b3a07b4acc568a9c541 /dev-util/uncrustify/uncrustify-9999.ebuild | |
parent | net-analyzer/nessus-plugins: add libressl support (diff) | |
download | gentoo-eba0cde00e6b281a8d977abda769b06a8e2638e6.tar.gz gentoo-eba0cde00e6b281a8d977abda769b06a8e2638e6.tar.bz2 gentoo-eba0cde00e6b281a8d977abda769b06a8e2638e6.zip |
dev-util/uncrustify: Version bump
BugID #588742
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-util/uncrustify/uncrustify-9999.ebuild')
-rw-r--r-- | dev-util/uncrustify/uncrustify-9999.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-util/uncrustify/uncrustify-9999.ebuild b/dev-util/uncrustify/uncrustify-9999.ebuild index 9de89d8f4c74..c636825ab523 100644 --- a/dev-util/uncrustify/uncrustify-9999.ebuild +++ b/dev-util/uncrustify/uncrustify-9999.ebuild @@ -9,13 +9,15 @@ if [[ $PV == *9999* ]]; then https://github.com/uncrustify/uncrustify.git" KEYWORDS="" SRC_URI="" - inherit git-r3 autotools + scm_eclass=git-r3 else KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" SRC_URI="https://github.com/uncrustify/${PN}/archive/${P}.tar.gz" - S=${WORKDIR}/uncrustify-${P} + S=${WORKDIR}/${PN}-${P} fi +inherit autotools ${scm_eclass} + PYTHON_COMPAT=( python2_7 ) inherit python-any-r1 @@ -30,9 +32,7 @@ IUSE="test" DEPEND="test? ( ${PYTHON_DEPS} )" src_prepare() { - if [[ ${PV} == *9999* ]] ; then - eautoreconf - fi + eautoreconf default } |