summaryrefslogtreecommitdiff
blob: b7825a63ada46f662451f11bebbf46bf86d8517f (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
25
26
27
28
29
30
31
32
33
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

PYTHON_COMPAT=( python3_3 python3_4 )

inherit git-2 python-r1

HOMEPAGE="http://git.overlays.gentoo.org/gitweb/?p=proj/arch-tools.git"
DESCRIPTION="Set of utilities to automate workflow of arch developers"
EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/${PN}.git"
EGIT_BRANCH="master"

LICENSE="GPL-2"
KEYWORDS=""
SLOT="0"
IUSE=""

DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}
	app-portage/gentoolkit-dev
	>=www-client/pybugz-0.10[${PYTHON_USEDEP}]"

REQUIRED_USE="${PYTHON_REQUIRED_USE}"

src_install () {
	for file in batch-stabilize.py bugzilla-viewer.py file-stabilization-bugs.py maintainer-timeout.py reverse-dependencies.py stabilization-candidates.py ; do
		newbin ${file} ${file/.py/}
	done
	python_foreach_impl python_domodule common.py
}