Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/netbox/files/, www-apps/netbox/
Date: Sun, 17 Nov 2019 19:29:42
Message-Id: 1574018854.5b529b02ecf3417aa21b87b2ead3ba563a1afbf4.williamh@gentoo
1 commit: 5b529b02ecf3417aa21b87b2ead3ba563a1afbf4
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 19:26:30 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 19:27:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b529b02
7
8 www-apps/netbox: 2.6.7 bump
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
12
13 www-apps/netbox/Manifest | 1 +
14 www-apps/netbox/files/netbox-2.6.7-no-pip.patch | 32 ++++++
15 www-apps/netbox/netbox-2.6.7.ebuild | 124 ++++++++++++++++++++++++
16 3 files changed, 157 insertions(+)
17
18 diff --git a/www-apps/netbox/Manifest b/www-apps/netbox/Manifest
19 index b76f4454a5e..c60ca246557 100644
20 --- a/www-apps/netbox/Manifest
21 +++ b/www-apps/netbox/Manifest
22 @@ -4,3 +4,4 @@ DIST netbox-2.6.1.tar.gz 2393902 BLAKE2B 027115458cbb873cb7aa7660a6cd1df46a7768d
23 DIST netbox-2.6.4.tar.gz 2408970 BLAKE2B 47fa3473e893e8443aace8b587df0065a3024a34f9509644deddce7c53e5ac8b3832df55604f3328d699f8f703ae15ad5b52312e1af8fcccabb7cd06377c8a09 SHA512 b137ec7f2d33bb7b48bcb38719ac9ea8cc31d7d38e33cedfb3279b8be2078c9a48ede10db1e4b4cab4a08c77e010060936e445cb6a1d2e6247bcc8d935cc9c3a
24 DIST netbox-2.6.5.tar.gz 2408180 BLAKE2B d119a1bf8256e0d6265eda7122a1d436ecb0e8e640acd12890d242c2c93768b21b5f8ebdbaecdfa31c0eaab0150edf52f08a1f424102fd940dd359bd8eafd4af SHA512 0b76e5bc3f56effbf7493680d10d549caf36e7769e21a2c24449cbe329379369f3428354c228d0cbbbc153dc62efb5c0e56c4a0d71c99f3267acd2446f48fb8a
25 DIST netbox-2.6.6.tar.gz 2414895 BLAKE2B b27e1bd5bf810627a4ec563b2eb5dbd7c86bf3d98e52555e511ee16492fd96a6cb7604dce8f5954120ab8b3a48d6acf7878721005bcfd2bd9e3880294dfbcd4d SHA512 9b44442cea1f76cdecb37faee8fe32012b869ff63c1b0bc678d2bb8624851941e9296854a9d85abea24e49a75fd5b31b968e4adbd56e5bc03a1c9f28fc8b846e
26 +DIST netbox-2.6.7.tar.gz 2416096 BLAKE2B 9c9744b60c3999fa7c3336539937cc20eebac67559444a4512cc4d69e8d38babc147254fd1fc49b8515203a8fd4411bc61c4c30aa3313e1ffe0d0e86abd8c9bb SHA512 63ed6a95a1f33ee5dd19dc2e43fc5c6aa09979c6f6856b28060992a8aaee956363caf20c48e72884adb84d260669d828311c0cf0d143fc0e58fed9677baf76db
27
28 diff --git a/www-apps/netbox/files/netbox-2.6.7-no-pip.patch b/www-apps/netbox/files/netbox-2.6.7-no-pip.patch
29 new file mode 100644
30 index 00000000000..a47e151c084
31 --- /dev/null
32 +++ b/www-apps/netbox/files/netbox-2.6.7-no-pip.patch
33 @@ -0,0 +1,32 @@
34 +diff --git a/upgrade.sh b/upgrade.sh
35 +index d17dec06..6972ed2f 100755
36 +--- a/upgrade.sh
37 ++++ b/upgrade.sh
38 +@@ -10,27 +10,6 @@ cd "$(dirname "$0")"
39 + PYTHON="python3"
40 + PIP="pip3"
41 +
42 +-# Uninstall any Python packages which are no longer needed
43 +-COMMAND="${PIP} uninstall -r old_requirements.txt -y"
44 +-echo "Removing old Python packages ($COMMAND)..."
45 +-eval $COMMAND
46 +-
47 +-# Install any new Python packages
48 +-COMMAND="${PIP} install -r requirements.txt --upgrade"
49 +-echo "Updating required Python packages ($COMMAND)..."
50 +-eval $COMMAND
51 +-
52 +-# Validate Python dependencies
53 +-COMMAND="${PIP} check"
54 +-echo "Validating Python dependencies ($COMMAND)..."
55 +-eval $COMMAND || (
56 +- echo "******** PLEASE FIX THE DEPENDENCIES BEFORE CONTINUING ********"
57 +- echo "* Manually install newer version(s) of the highlighted packages"
58 +- echo "* so that 'pip3 check' passes. For more information see:"
59 +- echo "* https://github.com/pypa/pip/issues/988"
60 +- exit 1
61 +-)
62 +-
63 + # Apply any database migrations
64 + COMMAND="${PYTHON} netbox/manage.py migrate"
65 + echo "Applying database migrations ($COMMAND)..."
66
67 diff --git a/www-apps/netbox/netbox-2.6.7.ebuild b/www-apps/netbox/netbox-2.6.7.ebuild
68 new file mode 100644
69 index 00000000000..5058c620813
70 --- /dev/null
71 +++ b/www-apps/netbox/netbox-2.6.7.ebuild
72 @@ -0,0 +1,124 @@
73 +# Copyright 1999-2019 Gentoo Authors
74 +# Distributed under the terms of the GNU General Public License v2
75 +
76 +EAPI=7
77 +PYTHON_COMPAT=( python3_6 )
78 +inherit python-single-r1 user readme.gentoo-r1
79 +
80 +DESCRIPTION="IP address and data center infrastructure management tool"
81 +HOMEPAGE="https://github.com/netbox-community/netbox"
82 +SRC_URI="https://github.com/netbox-community/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
83 +
84 +LICENSE="Apache-2.0"
85 +SLOT="0"
86 +KEYWORDS="~amd64"
87 +IUSE="ldap webhooks"
88 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
89 +
90 +RDEPEND="
91 + ${PYTHON_DEPS}
92 + >=dev-python/django-2.2[${PYTHON_USEDEP}]
93 + >=dev-python/django-cacheops-4.1[${PYTHON_USEDEP}]
94 + >=dev-python/django-cors-headers-3.0.2[${PYTHON_USEDEP}]
95 + >=dev-python/django-debug-toolbar-2.0[${PYTHON_USEDEP}]
96 + >=dev-python/django-filter-2.1.0[${PYTHON_USEDEP}]
97 + >=dev-python/django-mptt-0.9.1[${PYTHON_USEDEP}]
98 + >=dev-python/django-prometheus-1.0.15[${PYTHON_USEDEP}]
99 + >=dev-python/django-tables2-2.0.6[${PYTHON_USEDEP}]
100 + >=dev-python/django-taggit-1.1.0[${PYTHON_USEDEP}]
101 + >=dev-python/django-taggit-serializer-0.1.7[${PYTHON_USEDEP}]
102 + >=dev-python/django-timezone-field-3.0[${PYTHON_USEDEP}]
103 + >=dev-python/djangorestframework-3.9.4[${PYTHON_USEDEP}]
104 + >=dev-python/drf-yasg-1.16.0[${PYTHON_USEDEP},validation]
105 + >=dev-python/graphviz-0.10.1[${PYTHON_USEDEP}]
106 + >=dev-python/jinja-2.10.1[${PYTHON_USEDEP}]
107 + >=dev-python/markdown-2.6.11[${PYTHON_USEDEP}]
108 + <dev-python/markdown-3.0.1[${PYTHON_USEDEP}]
109 + >=dev-python/netaddr-0.7.19[${PYTHON_USEDEP}]
110 + >=dev-python/pillow-6.2.0[${PYTHON_USEDEP}]
111 + >=dev-python/psycopg-2.8.3[${PYTHON_USEDEP}]
112 + >=dev-python/py-gfm-0.1.4[${PYTHON_USEDEP}]
113 + >=dev-python/pycryptodome-3.8.2[${PYTHON_USEDEP}]
114 + www-servers/gunicorn[${PYTHON_USEDEP}]
115 + ldap? ( >=dev-python/django-auth-ldap-1.7[${PYTHON_USEDEP}] )
116 + webhooks? ( >=dev-python/django-rq-2.1.0[${PYTHON_USEDEP}] )"
117 +DEPEND="${RDEPEND}"
118 +
119 +PATCHES=(
120 + "${FILESDIR}"/${P}-no-pip.patch
121 + )
122 +
123 +DISABLE_AUTOFORMATTING=YES
124 +DOC_CONTENTS="
125 +netbox is installed on your system. However, there are some manual steps
126 +you need to complete from the installation guide [1].
127 +
128 +On Gentoo, the configuration files you need to edit are located in
129 +/etc/netbox, not /opt/netbox as shown in the installation guide.
130 +
131 +If this is a new installation, please follow the installation guide
132 +other than this difference. Also, if you need ldap or webhooks, set the
133 +appropriate use flags when you emerge netbox to install the
134 +dependencies.
135 +
136 +Once that is done, you should be able to add the netbox service to the
137 +default runlevel and start it.
138 +
139 +If you have webhooks turned on, you should also add the netbox-rqworker
140 +service to the default runlevel and start it.
141 +
142 +If this is an upgrade, follow these instructions:
143 +
144 +Stop the netbox service. If the netbox-rqworker service is running,
145 +stop it as well.
146 +
147 +Next, run the upgrade script as described in the upgrading guide[2].
148 +
149 +Next, check for new configuration options and set them as appropriate
150 +for your system.
151 +
152 +Next, start the netbox service.
153 +
154 +Finally, if you are using webhooks, start the netbox-rqworker service.
155 +
156 +[1] https://netbox.readthedocs.io/en/stable/installation/
157 +[2] https://netbox.readthedocs.io/en/stable/installation/upgrading/
158 +"
159 +
160 +pkg_setup() {
161 + enewgroup ${PN}
162 + enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
163 +}
164 +
165 +src_install() {
166 + dodir /opt
167 + cp -a ../${P} "${ED}"/opt
168 + dosym ${P} /opt/netbox
169 +dosym ../../etc/netbox/gunicorn_config.py /opt/netbox/gunicorn_config.py
170 + dosym ../../../../etc/netbox/configuration.py \
171 + /opt/netbox/netbox/netbox/configuration.py
172 + dodir /etc/netbox
173 + insinto /etc/netbox
174 + newins netbox/netbox/configuration.example.py configuration.py
175 + doins "${FILESDIR}"/gunicorn_config.py
176 + fowners -R netbox:netbox /etc/netbox /opt/${P}
177 + fowners -h netbox:netbox /opt/netbox
178 + fperms o= /etc/netbox/configuration.py /etc/netbox/gunicorn_config.py
179 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
180 + use webhooks &&
181 + newinitd "${FILESDIR}"/${PN}-rqworker.initd ${PN}-rqworker
182 + keepdir /var/log/netbox
183 + fowners -R netbox:netbox /var/log/netbox
184 + readme.gentoo_create_doc
185 +}
186 +
187 +pkg_postinst() {
188 + readme.gentoo_print_elog
189 + local r
190 + for r in $REPLACING_VERSIONS; do
191 + if [[ $r = "2.5.10" ]]; then
192 + ewarn "The home directory of the netbox user is now /var/lib/netbox"
193 + ewarn "Please adjust your system."
194 + fi
195 + done
196 +}