Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aded6caa16 | ||
|
|
dbc3efcce5 | ||
| c9cc620e43 | |||
|
|
cee1fd04f8 |
5 changed files with 11 additions and 30 deletions
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: shcov
|
||||
# $Id$
|
||||
NAME := shcov
|
||||
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)
|
||||
|
|
@ -1 +0,0 @@
|
|||
shcov-3-2_fc9:HEAD:shcov-3-2.fc9.src.rpm:1232065081
|
||||
17
shcov.spec
17
shcov.spec
|
|
@ -1,8 +1,8 @@
|
|||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
Name: shcov
|
||||
Version: 4
|
||||
Release: 2%{?dist}
|
||||
Version: 5
|
||||
Release: 1%{?dist}
|
||||
Summary: A gcov and lcov coverage test tool for bourne shell / bash scripts
|
||||
|
||||
Group: Applications/System
|
||||
|
|
@ -12,8 +12,8 @@ Source0: http://%{name}.googlecode.com/files/%{name}-%{version}.tar.gz
|
|||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python
|
||||
BuildRequires: python-setuptools-devel
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-setuptools
|
||||
|
||||
|
||||
%description
|
||||
|
|
@ -27,12 +27,12 @@ coverage results.
|
|||
|
||||
|
||||
%build
|
||||
python ./setup.py build
|
||||
%{__python} setup.py build
|
||||
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
python ./setup.py install -O1 --skip-build --root=%{buildroot}
|
||||
%{__python} setup.py install -O1 --skip-build --root=%{buildroot}
|
||||
rm -rf %{buildroot}%{_defaultdocdir}/%{name}/*
|
||||
|
||||
%clean
|
||||
|
|
@ -50,6 +50,9 @@ rm -rf %{buildroot}
|
|||
|
||||
|
||||
%changelog
|
||||
* Mon Sep 21 2009 Fabian Affolter <fabian@bernewireless.net> - 5-1
|
||||
- Updated to new upstream version 5
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
6ea3de4a39f8b058eabb5d5d28a59862 shcov-4.tar.gz
|
||||
8bbacfd8168ad2a8782b805dc30e5a2c shcov-5.tar.gz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue