public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/fudge: fudge-0.9.6.ebuild ChangeLog
@ 2012-05-16 15:42 Mike Gilbert (floppym)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Gilbert (floppym) @ 2012-05-16 15:42 UTC (permalink / raw
  To: gentoo-commits

floppym     12/05/16 15:42:54

  Modified:             ChangeLog
  Added:                fudge-0.9.6.ebuild
  Log:
  Add old version needed for dev-python/fabric test suite.
  
  (Portage version: 2.2.0_alpha105/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-python/fudge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	22 Mar 2011 22:33:49 -0000	1.4
+++ ChangeLog	16 May 2012 15:42:54 -0000	1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/fudge
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.4 2011/03/22 22:33:49 arfrever Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.5 2012/05/16 15:42:54 floppym Exp $
+
+*fudge-0.9.6 (16 May 2012)
+
+  16 May 2012; Mike Gilbert <floppym@gentoo.org> +fudge-0.9.6.ebuild:
+  Add old version needed for dev-python/fabric test suite.
 
 *fudge-1.0.3 (22 Mar 2011)
 



1.1                  dev-python/fudge/fudge-0.9.6.ebuild

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

Index: fudge-0.9.6.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-0.9.6.ebuild,v 1.1 2012/05/16 15:42:54 floppym Exp $

EAPI="3"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"

inherit distutils

DESCRIPTION="Replace real objects with fakes (mocks, stubs, etc) while testing."
HOMEPAGE="http://farmdev.com/projects/fudge/ http://pypi.python.org/pypi/fudge"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

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

DEPEND="doc? ( dev-python/sphinx )"
RDEPEND=""

src_prepare() {
	distutils_src_prepare
	find -name "._*" -print0 | xargs -0 rm -f
}

src_compile() {
	distutils_src_compile

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

src_test() {
	testing() {
		nosetests build-${PYTHON_ABI}/lib
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install

	delete_tests() {
		rm -fr "${ED}$(python_get_sitedir)/fudge/tests"
	}
	python_execute_function -q delete_tests

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






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

* [gentoo-commits] gentoo-x86 commit in dev-python/fudge: fudge-0.9.6.ebuild ChangeLog
@ 2013-06-07 15:30 Ian Delaney (idella4)
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Delaney (idella4) @ 2013-06-07 15:30 UTC (permalink / raw
  To: gentoo-commits

idella4     13/06/07 15:30:53

  Modified:             ChangeLog
  Added:                fudge-0.9.6.ebuild
  Log:
  re-add fudge-0.9.6, req'd dep of fabric
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.7                  dev-python/fudge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	7 Jun 2013 15:17:52 -0000	1.6
+++ ChangeLog	7 Jun 2013 15:30:53 -0000	1.7
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/fudge
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.6 2013/06/07 15:17:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.7 2013/06/07 15:30:53 idella4 Exp $
+
+*fudge-0.9.6 (07 Jun 2013)
+
+  07 Jun 2013; Ian Delaney <idella4@gentoo.org> +fudge-0.9.6.ebuild:
+  re-add fudge-0.9.6, req'd dep of fabric
 
 *fudge-1.0.3-r1 (07 Jun 2013)
 



1.3                  dev-python/fudge/fudge-0.9.6.ebuild

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






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

* [gentoo-commits] gentoo-x86 commit in dev-python/fudge: fudge-0.9.6.ebuild ChangeLog
@ 2014-08-10 21:11 Sergei Trofimovich (slyfox)
  0 siblings, 0 replies; 3+ messages in thread
From: Sergei Trofimovich (slyfox) @ 2014-08-10 21:11 UTC (permalink / raw
  To: gentoo-commits

slyfox      14/08/10 21:11:27

  Modified:             fudge-0.9.6.ebuild ChangeLog
  Log:
  QA: drop trailing '.' from DESCRIPTION
  
  (Portage version: 2.2.11_p9/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)

Revision  Changes    Path
1.4                  dev-python/fudge/fudge-0.9.6.ebuild

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

Index: fudge-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-0.9.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fudge-0.9.6.ebuild	7 Jun 2013 15:30:53 -0000	1.3
+++ fudge-0.9.6.ebuild	10 Aug 2014 21:11:27 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-0.9.6.ebuild,v 1.3 2013/06/07 15:30:53 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-0.9.6.ebuild,v 1.4 2014/08/10 21:11:27 slyfox Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -8,7 +8,7 @@
 
 inherit distutils
 
-DESCRIPTION="Replace real objects with fakes (mocks, stubs, etc) while testing."
+DESCRIPTION="Replace real objects with fakes (mocks, stubs, etc) while testing"
 HOMEPAGE="http://farmdev.com/projects/fudge/ http://pypi.python.org/pypi/fudge"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 



1.13                 dev-python/fudge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	28 Jun 2014 15:12:11 -0000	1.12
+++ ChangeLog	10 Aug 2014 21:11:27 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/fudge
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.12 2014/06/28 15:12:11 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.13 2014/08/10 21:11:27 slyfox Exp $
+
+  10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> fudge-0.9.6.ebuild:
+  QA: drop trailing '.' from DESCRIPTION
 
   28 Jun 2014; Ian Delaney <idella4@gentoo.org> fudge-1.0.3-r2.ebuild:
   drop py2.6 py3.2 pypy2_0 add py3.4, add missing dep, patch submitted by fau,





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

end of thread, other threads:[~2014-08-11 21:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-16 15:42 [gentoo-commits] gentoo-x86 commit in dev-python/fudge: fudge-0.9.6.ebuild ChangeLog Mike Gilbert (floppym)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-07 15:30 Ian Delaney (idella4)
2014-08-10 21:11 Sergei Trofimovich (slyfox)

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