mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
net-wireless/unifi: bump to 6.2.17
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
This commit is contained in:
@@ -3,3 +3,4 @@ DIST unifi-6.1.71.zip 152149341 BLAKE2B 85b7753aa516e8f44baf8df9c21343c2af33f890
|
||||
DIST unifi-6.2.12.zip 152747787 BLAKE2B 448d289be2d72c8403d75f34e89534aadb9e12e1a48f087fa78af1b556230aa1a6b8697ca90027100d4f0e7530333ba4152121b2567c4c78cc8310e2f6660530 SHA512 f06e71db954bb794cec44bc207c0544e455066fc8a86765ee0c6764af8fd37975cc8bcc1dd3c248ca557c4e625af32618f1717304062942f36794654984eb00c
|
||||
DIST unifi-6.2.13.zip 152753586 BLAKE2B 032fc76ff507d5f7057079fd9efaf4af6d7c54c8f3877ce0126fa6fb6bf351701407bd760aaed060c371462d58447c44f5bc31b11181906d95e1da5e044a38ab SHA512 fc0ad76ac1fa848103e1e31c53bc10f8f9df5ef1c92312cab558864d0664e62d2dcdeb8126be566f5a9ccaacbac1435b0a0133bd86892fa13e0131c140ad8062
|
||||
DIST unifi-6.2.16.zip 152737821 BLAKE2B 70b411b849c349310344c33eae43a42545c5ba7c755ae1e8f622df8e947db9c4a98a0ffd8436818c25020b087b19efe8a940273d11901b94291ed5baf9c65cde SHA512 2a1a81d185f2fc0356909436ffdeaa7381848c6664a84735aaf079d20516f2c898ae844d4144d28710f7629be553aa59371c3c15ae05d6d3776ab112e9a527eb
|
||||
DIST unifi-6.2.17.zip 152744197 BLAKE2B 25f569ba80a03572b0d66cb92788b1161c7556ab507e9373e8c1ecd30813968bd2163d82bfb18e8ff3978307e079e9221f6afc23db8e13ee5ba883a17dd89fdd SHA512 13fa2e3120ac70ef9c4414052713bb91a27ac8a4e8f5f168dd8517a1b2e42fb3334db7f6f4c7bbe10579662555d3a43198fa2dc1e47fb07ca51a869cab2ed12e
|
||||
|
||||
68
net-wireless/unifi/unifi-6.2.17.ebuild
Normal file
68
net-wireless/unifi/unifi-6.2.17.ebuild
Normal file
@@ -0,0 +1,68 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
# Set this var for any releases except stable
|
||||
RC_SUFFIX="-ceb3ba714d"
|
||||
|
||||
inherit systemd
|
||||
|
||||
DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
|
||||
HOMEPAGE="https://www.ubnt.com"
|
||||
SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 LGPL-3 MIT ubiquiti"
|
||||
SLOT="0/6.2"
|
||||
IUSE="systemd"
|
||||
|
||||
RDEPEND="
|
||||
acct-group/unifi
|
||||
acct-user/unifi
|
||||
dev-db/mongodb
|
||||
virtual/jre:1.8
|
||||
"
|
||||
|
||||
DEPEND="app-arch/unzip"
|
||||
|
||||
RESTRICT="bindist mirror"
|
||||
|
||||
S="${WORKDIR}/UniFi"
|
||||
|
||||
DOCS=( "readme.txt" )
|
||||
|
||||
QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
|
||||
|
||||
src_prepare() {
|
||||
# Remove unneeded files Linux, Mac and Windows
|
||||
rm -r lib/native/Linux/{aarch64,armv7} lib/native/{Mac,Windows} || die
|
||||
if ! use systemd; then
|
||||
rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || die
|
||||
fi
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto /usr/lib/unifi
|
||||
doins -r bin dl lib webapps
|
||||
|
||||
diropts -o unifi -g unifi
|
||||
keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
|
||||
|
||||
for symlink in conf data run tmp work; do
|
||||
dosym ../../../var/lib/unifi/${symlink} /usr/lib/unifi/${symlink}
|
||||
done
|
||||
dosym ../../../var/log/unifi /usr/lib/unifi/logs
|
||||
|
||||
newinitd "${FILESDIR}"/unifi.initd-r1 unifi
|
||||
systemd_dounit "${FILESDIR}"/unifi.service
|
||||
|
||||
newconfd "${FILESDIR}"/unifi.confd unifi
|
||||
|
||||
echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
|
||||
doenvd "${T}"/99unifi
|
||||
|
||||
einstalldocs
|
||||
}
|
||||
Reference in New Issue
Block a user