summaryrefslogtreecommitdiff
blob: 233c4920008f846d8f6d84ddad8a7c9d25d2d75c (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
PYTHON_COMPAT=( python3_6 )
inherit python-single-r1 user readme.gentoo-r1

DESCRIPTION="IP address and data center infrastructure management tool"
HOMEPAGE="https://github.com/netbox-community/netbox"
SRC_URI="https://github.com/netbox-community/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="ldap webhooks"
REQUIRED_USE=${PYTHON_REQUIRED_USE}

RDEPEND="
	${PYTHON_DEPS}
	$(python_gen_cond_dep '
		>=dev-python/django-2.2[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-cacheops-4.1[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-cors-headers-3.0.2[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-debug-toolbar-2.0[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-filter-2.1.0[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-mptt-0.9.1[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-prometheus-1.0.15[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-tables2-2.0.6[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-taggit-1.1.0[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-taggit-serializer-0.1.7[${PYTHON_MULTI_USEDEP}]
		>=dev-python/django-timezone-field-3.0[${PYTHON_MULTI_USEDEP}]
		>=dev-python/djangorestframework-3.9.4[${PYTHON_MULTI_USEDEP}]
		>=dev-python/drf-yasg-1.16.0[${PYTHON_MULTI_USEDEP},validation]
		>=dev-python/graphviz-0.10.1[${PYTHON_MULTI_USEDEP}]
		>=dev-python/jinja-2.10.1[${PYTHON_MULTI_USEDEP}]
		>=dev-python/markdown-2.6.11[${PYTHON_MULTI_USEDEP}]
		<dev-python/markdown-3.0.1[${PYTHON_MULTI_USEDEP}]
		>=dev-python/netaddr-0.7.19[${PYTHON_MULTI_USEDEP}]
		>=dev-python/pillow-6.2.0[${PYTHON_MULTI_USEDEP}]
		>=dev-python/psycopg-2.8.3[${PYTHON_MULTI_USEDEP}]
		>=dev-python/py-gfm-0.1.4[${PYTHON_MULTI_USEDEP}]
		>=dev-python/pycryptodome-3.8.2[${PYTHON_MULTI_USEDEP}]
		www-servers/gunicorn[${PYTHON_MULTI_USEDEP}]
		ldap? ( >=dev-python/django-auth-ldap-1.7[${PYTHON_MULTI_USEDEP}] )
		webhooks? ( >=dev-python/django-rq-2.1.0[${PYTHON_MULTI_USEDEP}] )
	')"
DEPEND="${RDEPEND}"

PATCHES=(
	"${FILESDIR}"/${PN}-2.6.7-no-pip.patch
	)

DISABLE_AUTOFORMATTING=YES
DOC_CONTENTS="
netbox is installed on your system. However, there are some manual steps
you need to complete from the installation guide [1].

On Gentoo, the configuration files you need to edit are located in
/etc/netbox, not /opt/netbox as shown in the installation guide.

If this is a new installation, please follow the installation guide
other than this difference. Also, if you need ldap or webhooks, set the
appropriate use flags when you emerge netbox to install the
dependencies.

Once that is done, you should be able to add the netbox service to the
default runlevel and start it.

If you have webhooks turned on,  you should also add the netbox-rqworker
service to the default runlevel and start it.

If this is an upgrade, follow these instructions:

Stop the netbox service. If the  netbox-rqworker service is running,
stop it as well.

Next, run the upgrade script as described in the upgrading guide[2].

Next, check for new configuration options and set them as appropriate
for your system.

Next, start the netbox service.

Finally, if you are using webhooks, start the netbox-rqworker service.

[1] https://netbox.readthedocs.io/en/stable/installation/
[2] https://netbox.readthedocs.io/en/stable/installation/upgrading/
"

pkg_setup() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
}

src_install() {
	dodir /opt
	cp -a ../${P} "${ED}"/opt
	dosym ${P} /opt/netbox
dosym ../../etc/netbox/gunicorn_config.py /opt/netbox/gunicorn_config.py
	dosym ../../../../etc/netbox/configuration.py \
	/opt/netbox/netbox/netbox/configuration.py
	dodir /etc/netbox
	insinto /etc/netbox
	newins netbox/netbox/configuration.example.py configuration.py
	doins "${FILESDIR}"/gunicorn_config.py
	fowners -R netbox:netbox /etc/netbox /opt/${P}
	fowners -h netbox:netbox /opt/netbox
	fperms o= /etc/netbox/configuration.py /etc/netbox/gunicorn_config.py
	newinitd "${FILESDIR}"/${PN}.initd ${PN}
	use webhooks &&
		newinitd "${FILESDIR}"/${PN}-rqworker.initd ${PN}-rqworker
	keepdir /var/log/netbox
	fowners -R netbox:netbox /var/log/netbox
	readme.gentoo_create_doc
}

pkg_postinst() {
	readme.gentoo_print_elog
	local r
	for r in $REPLACING_VERSIONS; do
		if [[ $r = "2.5.10" ]]; then
			ewarn "The home directory of the netbox user is now /var/lib/netbox"
			ewarn "Please adjust your system."
		fi
	done
}