]> code.ossystems Code Review - openembedded-core.git/commitdiff
pax-utils: upgrade to 0.2.1
authorKevin Tian <kevin.tian@intel.com>
Tue, 15 Jun 2010 22:37:17 +0000 (06:37 +0800)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 29 Jun 2010 16:13:37 +0000 (17:13 +0100)
- update metadata. license checksum is skipped, as pax-utils is depended by do_package task itself.
  I.e. the 1st do_package will be run after pax-utils-native is built. So far checksum verification
  is included in do_package task
- no need to override {S} since {S} uses {BPN}
- no need to define "_GNU_SOURCE" which has been included by source
  tar ball. Also remove do_compile override accordingly
- remove recipe internal md5sum, which is not used by Poky

Signed-off-by Kevin Tian <kevin.tian@intel.com>

meta/packages/pax-utils/pax-utils_0.1.19.bb [deleted file]
meta/packages/pax-utils/pax-utils_0.2.1.bb [new file with mode: 0644]

diff --git a/meta/packages/pax-utils/pax-utils_0.1.19.bb b/meta/packages/pax-utils/pax-utils_0.1.19.bb
deleted file mode 100644 (file)
index d7cd49f..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-DESCRIPTION = "Various ELF utilities"
-HOMEPAGE    = "http://www.gentoo.org/proj/en/hardened/pax-utils.xml"
-LICENSE     = "GPLv2"
-
-SRC_URI     = "http://gentoo.osuosl.org/distfiles/pax-utils-${PV}.tar.bz2"
-S           = "${WORKDIR}/pax-utils-${PV}"
-
-PR = "r2"
-
-CPPFLAGS   += "-D_GNU_SOURCE "
-
-do_compile() {
-    oe_runmake
-}
-
-do_install() {
-    oe_runmake PREFIX=${D}${prefix} DESTDIR=${D} install
-}
-
-NATIVE_INSTALL_WORKS = "1"
-BBCLASSEXTEND = "native"
-
-SRC_URI[md5sum] = "98f6b9fe17a740a8cc577255422c6103"
-SRC_URI[sha256sum] = "3918628e9f2508708a1a28f5ed4cb39d07cbd5711747bbb3ddf63816d056c11e"
diff --git a/meta/packages/pax-utils/pax-utils_0.2.1.bb b/meta/packages/pax-utils/pax-utils_0.2.1.bb
new file mode 100644 (file)
index 0000000..404b90c
--- /dev/null
@@ -0,0 +1,14 @@
+DESCRIPTION = "pax-utils is a small set of various PaX aware and related utilities for ELF binaries. PaX's main goal is to research various defense mechanisms against the exploitation of software bugs that give an attacker arbitrary read/write access to the attacked task's address space"
+HOMEPAGE    = "http://www.gentoo.org/proj/en/hardened/pax-utils.xml"
+LICENSE     = "GPLv2+"
+
+SRC_URI     = "http://gentoo.osuosl.org/distfiles/pax-utils-${PV}.tar.bz2"
+
+PR = "r0"
+
+do_install() {
+    oe_runmake PREFIX=${D}${prefix} DESTDIR=${D} install
+}
+
+NATIVE_INSTALL_WORKS = "1"
+BBCLASSEXTEND = "native"