public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/cdiff: cdiff-0.9.3.ebuild cdiff-9999.ebuild ChangeLog cdiff-0.6.ebuild cdiff-0.7.ebuild cdiff-0.8.ebuild cdiff-0.7.1.ebuild
@ 2013-10-12 12:49 Tom Wijsman (tomwij)
  0 siblings, 0 replies; only message in thread
From: Tom Wijsman (tomwij) @ 2013-10-12 12:49 UTC (permalink / raw
  To: gentoo-commits

tomwij      13/10/12 12:49:18

  Modified:             ChangeLog
  Added:                cdiff-0.9.3.ebuild cdiff-9999.ebuild
  Removed:              cdiff-0.6.ebuild cdiff-0.7.ebuild cdiff-0.8.ebuild
                        cdiff-0.7.1.ebuild
  Log:
  Version bump to 0.9.3. Remove old ebuilds before 0.9. Added 9999 version for easier testing.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)

Revision  Changes    Path
1.21                 dev-util/cdiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cdiff/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	5 Sep 2013 18:40:34 -0000	1.20
+++ ChangeLog	12 Oct 2013 12:49:18 -0000	1.21
@@ -1,6 +1,15 @@
 # ChangeLog for dev-util/cdiff
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cdiff/ChangeLog,v 1.20 2013/09/05 18:40:34 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cdiff/ChangeLog,v 1.21 2013/10/12 12:49:18 tomwij Exp $
+
+*cdiff-0.9.3 (12 Oct 2013)
+*cdiff-9999 (12 Oct 2013)
+
+  12 Oct 2013; Tom Wijsman <TomWij@gentoo.org> +cdiff-0.9.3.ebuild,
+  +cdiff-9999.ebuild, -cdiff-0.6.ebuild, -cdiff-0.7.1.ebuild, -cdiff-0.7.ebuild,
+  -cdiff-0.8.ebuild:
+  Version bump to 0.9.3. Remove old ebuilds before 0.9. Added 9999 version for
+  easier testing.
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> cdiff-0.6.ebuild,
   cdiff-0.7.1.ebuild, cdiff-0.7.ebuild, cdiff-0.8.ebuild, cdiff-0.9.1.ebuild,



1.1                  dev-util/cdiff/cdiff-0.9.3.ebuild

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

Index: cdiff-0.9.3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cdiff/cdiff-0.9.3.ebuild,v 1.1 2013/10/12 12:49:18 tomwij Exp $

EAPI="5"

PYTHON_COMPAT=( python{2_6,2_7,3_2} )
DOCS=( CHANGES README.rst )

inherit distutils-r1

DESCRIPTION="Colored, side-by-side diff terminal viewer."
HOMEPAGE="https://github.com/ymattw/${PN}"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"

DEPEND="!app-misc/colordiff
	dev-python/setuptools[${PYTHON_USEDEP}]
	sys-apps/less"

RDEPEND="${DEPEND}"

PATCHES=( "${FILESDIR}"/${PN}-0.9.2-disable-unimportant-failing-test.patch )

src_test() {
	python_export_best

	${PYTHON} tests/test_cdiff.py || die "Unit tests failed."

	./tests/regression.sh || die "Regression tests failed."
}


1.1                  dev-util/cdiff/cdiff-9999.ebuild

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

Index: cdiff-9999.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cdiff/cdiff-9999.ebuild,v 1.1 2013/10/12 12:49:18 tomwij Exp $

EAPI="5"

PYTHON_COMPAT=( python{2_6,2_7,3_2} )
DOCS=( CHANGES README.rst )

inherit distutils-r1

if [[ "${PV}" != *"9999"* ]] ; then
	KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
else
	KEYWORDS=""
	EGIT_REPO_URI="https://github.com/ymattw/cdiff.git"
	inherit git-r3
fi

DESCRIPTION="Colored, side-by-side diff terminal viewer."
HOMEPAGE="https://github.com/ymattw/${PN}"

LICENSE="BSD"
SLOT="0"

DEPEND="!app-misc/colordiff
	dev-python/setuptools[${PYTHON_USEDEP}]
	sys-apps/less"

RDEPEND="${DEPEND}"





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-10-12 12:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-12 12:49 [gentoo-commits] gentoo-x86 commit in dev-util/cdiff: cdiff-0.9.3.ebuild cdiff-9999.ebuild ChangeLog cdiff-0.6.ebuild cdiff-0.7.ebuild cdiff-0.8.ebuild cdiff-0.7.1.ebuild Tom Wijsman (tomwij)

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