| # Copyright (C) 2006-2021 Free Software Foundation, Inc. |
| # Author: Simon Josefsson |
| # |
| # This file is part of LIBTASN1. |
| # |
| # This program is free software: you can redistribute it and/or modify |
| # it under the terms of the GNU General Public License as published by |
| # the Free Software Foundation, either version 3 of the License, or |
| # (at your option) any later version. |
| # |
| # This program is distributed in the hope that it will be useful, |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| # GNU General Public License for more details. |
| # |
| # You should have received a copy of the GNU General Public License |
| # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| |
| manual_title = Library for Abstract Syntax Notation One (ASN.1) |
| |
| old_NEWS_hash = d1ceb75ae4fc9ca56035419de91948d7 |
| |
| bootstrap-tools = gnulib,autoconf,automake,libtoolize,make,makeinfo,bison,help2man,gtkdocize,tar,gzip |
| |
| INDENT_SOURCES = `find . -name \*.[ch]|grep -v -e ^./gnulib -e ^./lib/gl -e ^./build-aux/ -e ^./lib/ASN1.c -e ^./tests/Test_tree_asn1_tab.c` |
| |
| local-checks-to-skip = sc_prohibit_strcmp sc_prohibit_have_config_h \ |
| sc_require_config_h sc_require_config_h_first \ |
| sc_immutable_NEWS sc_prohibit_magic_number_exit \ |
| sc_bindtextdomain sc_GPL_version sc_prohibit_always_true_header_tests \ |
| sc_prohibit_gnu_make_extensions sc_codespell |
| |
| VC_LIST_ALWAYS_EXCLUDE_REGEX = ^(maint.mk|gtk-doc.make|build-aux/.*|lib/gl/.*|lib/ASN1\.c|m4/pkg.m4|doc/gdoc|windows/.*|doc/fdl-1.3.texi|fuzz/.*_fuzzer.(in|repro)/.*)$$ |
| update-copyright-env = UPDATE_COPYRIGHT_USE_INTERVALS=1 |
| |
| # Explicit syntax-check exceptions. |
| exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/TestIndef.p12$$ |
| exclude_file_name_regexp--sc_GPL_version = ^lib/includes/libtasn1.h$$ |
| exclude_file_name_regexp--sc_program_name = ^tests/|examples/ |
| exclude_file_name_regexp--sc_prohibit_atoi_atof = ^src/asn1Coding.c|src/asn1Decoding.c$$ |
| exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/.*.(cer|der|asn|txt|p12)|tests/TestIndef.p12|msvc/.*$$ |
| exclude_file_name_regexp--sc_error_message_uppercase = ^tests/Test_tree.c$$ |
| exclude_file_name_regexp--sc_unmarked_diagnostics = ^tests/Test_tree.c$$ |
| exclude_file_name_regexp--sc_prohibit_undesirable_word_seq = ^msvc/.*$$ |
| exclude_file_name_regexp--sc_trailing_blank = ^msvc/.*$$ |
| exclude_file_name_regexp--sc_useless_cpp_parens = ^lib/includes/libtasn1.h$$ |
| exclude_file_name_regexp--sc_prohibit_eol_brackets = ^(tests/.*|fuzz/.*|bootstrap)$$ |
| |
| sc_prohibit_eol_brackets: |
| @prohibit='.+\) *{$$' \ |
| halt='please block bracket { use in a separate line' \ |
| $(_sc_search_regexp) |
| |
| sc_codespell: |
| @if `which codespell > /dev/null`; then \ |
| codespell -L tim,sorce `git ls-files|egrep -v '_fuzzer.in|_fuzzer.repro|gnulib|tests/.*.der|tests/TestIndef.*.p12|tests/built-in-type.asn|tests/crlf.cer|tests/invalid-assignments2.txt|windows/libtasn1.ncb|windows/libtasn1.suo$$'`; \ |
| fi |
| |
| aximport: |
| for f in m4/ax_*.m4; do \ |
| wget -O $$f "https://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=$$f"; \ |
| done |
| |
| review-diff: |
| git diff `git describe --abbrev=0`.. \ |
| | grep -v -e ^index -e '^diff --git' \ |
| | filterdiff -p 1 -x 'gl/*' -x 'build-aux/*' -x 'lib/gl*' -x 'po/*' -x 'maint.mk' -x '.gitignore' \ |
| | less |