libxs-object-magic-perl 0.4-1build1 source package in Ubuntu

Changelog

libxs-object-magic-perl (0.4-1build1) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 11:13:26 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe misc

Downloads

File Size SHA-256 Checksum
libxs-object-magic-perl_0.4.orig.tar.gz 64.7 KiB 3dea54e196d4ca13a5186dbe7b12d067ff4aaafb15f6e62a8bd1010c8f84cf0d
libxs-object-magic-perl_0.4-1build1.debian.tar.gz 1.9 KiB 81421ddaf974ae2a6bd0add6402a9f7bca2bdb1a6f43599f42a10b84a2af0e3d
libxs-object-magic-perl_0.4-1build1.dsc 2.2 KiB 932857c468d1fccc72b3c7c1416dd0d1907399634ef1d0f81132545e3d1c19d8

Available diffs

View changes file

Binary packages built by this source

libxs-object-magic-perl: module for opaque, extensible XS pointer backed objects using sv_magic

 XS::Object::Magic provides a way of associating structs with Perl space
 objects designed to supercede Perl's builtin "T_PTROBJ" with something that
 is designed to be:
 .
   * extensible: The association of the pointer using "sv_magicext" can be
     done on any data type, so you can associate C structs with any
     representation type. This means that you can add pointers to any object
     (hand coded, Moose or otherwise), while still having instance data in
     regular hashes.
   * opaque: The C pointer is neither visible nor modifiable from Perl space.
     This prevents accidental corruption which could lead to segfaults using
     "T_PTROBJ" (e.g. "$$ptr_obj = 0").