[26483] | 1 | # $Id: .scm-settings 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
| 2 | ## @file
|
---|
| 3 | # Top level source code massager settings.
|
---|
| 4 | #
|
---|
| 5 | # This will be loaded when scm is pointed to any file or directory in the
|
---|
| 6 | # VirtualBox source tree. It will recursively load all .scm-settings files
|
---|
| 7 | # it find in or above directories or files it's told to work on. So,
|
---|
| 8 | # .scm-settings files can be placed in sub-directories in the tree to provide
|
---|
| 9 | # additional settins specific to that sub-tree.
|
---|
| 10 | #
|
---|
| 11 |
|
---|
| 12 | #
|
---|
[106061] | 13 | # Copyright (C) 2010-2024 Oracle and/or its affiliates.
|
---|
[26483] | 14 | #
|
---|
[96407] | 15 | # This file is part of VirtualBox base platform packages, as
|
---|
| 16 | # available from https://www.virtualbox.org.
|
---|
[26483] | 17 | #
|
---|
[96407] | 18 | # This program is free software; you can redistribute it and/or
|
---|
| 19 | # modify it under the terms of the GNU General Public License
|
---|
| 20 | # as published by the Free Software Foundation, in version 3 of the
|
---|
| 21 | # License.
|
---|
| 22 | #
|
---|
| 23 | # This program is distributed in the hope that it will be useful, but
|
---|
| 24 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 25 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
| 26 | # General Public License for more details.
|
---|
| 27 | #
|
---|
| 28 | # You should have received a copy of the GNU General Public License
|
---|
| 29 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
| 30 | #
|
---|
| 31 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
| 32 | #
|
---|
[26483] | 33 |
|
---|
| 34 |
|
---|
| 35 | #
|
---|
[26516] | 36 | # Global settings.
|
---|
| 37 | #
|
---|
[26557] | 38 | # Only consider directories and files that are part of a SVN working set.
|
---|
| 39 | #
|
---|
[26516] | 40 | --only-svn-dirs
|
---|
[26557] | 41 | --only-svn-files
|
---|
[26561] | 42 | --set-svn-eol
|
---|
[26559] | 43 | --set-svn-executable
|
---|
[26562] | 44 | --set-svn-keywords
|
---|
[26516] | 45 |
|
---|
| 46 | #
|
---|
[26483] | 47 | # Directories to ignore.
|
---|
| 48 | #
|
---|
| 49 | # These are simple string patterns (see iprt/string.h) and we'll match both the
|
---|
| 50 | # base name as well as the absolute path of each directory we consider for
|
---|
| 51 | # recursion against these patterns.
|
---|
| 52 | #
|
---|
| 53 | --filter-out-dirs ".svn"
|
---|
[69208] | 54 | --filter-out-dirs "/*out*/."
|
---|
[98108] | 55 | --filter-out-dirs "/kBuild/."
|
---|
| 56 | --filter-out-dirs "/*kBuild_*/."
|
---|
| 57 | --filter-out-dirs "/*kBuild.*/."
|
---|
| 58 | --filter-out-dirs "/*_kBuild*/."
|
---|
[69208] | 59 | --filter-out-dirs "/SlickEdit/."
|
---|
[26483] | 60 |
|
---|
[26490] | 61 |
|
---|
[26483] | 62 | #
|
---|
| 63 | # Files to ignore.
|
---|
| 64 | #
|
---|
| 65 | # Same format as for the directories, except that we'll also apply them to
|
---|
| 66 | # files specified directly on the command line.
|
---|
| 67 | #
|
---|
[69208] | 68 | --filter-out-files "/vslick.h"
|
---|
[96319] | 69 | --filter-out-files "/.dir-locals.el"
|
---|
| 70 | --filter-out-files "*/.gitignore"
|
---|
[69266] | 71 | --filter-out-files "*/PkgInfo"
|
---|
| 72 | --filter-out-files "*/*-PkgInfo"
|
---|
[96319] | 73 | --filter-out-files "*.crt"
|
---|
[69266] | 74 | --filter-out-files "*.plist"
|
---|
[96319] | 75 | --filter-out-files "*.provisionprofile"
|
---|
[69266] | 76 | --filter-out-files "*/Doxyfile*"
|
---|
[69332] | 77 | --filter-out-files "*/COPYING"
|
---|
| 78 | --filter-out-files "*/COPYING.LIB"
|
---|
[69505] | 79 | --filter-out-files "*/COPYING.CDDL"
|
---|
[96359] | 80 | --filter-out-files "*/COPYING.GPLv2"
|
---|
[96319] | 81 | --filter-out-files "*/COPYING.UBDL"
|
---|
[69332] | 82 | --filter-out-files "*.desktop"
|
---|
[96319] | 83 | --filter-out-files "*/.swagger-codegen-ignore"
|
---|
| 84 | --filter-out-files "*/.swagger-codegen/VERSION"
|
---|
[26483] | 85 |
|
---|
[76586] | 86 |
|
---|
| 87 | #
|
---|
| 88 | # Header guards are by default relative to the parent directory.
|
---|
| 89 | #
|
---|
| 90 | --guard-prefix VBOX_INCLUDED_SRC_
|
---|
| 91 | --guard-relative-to-dir {parent}
|
---|
| 92 | --fix-header-guard-endif
|
---|
| 93 |
|
---|