You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by as...@apache.org on 2020/05/06 15:48:32 UTC

[mesos] branch master updated: Removed mesos-style transition script.

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

asekretenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 8335953  Removed mesos-style transition script.
8335953 is described below

commit 83359534cb1b3303fcbae34af3fadd81b7c8cb85
Author: Benjamin Bannier <bb...@apache.org>
AuthorDate: Wed May 6 17:47:37 2020 +0200

    Removed mesos-style transition script.
    
    Review: https://reviews.apache.org/r/71300/
---
 support/mesos-style.py | 40 ----------------------------------------
 1 file changed, 40 deletions(-)

diff --git a/support/mesos-style.py b/support/mesos-style.py
deleted file mode 100755
index 4d9d3b4..0000000
--- a/support/mesos-style.py
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env python3
-
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-"""This is a dummy script to ease the transition from mesos-style to pre-commit
-hooks. This script can be removed after we have given contributors enough time
-to adjust their checkouts."""
-
-import sys
-
-error = """\
-'mesos-style.py' was removed in favor of hooks managed by pre-commit.
-
-Linting requires an installation of pre-commit, see
-https://pre-commit.com/#install, e.g.,
-
-    $ pip3 install pre-commit
-
-After installing pre-commit, remove existing hooks in '.git/hooks'
-and reinstall hooks with './support/setup-dev.sh'.
-
-    $ rm -rfv .git/hooks/*
-    $ ./support/setup-dev.sh
-"""
-
-print(error, file=sys.stderr)
-sys.exit(1)