Search Criteria
Package Details: dimension r530.db22981-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/dimension.git (read-only, click to copy) |
---|---|
Package Base: | dimension |
Description: | An open source integrations manager for matrix clients, like Riot. |
Upstream URL: | https://github.com/turt2live/matrix-dimension |
Licenses: | GPL3 |
Submitter: | BubuIIC |
Maintainer: | None |
Last Packager: | BubuIIC |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2020-06-20 13:15 (UTC) |
Last Updated: | 2020-08-23 11:29 (UTC) |
Dependencies (6)
- libvips (libvips-gitAUR, libvips-notiffAUR)
- nodejs (nodejs-gitAUR, python-nodejs-wheelAUR, nodejs-lts-hydrogen, nodejs-lts-iron, nodejs-lts-jod)
- sqlite (sqlite-fossilAUR)
- git (git-gitAUR, git-glAUR) (make)
- npm (corepackerAUR, python-nodejs-wheelAUR) (make)
- python2AUR (python2-binAUR) (make)
Latest Comments
BubuIIC commented on 2021-01-22 21:18 (UTC)
I disowned this because I'm no longer running dimension myself and I currently don't see much value in using any form of integration for matrix.
Maybe someone else feels differently and wants to pick it up.
kuzalj commented on 2020-07-28 10:01 (UTC)
@BubuIIC
I actually think you are right about the OOM. I have had issues building NPM packages before due to OOM errors, since my VPS only has 1GB of RAM on it.
I'm just going to chalk it up to that. Maybe I will build local and push the pkg to my VPS. I appreciate the quick response and you looking into it.
BubuIIC commented on 2020-07-24 10:20 (UTC)
@kuzalj There isn't really much in that error message saying what is going wrong unfortunately (just that it failed to run). Are there any logs before this?
Otherwise try to execute the build steps manually on your machine, specifically run
npm install --build-from-source --sass-binary-site=http://localhost:0 --sqlite=/usr
andnpm run build
and see if anything else comes up.Another thought is that the build process runs OOM. Upstream says that building dimension can use 2-4Gb of ram.
kuzalj commented on 2020-07-24 09:50 (UTC) (edited on 2020-07-24 09:52 (UTC) by kuzalj)
I am getting an error building
eschwartz commented on 2020-07-17 12:45 (UTC) (edited on 2020-07-17 13:34 (UTC) by eschwartz)
It does not matter whether you download stuff during build() or prepare(). Both violate the assumption that all sources must be downloaded in the manifested, checksummed source=().
Correct, but overly pedantic, this isn't enforced in the case of languages like npm, where it's impossible.
I would be truly delighted if you had a distro-wide solution that could make this entire programing language compliant with our packaging policy.
Incorrect, you made this up yourself. There is no such exception. This is just as problematic as build(), and once again, "nodejs the programming language runtime and npm the build system makes this impossible".
Especially given npm does all its downloading every time you run the command to build the module, that would mean building it in prepare() which is entirely illogical from beginning to end...
BubuIIC commented on 2020-07-17 10:54 (UTC)
@dreieck, can you point me to the documentation stating this? I went through https://wiki.archlinux.org/index.php/Arch_package_guidelines and related pages again and couldn't find it.
I'll see about moving the download step to prepare() but I'm afraid this isn't (easily or at all) possible. Building nodejs software is fundamentally coupled with installing(=downloading) the dependencies. This is similar to how other ecosystems like maven/gradle/sbt work. (See for example here, https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/gradle#n27 I'm 99.9% sure that this downloads tons of stuff during build as well, adn there's also no way around this)
dreieck commented on 2020-07-17 10:39 (UTC)
This package downloads stuff during
build()
.This must not happen.
Please make sure that everything needed to build the package get's downloaded via the
source
-array, or, as an exception, inprepare()
.No internet connection mus be assumed in
build()
andpackage()
.Thanks for maintaining!