Compare commits

...

5 Commits
rawhide ... el5

Author SHA1 Message Date
Fedora Release Engineering 25460f7936 dist-git conversion 2010-07-29 06:42:42 +00:00
Bill Nottingham 78a3e0a3f5 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 02:11:03 +00:00
Tom Callaway b514851e02 sync up 2008-07-21 18:58:36 +00:00
Toshio くらとみ 169d25876d Initialize branch EL-5 for perl-File-Which 2007-11-15 19:07:05 +00:00
Tom Callaway 60e44af067 fix br, license 2007-10-15 20:41:46 +00:00
3 changed files with 13 additions and 23 deletions

View File

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: perl-File-Which
# $Id$
NAME := perl-File-Which
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View File

@ -1,15 +1,16 @@
Name: perl-File-Which
Version: 0.05
Release: 2%{?dist}
Release: 4%{?dist}
Summary: Portable implementation of the 'which' utility
Group: Development/Libraries
License: GPL or Artistic
License: GPL+ or Artistic
URL: http://search.cpan.org/dist/File-Which/
Source0: http://www.cpan.org/authors/id/P/PE/PEREINAR/File-Which-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: perl(ExtUtils::MakeMaker)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description
@ -55,6 +56,16 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.05-4
- Rebuild for perl 5.10 (again)
* Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.05-3
- rebuild for new perl
* Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.05-2.1
- correct license tag
- add BR: perl(ExtUtils::MakeMaker)
* Mon Dec 18 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.05-2
- find: fixed arguments order.