summaryrefslogtreecommitdiff
path: root/ipkg
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /ipkg
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'ipkg')
-rw-r--r--ipkg/ipkg-0.99.129/buffer-overflow.patch38
-rw-r--r--ipkg/ipkg-0.99.129/uninclude-replace.patch10
-rw-r--r--ipkg/ipkg-0.99.130/terse.patch27
-rw-r--r--ipkg/ipkg-0.99.130/uninclude-replace.patch10
-rw-r--r--ipkg/ipkg-collateral.bb0
-rw-r--r--ipkg/ipkg-collateral/beagle/dest3
-rw-r--r--ipkg/ipkg-collateral/collie/dest4
-rw-r--r--ipkg/ipkg-collateral/dest1
-rw-r--r--ipkg/ipkg-collateral/ipkg.conf.comments23
-rw-r--r--ipkg/ipkg-collateral/jornada56x/dest4
-rw-r--r--ipkg/ipkg-collateral/ramses/src3
-rw-r--r--ipkg/ipkg-collateral/simpad/dest3
-rw-r--r--ipkg/ipkg-collateral/src0
-rw-r--r--ipkg/ipkg-native_0.99.129.bb7
-rw-r--r--ipkg/ipkg-native_0.99.130.bb7
-rw-r--r--ipkg/ipkg_0.99.129.bb0
-rw-r--r--ipkg/ipkg_0.99.130.bb0
17 files changed, 0 insertions, 140 deletions
diff --git a/ipkg/ipkg-0.99.129/buffer-overflow.patch b/ipkg/ipkg-0.99.129/buffer-overflow.patch
deleted file mode 100644
index 91234fd53f..0000000000
--- a/ipkg/ipkg-0.99.129/buffer-overflow.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-Index: ipkg_cmd.c
-===================================================================
-RCS file: /cvs/familiar/dist/ipkg/C/ipkg_cmd.c,v
-retrieving revision 1.96
-diff -u -r1.96 ipkg_cmd.c
---- C/ipkg_cmd.c 19 Aug 2004 10:55:47 -0000 1.96
-+++ C/ipkg_cmd.c 11 Sep 2004 19:43:14 -0000
-@@ -860,6 +860,7 @@
- str_list_elt_t *iter;
- char *pkg_version;
- size_t buff_len = 8192;
-+ size_t used_len;
- char *buff ;
-
- buff = (char *)malloc(buff_len);
-@@ -891,9 +892,20 @@
- }
- #else
- if (buff) {
-- snprintf(buff, buff_len, "Package %s (%s) is installed on %s and has the following files:\n",
-- pkg->name, pkg_version, pkg->dest->name);
-+ try_again:
-+ used_len = snprintf(buff, buff_len, "Package %s (%s) is installed on %s and has the following files:\n",
-+ pkg->name, pkg_version, pkg->dest->name) + 1;
-+ if (used_len > buff_len) {
-+ buff_len *= 2;
-+ buff = realloc (buff, buff_len);
-+ goto try_again;
-+ }
- for (iter = installed_files->head; iter; iter = iter->next) {
-+ used_len += strlen (iter->data) + 1;
-+ while (buff_len <= used_len) {
-+ buff_len *= 2;
-+ buff = realloc (buff, buff_len);
-+ }
- strncat(buff, iter->data, buff_len);
- strncat(buff, "\n", buff_len);
- }
diff --git a/ipkg/ipkg-0.99.129/uninclude-replace.patch b/ipkg/ipkg-0.99.129/uninclude-replace.patch
deleted file mode 100644
index a3ed2201fd..0000000000
--- a/ipkg/ipkg-0.99.129/uninclude-replace.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- C/includes.h 2003-03-28 19:36:22.000000000 +0000
-+++ C/includes.h 2004-07-28 03:41:11.000000000 +0100
-@@ -48,6 +48,6 @@
- # include <unistd.h>
- #endif
-
--#include "replace/replace.h"
-+//#include "replace/replace.h"
-
- #endif
diff --git a/ipkg/ipkg-0.99.130/terse.patch b/ipkg/ipkg-0.99.130/terse.patch
deleted file mode 100644
index 9a07df5df3..0000000000
--- a/ipkg/ipkg-0.99.130/terse.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- C/ipkg_cmd.c~terse
-+++ C/ipkg_cmd.c
-@@ -119,8 +119,6 @@
- " writing status file\n");
- ipkg_conf_write_status_files(conf);
- pkg_write_changed_filelists(conf);
-- } else {
-- ipkg_message(conf, IPKG_NOTICE, "Nothing to be done\n");
- }
- }
-
-@@ -148,9 +146,7 @@
- int result;
- p_userdata = userdata;
- result = (cmd->fun)(conf, argc, argv);
-- if ( result == 0 ) {
-- ipkg_message(conf, IPKG_NOTICE, "Successfully terminated.\n");
-- } else {
-+ if ( result != 0 ) {
- ipkg_message(conf, IPKG_NOTICE, "An error ocurred, return value: %d.\n", result);
- }
-
diff --git a/ipkg/ipkg-0.99.130/uninclude-replace.patch b/ipkg/ipkg-0.99.130/uninclude-replace.patch
deleted file mode 100644
index a3ed2201fd..0000000000
--- a/ipkg/ipkg-0.99.130/uninclude-replace.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- C/includes.h 2003-03-28 19:36:22.000000000 +0000
-+++ C/includes.h 2004-07-28 03:41:11.000000000 +0100
-@@ -48,6 +48,6 @@
- # include <unistd.h>
- #endif
-
--#include "replace/replace.h"
-+//#include "replace/replace.h"
-
- #endif
diff --git a/ipkg/ipkg-collateral.bb b/ipkg/ipkg-collateral.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/ipkg/ipkg-collateral.bb
+++ /dev/null
diff --git a/ipkg/ipkg-collateral/beagle/dest b/ipkg/ipkg-collateral/beagle/dest
deleted file mode 100644
index 5a085264a6..0000000000
--- a/ipkg/ipkg-collateral/beagle/dest
+++ /dev/null
@@ -1,3 +0,0 @@
-dest root /
-dest flash /home
-dest cf /mnt/cf
diff --git a/ipkg/ipkg-collateral/collie/dest b/ipkg/ipkg-collateral/collie/dest
deleted file mode 100644
index 9704eed475..0000000000
--- a/ipkg/ipkg-collateral/collie/dest
+++ /dev/null
@@ -1,4 +0,0 @@
-dest root /
-dest cf /mnt/cf/
-dest sd /mnt/card/
-dest ram /mnt/ram/
diff --git a/ipkg/ipkg-collateral/dest b/ipkg/ipkg-collateral/dest
deleted file mode 100644
index 088ca403da..0000000000
--- a/ipkg/ipkg-collateral/dest
+++ /dev/null
@@ -1 +0,0 @@
-dest root /
diff --git a/ipkg/ipkg-collateral/ipkg.conf.comments b/ipkg/ipkg-collateral/ipkg.conf.comments
deleted file mode 100644
index 51623f4d53..0000000000
--- a/ipkg/ipkg-collateral/ipkg.conf.comments
+++ /dev/null
@@ -1,23 +0,0 @@
-# Must have one or more source entries of the form:
-#
-# src <src-name> <source-url>
-#
-# and one or more destination entries of the form:
-#
-# dest <dest-name> <target-path>
-#
-# where <src-name> and <dest-names> are identifiers that
-# should match [a-zA-Z0-9._-]+, <source-url> should be a
-# URL that points to a directory containing a Familiar
-# Packages file, and <target-path> should be a directory
-# that exists on the target system.
-
-# Proxy Support
-#option http_proxy http://proxy.tld:3128
-#option ftp_proxy http://proxy.tld:3128
-#option proxy_username <username>
-#option proxy_password <password>
-
-# Offline mode (for use in constructing flash images offline)
-#option offline_root target
-
diff --git a/ipkg/ipkg-collateral/jornada56x/dest b/ipkg/ipkg-collateral/jornada56x/dest
deleted file mode 100644
index 9704eed475..0000000000
--- a/ipkg/ipkg-collateral/jornada56x/dest
+++ /dev/null
@@ -1,4 +0,0 @@
-dest root /
-dest cf /mnt/cf/
-dest sd /mnt/card/
-dest ram /mnt/ram/
diff --git a/ipkg/ipkg-collateral/ramses/src b/ipkg/ipkg-collateral/ramses/src
deleted file mode 100644
index 5b99d48da4..0000000000
--- a/ipkg/ipkg-collateral/ramses/src
+++ /dev/null
@@ -1,3 +0,0 @@
-src mnci54 http://www.mn-solutions.de/feed/mnci54
-#src unstable http://www.mn-solutions.de/feed/unstable
-#src stable http://www.mn-solutions.de/feed/stable
diff --git a/ipkg/ipkg-collateral/simpad/dest b/ipkg/ipkg-collateral/simpad/dest
deleted file mode 100644
index 63e8b50eea..0000000000
--- a/ipkg/ipkg-collateral/simpad/dest
+++ /dev/null
@@ -1,3 +0,0 @@
-dest root /
-dest cf /mnt/cf/
-dest ram /mnt/ram/
diff --git a/ipkg/ipkg-collateral/src b/ipkg/ipkg-collateral/src
deleted file mode 100644
index e69de29bb2..0000000000
--- a/ipkg/ipkg-collateral/src
+++ /dev/null
diff --git a/ipkg/ipkg-native_0.99.129.bb b/ipkg/ipkg-native_0.99.129.bb
deleted file mode 100644
index bf2c92fad9..0000000000
--- a/ipkg/ipkg-native_0.99.129.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-SECTION = "base"
-include ipkg_${PV}.bb
-inherit native
-
-DEPENDS = "patcher-native libtool-native automake-native"
-FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/ipkg-${PV}"
-PROVIDES = ""
diff --git a/ipkg/ipkg-native_0.99.130.bb b/ipkg/ipkg-native_0.99.130.bb
deleted file mode 100644
index bf2c92fad9..0000000000
--- a/ipkg/ipkg-native_0.99.130.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-SECTION = "base"
-include ipkg_${PV}.bb
-inherit native
-
-DEPENDS = "patcher-native libtool-native automake-native"
-FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/ipkg-${PV}"
-PROVIDES = ""
diff --git a/ipkg/ipkg_0.99.129.bb b/ipkg/ipkg_0.99.129.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/ipkg/ipkg_0.99.129.bb
+++ /dev/null
diff --git a/ipkg/ipkg_0.99.130.bb b/ipkg/ipkg_0.99.130.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/ipkg/ipkg_0.99.130.bb
+++ /dev/null