OBS User unknown 2007-07-29 09:07:10 +00:00 committed by Git OBS Bridge
parent 648b528768
commit 6f10568b22
5 changed files with 20 additions and 27 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f2b62978cafb6bd40f614dfb1befcabc0060e6bf41a3b34bab8457bdfdfae096
size 3911955

3
tellico-1.2.13.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:683df4884cbf0e86ba2997e64a54dd73866fc85fa504e099556db7c2c11fac98
size 3906467

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sun Jul 29 10:43:54 CEST 2007 - stbinner@suse.de
- update to version 1.2.13: bugfixes and
* Added spell-checking for text fields.
* Added importer for GCstar data files.
* Added compatibility with yaz3.
* Added Copac and National Library of Lithuania to z39.50 server list
-------------------------------------------------------------------
Thu Jul 5 12:13:32 CEST 2007 - stbinner@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package tellico (Version 1.2.12)
# spec file for package tellico (Version 1.2.13)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -19,7 +19,7 @@ BuildRequires: libgcrypt-devel openssl-devel update-desktop-files
BuildRequires: libjpeg-devel
%endif
Summary: A book collection manager
Version: 1.2.12
Version: 1.2.13
Release: 1
License: GPL v2 or later
Group: Productivity/Other
@ -30,7 +30,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
Prefix: /opt/kde3
URL: http://www.periapsis.org/tellico/
Patch: fix-compile.diff
Patch1: yaz-3.0.diff
%description
Tellico is an KDE application for keeping track of your collections. It
@ -42,9 +41,6 @@ coins, stamps, trading cards, comic books, and wines.
%prep
%setup -q
%patch
%if %suse_version > 1020
%patch1
%endif
. /etc/opt/kde3/common_options
update_admin --no-unsermake
@ -79,6 +75,12 @@ rm -rf $RPM_BUILD_DIR/file.list.%{name}.dirs
%defattr(-,root,root,0755)
%changelog
* Sun Jul 29 2007 - stbinner@suse.de
- update to version 1.2.13: bugfixes and
* Added spell-checking for text fields.
* Added importer for GCstar data files.
* Added compatibility with yaz3.
* Added Copac and National Library of Lithuania to z39.50 server list
* Thu Jul 05 2007 - stbinner@suse.de
- update to version 1.2.12:
* Fixed potential recursion bug for dependent fields.

View File

@ -1,18 +0,0 @@
--- src/fetch/z3950connection.cpp
+++ src/fetch/z3950connection.cpp
@@ -442,13 +442,13 @@ QString Z3950Connection::toXML(const QCS
// first 5 bytes are length
bool ok;
- int len = marc_.left(5).toInt(&ok);
+ size_t len = marc_.left(5).toUInt(&ok);
if(ok && (len < 25 || len > 100000)) {
myDebug() << "Z3950Connection::toXML() - bad length: " << (ok ? len : -1) << endl;
return QString::null;
}
- char* result;
+ const char* result;
int r = yaz_marc_decode_buf(mt, marc_, -1, &result, &len);
if(r <= 0) {
myDebug() << "Z3950Connection::toXML() - can't decode buffer" << endl;