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 (0)

Sources (6)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

Metallion commented on 2016-11-18 09:52 (UTC)

For me too it fails because it tries to install existing python libraries. It's trying to overwrite python2-setuptools and python2-protobuf. I see both are in the dependencies so why would they be bundled here? Here's part of the error: (1/1) checking for file conflicts [########################################################################] 100% error: failed to commit transaction (conflicting files) mesos: /usr/bin/easy_install exists in filesystem mesos: /usr/bin/easy_install-2.7 exists in filesystem mesos: /usr/lib/python2.7/site-packages/easy_install.py exists in filesystem mesos: /usr/lib/python2.7/site-packages/google/protobuf/__init__.py exists in filesys --snip-- mesos: /usr/lib/python2.7/site-packages/setuptools/unicode_utils.py exists in filesystem mesos: /usr/lib/python2.7/site-packages/setuptools/version.py exists in filesystem mesos: /usr/lib/python2.7/site-packages/setuptools/windows_support.py exists in filesystem Errors occurred, no packages were upgraded. ==> WARNING: Your packages are saved in /tmp/yaourt-tmp-metallion pacman -Qo /usr/lib/python2.7/site-packages/setuptools/script.tmpl /usr/lib/python2.7/site-packages/setuptools/script.tmpl is owned by python2-setuptools 1:28.8.0-1

evilezh commented on 2016-11-17 19:50 (UTC)

1.1.0 is out btw. I might maintain for time being.

dseg commented on 2016-11-10 15:46 (UTC) (edited on 2016-11-11 01:48 (UTC) by dseg)

Hi everyone, as I mentioned before, unfortunately I don't have a powerful enough PC to continue to maintain this huge and complicated product (mesos) and its packaging. Anyone who has interested in adopting this package, please let me know, I'll disown soon.

darose commented on 2016-11-09 16:22 (UTC)

Ah, never mind. Succeeded on re-try. Sorry for the noise!

darose commented on 2016-11-09 16:21 (UTC)

Failure while downloading http://www.apache.org/dist/mesos/1.0.1/mesos-1.0.1.tar.gz

evilezh commented on 2016-11-09 01:16 (UTC)

and it fails me with python, so i disabled it to get compiled. It seems it tries to install existing python libs and got conflicts.

evilezh commented on 2016-11-09 01:15 (UTC)

mesos-slave.service (similar for master) explanation: usually you set up /etc/mesos/mesos-slave(master)-env.sh . mesos-daemon does exactly that. I'm unsure about reload part ... [Unit] Description=Mesos Agent After=network.target Wants=network.target [Service] Type=forking ExecStart=/usr/bin/mesos-daemon.sh mesos-slave ExecStop=/usr/bin/killall -s 9 mesos-slave ExecReload=/usr/bin/kill -HUP $MAINPID Restart=always RestartSec=20 [Install] WantedBy=multi-user.target

dseg commented on 2016-11-01 16:15 (UTC)

@evilezh Thanks for the patch, applied. About the MAKEFLAGS, you can change by yourself, by modifying the /etc/makepkg.conf setting. MAKEFLAGS="-j$(nproc)" https://wiki.archlinux.org/index.php/Makepkg I remember one package I maintained contained something like 'make -j2' in the PKGBUILD but later removed because some user pointed me out that it's not good idea for the PKGBUILD.

evilezh commented on 2016-11-01 00:20 (UTC) (edited on 2016-11-01 00:20 (UTC) by evilezh)

can you please change make to make -j`nproc`. At least i can build with all cores. as for readdir_r() .. here is quick temporary patch: sed -i -e 's/\.\.\/configure/CFLAGS=-Wno-error CXXFLAGS=-Wno-error ..\/configure/g' PKGBUILD