commit
e23c2773a2
@ -0,0 +1 @@
|
|||||||
|
SOURCES/Data-UUID-1.227.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
d378507a46b381e8c384b18798a86bd7fe9047fd SOURCES/Data-UUID-1.227.tar.gz
|
@ -0,0 +1,277 @@
|
|||||||
|
Name: perl-Data-UUID
|
||||||
|
Version: 1.227
|
||||||
|
Release: 2%{?dist}
|
||||||
|
Summary: Globally/Universally Unique Identifiers (GUIDs/UUIDs)
|
||||||
|
# Makefile.PL says BSD but LICENSE file is HP-1989
|
||||||
|
# LICENSE: HP-1989
|
||||||
|
# source/ptable.h: GPL-1.0-or-later OR Artistic-1.0-Perl
|
||||||
|
# Issue for license clarification
|
||||||
|
# https://github.com/bleargh45/Data-UUID/issues/26
|
||||||
|
License: HP-1989 AND (GPL-1.0-or-later OR Artistic-1.0-Perl)
|
||||||
|
URL: https://metacpan.org/release/Data-UUID
|
||||||
|
Source0: https://cpan.metacpan.org/modules/by-module/Data/Data-UUID-%{version}.tar.gz
|
||||||
|
# Module Build
|
||||||
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: findutils
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: perl-devel
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl(Config)
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
BuildRequires: perl(File::Spec)
|
||||||
|
BuildRequires: perl(Getopt::Long)
|
||||||
|
BuildRequires: perl(Pod::Usage)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
# Module Runtime
|
||||||
|
BuildRequires: perl(blib)
|
||||||
|
BuildRequires: perl(Carp)
|
||||||
|
BuildRequires: perl(Digest::MD5)
|
||||||
|
BuildRequires: perl(DynaLoader)
|
||||||
|
BuildRequires: perl(Exporter)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
# Test Suite
|
||||||
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(threads)
|
||||||
|
%if ! 0%{?_module_build}
|
||||||
|
# Optional Tests
|
||||||
|
BuildRequires: perl(Test::Pod) >= 1.14
|
||||||
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.06
|
||||||
|
%endif
|
||||||
|
# Dependencies
|
||||||
|
# (none)
|
||||||
|
|
||||||
|
# Avoid provides for private shared objects
|
||||||
|
%{?perl_default_filter}
|
||||||
|
|
||||||
|
%description
|
||||||
|
This module provides a framework for generating v3 UUIDs (Universally Unique
|
||||||
|
Identifiers, also known as GUIDs (Globally Unique Identifiers). A UUID is 128
|
||||||
|
bits long, and is guaranteed to be different from all other UUIDs/GUIDs
|
||||||
|
generated until 3400 CE.
|
||||||
|
|
||||||
|
UUIDs were originally used in the Network Computing System (NCS) and later in
|
||||||
|
the Open Software Foundation's (OSF) Distributed Computing Environment.
|
||||||
|
Currently many different technologies rely on UUIDs to provide unique identity
|
||||||
|
for various software components. Microsoft COM/DCOM for instance, uses GUIDs
|
||||||
|
very extensively to uniquely identify classes, applications and components
|
||||||
|
across network-connected systems.
|
||||||
|
|
||||||
|
The algorithm for UUID generation, used by this extension, is described in the
|
||||||
|
Internet Draft "UUIDs and GUIDs" by Paul J. Leach and Rich Salz (see RFC 4122).
|
||||||
|
It provides a reasonably efficient and reliable framework for generating UUIDs
|
||||||
|
and supports fairly high allocation rates - 10 million per second per machine -
|
||||||
|
and therefore is suitable for identifying both extremely short-lived and very
|
||||||
|
persistent objects on a given system as well as across the network.
|
||||||
|
|
||||||
|
This module provides several methods to create a UUID. In all methods,
|
||||||
|
<namespace> is a UUID and <name> is a free form string.
|
||||||
|
|
||||||
|
%package tests
|
||||||
|
Summary: Tests for %{name}
|
||||||
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||||
|
Requires: perl-Test-Harness
|
||||||
|
|
||||||
|
%description tests
|
||||||
|
Tests from %{name}. Execute them
|
||||||
|
with "%{_libexecdir}/%{name}/test".
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Data-UUID-%{version}
|
||||||
|
# Help generators to recognize Perl scripts
|
||||||
|
for F in t/*.t; do
|
||||||
|
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
|
||||||
|
chmod +x "$F"
|
||||||
|
done
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
make pure_install DESTDIR=%{buildroot}
|
||||||
|
find %{buildroot} -type f -name .packlist -delete
|
||||||
|
find %{buildroot} -type f -name '*.bs' -empty -delete
|
||||||
|
%{_fixperms} -c %{buildroot}
|
||||||
|
|
||||||
|
# Install tests
|
||||||
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
||||||
|
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
||||||
|
rm %{buildroot}%{_libexecdir}/%{name}/t/pod*
|
||||||
|
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
||||||
|
#!/bin/sh
|
||||||
|
cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
||||||
|
EOF
|
||||||
|
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test AUTHOR_TESTING=1
|
||||||
|
perl smp-test/collision.t
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
%doc Changes README
|
||||||
|
%{perl_vendorarch}/auto/Data/
|
||||||
|
%{perl_vendorarch}/Data/
|
||||||
|
%{_mandir}/man3/Data::UUID.3*
|
||||||
|
|
||||||
|
%files tests
|
||||||
|
%{_libexecdir}/%{name}
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.227-2
|
||||||
|
- Rebuilt for MSVSphere 10
|
||||||
|
|
||||||
|
* Thu Aug 08 2024 Troy Dawson <tdawson@redhat.com> - 1.227-2
|
||||||
|
- Bump release for Aug 2024 java mass rebuild
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Jitka Plesnikova <jplesnik@redhat.com> - 1.227-1
|
||||||
|
- Update to 1.227
|
||||||
|
- New maintainer, GTERMARS
|
||||||
|
- Add basic GitHub Actions setup for testing
|
||||||
|
- Typo corrections in POD
|
||||||
|
- Eliminated use of state/node files in temp directory
|
||||||
|
|
||||||
|
* Fri Jul 12 2024 Jitka Plesnikova <jplesnik@redhat.com> - 1.226-18
|
||||||
|
- Package tests
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.226-17
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Aug 29 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.226-14
|
||||||
|
- Update license to SPDX format
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.226-12
|
||||||
|
- Perl 5.38 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.226-9
|
||||||
|
- Perl 5.36 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 16 2021 Paul Howarth <paul@city-fan.org> - 1.226-7
|
||||||
|
- BR: perl(blib) for smp-test/collision.t
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.226-5
|
||||||
|
- Perl 5.34 rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.226-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.226-2
|
||||||
|
- Perl 5.32 rebuild
|
||||||
|
|
||||||
|
* Sun Apr 12 2020 Paul Howarth <paul@city-fan.org> - 1.226-1
|
||||||
|
- Update to 1.226
|
||||||
|
- Set umask before fopen in destructor (GH#35)
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.224-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.224-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.224-2
|
||||||
|
- Perl 5.30 rebuild
|
||||||
|
|
||||||
|
* Sun Mar 3 2019 Paul Howarth <paul@city-fan.org> - 1.224-1
|
||||||
|
- Update to 1.224
|
||||||
|
- Properly quote C strings passed in DEFINE
|
||||||
|
- Fix memory leak by decreasing reference count
|
||||||
|
- Use File::Spec to get tmpdir instead of hardcoding
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.221-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.221-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.221-11
|
||||||
|
- Perl 5.28 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.221-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.221-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.221-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.221-7
|
||||||
|
- Perl 5.26 rebuild
|
||||||
|
|
||||||
|
* Fri Apr 21 2017 Petr Hracek <phracek@redhat.com> - 1.221-6
|
||||||
|
- Don't include perl(Test::Pod) during modular build
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.221-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.221-4
|
||||||
|
- Perl 5.24 rebuild
|
||||||
|
|
||||||
|
* Thu Apr 21 2016 Paul Howarth <paul@city-fan.org> - 1.221-3
|
||||||
|
- Fix FTBFS due to missing buildreq perl-devel
|
||||||
|
- Simplify find commands using -empty and -delete
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.221-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Aug 11 2015 Paul Howarth <paul@city-fan.org> - 1.221-1
|
||||||
|
- Update to 1.221
|
||||||
|
- Documentation improvements
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.220-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.220-2
|
||||||
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
* Thu Dec 18 2014 Paul Howarth <paul@city-fan.org> - 1.220-1
|
||||||
|
- Update to 1.220
|
||||||
|
- Improve chances it'll work on Android
|
||||||
|
- Classify buildreqs by usage
|
||||||
|
- Use %%license
|
||||||
|
|
||||||
|
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.219-6
|
||||||
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.219-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.219-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 23 2013 Paul Howarth <paul@city-fan.org> - 1.219-3
|
||||||
|
- Change license to "BSD and MIT"
|
||||||
|
https://lists.fedoraproject.org/pipermail/legal/2013-August/002226.html
|
||||||
|
- Drop EL-5 compatibility (#998143)
|
||||||
|
|
||||||
|
* Sat Aug 17 2013 Paul Howarth <paul@city-fan.org> - 1.219-2
|
||||||
|
- Sanitize for Fedora submission
|
||||||
|
|
||||||
|
* Thu Aug 15 2013 Paul Howarth <paul@city-fan.org> - 1.219-1
|
||||||
|
- Initial RPM version
|
Loading…
Reference in new issue