Package Details: e-modules-extra-git 20200822-2

Git Clone URL: https://aur.archlinux.org/e-modules-extra-git.git (read-only, click to copy)
Package Base: e-modules-extra-git
Description: Enlightenment modules: Extra unsupported modules in Git not already packaged elsewhere
Upstream URL: http://www.enlightenment.org
Licenses: GPL, MIT
Provides: e-modules-extra
Submitter: Cravix
Maintainer: None
Last Packager: micwoj92
Votes: 44
Popularity: 0.000000
First Submitted: 2013-06-18 10:41 (UTC)
Last Updated: 2020-08-22 17:09 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 12 Next › Last »

Cravix commented on 2013-05-10 08:34 (UTC)

oh, and pkgver() change to ---- [[ -z $(pacman -Q efl-git 2>/dev/null) ]] && echo 84534 || { cd "$SRCDEST/$_pkgname" LC_ALL=C svn info | awk '/Last Changed Rev/ {print $4}' } ---- hmm, don't know if there's a better way, but that works for me now :P

Cravix commented on 2013-05-10 08:25 (UTC)

Scimmia, i come up with a idea: change source line to ---- source=('REST' 'DOC') [[ -z $(pacman -Q efl-git 2>/dev/null) ]] && source+=("svn+http://svn.enlightenment.org/svn/e/trunk/E-MODULES-EXTRA#revision=84534") || source+=("svn+http://svn.enlightenment.org/svn/e/trunk/E-MODULES-EXTRA") ---- e_popup_autoclose was added to places at rev 84535, so that'll work, what do you think about that :)

Scimmia commented on 2013-05-10 00:37 (UTC)

AVDuma, it's really strange that e17-places-svn would work, it pulls the same code and builds it the same way as this package. Were they built on the same machine with the same E install? e_popup_autoclose was added to enlightenment17-git two and a half months ago, so if you built one of them against 0.17.1 or something, it could definitely be an issue.

AVDuma commented on 2013-05-08 09:11 (UTC)

When I try to load places module, I get this error: http://www.enlightenment.org/ss/e-518a167678d0e9.56589733.jpg If i use the e17-places-svn package on AUR, everything is ok, but I have to remove this package.

Scimmia commented on 2013-04-27 22:33 (UTC)

andre.vmatos, that's because edbus(2) has been renamed to eldbus. Until all of the software that uses it updates their code, it won't build.

andre.vmatos commented on 2013-04-27 14:30 (UTC)

Didn't compile here with current efl-git: ... checking for E... no configure: error: Package requirements (enlightenment) were not met: Package 'edbus2', required by 'enlightenment', not found

Cravix commented on 2013-04-27 12:34 (UTC)

update the pkgbuild to keep up with current makepkg, and sorry to everyone for the inconvenience :)

Scimmia commented on 2013-04-20 01:35 (UTC)

hmm, looks like pkgver() doesn't get run if makepkg doesn't find a VCS source. Simplest solution, then is just to remove -r "$pkgver" from the SVN commands.

AVDuma commented on 2013-04-16 14:43 (UTC)

I have the same issues reported by juanpe, but the Scimmia's advice doesn't work: adding pkgver() { svn info "$_svntrunk" | awk '/Last Changed Rev/ {print $4}' } to PKGBUILD hasn't fixed the problem

Scimmia commented on 2013-04-07 22:50 (UTC)

juanpe, the problem is that this PKGBUILD hasn't been updated for Pacman 4.1 yet. The problem you're experiencing was fixed months ago, but because the pkgver is "79887" and makepkg is no longer updating it, it's pulling an old revision from before the fix. As a temporary fix, please add this after _svnmod and before the build function pkgver() { svn info "$_svntrunk" | awk '/Last Changed Rev/ {print $4}' }