blob: 1ceacb1e15a6dbb9394afe091bd92e188e3095c4 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header$
EAPI=5
PYTHON_COMPAT=(python{2_6,2_7})
inherit distutils-r1 vcs-snapshot user systemd udev
HOMEPAGE="https://bitbucket.org/benallard/galileo"
SRC_URI="https://bitbucket.org/benallard/galileo/get/b0bed0aea282.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
DESCRIPTION="Synchronisation utility for Bluetooth LE-based Fitbit trackers"
LICENSE="LGPL-3+"
SLOT="0"
IUSE=""
RUN_UID=galileo
RUN_GID=galileo
DUMPDIR=/var/lib/galileo/dump
LOGDIR=/var/log/galileo
# Runtime dependencies
RDEPEND="
>=dev-python/pyusb-1.0.0_alpha1
>=dev-python/requests-0.13.1[${PYTHON_USEDEP}]
>=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
>=virtual/udev-208
"
pkg_setup() {
# Create the user and group if not already present
enewgroup ${RUN_GID}
enewuser ${RUN_UID} -1 -1 "/dev/null" ${RUN_GID}
}
python_install_all() {
# Initialisation (OpenRC)
einfo "Installing initialisation scripts (OpenRC and systemd)"
newinitd "${FILESDIR}/galileo.init.d" "${PN}"
systemd_dounit "${FILESDIR}/galileo.service"
# udev rule
einfo "Installing tracker USB dongle udev rule"
insinto "$(get_udevdir)/rules.d"
newins "${FILESDIR}/galileo.udev" 99-galileo.rules
# Configuration
einfo "Installing default configuration"
insinto /etc
newins "${FILESDIR}/galileorc" galileorc
# Initialise log directory
einfo "Initialising logfile directory"
dodir "${LOGDIR}"
fperms 770 "${LOGDIR}"
fowners ${RUN_UID}:${RUN_GID} "${LOGDIR}"
touch "${ED}/${LOGDIR}/galileo.log"
fowners ${RUN_UID}:${RUN_GID} "${LOGDIR}/galileo.log"
# Log rotation
einfo "Installing logfile rotation"
insinto /etc/logrotate.d
newins "${FILESDIR}/galileo.logrotate.d" "${PN}"
# Initialize server cache directory
einfo "Initialising tracker dump directory"
dodir "${DUMPDIR}"
fowners ${RUN_UID}:${RUN_GID} "${DUMPDIR}"
fperms 770 "${DUMPDIR}"
# Main python package installation
einfo "Performing standard Python ebuild install"
distutils-r1_python_install_all
}
|