2011-04-02 13:05:20 +00:00
|
|
|
#
|
2011-04-14 18:05:14 +00:00
|
|
|
# spec file for package uuid
|
2011-04-02 13:05:20 +00:00
|
|
|
#
|
2013-08-19 11:24:54 +00:00
|
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2011-04-02 13:05:20 +00:00
|
|
|
#
|
2011-05-27 09:29:47 +00:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2011-04-02 13:05:20 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: uuid
|
|
|
|
Version: 1.6.2
|
2013-08-19 11:24:54 +00:00
|
|
|
Release: 0
|
2013-11-11 08:46:27 +00:00
|
|
|
Summary: OSSP's Universally Unique Identifier generator
|
|
|
|
License: MIT
|
|
|
|
Group: Development/Libraries/C and C++
|
2011-04-14 18:05:14 +00:00
|
|
|
%define with_perl 1
|
2011-11-20 19:14:12 +00:00
|
|
|
Url: http://www.ossp.org/pkg/lib/uuid/
|
2013-11-11 08:46:27 +00:00
|
|
|
|
2011-11-20 19:14:12 +00:00
|
|
|
#Source: ftp://ftp.ossp.org/pkg/lib/%{name}/%{name}-%{version}.tar.gz
|
2011-04-14 18:05:14 +00:00
|
|
|
Source: %{name}-%{version}.tar.bz2
|
2011-04-21 10:38:16 +00:00
|
|
|
Patch0: uuid-1.5.0_perl_vendor_install.patch
|
2011-04-02 13:05:20 +00:00
|
|
|
Patch1: uuid-1.6.0_php.patch
|
2011-04-14 19:57:56 +00:00
|
|
|
Patch3: 0001-Change-library-name.patch
|
|
|
|
Patch4: 0002-uuid-preserve-m-option-status-in-v-option-handling.patch
|
|
|
|
Patch5: 0003-Fix-whatis-entries.patch
|
2013-11-11 08:46:27 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: pkgconfig
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-02 13:05:20 +00:00
|
|
|
%description
|
2011-11-20 19:10:10 +00:00
|
|
|
OSSP uuid is a ISO C99 application programming interface (API) and
|
2011-04-02 13:05:20 +00:00
|
|
|
corresponding command line interface (CLI) for the generation of DCE 1.1,
|
|
|
|
ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID).
|
|
|
|
It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3
|
|
|
|
(name based, MD5), version 4 (random number based) and version 5 (name based,
|
2011-11-20 19:10:10 +00:00
|
|
|
SHA-1). Additional API bindings are provided for the languages ISO-C++98,
|
|
|
|
Perl 5 and PHP 4/5. Optional backward compatibility exists for the ISO C
|
2011-04-02 13:05:20 +00:00
|
|
|
DCE-1.1 and Perl Data::UUID APIs.
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
UUIDs are 128-bit numbers which are intended to have a high likelihood of
|
2011-04-02 13:05:20 +00:00
|
|
|
uniqueness over space and time and are computationally difficult to guess. They
|
|
|
|
are globally unique identifiers which can be locally generated without
|
|
|
|
contacting a global registration authority. UUIDs are intended as unique
|
|
|
|
identifiers for both mass tagging objects with an extremely short lifetime and
|
|
|
|
to reliably identifying very persistent objects across a network.
|
|
|
|
|
2011-04-14 19:57:56 +00:00
|
|
|
%package -n ossp-uuid
|
|
|
|
Provides: %{name} = %{version}-%{release}
|
|
|
|
#
|
2011-11-20 19:10:10 +00:00
|
|
|
Summary: OSSP's Universally Unique Identifier generator
|
2013-08-19 11:24:54 +00:00
|
|
|
Group: Development/Libraries/C and C++
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 19:57:56 +00:00
|
|
|
%description -n ossp-uuid
|
2011-11-20 19:10:10 +00:00
|
|
|
OSSP uuid is a ISO C99 application programming interface (API) and
|
2011-04-14 19:57:56 +00:00
|
|
|
corresponding command line interface (CLI) for the generation of DCE 1.1,
|
|
|
|
ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID).
|
|
|
|
It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3
|
|
|
|
(name based, MD5), version 4 (random number based) and version 5 (name based,
|
2011-11-20 19:10:10 +00:00
|
|
|
SHA-1). Additional API bindings are provided for the languages ISO C++98,
|
|
|
|
Perl 5 and PHP 4/5. Optional backward compatibility exists for the ISO C
|
2011-04-14 19:57:56 +00:00
|
|
|
DCE-1.1 and Perl Data::UUID APIs.
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
UUIDs are 128-bit numbers which are intended to have a high likelihood of
|
2011-04-14 19:57:56 +00:00
|
|
|
uniqueness over space and time and are computationally difficult to guess. They
|
|
|
|
are globally unique identifiers which can be locally generated without
|
|
|
|
contacting a global registration authority. UUIDs are intended as unique
|
|
|
|
identifiers for both mass tagging objects with an extremely short lifetime and
|
|
|
|
to reliably identifying very persistent objects across a network.
|
|
|
|
|
|
|
|
%define pkg_libname libossp-uuid16
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%package -n %{pkg_libname}
|
2011-11-20 19:10:10 +00:00
|
|
|
Summary: OSSP's Universally Unique Identifier generator library
|
2013-11-11 08:46:27 +00:00
|
|
|
Group: System/Libraries
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%description -n %{pkg_libname}
|
2011-11-20 19:10:10 +00:00
|
|
|
OSSP uuid is a ISO C99 application programming interface (API) and
|
2011-04-02 13:05:20 +00:00
|
|
|
corresponding command line interface (CLI) for the generation of DCE 1.1,
|
|
|
|
ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID).
|
|
|
|
It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3
|
|
|
|
(name based, MD5), version 4 (random number based) and version 5 (name based,
|
2011-11-20 19:10:10 +00:00
|
|
|
SHA-1). Additional API bindings are provided for the languages ISO C++98,
|
|
|
|
Perl 5 and PHP 4/5. Optional backward compatibility exists for the ISO C
|
2011-04-02 13:05:20 +00:00
|
|
|
DCE-1.1 and Perl Data::UUID APIs.
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
UUIDs are 128-bit numbers which are intended to have a high likelihood of
|
2011-04-02 13:05:20 +00:00
|
|
|
uniqueness over space and time and are computationally difficult to guess. They
|
|
|
|
are globally unique identifiers which can be locally generated without
|
|
|
|
contacting a global registration authority. UUIDs are intended as unique
|
|
|
|
identifiers for both mass tagging objects with an extremely short lifetime and
|
|
|
|
to reliably identifying very persistent objects across a network.
|
|
|
|
|
|
|
|
|
|
|
|
This package contains the shared library of OSSP uuid.
|
|
|
|
|
2011-04-14 19:57:56 +00:00
|
|
|
%define pkg_cxx_libname libossp-uuid++16
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%package -n %{pkg_cxx_libname}
|
2011-11-20 19:10:10 +00:00
|
|
|
Summary: OSSP's Universally Unique Identifier generator library
|
2013-11-11 08:46:27 +00:00
|
|
|
Group: System/Libraries
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%description -n %{pkg_cxx_libname}
|
2011-11-20 19:10:10 +00:00
|
|
|
OSSP uuid is a ISO C99 application programming interface (API) and
|
2011-04-02 13:05:20 +00:00
|
|
|
corresponding command line interface (CLI) for the generation of DCE 1.1,
|
|
|
|
ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID).
|
|
|
|
It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3
|
|
|
|
(name based, MD5), version 4 (random number based) and version 5 (name based,
|
2011-11-20 19:10:10 +00:00
|
|
|
SHA-1). Additional API bindings are provided for the languages ISO C++98,
|
|
|
|
Perl 5 and PHP 4/5. Optional backward compatibility exists for the ISO-C
|
2011-04-02 13:05:20 +00:00
|
|
|
DCE-1.1 and Perl Data::UUID APIs.
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
UUIDs are 128-bit numbers which are intended to have a high likelihood of
|
2011-04-02 13:05:20 +00:00
|
|
|
uniqueness over space and time and are computationally difficult to guess. They
|
|
|
|
are globally unique identifiers which can be locally generated without
|
|
|
|
contacting a global registration authority. UUIDs are intended as unique
|
|
|
|
identifiers for both mass tagging objects with an extremely short lifetime and
|
|
|
|
to reliably identifying very persistent objects across a network.
|
|
|
|
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
This package contains the shared C++ library of OSSP uuid.
|
2011-04-02 13:05:20 +00:00
|
|
|
|
2011-04-14 19:57:56 +00:00
|
|
|
%define pkg_dce_libname libossp-uuid_dce16
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%package -n %{pkg_dce_libname}
|
2011-11-20 19:10:10 +00:00
|
|
|
Summary: OSSP's Universally Unique Identifier generator library
|
2013-11-11 08:46:27 +00:00
|
|
|
Group: System/Libraries
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%description -n %{pkg_dce_libname}
|
2011-11-20 19:10:10 +00:00
|
|
|
OSSP uuid is a ISO C99 application programming interface (API) and
|
2011-04-02 13:05:20 +00:00
|
|
|
corresponding command line interface (CLI) for the generation of DCE 1.1,
|
|
|
|
ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID).
|
|
|
|
It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3
|
|
|
|
(name based, MD5), version 4 (random number based) and version 5 (name based,
|
2011-11-20 19:10:10 +00:00
|
|
|
SHA-1). Additional API bindings are provided for the languages ISO C++98,
|
|
|
|
Perl 5 and PHP 4/5. Optional backward compatibility exists for the ISO-C
|
2011-04-02 13:05:20 +00:00
|
|
|
DCE-1.1 and Perl Data::UUID APIs.
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
UUIDs are 128-bit numbers which are intended to have a high likelihood of
|
2011-04-02 13:05:20 +00:00
|
|
|
uniqueness over space and time and are computationally difficult to guess. They
|
|
|
|
are globally unique identifiers which can be locally generated without
|
|
|
|
contacting a global registration authority. UUIDs are intended as unique
|
|
|
|
identifiers for both mass tagging objects with an extremely short lifetime and
|
|
|
|
to reliably identifying very persistent objects across a network.
|
|
|
|
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
This package contains the shared library of OSSP uuid with DCE compatibility.
|
2011-04-02 13:05:20 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%package devel
|
|
|
|
Requires: %{pkg_cxx_libname} = %{version}
|
|
|
|
Requires: %{pkg_dce_libname} = %{version}
|
2013-08-19 11:24:54 +00:00
|
|
|
Requires: %{pkg_libname} = %{version}
|
2011-04-14 18:05:14 +00:00
|
|
|
Summary: Development files for OSSP uuid
|
2013-08-19 11:24:54 +00:00
|
|
|
Group: Development/Libraries/C and C++
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%description devel
|
2011-11-20 19:10:10 +00:00
|
|
|
OSSP uuid is a ISO C99 application programming interface (API) and
|
2011-04-14 18:05:14 +00:00
|
|
|
corresponding command line interface (CLI) for the generation of DCE 1.1,
|
|
|
|
ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID).
|
|
|
|
It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3
|
|
|
|
(name based, MD5), version 4 (random number based) and version 5 (name based,
|
2011-11-20 19:10:10 +00:00
|
|
|
SHA-1). Additional API bindings are provided for the languages ISO C++98,
|
|
|
|
Perl 5 and PHP 4/5. Optional backward compatibility exists for the ISO-C
|
2011-04-14 18:05:14 +00:00
|
|
|
DCE-1.1 and Perl Data::UUID APIs.
|
2011-04-02 13:05:20 +00:00
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
UUIDs are 128-bit numbers which are intended to have a high likelihood of
|
2011-04-14 18:05:14 +00:00
|
|
|
uniqueness over space and time and are computationally difficult to guess. They
|
|
|
|
are globally unique identifiers which can be locally generated without
|
|
|
|
contacting a global registration authority. UUIDs are intended as unique
|
|
|
|
identifiers for both mass tagging objects with an extremely short lifetime and
|
|
|
|
to reliably identifying very persistent objects across a network.
|
|
|
|
|
|
|
|
|
|
|
|
This package contains the development files for OSSP uuid.
|
|
|
|
|
|
|
|
%if 0%{?with_perl}
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-02 13:05:20 +00:00
|
|
|
%package -n perl-OSSP-uuid
|
|
|
|
%if 0%{?suse_version} > 1020
|
|
|
|
Requires: perl-base = %{perl_version}
|
|
|
|
%else
|
|
|
|
Requires: perl = %{perl_version}
|
|
|
|
%endif
|
|
|
|
Summary: Perl bindings for OSSP uuid
|
2013-08-19 11:24:54 +00:00
|
|
|
Group: Development/Libraries/Perl
|
2011-07-25 13:57:27 +00:00
|
|
|
Provides: perl-Data-UUID = 1.217
|
|
|
|
Obsoletes: perl-Data-UUID <= 1.217
|
2011-11-18 15:58:48 +00:00
|
|
|
Provides: perl(Data::UUID) = 1.217
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-02 13:05:20 +00:00
|
|
|
%description -n perl-OSSP-uuid
|
2011-11-20 19:10:10 +00:00
|
|
|
OSSP uuid is a ISO C99 application programming interface (API) and
|
2011-04-02 13:05:20 +00:00
|
|
|
corresponding command line interface (CLI) for the generation of DCE 1.1,
|
|
|
|
ISO/IEC 11578:1996 and RFC 4122 compliant Universally Unique Identifier (UUID).
|
|
|
|
It supports DCE 1.1 variant UUIDs of version 1 (time and node based), version 3
|
|
|
|
(name based, MD5), version 4 (random number based) and version 5 (name based,
|
2011-11-20 19:10:10 +00:00
|
|
|
SHA-1). Additional API bindings are provided for the languages ISO C++98,
|
|
|
|
Perl 5 and PHP 4/5. Optional backward compatibility exists for the ISO-C
|
2011-04-02 13:05:20 +00:00
|
|
|
DCE-1.1 and Perl Data::UUID APIs.
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
UUIDs are 128-bit numbers which are intended to have a high likelihood of
|
2011-04-02 13:05:20 +00:00
|
|
|
uniqueness over space and time and are computationally difficult to guess. They
|
|
|
|
are globally unique identifiers which can be locally generated without
|
|
|
|
contacting a global registration authority. UUIDs are intended as unique
|
|
|
|
identifiers for both mass tagging objects with an extremely short lifetime and
|
|
|
|
to reliably identifying very persistent objects across a network.
|
|
|
|
|
|
|
|
|
2011-11-20 19:10:10 +00:00
|
|
|
This package contains the Perl bindings for OSSP uuid.
|
2011-04-02 13:05:20 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%endif
|
2011-04-02 13:05:20 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup
|
2024-02-21 10:27:43 +00:00
|
|
|
%patch -P 0
|
|
|
|
%patch -P 1
|
|
|
|
%patch -P 3 -p1
|
|
|
|
%patch -P 4 -p1
|
|
|
|
%patch -P 5 -p1
|
2011-04-02 13:05:20 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
export CXXFLAGS="%{optflags} -fno-strict-aliasing"
|
|
|
|
%configure \
|
2011-04-14 19:57:56 +00:00
|
|
|
--includedir=%{_includedir}/ossp/ \
|
2011-04-02 13:05:20 +00:00
|
|
|
--disable-static \
|
|
|
|
--with-cxx \
|
2011-04-14 18:05:14 +00:00
|
|
|
%if 0%{?with_php}
|
|
|
|
--with-php \
|
|
|
|
%endif
|
|
|
|
%if 0%{?with_perl}
|
2011-04-02 13:05:20 +00:00
|
|
|
--with-perl \
|
|
|
|
--with-perl-compat \
|
2011-04-14 18:05:14 +00:00
|
|
|
%endif
|
|
|
|
--with-dce
|
2012-01-29 01:00:24 +00:00
|
|
|
make LD_RUN_PATH="" %{?_smp_mflags}
|
2011-04-14 18:05:14 +00:00
|
|
|
|
|
|
|
%install
|
2013-11-11 08:46:27 +00:00
|
|
|
make install DESTDIR="%buildroot"
|
2011-04-14 18:05:14 +00:00
|
|
|
%perl_process_packlist
|
2011-04-21 10:38:16 +00:00
|
|
|
rm -rv %{buildroot}%{_libdir}/*.la
|
2011-04-14 21:12:52 +00:00
|
|
|
mv -v %{buildroot}%{_libdir}/pkgconfig/{,ossp-}uuid.pc
|
2011-04-14 20:46:14 +00:00
|
|
|
mv -v %{buildroot}%{_mandir}/man3/uuid.3{,ossp}
|
|
|
|
mv -v %{buildroot}%{_mandir}/man3/uuid++.3{,ossp}
|
2011-04-02 13:05:20 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
%ifnarch %arm
|
2011-04-21 10:38:16 +00:00
|
|
|
LD_LIBRARY_PATH="$PWD/.libs/" make check
|
2011-04-02 13:05:20 +00:00
|
|
|
%endif
|
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%post -n %{pkg_libname} -p /sbin/ldconfig
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%postun -n %{pkg_libname} -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%post -n %{pkg_dce_libname} -p /sbin/ldconfig
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%postun -n %{pkg_dce_libname} -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%post -n %{pkg_cxx_libname} -p /sbin/ldconfig
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%postun -n %{pkg_cxx_libname} -p /sbin/ldconfig
|
2011-04-02 13:05:20 +00:00
|
|
|
|
2011-04-14 19:57:56 +00:00
|
|
|
%files -n ossp-uuid
|
2011-04-02 13:05:20 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS BINDINGS ChangeLog HISTORY NEWS OVERVIEW README SEEALSO THANKS TODO USERS
|
|
|
|
%{_mandir}/man1/uuid.1*
|
|
|
|
%{_bindir}/uuid
|
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%files -n %{pkg_libname}
|
|
|
|
%defattr(-,root,root,-)
|
2011-04-14 19:57:56 +00:00
|
|
|
%{_libdir}/libossp-uuid.so.*
|
2011-04-14 18:05:14 +00:00
|
|
|
|
|
|
|
%files -n %{pkg_dce_libname}
|
|
|
|
%defattr(-,root,root,-)
|
2011-04-14 19:57:56 +00:00
|
|
|
%{_libdir}/libossp-uuid_dce.so.*
|
2011-04-14 18:05:14 +00:00
|
|
|
|
|
|
|
%files -n %{pkg_cxx_libname}
|
2011-04-02 13:05:20 +00:00
|
|
|
%defattr(-,root,root,-)
|
2011-04-14 19:57:56 +00:00
|
|
|
%{_libdir}/libossp-uuid++.so.*
|
2011-04-02 13:05:20 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/uuid-config
|
2011-04-14 19:57:56 +00:00
|
|
|
%dir %{_includedir}/ossp/
|
|
|
|
%{_includedir}/ossp/uuid.h
|
|
|
|
%{_includedir}/ossp/uuid_dce.h
|
|
|
|
%{_includedir}/ossp/uuid++.hh
|
|
|
|
%{_libdir}/pkgconfig/ossp-uuid.pc
|
|
|
|
%{_libdir}/libossp-uuid.so
|
|
|
|
%{_libdir}/libossp-uuid_dce.so
|
|
|
|
%{_libdir}/libossp-uuid++.so
|
2011-04-02 13:05:20 +00:00
|
|
|
%{_mandir}/man3/uuid.3*
|
|
|
|
%{_mandir}/man3/uuid++.3*
|
|
|
|
%{_mandir}/man1/uuid-config.1*
|
|
|
|
|
2011-04-14 18:05:14 +00:00
|
|
|
%if 0%{?with_perl}
|
2011-05-27 09:29:47 +00:00
|
|
|
|
2011-04-02 13:05:20 +00:00
|
|
|
%files -n perl-OSSP-uuid
|
|
|
|
%defattr(-,root,root,-)
|
2011-04-14 18:05:14 +00:00
|
|
|
%{perl_vendorarch}/auto/OSSP/
|
|
|
|
%{perl_vendorarch}/OSSP/
|
2011-04-02 13:05:20 +00:00
|
|
|
#
|
2011-04-14 18:05:14 +00:00
|
|
|
%dir %{perl_vendorarch}/Data/
|
2011-04-02 13:05:20 +00:00
|
|
|
%{perl_vendorarch}/Data/UUID.pm
|
|
|
|
%{perl_vendorarch}/Data/UUID.pod
|
2011-04-14 18:05:14 +00:00
|
|
|
#
|
2011-04-02 13:05:20 +00:00
|
|
|
%{_mandir}/man3/OSSP::uuid.3*
|
|
|
|
%{_mandir}/man3/Data::UUID.3*
|
2011-04-14 18:05:14 +00:00
|
|
|
%if 0%{?suse_version} && 0%{?suse_version} < 1140
|
2011-04-04 09:57:03 +00:00
|
|
|
/var/adm/perl-modules/uuid
|
2011-04-14 18:05:14 +00:00
|
|
|
%endif
|
2011-04-04 09:57:03 +00:00
|
|
|
%endif
|
2011-04-02 13:05:20 +00:00
|
|
|
|
|
|
|
%changelog
|