Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/unifi/
Date: Wed, 07 Sep 2022 20:34:38
Message-Id: 1662582834.15ad99c4181887020510434e908e7eee87173b91.conikost@gentoo
1 commit: 15ad99c4181887020510434e908e7eee87173b91
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 7 20:33:27 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 7 20:33:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15ad99c4
7
8 net-wireless/unifi: drop 7.2.93
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 net-wireless/unifi/Manifest | 1 -
13 net-wireless/unifi/unifi-7.2.93.ebuild | 107 ---------------------------------
14 2 files changed, 108 deletions(-)
15
16 diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
17 index c586549cf519..3b45b9009989 100644
18 --- a/net-wireless/unifi/Manifest
19 +++ b/net-wireless/unifi/Manifest
20 @@ -1,4 +1,3 @@
21 DIST unifi-6.5.55.zip 157805689 BLAKE2B 09a7b69143478d0b81dd6f7be1746b1a35cd00ee034471c512d04e4f91aa02688871857edf3c0ef538e601aaf8eccdd0c55193a9bde10924ddeff1fd333da355 SHA512 c2f677de819268366d65622238c1b8d6d8abcd5e06d6f1f635d9755573eff5a6aca0c84298a111b0da5e80bade8132e05339035edde3cc5fc08834f2d6c4b26e
22 DIST unifi-7.1.68.zip 202099045 BLAKE2B f84a579c01ec0494e0e8b67a126947cd7bb0625c60d5f5026232e563ee84a4c0fdef827e5f8044de4e5d7fd970a50846dc91d7467196fc2f53bb27655bbb5212 SHA512 b4e71dd28bb645d7fb085546fc29019aa6f33780e559ed284216b7f330eaf5f41f5177e839a5a277d4d41a2242ffe16a44b582c51e74e469bacf96502d187a55
23 -DIST unifi-7.2.93.zip 171732000 BLAKE2B 15353b9b2be9dd2dde2049a17a5fb03005eb8865fe5c71ecee93233be089ac067cea1235e716bc75be11a9aca1a89dca93dc210cb7dc70db59727339a0a6aa1d SHA512 c6a1633e24a377318c8290cebba051b9c1bb02b7a44224c0ac4ff5acff1a55394836bdb522703339c5a278460b1549cfcb003b9ca9a3d317fd9ed59192ea9d08
24 DIST unifi-7.2.94.zip 171734421 BLAKE2B ab692e5c4c07365c40d3e10e52f9fcb06a5919e9da0d13db7d67def6d4a92c6372b8b6a8924a40305b0f894836ed0db1a7f71f65253e8ed538e29eaa00d11e90 SHA512 913c5b3a8d88faae18ae197b95e15d22611281ee296bc33f240d90e77b90db1a8f3d59b4dfb537a498d600d69dd53d09e6c604ef11e490873041c5010fda07d2
25
26 diff --git a/net-wireless/unifi/unifi-7.2.93.ebuild b/net-wireless/unifi/unifi-7.2.93.ebuild
27 deleted file mode 100644
28 index af3d32fde77e..000000000000
29 --- a/net-wireless/unifi/unifi-7.2.93.ebuild
30 +++ /dev/null
31 @@ -1,107 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -# Set this var for any releases except stable
38 -RC_SUFFIX="-0d2bdb3a0e"
39 -
40 -inherit java-pkg-2 readme.gentoo-r1 systemd
41 -
42 -DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
43 -HOMEPAGE="https://www.ubnt.com"
44 -SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
45 -S="${WORKDIR}/UniFi"
46 -
47 -KEYWORDS="-* ~amd64 ~arm64"
48 -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"
49 -SLOT="0/$(ver_cut 1-2)"
50 -IUSE="systemd system-mongodb"
51 -RESTRICT="bindist mirror"
52 -
53 -RDEPEND="
54 - acct-group/unifi
55 - acct-user/unifi
56 - dev-db/mongodb
57 - virtual/jre:1.8
58 -"
59 -
60 -BDEPEND="app-arch/unzip"
61 -
62 -DOCS=( "readme.txt" )
63 -
64 -QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
65 -
66 -src_prepare() {
67 - # Remove unneeded files Mac and Windows
68 - rm -r lib/native/{Mac,Windows} || die
69 -
70 - if [[ ${CHOST} != aarch64* ]]; then
71 - rm -r lib/native/Linux/aarch64 || die "Failed in removing aarch64 native libraries"
72 - fi
73 - if [[ ${CHOST} != armv7* ]]; then
74 - rm -r lib/native/Linux/armv7 || die "Failed in removing armv7 native libraries"
75 - fi
76 - if [[ ${CHOST} != x86_64* ]]; then
77 - rm -r lib/native/Linux/x86_64 || die "Failed in removing x86_64 native libraries"
78 - fi
79 -
80 - if [[ ${CHOST} == aarch64* ]]; then
81 - if ! use systemd; then
82 - rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || die
83 - fi
84 - fi
85 - if [[ ${CHOST} == armv7* ]]; then
86 - if ! use systemd; then
87 - rm lib/native/Linux/armv7/libubnt_sdnotify_jni.so || die
88 - fi
89 - fi
90 - if [[ ${CHOST} == x86_64* ]]; then
91 - if ! use systemd; then
92 - rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || die
93 - fi
94 - fi
95 -
96 - default
97 -}
98 -
99 -src_compile() {
100 - :;
101 -}
102 -
103 -src_install() {
104 - insinto /usr/lib/unifi
105 - doins -r dl lib webapps
106 - ! use system-mongodb && doins -r bin
107 -
108 - diropts -o unifi -g unifi
109 - keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
110 -
111 - for symlink in conf data run tmp work; do
112 - dosym ../../../var/lib/unifi/${symlink} /usr/lib/unifi/${symlink}
113 - done
114 - dosym ../../../var/log/unifi /usr/lib/unifi/logs
115 -
116 - java-pkg_regjar "${D}"/usr/lib/unifi/lib/*.jar
117 - java-pkg_dolauncher unifi --java_args '-Dorg.xerial.snappy.tempdir=/usr/lib/unifi/tmp -Djava.library.path=' --jar ace.jar --pwd '/usr/lib/unifi'
118 -
119 - if use system-mongodb; then
120 - systemd_newunit "${FILESDIR}"/unifi-mongodb.service unifi.service
121 - newinitd "${FILESDIR}"/unifi-mongodb.initd unifi
122 - else
123 - systemd_newunit "${FILESDIR}"/unifi.service-r2 unifi.service
124 - newinitd "${FILESDIR}"/unifi.initd-r2 unifi
125 - fi
126 -
127 - newconfd "${FILESDIR}"/unifi.confd unifi
128 -
129 - echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
130 - doenvd "${T}"/99unifi
131 -
132 - einstalldocs
133 - readme.gentoo_create_doc
134 -}
135 -
136 -pkg_postinst() {
137 - readme.gentoo_print_elog
138 -}