Compare commits

...

7 Commits
master ... f11

Author SHA1 Message Date
Fedora Release Engineering 41d09860a9 dist-git conversion 2010-07-29 04:16:05 +00:00
Bill Nottingham 4564b1c91a Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:21:51 +00:00
Orion Poplawski ebc7b162fe - Drop Require: gcc-gfortran for now 2009-11-05 16:29:50 +00:00
Orion Poplawski 6f231b002d bump release 2009-10-27 18:02:50 +00:00
Orion Poplawski de1674f176 - Don't ship multi-lib incompatible nc-config
- Require gcc-gfortran for -devel (bug #483469)
2009-10-27 18:02:01 +00:00
Orion Poplawski 4e474b3990 - Update to 4.0.1
- Fix up URL and Source urls
- Re-enable parallel builds
- Add pkgconfig file
- Add more tests to make check
2009-09-28 17:00:55 +00:00
Jesse Keating 0f26d07c82 Initialize branch F-11 for netcdf 2009-04-15 04:54:46 +00:00
4 changed files with 53 additions and 49 deletions

View File

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: netcdf
# $Id$
NAME := netcdf
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,22 +1,26 @@
Name: netcdf
Version: 4.0.0
Release: 2%{?dist}
Version: 4.0.1
Release: 3%{?dist}
Summary: Libraries for the Unidata network Common Data Form
Group: Applications/Engineering
License: NetCDF
URL: http://my.unidata.ucar.edu/content/software/netcdf/index.html
Source0: ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.0.tar.gz
URL: http://www.unidata.ucar.edu/software/netcdf/
Source0: ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-%{version}.tar.gz
Patch0: netcdf-4.0.0-gcc4.3-cstring.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gcc-gfortran, gawk
BuildRequires: hdf5-devel
BuildRequires: valgrind
%package devel
Summary: Development files for netcdf
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
#Requires: gcc-gfortran%{_isa}
Requires: pkgconfig
%package static
Summary: Static libs for netcdf
@ -62,20 +66,19 @@ man pages.
%description static
This package contains the netCDF static libs.
%prep
%setup -q -n netcdf-4.0
%setup -q
%patch0 -p1
%build
export FC="gfortran"
export F90="gfortran"
export CPPFLAGS="-fPIC"
export FFLAGS="-fPIC ${RPM_OPT_FLAGS}"
export F90FLAGS="$FFLAGS"
export FCFLAGS="$FFLAGS"
%configure --enable-shared
%configure --enable-shared \
--enable-extra-example-tests \
--enable-valgrind-tests
# parallel build is broken, .mod file hasn't right deps %%{?_smp_mflags}
make
make %{?_smp_mflags}
%install
make install DESTDIR=${RPM_BUILD_ROOT}
@ -88,6 +91,10 @@ mkdir -p ${RPM_BUILD_ROOT}%{_fmoddir}
/bin/rm -f ${RPM_BUILD_ROOT}%{_libdir}/*.la
/bin/rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir
#New with 4.0.1, and not multi-lib compatible
/bin/rm -f ${RPM_BUILD_ROOT}%{_bindir}/nc-config
%check
make check
@ -95,6 +102,7 @@ make check
%clean
rm -rf ${RPM_BUILD_ROOT}
%post
/sbin/ldconfig
/sbin/install-info %{_infodir}/netcdf.info \
@ -107,10 +115,12 @@ if [ "$1" = 0 ]; then
%{_infodir}/dir 2>/dev/null || :
fi
%files
%defattr(-,root,root,-)
%doc COPYRIGHT README
%{_bindir}/*
%{_bindir}/ncdump
%{_bindir}/ncgen
%{_libdir}/*.so.*
%{_mandir}/man1/*
%{_infodir}/*
@ -120,6 +130,7 @@ fi
%{_includedir}/netcdf
%{_fmoddir}/*.mod
%{_libdir}/*.so
%{_libdir}/pkgconfig/netcdf.pc
%{_mandir}/man3/*
%files static
@ -128,6 +139,20 @@ fi
%changelog
* Thu Nov 5 2009 Orion Poplawski <orion@cora.nwra.com> - 4.0.1-3
- Drop Require: gcc-gfortran for now
* Tue Oct 27 2009 Orion Poplawski <orion@cora.nwra.com> - 4.0.1-2
- Don't ship multi-lib incompatible nc-config
- Require gcc-gfortran for -devel (bug #483469)
* Mon Sep 28 2009 Orion Poplawski <orion@cora.nwra.com> - 4.0.1-1
- Update to 4.0.1
- Fix up URL and Source urls
- Re-enable parallel builds
- Add pkgconfig file
- Add more tests to make check
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

View File

@ -1 +1 @@
afc057b07b6e6843556dcfbc4ced402c netcdf-4.0.tar.gz
a251453c5477599f050fa4e593295186 netcdf-4.0.1.tar.gz