Explorar el Código

Dpkg::BuildProfiles: Mark the module as a public interface

Guillem Jover hace 11 años
padre
commit
1b7cbd6176
Se han modificado 3 ficheros con 9 adiciones y 1 borrados
  1. 1 0
      debian/changelog
  2. 1 0
      debian/control
  3. 7 1
      scripts/Dpkg/BuildProfiles.pm

+ 1 - 0
debian/changelog

@@ -23,6 +23,7 @@ dpkg (1.17.17) UNRELEASED; urgency=low
     - New Dpkg::Getopt private module.
     - Document public module Dpkg.
     - Document public module Dpkg::Gettext.
+    - Mark Dpkg::BuildProfiles as a public module.
   * Set the DEB_TARGET_* dpkg-architecture variables from architecture.mk.
     Missed in dpkg 1.17.14.
   * Initialize DEB_TARGET_ARCH variable without requiring DEB_HOST_ARCH,

+ 1 - 0
debian/control

@@ -103,6 +103,7 @@ Description: Dpkg perl modules
   - Dpkg: core variables
   - Dpkg::BuildFlags: set, modify and query compilation build flags
   - Dpkg::BuildOptions: parse and manipulate DEB_BUILD_OPTIONS
+  - Dpkg::BuildProfile: parse and manipulate build profiles
   - Dpkg::Changelog: parse Debian changelogs
   - Dpkg::Checksums: generate and parse checksums
   - Dpkg::Compression::Process: wrapper around compression tools

+ 7 - 1
scripts/Dpkg/BuildProfiles.pm

@@ -18,7 +18,7 @@ package Dpkg::BuildProfiles;
 use strict;
 use warnings;
 
-our $VERSION = '0.01';
+our $VERSION = '1.00';
 our @EXPORT_OK = qw(get_build_profiles set_build_profiles parse_build_profiles
                     evaluate_restriction_formula);
 
@@ -130,6 +130,12 @@ sub evaluate_restriction_formula {
 
 =back
 
+=head1 CHANGES
+
+=head2 Version 1.00
+
+Mark the module as public.
+
 =cut
 
 1;