Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/visual-regexp: ChangeLog visual-regexp-3.1.ebuild visual-regexp-3.0.ebuild
Date: Sat, 01 Feb 2014 09:44:26
Message-Id: 20140201094423.3D1692004E@flycatcher.gentoo.org
1 pinkbyte 14/02/01 09:44:23
2
3 Modified: ChangeLog
4 Added: visual-regexp-3.1.ebuild
5 Removed: visual-regexp-3.0.ebuild
6 Log:
7 Version bump, wrt bug #494586, thanks to Quentin Minster <quentin AT minster.io>, drop old
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.15 dev-util/visual-regexp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/visual-regexp/ChangeLog?rev=1.15&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/visual-regexp/ChangeLog?rev=1.15&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/visual-regexp/ChangeLog?r1=1.14&r2=1.15
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/visual-regexp/ChangeLog,v
21 retrieving revision 1.14
22 retrieving revision 1.15
23 diff -u -r1.14 -r1.15
24 --- ChangeLog 15 Dec 2013 18:56:26 -0000 1.14
25 +++ ChangeLog 1 Feb 2014 09:44:22 -0000 1.15
26 @@ -1,6 +1,15 @@
27 # ChangeLog for dev-util/visual-regexp
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-util/visual-regexp/ChangeLog,v 1.14 2013/12/15 18:56:26 tomwij Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-util/visual-regexp/ChangeLog,v 1.15 2014/02/01 09:44:22 pinkbyte Exp $
32 +
33 +*visual-regexp-3.1 (01 Feb 2014)
34 +
35 + 01 Feb 2014; Sergey Popov <pinkbyte@g.o> -visual-regexp-3.0.ebuild,
36 + +visual-regexp-3.1.ebuild, +files/visual-regexp-3.1-help-font-fix.patch,
37 + +files/visual-regexp-3.1-make-regexp-fix.patch,
38 + +files/visual-regexp-3.1-wish-fix.patch, -files/wish-fix.diff:
39 + Version bump, wrt bug #494586, thanks to Quentin Minster <quentin AT
40 + minster.io>, drop old
41
42 *visual-regexp-3.0-r1 (15 Dec 2013)
43
44
45
46
47 1.1 dev-util/visual-regexp/visual-regexp-3.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/visual-regexp/visual-regexp-3.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/visual-regexp/visual-regexp-3.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: visual-regexp-3.1.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-util/visual-regexp/visual-regexp-3.1.ebuild,v 1.1 2014/02/01 09:44:23 pinkbyte Exp $
57
58 EAPI=5
59
60 inherit eutils
61
62 DESCRIPTION="Type the regexp and visualize it on a sample of your choice"
63 HOMEPAGE="http://laurent.riesterer.free.fr/regexp/"
64 SRC_URI="
65 http://dev.gentoo.org/~jlec/distfiles/visualregexp-icon.png.tar
66 http://laurent.riesterer.free.fr/regexp/visual_regexp-${PV}.tcl"
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~ppc ~x86"
71 IUSE=""
72
73 DEPEND=""
74 RDEPEND=">=dev-lang/tk-8.5"
75
76 S="${WORKDIR}"
77
78 src_unpack() {
79 # Manually copy the source file since unpack gets confused by things it can't unpack
80 cp "${DISTDIR}/visual_regexp-${PV}.tcl" "${WORKDIR}/visual_regexp.tcl"
81
82 default
83 }
84
85 src_prepare() {
86 # File comes with DOS newlines
87 edos2unix visual_regexp.tcl
88
89 epatch \
90 "${FILESDIR}/${P}-wish-fix.patch" \
91 "${FILESDIR}/${P}-help-font-fix.patch" \
92 "${FILESDIR}/${P}-make-regexp-fix.patch" \
93 "${FILESDIR}/${PN}-3.0-home-conf-fix.patch" \
94 "${FILESDIR}/${PN}-3.0-pattern-load-fix.patch"
95
96 epatch_user
97 }
98
99 src_install() {
100 newbin visual_regexp.tcl visualregexp
101 dosym visualregexp /usr/bin/tkregexp
102 doicon "${WORKDIR}/visualregexp-icon.png"
103 domenu "${FILESDIR}/visualregexp.desktop"
104 }