Package Details: vlc-git 4.0.0.r31756.g76cd807c24-2

Git Clone URL: https://aur.archlinux.org/vlc-git.git (read-only, click to copy)
Package Base: vlc-git
Description: Multi-platform MPEG, VCD/DVD, and DivX player
Upstream URL: https://code.videolan.org/videolan/vlc
Licenses: GPL-2.0-or-later, LGPL-2.1-or-later
Conflicts: libvlc, vlc
Provides: libvlc, vlc
Submitter: None
Maintainer: xiota (knoelli)
Last Packager: xiota
Votes: 210
Popularity: 1.09
First Submitted: 2008-04-01 12:14 (UTC)
Last Updated: 2024-11-16 22:21 (UTC)

Dependencies (160)

Required by (154)

Sources (3)

Latest Comments

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

sli908 commented on 2016-08-30 23:06 (UTC)

Never mind, I figured it out. Here's the specifics: download the patch that @Bermond linked, then add the following line to the prepare() function in the PKGBUILD: patch -p1 </path/to/patchfile.patch Then just build normally

sli908 commented on 2016-08-30 18:31 (UTC)

@Bermond Could you provide more details on what should be changed in the PKGBUILD?

dbermond commented on 2016-08-22 15:30 (UTC) (edited on 2016-08-22 15:36 (UTC) by dbermond)

@lonaowna This can be fixed by adding the Lua 5.3 compatibility patch from official Arch Linux repository package: https://git.archlinux.org/svntogit/packages.git/tree/trunk/lua53_compat.patch?h=packages/vlc Modify PKGBUILD to use it. This error was introduced by the following VLC git commit: http://git.videolan.org/?p=vlc.git;a=commit;h=520b13a2ca88fc63ba3c1287e9314fbb2777c85d

lonaowna commented on 2016-08-21 19:31 (UTC)

I'm having trouble building this, getting the following error: lua/demux.c: In function ‘vlclua_demux_peek’: lua/demux.c:55:13: error: implicit declaration of function ‘luaL_checkint’ [-Werror=implicit-function-declaration] int n = luaL_checkint( L, 1 );

dbermond commented on 2016-08-02 17:24 (UTC) (edited on 2016-08-02 17:49 (UTC) by dbermond)

Please consider changing the major version number in '$pkgver' to the current one which is 3.0.0 (the one that appears at Help->About menu). You're using 2.2.0 obtained by 'git describe' command but notice that the tags are outdated in the git repository (they made no tags after 2.2.0). Letting it with outdated version 2.2.0 can cause confusion with the vlc release version which is currently at 2.2.4. In this way, it appears that the git version is older than the release version, what is not true. The current version number for the git version can be obtained in the 'configure.ac' file. Here are two methods to get it, ready to use in 'pkgver()' function (including git revision and git shorthash): Method 1 (using 'AC_INIT' variable, single line): printf "%s.r%s.g%s\n" "$(grep 'AC_INIT' configure.ac | sed 's/[^0-9\.]*//g')" "$(git describe --tags --long | cut -d '-' -f 3)" "$(git rev-parse --short HEAD)" Method 2 (using multiple 'VERSION_x' variables, multi line): local _version_major="$(grep 'VERSION_MAJOR=' configure.ac | sed 's/[^0-9\.]*//g')" local _version_minor="$(grep 'VERSION_MINOR=' configure.ac | sed 's/[^0-9\.]*//g')" local _version_revision="$(grep 'VERSION_REVISION=' configure.ac | sed 's/[^0-9\.]*//g')" local _version_number=$(printf "%s.%s.%s" "$_version_major" "$_version_minor" "$_version_revision") local _git_revision=$(printf "%s" "$(git describe --tags --long | cut -d '-' -f 3)") local _git_shorthash=$(printf "%s" "$(git rev-parse --short HEAD)") printf "%s.r%s.g%s\n" "$_version_number" "$_git_revision" "$_git_shorthash"

Cysioland commented on 2016-05-30 19:00 (UTC)

[00007f3048303d78] core generic error: corrupt module: /usr/lib/vlc/plugins/lua/liblua_plugin.so [000000000136a868] qt interface error: Unable to load extensions module [00007f30482b7408] core probe error: corrupt module: /usr/lib/vlc/plugins/lua/liblua_plugin.so

andrewSC commented on 2016-02-04 16:47 (UTC)

Det: Updated regex

Det commented on 2016-01-20 06:34 (UTC)

You're misplacing the "r". It belongs before the revision: 2.2.0.git.r6147.gf13c172

andrewSC commented on 2015-12-23 17:10 (UTC)

Confirmed build @ adfe0c2. Quit playing games with my heart guys ='(

bernd_b commented on 2015-12-15 22:28 (UTC) (edited on 2015-12-15 22:32 (UTC) by bernd_b)

Built and works here too with today's compile. Why is this flagged out of date? This flag causes more confusion than guidance wherever I stumble upon it ...