diff options
author | Lukasz Strzygowski <lucass@gentoo.org> | 2007-01-19 10:58:01 +0000 |
---|---|---|
committer | Lukasz Strzygowski <lucass@gentoo.org> | 2007-01-19 10:58:01 +0000 |
commit | 709a4c18fdec2a184e7b6487394ab2d35b2ed0b8 (patch) | |
tree | c64f34a66be9decaa4751b82125999ef35d69ea7 /net-ftp | |
parent | Version bump, bug 162767, and add icon/desktop file (diff) | |
download | gentoo-2-709a4c18fdec2a184e7b6487394ab2d35b2ed0b8.tar.gz gentoo-2-709a4c18fdec2a184e7b6487394ab2d35b2ed0b8.tar.bz2 gentoo-2-709a4c18fdec2a184e7b6487394ab2d35b2ed0b8.zip |
Version bump, cleanup.
(Portage version: 2.1.2_rc4-r9)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/ftpcube/ChangeLog | 9 | ||||
-rw-r--r-- | net-ftp/ftpcube/files/digest-ftpcube-0.4.3-r1 | 2 | ||||
-rw-r--r-- | net-ftp/ftpcube/files/digest-ftpcube-0.5.1 | 3 | ||||
-rw-r--r-- | net-ftp/ftpcube/ftpcube-0.5.1.ebuild | 24 |
4 files changed, 36 insertions, 2 deletions
diff --git a/net-ftp/ftpcube/ChangeLog b/net-ftp/ftpcube/ChangeLog index e69e60131d7f..cd53dce460d8 100644 --- a/net-ftp/ftpcube/ChangeLog +++ b/net-ftp/ftpcube/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-ftp/ftpcube -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpcube/ChangeLog,v 1.30 2006/12/29 12:59:59 dev-zero Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpcube/ChangeLog,v 1.31 2007/01/19 10:58:01 lucass Exp $ + +*ftpcube-0.5.1 (19 Jan 2007) + + 19 Jan 2007; Lukasz Strzygowski <lucass@gentoo.org> +ftpcube-0.5.1.ebuild: + Version bump, cleanup. *ftpcube-0.5.0_beta1 (29 Dec 2006) diff --git a/net-ftp/ftpcube/files/digest-ftpcube-0.4.3-r1 b/net-ftp/ftpcube/files/digest-ftpcube-0.4.3-r1 index c42bc30b4b00..a1b2294b7ca5 100644 --- a/net-ftp/ftpcube/files/digest-ftpcube-0.4.3-r1 +++ b/net-ftp/ftpcube/files/digest-ftpcube-0.4.3-r1 @@ -1 +1,3 @@ MD5 574d207377a24caf6315866d52326672 ftpcube-0.4.3.tar.gz 89620 +RMD160 43e622678da93af1e72d7a3414b6e24743b39b6b ftpcube-0.4.3.tar.gz 89620 +SHA256 21dbe8f032743ae3363f81a3cef1f468be027415e3dc5d873b6b2101987c450a ftpcube-0.4.3.tar.gz 89620 diff --git a/net-ftp/ftpcube/files/digest-ftpcube-0.5.1 b/net-ftp/ftpcube/files/digest-ftpcube-0.5.1 new file mode 100644 index 000000000000..302584b55fd0 --- /dev/null +++ b/net-ftp/ftpcube/files/digest-ftpcube-0.5.1 @@ -0,0 +1,3 @@ +MD5 3eb93ae44fa552ec50a24b7882198dd1 ftpcube-0.5.1.tar.gz 136786 +RMD160 7f842212ede9a869a5820f210cbb862279b36c67 ftpcube-0.5.1.tar.gz 136786 +SHA256 1c2915acd1a5013aafdde1088d82e2b767a95327e8494fd23495fcce50409c67 ftpcube-0.5.1.tar.gz 136786 diff --git a/net-ftp/ftpcube/ftpcube-0.5.1.ebuild b/net-ftp/ftpcube/ftpcube-0.5.1.ebuild new file mode 100644 index 000000000000..d5e48c8ce526 --- /dev/null +++ b/net-ftp/ftpcube/ftpcube-0.5.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpcube/ftpcube-0.5.1.ebuild,v 1.1 2007/01/19 10:58:01 lucass Exp $ + +inherit distutils + +MY_P="${P/_beta/-b}" +DESCRIPTION="Graphical FTP client using wxPython" +SRC_URI="mirror://sourceforge/ftpcube/${MY_P}.tar.gz" +HOMEPAGE="http://ftpcube.sourceforge.net/" + +KEYWORDS="~amd64 ~ppc ~x86" +SLOT="0" +LICENSE="Artistic" +IUSE="sftp" + +DEPEND=">=dev-python/wxpython-2.6.3.3 + sftp? ( dev-python/paramiko )" + +S="${WORKDIR}/${MY_P}" + +src_install() { + distutils_src_install --install-scripts=/usr/bin +} |