1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/bin/bash
# variables -- definitions used by gen-control.sh and search-for-new.sh
#
# This file is part of the forensics-all.
#
# Copyright 2018-2025 Joao Eriberto Mota Filho <eriberto@debian.org>
#
# You can use this program under the BSD-3-Clause conditions.
#################
### Variables ###
#################
# Standards Version
STD_VER=4.7.3
# Debhelper level
DH_LEVEL=13
# Here is the list of packages in main/Sid.
LIST='/var/lib/apt/lists/*debian.org_debian_dists_sid_main_binary-*_Packages'
# The following packages will be included as 'logical or' in Depends field.
# However, it can generate a false positive. So, it will be excluded from
# procedures to be executed by search-for-new.sh. Please, check if these
# packages are present in repository. Use apt-cache search command.
IGNORE1='^crack|crack-md5' # See #852846
IGNORE2=''
IGNORE3=''
IGNORE4=''
# These type of files are dependencies for other packages and will be excluded.
# Do not use spaces between names. You can use regex here.
NOTDEPEND='-common$|-data|-dbg$|-dkms$|-doc$|^lib|^python'
|