blob: 0a1e67ac48b417d7f13a2fc0b2b771bbe684cf07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/freecode-submit/freecode-submit-2.7.ebuild,v 1.1 2013/12/27 07:07:57 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit python-r1
DESCRIPTION="A utility for submitting version updates to Freecode via its JSON API"
HOMEPAGE="http://www.catb.org/~esr/freecode-submit/"
SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
src_compile() { :; }
src_install() {
python_foreach_impl python_doscript ${PN}
dodoc AUTHORS README
doman ${PN}.1
}
|