idella4     14/05/19 07:38:46

  Modified:             ChangeLog
  Added:                quixote-2.8.ebuild
  Removed:              quixote-2.6.ebuild
  Log:
  bump; add IUSE doc, test. Tests restricted due to need for a running server
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.40                 dev-python/quixote/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   17 Oct 2012 05:20:38 -0000      1.39
+++ ChangeLog   19 May 2014 07:38:46 -0000      1.40
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/quixote
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v 1.39 
2012/10/17 05:20:38 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v 1.40 
2014/05/19 07:38:46 idella4 Exp $
+
+*quixote-2.8 (19 May 2014)
+
+  19 May 2014; Ian Delaney <idel...@gentoo.org> +quixote-2.8.ebuild,
+  -quixote-2.6.ebuild:
+  bump; add IUSE doc, test. Tests restricted due to need for a running server
 
   17 Oct 2012; Patrick Lauer <patr...@gentoo.org> quixote-2.7.ebuild:
   Restricting python 2.5



1.1                  dev-python/quixote/quixote-2.8.ebuild

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

Index: quixote-2.8.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/quixote-2.8.ebuild,v 1.1 
2014/05/19 07:38:46 idella4 Exp $

EAPI=5
# Appears to be written only for py2
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1 flag-o-matic

MY_P="${P/q/Q}"

DESCRIPTION="Python HTML templating framework for developing web applications"
HOMEPAGE="http://quixote.ca";
SRC_URI="http://quixote.ca/releases/${MY_P}.tar.gz";

LICENSE="CNRI-QUIXOTE-2.4"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc test"

DEPEND="doc? ( dev-python/docutils[${PYTHON_USEDEP}] )
        test? ( dev-python/nose[${PYTHON_USEDEP}] )"

S="${WORKDIR}"/${MY_P}
# tests require a running quixote server, prob. apt. post install. Tried the 
demo one but no
RESTRICT="test"

python_compile() {
        local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"

        distutils-r1_python_compile
}

python_compile_all() {
        use doc && emake -C doc
}

python_test() {
        nosetests tests || die "tests failed"
}

python_install_all() {
        local HTML_DOCS=( doc/. )
        distutils-r1_python_install_all
}




Reply via email to