--- libice-1.0.10.orig/ChangeLog +++ libice-1.0.10/ChangeLog @@ -1,408 +1,3 @@ -commit 8e6a14c63d6b73cde87cb331439f2a4d19cba5b9 -Author: Alan Coopersmith -Date: Sun Jul 14 10:37:25 2019 -0700 - - libICE 1.0.10 - - Signed-off-by: Alan Coopersmith - -commit b6aad584c1dc278364c295165512b5f5b98c173e -Author: Olivier Fourdan -Date: Thu Apr 11 09:05:15 2019 +0200 - - cleanup: Separate variable assignment and test - - Assigning and testing a value in a single statement hinders code clarity - and may confuses static code analyzers. - - Separate the assignment and the test for clarity. - - Signed-off-by: Olivier Fourdan - -commit 772e5b0fdfc9dbd8bec070bd0c4c7eb5565df2ee -Author: Olivier Fourdan -Date: Wed Apr 10 11:15:11 2019 +0200 - - _IceRead: Avoid possible use-after-free - - `_IceRead()` gets called from multiple places which do not expect the - connection to be freed. - - Do not free the connection data in `_IceRead()` to avoid potential - use-after-free issue in the various callers. - - The connection data will be freed eventually in `ProcessWantToClose()`, - so not freeing it in `_IceRead()` should not introduce an memory leak. - - Signed-off-by: Olivier Fourdan - -commit 1493beba2aa03bdadeed8b4fa5d424df6e113071 -Author: Olivier Fourdan -Date: Wed Apr 10 11:01:31 2019 +0200 - - IceListenForWellKnownConnections: Fix memleak - - The function `_IceTransMakeAllCOTSServerListeners` allocates memory for - `transConns` which is leaked in case of error. - - Signed-off-by: Olivier Fourdan - -commit a67a477eefdc93c32fa82da6ff0b4e69dd4c2ccb -Author: Alan Coopersmith -Date: Sun Mar 24 15:29:34 2019 -0700 - - IceWritePad: always use zero values for pad bytes - - Previously it would just bump the pointer in the buffer leaving - whatever values were previously there in place. - - Signed-off-by: Alan Coopersmith - -commit 2318ace3340009c44e78eab094f159f0e0b4a197 -Author: Alan Coopersmith -Date: Sun Mar 24 14:36:10 2019 -0700 - - IceOpenConnection: check for malloc failure on connect_to_you too - - Fixes: https://gitlab.freedesktop.org/xorg/lib/libice/issues/4 - - Reported-by: mahendra - Signed-off-by: Alan Coopersmith - -commit b484311c929a1b64966d89da92fafce7263006e1 -Author: Allison Lortie -Date: Tue Jun 14 16:09:46 2016 -0400 - - authutil: support $XDG_RUNTIME_DIR/ICEauthority - - If we find that $XDG_RUNTIME_DIR is set (and $ICEAUTHORITY is not), then - the ICEauthority file is stored in the XDG_RUNTIME_DIR instead of the - home directory, and without a leading dot. - - https://bugs.freedesktop.org/show_bug.cgi?id=49173 - Signed-off-by: Alan Coopersmith - -commit 48ed5e04b5a8ba64dcfeea090cf3a32d3087b749 -Author: Allison Lortie -Date: Tue Jun 14 16:08:21 2016 -0400 - - authutil: fix an out-of-bounds access - - There is a theoretical edge case where the $HOME environment variable - could be set to the empty string. IceAuthFileName() unconditionally - checks index 1 of this string, which is out of bounds. - - Fix that up by rejecting empty strings in the same way as we reject - NULL. - - https://bugs.freedesktop.org/show_bug.cgi?id=49173 - Signed-off-by: Alan Coopersmith - -commit 468b83ec4810b4ea2373182b5801f998f3dcd471 -Author: Tobias Stoeckmann -Date: Mon Jul 30 20:50:58 2018 +0200 - - Always terminate strncpy results. - - The function strncpy does not guarantee to append a terminating - NUL character to the destination. - - This patch merges libSM's way of handling this issue into libICE. - - Signed-off-by: Tobias Stoeckmann - Signed-off-by: Alan Coopersmith - -commit 1cc4ae8648590f04557a20c8d88d39cef7fe8119 -Author: walter harms -Date: Thu Sep 7 18:52:13 2017 +0200 - - iceauth.c: FIX warning: unused variable 'ret' in 'arc4random_buf' - - commit ff5e59f32255913bb1cdf51441b98c9107ae165b left ret outside the #if - causing a gcc warning: - - In function 'arc4random_buf': - iceauth.c:89:13: warning: unused variable 'ret' [-Wunused-variable] - - fixed by moving #if 1 up - - Signed-off-by: Walter Harms - Reviewed-by: Alan Coopersmith - Signed-off-by: Alan Coopersmith - -commit ccbcae7d3409789bf346ca35963264d064f54cba -Author: Alan Coopersmith -Date: Fri Dec 7 19:29:55 2018 -0800 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit e72ca90879db149bbee6232dd78a565e630e917d -Author: Alan Coopersmith -Date: Sun Nov 18 21:48:59 2018 -0800 - - Update README for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit dc73ec034c9083b8c7d980e80eb6d4c88bcfaa51 -Author: Alan Coopersmith -Date: Sat Nov 10 13:13:45 2018 -0800 - - Remove obsolete B16 & B32 tags in struct definitions - - Signed-off-by: Alan Coopersmith - -commit f66955f7250d7c150dfb97862878acc2222781e5 -Author: walter harms -Date: Fri Sep 8 20:03:03 2017 +0200 - - make IceProtocolShutdown() more readable - - I found IceProtocolShutdown() hard to read only to find that was - it does it aktually very simple. So i rearranged the code to make - it more readable. - - Signed-off-by: Walter Harms - Reviewed-by: Eric Engestrom - [Emil Velikov: whitespace fixes] - Signed-off-by: Emil Velikov - -commit 936dcaac07f7db569ed91a34e0a4b5944aac205f -Author: walter harms -Date: Fri Sep 8 19:59:17 2017 +0200 - - Drop NULL check prior to free() - - free() can handle NULL just fine - remove the check. - - Signed-off-by: Walter Harms - Reviewed-by: Eric Engestrom - Reviewed-by: Emil Velikov - -commit 43644931cb9cb5cc92391f6f5431535b9b7a3f24 -Author: Eric Engestrom -Date: Fri Jul 7 11:23:48 2017 +0100 - - Make sure string is never NULL - - `error_message` is passed in to strncpy() without any check, which - doesn't handle NULL itself, so let's make it a valid empty string in - cases where it was NULL. - - Signed-off-by: Eric Engestrom - Acked-by: Walter Harms - Reviewed-by: Emil Velikov - -commit e8c21056134498c49733f6baf572ffbb051ed886 -Author: Eric Engestrom -Date: Fri Jul 7 11:23:47 2017 +0100 - - Make sure error_message is a free-able string - - Similar to the previous commit, assigning a static string would crash - upon freeing. - - Signed-off-by: Eric Engestrom - Acked-by: Walter Harms - Reviewed-by: Emil Velikov - -commit 7a7844bf5ade915268fe7f9b292908c6cd75f3ba -Author: Eric Engestrom -Date: Fri Jul 7 11:23:46 2017 +0100 - - Make sure errorStr is a free-able string - - If the `errorClass` isn't handled by the switch, `errorStr`'s initial - value would be a pointer to some static memory with an empty string, - and freeing it would most likely crash. - - Let's set it to NULL instead, as is done in other similar places. - - Signed-off-by: Eric Engestrom - Acked-by: Walter Harms - Reviewed-by: Emil Velikov - -commit 7ef9680caa8c223a09beb637e26fd3471128e6ba -Author: Emil Velikov -Date: Sun May 8 09:19:36 2016 +0100 - - configure.ac: set TRANS_CLIENT/SERVER - - Similar to ICE_t just set the define globally and remove the multiple - definitions throughout the tree - - Signed-off-by: Emil Velikov - Reviewed-by: Adam Jackson - Reviewed-by: Eric Engestrom (IRC) - -commit ab64a947b5de5b778f31ede9cfce386566023a14 -Author: Emil Velikov -Date: Sun May 8 09:19:35 2016 +0100 - - Kill off local ICE_t definitions - - Already defined at global scale in configure.ac - - Signed-off-by: Emil Velikov - Reviewed-by: Adam Jackson - Reviewed-by: Eric Engestrom (IRC) - -commit f4c00d345edf3dad5893b50ff0ae7cd3e0cfd780 -Author: Emil Velikov -Date: Sun May 8 09:19:34 2016 +0100 - - Remove unneeded ^L symbols. - - Signed-off-by: Emil Velikov - Reviewed-by: Adam Jackson - Reviewed-by: Eric Engestrom (IRC) - -commit d603d7d7d989c4ff1094810e9fcf2a29bc00bb0c -Author: Emil Velikov -Date: Sun May 8 09:19:33 2016 +0100 - - Kill off Time_t macro - - Analogous to previous commit, including the megacommit that removed the - need for it. - - Signed-off-by: Emil Velikov - Reviewed-by: Adam Jackson - Reviewed-by: Eric Engestrom (IRC) - -commit 82250f26fc76d7b7574cfd472646a98e325d944a -Author: Emil Velikov -Date: Sun May 8 09:19:32 2016 +0100 - - Kill off Strstr macro - - Directly use the strstr function as opposed to wrapping it in a macro. - The latter is no longer needed as of - - commit 72e353567f8927996a26e72848d86f692c3f0737 - Author: Kaleb Keithley - Date: Fri Nov 14 16:48:46 2003 +0000 - - XFree86 4.3.0.1 - - Signed-off-by: Emil Velikov - Reviewed-by: Adam Jackson - Reviewed-by: Eric Engestrom (IRC) - -commit ff5e59f32255913bb1cdf51441b98c9107ae165b -Author: Benjamin Tissoires -Date: Tue Apr 4 19:12:53 2017 +0200 - - Use getentropy() if arc4random_buf() is not available - - This allows to fix CVE-2017-2626 on Linux platforms without pulling in - libbsd. - The libc getentropy() is available since glibc 2.25 but also on OpenBSD. - For Linux, we need at least a v3.17 kernel. If the recommended - arc4random_buf() function is not available, emulate it by first trying - to use getentropy() on a supported glibc and kernel. If the call fails, - fall back to the current (partly vulnerable) code. - - Signed-off-by: Benjamin Tissoires - Reviewed-by: Mark Kettenis - Reviewed-by: Alan Coopersmith - Signed-off-by: Peter Hutterer - -commit 1746abbb1ae1c41ba29c14895c5bd3f1334faef5 -Author: Mihail Konev -Date: Thu Jan 26 13:52:49 2017 +1000 - - autogen: add default patch prefix - - Signed-off-by: Mihail Konev - -commit 3aa14db63fefb7634b1bd4370e33ba14c4ea90ae -Author: Emil Velikov -Date: Mon Mar 9 12:00:52 2015 +0000 - - autogen.sh: use quoted string variables - - Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent - fall-outs, when they contain space. - - Signed-off-by: Emil Velikov - Reviewed-by: Peter Hutterer - Signed-off-by: Peter Hutterer - -commit d41c57eaa0c1474acf0a6fb271f22106e3070016 -Author: Peter Hutterer -Date: Tue Jan 24 10:32:07 2017 +1000 - - autogen.sh: use exec instead of waiting for configure to finish - - Syncs the invocation of configure with the one from the server. - - Signed-off-by: Peter Hutterer - Reviewed-by: Emil Velikov - -commit ac4bb20e74e064b219de70e9b54516a921fdb7c3 -Author: Tobias Stoeckmann -Date: Tue Nov 22 20:13:29 2016 +0100 - - Fix use after free on subsequent calls - - The function IceAuthFileName is vulnerable to a use after free. The - flaw can be triggered by calling the function three times: - - - First call succeeds and stores the path in buf, a dynamically - allocated buffer with size bsize. - - Second call fails due to out of memory. It frees buf, but keeps - the old size in bsize. - - Third call only checks if bsize is large enough. Then it uses - buf without allocating it again -- the use after free happens. - - In order to exploit this, an attacker must change environment variables - between each call, namely ICEAUTHORITY or HOME. It also takes subsequent - calls. Due to these limitations, I don't consider this to be of high - priority. - - Reviewed-by: Matthieu Herrb - -commit b1720edc9b9f3e7a05caa3fcd81761e5818ea255 -Author: Remko van der Vossen -Date: Sun Jul 19 08:34:11 2015 -0700 - - Bug 90616 - libICE build fails on array bounds check - - https://bugs.freedesktop.org/show_bug.cgi?id=90616 - - Recent versions of gcc have array bounds checking turned on by default, - this leads to build failures of libICE. As the _IceVersionCount variable - in ICElibint.h is not declared const the compiler cannot assume that the - nested for loop in ProcessConnectionSetup stays within bounds. - - The simple fix is of course to change the declarations of _IceVersionCount, - _IceVersions, and the local variable myVersionCount to const declarations. - - Reviewed-by: Alan Coopersmith - Signed-off-by: Alan Coopersmith - -commit 8a511dad53774693ed818d54d7896e1663942b18 -Author: Jon TURNEY -Date: Sat Sep 13 17:13:44 2014 +0100 - - Include unistd.h for getpid() - - Signed-off-by: Jon TURNEY - Reviewed-by: David Macek - -commit fd22b62ae6380ddb00fa4c750f5ce175d2a6e76f -Author: Alan Coopersmith -Date: Sun Sep 14 13:08:17 2014 -0700 - - spec: Convert troff \*Q..\*U to DocBook ... - - Reported-by: Jasper St. Pierre - Signed-off-by: Alan Coopersmith - Reviewed-by: Jasper St. Pierre - commit 0dfab4253e26d5c6e5f058126eb5e9f7a7732ae8 Author: Alan Coopersmith Date: Fri Jun 6 18:28:28 2014 -0700 --- libice-1.0.10.orig/autogen.sh +++ libice-1.0.10/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf -v --install || exit 1 +cd "$ORIGDIR" || exit $? + +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH libICE" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- libice-1.0.10.orig/debian/README.source +++ libice-1.0.10/debian/README.source @@ -0,0 +1,73 @@ +------------------------------------------------------ +Quick Guide To Patching This Package For The Impatient +------------------------------------------------------ + +1. Make sure you have quilt installed +2. Unpack the package as usual with "dpkg-source -x" +3. Run the "patch" target in debian/rules +4. Create a new patch with "quilt new" (see quilt(1)) +5. Edit all the files you want to include in the patch with "quilt edit" + (see quilt(1)). +6. Write the patch with "quilt refresh" (see quilt(1)) +7. Run the "clean" target in debian/rules + +Alternatively, instead of using quilt directly, you can drop the patch in to +debian/patches and add the name of the patch to debian/patches/series. + +------------------------------------ +Guide To The X Strike Force Packages +------------------------------------ + +The X Strike Force team maintains X packages in git repositories on +git.debian.org in the pkg-xorg subdirectory. Most upstream packages +are actually maintained in git repositories as well, so they often +just need to be pulled into git.debian.org in a "upstream-*" branch. +Otherwise, the upstream sources are manually installed in the Debian +git repository. + +The .orig.tar.gz upstream source file could be generated this +"upstream-*" branch in the Debian git repository but it is actually +copied from upstream tarballs directly. + +Due to X.org being highly modular, packaging all X.org applications +as their own independent packages would have created too many Debian +packages. For this reason, some X.org applications have been grouped +into larger packages: xutils, xutils-dev, x11-apps, x11-session-utils, +x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils. +Most packages, including the X.org server itself and all libraries +and drivers are, however maintained independently. + +The Debian packaging is added by creating the "debian-*" git branch +which contains the aforementioned "upstream-*" branch plus the debian/ +repository files. +When a patch has to be applied to the Debian package, two solutions +are involved: +* If the patch is available in one of the upstream branches, it + may be git'cherry-picked into the Debian repository. In this + case, it appears directly in the .diff.gz. +* Otherwise, the patch is added to debian/patches/ which is managed + with quilt as documented in /usr/share/doc/quilt/README.source. + +quilt is actually invoked by the Debian X packaging through a larger +set of scripts called XSFBS. XSFBS brings some other X specific +features such as managing dependencies and conflicts due to the video +and input driver ABIs. +XSFBS itself is maintained in a separate repository at + git://git.debian.org/pkg-xorg/xsfbs.git +and it is pulled inside the other Debian X repositories when needed. + +The XSFBS patching system requires a build dependency on quilt. Also +a dependency on $(STAMP_DIR)/patch has to be added to debian/rules +so that the XSFBS patching occurs before the actual build. So the +very first target of the build (likely the one running autoreconf) +should depend on $(STAMP_DIR)/patch. It should also not depend on +anything so that parallel builds are correctly supported (nothing +should probably run while patching is being done). And finally, the +clean target should depend on the xsfclean target so that patches +are unapplied on clean. + +When the upstream sources contain some DFSG-nonfree files, they are +listed in text files in debian/prune/ in the "debian-*" branch of +the Debian repository. XSFBS' scripts then take care of removing +these listed files during the build so as to generate a modified +DFSG-free .orig.tar.gz tarball. --- libice-1.0.10.orig/debian/changelog +++ libice-1.0.10/debian/changelog @@ -0,0 +1,244 @@ +libice (2:1.0.10-1) unstable; urgency=medium + + * New upstream selease. + * Bump debhelper to 12. + * Migrate to -dbgsym. + * Bump policy to 4.5.0. + * control: Update VCS urls. + * Migrate to x11proto-dev. + + -- Timo Aaltonen Thu, 24 Sep 2020 11:25:46 +0300 + +libice (2:1.0.9-2) unstable; urgency=medium + + [ Julien Cristau ] + * CVE-2017-2626: Use libbsd for arc4random. Closes: #856400. + * Bump Standards-Version to 3.9.6, update Vcs-* control fields. + + [ Emilio Pozuelo Monfort ] + * Remove Drew from Uploaders. + + -- Emilio Pozuelo Monfort Tue, 28 Feb 2017 22:46:39 +0100 + +libice (2:1.0.9-1) unstable; urgency=medium + + * New upstream release. + * Remove Cyril from Uploaders. + * Rewrite debian/rules using dh. Switch to compat level 9. + + -- Julien Cristau Sun, 13 Jul 2014 01:38:11 +0200 + +libice (2:1.0.8-2) unstable; urgency=low + + * Add missing Replaces/Breaks on libice-dev in the doc package. Thanks, + Sven Joachim! + + -- Julien Cristau Mon, 09 Apr 2012 20:08:47 +0200 + +libice (2:1.0.8-1) unstable; urgency=low + + * New upstream release. + * Bump xutils-dev, xmlto and xorg-sgml-doctools build-deps. + * Pass the shlib version to dh_makeshlibs instead of using a .shlibs file. + * Stop installing xorg.css, it's no longer shipped. + * Don't require (fake)root for debian/rules clean. + * Split the protocol spec and API doc to a separate libice-doc package. + Disable the docs in the build-arch target. + * Mark libice-dev as multi-arch capable. + + -- Julien Cristau Mon, 09 Apr 2012 17:01:09 +0200 + +libice (2:1.0.7-2) unstable; urgency=low + + * Team upload. + + [ Julien Cristau ] + * Drop Pre-Depends on x11-common, only needed for upgrades from the + monolith. + * Remove David Nusinow from Uploaders. + * Bump Standards-Version to 3.9.2. + + [ Steve Langasek ] + * Build for multiarch. + + -- Julien Cristau Thu, 09 Jun 2011 20:46:55 +0200 + +libice (2:1.0.7-1) unstable; urgency=low + + * New upstream release. + * Drop 0001-Set-the-close-on-exec-flag-for-listening-sockets.patch + * Bump xutils-dev build-dep for new macros. + * Add xmlto, xorg-sgml-doctools, and w3m build-dep for the doc. + * Kill *.xml in the doc directory, no point in shipping them. + * Ship *.html, *.css, and *.txt from the doc directory. + * Switch from --list-missing to --fail-missing for additional safety. + + -- Cyril Brulebois Mon, 08 Nov 2010 01:24:07 +0100 + +libice (2:1.0.6-2) unstable; urgency=low + + [ Julien Cristau ] + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + * Remove myself from Uploaders + + [ Cyril Brulebois ] + * Cherry-pick from upstream: + + 0001-Set-the-close-on-exec-flag-for-listening-sockets.patch: + Stop leaking listening sockets by setting the close on exec flag on + them. Thanks to Kalle Olavi Niemitalo (Closes: #538248). + [From upstream 1967c04c0] + * Add myself to Uploaders. + + -- Cyril Brulebois Fri, 29 Oct 2010 14:56:48 +0200 + +libice (2:1.0.6-1) unstable; urgency=low + + [ Julien Cristau ] + * libice6-dbg doesn't need to depend on x11-common. + * Remove the debian revision from the xtrans-dev build-dep. + * Move -dbg package to the debug section. + + [ Timo Aaltonen ] + * New upstream release. + * Bump Standards-Version to 3.8.3. + + -- Julien Cristau Mon, 23 Nov 2009 17:41:57 +0100 + +libice (2:1.0.5-1) unstable; urgency=low + + [ Brice Goglin ] + * Bump Standards-Version to 3.7.3 (no changes). + * Drop the XS- prefix from Vcs-Git and Vcs-Browser fields in debian/control. + * Add a link to www.X.org and a reference to the upstream module + in the long description. + + [ Julien Cristau ] + * New upstream release. + * Run autoreconf on build. Build-depend on automake, libtool and xutils-dev + (>= 1:7.4+4). + * Handle parallel builds. + + -- Julien Cristau Thu, 19 Feb 2009 17:34:32 +0100 + +libice (2:1.0.4-1) unstable; urgency=low + + [ Julien Cristau ] + * Sync package sections with the override. + + [ Brice Goglin ] + * New upstream release. + * Fix typo in long descriptions, thanks Philippe Cloutier + (closes: #436009). + + -- Brice Goglin Tue, 21 Aug 2007 09:16:11 +0200 + +libice (2:1.0.3-3) unstable; urgency=low + + [ Julien Cristau ] + * Fix the name of the XS-Vcs-Browser field. + * Add the upstream URL to debian/copyright. + * Add myself to Uploaders, and remove Fabio and Branden with their + permission. + * s/Source-Version/binary:Version/ in debian/control. + + [ Timo Aaltonen ] + * Bump the epoch so that this can be synced to Ubuntu in the future. + + -- Julien Cristau Mon, 23 Jul 2007 18:26:56 +0200 + +libice (1:1.0.3-2) unstable; urgency=low + + * Remove outdated cvs information from the package descriptions, and add + XS-Vcs-* headers. + * Upload to unstable. + + -- Julien Cristau Tue, 10 Apr 2007 19:00:04 +0200 + +libice (1:1.0.3-1) experimental; urgency=low + + * New upstream release. + * Install the upstream ChangeLog. + + -- Julien Cristau Fri, 9 Feb 2007 17:10:45 +0100 + +libice (1:1.0.1-2) unstable; urgency=low + + [ David Nusinow ] + * Add shlibs file to the package, and have it require libice from modular. + Thanks Daniel Stone. (closes: #374775) + + [ Andres Salomon ] + * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build; + idempotency fix. + + [ Drew Parsons ] + * dbg package has priority extra. + * exclude libICE.la from dh_install + * upload to unstable (X11R7.1) + + -- Drew Parsons Fri, 8 Sep 2006 22:26:27 +1000 + +libice (1:1.0.1-1) experimental; urgency=low + + * New upstream release + * Run dh_install with --list-missing + * Bump debhelper compat to 5 + * Remove extra x11-common dep in -dev package + * Version x11-common pre-dep in -dev package to use 1:7.0.0 to match the + rest of Debian and shut lintian up + * Bump build-dep version on xtrans-dev to 1.0.1-1 to make sure we get the + security fix + * Bump standards version to 3.7.2.0 + * Don't look to install manpages for the -dev package, there aren't any + + -- David Nusinow Mon, 3 Jul 2006 16:54:13 -0400 + +libice (1:1.0.0-3) unstable; urgency=low + + * Reorder makeshlib command in rules file so that ldconfig is run + properly. Thanks Drew Parsons and Steve Langasek. + + -- David Nusinow Tue, 18 Apr 2006 21:49:55 -0400 + +libice (1:1.0.0-2) unstable; urgency=low + + * Upload to unstable + + -- David Nusinow Thu, 23 Mar 2006 22:44:24 -0500 + +libice (1:1.0.0-1) experimental; urgency=low + + * First upload to Debian + * Remove 016_ICE_subprotocol_reply_fix.diff as it is now obsolete. Thanks + Eugene Konev. + + -- David Nusinow Thu, 5 Jan 2006 01:19:13 -0500 + +libice (1:6.3.5-4) breezy; urgency=low + + * Implicit deps are bad, mmmk? + Fixed those, so ICE nolonger SEGV's on ia64. + + -- LaMont Jones Tue, 4 Oct 2005 04:52:10 -0600 + +libice (1:6.3.5-3) breezy; urgency=low + + * Add 016_ICE_subprotocol_reply_fix.diff, from the monolithic tree. + * Remove pointless #include in ICEutil.h. + * Make Build-Depend xtrans versioned to a fixed one, to keep buildds a + little bit happier. + + -- Daniel Stone Wed, 1 Jun 2005 12:34:51 +1000 + +libice (1:6.3.5-2) breezy; urgency=low + + * Fix Build-Depends-Indep vs B-D hilary/stupidity. + + -- Daniel Stone Wed, 1 Jun 2005 00:33:36 +1000 + +libice (1:6.3.5-1) breezy; urgency=low + + * First libice release. + + -- Daniel Stone Mon, 16 May 2005 22:10:17 +1000 --- libice-1.0.10.orig/debian/control +++ libice-1.0.10/debian/control @@ -0,0 +1,71 @@ +Source: libice +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Build-Depends: + debhelper-compat (= 12), + quilt, + pkg-config, + x11proto-dev, + xtrans-dev (>= 1.0.1), + xutils-dev (>= 1:7.6+2), + libbsd-dev, +Build-Depends-Indep: + xmlto (>= 0.0.22), + xorg-sgml-doctools (>= 1:1.8), + w3m, +Standards-Version: 4.5.0 +Vcs-Git: https://salsa.debian.org/xorg-team/lib/libice.git +Vcs-Browser: https://salsa.debian.org/xorg-team/lib/libice + +Package: libice6 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same +Description: X11 Inter-Client Exchange library + This package provides the main interface to the X11 Inter-Client Exchange + library, which allows for communication of data between X clients. + . + More information about X.Org can be found at: + + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libICE + +Package: libice-dev +Architecture: any +Multi-Arch: same +Section: libdevel +Depends: ${shlibs:Depends}, ${misc:Depends}, libice6 (= ${binary:Version}), x11proto-dev +Suggests: libice-doc +Description: X11 Inter-Client Exchange library (development headers) + This package provides the main interface to the X11 Inter-Client Exchange + library, which allows for communication of data between X clients. + . + This package contains the development headers for the library found in libice6. + Non-developers likely have little use for this package. + . + More information about X.Org can be found at: + + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libICE + +Package: libice-doc +Architecture: all +Multi-Arch: foreign +Section: doc +Depends: + ${misc:Depends}, +Replaces: + libice-dev (<< 2:1.0.8), +Breaks: + libice-dev (<< 2:1.0.8), +Description: documentation for the X11 ICE protocol and library + The Inter-Client Exchange (ICE) Protocol allows for communication of data + between X clients. + . + This package contains the ICE protocol specification and documentation for the + ICE library. --- libice-1.0.10.orig/debian/copyright +++ libice-1.0.10/debian/copyright @@ -0,0 +1,26 @@ +This package was downloaded from +http://xorg.freedesktop.org/releases/individual/lib/ + +Copyright 1993, 1998 The Open Group + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. + +Author: Ralph Mor, X Consortium --- libice-1.0.10.orig/debian/libice-dev.install +++ libice-1.0.10/debian/libice-dev.install @@ -0,0 +1,4 @@ +usr/include/X11/* +usr/lib/*/libICE.a +usr/lib/*/libICE.so +usr/lib/*/pkgconfig/ice.pc --- libice-1.0.10.orig/debian/libice-doc.install +++ libice-1.0.10/debian/libice-doc.install @@ -0,0 +1 @@ +usr/share/doc/libice-dev --- libice-1.0.10.orig/debian/libice6.install +++ libice-1.0.10/debian/libice6.install @@ -0,0 +1 @@ +usr/lib/*/libICE.so.6* --- libice-1.0.10.orig/debian/rules +++ libice-1.0.10/debian/rules @@ -0,0 +1,37 @@ +#!/usr/bin/make -f +# debian/rules for the Debian libice package. +# Copyright © 2004 Scott James Remnant +# Copyright © 2005 Daniel Stone +# Copyright © 2005 David Nusinow + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# set this to the name of the main shlib's binary package +PACKAGE = libice6 + +%: + dh $@ --with quilt --builddirectory=build/ + +override_dh_auto_configure-arch: docflags = --disable-docs --disable-specs +override_dh_auto_configure-indep: docflags = --enable-docs --enable-specs +override_dh_auto_configure-arch override_dh_auto_configure-indep: + dh_auto_configure -- \ + --docdir=\$${datadir}/doc/libice-dev \ + --disable-silent-rules \ + $(docflags) + +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install --sourcedir=debian/tmp + +override_dh_missing: + dh_missing --fail-missing + +override_dh_strip: + dh_strip -p$(PACKAGE) --dbgsym-migration='libice6-dbg (<< 2:1.0.10-1~)' + dh_strip -N$(PACKAGE) + +override_dh_makeshlibs: + dh_makeshlibs -a -V'$(PACKAGE) (>= 1:1.0.0)' + --- libice-1.0.10.orig/debian/watch +++ libice-1.0.10/debian/watch @@ -0,0 +1,3 @@ +#git=git://anongit.freedesktop.org/xorg/lib/libICE +version=3 +http://xorg.freedesktop.org/releases/individual/lib/ libICE-(.*)\.tar\.gz