idella4 14/12/14 08:22:15
Modified: ChangeLog
Added: kiwi-1.9.40.ebuild
Removed: kiwi-1.9.26.ebuild kiwi-1.9.35.ebuild
kiwi-1.9.37.ebuild kiwi-1.9.34.ebuild
kiwi-1.9.38.ebuild kiwi-1.9.38-r1.ebuild
kiwi-1.9.36.2.ebuild kiwi-1.9.36.ebuild
Log:
bump; add comment in test phase re failures, rm old
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key
0xB8072B0D)
Revision Changes Path
1.28 dev-python/kiwi/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kiwi/ChangeLog?rev=1.28&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kiwi/ChangeLog?rev=1.28&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kiwi/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/kiwi/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 12 Aug 2014 07:16:31 -0000 1.27
+++ ChangeLog 14 Dec 2014 08:22:15 -0000 1.28
@@ -1,6 +1,14 @@
# ChangeLog for dev-python/kiwi
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/kiwi/ChangeLog,v 1.27 2014/08/12
07:16:31 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/kiwi/ChangeLog,v 1.28 2014/12/14
08:22:15 idella4 Exp $
+
+*kiwi-1.9.40 (14 Dec 2014)
+
+ 14 Dec 2014; Ian Delaney <[email protected]> +kiwi-1.9.40.ebuild,
+ -kiwi-1.9.26.ebuild, -kiwi-1.9.34.ebuild, -kiwi-1.9.35.ebuild,
+ -kiwi-1.9.36.2.ebuild, -kiwi-1.9.36.ebuild, -kiwi-1.9.37.ebuild,
+ -kiwi-1.9.38-r1.ebuild, -kiwi-1.9.38.ebuild:
+ bump; add comment in test phase re failures, rm old
*kiwi-1.9.39.2 (12 Aug 2014)
1.1 dev-python/kiwi/kiwi-1.9.40.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kiwi/kiwi-1.9.40.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kiwi/kiwi-1.9.40.ebuild?rev=1.1&content-type=text/plain
Index: kiwi-1.9.40.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/kiwi/kiwi-1.9.40.ebuild,v 1.1
2014/12/14 08:22:15 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 versionator virtualx
DESCRIPTION="Kiwi is a pure Python framework and set of enhanced PyGTK widgets"
HOMEPAGE="http://www.async.com.br/projects/kiwi/
https://launchpad.net/kiwi
http://pypi.python.org/pypi/kiwi-gtk"
MY_PN="${PN}-gtk"
MY_P="${MY_PN}-${PV}"
SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
IUSE="examples test"
RDEPEND=">=dev-python/setuptools-0.8[${PYTHON_USEDEP}]
>=dev-python/pygtk-2.24[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( dev-python/mock[${PYTHON_USEDEP}] )"
S="${WORKDIR}/${MY_P}"
python_prepare_all() {
sed -e "s:share/doc/kiwi:share/doc/${PF}:g" -i setup.py || die "sed
failed"
distutils-r1_python_prepare_all
}
python_test() {
# There is one fail of a test repeated 3 times in tests/test_ui.py
however
# they are shy with their bug tracker. The fail is not a failing of the
package's core modules
testing() {
"${PYTHON}" -m unittest discover || die "tests failed"
}
VIRTUALX_COMMAND=virtualmake testing
}
python_install_all() {
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
rmdir "${D}"usr/share/doc/${PF}/{api,howto} || die
}