public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/flask: flask-9999.ebuild ChangeLog
@ 2012-04-10 12:47 Rafael Martins (rafaelmartins)
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael Martins (rafaelmartins) @ 2012-04-10 12:47 UTC (permalink / raw
  To: gentoo-commits

rafaelmartins    12/04/10 12:47:21

  Modified:             ChangeLog
  Added:                flask-9999.ebuild
  Log:
  Added live ebuild.
  
  (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 dev-python/flask/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	8 Oct 2011 19:13:50 -0000	1.11
+++ ChangeLog	10 Apr 2012 12:47:21 -0000	1.12
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/flask
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.11 2011/10/08 19:13:50 floppym Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.12 2012/04/10 12:47:21 rafaelmartins Exp $
+
+*flask-9999 (10 Apr 2012)
+
+  10 Apr 2012; Rafael Martins <rafael@gentoo.org> +flask-9999.ebuild:
+  Added live ebuild.
 
   08 Oct 2011; Mike Gilbert <floppym@gentoo.org> flask-0.8.ebuild:
   Fix compilation with py2.5; thanks to Arfrever catching this.



1.1                  dev-python/flask/flask-9999.ebuild

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

Index: flask-9999.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v 1.1 2012/04/10 12:47:21 rafaelmartins Exp $

EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"

EGIT_REPO_URI="git://github.com/mitsuhiko/flask.git
	https://github.com/mitsuhiko/flask.git"

inherit distutils git-2

MY_PN="Flask"

DESCRIPTION="A microframework based on Werkzeug, Jinja2 and good intentions"
HOMEPAGE="http://pypi.python.org/pypi/Flask"

LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE="doc examples test"

RDEPEND="dev-python/blinker
	>=dev-python/jinja-2.4
	dev-python/setuptools
	>=dev-python/werkzeug-0.6.1"
DEPEND="${RDEPEND}
	doc? ( >=dev-python/sphinx-0.6 )"

src_compile() {
	distutils_src_compile

	if use doc; then
		einfo "Generation of documentation"
		pushd docs > /dev/null
		PYTHONPATH=".." emake html || die "Generation of documentation failed"
		popd > /dev/null
	fi
}

src_test() {
	testing() {
		PYTHONPATH="." "$(PYTHON)" run-tests.py
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install

	if use doc; then
		pushd docs/_build/html > /dev/null
		insinto /usr/share/doc/${PF}/html
		doins -r [a-z]* _images _static || die "Installation of documentation failed"
		popd > /dev/null
	fi

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples || die "Installation of examples failed"
	fi
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/flask: flask-9999.ebuild ChangeLog
@ 2012-04-10 13:01 Rafael Martins (rafaelmartins)
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael Martins (rafaelmartins) @ 2012-04-10 13:01 UTC (permalink / raw
  To: gentoo-commits

rafaelmartins    12/04/10 13:01:00

  Modified:             flask-9999.ebuild ChangeLog
  Log:
  Added live ebuild.
  
  (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-python/flask/flask-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?r1=1.1&r2=1.2

Index: flask-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flask-9999.ebuild	10 Apr 2012 12:47:21 -0000	1.1
+++ flask-9999.ebuild	10 Apr 2012 13:01:00 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v 1.1 2012/04/10 12:47:21 rafaelmartins Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v 1.2 2012/04/10 13:01:00 rafaelmartins Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2:2.5"



1.13                 dev-python/flask/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	10 Apr 2012 12:47:21 -0000	1.12
+++ ChangeLog	10 Apr 2012 13:01:00 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/flask
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.12 2012/04/10 12:47:21 rafaelmartins Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.13 2012/04/10 13:01:00 rafaelmartins Exp $
+
+  10 Apr 2012; Rafael Martins <rafael@gentoo.org> flask-9999.ebuild:
+  Added live ebuild.
 
 *flask-9999 (10 Apr 2012)
 






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/flask: flask-9999.ebuild ChangeLog
@ 2013-05-23  0:34 Mike Gilbert (floppym)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert (floppym) @ 2013-05-23  0:34 UTC (permalink / raw
  To: gentoo-commits

floppym     13/05/23 00:34:50

  Modified:             flask-9999.ebuild ChangeLog
  Log:
  Update live ebuild.
  
  (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.4                  dev-python/flask/flask-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?r1=1.3&r2=1.4

Index: flask-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- flask-9999.ebuild	28 Mar 2013 03:18:18 -0000	1.3
+++ flask-9999.ebuild	23 May 2013 00:34:50 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v 1.3 2013/03/28 03:18:18 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v 1.4 2013/05/23 00:34:50 floppym Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} )
@@ -24,7 +24,8 @@
 IUSE="examples test"
 
 RDEPEND="dev-python/blinker[${PYTHON_USEDEP}]
-	>=dev-python/jinja-2.4[${PYTHON_USEDEP}]
+	>=dev-python/jinja-2.4[$(python_gen_usedep python2_5)]
+	>=dev-python/jinja-2.4[$(python_gen_usedep python{2_6,2_7} 'pypy*')]
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	>=dev-python/werkzeug-0.6.1[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"



1.19                 dev-python/flask/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	23 May 2013 00:32:56 -0000	1.18
+++ ChangeLog	23 May 2013 00:34:50 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/flask
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.18 2013/05/23 00:32:56 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.19 2013/05/23 00:34:50 floppym Exp $
+
+  23 May 2013; Mike Gilbert <floppym@gentoo.org> flask-9999.ebuild:
+  Update live ebuild.
 
 *flask-0.9-r2 (23 May 2013)
 





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/flask: flask-9999.ebuild ChangeLog
@ 2013-06-27  2:24 Mike Gilbert (floppym)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert (floppym) @ 2013-06-27  2:24 UTC (permalink / raw
  To: gentoo-commits

floppym     13/06/27 02:24:57

  Modified:             flask-9999.ebuild ChangeLog
  Log:
  Ditto live ebuild.
  
  (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.6                  dev-python/flask/flask-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask/flask-9999.ebuild?r1=1.5&r2=1.6

Index: flask-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- flask-9999.ebuild	16 Jun 2013 22:52:40 -0000	1.5
+++ flask-9999.ebuild	27 Jun 2013 02:24:57 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v 1.5 2013/06/16 22:52:40 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/flask-9999.ebuild,v 1.6 2013/06/27 02:24:57 floppym Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_6,2_7,3_3} )
@@ -25,7 +25,7 @@
 
 RDEPEND="dev-python/blinker[${PYTHON_USEDEP}]
 	>=dev-python/itsdangerous-0.21[${PYTHON_USEDEP}]
-	>=dev-python/jinja-2.4[$(python_gen_usedep python{2_6,2_7} 'pypy*')]
+	>=dev-python/jinja-2.4[${PYTHON_USEDEP}]
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	>=dev-python/werkzeug-0.7[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"



1.24                 dev-python/flask/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	27 Jun 2013 01:56:37 -0000	1.23
+++ ChangeLog	27 Jun 2013 02:24:57 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/flask
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.23 2013/06/27 01:56:37 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask/ChangeLog,v 1.24 2013/06/27 02:24:57 floppym Exp $
+
+  27 Jun 2013; Mike Gilbert <floppym@gentoo.org> flask-9999.ebuild:
+  Ditto live ebuild.
 
   27 Jun 2013; Mike Gilbert <floppym@gentoo.org> flask-0.10.1.ebuild:
   Simplify jinja dependency.





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-06-27  2:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-10 13:01 [gentoo-commits] gentoo-x86 commit in dev-python/flask: flask-9999.ebuild ChangeLog Rafael Martins (rafaelmartins)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-27  2:24 Mike Gilbert (floppym)
2013-05-23  0:34 Mike Gilbert (floppym)
2012-04-10 12:47 Rafael Martins (rafaelmartins)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox