Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/bacula/
Date: Wed, 26 May 2021 16:59:23
Message-Id: 1622048343.c8263c39c80190a18ac8add7d36def7648e960a1.tomjbe@gentoo
1 commit: c8263c39c80190a18ac8add7d36def7648e960a1
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 16:59:03 2021 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 16:59:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8263c39
7
8 app-backup/bacula: Minor maintenance release
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
12
13 app-backup/bacula/Manifest | 1 +
14 app-backup/bacula/bacula-11.0.3.ebuild | 413 +++++++++++++++++++++++++++++++++
15 2 files changed, 414 insertions(+)
16
17 diff --git a/app-backup/bacula/Manifest b/app-backup/bacula/Manifest
18 index 23ed3ce5e00..4f553a41279 100644
19 --- a/app-backup/bacula/Manifest
20 +++ b/app-backup/bacula/Manifest
21 @@ -1,4 +1,5 @@
22 DIST bacula-11.0.2.tar.gz 5982176 BLAKE2B 2da10e48b44ada189fb5d9ed48bac41232106721859df823309e7be63d16786ebaf95052d929ef67895fb993d019153d736125ec4fe5949591dd7dced0ee9835 SHA512 7e90352036a544b6a508547ae38660ca5d59b0bfd17126f346652e5c9977367ad9fe972e3f2823c10e7f8ffdcd1623ef24e8a82de030041762f0c0e09783e65c
23 +DIST bacula-11.0.3.tar.gz 5982505 BLAKE2B a09a4829cb4eeb6cfe3b082efcc45f7704ad7da0f882b746a2f4aeeb3233775ccc89d7924442970e9609c449fee96466b33286e7c6f700cbab7f2013f0267f53 SHA512 753ef3f53079fe36e69791a3ff0c4230d611d86257c5ecbc28c2ec593e950b76dc9fedf3525c196b0742cc029d0a8023d31505c83d8d42ff3f48c3273b77c540
24 DIST bacula-9.6.5.tar.gz 4252526 BLAKE2B 48bfc9f45db10949fb4d7396c2ca15ed17dad3bd6ab9c6ab5cd0b3a80d1df0d37868a8671c2ead9b00fe89da91d43e945ca2818016f09502aff1a2fd3a5d455d SHA512 4018e242b2131c2416cd16ae3530c9c848dc8e88dd6532136c699a50fcbf39a574ffec8ef13bc5d7a9673d057b51cf1d1be80667e89abe0e18ec79d04b0edd70
25 DIST bacula-9.6.6.tar.gz 4253303 BLAKE2B 131353e24265f64dd3c4e0632bee93d2a170d3ed88626ab80f1804e7a218eb86c5ac7507f4a4fe5ef7d4472a1c90ef0f45e1a6ad0a4a65a1fa8f1a8f63287e3f SHA512 1b669bbf1e54f40e0426603601a4751c42101985de901f951a68add7644971d48615b3089c65fafd444c762c3d82b67cafdcae9636e8a19af8fd94ae631c315a
26 DIST bacula-9.6.7.tar.gz 4168102 BLAKE2B 8f5d5cbe8c3ce62105624138e9dfbb9f19eb0721bb2e377c07ef2cd3d4a8442641b4758b00b3050d2352dde31205658963782d2bec3e87242dac7b4b6a4d659c SHA512 27551faa2e4b13c6c2b9a2500f1253dfa5ee84929013491a7bf512d965d655c5af78b08201090474bc9b29827ca0a5c1c5a23a55712a1f739f37de75449cfd4d
27
28 diff --git a/app-backup/bacula/bacula-11.0.3.ebuild b/app-backup/bacula/bacula-11.0.3.ebuild
29 new file mode 100644
30 index 00000000000..b2738be8a8a
31 --- /dev/null
32 +++ b/app-backup/bacula/bacula-11.0.3.ebuild
33 @@ -0,0 +1,413 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit desktop libtool qmake-utils systemd
40 +
41 +MY_PV=${PV/_beta/-b}
42 +MY_P=${PN}-${MY_PV}
43 +
44 +DESCRIPTION="Featureful client/server network backup suite"
45 +HOMEPAGE="https://www.bacula.org/"
46 +SRC_URI="mirror://sourceforge/bacula/${MY_P}.tar.gz"
47 +
48 +LICENSE="AGPL-3"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
51 +IUSE="acl bacula-clientonly bacula-nodir bacula-nosd +batch-insert examples ipv6 logwatch mysql postgres qt5 readline +sqlite ssl static tcpd vim-syntax X"
52 +
53 +DEPEND="
54 + !bacula-clientonly? (
55 + !bacula-nodir? ( virtual/mta )
56 + postgres? ( dev-db/postgresql:=[threads] )
57 + mysql? ( || ( dev-db/mysql-connector-c dev-db/mariadb-connector-c ) )
58 + sqlite? ( dev-db/sqlite:3 )
59 + )
60 + dev-libs/gmp:0
61 + qt5? (
62 + dev-qt/qtcore:5
63 + dev-qt/qtgui:5
64 + dev-qt/qtwidgets:5
65 + dev-qt/qtsvg:5
66 + x11-libs/qwt:6
67 + )
68 + logwatch? ( sys-apps/logwatch )
69 + readline? ( sys-libs/readline:0 )
70 + static? (
71 + dev-libs/lzo[static-libs]
72 + sys-libs/ncurses:=[static-libs]
73 + sys-libs/zlib[static-libs]
74 + acl? ( virtual/acl[static-libs(+)] )
75 + ssl? (
76 + dev-libs/openssl:0=[static-libs]
77 + )
78 + )
79 + !static? (
80 + dev-libs/lzo
81 + sys-libs/ncurses:=
82 + sys-libs/zlib
83 + acl? ( virtual/acl )
84 + ssl? (
85 + dev-libs/openssl:0=
86 + )
87 + )
88 + tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
89 +"
90 +RDEPEND="${DEPEND}
91 + acct-user/bacula
92 + acct-group/bacula
93 + !bacula-clientonly? (
94 + !bacula-nosd? (
95 + app-arch/mt-st
96 + sys-block/mtx
97 + )
98 + )
99 + vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
100 +"
101 +
102 +REQUIRED_USE="
103 + !bacula-clientonly? ( ^^ ( mysql postgres sqlite ) )
104 + static? ( bacula-clientonly )
105 +"
106 +
107 +S=${WORKDIR}/${MY_P}
108 +
109 +pkg_setup() {
110 + #XOR and !bacula-clientonly controlled by REQUIRED_USE
111 + use mysql && export mydbtype="mysql"
112 + use postgres && export mydbtype="postgresql"
113 + use sqlite && export mydbtype="sqlite3"
114 +
115 + if use bacula-clientonly && use static && use qt5; then
116 + ewarn
117 + ewarn "Building statically linked 'bat' is not supported. Ignorig 'qt5' useflag."
118 + ewarn
119 + fi
120 +}
121 +
122 +src_prepare() {
123 + # adjusts default configuration files for several binaries
124 + # to /etc/bacula/<config> instead of ./<config>
125 + pushd src >&/dev/null || die
126 + for f in console/console.c dird/dird.c filed/filed.c \
127 + stored/bcopy.c stored/bextract.c stored/bls.c \
128 + stored/bscan.c stored/btape.c stored/stored.c \
129 + qt-console/main.cpp; do
130 + sed -i -e 's|^\(#define CONFIG_FILE "\)|\1/etc/bacula/|g' "${f}" \
131 + || die "sed on ${f} failed"
132 + done
133 + popd >&/dev/null || die
134 +
135 + # bug 466688 drop deprecated categories from Desktop file
136 + sed -i -e 's/Application;//' scripts/bat.desktop.in || die
137 +
138 + # bug 466690 Use CXXFLAGS instead of CFLAGS
139 + sed -i -e 's/@CFLAGS@/@CXXFLAGS@/' autoconf/Make.common.in || die
140 +
141 + # drop automatic install of unneeded documentation (for bug 356499)
142 + eapply -p0 "${FILESDIR}"/7.2.0/${PN}-7.2.0-doc.patch
143 +
144 + # bug #310087
145 + eapply "${FILESDIR}"/5.2.3/${PN}-5.2.3-as-needed.patch
146 +
147 + # bug #311161
148 + eapply -p0 "${FILESDIR}"/9.0.2/${PN}-9.0.2-lib-search-path.patch
149 +
150 + # bat needs to respect LDFLAGS and CFLAGS
151 + eapply -p0 "${FILESDIR}"/9.0.6/${PN}-9.0.6-bat-pro.patch
152 +
153 + # bug #328701
154 + eapply -p0 "${FILESDIR}"/5.2.3/${PN}-5.2.3-openssl-1.patch
155 +
156 + eapply -p0 "${FILESDIR}"/${PN}-11.0.2-fix-static.patch
157 +
158 + # fix soname in libbaccat.so bug #602952
159 + eapply -p0 "${FILESDIR}/bacula-fix-sonames.patch"
160 +
161 + # do not strip binaries
162 + sed -i -e "s/strip /# strip /" src/filed/Makefile.in || die
163 + sed -i -e "s/strip /# strip /" src/console/Makefile.in || die
164 +
165 + eapply_user
166 +
167 + # Fix systemd unit files:
168 + # bug 497748
169 + sed -i -e '/Requires/d' platforms/systemd/*.service.in || die
170 + sed -i -e '/StandardOutput/d' platforms/systemd/*.service.in || die
171 + # bug 504370
172 + sed -i -e '/Alias=bacula-dir/d' platforms/systemd/bacula-dir.service.in || die
173 + # bug 584442 and 504368
174 + sed -i -e 's/@dir_user@/root/g' platforms/systemd/bacula-dir.service.in || die
175 +
176 + # build 'bat' for Qt5
177 + export QMAKE="$(qt5_get_bindir)"/qmake
178 +
179 + # adapt to >=Qt-5.9 (see bug #644566)
180 + # qmake needs an existing target file to generate install instructions
181 + sed -i -e 's#bins.files = bat#bins.files = .libs/bat#g' \
182 + src/qt-console/bat.pro.in || die
183 + mkdir src/qt-console/.libs || die
184 + touch src/qt-console/.libs/bat || die
185 + chmod 755 src/qt-console/.libs/bat || die
186 +
187 + # Don't let program install man pages directly
188 + sed -i -e 's/ manpages//' Makefile.in || die
189 +
190 + # correct installation for plugins to mode 0755 (bug #725946)
191 + sed -i -e "s/(INSTALL_PROGRAM) /(INSTALL_LIB) /" src/plugins/fd/Makefile.in ||die
192 +
193 + # fix bundled libtool (bug 466696)
194 + # But first move directory with M4 macros out of the way.
195 + # It is only needed by autoconf and gives errors during elibtoolize.
196 + mv autoconf/libtool autoconf/libtool1 || die
197 + elibtoolize
198 +}
199 +
200 +src_configure() {
201 + local myconf=''
202 +
203 + if use bacula-clientonly; then
204 + myconf="${myconf} \
205 + $(use_enable bacula-clientonly client-only) \
206 + $(use_enable !static libtool) \
207 + $(use_enable static static-cons) \
208 + $(use_enable static static-fd)"
209 + else
210 + myconf="${myconf} \
211 + $(use_enable !bacula-nodir build-dird) \
212 + $(use_enable !bacula-nosd build-stored)"
213 + # bug #311099
214 + # database support needed by dir-only *and* sd-only
215 + # build as well (for building bscan, btape, etc.)
216 + myconf="${myconf}
217 + --with-${mydbtype}"
218 + fi
219 +
220 + # do not build bat if 'static' clientonly
221 + if ! use bacula-clientonly || ! use static; then
222 + myconf="${myconf} \
223 + $(use_enable qt5 bat)"
224 + fi
225 +
226 + myconf="${myconf} \
227 + $(use_with X x) \
228 + $(use_enable batch-insert) \
229 + $(use_enable !readline conio) \
230 + $(use_enable readline) \
231 + $(use_with ssl openssl) \
232 + $(use_enable ipv6) \
233 + $(use_enable acl) \
234 + $(use_with tcpd tcp-wrappers)"
235 +
236 + econf \
237 + --with-pid-dir=/var/run \
238 + --sysconfdir=/etc/bacula \
239 + --with-archivedir=/var/lib/bacula/tmp \
240 + --with-subsys-dir=/var/lock/subsys \
241 + --with-working-dir=/var/lib/bacula \
242 + --with-logdir=/var/lib/bacula \
243 + --with-scriptdir=/usr/libexec/bacula \
244 + --with-systemd=$(systemd_get_systemunitdir) \
245 + --with-dir-user=bacula \
246 + --with-dir-group=bacula \
247 + --with-sd-user=root \
248 + --with-sd-group=bacula \
249 + --with-fd-user=root \
250 + --with-fd-group=bacula \
251 + --enable-smartalloc \
252 + --disable-afs \
253 + --without-s3 \
254 + --host=${CHOST} \
255 + ${myconf}
256 +}
257 +
258 +src_compile() {
259 + # Make build log verbose (bug #447806)
260 + emake NO_ECHO=""
261 +}
262 +
263 +src_install() {
264 + emake DESTDIR="${D}" install
265 + doicon scripts/bacula.png
266 +
267 + # install bat icon and desktop file when enabled
268 + # (for some reason ./configure doesn't pick this up)
269 + if use qt5 && ! use static ; then
270 + doicon src/qt-console/images/bat_icon.png
271 + domenu scripts/bat.desktop
272 + fi
273 +
274 + # remove some scripts we don't need at all
275 + rm -f "${D}"/usr/libexec/bacula/{bacula,bacula-ctl-dir,bacula-ctl-fd,bacula-ctl-sd,startmysql,stopmysql}
276 +
277 + # rename statically linked apps
278 + if use bacula-clientonly && use static ; then
279 + pushd "${D}"/usr/sbin || die
280 + mv static-bacula-fd bacula-fd || die
281 + mv static-bconsole bconsole || die
282 + popd || die
283 + fi
284 +
285 + # extra files which 'make install' doesn't cover
286 + if ! use bacula-clientonly; then
287 + # the database update scripts
288 + diropts -m0750
289 + insinto /usr/libexec/bacula/updatedb
290 + insopts -m0754
291 + doins "${S}"/updatedb/*
292 + fperms 0640 /usr/libexec/bacula/updatedb/README
293 +
294 + # the logrotate configuration
295 + # (now unconditional wrt bug #258187)
296 + diropts -m0755
297 + insinto /etc/logrotate.d
298 + insopts -m0644
299 + newins "${S}"/scripts/logrotate bacula
300 +
301 + # the logwatch scripts
302 + if use logwatch; then
303 + diropts -m0750
304 + dodir /usr/share/logwatch/scripts/services
305 + dodir /usr/share/logwatch/scripts/shared
306 + dodir /etc/logwatch/conf/logfiles
307 + dodir /etc/logwatch/conf/services
308 + pushd "${S}"/scripts/logwatch >&/dev/null || die
309 + emake DESTDIR="${D}" install
310 + popd >&/dev/null || die
311 + fi
312 + fi
313 +
314 + # Install all man pages
315 + doman "${S}"/manpages/*.[18]
316 +
317 + if ! use qt5; then
318 + rm -vf "${D}"/usr/share/man/man1/bat.1*
319 + fi
320 + rm -vf "${D}"/usr/share/man/man1/bacula-tray-monitor.1*
321 +
322 + if use bacula-clientonly || use bacula-nodir ; then
323 + rm -vf "${D}"/usr/libexec/bacula/create_*_database
324 + rm -vf "${D}"/usr/libexec/bacula/drop_*_database
325 + rm -vf "${D}"/usr/libexec/bacula/make_*_tables
326 + rm -vf "${D}"/usr/libexec/bacula/update_*_tables
327 + rm -vf "${D}"/usr/libexec/bacula/drop_*_tables
328 + rm -vf "${D}"/usr/libexec/bacula/grant_*_privileges
329 + rm -vf "${D}"/usr/libexec/bacula/*_catalog_backup
330 + fi
331 + if use bacula-clientonly || use bacula-nosd; then
332 + rm -vf "${D}"/usr/libexec/bacula/disk-changer
333 + rm -vf "${D}"/usr/libexec/bacula/mtx-changer
334 + rm -vf "${D}"/usr/libexec/bacula/dvd-handler
335 + fi
336 +
337 + # documentation
338 + dodoc ChangeLog ReleaseNotes SUPPORT
339 +
340 + # install examples (bug #457504)
341 + if use examples; then
342 + docinto examples/
343 + dodoc -r examples/*
344 + fi
345 +
346 + # vim-files
347 + if use vim-syntax; then
348 + insinto /usr/share/vim/vimfiles/syntax
349 + doins scripts/bacula.vim
350 + insinto /usr/share/vim/vimfiles/ftdetect
351 + newins scripts/filetype.vim bacula_ft.vim
352 + fi
353 +
354 + # setup init scripts
355 + myscripts="bacula-fd"
356 + if ! use bacula-clientonly; then
357 + if ! use bacula-nodir; then
358 + myscripts="${myscripts} bacula-dir"
359 + fi
360 + if ! use bacula-nosd; then
361 + myscripts="${myscripts} bacula-sd"
362 + fi
363 + fi
364 + for script in ${myscripts}; do
365 + # copy over init script and config to a temporary location
366 + # so we can modify them as needed
367 + cp "${FILESDIR}/${script}".confd "${T}/${script}".confd || die "failed to copy ${script}.confd"
368 + cp "${FILESDIR}/newscripts/${script}".initd "${T}/${script}".initd || die "failed to copy ${script}.initd"
369 +
370 + # now set the database dependancy for the director init script
371 + case "${script}" in
372 + bacula-dir)
373 + case "${mydbtype}" in
374 + sqlite3)
375 + # sqlite databases don't have a daemon
376 + sed -i -e 's/need "%database%"/:/g' "${T}/${script}".initd || die
377 + ;;
378 + *)
379 + # all other databases have daemons
380 + sed -i -e "s:%database%:${mydbtype}:" "${T}/${script}".initd || die
381 + ;;
382 + esac
383 + ;;
384 + *)
385 + ;;
386 + esac
387 +
388 + # install init script and config
389 + newinitd "${T}/${script}".initd "${script}"
390 + newconfd "${T}/${script}".confd "${script}"
391 + done
392 +
393 + systemd_dounit "${S}"/platforms/systemd/bacula-{dir,fd,sd}.service
394 +
395 + # make sure the working directory exists
396 + diropts -m0750
397 + keepdir /var/lib/bacula
398 +
399 + # make sure bacula group can execute bacula libexec scripts
400 + fowners -R root:bacula /usr/libexec/bacula
401 +}
402 +
403 +pkg_postinst() {
404 + if use bacula-clientonly; then
405 + fowners root:bacula /var/lib/bacula
406 + else
407 + fowners bacula:bacula /var/lib/bacula
408 + fi
409 +
410 + einfo
411 + einfo "A group 'bacula' has been created. Any users you add to this"
412 + einfo "group have access to files created by the daemons."
413 + einfo
414 + einfo "A user 'bacula' has been created. Please see the bacula manual"
415 + einfo "for information about running bacula as a non-root user."
416 + einfo
417 +
418 + if ! use bacula-clientonly && ! use bacula-nodir; then
419 + einfo
420 + einfo "If this is a new install, you must create the ${mydbtype} databases with:"
421 + einfo " /usr/libexec/bacula/create_${mydbtype}_database"
422 + einfo " /usr/libexec/bacula/make_${mydbtype}_tables"
423 + einfo " /usr/libexec/bacula/grant_${mydbtype}_privileges"
424 + einfo
425 +
426 + ewarn "ATTENTION!"
427 + ewarn "The format of the database may have changed."
428 + ewarn "If you just upgraded from a version below 9.0.0 you must run"
429 + ewarn "'update_bacula_tables' now."
430 + ewarn "Make sure to have a backup of your catalog before."
431 + ewarn
432 + fi
433 +
434 + if use sqlite; then
435 + einfo
436 + einfo "Be aware that Bacula does not officially support SQLite database anymore."
437 + einfo "Best use it only for a client-only installation. See Bug #445540."
438 + einfo
439 + fi
440 +
441 + einfo "Please note that 'bconsole' will always be installed. To compile 'bat'"
442 + einfo "you have to enable 'USE=qt5'."
443 + einfo
444 + einfo "/var/lib/bacula/tmp was configured for archivedir. This dir will be used during"
445 + einfo "restores, so be sure to set it to an appropriate in dir in the bacula config."
446 +}