summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Arch.pm
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2015-02-15 23:18:31 +0100
committerGuillem Jover <guillem@debian.org>2015-03-30 20:22:38 +0200
commit01abe8afb95f4bafb1f192fb3fe451a95cd2e3f8 (patch)
tree2384393b6e59f3b852a9ec70a4733e5f4310847a /scripts/Dpkg/Arch.pm
parent046ad868331a9f1581837404449b4320e6d09c36 (diff)
downloaddpkg-01abe8afb95f4bafb1f192fb3fe451a95cd2e3f8.tar.gz
perl: Rework use and exporter declarations
Place 'use' strict and warnings first, then Exporter 'our' declarations, then Test module imports, then system module imports, then Dpkg module imports, then 'use' parent and overload pragmas, separated by a blank line for each block. Split each exported symbol declaration into its own line to ease modifications.
Diffstat (limited to 'scripts/Dpkg/Arch.pm')
-rw-r--r--scripts/Dpkg/Arch.pm32
1 files changed, 22 insertions, 10 deletions
diff --git a/scripts/Dpkg/Arch.pm b/scripts/Dpkg/Arch.pm
index 9702bd09f..c71c7a69e 100644
--- a/scripts/Dpkg/Arch.pm
+++ b/scripts/Dpkg/Arch.pm
@@ -19,19 +19,31 @@ use strict;
use warnings;
our $VERSION = '0.01';
+our @EXPORT_OK = qw(
+ get_raw_build_arch
+ get_raw_host_arch
+ get_build_arch
+ get_host_arch
+ get_gcc_host_gnu_type
+ get_valid_arches
+ debarch_eq
+ debarch_is
+ debarch_is_wildcard
+ debarch_is_concerned
+ debarch_to_cpuattrs
+ debarch_to_gnutriplet
+ debarch_to_debtriplet
+ debarch_to_multiarch
+ debtriplet_to_debarch
+ debtriplet_to_gnutriplet
+ gnutriplet_to_debarch
+ gnutriplet_to_debtriplet
+ gnutriplet_to_multiarch
+);
use Exporter qw(import);
-our @EXPORT_OK = qw(get_raw_build_arch get_raw_host_arch
- get_build_arch get_host_arch get_gcc_host_gnu_type
- get_valid_arches debarch_eq debarch_is debarch_is_wildcard
- debarch_is_concerned
- debarch_to_cpuattrs
- debarch_to_gnutriplet gnutriplet_to_debarch
- debtriplet_to_gnutriplet gnutriplet_to_debtriplet
- debtriplet_to_debarch debarch_to_debtriplet
- gnutriplet_to_multiarch debarch_to_multiarch);
-
use POSIX qw(:errno_h);
+
use Dpkg ();
use Dpkg::Gettext;
use Dpkg::ErrorHandling;