rpms/ots/devel .cvsignore, 1.3, 1.4 Makefile, 1.2, 1.3 ots.spec, 1.5, 1.6 sources, 1.3, 1.4 dead.package, 1.1, NONE

Michael J Knox (mjk) fedora-extras-commits at redhat.com
Sat May 20 20:27:15 UTC 2006


Author: mjk

Update of /cvs/extras/rpms/ots/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv4298/devel

Added Files:
	.cvsignore Makefile ots.spec sources 
Removed Files:
	dead.package 
Log Message:
taking ownership of ots, importing back into devel



Index: .cvsignore
===================================================================
RCS file: .cvsignore
diff -N .cvsignore
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ .cvsignore	20 May 2006 20:27:15 -0000	1.4
@@ -0,0 +1 @@
+ots-0.4.2.tar.gz


Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	20 May 2006 20:27:15 -0000	1.3
@@ -0,0 +1,21 @@
+# Makefile for source rpm: ots
+# $Id$
+NAME := ots
+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: ots.spec
===================================================================
RCS file: ots.spec
diff -N ots.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ ots.spec	20 May 2006 20:27:15 -0000	1.6
@@ -0,0 +1,133 @@
+Name: 		ots
+Summary: 	A text summarizer
+Version: 	0.4.2
+Release: 	8%{?dist}
+License: 	GPL
+URL:		http://libots.sourceforge.net/
+Group: 		System Environment/Libraries
+Source0: 	http://prdownloads.sourceforge.net/libots/ots-%{version}.tar.gz
+Patch0: 	ots-0.4.2-gcc4.patch
+BuildRoot: 	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+Requires: 	glib2 >= 2.0
+BuildRequires: 	glib2-devel >= 2.0, libxml2-devel >= 2.4.23, pkgconfig >= 0.8
+
+%description
+The open text summarizer is an open source tool for summarizing texts.
+The program reads a text and decides which sentences are important and
+which are not.
+ 
+%package devel
+Summary: 	Libraries and include files for developing with libots.
+Group: 		Development/Libraries
+Requires: 	%{name} = %{version}
+Requires: 	pkgconfig >= 0.8, glib2 >= 2.0, glib2-devel >= 2.0
+
+%description devel
+This package provides the necessary development libraries and include
+files to allow you to develop with libots.
+
+%prep
+%setup -q 
+%patch0 -p1 -b .gcc4
+
+%build
+
+%configure --disable-gtk-doc \
+	--with-html-dir=%{buildroot}%{_datadir}/gtk-doc/html/ots
+make
+
+%install
+rm -rf %{buildroot}
+%makeinstall
+# Currently, ots generates empty API docs.
+rm -rf %{buildroot}/%{_datadir}/gtk-doc
+rm -f %{buildroot}%{_libdir}/*.la
+
+%clean
+rm -rf %{buildroot}
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-, root, root)
+%doc AUTHORS COPYING ChangeLog NEWS README TODO
+%{_bindir}/ots
+%{_libdir}/*.so.*
+%{_mandir}/*/*
+%{_datadir}/ots
+
+%files devel
+%defattr(-,root,root)
+%{_libdir}/*.a
+%{_libdir}/*.so
+%{_includedir}/libots-1
+%{_libdir}/pkgconfig/*.pc
+
+%changelog
+* Sun May 21 2006 Michael J. Knox <michael[AT]knox.net.nz> - 0.4.2-8
+- rebuild and spec tidy
+
+* Sun May 22 2005 Jeremy Katz <katzj at redhat.com> - 0.4.2-7
+- rebuild on all arches
+
+* Wed Mar 16 2005 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.4.2-5
+- Reenable man page.
+- Disable rebuilding documentation via configure switch instead of an automake
+  requiring patch.
+- Remove the API documentation for now as it is just a placeholder.
+
+* Wed Mar  2 2005 Caolan McNamara <caolanm at redhat.com> - 0.4.2-4
+- rebuild with gcc4
+- small lvalue assign patch
+
+* Wed Feb 09 2005 Caolan McNamara <caolanm at redhat.com> - 0.4.2-3
+- rebuilt
+
+* Tue Jun 15 2004 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Tue Mar 02 2004 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Thu Feb 19 2004 Jeremy Katz <katzj at redhat.com> - 0.4.2-1
+- 0.4.2
+
+* Fri Feb 13 2004 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Fri Nov 28 2003 Jeremy Katz <katzj at redhat.com> 
+- add some buildrequires (#111158)
+
+* Mon Sep 15 2003 Jeremy Katz <katzj at redhat.com> 0.4.1-1
+- 0.4.1
+
+* Mon Aug  4 2003 Jeremy Katz <katzj at redhat.com> 0.4.0-1
+- 0.4.0
+
+* Tue Jul 22 2003 Jeremy Katz <katzj at redhat.com> 0.3.0-1
+- update to 0.3.0
+
+* Sat Jul 12 2003 Jeremy Katz <katzj at redhat.com> 0.2.0-2
+- forcibly disable gtk-doc (openjade is busted on s390)
+
+* Mon Jul  7 2003 Jeremy Katz <katzj at redhat.com> 0.2.0-1
+- update to 0.2.0
+- ldconfig in %%post/%%postun
+- libtoolize
+- clean up spec file a little, build gtk-doc
+- fix libtool versioning 
+
+* Thu Jun 05 2003 Rui Miguel Silva Seabra <rms at 1407.org>
+- fix spec
+- disable gtk-doc (it's not building in RH 9,
+  maybe it's broken for some reason)
+
+* Fri May 02 2003 Rui Miguel Silva Seabra <rms at 1407.org>
+- define a longer description from the README file
+- explicitly set file permissions
+
+* Wed Apr 30 2003 Dom Lachowicz <cinamod at hotmail.com>
+- created this thing


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	20 May 2006 20:27:15 -0000	1.4
@@ -0,0 +1 @@
+bb02a56a3bf2d5ebf9ffd064992d0ae4  ots-0.4.2.tar.gz


--- dead.package DELETED ---




More information about the fedora-extras-commits mailing list