Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
082aea9da4 | ||
|
|
eaf012d5e5 | ||
|
|
c97bb3e45b | ||
|
|
52745685ec |
5 changed files with 177 additions and 21 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
flexmock-0.8.6.gem
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: rubygem-flexmock
|
||||
# $Id$
|
||||
NAME := rubygem-flexmock
|
||||
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)
|
||||
175
rubygem-flexmock.spec
Normal file
175
rubygem-flexmock.spec
Normal file
|
|
@ -0,0 +1,175 @@
|
|||
%global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']")
|
||||
%global rubyabi 1.8
|
||||
|
||||
%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
||||
%global gemname flexmock
|
||||
%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
|
||||
|
||||
Summary: Mock object library for ruby
|
||||
Name: rubygem-%{gemname}
|
||||
Version: 0.8.6
|
||||
Release: 1%{?dist}
|
||||
Group: Development/Languages
|
||||
License: Copyright only
|
||||
URL: http://flexmock.rubyforge.org
|
||||
Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: ruby(abi) = %{rubyabi}
|
||||
BuildRequires: ruby(rubygems)
|
||||
BuildRequires(check): rubygem(rake)
|
||||
Requires: ruby(abi) = %{rubyabi}
|
||||
Requires: ruby(rubygems)
|
||||
Provides: ruby(%{gemname}) = %{name}-%{version}
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
FlexMock is a simple, but flexible, mock object library for Ruby unit
|
||||
testing.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
Group: Documentation
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description doc
|
||||
This package contains documentation for %{name}.
|
||||
|
||||
%package -n ruby-%{gemname}
|
||||
Summary: Non-Gem support package for %{gemname}
|
||||
Group: Development/Languages
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Provides: ruby(%{gemname}) = %{version}-%{release}
|
||||
|
||||
%description -n ruby-%{gemname}
|
||||
This package provides non-Gem support for %{gemname}.
|
||||
|
||||
%prep
|
||||
%setup -q -c -T
|
||||
|
||||
mkdir -p .%{gemdir}
|
||||
gem install \
|
||||
--local \
|
||||
--install-dir .%{gemdir} \
|
||||
--force --rdoc -V \
|
||||
%{SOURCE0}
|
||||
|
||||
find . -name \*.rb | xargs sed -i -e '\@/usr/bin/env@d'
|
||||
find . -name \*.gem -or -name \*.rb -or -name \*.rdoc | xargs chmod 0644
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
mkdir -p %{buildroot}%{gemdir}
|
||||
cp -a .%{gemdir}/* %{buildroot}%{gemdir}/
|
||||
|
||||
# Create symlinks
|
||||
# Copied from rubygem-getetxt.spec
|
||||
##
|
||||
## Note that before switching to gem %%{ruby_sitelib}/%%{gemname}
|
||||
## already existed as a directory, so this cannot be replaced
|
||||
## by symlink (cpio fails)
|
||||
## Similarly, all directories under %%{ruby_sitelib} cannot be
|
||||
## replaced by symlink
|
||||
#
|
||||
|
||||
create_symlink_rec(){
|
||||
|
||||
ORIGBASEDIR=$1
|
||||
TARGETBASEDIR=$2
|
||||
|
||||
## First calculate relative path of ORIGBASEDIR
|
||||
## from TARGETBASEDIR
|
||||
TMPDIR=$TARGETBASEDIR
|
||||
BACKDIR=
|
||||
DOWNDIR=
|
||||
num=0
|
||||
nnum=0
|
||||
while true
|
||||
do
|
||||
num=$((num+1))
|
||||
TMPDIR=$(echo $TMPDIR | %{__sed} -e 's|/[^/][^/]*$||')
|
||||
DOWNDIR=$(echo $ORIGBASEDIR | %{__sed} -e "s|^$TMPDIR||")
|
||||
if [ x$DOWNDIR != x$ORIGBASEDIR ]
|
||||
then
|
||||
nnum=0
|
||||
while [ $nnum -lt $num ]
|
||||
do
|
||||
BACKDIR="../$BACKDIR"
|
||||
nnum=$((nnum+1))
|
||||
done
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
RELBASEDIR=$( echo $BACKDIR/$DOWNDIR | %{__sed} -e 's|//*|/|g' )
|
||||
|
||||
## Next actually create symlink
|
||||
pushd %{buildroot}/$ORIGBASEDIR
|
||||
find . -type f | while read f
|
||||
do
|
||||
DIRNAME=$(dirname $f)
|
||||
BACK2DIR=$(echo $DIRNAME | %{__sed} -e 's|/[^/][^/]*|/..|g')
|
||||
%{__mkdir_p} %{buildroot}${TARGETBASEDIR}/$DIRNAME
|
||||
LNNAME=$(echo $BACK2DIR/$RELBASEDIR/$f | \
|
||||
%{__sed} -e 's|^\./||' | %{__sed} -e 's|//|/|g' | \
|
||||
%{__sed} -e 's|/\./|/|' )
|
||||
%{__ln_s} -f $LNNAME %{buildroot}${TARGETBASEDIR}/$f
|
||||
done
|
||||
popd
|
||||
|
||||
}
|
||||
|
||||
create_symlink_rec %{geminstdir}/lib %{ruby_sitelib}
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%check
|
||||
pushd .%{geminstdir}
|
||||
rake test_all --trace
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%dir %{geminstdir}
|
||||
%doc %{geminstdir}/[A-Z]*
|
||||
%exclude %{geminstdir}/Rakefile
|
||||
%exclude %{geminstdir}/install.rb
|
||||
%{geminstdir}/lib/
|
||||
%{gemdir}/cache/%{gemname}-%{version}.gem
|
||||
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
%{geminstdir}/Rakefile
|
||||
%{geminstdir}/flexmock.blurb
|
||||
%{geminstdir}/doc/
|
||||
%{geminstdir}/test/
|
||||
%{gemdir}/doc/%{gemname}-%{version}/
|
||||
|
||||
%files -n ruby-%{gemname}
|
||||
%defattr(-,root,root,-)
|
||||
%{ruby_sitelib}/%{gemname}.rb
|
||||
%{ruby_sitelib}/%{gemname}/
|
||||
|
||||
%changelog
|
||||
* Thu Jul 30 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.8.6-1
|
||||
- Switch to gem, repackage
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Nov 08 2007 Paul Nasrat <pauln@truemesh.com> - 0.7.1-3
|
||||
- Fix repoid
|
||||
|
||||
* Wed Nov 07 2007 Paul Nasrat <pauln@truemesh.com> - 0.7.1-2
|
||||
- Spec cleanups in response to review
|
||||
- Fix license
|
||||
- strip out shebangs
|
||||
|
||||
* Sun Sep 09 2007 Paul Nasrat <pauln@truemesh.com> - 0.7.1-1
|
||||
- Initial vesion
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
b087a648c5051e44e1d16fd886a7ce20 flexmock-0.8.6.gem
|
||||
Loading…
Add table
Add a link
Reference in a new issue