Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
9630381e4d | ||
|
c59a109e24 | ||
|
1351d94818 | ||
|
bea917026b | ||
|
0d811d320d |
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
@ -1,21 +0,0 @@
|
|||||||
# Makefile for source rpm: R-affyio
|
|
||||||
# $Id$
|
|
||||||
NAME := R-affyio
|
|
||||||
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,22 +1,20 @@
|
|||||||
%define packname affyio
|
%define packname affyio
|
||||||
%define bioc 2.4
|
%define Rversion 2.11.0
|
||||||
%define Rversion 2.9.0
|
|
||||||
|
|
||||||
Name: R-%{packname}
|
Name: R-%{packname}
|
||||||
Version: 1.12.0
|
Version: 1.16.0
|
||||||
Release: 3%{?dist}
|
Release: 1%{dist}
|
||||||
Summary: Tools for parsing Affymetrix data files
|
Summary: Tools for parsing Affymetrix data files
|
||||||
Summary(fr): Outils d'analyse de fichier de données de puces affymetrix
|
Summary(fr): Outils d'analyse de fichier de données de puces affymetrix
|
||||||
|
|
||||||
Group: Applications/Engineering
|
Group: Applications/Engineering
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: http://bioconductor.org/packages/%{bioc}/bioc/html/affyio.html
|
URL: http://bioconductor.org/packages/release/bioc/html/affyio.html
|
||||||
Source0: http://bioconductor.org/packages/%{bioc}/bioc/src/contrib/%{packname}_%{version}.tar.gz
|
Source0: http://bioconductor.org/packages/release/bioc/src/contrib/%{packname}_%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
Requires(post): R >= %{Rversion} R-methods
|
Requires: R-core >= %{Rversion} R-methods
|
||||||
Requires(postun): R
|
BuildRequires: R-devel >= %{Rversion} tex(latex) zlib-devel R-methods
|
||||||
BuildRequires: R-devel >= %{Rversion} tetex-latex zlib-devel R-methods
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Routines for parsing Affymetrix data files based upon file format
|
Routines for parsing Affymetrix data files based upon file format
|
||||||
@ -49,21 +47,12 @@ rm -rf %{buildroot}%{_libdir}/R/library/R.css
|
|||||||
%clean
|
%clean
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%post
|
|
||||||
%{_R_make_search_index}
|
|
||||||
|
|
||||||
%postun
|
|
||||||
%{_R_make_search_index}
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-, root, root, -)
|
%defattr(-, root, root, -)
|
||||||
%dir %{_libdir}/R/library/%{packname}
|
%dir %{_libdir}/R/library/%{packname}
|
||||||
%doc %{_libdir}/R/library/%{packname}/DESCRIPTION
|
%doc %{_libdir}/R/library/%{packname}/DESCRIPTION
|
||||||
%doc %{_libdir}/R/library/%{packname}/html
|
%doc %{_libdir}/R/library/%{packname}/html
|
||||||
%doc %{_libdir}/R/library/%{packname}/man/
|
|
||||||
%doc %{_libdir}/R/library/%{packname}/latex/
|
|
||||||
%doc %{_libdir}/R/library/%{packname}/LICENSE
|
%doc %{_libdir}/R/library/%{packname}/LICENSE
|
||||||
%{_libdir}/R/library/%{packname}/CONTENTS
|
|
||||||
%{_libdir}/R/library/%{packname}/INDEX
|
%{_libdir}/R/library/%{packname}/INDEX
|
||||||
%{_libdir}/R/library/%{packname}/NAMESPACE
|
%{_libdir}/R/library/%{packname}/NAMESPACE
|
||||||
%{_libdir}/R/library/%{packname}/R/
|
%{_libdir}/R/library/%{packname}/R/
|
||||||
@ -72,6 +61,16 @@ rm -rf %{buildroot}
|
|||||||
%{_libdir}/R/library/%{packname}/libs
|
%{_libdir}/R/library/%{packname}/libs
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue May 11 2010 pingou <pingou@pingoured.fr> 1.16.0-1
|
||||||
|
- Update to version 1.16.0
|
||||||
|
- Fix url to a more stable form
|
||||||
|
- Remove R on post/postun since there is no post/postun
|
||||||
|
|
||||||
|
* Sat Nov 21 2009 pingou <pingou@pingoured.fr> 1.14.0-1
|
||||||
|
- Update to 1.14.0
|
||||||
|
- Remove %%post and %%postun
|
||||||
|
- Adapt %%files to R-2.10.0
|
||||||
|
|
||||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.0-3
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.0-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user