Package Details: mesos 1.9.0-1

Git Clone URL: https://aur.archlinux.org/mesos.git (read-only, click to copy)
Package Base: mesos
Description: A cluster manager that simplifies the complexity of running applications on a shared pool of servers
Upstream URL: http://mesos.apache.org/
Licenses: Apache
Groups: science
Submitter: dseg
Maintainer: None
Last Packager: mcoffin
Votes: 14
Popularity: 0.000000
First Submitted: 2014-07-14 09:47 (UTC)
Last Updated: 2019-11-26 09:30 (UTC)

Dependencies (20)

Required by (2)

Sources (6)

Latest Comments

1 2 3 4 5 6 Next › Last »

mcoffin commented on 2019-06-05 22:01 (UTC)

Ok everyone, I've fought the java build in this for a while now unsuccessfully. I'm going to update to 1.8.0, but disable the java bindings for now until I have time to investigate more heavily into why building them is failing.

I'll push another version of the package with the java bindings re-enabled when I can, but they're going to be disabled for the purpose of getting 1.8.0 out in the wild.

Sorry for the delays in this.

dito_ch commented on 2019-04-09 10:42 (UTC)

Any chance of an update? Version 1.7.2 has been released recently.

Erebe commented on 2018-06-29 09:56 (UTC) (edited on 2018-06-29 09:57 (UTC) by Erebe)

Managed to install the package by changing those thing:

version, use 1.5.1 instead of the 1.5.0 (that does not exist anymore)

in the build phase, add before the configure

export CXX=clang++

export CC=clang

export CXXFLAGS='-fno-strict-aliasing -Wno-enum-compare-switch'

export CPPFLAGS='-fno-strict-aliasing -Wno-enum-compare-switch'

mcoffin commented on 2017-10-30 19:33 (UTC)

I've messaged the maintainer of this package in an attempt to get either the issues resolved and the package updated, or potentially talk about a maintainer transfer. @slester I CC'd you on this discussion as well.

slester commented on 2017-09-09 21:08 (UTC)

This has been flagged out of date for two months. Is there any way to flag this so others can maintain it?

conradkleinespel commented on 2017-07-07 13:52 (UTC)

hey ! thanks for the package, definitely helps setting everything up ! for some extra security, would you mind switching URLs to use HTTPS please ? ie: source=("https://www.apache.org/dist/$pkgname/$pkgver/$pkgname-${pkgver}.tar.gz" "$pkgname-master.service" "$pkgname-slave.service") # official signature file: # "https://www.apache.org/dist/$pkgname/$pkgver/$pkgname-${pkgver}.tar.gz.asc" md5sums=('3585de784da66bb4c6df04a1e6bcb439' '42e6bb21d7682b8a8f036c23532e4fe9' '55cc5e556bb0622f5f913a1999f17766')

rains commented on 2017-06-22 06:38 (UTC)

agree with @rawskys.

rawskys commented on 2017-05-07 10:18 (UTC)

Another language can have quite different translation which wouldn't match your expression. It's better do precede "pacman -Qi python2" with "LC_ALL=C ".

tmas commented on 2017-05-06 15:09 (UTC)

The line _python2_ver_major=$(pacman -Qi python2|gawk '$1~/Version/{split($3,v,".");print Is not working in all locales because 'Version' is translated. If you get an error about your python version being too old just edit PKGBUILD and change 'Version' for whatever you see on the second line of 'pacman -Qi python2'. A possible fix: gawk 'FNR==2{split($3,v,".");print v[1] "." v[2]}')

huitseeker commented on 2017-04-18 01:31 (UTC)

I had a couple of problems compiling his one with kernel 4.10.9. Fixed it by : - adding the following environment variables to the `build()` : ``` CXXFLAGS=-fno-strict-aliasing \ CPPFLAGS=-fno-strict-aliasing \ ``` - adding ``` #include <sys/sysmacros.h> ``` to the imports of src/mesos-1.2.0/src/slave/containerizer/mesos/isolators/gpu/isolator.cpp src/mesos-1.2.0/src/linux/fs.cpp