idella4     15/01/09 05:16:51

  Modified:             ChangeLog
  Added:                sancho-2.4-r1.ebuild
  Log:
  revbump; conversion -> distutils-r1
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.48                 dev-python/sancho/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sancho/ChangeLog?rev=1.48&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sancho/ChangeLog?rev=1.48&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sancho/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sancho/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   29 Jun 2010 04:45:57 -0000      1.47
+++ ChangeLog   9 Jan 2015 05:16:51 -0000       1.48
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/sancho
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sancho/ChangeLog,v 1.47 
2010/06/29 04:45:57 arfrever Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sancho/ChangeLog,v 1.48 
2015/01/09 05:16:51 idella4 Exp $
+
+*sancho-2.4-r1 (09 Jan 2015)
+
+  09 Jan 2015; Ian Delaney <[email protected]> +sancho-2.4-r1.ebuild:
+  revbump; conversion -> distutils-r1
 
   29 Jun 2010; Arfrever Frehtes Taifersar Arahesis <[email protected]>
   sancho-2.4.ebuild:
@@ -159,4 +164,3 @@
   +sancho-2.1.ebuild:
   Initial commit. Ebuild by Robin H. Johnson <[email protected]>. Needed for
   pycrypto testcases.
-



1.1                  dev-python/sancho/sancho-2.4-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sancho/sancho-2.4-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sancho/sancho-2.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: sancho-2.4-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sancho/sancho-2.4-r1.ebuild,v 1.1 
2015/01/09 05:16:51 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

MY_P="Sancho-${PV}"

DESCRIPTION="Sancho is a unit testing framework"
HOMEPAGE="http://www.mems-exchange.org/software/sancho/";
SRC_URI="http://www.mems-exchange.org/software/files/${PN}/${MY_P}.tar.gz";

LICENSE="CNRI"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""

DEPEND=""
RDEPEND=""

S="${WORKDIR}/${MY_P}"

python_test() {
        cd test
        local test test_failure test_failure_count=0
        for test in *.py; do
                test_failure="0"
                ebegin "Testing ${test}"
                "${PYTHON}" "${test}" > "${test}.output"
                grep -Eqv "^${test}: .*:$" "${test}.output" && test_failure="1"
                eend "${test_failure}"
                if [[ "${test_failure}" == "1" ]]; then
                        ((test_failure_count++))
                        eerror "Failure output for ${test}"
                        cat "${test}.output"
                fi
        done
        if [[ "${test_failure_count}" -gt "0" ]]; then
                die "${test_failure_count} tests failed"
        fi
}




Reply via email to