]> git.pld-linux.org Git - packages/perl-IO-LockedFile.git/commitdiff
- new
authorElan Ruusamäe <glen@pld-linux.org>
Sun, 30 Oct 2005 19:17:56 +0000 (19:17 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    perl-IO-LockedFile.spec -> 1.1

perl-IO-LockedFile.spec [new file with mode: 0644]

diff --git a/perl-IO-LockedFile.spec b/perl-IO-LockedFile.spec
new file mode 100644 (file)
index 0000000..a3ba6c3
--- /dev/null
@@ -0,0 +1,52 @@
+#
+# Conditional build:
+%bcond_with    tests           # perform "make test"
+#
+%include       /usr/lib/rpm/macros.perl
+%define        pdir    IO
+%define        pnam    LockedFile
+Summary:       IO::LockedFile Class - supply object methods for locking files
+Name:          perl-IO-LockedFile
+Version:       0.23
+Release:       0.1
+# same as perl
+License:       GPL v1+ or Artistic
+Group:         Development/Languages/Perl
+Source0:       http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
+# Source0-md5: f447f67ac7c9f42d86d07ca7477cdec6
+BuildRequires: perl-devel >= 1:5.8.0
+BuildRequires: rpm-perlprov >= 4.1-13
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+In its simplistic use, the IO::LockedFile class gives us the same 
+interface of the IO::File class with the unique difference that the 
+files we deal with are locked using the Flock mechanism (using the 
+flock function).
+
+%prep
+%setup -q -n %{pdir}-%{pnam}-%{version}
+
+%build
+%{__perl} Makefile.PL \
+       INSTALLDIRS=vendor
+%{__make}
+
+%{?with_tests:%{__make} test}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} pure_install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc Changes README
+%{perl_vendorlib}/IO/*.pm
+%{perl_vendorlib}/IO/LockedFile
+%{_mandir}/man3/*
This page took 0.091154 seconds and 4 git commands to generate.