Package Details: singularity-ce 4.2.1-1

Git Clone URL: https://aur.archlinux.org/singularity-ce.git (read-only, click to copy)
Package Base: singularity-ce
Description: An open source container platform designed to be simple, fast, and secure.
Upstream URL: https://github.com/sylabs/singularity
Keywords: container go singularity sylabs
Licenses: GPL2
Conflicts: singularity-container
Provides: singularity-container
Submitter: Rubo
Maintainer: Rubo
Last Packager: Rubo
Votes: 3
Popularity: 0.008217
First Submitted: 2022-12-06 21:03 (UTC)
Last Updated: 2024-09-13 18:44 (UTC)

Dependencies (7)

Required by (2)

Sources (2)

Latest Comments

1 2 Next › Last »

Rubo commented on 2024-11-18 20:09 (UTC) (edited on 2024-11-18 20:10 (UTC) by Rubo)

@Aniva have you tried to build it on a clean chroot? I don't have your issue. Are you using the upstream makepkg.conf with no additional options (the ones in the introduction of makepkg.conf(5))? Because -D_FORTIFY_SOURCE=3 is defined in the CFLAGS there.

Aniva commented on 2024-09-26 08:25 (UTC)

I tried to install version 4.2.1 of this package and it still has this issue. The fix by thousands:

export CFLAGS=$(echo $CFLAGS | sed 's/-D_FORTIFY_SOURCE=3 //g')

fixed it. Note this line has to go before every other export that references CFLAGS.

Rubo commented on 2024-08-22 20:02 (UTC) (edited on 2024-08-22 20:02 (UTC) by Rubo)

@thousands I have updated the package to v4.1.5. Do you still experience the problem? I built it on a clean chroot and I did not have any issue with the standard /etc/makepkg.conf configuration.

thousands commented on 2024-07-23 20:23 (UTC)

I'm getting <command-line>: error: "_FORTIFY_SOURCE" redefined [-Werror] compilation terminated due to -Wfatal-errors too. I find _FORTIFY_SOURCE already defined in CFLAGS by makepkg file. I fixed the issue by add export CFLAGS=$(echo $CFLAGS | sed 's/-D_FORTIFY_SOURCE=3 //g') before run mconfig.

hmcezar commented on 2024-05-16 12:05 (UTC)

I'm getting <command-line>: error: "_FORTIFY_SOURCE" redefined [-Werror] compilation terminated due to -Wfatal-errors..

Any suggestions?

shaouai commented on 2024-04-08 14:46 (UTC) (edited on 2024-04-08 14:46 (UTC) by shaouai)

export CGO_ENABLED='1' may be a good idea, just in case someone has set CGO_ENABLED='0'.

Rubo commented on 2023-05-08 16:56 (UTC) (edited on 2023-05-08 18:01 (UTC) by Rubo)

@perpf @nobodyinperson I should have fixed the issue with the missing /var/lib/singularity/* directories. Please let me know if you run into any problems.

Rubo commented on 2023-05-08 16:26 (UTC) (edited on 2023-05-08 16:28 (UTC) by Rubo)

@perpf as stated here

The package base-devel is assumed to be already installed when building with makepkg. Dependencies of this package should not be included in makedepends array.

pkg-config is included in the pkgconf package, which is part of base-devel, so it doesn't need to be a dependency.

perpf commented on 2023-05-08 15:37 (UTC) (edited on 2023-05-08 16:20 (UTC) by perpf)

Thanks for the package. I just wanted to give you or other users some feedback:

  1. A dependency was missing: pamac install pkg-config. (Before this was installed there have been various irritating error-messages.)
  2. After that, the installation worked: yay -S singularity-ce
  3. Directories were missing. The solution was trivial, but a bit tedious at first: sudo mkdir -p /var/lib/singularity/mnt/{container,final,overlay,session}; sudo chmod -R 755 /var/lib/singularity