diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-01-06 00:34:02 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-01-06 00:34:02 +0000 |
commit | e10326407f65f95c9e8c392cfec90bb97c81aad0 (patch) | |
tree | f5dd9f5a54179be5e4decbb40d729afeadf7e705 /net-misc/dropbox-cli | |
parent | Remove !dev-libs/icu:0/50 blockers, since they're not needed (regular slot is... (diff) | |
download | gentoo-2-e10326407f65f95c9e8c392cfec90bb97c81aad0.tar.gz gentoo-2-e10326407f65f95c9e8c392cfec90bb97c81aad0.tar.bz2 gentoo-2-e10326407f65f95c9e8c392cfec90bb97c81aad0.zip |
revbump: migrate to distutils-r1
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'net-misc/dropbox-cli')
-rw-r--r-- | net-misc/dropbox-cli/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/dropbox-cli/dropbox-cli-1-r1.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/net-misc/dropbox-cli/ChangeLog b/net-misc/dropbox-cli/ChangeLog index de4de301019f..82c453da02d0 100644 --- a/net-misc/dropbox-cli/ChangeLog +++ b/net-misc/dropbox-cli/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/dropbox-cli -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbox-cli/ChangeLog,v 1.3 2012/12/06 04:12:54 phajdan.jr Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbox-cli/ChangeLog,v 1.4 2013/01/06 00:34:02 hasufell Exp $ + +*dropbox-cli-1-r1 (06 Jan 2013) + + 06 Jan 2013; Julian Ospald <hasufell@gentoo.org> +dropbox-cli-1-r1.ebuild: + revbump: migrate to distutils-r1 06 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> dropbox-cli-1.ebuild: x86 stable wrt bug #445099 diff --git a/net-misc/dropbox-cli/dropbox-cli-1-r1.ebuild b/net-misc/dropbox-cli/dropbox-cli-1-r1.ebuild new file mode 100644 index 000000000000..4b981003f381 --- /dev/null +++ b/net-misc/dropbox-cli/dropbox-cli-1-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbox-cli/dropbox-cli-1-r1.ebuild,v 1.1 2013/01/06 00:34:02 hasufell Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_6 python2_7 ) + +inherit python-r1 + +DESCRIPTION="Cli interface for dropbox daemon (python)" +HOMEPAGE="http://www.dropbox.com/" +SRC_URI="https://dev.gentoo.org/~hasufell/distfiles/${P}.py.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="net-misc/dropbox + virtual/python-argparse" + +S=${WORKDIR} + +src_install() { + newbin ${P}.py ${PN} + python_replicate_script "${D}"/usr/bin/${PN} +} |