[oe-commits] Otavio Salvador : parted: drop versions up to 1.8.8

GIT User account git at amethyst.openembedded.net
Fri Feb 13 16:08:08 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 1a783e6205aa1e0dfa907ad32c57eb9eef20d845
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=1a783e6205aa1e0dfa907ad32c57eb9eef20d845

Author: Otavio Salvador <otavio at ossystems.com.br>
Date:   Tue Feb 10 15:30:47 2009 -0200

parted: drop versions up to 1.8.8

Versions older then 1.8.8 are not maintained upstream and looks to
have no users inside of OE hence makes no sense to be kept.

Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>

---

 .../parted/parted-1.8.0/memory_allocation.patch    |   42 --------------------
 packages/parted/parted_1.6.23.bb                   |   12 ------
 packages/parted/parted_1.6.25.1.bb                 |   17 --------
 packages/parted/parted_1.8.0.bb                    |   18 --------
 packages/parted/parted_1.8.2.bb                    |   16 -------
 packages/parted/parted_1.8.7.bb                    |   30 --------------
 6 files changed, 0 insertions(+), 135 deletions(-)

diff --git a/packages/parted/parted-1.8.0/memory_allocation.patch b/packages/parted/parted-1.8.0/memory_allocation.patch
deleted file mode 100644
index ba37096..0000000
--- a/packages/parted/parted-1.8.0/memory_allocation.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- parted-1.8.0/libparted/exception.c_orig	2006-12-11 19:44:23.000000000 +0000
-+++ parted-1.8.0/libparted/exception.c	2006-12-11 19:47:53.000000000 +0000
-@@ -231,6 +231,9 @@
- 		     PedExceptionOption ex_opts, const char* message, ...)
- {
- 	va_list		arg_list;
-+        int result;
-+	static int size = 1000;
-+
- 
- 	if (ex)
- 		ped_exception_catch ();
-@@ -239,16 +242,22 @@
- 	if (!ex)
- 		goto no_memory;
- 
--	ex->message = (char*) malloc (8192);
--	if (!ex->message)
--		goto no_memory;
--
- 	ex->type = ex_type;
- 	ex->options = ex_opts;
- 
--	va_start (arg_list, message);
--	vsnprintf (ex->message, 8192, message, arg_list);
--	va_end (arg_list);
-+        while (1) {
-+	            ex->message = (char*) malloc (size);
-+		    if (!ex->message)
-+		              goto no_memory;
-+		    va_start (arg_list, message);
-+		    result = vsnprintf (ex->message, size, message, arg_list);
-+		    va_end (arg_list);
-+		    
-+		    if (result > -1 && result < size)
-+		                    break;
-+		    size += 10;
-+		  }
-+	            
- 
- 	return do_throw ();
- 
diff --git a/packages/parted/parted_1.6.23.bb b/packages/parted/parted_1.6.23.bb
deleted file mode 100644
index cb9b08f..0000000
--- a/packages/parted/parted_1.6.23.bb
+++ /dev/null
@@ -1,12 +0,0 @@
-DESCRIPTION = "parted, the GNU partition resizing program"
-HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
-LICENSE = "GPLv2"
-SECTION = "console/tools"
-DEPENDS = "readline e2fsprogs-libs"
-PR = "r0"
-
-SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz"
-
-EXTRA_OECONF = "--disable-Werror"
-
-inherit autotools
diff --git a/packages/parted/parted_1.6.25.1.bb b/packages/parted/parted_1.6.25.1.bb
deleted file mode 100644
index 8681055..0000000
--- a/packages/parted/parted_1.6.25.1.bb
+++ /dev/null
@@ -1,17 +0,0 @@
-DESCRIPTION = "parted, the GNU partition resizing program"
-HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
-LICENSE = "GPLv2"
-SECTION = "console/tools"
-DEPENDS = "readline e2fsprogs-libs"
-PR = "r0"
-
-SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz"
-
-EXTRA_OECONF = "--disable-Werror"
-#export CFLAGS = "-mstructure-size-boundary=8"
-
-inherit autotools pkgconfig
-
-do_stage() {
-	autotools_stage_all
-}
diff --git a/packages/parted/parted_1.8.0.bb b/packages/parted/parted_1.8.0.bb
deleted file mode 100644
index bff27a6..0000000
--- a/packages/parted/parted_1.8.0.bb
+++ /dev/null
@@ -1,18 +0,0 @@
-DESCRIPTION = "parted, the GNU partition resizing program"
-HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
-LICENSE = "GPLv2"
-SECTION = "console/tools"
-DEPENDS = "readline e2fsprogs-libs"
-PR = "r0"
-
-SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz \
-           file://memory_allocation.patch;patch=0"
-
-EXTRA_OECONF = "--disable-Werror"
-#export CFLAGS = "-mstructure-size-boundary=8"
-
-inherit autotools pkgconfig
-
-do_stage() {
-	autotools_stage_all
-}
diff --git a/packages/parted/parted_1.8.2.bb b/packages/parted/parted_1.8.2.bb
deleted file mode 100644
index 1185014..0000000
--- a/packages/parted/parted_1.8.2.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-DESCRIPTION = "parted, the GNU partition resizing program"
-HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
-LICENSE = "GPLv2"
-SECTION = "console/tools"
-DEPENDS = "readline e2fsprogs-libs"
-PR = "r0"
-
-SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz"
-           
-#EXTRA_OECONF = "--disable-Werror"
-
-inherit autotools pkgconfig
-
-do_stage() {
-	autotools_stage_all
-}
diff --git a/packages/parted/parted_1.8.7.bb b/packages/parted/parted_1.8.7.bb
deleted file mode 100644
index 59e3aea..0000000
--- a/packages/parted/parted_1.8.7.bb
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "parted, the GNU partition resizing program"
-HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
-LICENSE = "GPLv2"
-SECTION = "console/tools"
-DEPENDS = "readline e2fsprogs-libs"
-PR = "r2"
-
-SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz \
-           file://syscalls.h \
-           file://syscalls.patch;patch=1 \
-           file://cross-gross-hack.patch;patch=1"
-           
-EXTRA_OECONF = "--disable-Werror"
-
-inherit autotools pkgconfig
-
-do_configure_prepend() {
-	cp ${WORKDIR}/syscalls.h ${S}/libparted/arch/
-}
-
-do_configure() {
-        gnu-configize
-        libtoolize --force
-        autoconf
-        oe_runconf
-}
-
-do_stage() {
-	autotools_stage_all
-}





More information about the Openembedded-commits mailing list