Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/diffmask: ChangeLog diffmask-0.3.3.ebuild diffmask-0.3.2.ebuild
Date: Fri, 29 Oct 2010 12:43:04
Message-Id: 20101029124257.D3ECB20051@flycatcher.gentoo.org
1 mgorny 10/10/29 12:42:57
2
3 Modified: ChangeLog
4 Added: diffmask-0.3.3.ebuild
5 Removed: diffmask-0.3.2.ebuild
6 Log:
7 A version bump. The new version fixes a failure when --add or --delete didn't match anything and improves whitespace handling. The code has been cleaned up, split into modules and documented. Distutils is now used as a build system.
8
9 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.4 app-portage/diffmask/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/diffmask/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/diffmask/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/diffmask/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-portage/diffmask/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 25 Oct 2010 19:11:37 -0000 1.3
25 +++ ChangeLog 29 Oct 2010 12:42:57 -0000 1.4
26 @@ -1,6 +1,15 @@
27 # ChangeLog for app-portage/diffmask
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-portage/diffmask/ChangeLog,v 1.3 2010/10/25 19:11:37 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-portage/diffmask/ChangeLog,v 1.4 2010/10/29 12:42:57 mgorny Exp $
31 +
32 +*diffmask-0.3.3 (29 Oct 2010)
33 +
34 + 29 Oct 2010; Michał Górny <mgorny@g.o> -diffmask-0.3.2.ebuild,
35 + +diffmask-0.3.3.ebuild:
36 + A version bump. The new version fixes a failure when --add or --delete didn't
37 + match anything and improves whitespace handling. The code has been cleaned
38 + up, split into modules and documented. Distutils is now used as a build
39 + system.
40
41 *diffmask-0.3.2 (25 Oct 2010)
42
43
44
45
46 1.1 app-portage/diffmask/diffmask-0.3.3.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/diffmask/diffmask-0.3.3.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/diffmask/diffmask-0.3.3.ebuild?rev=1.1&content-type=text/plain
50
51 Index: diffmask-0.3.3.ebuild
52 ===================================================================
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/app-portage/diffmask/diffmask-0.3.3.ebuild,v 1.1 2010/10/29 12:42:57 mgorny Exp $
56
57 EAPI=1
58 PYTHON_DEPEND="*:2.6"
59 SUPPORT_PYTHON_ABIS=1
60 RESTRICT_PYTHON_ABIS="2.4 2.5"
61
62 inherit distutils
63
64 DESCRIPTION="A utility to maintain package.unmask entries up-to-date with masks"
65 HOMEPAGE="http://github.com/mgorny/diffmask/"
66 SRC_URI="http://github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
67
68 LICENSE="BSD"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 RDEPEND="sys-apps/portage"