rpms/ots/devel ots-0.2.0-nodocs.patch, NONE, 1.1 ots-0.4.2-gcc4.patch, NONE, 1.1 ots.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Jeremy Katz (katzj) fedora-extras-commits at redhat.com
Mon Mar 14 22:36:11 UTC 2005


Author: katzj

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

Modified Files:
	.cvsignore sources 
Added Files:
	ots-0.2.0-nodocs.patch ots-0.4.2-gcc4.patch ots.spec 
Log Message:
auto-import ots-0.4.2-4 on branch devel from ots-0.4.2-4.src.rpm

ots-0.2.0-nodocs.patch:

--- NEW FILE ots-0.2.0-nodocs.patch ---
--- ots-0.2.0/Makefile.in.nodocs	2003-07-12 17:34:47.000000000 -0400
+++ ots-0.2.0/Makefile.in	2003-07-12 17:34:59.000000000 -0400
@@ -106,7 +106,7 @@
 AUTOMAKE_OPTIONS = gnu 1.4
 
 DIST_SUBDIRS = src articles dic doc
-SUBDIRS = src dic doc
+SUBDIRS = src dic
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = libots-1.pc
--- ots-0.2.0/Makefile.am.nodocs	2003-07-12 17:35:38.000000000 -0400
+++ ots-0.2.0/Makefile.am	2003-07-12 17:35:47.000000000 -0400
@@ -1,7 +1,7 @@
 AUTOMAKE_OPTIONS = gnu 1.4
 
 DIST_SUBDIRS=src articles dic doc
-SUBDIRS=src dic doc
+SUBDIRS=src dic
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = libots-1.pc

ots-0.4.2-gcc4.patch:

--- NEW FILE ots-0.4.2-gcc4.patch ---
--- ots-0.4.2/src/article.c.orig	2005-03-02 19:42:19.479330826 +0000
+++ ots-0.4.2/src/article.c	2005-03-02 19:42:43.967625287 +0000
@@ -35,7 +35,7 @@
 ots_new_sentence (void)
 {
   OtsSentence *aLine = g_new0 (OtsSentence, 1);
-  (GList *) aLine->words = NULL;
+  aLine->words = NULL;
   aLine->wc = 0;
   aLine->selected = 0;
   aLine->score = 0;


--- NEW FILE ots.spec ---
Name: ots
Summary: A text summarizer
Version: 0.4.2
Release: 4
License: GPL
Group: System Environment/Libraries
Source: http://prdownloads.sourceforge.net/libots/ots-%{version}.tar.gz
Patch1: ots-0.2.0-nodocs.patch
Patch2: ots-0.4.2-gcc4.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildRequires: pkgconfig >= 0.8
Requires: glib2 >= 2.0
BuildRequires: glib2-devel >= 2.0
BuildRequires: libxml2-devel >= 2.4.23
BuildRequires: automake16

%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
Requires: glib2 >= 2.0
Requires: 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 
%patch1 -p1 -b .nodocs
%patch2 -p1 -b .gcc4

%build
# until patch1 goes away
automake-1.6
autoconf

%configure
make

%install
rm -rf $RPM_BUILD_ROOT
%makeinstall

rm -f $RPM_BUILD_ROOT%{_libdir}/*.la

%clean
rm -rf $RPM_BUILD_ROOT

%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
* 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: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/ots/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	14 Mar 2005 22:35:42 -0000	1.1
+++ .cvsignore	14 Mar 2005 22:36:09 -0000	1.2
@@ -0,0 +1 @@
+ots-0.4.2.tar.gz


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/ots/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	14 Mar 2005 22:35:42 -0000	1.1
+++ sources	14 Mar 2005 22:36:09 -0000	1.2
@@ -0,0 +1 @@
+bb02a56a3bf2d5ebf9ffd064992d0ae4  ots-0.4.2.tar.gz




More information about the fedora-extras-commits mailing list