summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Brix Andersen <brix@gentoo.org>2006-03-26 12:19:02 +0000
committerHenrik Brix Andersen <brix@gentoo.org>2006-03-26 12:19:02 +0000
commit7393b243847bc11538ca7e994e959a95c12fb267 (patch)
tree0d66e5b2ecfe5607cf938687b8a59181f6b571f9 /net-wireless/wpa_supplicant/files
parentFix compilation with USE=-ssl, thanks to langthang in bug #127598. Pruned old... (diff)
downloadgentoo-2-7393b243847bc11538ca7e994e959a95c12fb267.tar.gz
gentoo-2-7393b243847bc11538ca7e994e959a95c12fb267.tar.bz2
gentoo-2-7393b243847bc11538ca7e994e959a95c12fb267.zip
Pruned old ebuilds.
(Portage version: 2.0.54)
Diffstat (limited to 'net-wireless/wpa_supplicant/files')
-rw-r--r--net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.7-r11
-rw-r--r--net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.01
-rw-r--r--net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.0-r11
-rw-r--r--net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.11
-rw-r--r--net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.5-wpa_cli.action44
-rw-r--r--net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.6-wpa_cli.action44
-rw-r--r--net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.0-wpa_cli.action44
-rw-r--r--net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.1-wpa_cli.sh44
8 files changed, 0 insertions, 180 deletions
diff --git a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.7-r1 b/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.7-r1
deleted file mode 100644
index 7ed2b5d9055a..000000000000
--- a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.4.7-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 1345730f15d5f93f2f083096ddc903eb wpa_supplicant-0.4.7.tar.gz 470644
diff --git a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.0 b/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.0
deleted file mode 100644
index 312eae9d5e6a..000000000000
--- a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 9289e6f6e64a99fe2aafc619362b3475 wpa_supplicant-0.5.0.tar.gz 501845
diff --git a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.0-r1 b/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.0-r1
deleted file mode 100644
index 312eae9d5e6a..000000000000
--- a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.0-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 9289e6f6e64a99fe2aafc619362b3475 wpa_supplicant-0.5.0.tar.gz 501845
diff --git a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.1 b/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.1
deleted file mode 100644
index 125211f152b2..000000000000
--- a/net-wireless/wpa_supplicant/files/digest-wpa_supplicant-0.5.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d99349503945c4534c6f46d21dfe0ca3 wpa_supplicant-0.5.1.tar.gz 512582
diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.5-wpa_cli.action b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.5-wpa_cli.action
deleted file mode 100644
index 86a7526e6001..000000000000
--- a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.5-wpa_cli.action
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-# Copyright 1999-2005 Gentoo Foundation
-# Written by Roy Marples <uberlord@gentoo.org>
-# Distributed under the terms of the GNU General Public License v2
-# Alternatively, this file may be distributed under the terms of the BSD License
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.5-wpa_cli.action,v 1.1 2005/10/17 10:19:19 brix Exp $
-
-if [ -z "$1" -o -z "$2" ]; then
- echo "Insufficient parameters" > /dev/stderr
- exit 1
-fi
-
-INTERFACE="$1"
-ACTION="$2"
-
-# Note, the below action must NOT mark the interface down via ifconfig, ip or
-# similar. Addresses can be removed, changed and daemons can be stopped, but
-# the interface must remain up for wpa_supplicant to work.
-
-if [ -f /etc/gentoo-release ]; then
- EXEC="/etc/init.d/net.${INTERFACE} --quiet"
-else
- echo "I don't know what to do with this distro!" > /dev/stderr
- exit 1
-fi
-
-case ${ACTION} in
- CONNECTED)
- EXEC="${EXEC} start"
- ;;
- DISCONNECTED)
- EXEC="${EXEC} stop"
- ;;
- *)
- echo "Unknown action ${ACTION}" > /dev/stderr
- exit 1
- ;;
-esac
-
-# ${EXEC} can use ${IN_BACKGROUND} so that it knows that the user isn't
-# stopping the interface and a background process - like wpa_cli - is.
-export IN_BACKGROUND=true
-
-${EXEC}
diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.6-wpa_cli.action b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.6-wpa_cli.action
deleted file mode 100644
index 6b52a5f61ef2..000000000000
--- a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.6-wpa_cli.action
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-# Copyright 1999-2005 Gentoo Foundation
-# Written by Roy Marples <uberlord@gentoo.org>
-# Distributed under the terms of the GNU General Public License v2
-# Alternatively, this file may be distributed under the terms of the BSD License
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_supplicant-0.4.6-wpa_cli.action,v 1.1 2005/10/29 10:41:58 brix Exp $
-
-if [ -z "$1" -o -z "$2" ]; then
- echo "Insufficient parameters" > /dev/stderr
- exit 1
-fi
-
-INTERFACE="$1"
-ACTION="$2"
-
-# Note, the below action must NOT mark the interface down via ifconfig, ip or
-# similar. Addresses can be removed, changed and daemons can be stopped, but
-# the interface must remain up for wpa_supplicant to work.
-
-if [ -f /etc/gentoo-release ]; then
- EXEC="/etc/init.d/net.${INTERFACE} --quiet"
-else
- echo "I don't know what to do with this distro!" > /dev/stderr
- exit 1
-fi
-
-case ${ACTION} in
- CONNECTED)
- EXEC="${EXEC} start"
- ;;
- DISCONNECTED)
- EXEC="${EXEC} stop"
- ;;
- *)
- echo "Unknown action ${ACTION}" > /dev/stderr
- exit 1
- ;;
-esac
-
-# ${EXEC} can use ${IN_BACKGROUND} so that it knows that the user isn't
-# stopping the interface and a background process - like wpa_cli - is.
-export IN_BACKGROUND=true
-
-${EXEC}
diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.0-wpa_cli.action b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.0-wpa_cli.action
deleted file mode 100644
index f652b0bc478c..000000000000
--- a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.0-wpa_cli.action
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-# Copyright 1999-2005 Gentoo Foundation
-# Written by Roy Marples <uberlord@gentoo.org>
-# Distributed under the terms of the GNU General Public License v2
-# Alternatively, this file may be distributed under the terms of the BSD License
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.0-wpa_cli.action,v 1.1 2005/12/20 11:11:12 brix Exp $
-
-if [ -z "$1" -o -z "$2" ]; then
- echo "Insufficient parameters" > /dev/stderr
- exit 1
-fi
-
-INTERFACE="$1"
-ACTION="$2"
-
-# Note, the below action must NOT mark the interface down via ifconfig, ip or
-# similar. Addresses can be removed, changed and daemons can be stopped, but
-# the interface must remain up for wpa_supplicant to work.
-
-if [ -f /etc/gentoo-release ]; then
- EXEC="/etc/init.d/net.${INTERFACE} --quiet"
-else
- echo "I don't know what to do with this distro!" > /dev/stderr
- exit 1
-fi
-
-case ${ACTION} in
- CONNECTED)
- EXEC="${EXEC} start"
- ;;
- DISCONNECTED)
- EXEC="${EXEC} stop"
- ;;
- *)
- echo "Unknown action ${ACTION}" > /dev/stderr
- exit 1
- ;;
-esac
-
-# ${EXEC} can use ${IN_BACKGROUND} so that it knows that the user isn't
-# stopping the interface and a background process - like wpa_cli - is.
-export IN_BACKGROUND=true
-
-${EXEC}
diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.1-wpa_cli.sh b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.1-wpa_cli.sh
deleted file mode 100644
index e40785d6a5aa..000000000000
--- a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.1-wpa_cli.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-# Copyright 1999-2006 Gentoo Foundation
-# Written by Roy Marples <uberlord@gentoo.org>
-# Distributed under the terms of the GNU General Public License v2
-# Alternatively, this file may be distributed under the terms of the BSD License
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.1-wpa_cli.sh,v 1.1 2006/02/06 13:45:56 brix Exp $
-
-if [ -z "$1" -o -z "$2" ]; then
- echo "Insufficient parameters" > /dev/stderr
- exit 1
-fi
-
-INTERFACE="$1"
-ACTION="$2"
-
-# Note, the below action must NOT mark the interface down via ifconfig, ip or
-# similar. Addresses can be removed, changed and daemons can be stopped, but
-# the interface must remain up for wpa_supplicant to work.
-
-if [ -f /etc/gentoo-release ]; then
- EXEC="/etc/init.d/net.${INTERFACE} --quiet"
-else
- echo "I don't know what to do with this distro!" > /dev/stderr
- exit 1
-fi
-
-case ${ACTION} in
- CONNECTED)
- EXEC="${EXEC} start"
- ;;
- DISCONNECTED)
- EXEC="${EXEC} stop"
- ;;
- *)
- echo "Unknown action ${ACTION}" > /dev/stderr
- exit 1
- ;;
-esac
-
-# ${EXEC} can use ${IN_BACKGROUND} so that it knows that the user isn't
-# stopping the interface and a background process - like wpa_cli - is.
-export IN_BACKGROUND=true
-
-${EXEC}