diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:45:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:45:20 +0000 |
commit | 9a08cbfcc1ef900a04580f35afe2a4592d7d6030 (patch) | |
tree | 004cc7027bca2f2c0bcb5806527c8e0c48df2d6e /doc/README.api | |
parent | Initial commit. (diff) | |
download | dpkg-9a08cbfcc1ef900a04580f35afe2a4592d7d6030.tar.xz dpkg-9a08cbfcc1ef900a04580f35afe2a4592d7d6030.zip |
Adding upstream version 1.19.8.upstream/1.19.8upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/README.api')
-rw-r--r-- | doc/README.api | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/README.api b/doc/README.api new file mode 100644 index 0000000..8d72f63 --- /dev/null +++ b/doc/README.api @@ -0,0 +1,35 @@ +This is an (incomplete) list of currently provided APIs by dpkg, and +their supported status. + + +What: libdpkg.a (C static library) +Status: volatile +Description: + The API provided by this library is highly volatile, still in the process + of being cleaned up. It's only supposed to be used internally by dpkg for + now. Header files, functions, variables and types might get renamed, + removed or change semantics. If you still have a need to use it, which + you'd be doing anyway, say by locally building dpkg to get the library, + then define the C preprocessor macro LIBDPKG_VOLATILE_API in your build + to acknowledge that fact. + +What: libdpkg-perl (perl modules) +Status: stable +Description: + Among the perl modules provided by libdpkg-perl, you can safely rely on + those that have $VERSION set to 1.00 (or higher). Note however that the + API is defined by what's documented in the corresponding manual pages and + nothing more. You can't assume anything else based on what you read in + the source code. If you feel the need for further refinements in the + documented API, don't hesitate to file a wishlist bug against + libdpkg-perl. + . + In case of API-breaking changes, the major number in $VERSION will be + increased. For API extensions, the minor number will be increased. + +What: custom changelog parsers as Dpkg::Changelog derived modules +Status: stable +Description: + Since dpkg 1.18.8, custom changelog parsers are supported as modules + derived from the Dpkg::Changelog module. The derived modules need to + implement all required documented methods. |