Hello community,

here is the log from the commit of package dante for openSUSE:Factory checked 
in at 2012-02-07 14:45:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dante (Old)
 and      /work/SRC/openSUSE:Factory/.dante.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dante", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/dante/dante.changes      2011-12-05 
12:43:17.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.dante.new/dante.changes 2012-02-07 
14:45:19.000000000 +0100
@@ -1,0 +2,34 @@
+Thu Jan 12 16:54:58 UTC 2012 - [email protected]
+
+- fixed 64bit-portability-issue
+- fixed some man page format problems
+
+- update to 1.3.2
+  * Part of possible resource optimization indicated in section 4.4
+    of the Dante 1.3.1 performance evaluation report
+    (http://www.inet.no/dante/doc/1.3.x/dante_performance_1.3.1.pdf)
+    has been implemented: scheduling new clients to the Dante process
+    with fewest free slots available.
+  * If the proxy server (socks, http, or upnp) is configured via
+    environment variables, don't attempt to also parse any socks.conf
+    files
+  * The "HTTP_PROXY" environment variable has been renamed to 
+    "HTTP_CONNECT_PROXY" to avoid conflict with HTTP proxies that do
+    not support the HTTP CONNECT request
+  * Fixed an unintended change to ACL semantics regarding bind requests
+    in Dante 1.2.3 noted by Ralf Wenk 
+    <[email protected]> many thanks
+  * Fixed a bug regarding handling of cases where the ulimit for max
+    number of files is unlimited. Reported and analyzed by Ralf Wenk
+    <[email protected]> 
+
+- changes in 1.3.1
+  * Fixed a bug regarding handling of socks clients that do not fillow
+    the spec and start sending traffic data before request has been
+    granted.
+  * Fixed an error related to ACL on UDP-packets. If a given SOCKS
+    client was allowed to send some UDP packets, in some cases
+    packets from the same SOCKS client that should have been blocked
+    were allowed.
+
+-------------------------------------------------------------------

Old:
----
  dante-1.3.0.tar.bz2

New:
----
  dante-1.3.2-64bit_portability.patch
  dante-1.3.2-sockd_conf_man_format.patch
  dante-1.3.2-socksify_man_format.patch
  dante-1.3.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ dante.spec ++++++
--- /var/tmp/diff_new_pack.aEMG2m/_old  2012-02-07 14:45:20.000000000 +0100
+++ /var/tmp/diff_new_pack.aEMG2m/_new  2012-02-07 14:45:20.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dante
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,19 +22,23 @@
 BuildRequires:  pam-devel
 BuildRequires:  cyrus-sasl-devel
 BuildRequires:  libtool
+BuildRequires:  autoconf >= 2.61
 %if 0%{?suse_version} == 0 || 0%{?suse_version} >= 1000
 BuildRequires:  krb5-devel
 %endif
 Summary:        A Free Socks v4 and v5 Client Implementation
-Version:        1.3.0
+Version:        1.3.2
 Release:        1
 License:        BSD-3-Clause
-URL:            http://www.inet.no/dante/
-# http://www.inet.no/dante/files/dante-%{version}.tar.gz
-Source:         dante-%{version}.tar.bz2
+Url:            http://www.inet.no/dante/
+# http://www.inet.no/dante/files/dante-%%{version}.tar.gz
+Source:         dante-%{version}.tar.gz
 Source1:        sockd.init
 Source2:        baselibs.conf
 Source3:        %name-rpmlintrc
+Patch:          dante-1.3.2-64bit_portability.patch
+Patch2:         dante-1.3.2-sockd_conf_man_format.patch
+Patch3:         dante-1.3.2-socksify_man_format.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Group:          Productivity/Networking/Security
 # SuSE series: sec
@@ -84,6 +88,9 @@
 
 %prep
 %setup -q
+%patch
+%patch2
+%patch3
 %{?suse_update_config:%{suse_update_config -l -f}}
 
 %build
@@ -121,6 +128,9 @@
 
 %__rm Makefile* SPECS/Makefile*
 
+%preun -n dante-server
+%stop_on_removal
+
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
@@ -130,6 +140,7 @@
 
 %postun -n dante-server
 %{insserv_cleanup}
+%restart_on_update
 
 %files
 %defattr(-,root,root)

++++++ dante-1.3.2-64bit_portability.patch ++++++
--- lib/log.c.orig      2012-01-11 11:51:00.816935242 -0500
+++ lib/log.c   2012-01-12 09:33:14.205467014 -0500
@@ -715,7 +715,7 @@
    char **strings;
 
    size    = backtrace(array, (int)ELEMENTS(array));
-   strings = backtrace_symbols(array, size);
+   strings = (char **)backtrace_symbols(array, size);
 
    if (strings == NULL)  {
       swarn("%s: strings = NULL", function);
++++++ dante-1.3.2-sockd_conf_man_format.patch ++++++
--- doc/sockd.conf.5.orig       2012-01-12 10:24:34.285960711 -0500
+++ doc/sockd.conf.5    2012-01-12 11:26:56.328178747 -0500
@@ -445,11 +445,9 @@
 The syntax of the redirect statement is
 as follows:
 
-.D1
 \fBredirect\fP from: \fBADDRESS\fP
 
-\".D1
-\"\fBredirect\fP to: \fBADDRESS\fP
+\fBredirect\fP to: \fBADDRESS\fP
 
 See the redirect manual for detailed information.
 
@@ -523,10 +521,8 @@
 The syntax of the redirect statement is
 as follows:
 
-.D1
 \fBredirect\fP from: \fBADDRESS\fP
 
-.D1
 \fBredirect\fP to: \fBADDRESS\fP
 
 The semantics of \fBfrom\fP and \fBto\fP vary according to
@@ -578,8 +574,8 @@
    Karl-Andre' Skevik
 .SH SEE ALSO
 sockd(8), socks.conf(5), hosts_access(5)
-.Pp
+.TP
 Information about new releases and other related issues can be found
 on the
-.Nm \fBDante\fP
+\fBDante\fP
 WWW home page: http://www.inet.no/dante/
++++++ dante-1.3.2-socksify_man_format.patch ++++++
--- doc/socksify.1.orig 2012-01-12 10:40:05.867314343 -0500
+++ doc/socksify.1      2012-01-12 10:40:17.146173337 -0500
@@ -131,7 +131,7 @@
    Karl-Andre' Skevik
 .SH SEE ALSO
 socks.conf(5), sockd(8), sockd.conf(5)
-.Pp
+.PP
 Information about new releases and other related issues can be found
 on the
 \fBDante\fP
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to