You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2019/05/14 10:30:41 UTC

[mesos] branch 1.8.x updated (03ac09f -> 3bc6082)

This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a change to branch 1.8.x
in repository https://gitbox.apache.org/repos/asf/mesos.git.


    from 03ac09f  Templatized two sorter tests for both random and DRF.
     new 5ca16bf  Updated URL in CentOS 6 Dockerfile.
     new 3bc6082  Enabled launcher sealing for RPM packages.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 support/packaging/centos/centos6.dockerfile | 2 +-
 support/packaging/centos/mesos.spec         | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)


[mesos] 01/02: Updated URL in CentOS 6 Dockerfile.

Posted by be...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a commit to branch 1.8.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 5ca16bfeae19c193f4e67390543d08897a0f4ab8
Author: Benno Evers <be...@mesosphere.com>
AuthorDate: Tue May 14 11:52:59 2019 +0200

    Updated URL in CentOS 6 Dockerfile.
    
    The link was pointing to a rpm package that was apparently
    replaced on the upstream file server.
    
    Review: https://reviews.apache.org/r/70639
---
 support/packaging/centos/centos6.dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/packaging/centos/centos6.dockerfile b/support/packaging/centos/centos6.dockerfile
index ddbeb29..73c9637 100644
--- a/support/packaging/centos/centos6.dockerfile
+++ b/support/packaging/centos/centos6.dockerfile
@@ -27,7 +27,7 @@ RUN curl -sSL \
 
 # PostgreSQL repo for libevent2.
 RUN  rpm -Uvh --replacepkgs \
-      http://yum.postgresql.org/9.5/redhat/rhel-6-x86_64/pgdg-centos95-9.5-2.noarch.rpm
+      http://yum.postgresql.org/9.5/redhat/rhel-6-x86_64/pgdg-centos95-9.5-3.noarch.rpm
 
 # Setup JDK
 RUN echo -e 'export JAVA_HOME=/usr/lib/jvm/java-openjdk' >> /etc/profile.d/java-home.sh


[mesos] 02/02: Enabled launcher sealing for RPM packages.

Posted by be...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a commit to branch 1.8.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 3bc6082afe75390dc3b0abd58d6ce85827709b89
Author: Benjamin Bannier <bb...@apache.org>
AuthorDate: Mon Apr 8 14:37:32 2019 +0200

    Enabled launcher sealing for RPM packages.
    
    We enable this flag since with it disabled certain public functions
    are not available making it hard to e.g., write modules against this
    version of Mesos.
    
    While launcher sealing depends on a recent kernel, the platform we
    build RPMs for already satisfies the requirements.
    
    Review: https://reviews.apache.org/r/70295
---
 support/packaging/centos/mesos.spec | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/support/packaging/centos/mesos.spec b/support/packaging/centos/mesos.spec
index 54f7393..f1ba977 100644
--- a/support/packaging/centos/mesos.spec
+++ b/support/packaging/centos/mesos.spec
@@ -87,10 +87,13 @@ This package provides files for developing Mesos frameworks/modules.
 %setup -q
 
 %build
+%{!?el6:%define launcher_sealing --enable-launcher-sealing}
+
 %configure \
     --enable-optimize \
     --disable-python-dependency-install \
     --enable-install-module-dependencies \
+    %{launcher_sealing} \
     --enable-libevent \
     --enable-ssl \
     --enable-hardening \