From 5ab5bb3e07d3755c1f01ffe3a6b6d2c53cafe177 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 8 Jan 2008 03:20:42 +0000 Subject: [PATCH 1/5] Initialize branch F-8 for libnova --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..e9e7ccd --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-8 From 5a692690606d6b29544c83dbeaa35a4b75893268 Mon Sep 17 00:00:00 2001 From: Huzaifa Sidhpurwala Date: Tue, 8 Jan 2008 06:33:34 +0000 Subject: [PATCH 2/5] new --- libnova.spec | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 2 files changed, 62 insertions(+) create mode 100644 libnova.spec diff --git a/libnova.spec b/libnova.spec new file mode 100644 index 0000000..b187194 --- /dev/null +++ b/libnova.spec @@ -0,0 +1,61 @@ +Name: libnova +Version: 0.12.1 +Release: 1%{?dist} +Summary: Libnova is a general purpose astronomy & astrodynamics library +Group: Applications/Engineering +License: LGPLv2+ +URL: http://sourceforge.net/projects/libnova/ +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +Libnova is a general purpose, double precision, celestial mechanics, +astrometry and astrodynamics library + +%package devel +Summary: Development files for libnova +Group: Applications/Engineering +Requires: %{name} = %{version}-%{release} + +%description devel +Contains library and header files for libnova + +%prep +%setup -q + + +%build +%configure --disable-static +make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc ChangeLog README AUTHORS NEWS COPYING +%{_libdir}/libnova-0.12.so.1.0.0 +%{_libdir}/libnova-0.12.so.1 +%{_bindir}/libnovaconfig + +%files devel +%doc COPYING examples/*.c +%{_includedir}/libnova +%{_libdir}/libnova.so + + +%changelog +* Mon Jan 07 2007 Huzaifa Sidhpurwala - 0.12.1-1 +- Made small changes to make it more complaint with fedora packaging standards + +* Thu Jan 04 2007 Huzaifa Sidhpurwala - 0.12.1-0 +- Initial version. + diff --git a/sources b/sources index e69de29..378990e 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +8f4c6860aa627c5d0694b8bb5699fe7f libnova-0.12.1.tar.gz From 1be924a679bbda6db1048a394e971e46435299fb Mon Sep 17 00:00:00 2001 From: Huzaifa Sidhpurwala Date: Sat, 12 Jan 2008 04:13:01 +0000 Subject: [PATCH 3/5] changes to groups --- libnova.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libnova.spec b/libnova.spec index b187194..1d56dd6 100644 --- a/libnova.spec +++ b/libnova.spec @@ -1,8 +1,8 @@ Name: libnova Version: 0.12.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libnova is a general purpose astronomy & astrodynamics library -Group: Applications/Engineering +Group: Development/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/libnova/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -14,7 +14,7 @@ astrometry and astrodynamics library %package devel Summary: Development files for libnova -Group: Applications/Engineering +Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 12 2007 Huzaifa Sidhpurwala - 0.12.1-2 +- Made changes to the Groups + * Mon Jan 07 2007 Huzaifa Sidhpurwala - 0.12.1-1 - Made small changes to make it more complaint with fedora packaging standards From c5efdc568e30b046398e870aecdbe717f726e375 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:16 +0000 Subject: [PATCH 4/5] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b0fc9f0..46e34ee 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := libnova 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 +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From bbc1f10c77975aad3e93f45c5f2023bb06646b91 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:22:44 +0000 Subject: [PATCH 5/5] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 46e34ee..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnova -# $Id$ -NAME := libnova -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 $$d/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) diff --git a/branch b/branch deleted file mode 100644 index e9e7ccd..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-8