diff options
author | Aron Griffis <agriffis@gentoo.org> | 2006-08-08 20:20:10 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2006-08-08 20:20:10 +0000 |
commit | d5acd76c07fb38d188cfd0eaf54a7a3145a83f0d (patch) | |
tree | 0506828a21519be6b776349f3d2f589bdda90d10 /app-vim/hgcommand | |
parent | Stable on amd64 (bug #142587) (diff) | |
download | gentoo-2-d5acd76c07fb38d188cfd0eaf54a7a3145a83f0d.tar.gz gentoo-2-d5acd76c07fb38d188cfd0eaf54a7a3145a83f0d.tar.bz2 gentoo-2-d5acd76c07fb38d188cfd0eaf54a7a3145a83f0d.zip |
This plugin has an evil documentation auto-unpacker. Convert to Gentoo-style
tarball that includes the unpacked txt
(Portage version: 2.1.1_pre4)
Diffstat (limited to 'app-vim/hgcommand')
-rw-r--r-- | app-vim/hgcommand/ChangeLog | 6 | ||||
-rw-r--r-- | app-vim/hgcommand/files/digest-hgcommand-0.9.1 | 6 | ||||
-rw-r--r-- | app-vim/hgcommand/hgcommand-0.9.1.ebuild | 14 |
3 files changed, 9 insertions, 17 deletions
diff --git a/app-vim/hgcommand/ChangeLog b/app-vim/hgcommand/ChangeLog index 35d65ebd66d2..2d5b95c20038 100644 --- a/app-vim/hgcommand/ChangeLog +++ b/app-vim/hgcommand/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-vim/hgcommand # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/hgcommand/ChangeLog,v 1.1 2006/08/08 20:06:47 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/hgcommand/ChangeLog,v 1.2 2006/08/08 20:20:10 agriffis Exp $ + + 08 Aug 2006; Aron Griffis <agriffis@gentoo.org> hgcommand-0.9.1.ebuild: + This plugin has an evil documentation auto-unpacker. Convert to Gentoo-style + tarball that includes the unpacked txt *hgcommand-0.9.1 (08 Aug 2006) diff --git a/app-vim/hgcommand/files/digest-hgcommand-0.9.1 b/app-vim/hgcommand/files/digest-hgcommand-0.9.1 index efb7eb9b43cb..863bb0ab8304 100644 --- a/app-vim/hgcommand/files/digest-hgcommand-0.9.1 +++ b/app-vim/hgcommand/files/digest-hgcommand-0.9.1 @@ -1,3 +1,3 @@ -MD5 9ed3962bba640a686c37faa47739270c mercurial-0.9.1.tar.gz 401485 -RMD160 f34db5fbfcc5b3e90b2bce7577d3446f6159b057 mercurial-0.9.1.tar.gz 401485 -SHA256 60329317ed96cccf3db704ef9d2554890bcff6850c305199cc0f51cef606ebc9 mercurial-0.9.1.tar.gz 401485 +MD5 1a9d4ff8758be977ef11a58b6e108d0e hgcommand-0.9.1.tar.bz2 16264 +RMD160 365e917471c2f9dc06c3041b76033ab34cf770e0 hgcommand-0.9.1.tar.bz2 16264 +SHA256 45ad7a5c85598e3098dbf46a39b194c9ce62b815f3baa670ddaba39ee1b901cf hgcommand-0.9.1.tar.bz2 16264 diff --git a/app-vim/hgcommand/hgcommand-0.9.1.ebuild b/app-vim/hgcommand/hgcommand-0.9.1.ebuild index 53b7c65b0cda..023185cf6b46 100644 --- a/app-vim/hgcommand/hgcommand-0.9.1.ebuild +++ b/app-vim/hgcommand/hgcommand-0.9.1.ebuild @@ -1,25 +1,13 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/hgcommand/hgcommand-0.9.1.ebuild,v 1.1 2006/08/08 20:06:48 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/hgcommand/hgcommand-0.9.1.ebuild,v 1.2 2006/08/08 20:20:10 agriffis Exp $ inherit vim-plugin DESCRIPTION="vim plugin: mercurial integration plugin" HOMEPAGE="http://www.selenic.com/pipermail/mercurial/2006-July/009510.html" -SRC_URI="http://www.selenic.com/mercurial/release/mercurial-${PV}.tar.gz" LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" RDEPEND="~dev-util/mercurial-${PV}" - -src_unpack() { - unpack ${A} || die - mkdir -p ${S}/plugin || die - cd ${WORKDIR}/mercurial-${PV}/contrib/vim || die - mv ${PN}.vim ${S}/plugin || die - if [[ -f ${PN}.txt ]]; then - mkdir ${S}/doc || die - mv ${PN}.txt ${S}/doc || die - fi -} |