libponapi-client-perl 0.002012-2 source package in Ubuntu

Changelog

libponapi-client-perl (0.002012-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository.
  * Update standards version to 4.5.0, no changes needed.
  * Bump debhelper from old 12 to 13.
  * Set upstream metadata fields: Repository.
  * Update standards version to 4.6.0, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Wed, 07 Dec 2022 01:35:28 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libponapi-client-perl_0.002012-2.dsc 2.2 KiB 9c15b5609fc36606c4fde5a9a7e9adf1f3fddca16360f8d971dee522c20e31dc
libponapi-client-perl_0.002012.orig.tar.gz 19.6 KiB 9cf0a44a8891f876e437ff2a6ff527847a16082b02006bbf0a17777ca6883131
libponapi-client-perl_0.002012-2.debian.tar.xz 2.1 KiB 0b9b0a46e66ed441d0cf869854e41465af06dcf9fd621d622d94573dd47af5c7

Available diffs

No changes file available.

Binary packages built by this source

libponapi-client-perl: client to a JSON:API v1.0 service

 PONAPI::Client is a JSON:API compliant client; it should be able to communicate
 with any API-compliant service.
 .
 The client does a handful of checks required by the spec, then uses Hijk to
 communicate with the service.
 .
 In most cases, all API methods return a response document:
 .
 my $response = $client->retrieve(...);
 .
 In list context however, all API methods will return the request status and
 the document:
 .
 my ($status, $response) = $client->retrieve(...)