rpms/eet/F-8 Makefile, 1.2, 1.3 eet.spec, 1.9, 1.10 sources, 1.6, 1.7 dead.package, 1.1, NONE

Pavel Shevchuk (stalwart) fedora-extras-commits at redhat.com
Thu Apr 24 23:30:59 UTC 2008


Author: stalwart

Update of /cvs/pkgs/rpms/eet/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv2848/F-8

Added Files:
	Makefile eet.spec sources 
Removed Files:
	dead.package 
Log Message:
Resurrecting eet package. Upstream released 1.0.0




Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	24 Apr 2008 23:30:23 -0000	1.3
@@ -0,0 +1,21 @@
+# Makefile for source rpm: eet
+# $Id$
+NAME := eet
+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)


Index: eet.spec
===================================================================
RCS file: eet.spec
diff -N eet.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ eet.spec	24 Apr 2008 23:30:23 -0000	1.10
@@ -0,0 +1,102 @@
+Name:           eet
+Version:        1.0.0
+Release:        1%{?dist}
+Summary:        Library for speedy data storage, retrieval, and compression
+
+Group:          System Environment/Libraries
+License:        MIT
+URL:            http://web.enlightenment.org/p.php?p=about/efl/eet
+Source0:        http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:  libjpeg-devel zlib-devel chrpath
+
+%description
+Eet is a tiny library designed to write an arbitary set of chunks of
+data to a file and optionally compress each chunk (very much like a
+zip file) and allow fast random-access reading of the file later
+on. It does not do zip as a zip itself has more complexity than is
+needed, and it was much simpler to implement this once here.
+
+It also can encode and decode data structures in memory, as well as
+image data for saving to eet files or sending across the network to
+other machines, or just writing to arbitary files on the system. All
+data is encoded in a platform independent way and can be written and
+read by any architecture.
+
+
+%package        devel
+Summary:        Development files for %{name}
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release} pkgconfig
+
+%description    devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+
+%prep
+%setup -q
+
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
+chrpath --delete $RPM_BUILD_ROOT%{_bindir}/%{name}
+find $RPM_BUILD_ROOT -name '*.la' -delete
+install -d -m 755 $RPM_BUILD_ROOT%{_mandir}/man3
+install -p -m 644 doc/man/man3/* $RPM_BUILD_ROOT%{_mandir}/man3
+# remove unfinished manpages
+find $RPM_BUILD_ROOT%{_mandir}/man3 -size -100c -delete
+rm -f $RPM_BUILD_ROOT%{_mandir}/man3/todo.3 # remove todo
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING COPYING-PLAIN README
+%{_bindir}/%{name}
+%{_libdir}/*.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%doc doc/html
+%{_mandir}/man3/* 
+%{_includedir}/*
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/%{name}.pc
+
+
+%changelog
+* Thu Apr 24 2008 Pavel "Stalwart" Shevchuk <stlwrt at gmail.com> - 1.0.0-1
+- New upstream release, eet is out of beta now
+- Fixed pkg-config file
+
+* Sat Apr 19 2008 Pavel "Stalwart" Shevchuk <stlwrt at gmail.com> - 0.9.99900-4
+- Added workaround for bug in eet.pc. Proper fix is commited upstream
+
+* Sat Apr 19 2008 Pavel "Stalwart" Shevchuk <stlwrt at gmail.com> - 0.9.99900-3
+- Cleaned up documentation installation
+- Removed unneded dependency on zlib-devel from eet-devel
+
+* Sat Apr 19 2008 Pavel "Stalwart" Shevchuk <stlwrt at gmail.com> - 0.9.99900-2
+- Fixed timestamp of source tarball
+- Preserve timestamps of installed files
+- Added pkgconfig to -devel dependencies
+- Added html docs
+
+* Fri Apr 10 2008 Pavel "Stalwart" Shevchuk <stlwrt at gmail.com> - 0.9.99900-1
+- Initial specfile for Eet


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	24 Apr 2008 23:30:23 -0000	1.7
@@ -0,0 +1 @@
+a6bf96c98390f6a5ea46dd7c786499be  eet-1.0.0.tar.bz2


--- dead.package DELETED ---




More information about the fedora-extras-commits mailing list