Package Details: python-elmextensions 0.2.0-1

Git Clone URL: https://aur.archlinux.org/python-elmextensions.git (read-only, click to copy)
Package Base: python-elmextensions
Description: Python library that contains a few more complex elementary objects for easy importing/usage
Upstream URL: https://github.com/JeffHoogland/python-elm-extensions
Licenses: BSD
Submitter: Scimmia
Maintainer: None
Last Packager: AJSlye
Votes: 5
Popularity: 0.000000
First Submitted: 2015-02-24 19:34 (UTC)
Last Updated: 2016-09-06 12:24 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

bowhuntr commented on 2016-09-13 10:10 (UTC)

Here is the error I get. pacaur -S python-elmextensions :: Package(s) python-elmextensions not found in repositories, trying AUR... :: resolving dependencies... :: no results found for dependencies)

bowhuntr commented on 2016-09-12 22:21 (UTC)

I'm at work at the moment. As soon as I get home I will post it.

AJSlye commented on 2016-09-12 22:19 (UTC)

Well, this only has one dependency "python-efl". Could you give me the exact error msg your getting.

bowhuntr commented on 2016-09-12 21:52 (UTC)

I am on unstable

AJSlye commented on 2016-09-12 13:27 (UTC) (edited on 2016-09-12 13:32 (UTC) by AJSlye)

That's because Manjaro doesn't have EFL 1.18 in it's stable branch yet. You'll need to wait for Manjaro stable to catch up.

bowhuntr commented on 2016-09-12 11:56 (UTC)

Trying to install this on Manjaro and it can't find the dependencies.

AJSlye commented on 2016-08-10 10:38 (UTC)

Done

AJSlye commented on 2016-08-10 08:08 (UTC)

Yes, that would be acceptable.

<deleted-account> commented on 2016-08-10 07:15 (UTC)

@AJSlye, For the next 2 weeks I won't be able to correct the issue, so if you want I can add you as co-maintainer to fix that immediately. Then if you want you can leave the package or continue maintaining it with me.

AJSlye commented on 2016-08-09 23:02 (UTC) (edited on 2016-08-09 23:03 (UTC) by AJSlye)

Here is the fixed PKGBUILD: # Maintainer: Christopher Loen <christopherloen at gmail dot com> # Contributor: Doug Newgard <scimmia at archlinux dot info> pkgname='python-elmextensions' pkgdesc='Python library that contains a few more complex elementary objects for easy importing/usage' pkgver='0.2.0' pkgrel=1 arch=('any') url='https://github.com/JeffHoogland/python-elm-extensions' license=('BSD') depends=('python-efl') source=('https://github.com/JeffHoogland/python-elm-extensions/archive/0.2.0.tar.gz') sha256sums=('bdda3b8ca9fc9aca43dcd8a65372d0903b28999fd2c4d8a36110dc77ddf0e6be') package() { cd "$srcdir/python-elm-extensions-$pkgver" local _pyver="$(pkg-config --modversion python3)" install -d "$pkgdir/usr/lib/python$_pyver/site-packages/elmextensions/" install -m644 elmextensions/*.py "$pkgdir/usr/lib/python$_pyver/site-packages/elmextensions/" # compile python files python -m compileall -q "$pkgdir" python -O -m compileall -q "$pkgdir" # install license files install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgbase}/license.txt" }