Package Details: bareos-database-tools 23.0.1-2

Git Clone URL: https://aur.archlinux.org/bareos.git (read-only, click to copy)
Package Base: bareos
Description: Bareos - Backup Archiving Recovery Open Sourced - CLI tools with database dpendencies (dbcheck, bscan)
Upstream URL: http://www.bareos.org
Keywords: Backup bacula bareos
Licenses: AGPL3
Groups: bareos
Submitter: AlD
Maintainer: khvalera
Last Packager: khvalera
Votes: 23
Popularity: 0.003617
First Submitted: 2014-07-23 09:45 (UTC)
Last Updated: 2024-02-20 22:01 (UTC)

Pinned Comments

Latest Comments

« First ‹ Previous 1 .. 12 13 14 15 16 17 18 Next › Last »

AlD commented on 2014-07-23 09:47 (UTC)

Thanks, fixed and updated.

MagnusW commented on 2014-07-22 21:47 (UTC)

Not sure if you still are interrested in this, but it seems that the names of the files in the "install"-portion of this PKGBUILD has changed. I changed: <code> install -D ${_instdir}/usr/lib/libbac-${pkgver}.so ${pkgdir}/usr/lib/libbac-${pkgver}.so install -D ${_instdir}/usr/lib/libbaccfg-${pkgver}.so ${pkgdir}/usr/lib/libbaccfg-${pkgver}.so install -D ${_instdir}/usr/lib/libbacfind-${pkgver}.so ${pkgdir}/usr/lib/libbacfind-${pkgver}.so install -D ${_instdir}/usr/lib/libbacpy-${pkgver}.so ${pkgdir}/usr/lib/libbacpy-${pkgver}.so install -D ${_instdir}/etc/bareos/scripts/btraceback.gdb ${pkgdir}/etc/bareos/scripts/btraceback.gdb install -D ${_instdir}/usr/bin/btraceback ${pkgdir}/usr/btraceback </code> to: <code> install -D ${_instdir}/usr/lib/libbareos-${pkgver}.so ${pkgdir}/usr/lib/libbareos-${pkgver}.so install -D ${_instdir}/usr/lib/libbareoscfg-${pkgver}.so ${pkgdir}/usr/lib/libbareoscfg-${pkgver}.so install -D ${_instdir}/usr/lib/libbareosfind-${pkgver}.so ${pkgdir}/usr/lib/libbareosfind-${pkgver}.so install -D ${_instdir}/usr/lib/python-fd.so ${pkgdir}/usr/lib/python-fd.so install -D ${_instdir}/etc/bareos/scripts/btraceback.gdb ${pkgdir}/etc/bareos/scripts/btraceback.gdb install -D ${_instdir}/usr/bin/btraceback ${pkgdir}/usr/btraceback </code>

mgisbers commented on 2014-04-15 09:40 (UTC)

Package doesn't build. While install() copying of libraries fails.

webdawg commented on 2014-04-07 17:48 (UTC)

I will have to look at it if I get a chance. I was getting srcdir errors but the software worked fine. I tried looking into the srcdir stuff...do you think it worked on my system because I still had the orig srcdir left over from build?

Lastebil commented on 2014-03-31 12:12 (UTC)

At this time, various references to $srcdir cause the package to fail at execution time. It appears the 'bat' script is copied with references to the actual files in $srcdir - i.e. hardcoded paths. I fixed the issue here by doing make destdir= things, but then there are some file permission problems and such when running as a standard user (I'm not running this on the server - server has no X, it's a server, not a desktop.) As you're doing some things to move only the proper files, maybe patching the bat script to remove the hardcoded ${srcdir} files via sed is a better solution for your PKGBUILD. Not really sure whether to mark this out of date, as it's not really out of date.

webdawg commented on 2014-03-14 18:25 (UTC)

Package updated...let me know if you want another version. The PKGBUILD should work for a few versions....just need to edit it.

webdawg commented on 2014-02-28 01:09 (UTC)

Just adopted package. I will try and get a working pkg build up soon.

webdawg commented on 2014-02-18 19:58 (UTC)

Also the rest of the lines with 'bareos' in them to Branch-13.2 as this is the dir that it is now cloned into.

webdawg commented on 2014-02-18 19:56 (UTC)

https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines#Tips Looks like the format of git has changed. The branch comes before the git. Arch says they do not want capital letters in $pkgname but the git repo has a cap letter...anyone know if it matters during a clone? Here is the begining of my new source line: source=(Branch-13.2::'git+https://github.com/bareos/bareos' I used 13.2 because it matches the rest. I also had to update the pushd line later in the PKGBUILD.