Compare commits

...

6 Commits
rawhide ... f7

Author SHA1 Message Date
Fedora Release Engineering f062e085b3 dist-git conversion 2010-07-28 09:16:01 +00:00
Bill Nottingham 8d98ff37c5 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 00:21:31 +00:00
Pierre-YvesChibon 655fbf0ba7 *** empty log message *** 2008-01-08 01:24:02 +00:00
Pierre-YvesChibon a4b2a663a7 *** empty log message *** 2007-11-27 07:12:29 +00:00
Pierre-YvesChibon 773022c19d *** empty log message *** 2007-07-17 14:44:57 +00:00
Kevin Fenzi e0c79b7431 Initialize branch F-7 for R-BufferedMatrix 2007-07-16 18:21:56 +00:00
5 changed files with 121 additions and 21 deletions

View File

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
BufferedMatrix_1.2.0.tar.gz

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: R-BufferedMatrix
# $Id$
NAME := R-BufferedMatrix
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)

119
R-BufferedMatrix.spec Normal file
View File

@ -0,0 +1,119 @@
%define packname BufferedMatrix
Name: R-%{packname}
Version: 1.2.0
Release: 2%{?dist}
Summary: A matrix data storage object method from bioconductor
Summary(fr): Stockage des données d'un matrice dans un fichier temporaire
Group: Applications/Engineering
License: LGPLv2+
URL: http://bioconductor.org/packages/2.1/bioc/html/%{packname}.html
Source0: http://bioconductor.org/packages/2.1/bioc/src/contrib/%{packname}_%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: R-devel tetex-latex
Requires(post): R
Requires(postun): R
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}
%description
A tabular style data object where most data is stored outside main memory.
A buffer is used to speed up access to data.
This library is part of the bioconductor (bioconductor.org) project.
%description -l fr
Une table de données dans laquelle la plus part des données sont stocké,
en dehors de la mémoire principale. Une mémoire tampon est utilisé pour
accélérer l'accès aux données.
%description devel
The %{name}-devel package contains Header and libraries files for
developing applications that use %{name}
%prep
%setup -c -q -n %{packname}
%build
%install
rm -rf %{buildroot}
sed -i -e 's/\r$//' %{packname}/inst/doc/BufferedMatrix.Rnw
mkdir -p $RPM_BUILD_ROOT%{_datadir}/R/library/%{packname}/include/
install -D %{packname}/inst/include/* $RPM_BUILD_ROOT%{_datadir}/R/library/%{packname}/include/
chmod -x $RPM_BUILD_ROOT%{_datadir}/R/library/%{packname}/include/*
mkdir -p %{buildroot}%{_libdir}/R/library
R CMD INSTALL %{packname} -l %{buildroot}%{_libdir}/R/library
test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so)
rm -rf %{buildroot}%{_libdir}/R/library/R.css
rm -rf %{buildroot}%{_libdir}/R/library/%{packname}/include/
%check
%{_bindir}/R CMD check %{packname}
%clean
rm -rf %{buildroot}
%post
%{_R_make_search_index}
%postun
%{_R_make_search_index}
%files
%defattr(-, root, root, -)
%dir %{_libdir}/R/library/%{packname}
%{_libdir}/R/library/%{packname}/CONTENTS
%{_libdir}/R/library/%{packname}/INDEX
%{_libdir}/R/library/%{packname}/Meta/
%{_libdir}/R/library/%{packname}/R-ex/
%{_libdir}/R/library/%{packname}/R/
%{_libdir}/R/library/%{packname}/help/
%{_libdir}/R/library/%{packname}/libs/
%doc %{_libdir}/R/library/%{packname}/man/
%doc %{_libdir}/R/library/%{packname}/latex/
%doc %{_libdir}/R/library/%{packname}/doc
%doc %{_libdir}/R/library/%{packname}/DESCRIPTION
%doc %{_libdir}/R/library/%{packname}/html
%files devel
%defattr(-,root,root,-)
%{_datadir}/R/library/%{packname}/include/
%changelog
* Tue Jan 08 2008 Pingou <pingoufc4@yahoo.fr> 1.2.0-2
- Change on the BR
* Tue Nov 27 2007 Pingou <pingoufc4@yahoo.fr> 1.2.0-1
- Update to version 1.2.0
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.0.1-6
- Rebuild for selinux ppc32 issue.
* Wed Jul 11 2007 Pingou <pingoufc4@yahoo.fr> 1.0.1-5
- Change in the files section to fit the guidelines
* Wed Jul 11 2007 Pingou <pingoufc4@yahoo.fr> 1.0.1-4
- Change in the spec to remove the %%{__**} form in the macro
* Tue Jul 10 2007 Pingou <pingoufc4@yahoo.fr> 1.0.1-3
- Change in post and postun to fit the packaging guidelines
- Change in the prep section to fit the guidelines
* Thu Jul 05 2007 Pingou <pingoufc4@yahoo.fr> 1.0.1-2
- Fix install include
* Mon Jul 02 2007 Pingou <pingoufc4@yahoo.fr> 1.0.1-1
- initial package for Fedora

View File

@ -0,0 +1 @@
f40fe6f7d5d20190788c35d525f58552 BufferedMatrix_1.2.0.tar.gz