summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2008-11-22 12:16:12 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2008-11-22 12:16:12 +0000
commite96d204a3be2727f0cc552529138ad20e7d6a418 (patch)
tree025ad9ba3848ba91878d9b4c1a2ddadffcd8f8c9 /net-libs
parentRemove Module-Build from RDEPEND. Fix LICENSE. (diff)
downloadgentoo-2-e96d204a3be2727f0cc552529138ad20e7d6a418.tar.gz
gentoo-2-e96d204a3be2727f0cc552529138ad20e7d6a418.tar.bz2
gentoo-2-e96d204a3be2727f0cc552529138ad20e7d6a418.zip
Clean up old revisions.
(Portage version: 2.2_rc15/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/gnet/ChangeLog7
-rw-r--r--net-libs/gnet/files/gnet-2.0.7-amd64-fixes.patch170
-rw-r--r--net-libs/gnet/gnet-2.0.7-r1.ebuild30
-rw-r--r--net-libs/gnet/gnet-2.0.7.ebuild34
4 files changed, 6 insertions, 235 deletions
diff --git a/net-libs/gnet/ChangeLog b/net-libs/gnet/ChangeLog
index 0170419d6dd0..ed238f788f36 100644
--- a/net-libs/gnet/ChangeLog
+++ b/net-libs/gnet/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/gnet
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/ChangeLog,v 1.64 2008/08/09 14:23:45 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/ChangeLog,v 1.65 2008/11/22 12:16:12 eva Exp $
+
+ 22 Nov 2008; Gilles Dartiguelongue <eva@gentoo.org>
+ -files/gnet-2.0.7-amd64-fixes.patch, -gnet-2.0.7.ebuild,
+ -gnet-2.0.7-r1.ebuild:
+ Clean up old revisions.
09 Aug 2008; Santiago M. Mola <coldwind@gentoo.org> gnet-2.0.8.ebuild:
amd64 stable wrt bug #233597
diff --git a/net-libs/gnet/files/gnet-2.0.7-amd64-fixes.patch b/net-libs/gnet/files/gnet-2.0.7-amd64-fixes.patch
deleted file mode 100644
index 7a39d6b435b7..000000000000
--- a/net-libs/gnet/files/gnet-2.0.7-amd64-fixes.patch
+++ /dev/null
@@ -1,170 +0,0 @@
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/doc/version.xml gnet-2.0.7.amd64/doc/version.xml
---- gnet-2.0.7/doc/version.xml 2005-02-23 07:31:55.000000000 -0500
-+++ gnet-2.0.7.amd64/doc/version.xml 1969-12-31 19:00:00.000000000 -0500
-@@ -1 +0,0 @@
--2.0.7
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/echoclient-async.c gnet-2.0.7.amd64/examples/echoclient-async.c
---- gnet-2.0.7/examples/echoclient-async.c 2004-09-27 20:27:43.000000000 -0400
-+++ gnet-2.0.7.amd64/examples/echoclient-async.c 2005-09-12 21:50:18.000000000 -0400
-@@ -122,7 +122,7 @@
- {
- GIOError error;
- gchar buffer[1024];
-- guint bytes_read;
-+ gsize bytes_read;
-
- /* Read the data into our buffer */
- error = g_io_channel_read (iochannel, buffer,
-@@ -185,7 +185,7 @@
- {
- GIOError error;
- gchar buffer[1024];
-- guint bytes_read;
-+ gsize bytes_read;
-
- /* Read the data into our buffer */
- error = gnet_io_channel_readline (iochannel, buffer,
-@@ -213,7 +213,7 @@
- {
- GIOChannel* sin;
- GIOError error;
-- guint bytes_written;
-+ gsize bytes_written;
-
- sin = (GIOChannel*) data;
- error = gnet_io_channel_writen (sin, buffer, bytes_read,
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/echoclient-gconn.c gnet-2.0.7.amd64/examples/echoclient-gconn.c
---- gnet-2.0.7/examples/echoclient-gconn.c 2003-02-05 18:40:39.000000000 -0500
-+++ gnet-2.0.7.amd64/examples/echoclient-gconn.c 2005-09-12 21:51:20.000000000 -0400
-@@ -98,7 +98,7 @@
- {
- GIOError error;
- gchar buffer[1024];
-- guint bytes_read;
-+ gsize bytes_read;
-
- /* Read the data into our buffer */
- error = gnet_io_channel_readline (iochannel, buffer,
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/echoclient-unix.c gnet-2.0.7.amd64/examples/echoclient-unix.c
---- gnet-2.0.7/examples/echoclient-unix.c 2003-02-03 12:56:14.000000000 -0500
-+++ gnet-2.0.7.amd64/examples/echoclient-unix.c 2005-09-12 21:51:43.000000000 -0400
-@@ -78,7 +78,7 @@
- GUnixSocket *socket = NULL;
- GIOChannel* iochannel = NULL;
- gchar buffer[1024];
-- guint n;
-+ gsize n;
- GIOError e = G_IO_ERROR_NONE;
-
- g_assert(path != NULL);
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/echoclient.c gnet-2.0.7.amd64/examples/echoclient.c
---- gnet-2.0.7/examples/echoclient.c 2003-02-04 15:22:57.000000000 -0500
-+++ gnet-2.0.7.amd64/examples/echoclient.c 2005-09-12 21:46:39.000000000 -0400
-@@ -34,7 +34,7 @@
- GIOChannel* iochannel;
- GIOError error = G_IO_ERROR_NONE;
- gchar buffer[1024];
-- guint n;
-+ gsize n;
-
- gnet_init ();
-
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/echoserver-async.c gnet-2.0.7.amd64/examples/echoserver-async.c
---- gnet-2.0.7/examples/echoserver-async.c 2003-02-04 15:22:57.000000000 -0500
-+++ gnet-2.0.7.amd64/examples/echoserver-async.c 2005-09-12 21:50:57.000000000 -0400
-@@ -187,7 +187,7 @@
- if (condition & G_IO_IN)
- {
- GIOError error;
-- guint bytes_read;
-+ gsize bytes_read;
-
- /* Read the data into our buffer */
- error =
-@@ -247,7 +247,7 @@
- if (condition & G_IO_OUT)
- {
- GIOError error;
-- guint bytes_written;
-+ gsize bytes_written;
-
- /* Write the data out */
- error = g_io_channel_write(iochannel, client_state->buffer,
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/echoserver-unix.c gnet-2.0.7.amd64/examples/echoserver-unix.c
---- gnet-2.0.7/examples/echoserver-unix.c 2003-02-03 12:56:14.000000000 -0500
-+++ gnet-2.0.7.amd64/examples/echoserver-unix.c 2005-09-12 21:52:21.000000000 -0400
-@@ -95,7 +95,7 @@
- {
- GUnixSocket *client = NULL;
- gchar buffer[1024];
-- guint n;
-+ gsize n;
- GIOChannel *ioclient = NULL;
- GIOError e;
-
-@@ -228,7 +228,7 @@
- /* Check for data to be read (or if the socket was closed) */
- if (c & G_IO_IN) {
- GIOError e;
-- guint bytes_read;
-+ gsize bytes_read;
-
- /* Read the data into our buffer */
- e = g_io_channel_read(iochannel,
-@@ -259,7 +259,7 @@
- }
- if (c & G_IO_OUT) {
- GIOError e;
-- guint bytes_written;
-+ gsize bytes_written;
- /* Write the data out */
- e = g_io_channel_write(iochannel, cs->buffer, cs->n,
- &bytes_written);
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/echoserver.c gnet-2.0.7.amd64/examples/echoserver.c
---- gnet-2.0.7/examples/echoserver.c 2003-02-04 15:22:57.000000000 -0500
-+++ gnet-2.0.7.amd64/examples/echoserver.c 2005-09-12 21:48:10.000000000 -0400
-@@ -40,7 +40,7 @@
- gchar* name;
- GTcpSocket* client = NULL;
- gchar buffer[1024];
-- guint n;
-+ gsize n;
- GIOChannel* ioclient = NULL;
- GIOError error;
-
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/examples/hfetch.c gnet-2.0.7.amd64/examples/hfetch.c
---- gnet-2.0.7/examples/hfetch.c 2003-02-03 12:56:14.000000000 -0500
-+++ gnet-2.0.7.amd64/examples/hfetch.c 2005-09-12 21:52:52.000000000 -0400
-@@ -113,7 +113,7 @@
- gchar* command;
- gchar buffer[1024];
- GIOError error;
-- guint n;
-+ gsize n;
-
-
- /* Create the address */
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/src/conn-http.c gnet-2.0.7.amd64/src/conn-http.c
---- gnet-2.0.7/src/conn-http.c 2005-02-19 12:15:51.000000000 -0500
-+++ gnet-2.0.7.amd64/src/conn-http.c 2005-09-12 21:45:38.000000000 -0400
-@@ -632,7 +632,7 @@
- /* Note: this must be 1.1 */
- g_string_append_printf (request, "POST %s HTTP/1.1\r\n", resource);
-
-- g_snprintf(buf, sizeof(buf), "%u", conn->post_data_len);
-+ g_snprintf(buf, sizeof(buf), "%"G_GSIZE_FORMAT, conn->post_data_len);
-
- gnet_conn_http_set_header (conn, "Expect", "100-continue", 0);
- gnet_conn_http_set_header (conn, "Content-Length", buf, 0);
-diff --exclude-from=/home/dang/.diffrc -u -ruN gnet-2.0.7/src/gnet-private.h gnet-2.0.7.amd64/src/gnet-private.h
---- gnet-2.0.7/src/gnet-private.h 2004-09-26 22:04:49.000000000 -0400
-+++ gnet-2.0.7.amd64/src/gnet-private.h 2005-09-12 21:31:40.000000000 -0400
-@@ -86,7 +86,7 @@
- #define SOCKET gint
- #endif
-
--#ifndef socklen_t
-+#ifndef __socklen_t_defined
- # ifdef GNET_APPLE_DARWIN
- # define socklen_t int /* socklen_t is int in Darwin */
- # else
diff --git a/net-libs/gnet/gnet-2.0.7-r1.ebuild b/net-libs/gnet/gnet-2.0.7-r1.ebuild
deleted file mode 100644
index f8645a6ee635..000000000000
--- a/net-libs/gnet/gnet-2.0.7-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/gnet-2.0.7-r1.ebuild,v 1.7 2008/04/12 18:35:45 dertobi123 Exp $
-
-inherit gnome2 eutils
-
-DESCRIPTION="A simple network library."
-HOMEPAGE="http://www.gnetlibrary.org/"
-SRC_URI="http://www.gnetlibrary.org/src/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="2"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-
-IUSE="doc"
-
-RDEPEND=">=dev-libs/glib-1.2"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- doc? ( >=dev-util/gtk-doc-1.2 )"
-
-DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README* TODO"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Fix integer size mismatches on 64-bit arches
- epatch "${FILESDIR}/${P}-amd64-fixes.patch"
-}
diff --git a/net-libs/gnet/gnet-2.0.7.ebuild b/net-libs/gnet/gnet-2.0.7.ebuild
deleted file mode 100644
index aa5957843045..000000000000
--- a/net-libs/gnet/gnet-2.0.7.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/gnet-2.0.7.ebuild,v 1.13 2008/05/02 15:15:48 cardoe Exp $
-
-inherit gnome2 eutils
-
-DESCRIPTION="A simple network library."
-HOMEPAGE="http://www.gnetlibrary.org/"
-SRC_URI="http://www.gnetlibrary.org/src/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="2"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-
-IUSE="debug doc static"
-
-RDEPEND=">=dev-libs/glib-1.2"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- doc? ( >=dev-util/gtk-doc-1.2 )"
-
-pkg_setup() {
- DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README* TODO"
-
- G2CONF="${G2CONF} $(use_enable static)"
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Fix integer size mismatches on 64-bit arches
- epatch "${FILESDIR}/${P}-amd64-fixes.patch"
-}