Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] opkg 0.1.8: remove it since it doesn't work
@ 2012-09-19  9:33 Robert Yang
  2012-09-19  9:33 ` [PATCH 1/1] " Robert Yang
  2012-09-21 22:19 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Robert Yang @ 2012-09-19  9:33 UTC (permalink / raw)
  To: openembedded-core; +Cc: Zhenfeng.Zhao

Test info:
# With PACKAGE_CLASSES = "package_ipk"
$ bitbake core-image-sato core-image-minimal meta-toolchain meta-toolchain-sdk \
	adt-installer meta-ide-support
$ bitbake package-index

All the builds are OK.

// Robert

The following changes since commit 913944d904266bf90af0cad94b4f0fb3652bd29d:

  upstream_tracking: update lsb and ltp (2012-09-14 17:12:52 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib robert/rm_opkg018
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/rm_opkg018

Robert Yang (1):
  opkg 0.1.8: remove it since it doesn't work

 meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch | 19 -------------------
 meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb        | 10 ----------
 meta/recipes-devtools/opkg/opkg_0.1.8.bb              | 11 -----------
 3 files changed, 40 deletions(-)
 delete mode 100644 meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch
 delete mode 100644 meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb
 delete mode 100644 meta/recipes-devtools/opkg/opkg_0.1.8.bb

-- 
1.7.11.2




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] opkg 0.1.8: remove it since it doesn't work
  2012-09-19  9:33 [PATCH 0/1] opkg 0.1.8: remove it since it doesn't work Robert Yang
@ 2012-09-19  9:33 ` Robert Yang
  2012-09-21 22:19 ` [PATCH 0/1] " Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2012-09-19  9:33 UTC (permalink / raw)
  To: openembedded-core; +Cc: Zhenfeng.Zhao

Remove opkg_0.1.8.bb and the related files since it doesn't work:

- It doesn't support the "--force_postinstall" option which is used by
  package_ipk.bbclass.

- It still doesn't work after remove the "--force_postinstall" option,
  it can't install the packages in complementary_pkgs.txt.

[YOCTO #3136]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch | 19 -------------------
 meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb        | 10 ----------
 meta/recipes-devtools/opkg/opkg_0.1.8.bb              | 11 -----------
 3 files changed, 40 deletions(-)
 delete mode 100644 meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch
 delete mode 100644 meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb
 delete mode 100644 meta/recipes-devtools/opkg/opkg_0.1.8.bb

diff --git a/meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch b/meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch
deleted file mode 100644
index f68524b..0000000
--- a/meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Without this, the FILE reference in this header can cause compile issues.
-
-RP - 29/1/10
-
-Upstream-Status: Accepted
-
-Index: trunk/libopkg/pkg_dest.h
-===================================================================
---- trunk.orig/libopkg/pkg_dest.h	2010-01-29 09:37:22.000000000 +0000
-+++ trunk/libopkg/pkg_dest.h	2010-01-29 09:37:33.000000000 +0000
-@@ -18,6 +18,8 @@
- #ifndef PKG_DEST_H
- #define PKG_DEST_H
- 
-+#include <stdio.h>
-+
- typedef struct pkg_dest pkg_dest_t;
- struct pkg_dest
- {
diff --git a/meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb b/meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb
deleted file mode 100644
index da2a39c..0000000
--- a/meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require opkg_${PV}.bb
-
-DEPENDS = "curl"
-PROVIDES += "opkg"
-
-FILESEXTRAPATHS_prepend := "${THISDIR}/opkg-${PV}:"
-
-EXTRA_OECONF += "--disable-gpg"
-
-DEFAULT_PREFERENCE = "-1"
diff --git a/meta/recipes-devtools/opkg/opkg_0.1.8.bb b/meta/recipes-devtools/opkg/opkg_0.1.8.bb
deleted file mode 100644
index 901508a..0000000
--- a/meta/recipes-devtools/opkg/opkg_0.1.8.bb
+++ /dev/null
@@ -1,11 +0,0 @@
-require opkg.inc
-
-SRC_URI = "http://opkg.googlecode.com/files/opkg-${PV}.tar.gz \
-           file://add_vercmp.patch \
-           file://headerfix.patch \
-          "
-
-SRC_URI[md5sum] = "c714ce0e4863bf1315e3b6913ffe3299"
-SRC_URI[sha256sum] = "ff94bf30bd662d49c4b5057e3a0818d062731adaa555d59abd677ec32a3c1c60"
-
-PR = "${INC_PR}.0"
-- 
1.7.11.2




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/1] opkg 0.1.8: remove it since it doesn't work
  2012-09-19  9:33 [PATCH 0/1] opkg 0.1.8: remove it since it doesn't work Robert Yang
  2012-09-19  9:33 ` [PATCH 1/1] " Robert Yang
@ 2012-09-21 22:19 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-09-21 22:19 UTC (permalink / raw)
  To: Robert Yang; +Cc: Zhenfeng.Zhao, openembedded-core

On 09/19/2012 02:33 AM, Robert Yang wrote:
> Test info:
> # With PACKAGE_CLASSES = "package_ipk"
> $ bitbake core-image-sato core-image-minimal meta-toolchain meta-toolchain-sdk \
> 	adt-installer meta-ide-support
> $ bitbake package-index
>
> All the builds are OK.
>
> // Robert
>
> The following changes since commit 913944d904266bf90af0cad94b4f0fb3652bd29d:
>
>    upstream_tracking: update lsb and ltp (2012-09-14 17:12:52 +0100)
>
> are available in the git repository at:
>
>    git://git.pokylinux.org/poky-contrib robert/rm_opkg018
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/rm_opkg018
>
> Robert Yang (1):
>    opkg 0.1.8: remove it since it doesn't work
>
>   meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch | 19 -------------------
>   meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb        | 10 ----------
>   meta/recipes-devtools/opkg/opkg_0.1.8.bb              | 11 -----------
>   3 files changed, 40 deletions(-)
>   delete mode 100644 meta/recipes-devtools/opkg/opkg-0.1.8/headerfix.patch
>   delete mode 100644 meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb
>   delete mode 100644 meta/recipes-devtools/opkg/opkg_0.1.8.bb
>

Merged into OE-Core

Thanks	
	Sau!




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-09-21 22:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-19  9:33 [PATCH 0/1] opkg 0.1.8: remove it since it doesn't work Robert Yang
2012-09-19  9:33 ` [PATCH 1/1] " Robert Yang
2012-09-21 22:19 ` [PATCH 0/1] " Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox