Mailinglist Archive: opensuse-commit (1139 mails)
| < Previous | Next > |
commit yaz
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Wed, 10 Jan 2007 18:04:39 +0100
- Message-id: <20070110170439.80E6767817D@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yaz
checked in at Wed Jan 10 18:04:39 CET 2007.
--------
--- yaz/yaz.changes 2006-10-25 07:40:06.000000000 +0200
+++ /mounts/work_src_done/STABLE/yaz/yaz.changes 2007-01-10 10:11:19.000000000 +0100
@@ -1,0 +2,9 @@
+Wed Jan 10 10:05:18 CET 2007 - ke@xxxxxxx
+
+- Version 2.1.44 (from the NEWS file since 2.1.36):
+ * Bug fixes.
+ * Rename yaz-marcdump options.
+ * Add ziffy, the promiscuous Z39.50 APDU sniffer (GPL v2).
+ * Updates for SRU Update,
+
+-------------------------------------------------------------------
Old:
----
yaz-2.1.36.tar.gz
New:
----
yaz-2.1.44.tar.gz
yaz-codecleanup.44.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yaz.spec ++++++
--- /var/tmp/diff_new_pack.Q26691/_old 2007-01-10 18:04:18.000000000 +0100
+++ /var/tmp/diff_new_pack.Q26691/_new 2007-01-10 18:04:18.000000000 +0100
@@ -1,7 +1,7 @@
#
-# spec file for package yaz (Version 2.1.36)
+# spec file for package yaz (Version 2.1.44)
#
-# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
@@ -13,12 +13,13 @@
Name: yaz
BuildRequires: libxslt-devel openssl-devel readline-devel tcpd-devel
# libxml2-devel
-Version: 2.1.36
+Version: 2.1.44
Release: 1
-License: Other License(s), see package, BSD License and BSD-like
+License: BSD License and BSD-like
Group: Development/Libraries/C and C++
Source: http://ftp.indexdata.dk/pub/yaz/%{name}-%{version}.tar.gz
Patch0: yaz-codecleanup.36.diff
+Patch1: yaz-codecleanup.44.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
URL: http://www.indexdata.dk/yaz/
Summary: Z39.50/SRW/SRU Programs
@@ -53,7 +54,7 @@
Summary: Z39.50 Library
Group: Development/Libraries/C and C++
Requires: libyaz = %{version}
-Requires: openssl-devel libxslt-devel
+Requires: openssl-devel libxslt-devel tcpd-devel
%description -n libyaz-devel
YAZ is a C library for developing client - and server applications
@@ -68,6 +69,7 @@
%prep
%setup -q
%patch0 -p 1
+%patch1 -p 1
%build
# --with-dsssl=/usr/share/sgml/docbook/dsssl-stylesheets \
@@ -126,6 +128,7 @@
%{_bindir}/yaz-marcdump
%{_bindir}/zoomsh
%{_mandir}/*/yaz-client.*
+%{_mandir}/*/ziffy.*
%{_mandir}/*/zoomsh.*
%{_mandir}/*/yaz-ztest.*
%{_mandir}/*/yaz-iconv.*
@@ -157,6 +160,12 @@
%{_mandir}/man1/yaz-asncomp.*
%changelog -n yaz
+* Wed Jan 10 2007 - ke@xxxxxxx
+- Version 2.1.44 (from the NEWS file since 2.1.36):
+ * Bug fixes.
+ * Rename yaz-marcdump options.
+ * Add ziffy, the promiscuous Z39.50 APDU sniffer (GPL v2).
+ * Updates for SRU Update,
* Wed Oct 25 2006 - ke@xxxxxxx
- Version 2.1.36 (from the NEWS file since 2.1.32):
* Implemented yaz_filepath_comp which splits a path into file path
++++++ yaz-2.1.36.tar.gz -> yaz-2.1.44.tar.gz ++++++
++++ 39670 lines of diff (skipped)
++++++ yaz-codecleanup.36.diff ++++++
--- /var/tmp/diff_new_pack.Q26691/_old 2007-01-10 18:04:20.000000000 +0100
+++ /var/tmp/diff_new_pack.Q26691/_new 2007-01-10 18:04:20.000000000 +0100
@@ -57,36 +57,6 @@
ZOOM_resultset resultset = 0;
Z_SRW_PDU *sr = 0;
const char *option_val = 0;
-Only in yaz-2.1.36.new/src: zoom-c.c.orig
-Only in yaz-2.1.36.new/util: marcdump.c.orig
-Only in yaz-2.1.36.new/util: marcdump.c.rej
-diff -ur yaz-2.1.36/util/yaz-xmlquery.c yaz-2.1.36.new/util/yaz-xmlquery.c
---- yaz-2.1.36/util/yaz-xmlquery.c 2006-10-05 09:35:08.000000000 +0200
-+++ yaz-2.1.36.new/util/yaz-xmlquery.c 2006-10-25 07:16:57.000000000 +0200
-@@ -62,19 +62,19 @@
- }
- else
- {
-- char *buf_out = 0;
-+ union { char *cp; xmlChar *xmlp; }buf_out = { NULL };
- int len_out = 0;
-
-- xmlDocDumpMemory(doc, (xmlChar **) &buf_out, &len_out);
-+ xmlDocDumpMemory(doc, &buf_out.xmlp, &len_out);
-
-- if (!len_out || !buf_out)
-+ if (!len_out || !buf_out.cp)
- {
- fprintf(stderr, "%s: xmlDocDumpMemory failed for query %s\n",
- prog, pqf);
- exit(4);
- }
- else
-- fwrite(buf_out, len_out, 1, stdout);
-+ fwrite(buf_out.cp, len_out, 1, stdout);
- xmlFreeDoc(doc);
- }
- }
diff -ur yaz-2.1.36/zoom/zoom-benchmark.c yaz-2.1.36.new/zoom/zoom-benchmark.c
--- yaz-2.1.36/zoom/zoom-benchmark.c 2006-10-05 09:35:09.000000000 +0200
+++ yaz-2.1.36.new/zoom/zoom-benchmark.c 2006-10-25 07:16:57.000000000 +0200
++++++ yaz-codecleanup.44.diff ++++++
--- yaz-2.1.44/util/yaz-xmlquery.c.~1~ 2007-01-09 17:17:12.000000000 +0100
+++ yaz-2.1.44/util/yaz-xmlquery.c 2007-01-09 17:27:26.000000000 +0100
@@ -62,19 +62,19 @@
}
else
{
- xmlChar *buf_out = 0;
+ union { char *cp; xmlChar *xmlp; }buf_out = { NULL };
int len_out = 0;
- xmlDocDumpMemory(doc, &buf_out, &len_out);
+ xmlDocDumpMemory(doc, &buf_out.xmlp, &len_out);
- if (!len_out || !buf_out)
+ if (!len_out || !buf_out.cp)
{
fprintf(stderr, "%s: xmlDocDumpMemory failed for query %s\n",
prog, pqf);
exit(4);
}
else
- fwrite(buf_out, len_out, 1, stdout);
+ fwrite(buf_out.cp, len_out, 1, stdout);
xmlFreeDoc(doc);
}
}
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |