libscalar-properties-perl 1.100860-3 source package in Ubuntu

Changelog

libscalar-properties-perl (1.100860-3) unstable; urgency=medium

  * Team upload.
  * Update debian/upstream/metadata.
  * autopkgtests: skip use.t.
  * Declare compliance with Debian Policy 4.6.1.
  * Set Rules-Requires-Root: no.
  * Bump debhelper-compat to 13.

 -- gregor herrmann <email address hidden>  Sun, 03 Jul 2022 21:02:50 +0200

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
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libscalar-properties-perl_1.100860-3.dsc 2.4 KiB f1fe74413fb419a0d75620bb3c2b8b9d78a9453b30b23af21786d6c0b509a84c
libscalar-properties-perl_1.100860.orig.tar.gz 24.4 KiB d1a7010d7871d8abfe72d4c1cf72e33780a6ef0ebc6acb0d2e6a44b9933f0a92
libscalar-properties-perl_1.100860-3.debian.tar.xz 3.0 KiB 5ad1659313a6146ad25709ab7befa1cce9bb6955484ac49c8dffef7e928edda4

Available diffs

No changes file available.

Binary packages built by this source

libscalar-properties-perl: perl module to add run-time properties on scalar variables

 Scalar::Properties attempts to make Perl more object-oriented by
 taking an idea from Ruby: Everything you manipulate is an object,
 and the results of those manipulations are objects themselves.
 .
 'hello world'->length
 (-1234)->abs
 "oh my god, it's full of properties"->index('g')
 .
 The first example asks a string to calculate its length. The second
 example asks a number to calculate its absolute value. And the
 third example asks a string to find the index of the letter 'g'.
 .
 Using this module you can have run-time properties on initialized
 scalar variables and literal values. The word 'properties' is used
 in the Perl 6 sense: out-of-band data, little sticky notes that
 are attached to the value. While attributes (as in Perl 5's attribute
 pragma, and see the Attribute::* family of modules) are handled
 at compile-time, properties are handled at run-time.