[oe-commits] Frans Meulenbroeks : quilt: remove old versions

git version control git at git.openembedded.org
Sat Aug 14 19:53:53 UTC 2010


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

Author: Frans Meulenbroeks <fransmeulenbroeks at gmail.com>
Date:   Sat Aug 14 21:50:49 2010 +0200

quilt: remove old versions

Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks at gmail.com>

---

 recipes/quilt/quilt-0.45/aclocal.patch |   71 ------------------
 recipes/quilt/quilt-0.45/install.patch |   19 -----
 recipes/quilt/quilt-0.46/aclocal.patch |  126 --------------------------------
 recipes/quilt/quilt-0.46/install.patch |   13 ---
 recipes/quilt/quilt-native_0.45.bb     |    5 -
 recipes/quilt/quilt-native_0.46.bb     |    5 -
 recipes/quilt/quilt_0.45.bb            |    5 -
 recipes/quilt/quilt_0.46.bb            |    5 -
 8 files changed, 0 insertions(+), 249 deletions(-)

diff --git a/recipes/quilt/quilt-0.45/aclocal.patch b/recipes/quilt/quilt-0.45/aclocal.patch
deleted file mode 100644
index 03d99ed..0000000
--- a/recipes/quilt/quilt-0.45/aclocal.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-Add the aclocal.m4 as acinclude.m4
-
-Index: quilt-0.45/acinclude.m4
-===================================================================
---- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ quilt-0.45/acinclude.m4	2006-08-06 23:18:56.000000000 +0200
-@@ -0,0 +1,64 @@
-+dnl Allow configure to specify a specific binary
-+dnl 1: Environment variable
-+dnl 2: binary name
-+dnl 3: optional list of alternative binary names
-+dnl 4: optional list of additional search directories
-+AC_DEFUN([QUILT_COMPAT_PROG_PATH],[
-+  m4_define([internal_$2_cmd],[esyscmd(ls compat/$2.in 2>/dev/null)])
-+
-+  AC_ARG_WITH($2, AC_HELP_STRING(
-+    [--with-$2], [name of the $2 executable to use]
-+                 m4_if(internal_$2_cmd,[],[],[ (use --without-$2
-+                          to use an internal mechanism)])),
-+  [
-+    if test x"$withval" = xnone; then
-+      AC_MSG_ERROR([Invalid configure argument.  use --without-$2])
-+    fi
-+    if test x"$withval" != xno; then
-+      AC_MSG_CHECKING(for $2)
-+      $1="$withval"
-+      if test -e "$$1"; then
-+	if test ! -f "$$1" -a ! -h "$$1" || test ! -x "$$1"; then
-+	  AC_MSG_ERROR([$$1 is not an executable file])
-+	fi
-+      fi
-+      AC_MSG_RESULT([$$1])
-+      if test ! -e "$$1"; then
-+        AC_MSG_WARN([$$1 does not exist])
-+      fi
-+      COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+    fi
-+  ],[
-+    m4_if([$3],[],[
-+      AC_PATH_PROG($1,$2,,$PATH:$4)
-+    ],[
-+      AC_PATH_PROGS($1,$3,,$PATH:$4)
-+      if test -n "$$1" -a "`expr "$$1" : '.*/\([[^/]]*\)$'`" != "$2"; then
-+	COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+      fi
-+    ])
-+    m4_if([$4],[],[],[
-+      if test -n "$$1"; then
-+	as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+        for dir in "$4"; do
-+          if test "`dirname $$1`" = "$dir"; then
-+            COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+	    break
-+	  fi
-+        done
-+	IFS="$as_save_IFS"
-+      fi
-+    ])
-+  ])
-+  if test -z "$$1"; then
-+    m4_if(internal_$2_cmd,[],[
-+      AC_MSG_ERROR([Please specify the location of $2 with the option '--with-$2'])
-+    ],[
-+      AC_MSG_WARN([Using internal $2 mechanism.  Use option '--with-$2' to override])
-+      COMPAT_PROGRAMS="$COMPAT_PROGRAMS $2"
-+      $1=$2
-+      INTERNAL_$1=1
-+    ])
-+  fi
-+  AC_SUBST($1)
-+])
diff --git a/recipes/quilt/quilt-0.45/install.patch b/recipes/quilt/quilt-0.45/install.patch
deleted file mode 100644
index 4122370..0000000
--- a/recipes/quilt/quilt-0.45/install.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- quilt-0.32/Makefile.in~install
-+++ quilt-0.32/Makefile.in
-@@ -9,9 +9,9 @@
- libdir :=	@libdir@
- datadir :=	@datadir@
- docdir :=	@docdir@
--mandir :=	$(datadir)/man
-+mandir :=	@mandir@
- localedir :=	$(datadir)/locale
--etcdir :=	$(subst /usr/etc,/etc,$(prefix)/etc)
-+etcdir :=	@sysconfdir@
- 
- QUILT_DIR =	$(datadir)/$(PACKAGE)
- SCRIPTS_DIR =	$(QUILT_DIR)/scripts
diff --git a/recipes/quilt/quilt-0.46/aclocal.patch b/recipes/quilt/quilt-0.46/aclocal.patch
deleted file mode 100644
index 1245f74..0000000
--- a/recipes/quilt/quilt-0.46/aclocal.patch
+++ /dev/null
@@ -1,126 +0,0 @@
-Add the aclocal.m4 as acinclude.m4
-
-Index: quilt-0.46/acinclude.m4
-===================================================================
---- /dev/null
-+++ quilt-0.46/acinclude.m4
-@@ -0,0 +1,119 @@
-+dnl Allow configure to specify a specific binary
-+dnl 1: Environment variable
-+dnl 2: binary name
-+dnl 3: optional list of alternative binary names
-+dnl 4: optional list of additional search directories
-+AC_DEFUN([QUILT_COMPAT_PROG_PATH],[
-+  m4_define([internal_$2_cmd],[esyscmd(ls compat/$2.in 2>/dev/null)])
-+
-+  AC_ARG_WITH($2, AC_HELP_STRING(
-+    [--with-$2], [name of the $2 executable to use]
-+                 m4_if(internal_$2_cmd,[],[],[ (use --without-$2
-+                          to use an internal mechanism)])),
-+  [
-+    if test x"$withval" = xnone; then
-+      AC_MSG_ERROR([Invalid configure argument.  use --without-$2])
-+    fi
-+    if test x"$withval" != xno; then
-+      AC_MSG_CHECKING(for $2)
-+      $1="$withval"
-+      if test -e "$$1"; then
-+	if test ! -f "$$1" -a ! -h "$$1" || test ! -x "$$1"; then
-+	  AC_MSG_ERROR([$$1 is not an executable file])
-+	fi
-+      fi
-+      AC_MSG_RESULT([$$1])
-+      if test ! -e "$$1"; then
-+        AC_MSG_WARN([$$1 does not exist])
-+      fi
-+      COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+    fi
-+  ],[
-+    m4_if([$3],[],[
-+      AC_PATH_PROG($1,$2,,$PATH:$4)
-+    ],[
-+      AC_PATH_PROGS($1,$3,,$PATH:$4)
-+      if test -n "$$1" -a "`expr "$$1" : '.*/\([[^/]]*\)$'`" != "$2"; then
-+	COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+      fi
-+    ])
-+    m4_if([$4],[],[],[
-+      if test -n "$$1"; then
-+	as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+        for dir in "$4"; do
-+          if test "`dirname $$1`" = "$dir"; then
-+            COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+	    break
-+	  fi
-+        done
-+	IFS="$as_save_IFS"
-+      fi
-+    ])
-+  ])
-+  if test -z "$$1"; then
-+    m4_if(internal_$2_cmd,[],[
-+      AC_MSG_ERROR([Please specify the location of $2 with the option '--with-$2'])
-+    ],[
-+      AC_MSG_WARN([Using internal $2 mechanism.  Use option '--with-$2' to override])
-+      COMPAT_PROGRAMS="$COMPAT_PROGRAMS $2"
-+      $1=$2
-+      INTERNAL_$1=1
-+    ])
-+  fi
-+  AC_SUBST($1)
-+])
-+
-+dnl Allow configure to specify a specific binary
-+dnl This variant is for optional binaries.
-+dnl 1: Environment variable
-+dnl 2: binary name
-+dnl 3: optional list of alternative binary names
-+dnl 4: optional list of additional search directories
-+AC_DEFUN([QUILT_COMPAT_PROG_PATH_OPT],[
-+  AC_ARG_WITH($2, AC_HELP_STRING(
-+    [--with-$2], [name of the $2 executable to use]),
-+  [
-+    if test x"$withval" != xno; then
-+      AC_MSG_CHECKING(for $2)
-+      $1="$withval"
-+      if test -e "$$1"; then
-+	if test ! -f "$$1" -a ! -h "$$1" || test ! -x "$$1"; then
-+	  AC_MSG_ERROR([$$1 is not an executable file])
-+	fi
-+      fi
-+      AC_MSG_RESULT([$$1])
-+      if test ! -e "$$1"; then
-+        AC_MSG_WARN([$$1 does not exist])
-+      fi
-+      COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+    fi
-+  ],[
-+    m4_if([$3],[],[
-+      AC_PATH_PROG($1,$2,,$PATH:$4)
-+    ],[
-+      AC_PATH_PROGS($1,$3,,$PATH:$4)
-+      if test -n "$$1" -a "`expr "$$1" : '.*/\([[^/]]*\)$'`" != "$2"; then
-+	COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+      fi
-+    ])
-+    m4_if([$4],[],[],[
-+      if test -n "$$1"; then
-+	as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+        for dir in "$4"; do
-+          if test "`dirname $$1`" = "$dir"; then
-+            COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"
-+	    break
-+	  fi
-+        done
-+	IFS="$as_save_IFS"
-+      fi
-+    ])
-+    if test -z "$$1"; then
-+      AC_MSG_WARN([$2 not found, some optional functionalities will be missing])
-+    fi
-+  ])
-+  if test -z "$$1"; then
-+    $1=$2
-+  fi
-+  AC_SUBST($1)
-+])
diff --git a/recipes/quilt/quilt-0.46/install.patch b/recipes/quilt/quilt-0.46/install.patch
deleted file mode 100644
index 3c9030d..0000000
--- a/recipes/quilt/quilt-0.46/install.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: quilt-0.46/Makefile.in
-===================================================================
---- quilt-0.46.orig/Makefile.in
-+++ quilt-0.46/Makefile.in
-@@ -12,7 +12,7 @@ datadir :=	@datadir@
- docdir :=	@docdir@
- mandir :=	@mandir@
- localedir :=	$(datadir)/locale
--etcdir :=	$(subst /usr/etc,/etc,$(prefix)/etc)
-+etcdir :=	@sysconfdir@
- 
- INSTALL :=	@INSTALL@
- POD2MAN :=	@POD2MAN@
diff --git a/recipes/quilt/quilt-native_0.45.bb b/recipes/quilt/quilt-native_0.45.bb
deleted file mode 100644
index 8577346..0000000
--- a/recipes/quilt/quilt-native_0.45.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-require quilt-native.inc
-PR = "r2"
-
-SRC_URI[md5sum] = "5f8dd5a041ca7c700b16620228f922aa"
-SRC_URI[sha256sum] = "de7290f334baf631a14d031df304ee94cfb550aa69e7512aa589d21c2381c7d8"
diff --git a/recipes/quilt/quilt-native_0.46.bb b/recipes/quilt/quilt-native_0.46.bb
deleted file mode 100644
index 5827ae3..0000000
--- a/recipes/quilt/quilt-native_0.46.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-require quilt-native.inc
-PR = "r2"
-
-SRC_URI[md5sum] = "4508546d1ed0257ef7c128b6121b7208"
-SRC_URI[sha256sum] = "47bf030565bb462840db694acc183273455714028c74974c5b3a3bd4ad29ad89"
diff --git a/recipes/quilt/quilt_0.45.bb b/recipes/quilt/quilt_0.45.bb
deleted file mode 100644
index ef2c523..0000000
--- a/recipes/quilt/quilt_0.45.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-require quilt-package.inc
-PR = "r2"
-
-SRC_URI[md5sum] = "5f8dd5a041ca7c700b16620228f922aa"
-SRC_URI[sha256sum] = "de7290f334baf631a14d031df304ee94cfb550aa69e7512aa589d21c2381c7d8"
diff --git a/recipes/quilt/quilt_0.46.bb b/recipes/quilt/quilt_0.46.bb
deleted file mode 100644
index 0378a1d..0000000
--- a/recipes/quilt/quilt_0.46.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-require quilt-package.inc
-PR = "r2"
-
-SRC_URI[md5sum] = "4508546d1ed0257ef7c128b6121b7208"
-SRC_URI[sha256sum] = "47bf030565bb462840db694acc183273455714028c74974c5b3a3bd4ad29ad89"





More information about the Openembedded-commits mailing list