Commit Graph

5 Commits

Author SHA1 Message Date
Fedora Release Engineering
ab0e7e7ecb - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-07-28 13:43:07 +00:00
Jitka Plesnikova
936368b281 Perl 5.32 rebuild 2020-06-22 17:57:56 +02:00
Paul Howarth
7923f14a71 Use %{make_build} and %{make_install} 2020-04-24 15:11:23 +01:00
Paul Howarth
8cbaca3702 Initial import (perl-B-COW-0.004-1)
B::COW provides some naïve additional B helpers to check the Copy On Write
(COW) status of one SvPV (a Perl string variable).

A COWed SvPV is sharing its string (the PV) with other SvPVs. It's a (kind of)
Read Only C string, which would be Copied On Write (COW). More than one SV can
share the same PV, but when one PV needs to alter it, it would perform a copy
of it, decreasing the COWREFCNT counter. One SV can then drop the COW flag when
it's the only one holding a pointer to the PV. The COWREFCNT is stored at the
end of the PV, after the null byte terminating the string. That value is
limited to 255: when we reach 255, a new PV would be created.
2020-04-24 14:45:52 +01:00
Gwyn Ciesla
21d6fcd861 Added the README 2020-04-24 13:38:13 +00:00