public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/lockfile: lockfile-0.10.2.ebuild ChangeLog
@ 2015-01-10 17:54 Dirkjan Ochtman (djc)
  0 siblings, 0 replies; 2+ messages in thread
From: Dirkjan Ochtman (djc) @ 2015-01-10 17:54 UTC (permalink / raw
  To: gentoo-commits

djc         15/01/10 17:54:59

  Modified:             ChangeLog
  Added:                lockfile-0.10.2.ebuild
  Log:
  Version bump lockfile to 0.10.2 (drop sparc and pypy for pbr dep)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 30380381)

Revision  Changes    Path
1.26                 dev-python/lockfile/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	10 Jan 2015 17:42:27 -0000	1.25
+++ ChangeLog	10 Jan 2015 17:54:59 -0000	1.26
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/lockfile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.25 2015/01/10 17:42:27 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.26 2015/01/10 17:54:59 djc Exp $
+
+*lockfile-0.10.2 (10 Jan 2015)
+
+  10 Jan 2015; Dirkjan Ochtman <djc@gentoo.org> +lockfile-0.10.2.ebuild:
+  Version bump lockfile to 0.10.2 (drop sparc and pypy for pbr dep)
 
   10 Jan 2015; Dirkjan Ochtman <djc@gentoo.org> -lockfile-0.8-r1.ebuild,
   -lockfile-0.8.ebuild, -lockfile-0.9.1.ebuild:



1.1                  dev-python/lockfile/lockfile-0.10.2.ebuild

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

Index: lockfile-0.10.2.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild,v 1.1 2015/01/10 17:54:59 djc Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )

inherit distutils-r1

DESCRIPTION="Platform-independent file locking module"
HOMEPAGE="http://launchpad.net/pylockfile http://pypi.python.org/pypi/lockfile"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="doc test"

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

DOCS=( ACKS README RELEASE-NOTES )

python_compile_all() {
	if use doc; then
		einfo "Generation of documentation"
		emake -C doc html || die "Generation of documentation failed"
	fi
}

python_test() {
	# "${PYTHON}" test/test_lockfile.py yeilds no informative coverage output
	nosetests || die "test_lockfile failed under ${EPYTHON}"
}

python_install_all() {
	use doc && local HTML_DOCS=( doc/.build/html/. )
	distutils-r1_python_install_all
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/lockfile: lockfile-0.10.2.ebuild ChangeLog
@ 2015-04-04  9:12 Dirkjan Ochtman (djc)
  0 siblings, 0 replies; 2+ messages in thread
From: Dirkjan Ochtman (djc) @ 2015-04-04  9:12 UTC (permalink / raw
  To: gentoo-commits

djc         15/04/04 09:12:10

  Modified:             lockfile-0.10.2.ebuild ChangeLog
  Log:
  Fix documentation build (fixes bug 540986)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 30380381)

Revision  Changes    Path
1.2                  dev-python/lockfile/lockfile-0.10.2.ebuild

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

Index: lockfile-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lockfile-0.10.2.ebuild	10 Jan 2015 17:54:59 -0000	1.1
+++ lockfile-0.10.2.ebuild	4 Apr 2015 09:12:10 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild,v 1.1 2015/01/10 17:54:59 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild,v 1.2 2015/04/04 09:12:10 djc Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -26,7 +26,7 @@
 python_compile_all() {
 	if use doc; then
 		einfo "Generation of documentation"
-		emake -C doc html || die "Generation of documentation failed"
+		emake -C doc/source html || die "Generation of documentation failed"
 	fi
 }
 
@@ -36,6 +36,6 @@
 }
 
 python_install_all() {
-	use doc && local HTML_DOCS=( doc/.build/html/. )
+	use doc && local HTML_DOCS=( doc/source/.build/html/. )
 	distutils-r1_python_install_all
 }



1.28                 dev-python/lockfile/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	10 Jan 2015 18:10:25 -0000	1.27
+++ ChangeLog	4 Apr 2015 09:12:10 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/lockfile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.27 2015/01/10 18:10:25 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.28 2015/04/04 09:12:10 djc Exp $
+
+  04 Apr 2015; Dirkjan Ochtman <djc@gentoo.org> lockfile-0.10.2.ebuild:
+  Fix documentation build (fixes bug 540986)
 
   10 Jan 2015; Dirkjan Ochtman <djc@gentoo.org> metadata.xml:
   Fix upstream remote-id to point to PyPI





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

end of thread, other threads:[~2015-04-04  9:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-04  9:12 [gentoo-commits] gentoo-x86 commit in dev-python/lockfile: lockfile-0.10.2.ebuild ChangeLog Dirkjan Ochtman (djc)
  -- strict thread matches above, loose matches on Subject: below --
2015-01-10 17:54 Dirkjan Ochtman (djc)

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