libsocket-getaddrinfo-perl 0.22-4 source package in Ubuntu

Changelog

libsocket-getaddrinfo-perl (0.22-4) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * Remove Jonathan Yu from Uploaders. Thanks for your work!
  * Remove Nathan Handler from Uploaders. Thanks for your work!

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Repository.
  * Remove constraints unnecessary since stretch:
    + Build-Depends: Drop versioned constraint on perl.
    + libsocket-getaddrinfo-perl: Drop versioned constraint on perl in Depends.

 -- Jelmer Vernooij <email address hidden>  Fri, 17 Jun 2022 10:31:13 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libsocket-getaddrinfo-perl_0.22-4.dsc 2.3 KiB e88b44ba4483c9b8063fff2c071ec44b8fcd7cbd10f8253306fad1d8a22045c4
libsocket-getaddrinfo-perl_0.22.orig.tar.gz 88.5 KiB 097c4c02bfda4f3042fb2978f6e4ca5991202ef26ceb782bb76430a01812fcbe
libsocket-getaddrinfo-perl_0.22-4.debian.tar.xz 5.7 KiB 11459681e2a2b15eed59f75a3d114a17c76736faadda36d02f9d4e53a957644d

Available diffs

No changes file available.

Binary packages built by this source

libsocket-getaddrinfo-perl: module implementing getaddrinfo and getnameinfo

 Socket::GetAddrInfo provides a Perl implementation of the getaddrinfo and
 getnameinfo functions as described in RFC 2553. These functions are useful for
 converting between a pair of host name/service name and socket addresses, or
 vice versa.
 .
 This module uses underlying C code to do most of the work if possible, but can
 also fall back on some mostly-compatible emulation code written in Perl. This
 means that this module is a fairly portable implementation of these functions.
 .
 As of Perl version 5.14.0, Perl already supports `getaddrinfo' in core. On
 such a system, this module simply uses the functions provided by `Socket',
 and does not need to use its own compiled XS, or pure-perl legacy emulation.
 .
 As `Socket' in core now provides all the functions also provided by this
 module, it is likely this may be the last released version of this module.
 And code currently using this module would be advised to switch to using core
 `Socket' instead.