Package Details: libvirt-git 8.9.0.r267.gd5ae0cd178-1

Git Clone URL: https://aur.archlinux.org/libvirt-git.git (read-only, click to copy)
Package Base: libvirt-git
Description: API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)
Upstream URL: http://libvirt.org/
Keywords: git library management virtualization
Licenses: GPL3, LGPL
Conflicts: libvirt
Provides: libvirt
Submitter: xtfxme
Maintainer: sirspudd
Last Packager: sirspudd
Votes: 10
Popularity: 0.000000
First Submitted: 2009-12-06 07:37 (UTC)
Last Updated: 2022-11-16 19:58 (UTC)

Required by (79)

Sources (4)

Latest Comments

1 2 3 4 5 6 .. 10 Next › Last »

unfunnycesium commented on 2023-02-10 16:09 (UTC)

if you're trying to install this package along with anything that depends on the official libvirt package "provides" except libvirt itself, you get a dependency error. i got around this by modifying my pkgbuild to include the same provides section as the official package.

dedguy21 commented on 2022-10-16 11:05 (UTC)

Wierd issue, I have a ryzen 9 - 32gb machine and this build ate all the ram and froze my machine. WTF???

Why would this build require so much ram all at once?

clcr commented on 2022-04-30 19:34 (UTC)

After installation, an additional change to /etc/libvirt/qemu.conf is required to change user and group values to existing ones.

clcr commented on 2022-04-30 19:01 (UTC)

Requires changes to references of qemu.conf to qemu.conf.in.

ArthurBorsboom commented on 2022-04-13 19:57 (UTC)

==> Starting prepare()...
sed: can't read src/qemu/qemu.conf: No such file or directory
==> ERROR: A failure occurred in prepare().
    Aborting...
 -> error making: libvirt-git

rageltman commented on 2021-01-15 01:14 (UTC)

Appears to fail pretty badly building in a chroot (same chroot base builds ~1k other packages fine):

[2021-01-14T21:19:56.240Z] ==> Starting build()...
[2021-01-14T21:19:56.240Z] The Meson build system
[2021-01-14T21:19:56.240Z] Version: 0.56.2
[2021-01-14T21:19:56.240Z] Source dir: /build/libvirt-git/src/libvirt
[2021-01-14T21:19:56.240Z] Build dir: /build/libvirt-git/src/libvirt/build
[2021-01-14T21:19:56.240Z] Build type: native build
[2021-01-14T21:19:56.240Z] Project name: libvirt
[2021-01-14T21:19:56.240Z] Project version: 7.0.0
[2021-01-14T21:19:56.240Z] Using 'CFLAGS' from environment with value: '-march=x86-64 -mtune=generic -O2 -pipe -fno-plt'
[2021-01-14T21:19:56.240Z] Using 'LDFLAGS' from environment with value: '-lX11'
[2021-01-14T21:19:56.240Z] Using 'CPPFLAGS' from environment with value: '-D_FORTIFY_SOURCE=2'
[2021-01-14T21:19:56.240Z] 
[2021-01-14T21:19:56.240Z] ../meson.build:1:0: ERROR: Compiler cc can not compile programs.
[2021-01-14T21:19:56.240Z] 
[2021-01-14T21:19:56.240Z] A full log can be found at /build/libvirt-git/src/libvirt/build/meson-logs/meson-log.txt
[2021-01-14T21:19:56.240Z] ==> ERROR: A failure occurred in build().
[2021-01-14T21:19:56.240Z]     Aborting...
script returned exit code 255

sirspudd commented on 2020-11-06 18:55 (UTC) (edited on 2020-11-06 18:55 (UTC) by sirspudd)

@honsunrise: Good question; that seems like an oversight (I just adopted this recipe)

Corrected

honsunrise commented on 2020-11-06 18:48 (UTC)

Why does this package need to depend on libvirt?

sirspudd commented on 2020-10-30 07:01 (UTC)

@nullbyte4532: Thank you, incorporated your fix to avoid the /usr/sbin symlink being replace in situ

nullbyte4532 commented on 2020-10-07 08:26 (UTC) (edited on 2020-10-07 08:26 (UTC) by nullbyte4532)

I just got an error saying that /usr/sbin already exists in filesystem. In my system (i have manjaro installed, not vanilla arch) /usr/sbin is a symlink to /usr/bin This seemed to help:

@@ -132,7 +132,7 @@ build() {
   #sed -i 's|libsystemd-daemon|libsystemd|g' configure
   mkdir build && cd build

-  meson --prefix=/usr --libexec=/usr/lib/$_pkgname --sysconfdir=/etc 
+  meson --prefix=/usr --libexec=/usr/lib/$_pkgname --sysconfdir=/etc --sbindir=/usr/bin
   ninja
 }