]> git.pld-linux.org Git - packages/perl-Data-UUID.git/blame - perl-Data-UUID.spec
perl 5.38.0 rebuild
[packages/perl-Data-UUID.git] / perl-Data-UUID.spec
CommitLineData
a8b95af8 1#
2# Conditional build:
f0d2f6c4 3%bcond_without tests # Do not perform "make test"
a8b95af8 4#
3d494a4b 5%define pdir Data
6%define pnam UUID
a8b95af8 7Summary: Data::UUID - Perl extension for generating GUIDs/UUIDs
9df1028a 8Summary(pl.UTF-8): Data::UUID - rozszerzenie Perla do generowania GUID-ów/UUID-ów
a8b95af8 9Name: perl-Data-UUID
4cc84d60 10Version: 1.224
ba184164 11Release: 6
f4ad8a6a 12License: distributable
a8b95af8 13Group: Development/Languages/Perl
700b897d 14Source0: http://www.cpan.org/modules/by-module/Data/%{pdir}-%{pnam}-%{version}.tar.gz
4cc84d60 15# Source0-md5: 71510bbcce760c394591fca83a9b5e6d
8af6f9db 16Patch0: %{name}-types.patch
700b897d 17URL: http://search.cpan.org/dist/Data-UUID/
d128df21 18BuildRequires: perl-devel >= 1:5.8.0
a049f218 19BuildRequires: rpm-perlprov >= 4.1-13
a8b95af8 20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23This module provides a framework for generating UUIDs (Universally
24Unique Identifiers, also known as GUIDs (Globally Unique Identifiers).
25A UUID is 128 bits long, and is guaranteed to be different from all
26other UUIDs/GUIDs generated until 3400 A.D. UUIDs were originally used
27in the Network Computing System (NCS) and later in the Open Software
28Foundation's (OSF) Distributed Computing Environment. Currently many
29different technologies rely on UUIDs to provide unique identity for
30various software components.
31
0580b049
JR
32%description -l pl.UTF-8
33Moduł Perla Data::UUID udostępnia szkielet do generowania UUID-ów
34(Universally Unique Identifiers - identyfikatorów unikalnych
35powszechnie), znanych też jako GUID-y (Globally Unique Identifiers -
36identyfikatory unikalne globalnie). UUID-y są 128-bitowe i
37gwarantowana jest ich unikalność wśród wszyskich innych UUID-ów/
38/GUID-ów wygenerowanych do roku 3400. UUID-y pierwotnie były używane w
39Network Computing System (NCS), a później w Rozproszonym Środowisku
a8b95af8 40Obliczeniowym (Distributed Computing Environment) Fundacji Open
41Software (OSF). Obecnie na zagwarantowanych przez UUID-y unikalnych
0580b049
JR
42identyfikatorach dla różnych składników oprogramowania opartych jest
43wiele różnych technologii
a8b95af8 44
45%prep
46%setup -q -n %{pdir}-%{pnam}-%{version}
8af6f9db 47%patch0 -p1
a8b95af8 48
49%build
a049f218 50%{__perl} Makefile.PL </dev/null \
520c380d 51 INSTALLDIRS=vendor
aacd0967 52%{__make} \
90ad55fd 53 CC="%{__cc}" \
aacd0967 54 OPTIMIZE="%{rpmcflags}"
a8b95af8 55
f0d2f6c4 56%{?with_tests:%{__make} test}
a8b95af8 57
58%install
59rm -rf $RPM_BUILD_ROOT
60
61%{__make} install \
62 DESTDIR=$RPM_BUILD_ROOT
63
64%clean
65rm -rf $RPM_BUILD_ROOT
66
67%files
68%defattr(644,root,root,755)
69%doc Changes README
a049f218 70%{perl_vendorarch}/Data/UUID.pm
71%dir %{perl_vendorarch}/auto/Data/UUID
a049f218 72%attr(755,root,root) %{perl_vendorarch}/auto/Data/UUID/UUID.so
a8b95af8 73%{_mandir}/man3/*
This page took 0.130539 seconds and 4 git commands to generate.