Compare commits

..

22 commits

Author SHA1 Message Date
Till Maas
9de4e450a9 2016-05-31: Retired because of broken deps in preparation of Fedora 24
Reference: https://fedorahosted.org/rel-eng/ticket/6416
2016-05-31 23:18:28 +02:00
Susi Lehtola
cdf7401c28 Try to fix FTBFS again. 2016-02-15 18:40:28 +01:00
Susi Lehtola
f015e4ffb4 Use gfortran as Fortran preparser.. 2016-02-14 04:36:15 +01:00
Dennis Gilmore
c97cda0092 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild 2016-02-03 16:21:35 +00:00
Dennis Gilmore
693383cc20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild 2015-06-17 00:08:35 +00:00
Susi Lehtola
47e88b9ea6 Update to 2.2.1. 2015-02-22 00:12:01 +01:00
Peter Robinson
350bef2770 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild 2014-08-15 20:42:52 +00:00
Susi Lehtola
c4c416535f Update to 2.2.0. Fix FTBFS. 2014-06-09 09:45:53 +03:00
Dennis Gilmore
d9261aeb6e - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-06 20:08:05 -05:00
Dennis Gilmore
ff4dca6bce - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 2013-08-02 20:29:46 -05:00
Susi Lehtola
d46c30a7ea Update tarball for aarch64 support. 2013-05-16 13:27:54 +03:00
Jussi Lehtola
e713e22cd9 Disable tests once again. 2013-03-06 17:55:23 +02:00
Jussi Lehtola
4a72f76629 Add cpp flags. 2013-03-06 17:24:52 +02:00
Jussi Lehtola
e22ecafcb6 Update to 2.1.0. 2013-03-06 16:06:21 +02:00
Dennis Gilmore
1fb16f1f78 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild 2013-02-13 10:51:51 -06:00
Jussi Lehtola
c25eb5f5c7 Update to 2.0.2, build against libxc 2.0.0. 2012-12-10 13:43:31 +02:00
Dennis Gilmore
ce242999a3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-18 11:24:16 -05:00
Jussi Lehtola
0346b6175b Update to 2.0.0. 2012-07-07 13:15:00 +03:00
Dennis Gilmore
b23d625aab - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-12 15:39:08 -06:00
Dennis Gilmore
ff46606bec - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 19:45:33 -06:00
Jussi Lehtola
700598f88f Disable %check phase. 2011-01-26 16:42:55 +02:00
Jussi Lehtola
80b580b3de Initial import. 2011-01-24 20:00:40 +02:00
4 changed files with 3 additions and 79 deletions

0
.gitignore vendored
View file

View file

@ -1,78 +0,0 @@
Name: ape
Version: 1.1.0
Release: 2%{?dist}
Summary: A tool for generating atomic pseudopotentials within a DFT framework
Group: Applications/Engineering
License: GPLv2+
URL: http://www.tddft.org/programs/APE
Source0: http://www.tddft.org/programs/APE/sites/default/files/ape-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: gcc-gfortran
BuildRequires: gsl-devel
BuildRequires: libxc-devel
Requires(post): info
Requires(preun): info
%description
APE (Atomic Pseudopotential Engine) is a tool for generating atomic
pseudopotentials within a Density-Functional Theory framework.
%prep
%setup -q
%build
# The APE configure script uses FCFLAGS instead of FFLAGS declared by the configure macro.
export FC=gfortran
export FCFLAGS="%{optflags} -ffree-form -ffree-line-length-none -I%{_fmoddir}"
%configure
# SMP make is not working.
#make %{?_smp_mflags}
make
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
# Get rid of spurious directory
rm -rf %{buildroot}%{_infodir}/dir
# Get rid of testsuite, it's already run in check phase.
rm -rf %{buildroot}%{_datadir}/ape
rm %{buildroot}%{_bindir}/ape-run*
%clean
rm -rf %{buildroot}
%post
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
%preun
if [ $1 = 0 ] ; then
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
fi
# Check phase is disabled, since it fails sometimes on 32-bit architectures due
# to some hardly catchable rounding error, which has been fixed in the middle
# of big changes all over the program sometime after the release of 1.1.0.
# It should be enabled when version 1.2 is released.
#%check
## Add binary to PATH
#export PATH=$PATH:`pwd`/src
#cd testsuite
#./ape-run_testsuite -l
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README TODO sample
%{_bindir}/ape
%{_infodir}/ape.info.*
%changelog
* Wed Jan 26 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 1.1.0-2
- Disable %%check phase due to problems on 32-bit architectures. It needs to be
re-enabled when version 1.2 (which does not suffer from the rounding issues
causing the problems) is released.
* Tue Jan 18 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 1.1.0-1
- Initial spec.

3
dead.package Normal file
View file

@ -0,0 +1,3 @@
2016-05-31: Retired because of broken deps in preparation of Fedora 24
Reference: https://fedorahosted.org/rel-eng/ticket/6416

View file

@ -1 +0,0 @@
423de21a16aa806d67c2bdba20ba5c55 ape-1.1.0.tar.gz