rpms/getdata/devel getdata-0.5.0.tar.bz2.sig, NONE, 1.1 .cvsignore, 1.4, 1.5 getdata.spec, 1.4, 1.5 sources, 1.4, 1.5 getdata-0.4.2.tar.bz2.sig, 1.1, NONE

Matthew D Truch mtruch at fedoraproject.org
Fri Jan 16 22:11:33 UTC 2009


Author: mtruch

Update of /cvs/extras/rpms/getdata/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12779

Modified Files:
	.cvsignore getdata.spec sources 
Added Files:
	getdata-0.5.0.tar.bz2.sig 
Removed Files:
	getdata-0.4.2.tar.bz2.sig 
Log Message:
Update to upstream 0.5.0 release.



--- NEW FILE getdata-0.5.0.tar.bz2.sig ---
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iD4DBQBJcNdKHjxAJ9xPubwRAvi3AJdxgtb4I9+Kohshi6F8DWzLjBTvAJ4kBZnV
NRRLYqfDhvXM1X7WhsweFQ==
=58T5
-----END PGP SIGNATURE-----


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/getdata/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore	18 Nov 2008 17:09:22 -0000	1.4
+++ .cvsignore	16 Jan 2009 22:11:03 -0000	1.5
@@ -1 +1 @@
-getdata-0.4.2.tar.bz2
+getdata-0.5.0.tar.bz2


Index: getdata.spec
===================================================================
RCS file: /cvs/extras/rpms/getdata/devel/getdata.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- getdata.spec	18 Nov 2008 17:09:23 -0000	1.4
+++ getdata.spec	16 Jan 2009 22:11:03 -0000	1.5
@@ -1,5 +1,5 @@
 Name:           getdata
-Version:        0.4.2
+Version:        0.5.0
 Release:        1%{?dist}
 Summary:        Library for reading and writing dirfile data
 
@@ -9,7 +9,7 @@
 Source0:        http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tar.bz2
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildRequires:     gcc-gfortran
+BuildRequires:     gcc-gfortran zlib-devel libtool-ltdl-devel bzip2-devel
 Requires(post):    /sbin/ldconfig
 Requires(postun):  /sbin/ldconfig
 
@@ -29,12 +29,32 @@
 Headers required when building a program against the GetData library.
 Includes C++ and FORTRAN (77 & 95) bindings. 
 
+%package gzip
+Group:  Development/Libraries
+Summary: Enables getdata read ability of gzip compressed dirfiles
+Requires: %{name} = %{version}-%{release}
+
+%description gzip
+Enables getdata to read dirfiles that are encoded (compressed) with gzip.
+Fields must be fully compressed with gzip, not actively being written to.
+Does not yet allow writing of gzip encoded dirfiles.  
+
+%package bzip2
+Group:  Development/Libraries
+Summary: Enables getdata read ability of bzip2 compressed dirfiles
+Requires: %{name} = %{version}-%{release}
+
+%description bzip2
+Enables getdata to read dirfiles that are encoded (compressed) with bzip2.
+Fields must be fully compressed with bzip2, not actively being written to.
+Does not yet allow writing of bzip2 encoded dirfiles.
+
 %prep
 %setup -q
 
 %build
 # FIXME: FFLAGS/FCFLAGS are not being honored; looking into it with upstream.
-%configure --disable-static
+%configure --disable-static --enable-modules --enable-debug
 make %{?_smp_mflags}
 
 %check
@@ -46,6 +66,8 @@
 make DESTDIR=%{buildroot} SUID_ROOT="" install
 # Remove .la files.  
 rm -f %{buildroot}/%{_libdir}/lib*.la
+# Remove simple docs, as we install them ourselves (along with others)
+rm -f %{buildroot}/%{_datadir}/doc/%{name}/*
 
 %clean
 rm -rf %{buildroot}
@@ -62,14 +84,30 @@
 %{_mandir}/man5/*
 
 %files devel
-%defattr(-,root,root)
-%doc README.cxx README.f77 README.f95
-%{_libdir}/lib*getdata*.so
+%defattr(-,root,root,-)
+%doc doc/README.cxx doc/README.f77 doc/README.f95 doc/unclean_database_recovery.txt
+%{_libdir}/libgetdata.so
+%{_libdir}/libf*getdata.so
+%{_libdir}/libgetdata++.so
 %{_includedir}/*
 %{_mandir}/man3/*
 %{_libdir}/pkgconfig/getdata.pc
 
+%files gzip
+%defattr(-,root,root,-)
+%{_libdir}/libgetdatagzip*.so
+
+%files bzip2
+%defattr(-,root,root,-)
+%{_libdir}/libgetdatabzip2*.so
+
 %changelog
+* Fri Jan 16 2009 Matthew Truch <matt at truch.net> - 0.5.0-1
+- Upstream 0.5.0
+-   Includes bugfixes.
+-   New gzip and bzip2 encoded dirfile read ability.
+-   Uses ltdl dynamic module loading for gzip and bzip2 modules.
+
 * Tue Nov 18 2008 Matthew Truch <matt at truch.net> - 0.4.2-1
 - Upstream 0.4.2.
 -   Includes several bugfixes, especially to the legacy interface.


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/getdata/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources	18 Nov 2008 17:09:23 -0000	1.4
+++ sources	16 Jan 2009 22:11:03 -0000	1.5
@@ -1 +1 @@
-f930006c80e93060a798187661487286  getdata-0.4.2.tar.bz2
+465709d1f5fcce5f3bedc26ed83a5a2f  getdata-0.5.0.tar.bz2


--- getdata-0.4.2.tar.bz2.sig DELETED ---




More information about the fedora-extras-commits mailing list