public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ian Delaney (idella4)" <idella4@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-sqlparse: python-sqlparse-0.1.10.ebuild ChangeLog
Date: Thu, 23 Jan 2014 04:55:09 +0000 (UTC)	[thread overview]
Message-ID: <20140123045509.527B42004C@flycatcher.gentoo.org> (raw)

idella4     14/01/23 04:55:09

  Modified:             ChangeLog
  Added:                python-sqlparse-0.1.10.ebuild
  Log:
  bump; drop py2.6, add py3 support, add pytest to tun tests, unrestrict test phase, re-write of test phase
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.21                 dev-python/python-sqlparse/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	6 Jan 2014 08:22:54 -0000	1.20
+++ ChangeLog	23 Jan 2014 04:55:09 -0000	1.21
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/python-sqlparse
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v 1.20 2014/01/06 08:22:54 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v 1.21 2014/01/23 04:55:09 idella4 Exp $
+
+*python-sqlparse-0.1.10 (23 Jan 2014)
+
+  23 Jan 2014; Ian Delaney <idella4@gentoo.org> +python-sqlparse-0.1.10.ebuild,
+  python-sqlparse-0.1.5-r1.ebuild:
+  bump; drop py2.6, add py3 support, add pytest to tun tests, unrestrict test
+  phase, re-write of test phase
 
   06 Jan 2014; Justin Lecher <jlec@gentoo.org> -python-sqlparse-0.1.3.ebuild,
   -python-sqlparse-0.1.4.ebuild, -python-sqlparse-0.1.5.ebuild:



1.1                  dev-python/python-sqlparse/python-sqlparse-0.1.10.ebuild

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

Index: python-sqlparse-0.1.10.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/python-sqlparse-0.1.10.ebuild,v 1.1 2014/01/23 04:55:09 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_2,3_3} )

inherit distutils-r1

DESCRIPTION="A non-validating SQL parser module for Python"
HOMEPAGE="http://code.google.com/p/python-sqlparse/ https://github.com/andialbrecht/sqlparse"
SRC_URI="https://github.com/andialbrecht/sqlparse/archive/${PV}.tar.gz -> ${P}.tar.gz"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
LICENSE="BSD-2"
IUSE="test"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
DISTUTILS_IN_SOURCE_BUILD=1	# Required for running tests

S="${WORKDIR}"/${P#python-}

python_test() {
	if python_is_python3; then
		2to3 -w --no-diffs -n tests/ sqlparse/
		py.test ./tests || die "testsuite failed ${EPYTHON}"
	else
		py.test tests || die "testsuite failed under ${EPYTHON}"
	fi
}





             reply	other threads:[~2014-01-23  4:55 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-23  4:55 Ian Delaney (idella4) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-05-04  8:24 [gentoo-commits] gentoo-x86 commit in dev-python/python-sqlparse: python-sqlparse-0.1.10.ebuild ChangeLog Agostino Sarubbo (ago)
2014-05-10 13:45 Agostino Sarubbo (ago)
2014-05-11  8:11 Agostino Sarubbo (ago)
2014-05-13 14:43 Agostino Sarubbo (ago)
2014-05-14 14:23 Agostino Sarubbo (ago)
2014-05-17 14:03 Agostino Sarubbo (ago)
2015-04-08  8:05 Michal Gorny (mgorny)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140123045509.527B42004C@flycatcher.gentoo.org \
    --to=idella4@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox