dev-util/cyclo: update to current release (2.1.0)
authorStephen L Arnold <nerdboy@gentoo.org>
Wed, 10 Feb 2016 18:32:16 +0000 (10:32 -0800)
committerStephen L Arnold <nerdboy@gentoo.org>
Wed, 10 Feb 2016 18:32:16 +0000 (10:32 -0800)
This version also adds a simple test and example usage.

Package-Manager: portage-2.2.26

dev-util/cyclo/Manifest
dev-util/cyclo/cyclo-2.1.0.ebuild [moved from dev-util/cyclo/cyclo-2.1_pre1.ebuild with 58% similarity]

index d9986c9e6cddc556300396d781e44bec8e6860ee..e8b0c5446d182c6043d8387768ccfb472977a72d 100644 (file)
@@ -1 +1 @@
-DIST cyclo-2.1_pre1.tar.gz 30866 SHA256 56c2c2ab2e684eb8d4c196835a2343b13ca3c26e1f1ca63ffd8c5bb2f485ad89 SHA512 1b28c54b84d28ed9f72f57e8db1da74cd29be92947418bb3e9452afae1fc863ffb1110face3291f1abb34d1dcaed84d018bf9122ae25b4b67017e4990bb080b6 WHIRLPOOL dcbbd1117a9f5ecdafbda40814ce47053b9653de251fd8384a4900765537fe61cd406b1eddfc890e79adce32da30f799c5a736b2ca246cab5505eac060f5e518
+DIST cyclo-2.1.0.tar.gz 27120 SHA256 b8753c149e298d3683add4aec834fb4a4b748636b7bfd9a79a2548e6b81e2045 SHA512 19cf4116e55ba3dff6e49536fed7e5a8da4cc2b691874b5356e67763652785b3f349cb309629e9aca66be15f1c4632ece8bcd5cc3b69373a5a7923eab8058382 WHIRLPOOL c805174fffb6d1cc9a5d9d6c6f7a460699a48347ce5ac5eae0f55cbc3b55b5305624f8e29ecd9f9889242557bd362bfcb99feda8661fd26e13250be590d11132
similarity index 58%
rename from dev-util/cyclo/cyclo-2.1_pre1.ebuild
rename to dev-util/cyclo/cyclo-2.1.0.ebuild
index 1281a4f9588f763cdd8097b277fcd6560408dba6..4f7bcdc4eb6061789bfc0f0405a82d089c2a2b78 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ if [[ ${PV} = 9999* ]]; then
        EGIT_REPO_URI="https://github.com/sarnold/cyclo.git"
        inherit git-r3
 else
-       SRC_URI="https://github.com/sarnold/cyclo/archive/2.1_pre1.tar.gz -> ${P}.tar.gz"
+       SRC_URI="https://github.com/sarnold/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 fi
 
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
@@ -24,23 +24,26 @@ IUSE="debug"
 DEPEND="sys-devel/flex"
 
 src_compile() {
-       local my_flags="CC=$(tc-getCC) CCPLUS=$(tc-getCXX)"
+       local my_opts
+       my_opts="CC=$(tc-getCC) CXX=$(tc-getCXX)"
 
        if ! use debug ; then
-               DBG="" make ${my_flags} all || die "make failed"
+               DBG="" emake ${my_opts} || die "make failed"
        else
                export STRIP_MASK="*/bin/*"
                if [ -n "${DEBUG}" ] ; then
-                       DBG="${DEBUG}" make ${my_flags} all || die "make debug failed"
+                       DBG="${DEBUG}" emake ${my_opts} \
+                               || die "make debug failed"
                else
-                       make ${my_flags} all || die "make debug failed"
+                       emake ${my_opts} || die "make debug failed"
                fi
        fi
 }
 
-src_install() {
-       dobin cyclo mcstrip
+src_test() {
+       make -f Makefile.test test
+}
 
-       doman cyclo.0 mcstrip.1 cyclo.1
-       dodoc README.rst mccabe.example || die "dodoc failed"
+src_install() {
+       emake PREFIX=/usr DESTDIR="${ED}" install
 }