Package Details: auracle-git r427.33f9097-1

Git Clone URL: https://aur.archlinux.org/auracle-git.git (read-only, click to copy)
Package Base: auracle-git
Description: A flexible client for the AUR
Upstream URL: https://github.com/falconindy/auracle
Keywords: aur
Licenses: MIT
Conflicts: auracle
Provides: auracle
Submitter: Foxboron
Maintainer: artafinde (falconindy)
Last Packager: falconindy
Votes: 124
Popularity: 1.03
First Submitted: 2017-07-02 16:40 (UTC)
Last Updated: 2025-04-16 17:39 (UTC)

Dependencies (13)

Required by (10)

Sources (1)

Pinned Comments

artafinde commented on 2022-01-26 09:15 (UTC) (edited on 2022-01-29 10:24 (UTC) by artafinde)

If the build fails:

  • Clear your aur helper cache and SRCPKGDEST directory
  • Rebuild in clean chroot 1
  • If it still fails, use a paste bin 2 to show full build logs

There's a package build already which you can try out from my repo.

falconindy commented on 2020-05-31 15:35 (UTC) (edited on 2025-04-28 14:23 (UTC) by falconindy)

FAQ:

  • If you think pod2man is missing, it's a configuration problem on your end. pod2man is part of the perl package, but in a perl-specific PATH handled by /etc/profile.d/perlbin.sh
  • I'm only able to test auracle on i686 and x86_64, so that's what I'm willing to commit to in the PKGBUILD. If you want to build this on some other architecture, use makepkg -A. The "any" architecture is reserved for packages with architecture independent files (and compiled C++ is not).

Latest Comments

« First ‹ Previous 1 .. 21 22 23 24 25 26 27 28 Next › Last »

dreieck commented on 2019-04-02 10:29 (UTC)

I get a similar, but in the details different, build error:

ninja: Entering directory `build'
[4/21] Compiling C++ object 'auracle@sta/src_auracle_auracle.cc.o'.
FAILED: auracle@sta/src_auracle_auracle.cc.o 
ccache c++ -Iauracle@sta -I. -I.. -I../src -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -std=c++17 -include config.h -ffunction-sections -fdata-sections -O3 -g0 -march=native -ftree-vectorize -fstack-protector --param=ssp-buffer-size=4 -fomit-frame-pointer -Wl,-z,relro,-z,now -D_FORTIFY_SOURCE=2 -fPIC -pie -fPIE -fstack-protector -fpermissive -fPIC  -MD -MQ 'auracle@sta/src_auracle_auracle.cc.o' -MF 'auracle@sta/src_auracle_auracle.cc.o.d' -o 'auracle@sta/src_auracle_auracle.cc.o' -c ../src/auracle/auracle.cc
In file included from ../src/auracle/auracle.hh:7,
                 from ../src/auracle/auracle.cc:1:
../src/aur/aur.hh:13:10: fatal error: systemd/sd-event.h: No such file or directory
 #include <systemd/sd-event.h>
          ^~~~~~~~~~~~~~~~~~~~
compilation terminated.
[5/21] Compiling C++ object 'aur@sta/src_aur_response.cc.o'.
ninja: build stopped: subcommand failed.
==> ERROR: A failure occurred in build().
    Aborting...

falconindy commented on 2019-03-31 01:29 (UTC)

@Heziode: I don't know why your compiler is broken. The filesystem header is included with libstdc++ in Arch (in c++17 mode), and is found by both g++ and clang++.

Heziode commented on 2019-03-27 15:40 (UTC)

Hi I get this error when I try to install it:

[1/21] Compiling C++ object 'libaur@sta/src_aur_aur.cc.o'.
FAILED: libaur@sta/src_aur_aur.cc.o 
c++ -Ilibaur@sta -I. -I.. -I../src -I../third_party/nlohmann_json -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -std=c++17 -include config.h -ffunction-sections -fdata-sections -march=x86-64 -mtune=generic -O2 -fno-plt -D_FORTIFY_SOURCE=2 -fPIC  -MD -MQ 'libaur@sta/src_aur_aur.cc.o' -MF 'libaur@sta/src_aur_aur.cc.o.d' -o 'libaur@sta/src_aur_aur.cc.o' -c ../src/aur/aur.cc
../src/aur/aur.cc:8:10: fatal error: filesystem: No such file or directory
 #include <filesystem>
          ^~~~~~~~~~~~
compilation terminated.
[2/21] Compiling C++ object 'libauracle@sta/src_auracle_auracle.cc.o'.
FAILED: libauracle@sta/src_auracle_auracle.cc.o 
c++ -Ilibauracle@sta -I. -I.. -I../src -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -std=c++17 -include config.h -ffunction-sections -fdata-sections -march=x86-64 -mtune=generic -O2 -fno-plt -D_FORTIFY_SOURCE=2 -fPIC  -MD -MQ 'libauracle@sta/src_auracle_auracle.cc.o' -MF 'libauracle@sta/src_auracle_auracle.cc.o.d' -o 'libauracle@sta/src_auracle_auracle.cc.o' -c ../src/auracle/auracle.cc
../src/auracle/auracle.cc:7:10: fatal error: filesystem: No such file or directory
 #include <filesystem>
          ^~~~~~~~~~~~
compilation terminated.
[10/21] Compiling C++ object 'libaur@sta/src_aur_response.cc.o'.
ninja: build stopped: subcommand failed.

falconindy commented on 2019-02-15 15:42 (UTC)

No, not really. The point is that fmt doesn't need to be present in order for auracle to build. I have an explicit fallback to build with a known-working fmtlib if fmt isn't installed.

sl1pkn07 commented on 2019-02-15 14:35 (UTC)

seems need ad fmt to depends: (1 extra/fmt 5.3.0-1)

Dependency fmt found: NO (tried pkgconfig and cmake)
Downloading fmt source from https://github.com/fmtlib/fmt/archive/5.3.0.tar.gz
Download size: 662493
Downloading: ..........
Downloading fmt patch from https://wrapdb.mesonbuild.com/v1/projects/fmt/5.3.0/1/get_zip
Download size: 1080
Downloading: ..........

falconindy commented on 2018-12-02 22:54 (UTC)

Should be fixed in pkgrel=2

Jesin commented on 2018-12-02 22:03 (UTC)

Installing the latest update fails with the error message auracle-git: /usr/local/share/man exists in filesystem (owned by filesystem)

ILMostro7 commented on 2018-11-22 17:54 (UTC)

I do see previous comments here regarding the "any" architecture option. Your explanations are valid, albeit somewhat disappointing :).

falconindy commented on 2018-11-22 17:44 (UTC)

No, I won't. 'any' is wrong for compiled software, and I can't commit to supporting arm as I have no way to test it.

ILMostro7 commented on 2018-11-22 17:37 (UTC) (edited on 2018-11-22 17:52 (UTC) by ILMostro7)

Please update the PKGBUILD for auracle-git to include the armv7h architecture, either by specifying the any architecture option or the following:

arch=('x86_64' 'i686' 'armv7h')

For what it's worth, I have tested this on a raspberry-pi-2 with success.