1 # Copyright © 2016-2022 Guillem Jover <guillem@debian.org>
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <https://www.gnu.org/licenses/>.
20 Dpkg::BuildInfo - handle build information
24 The Dpkg::BuildInfo module provides functions to handle the build
29 package Dpkg
::BuildInfo
1.00;
38 use Exporter
qw(import);
44 =item @envvars = get_build_env_allowed()
46 Get an array with the allowed list of environment variables that can affect
47 the build, but are still not privacy revealing.
94 # Dynamic linker, see ld(1).
98 # Locale, see locale(1).
115 # Build flags, see dpkg-buildpackage(1).
120 # DEB_flag_{SET,STRIP,APPEND,PREPEND} will be recorded after being merged
121 # with system config and user config.
131 # See dpkg-architecture(1).
135 # See Dpkg::Vendor(3).
139 # See dpkg-gensymbols(1).
141 DPKG_GENSYMBOLS_CHECK_LEVEL
143 # See <https://reproducible-builds.org/specs/source-date-epoch>.
149 sub get_build_env_allowed
{
157 =head2 Version 1.00 (dpkg 1.21.14)
159 Mark the module as public.