jimtcl: upgraded package to upstream

Upgraded dev-lang/jimtcl to version 0.73 on amd64

Needed by newer openocd

BUG=chromium:234369
TEST=`emerge openocd` works

Change-Id: I1743e4a9716bdd6246e91bd9e605ae448b4f8931
Reviewed-on: https://gerrit.chromium.org/gerrit/48907
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Tested-by: Bill Richardson <wfrichar@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
diff --git a/dev-lang/jimtcl/Manifest b/dev-lang/jimtcl/Manifest
index 74fd061..6eb7044 100644
--- a/dev-lang/jimtcl/Manifest
+++ b/dev-lang/jimtcl/Manifest
@@ -1 +1 @@
-DIST jimtcl-0.70_pre20110317.tar.gz 691917 RMD160 ec278bab283bc2c8292b1c5d3604eca7b5fea4a3 SHA1 df61cfa69a35184ed2d84b2d659b5204e0b254f9 SHA256 28998a03321ef64d23376057c1a3dfb0f2f552ddce19df54d1d1277d3487f70d
+DIST jimtcl-0.73.zip 2286098 SHA256 3d7348ad7f853dd58ab3c05d5404ababde083eef95debca6c7cee2da047214d0 SHA512 9d99eff13292ed1db95ca673be88b14c87e9ce1e28d3fab0b08e0ca0473765fa2e8e305fd5f67768d94ae47cc3e0bc3d0cec8ba4a54ad3d5c1359ee8e2d36f81 WHIRLPOOL 8bb83acad304dc73abfeee8718713bcc5a613cfbc3f875d6c31d70778822b88cf0f415b038262125236884853d9c977bf7ff134fb166e2b83124f452d7b6cd29
diff --git a/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild b/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild
deleted file mode 100644
index 8371dff..0000000
--- a/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild,v 1.2 2012/05/05 16:51:29 hwoarang Exp $
-
-EAPI="2"
-
-DESCRIPTION="Small footprint implementation of Tcl programming language"
-HOMEPAGE="http://jim.berlios.de/"
-SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="static-libs"
-
-src_configure() {
-	! use static-libs && myconf=--with-jim-shared
-	econf ${myconf} \
-		--with-jim-ext=nvp
-}
-
-src_compile() {
-	emake all docs || die
-}
-
-src_install() {
-	dobin jimsh || die "dobin failed"
-	use static-libs && {
-		dolib.a libjim.a || die "dolib failed"
-	} || {
-		dolib.so libjim.so || die "dolib failed"
-	}
-	insinto /usr/include
-	doins jim.h jimautoconf.h jim-subcmd.h jim-nvp.h jim-signal.h
-	doins jim-win32compat.h jim-eventloop.h jim-config.h
-	dodoc AUTHORS README TODO || die "dodoc failed"
-	dohtml Tcl.html || die "dohtml failed"
-}
diff --git a/dev-lang/jimtcl/jimtcl-0.73.ebuild b/dev-lang/jimtcl/jimtcl-0.73.ebuild
new file mode 100644
index 0000000..f391115
--- /dev/null
+++ b/dev-lang/jimtcl/jimtcl-0.73.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/jimtcl/jimtcl-0.73.ebuild,v 1.1 2012/08/17 22:23:51 hwoarang Exp $
+
+EAPI="4"
+
+DESCRIPTION="Small footprint implementation of Tcl programming language"
+HOMEPAGE="http://jim.tcl.tk"
+SRC_URI="https://github.com/msteveb/jimtcl/zipball/0.73 -> ${P}.zip"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="doc static-libs"
+DEPEND="doc? ( app-text/asciidoc )
+	app-arch/unzip"
+
+GIT_HASH="5b8ea68"
+S="${WORKDIR}"/msteveb-${PN}-${GIT_HASH}
+
+src_configure() {
+	! use static-libs && myconf=--with-jim-shared
+	econf ${myconf}
+}
+
+src_compile() {
+	emake all
+	use doc && emake docs
+}
+
+src_install() {
+	dobin jimsh
+	use static-libs && {
+		dolib.a libjim.a
+	} || {
+		dolib.so libjim.so
+	}
+	insinto /usr/include
+	doins jim.h jimautoconf.h jim-subcmd.h jim-signal.h
+	doins jim-win32compat.h jim-eventloop.h jim-config.h
+	dodoc AUTHORS README TODO
+	use doc && dohtml Tcl.html
+}
diff --git a/metadata/md5-cache/dev-lang/jimtcl-0.70_pre20110317 b/metadata/md5-cache/dev-lang/jimtcl-0.70_pre20110317
deleted file mode 100644
index 9591c63..0000000
--- a/metadata/md5-cache/dev-lang/jimtcl-0.70_pre20110317
+++ /dev/null
@@ -1,10 +0,0 @@
-DEFINED_PHASES=compile configure install
-DESCRIPTION=Small footprint implementation of Tcl programming language
-EAPI=2
-HOMEPAGE=http://jim.berlios.de/
-IUSE=static-libs
-KEYWORDS=amd64 ~x86
-LICENSE=LGPL-2
-SLOT=0
-SRC_URI=http://dev.gentoo.org/~hwoarang/distfiles/jimtcl-0.70_pre20110317.tar.gz
-_md5_=8b656a03807eed78178b4dd615561089
diff --git a/metadata/md5-cache/dev-lang/jimtcl-0.73 b/metadata/md5-cache/dev-lang/jimtcl-0.73
new file mode 100644
index 0000000..03ca3cc
--- /dev/null
+++ b/metadata/md5-cache/dev-lang/jimtcl-0.73
@@ -0,0 +1,11 @@
+DEFINED_PHASES=compile configure install
+DEPEND=doc? ( app-text/asciidoc ) app-arch/unzip
+DESCRIPTION=Small footprint implementation of Tcl programming language
+EAPI=4
+HOMEPAGE=http://jim.tcl.tk
+IUSE=doc static-libs
+KEYWORDS=amd64 ~x86
+LICENSE=LGPL-2
+SLOT=0
+SRC_URI=https://github.com/msteveb/jimtcl/zipball/0.73 -> jimtcl-0.73.zip
+_md5_=beceb1f9a7f76da8b14d1da7aadaceb4