summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Vroon <chainsaw@gentoo.org>2013-10-06 20:33:40 +0000
committerTony Vroon <chainsaw@gentoo.org>2013-10-06 20:33:40 +0000
commita67c6d344e1b003681c8e0091744f3fecc646873 (patch)
tree84186b480ea98156aed531be0d745a5bdb9e8c8c /net-misc/connman
parentNow compatible with uclibc thanks to Amadeusz Sławiński, closes bug #475422... (diff)
downloadgentoo-2-a67c6d344e1b003681c8e0091744f3fecc646873.tar.gz
gentoo-2-a67c6d344e1b003681c8e0091744f3fecc646873.tar.bz2
gentoo-2-a67c6d344e1b003681c8e0091744f3fecc646873.zip
These patches are no longer used.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Diffstat (limited to 'net-misc/connman')
-rw-r--r--net-misc/connman/ChangeLog7
-rw-r--r--net-misc/connman/files/connman-0.79-glib-include.patch13
-rw-r--r--net-misc/connman/files/connman-1.11-ip6-incomplete-type.patch11
-rw-r--r--net-misc/connman/files/connman.initd22
4 files changed, 6 insertions, 47 deletions
diff --git a/net-misc/connman/ChangeLog b/net-misc/connman/ChangeLog
index 5d8b79971a6c..79f0e2e1cd90 100644
--- a/net-misc/connman/ChangeLog
+++ b/net-misc/connman/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/connman
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.71 2013/10/06 20:28:00 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.72 2013/10/06 20:33:40 chainsaw Exp $
+
+ 06 Oct 2013; Tony Vroon <chainsaw@gentoo.org>
+ -files/connman-0.79-glib-include.patch,
+ -files/connman-1.11-ip6-incomplete-type.patch, -files/connman.initd:
+ These patches are no longer used.
*connman-1.18 (06 Oct 2013)
*connman-1.17 (06 Oct 2013)
diff --git a/net-misc/connman/files/connman-0.79-glib-include.patch b/net-misc/connman/files/connman-0.79-glib-include.patch
deleted file mode 100644
index 2814e008f5a0..000000000000
--- a/net-misc/connman/files/connman-0.79-glib-include.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -uNr connman-0.79.ORIG/plugins/vpn.c connman-0.79/plugins/vpn.c
---- connman-0.79.ORIG/plugins/vpn.c 2012-04-20 11:17:28.698899674 +0100
-+++ connman-0.79/plugins/vpn.c 2012-04-20 11:19:37.368896124 +0100
-@@ -37,8 +37,7 @@
-
- #include <dbus/dbus.h>
-
--#include <glib/ghash.h>
--#include <glib/gprintf.h>
-+#include <glib.h>
-
- #include <connman/provider.h>
- #include <connman/log.h>
diff --git a/net-misc/connman/files/connman-1.11-ip6-incomplete-type.patch b/net-misc/connman/files/connman-1.11-ip6-incomplete-type.patch
deleted file mode 100644
index f44f2e1e66fa..000000000000
--- a/net-misc/connman/files/connman-1.11-ip6-incomplete-type.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -uNr connman-1.11.ORIG/src/tethering.c connman-1.11/src/tethering.c
---- connman-1.11.ORIG/src/tethering.c 2013-03-14 12:41:25.279469705 +0000
-+++ connman-1.11/src/tethering.c 2013-03-14 12:42:05.745468258 +0000
-@@ -30,6 +30,7 @@
- #include <unistd.h>
- #include <stdio.h>
- #include <sys/ioctl.h>
-+#include <netinet/ip6.h>
- #include <net/if.h>
- #include <linux/sockios.h>
- #include <string.h>
diff --git a/net-misc/connman/files/connman.initd b/net-misc/connman/files/connman.initd
deleted file mode 100644
index cfca1b2263c1..000000000000
--- a/net-misc/connman/files/connman.initd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Purpose License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/files/connman.initd,v 1.2 2010/02/01 14:12:27 dagger Exp $
-
-depend() {
- need dbus
-}
-
-start() {
- ebegin "Starting Connection Manager"
- start-stop-daemon --start --quiet --exec /usr/sbin/connmand -- ${CONNMAN_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping Connection Manager"
- start-stop-daemon --stop --quiet --exec /usr/sbin/connmand
- eend $?
-}
-
-# vim: set ft=gentoo-init-d ts=3 sw=3 et: