summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys-fs/dmraid/files/dmraid-1.0.0_rc15-devsk-isw.patch24
-rw-r--r--sys-fs/dmraid/files/dmraid-1.0.0_rc15-undo-p-rename.patch13
-rw-r--r--sys-fs/dmraid/files/dmraid-1.0.0_rc16-as-needed2.patch11
-rw-r--r--sys-fs/dmraid/files/dmraid-destdir-fix.patch34
4 files changed, 0 insertions, 82 deletions
diff --git a/sys-fs/dmraid/files/dmraid-1.0.0_rc15-devsk-isw.patch b/sys-fs/dmraid/files/dmraid-1.0.0_rc15-devsk-isw.patch
deleted file mode 100644
index 1ce8834ebadd..000000000000
--- a/sys-fs/dmraid/files/dmraid-1.0.0_rc15-devsk-isw.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- ./lib/device/scsi.c.org 2009-06-25 15:22:26.605895909 -0700
-+++ ./lib/device/scsi.c 2009-06-25 15:56:39.784749181 -0700
-@@ -110,7 +110,9 @@
- }
-
- ret = ret &&
-- (di->serial = dbg_strdup((char *) &response[p->start + 1]));
-+ (di->serial = dbg_strdup(remove_white_space
-+ (lc, (char *)&response[p->start + 1],
-+ MAX_RESPONSE_LEN)));
- }
-
- dbg_free(response);
---- ./lib/metadata/metadata.c.org 2009-06-25 17:32:19.856309659 -0700
-+++ ./lib/metadata/metadata.c 2009-06-25 17:32:35.502920755 -0700
-@@ -839,7 +839,7 @@
- */
- if (T_GROUP(rs)) {
- _discover_partitions(lc, &rs->sets);
-- return;
-+ continue;
- }
-
- /*
diff --git a/sys-fs/dmraid/files/dmraid-1.0.0_rc15-undo-p-rename.patch b/sys-fs/dmraid/files/dmraid-1.0.0_rc15-undo-p-rename.patch
deleted file mode 100644
index 6636b0563086..000000000000
--- a/sys-fs/dmraid/files/dmraid-1.0.0_rc15-undo-p-rename.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Author: Giuseppe Iuculano <giuseppe@iuculano.it>
-Description: Removed "p" from device name. A proper upgrade script is needed before using it.
---- a/1.0.0.rc15/lib/format/partition/dos.c
-+++ b/1.0.0.rc15/lib/format/partition/dos.c
-@@ -31,7 +31,7 @@ _name(struct lib_context *lc, struct rai
- {
- const char *base = get_basename(lc, rd->di->path);
-
-- return type ? snprintf(str, len, "%s%s%u", base, OPT_STR_PARTCHAR(lc),
-+ return type ? snprintf(str, len, "%s%u", base,
- partition) : snprintf(str, len, "%s", base);
- }
-
diff --git a/sys-fs/dmraid/files/dmraid-1.0.0_rc16-as-needed2.patch b/sys-fs/dmraid/files/dmraid-1.0.0_rc16-as-needed2.patch
deleted file mode 100644
index cf3018863ffd..000000000000
--- a/sys-fs/dmraid/files/dmraid-1.0.0_rc16-as-needed2.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 1.0.0.rc16/make.tmpl.in 2010-08-16 10:22:32.000000000 -0400
-+++ 1.0.0.rc16/make.tmpl.in 2010-08-16 10:42:49.000000000 -0400
-@@ -136,7 +136,7 @@
-
- %.so: $(OBJECTS)
- $(CC) -shared -Wl,-soname,$(notdir $@).$(DMRAID_LIB_VERSION) \
-- -Wl,--version-script,.export.sym $(OBJECTS) -o $@ -ldevmapper-event
-+ $(LDFLAGS) -Wl,--version-script,.export.sym $(OBJECTS) -o $@ -ldevmapper-event -ldl
-
- $(LIB_STATIC): $(OBJECTS)
- $(RM) $@
diff --git a/sys-fs/dmraid/files/dmraid-destdir-fix.patch b/sys-fs/dmraid/files/dmraid-destdir-fix.patch
deleted file mode 100644
index 07c6b442f9a6..000000000000
--- a/sys-fs/dmraid/files/dmraid-destdir-fix.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- make.tmpl.in.old 2006-09-03 14:38:36.000000000 -0400
-+++ make.tmpl.in 2006-09-03 14:37:43.000000000 -0400
-@@ -21,21 +21,21 @@
- SOFLAG += @SOFLAG@
-
- # Setup directory variables
--prefix = $(DESTDIR)@prefix@
--exec_prefix = $(DESTDIR)@exec_prefix@
--bindir = @bindir@
-+prefix = @prefix@
-+exec_prefix = @exec_prefix@
-+bindir = $(DESTDIR)@bindir@
- ifeq ("@KLIBC@", "no")
-- libdir = @libdir@
-- sbindir = @sbindir@
-- includedir = @includedir@
-- infodir = @infodir@
-- mandir = @mandir@
-+ libdir = $(DESTDIR)@libdir@
-+ sbindir = $(DESTDIR)@sbindir@
-+ includedir = $(DESTDIR)@includedir@
-+ infodir = $(DESTDIR)@infodir@
-+ mandir = $(DESTDIR)@mandir@
- else
- libdir = $(DESTDIR)@KLIBC_LIB_DIR@
- sbindir = $(DESTDIR)@KLIBC_SBIN_DIR@
- includedir = $(DESTDIR)@KLIBC_INCLUDE_DIR@
-- infodir = @infodir@
-- mandir = @mandir@
-+ infodir = $(DESTDIR)@infodir@
-+ mandir = $(DESTDIR)@mandir@
- endif
-
-