summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-04-17 04:02:13 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-04-17 04:02:13 +0000
commit9c2b3b7cf6dedb31b25e832310c2e1bb863ab1df (patch)
tree21330b87c975efe765b26404861cbc5af5839856 /net-misc/fsh/files
parentremove gnome-extra/hal-device-manager (diff)
downloadgentoo-2-9c2b3b7cf6dedb31b25e832310c2e1bb863ab1df.tar.gz
gentoo-2-9c2b3b7cf6dedb31b25e832310c2e1bb863ab1df.tar.bz2
gentoo-2-9c2b3b7cf6dedb31b25e832310c2e1bb863ab1df.zip
removed, been masked for longer than a year
Diffstat (limited to 'net-misc/fsh/files')
-rw-r--r--net-misc/fsh/files/fsh-1.2-fcpwrap.patch17
-rw-r--r--net-misc/fsh/files/fsh-1.2-gentoo-fcntl.patch37
2 files changed, 0 insertions, 54 deletions
diff --git a/net-misc/fsh/files/fsh-1.2-fcpwrap.patch b/net-misc/fsh/files/fsh-1.2-fcpwrap.patch
deleted file mode 100644
index 4fdc168d25c0..000000000000
--- a/net-misc/fsh/files/fsh-1.2-fcpwrap.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- fsh-1.2-orig/fcpwrap.c 2000-12-03 20:12:58.000000000 +0100
-+++ fsh-1.2/fcpwrap.c 2003-04-23 14:56:13.000000000 +0200
-@@ -43,8 +43,12 @@
- break;
- if (argv [i][1] == 'l') /* fsh login flag? */
- {
-- login = argv [++i];
-- continue;
-+ if (argv [i][2]) {
-+ login = argv[i] + 2;
-+ } else {
-+ login = argv [++i];
-+ }
-+ continue;
- }
- if (strchr (args, argv [i][1]) && argv[i][2] == '\0')
- i++; /* Flag with an argument. */
diff --git a/net-misc/fsh/files/fsh-1.2-gentoo-fcntl.patch b/net-misc/fsh/files/fsh-1.2-gentoo-fcntl.patch
deleted file mode 100644
index 4c76c9fe43c6..000000000000
--- a/net-misc/fsh/files/fsh-1.2-gentoo-fcntl.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- fsh-1.2/fshcompat.py.orig 2001-12-23 22:08:26.000000000 +1100
-+++ fsh-1.2/fshcompat.py
-@@ -52,20 +52,23 @@ except:
- # in Python 2.2 as a bug. See <URL:http://sourceforge.net/tracker/
- # ?func=detail&aid=496171&group_id=5470&atid=105470>.
- try:
-- # Stop Python 2.2 from warning that we import a deprecated module.
-- # But Python 1.5.2 doesn't have the warnings module, so be prepared
-- # for the import statement to fail.
- try:
-- import warnings
-- warnings.filterwarnings(
-- "ignore",
-- "the FCNTL module is deprecated; please use fcntl",
-- DeprecationWarning)
-- except ImportError:
-- pass
-+ FD_CLOEXEC = fcntl.FD_CLOEXEC
-+ except:
-+ # Stop Python 2.2 from warning that we import a deprecated module.
-+ # But Python 1.5.2 doesn't have the warnings module, so be prepared
-+ # for the import statement to fail.
-+ try:
-+ import warnings
-+ warnings.filterwarnings(
-+ "ignore",
-+ "the FCNTL module is deprecated; please use fcntl",
-+ DeprecationWarning)
-+ except ImportError:
-+ pass
-
-- import FCNTL
-- FD_CLOEXEC = FCNTL.FD_CLOEXEC
-+ import FCNTL
-+ FD_CLOEXEC = FCNTL.FD_CLOEXEC
-
- except AttributeError: