Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-Set-Object | Distribution: openSUSE Leap 16.0 |
Version: 1.42 | Vendor: openSUSE |
Release: lp160.1.1 | Build date: Sat Jan 22 04:08:30 2022 |
Group: Unspecified | Build host: reproducible |
Size: 121749 | Source RPM: perl-Set-Object-1.42-lp160.1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://metacpan.org/release/Set-Object | |
Summary: Set of objects and strings |
This modules implements a set of objects, that is, an unordered collection of objects without duplication. The term _objects_ is applied loosely - for the sake of Set::Object, anything that is a reference is considered an object. Set::Object 1.09 and later includes support for inserting scalars (including the empty string, but excluding 'undef') as well as objects. This can be thought of as (and is currently implemented as) a degenerate hash that only has keys and no values. Unlike objects placed into a Set::Object, scalars that are inserted will be flattened into strings, so will lose any magic (eg, tie) or other special bits that they went in with; only strings come out.
Artistic-2.0
* Sat Jan 22 2022 Tina Müller <[email protected]> - updated to 1.42 see /usr/share/doc/packages/perl-Set-Object/Changes.pod =head1 1.42, 2022-01-21 =over =item * Fix C<%h={}> warning, by Pauwel Coppieters =item * add F<examples/slow-sort.pl>. see RT #90070 =back * Mon Jan 18 2021 Tina Müller <[email protected]> - updated to 1.41 see /usr/share/doc/packages/perl-Set-Object/Changes.pod =head1 1.41, 2021-01-17 =over =item * Use meta-spec 2, Moose -> dev.requires not runtime.recommends (GH #6, RT #134034) by mohawk =back * Mon Jan 20 2020 <[email protected]> - updated to 1.40 see /usr/share/doc/packages/perl-Set-Object/Changes.pod =head1 1.40, 2020-01-19 =over =item * Fixed perl5.28 regressions (not cperl), for @$set args to other set functions. (RT #131345). Fixed by adding missing SvGETMAGIC expansions to all args. =item * Bumped minimal required perl version to 5.8 for arrayref @$set behavior. =item * Fixed the smokers and some author tests. =back * Tue Jan 09 2018 [email protected] - updated to 1.39 see /usr/share/doc/packages/perl-Set-Object/Changes.pod =head1 1.39, 2018-01-08 =over =item * Skip installing Changes.pod (PR #5, kentfredric) =back * Tue Nov 14 2017 [email protected] - updated to 1.38 see /usr/share/doc/packages/perl-Set-Object/Changes.pod =head1 1.38, 2017-11-11 =over =item * Add test_cover and release targets =back =head1 1.37, 2017-11-11 =over =item * Test fixes for -Ddefault_inc_excludes_dot, RT #120540 =item * Skip failing threads test <= 5.10.0 =item * Add CI hooks =back * Sat Nov 11 2017 [email protected] - updated to 1.36 see /usr/share/doc/packages/perl-Set-Object/Changes.pod =head1 1.36, 2017-11-10 =over =item * Davem fixed get-magic for the new arguments, fixing NetHack-Item L<[perl #132152]|https://rt.perl.org/Public/Bug/Display.html?id=132152>. See L<[cpan #123582]|https://rt.cpan.org/Ticket/Display.html?id=123582> =item * Stabilize F<t/misc/kwalitee.t> test =back * Mon Jun 15 2015 [email protected] - updated to 1.35 see /usr/share/doc/packages/perl-Set-Object/Changes.pod =head1 1.35, 2015-06-10 =over =item * Change to Artistic License 2.0 =item * Add more misc tests. Add use strict to Set::Object::Weak =back * Sun Feb 09 2014 [email protected] - updated to 1.34, no changelog * Tue Jun 04 2013 [email protected] - updated to 1.31 Changes.pod patch by Gregor Hermann, debian perl group - RT#85244 Fixes for 5.16 and newer - RT#83426 Sort by member names, not the refs. Fix wrong weak test with globals. Changed to lexicals and use strict/warnings. Fix F<t/misc/segfault.t>, check SvMAGICAL before doing C<mg_find> Fixed wrong C format types in warnings and C<SET_OBJECT_MAGIC_backref>. Added PREREQ_PMs, make L<Test::LeakTrace> and L<Moose> an optional dependency for F<t/misc/more_leaks.t> - Obsoletes perl-Set-Object-1.28-return_value.diff * Fri Nov 18 2011 [email protected] - use original .tar.gz * Wed Dec 01 2010 [email protected] - switch to perl_requires macro * Mon Nov 29 2010 [email protected] - remove /var/adm/perl-modules * Tue Oct 19 2010 [email protected] - add perl as explicit buildrequire * Mon Aug 23 2010 [email protected] - update to 1.28 * Fixed a portability concern for some platforms' C compilers (that do not support //-style comments) - RT#52690 * Valid SIGNATURE file - RT#50492 * Sun Jan 10 2010 [email protected] - enable parallel build * Tue Jan 20 2009 [email protected] - update to 1.27 * Fix a typo that affected building against Perls with debugging enabled. * Methods which destroyed C<$@> due to internal use of C<eval> now properly call C<local($@)> * Define behaviour when dealing with return values from operations on weak sets. No longer hard-coded "Set::Object" - may affect Set::Object sub-classes (Sam). * more bugfixes * Fri Jul 25 2008 [email protected] - update to 1.25 * Portability: support Perls before 5.7.3, and make this dependency explicit in the F<Makefile.PL> * Remove threads test which had inadvertantly slipped into the MANIFEST from source control, and add comprehensive documentation on the state of thread support in this module. * Make behaviour when dealing with items which were C<undef> defined. * Mon Oct 08 2007 [email protected] - update to 1.22 * Sub-classing interface added; it is now much easier to make L<Set::Object> subclasses that return objects other than more L<Set::Object>s when subclassing. * Mon Feb 19 2007 [email protected] - update to 1.21 - remove last patch (fixed in upstream, the only change in this release) * Fri Feb 16 2007 [email protected] - update to 1.20 * The C<-E<gt>compare> function was returning "disjoint" for empty sets. * Document lots of methods that were previously not documented. * Fix C<Set::Object::Weak::set()>. It was not passing its arguments to C<Set::Object::Weak-E<gt>new()>, which was very broken. - fix misc/pod_coverage.t * Thu Jan 25 2007 [email protected] - update to 1.19 * New class C<Set::Object::Weak>, which all weak sets should get re-blessed into when you call C<-E<gt>weaken>. Also added alternative methods of constructing weak sets. * Fix a memory leak with scalar members (the internal hash used to store the items was never being freed). * Tue Sep 19 2006 [email protected] - update to 1.18 * Add note to man page on compatibility of C<Storable> serializations of C<Set::Object>s between revisions. * fix build for non-gcc compilers * Thu Sep 14 2006 [email protected] - update to 1.17 * fix compile problem affecting some platforms * Tue Jul 18 2006 [email protected] - update to 1.16 * weak reference support - fix random return value * Tue Jul 11 2006 [email protected] - update to 1.15 - minor release * Wed Jan 25 2006 [email protected] - converted neededforbuild to BuildRequires * Wed Jan 04 2006 [email protected] - update to 1.14 * Mon Aug 01 2005 [email protected] - update to 1.11 * Thu Aug 19 2004 [email protected] - update to 1.06 * Thu Feb 26 2004 [email protected] - update to 1.05 * Fri Aug 22 2003 [email protected] - require the perl version we build with * Thu Jul 24 2003 [email protected] - update to 1.03a * Tue Jul 15 2003 [email protected] - adapt to perl-5.8.1 - use %perl_process_packlist * Wed Jun 18 2003 [email protected] - package directories * Thu May 22 2003 [email protected] - use $RPM_OPT_FLAGS - fix filelist * Tue May 20 2003 [email protected] - remove unpackaged files * Tue Jul 02 2002 [email protected] - remove race in .packlist generation * Thu Aug 02 2001 [email protected] - initial package release (version 1.02)
/usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/Set /usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/Set/Object /usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/Set/Object.pm /usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/Set/Object/Weak.pm /usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/auto/Set /usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/auto/Set/Object /usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/auto/Set/Object/Object.so /usr/lib/perl5/vendor_perl/5.38.2/aarch64-linux-thread-multi/auto/Set/Object/autosplit.ix /usr/share/doc/packages/perl-Set-Object /usr/share/doc/packages/perl-Set-Object/README /usr/share/doc/packages/perl-Set-Object/examples /usr/share/doc/packages/perl-Set-Object/examples/slow-sort.pl /usr/share/licenses/perl-Set-Object /usr/share/licenses/perl-Set-Object/LICENSE /usr/share/man/man3/Set::Changes.3pm.gz /usr/share/man/man3/Set::Object.3pm.gz /usr/share/man/man3/Set::Object::Weak.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Dec 2 23:33:16 2024