diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-util/visual-regexp | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-util/visual-regexp')
12 files changed, 295 insertions, 0 deletions
diff --git a/dev-util/visual-regexp/Manifest b/dev-util/visual-regexp/Manifest new file mode 100644 index 000000000000..7c7a58060d06 --- /dev/null +++ b/dev-util/visual-regexp/Manifest @@ -0,0 +1,3 @@ +DIST visual_regexp-3.0.tar.gz 25659 SHA256 07a22a498e32476c7ae17b00d131c04a53def4e5f174ffe42ddbc42e44752c0f SHA512 3c8b3e44d20f8cdc69fdb501ac82a44f6b755715c9bd6309bbca01193acc72a97595d6012ad889c957adba587c3f8f1f888c0f42993bb81bf3f730adff42c655 WHIRLPOOL 56be241b1653fbb0b0fa5f4a1b13e755424a2d193b267e68b938ca34dbe636bcf7fdd2bb65611abe9d3e8ebb2080614c1224534424b9a83840f5ade3015a3964 +DIST visual_regexp-3.1.tcl 71183 SHA256 153bccbce71da7b208f95abc7408a126f819e4a0e57ad053866080c82e282752 SHA512 f36729800e0e66ee22339614b47f068eeb440cac501f73898250ddda9865cd5c3cc09bd57a8ea601ef7a3240bddbe524a69b704ae58b8e56decb81b25166818b WHIRLPOOL bdb4f35e8a5fd7267848e43a9eb8ea4d02633ace08bf9336826cecf5c4370857a31d54042f92b4cd79e934c468a07c0ba5f3c4ae8eabf7d98cb5ae8198629bbe +DIST visualregexp-icon.png.tar 20480 SHA256 8704b626f9318d62fe6bdf7f2b4fb4ef7b72c6b4fe7376e55c486d5dc89fd064 SHA512 af0a5ec63d2d5fa71842ed85a83541b0f1ee72a4b37941e11f4f212874564b0255a97dfa953ea1684b056a4ab6f86ce47b6df9374628551c9cf8e775f7d12fb2 WHIRLPOOL 7dd0e70e4f419e0f4d9a6ad57260267b674b2f2ebe904ec5ec582a539d3cc619eac968e580318b003babf0b36885298b4a7c8d8ff8c4591d61794f83da807834 diff --git a/dev-util/visual-regexp/files/visual-regexp-3.0-help-font-fix.patch b/dev-util/visual-regexp/files/visual-regexp-3.0-help-font-fix.patch new file mode 100644 index 000000000000..ec3763cc9dd1 --- /dev/null +++ b/dev-util/visual-regexp/files/visual-regexp-3.0-help-font-fix.patch @@ -0,0 +1,26 @@ +diff -ur a/visual_regexp.tcl b/visual_regexp.tcl +--- a/visual_regexp.tcl 2013-11-10 01:35:49.959609478 +0100 ++++ b/visual_regexp.tcl 2013-11-10 01:34:10.491151352 +0100 +@@ -494,15 +494,18 @@ + pack .help.l -side top -padx 10 -pady 10 + # help text + if {$tcl_platform(platform) == "windows"} { +- text .help.t -bd 2 -relief groove -font {Courier 10} ++ set hfont {Courier 10} ++ set hbfont {Courier 10 bold} + } else { +- text .help.t -bd 2 -relief groove ++ set hfont {9x15} ++ set hbfont {9x15bold} + } ++ text .help.t -bd 2 -relief groove -font $hfont + pack .help.t -side top -padx 20 +- .help.t tag configure bold -font "[.help.t cget -font] bold" ++ .help.t tag configure bold -font $hbfont + .help.t insert 1.0 "Version:" bold " $::version + +-" normal "Usage:" bold " tkregexp <sampleFile> ++" normal "Usage:" bold " [file tail $::argv0] <sampleFile> + + " normal "Key bindings:" bold " Alt-q exit + Alt-a toggle 'all' flag diff --git a/dev-util/visual-regexp/files/visual-regexp-3.0-home-conf-fix.patch b/dev-util/visual-regexp/files/visual-regexp-3.0-home-conf-fix.patch new file mode 100644 index 000000000000..c86202ae05fb --- /dev/null +++ b/dev-util/visual-regexp/files/visual-regexp-3.0-home-conf-fix.patch @@ -0,0 +1,56 @@ +diff -ur a/visual_regexp.tcl b/visual_regexp.tcl +--- a/visual_regexp.tcl 2013-11-12 23:23:59.730171882 +0100 ++++ b/visual_regexp.tcl 2013-11-12 23:24:42.134085257 +0100 +@@ -1062,27 +1060,38 @@ + #============================================================================================== + + # try to get customization from 'visual_regexp.ini' +-puts "[file exists visual_regexp.ini]" +-set filename [file dirname [info nameofexecutable]]/visual_regexp.ini +-if {[file exists $filename]} { +- source $filename +-} elseif {[file exists visual_regexp.ini]} { +- source visual_regexp.ini ++set localfilename visual_regexp.ini ++set homefilename "" ++if {[info exists ::env(HOME)]} { ++ set homefilename [file join $::env(HOME) .visual_regexp visual_regexp.ini] + } +- +-# try to auto user patterns +-set filename [file dirname [info nameofexecutable]]/regexp.txt +-if {[file exists $filename]} { +- regexp::pattern:load $filename +-} elseif {[file exists regexp.txt]} { +- regexp::pattern:load regexp.txt ++set binfilename [file join [file dirname [info nameofexecutable]] visual_regexp.ini] ++foreach filename [list $localfilename $homefilename $binfilename] { ++ if {[file exists $filename]} { ++ source $filename ++ break ++ } + } + +-# buld the GUI ++# build the GUI + regexp::history:init + regexp::gui + regexp::go + ++# try to auto user patterns ++set localfilename regexp.txt ++set homefilename "" ++if {[info exists ::env(HOME)]} { ++ set homefilename [file join $::env(HOME) .visual_regexp regexp.txt] ++} ++set binfilename [file join [file dirname [info nameofexecutable]] regexp.txt] ++foreach filename [list $localfilename $homefilename $binfilename] { ++ if {[file exists $filename]} { ++ regexp::pattern:load $filename ++ break ++ } ++} ++ + if {$argc > 1} { + puts "Usage: $argv0 <sampleFile>" + } elseif {$argc == 1} { diff --git a/dev-util/visual-regexp/files/visual-regexp-3.0-pattern-load-fix.patch b/dev-util/visual-regexp/files/visual-regexp-3.0-pattern-load-fix.patch new file mode 100644 index 000000000000..18dbf509f45a --- /dev/null +++ b/dev-util/visual-regexp/files/visual-regexp-3.0-pattern-load-fix.patch @@ -0,0 +1,31 @@ +diff -ur a/visual_regexp.tcl b/visual_regexp.tcl +--- a/visual_regexp.tcl 2013-11-12 23:23:59.730171882 +0100 ++++ b/visual_regexp.tcl 2013-11-12 23:24:42.134085257 +0100 +@@ -380,19 +380,17 @@ + } + # do it + set in [open $file "r"] +- $data(w:menu) delete [expr 4+[llength $::regexp_db]/2] end +- while {![eof $in]} { +- set name [gets $in] +- while {$name == ""} { +- set name [gets $in] +- } +- set pattern [gets $in] +- while {$pattern == ""} { +- set pattern [gets $in] ++ set contents {} ++ foreach line [split [read $in] \n] { ++ if {$line != ""} { ++ lappend contents $line + } +- $data(w:menu) add command -label $name -command "regexp::regexp:insert [list $pattern]" + } + close $in ++ $data(w:menu) delete [expr 4+[llength $::regexp_db]/2] end ++ foreach {name pattern} $contents { ++ $data(w:menu) add command -label $name -command "regexp::regexp:insert [list $pattern]" ++ } + } + + diff --git a/dev-util/visual-regexp/files/visual-regexp-3.0-wish-fix.patch b/dev-util/visual-regexp/files/visual-regexp-3.0-wish-fix.patch new file mode 100644 index 000000000000..bfb7478d1fec --- /dev/null +++ b/dev-util/visual-regexp/files/visual-regexp-3.0-wish-fix.patch @@ -0,0 +1,12 @@ +diff -ur visual_regexp-3.0/visual_regexp.tcl visual_regexp-current/visual_regexp.tcl +--- visual_regexp-3.0/visual_regexp.tcl 2002-09-01 08:24:56.000000000 -0500 ++++ visual_regexp-current/visual_regexp.tcl 2004-03-29 23:20:43.000000000 -0500 +@@ -1,7 +1,7 @@ + #!/bin/sh + #-*-tcl-*- + # the next line restarts using wish \ +-exec wish8.3 "$0" -- ${1+"$@"} ++exec wish "$0" -- ${1+"$@"} + + + set version 3.0 diff --git a/dev-util/visual-regexp/files/visual-regexp-3.1-help-font-fix.patch b/dev-util/visual-regexp/files/visual-regexp-3.1-help-font-fix.patch new file mode 100644 index 000000000000..1dd7e7021b4f --- /dev/null +++ b/dev-util/visual-regexp/files/visual-regexp-3.1-help-font-fix.patch @@ -0,0 +1,32 @@ +diff -ur a/visual_regexp.tcl b/visual_regexp.tcl +--- a/visual_regexp.tcl 2013-11-10 01:49:14.987065220 +0100 ++++ b/visual_regexp.tcl 2013-11-10 01:49:04.177341077 +0100 +@@ -740,10 +740,13 @@ + frame .help.text; + + if {$tcl_platform(platform) == "windows"} { +- text .help.text.t -borderwidth 2 -relief groove -font {Courier 10} -yscrollcommand [list .help.text.sy set]; ++ set hfont {Courier 10} ++ set hbfont {Courier 10 bold} + } else { +- text .help.text.t -borderwidth 2 -relief groove -yscrollcommand [list .help.text.sy set]; ++ set hfont {9x15} ++ set hbfont {9x15bold} + } ++ text .help.text.t -borderwidth 2 -relief groove -font $hfont -yscrollcommand [list .help.text.sy set]; + + scrollbar .help.text.sy \ + -command ".help.text.t yview" \ +@@ -755,10 +758,10 @@ + + pack .help.text -side top -fill both -expand 1 -padx 20 + +- .help.text.t tag configure bold -font "[.help.text.t cget -font] bold" ++ .help.text.t tag configure bold -font $hbfont + .help.text.t insert 1.0 "Version:" bold " $::version + +-" normal "Usage:" bold " tkregexp <sampleFile> ++" normal "Usage:" bold " [file tail $::argv0] <sampleFile> + + " normal "Key bindings:" bold " Alt-q exit + Alt-a toggle 'all' flag diff --git a/dev-util/visual-regexp/files/visual-regexp-3.1-make-regexp-fix.patch b/dev-util/visual-regexp/files/visual-regexp-3.1-make-regexp-fix.patch new file mode 100644 index 000000000000..6610b16e76ff --- /dev/null +++ b/dev-util/visual-regexp/files/visual-regexp-3.1-make-regexp-fix.patch @@ -0,0 +1,12 @@ +diff -ur a/visual_regexp.tcl b/visual_regexp.tcl +--- a/visual_regexp.tcl 2013-11-11 12:11:34.256631106 +0100 ++++ b/visual_regexp.tcl 2013-11-11 11:50:46.614881803 +0100 +@@ -1437,7 +1439,7 @@ + set output [text $f.output \ + -wrap char \ + -undo 1 \ +- -background white ++ -background white \ + -font $::font_regexp \ + -selectbackground lightblue \ + -selectborderwidth 0 \ diff --git a/dev-util/visual-regexp/files/visual-regexp-3.1-wish-fix.patch b/dev-util/visual-regexp/files/visual-regexp-3.1-wish-fix.patch new file mode 100644 index 000000000000..3fae9d095025 --- /dev/null +++ b/dev-util/visual-regexp/files/visual-regexp-3.1-wish-fix.patch @@ -0,0 +1,13 @@ +diff -ur a/visual_regexp.tcl b/visual_regexp.tcl +--- a/visual_regexp.tcl 2013-10-29 03:42:43.443932232 +0100 ++++ b/visual_regexp.tcl 2013-10-29 03:35:35.441951822 +0100 +@@ -1,7 +1,6 @@ +-package require starkit +-starkit::startup ++#!/usr/bin/wish + +-set version 3.0 ++set version 3.1 + + ############################################################################################### + # diff --git a/dev-util/visual-regexp/files/visualregexp.desktop b/dev-util/visual-regexp/files/visualregexp.desktop new file mode 100644 index 000000000000..1d66181bc2c1 --- /dev/null +++ b/dev-util/visual-regexp/files/visualregexp.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Exec=visualregexp +Icon=visualregexp-icon +Name=Visual Regexp +Comment=An interactive regular expression editor +Categories=Development; diff --git a/dev-util/visual-regexp/metadata.xml b/dev-util/visual-regexp/metadata.xml new file mode 100644 index 000000000000..f5b2d29b8036 --- /dev/null +++ b/dev-util/visual-regexp/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>quentin@minster.io</email> + <name>Quentin Minster</name> + </maintainer> +</pkgmetadata> diff --git a/dev-util/visual-regexp/visual-regexp-3.0-r1.ebuild b/dev-util/visual-regexp/visual-regexp-3.0-r1.ebuild new file mode 100644 index 000000000000..6a2d8cce9c68 --- /dev/null +++ b/dev-util/visual-regexp/visual-regexp-3.0-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Type the regexp and visualize it on a sample of your choice" +HOMEPAGE="http://laurent.riesterer.free.fr/regexp/" +SRC_URI=" + http://dev.gentoo.org/~jlec/distfiles/visualregexp-icon.png.tar + http://laurent.riesterer.free.fr/regexp/visual_regexp-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-lang/tk-8.3" + +S=${WORKDIR}/visual_regexp-${PV} + +src_prepare() { + epatch \ + "${FILESDIR}"/${P}-wish-fix.patch \ + "${FILESDIR}"/${P}-help-font-fix.patch \ + "${FILESDIR}"/${P}-home-conf-fix.patch \ + "${FILESDIR}"/${P}-pattern-load-fix.patch +} + +src_install() { + dodoc README + + newbin visual_regexp.tcl visualregexp + + dosym visualregexp /usr/bin/tkregexp + + doicon "${WORKDIR}"/visualregexp-icon.png + + domenu "${FILESDIR}"/visualregexp.desktop +} diff --git a/dev-util/visual-regexp/visual-regexp-3.1.ebuild b/dev-util/visual-regexp/visual-regexp-3.1.ebuild new file mode 100644 index 000000000000..e27584728509 --- /dev/null +++ b/dev-util/visual-regexp/visual-regexp-3.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Type the regexp and visualize it on a sample of your choice" +HOMEPAGE="http://laurent.riesterer.free.fr/regexp/" +SRC_URI=" + http://dev.gentoo.org/~jlec/distfiles/visualregexp-icon.png.tar + http://laurent.riesterer.free.fr/regexp/visual_regexp-${PV}.tcl" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-lang/tk-8.5" + +S="${WORKDIR}" + +src_unpack() { + # Manually copy the source file since unpack gets confused by things it can't unpack + cp "${DISTDIR}/visual_regexp-${PV}.tcl" "${WORKDIR}/visual_regexp.tcl" + + default +} + +src_prepare() { + # File comes with DOS newlines + edos2unix visual_regexp.tcl + + epatch \ + "${FILESDIR}/${P}-wish-fix.patch" \ + "${FILESDIR}/${P}-help-font-fix.patch" \ + "${FILESDIR}/${P}-make-regexp-fix.patch" \ + "${FILESDIR}/${PN}-3.0-home-conf-fix.patch" \ + "${FILESDIR}/${PN}-3.0-pattern-load-fix.patch" + + epatch_user +} + +src_install() { + newbin visual_regexp.tcl visualregexp + dosym visualregexp /usr/bin/tkregexp + doicon "${WORKDIR}/visualregexp-icon.png" + domenu "${FILESDIR}/visualregexp.desktop" +} |