Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Saul Wold <sgw@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [CONSOLIDATED PULL 15/28] remake: Add remake-native and remake
Date: Wed, 25 Jul 2012 00:19:09 -0700	[thread overview]
Message-ID: <628f394ac4d2f87418149d4fdf71ccae11111274.1343200454.git.sgw@linux.intel.com> (raw)
In-Reply-To: <cover.1343200454.git.sgw@linux.intel.com>
In-Reply-To: <cover.1343200454.git.sgw@linux.intel.com>

From: Wenzong Fan <wenzong.fan@windriver.com>

remake is a patched version of GNU Make that adds improved error
reporting, the ability to trace execution in a comprehensible way,
and a debugger.

[YOCTO #2402]

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-devtools/remake/remake.inc            |   16 ++++++++++++
 .../remake/remake/version-remake.texi.patch        |   16 ++++++++++++
 meta/recipes-devtools/remake/remake_git.bb         |   25 ++++++++++++++++++++
 3 files changed, 57 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-devtools/remake/remake.inc
 create mode 100644 meta/recipes-devtools/remake/remake/version-remake.texi.patch
 create mode 100644 meta/recipes-devtools/remake/remake_git.bb

diff --git a/meta/recipes-devtools/remake/remake.inc b/meta/recipes-devtools/remake/remake.inc
new file mode 100644
index 0000000..6ac833e
--- /dev/null
+++ b/meta/recipes-devtools/remake/remake.inc
@@ -0,0 +1,16 @@
+SUMMARY = "Makefile debugger which is gnumake 3.81 compatible"
+DESCRIPTION = "remake is a patched and modernized version of GNU make \
+utility that adds improved error reporting, the ability to trace \
+execution in a comprehensible way, and a debugger."
+
+HOMEPAGE = "http://bashdb.sourceforge.net/remake/"
+SECTION = "devel"
+
+SRC_URI = "git://github.com/rocky/remake.git"
+
+inherit autotools gettext update-alternatives
+
+ALTERNATIVE_${PN} = "make"
+ALTERNATIVE_LINK_NAME[make] = "${bindir}/make"
+ALTERNATIVE_TARGET[make] = "${bindir}/remake"
+ALTERNATIVE_PRIORITY = "100"
diff --git a/meta/recipes-devtools/remake/remake/version-remake.texi.patch b/meta/recipes-devtools/remake/remake/version-remake.texi.patch
new file mode 100644
index 0000000..fa6329e
--- /dev/null
+++ b/meta/recipes-devtools/remake/remake/version-remake.texi.patch
@@ -0,0 +1,16 @@
+Upstream-Status: Pending
+
+version-remake.texi is not there but it is required by remake.texi,
+just add it for getting the 'make remake.info' works.
+
+==============================================================
+diff --git a/doc/version-remake.texi b/doc/version-remake.texi
+new file mode 100644
+index 0000000..2a3b72b
+--- /dev/null
++++ b/doc/version-remake.texi
+@@ -0,0 +1,4 @@
++@set UPDATED 10 June 2012
++@set UPDATED-MONTH June 2012
++@set EDITION 3.82+dbg-0.9git
++@set VERSION 3.82+dbg-0.9git
diff --git a/meta/recipes-devtools/remake/remake_git.bb b/meta/recipes-devtools/remake/remake_git.bb
new file mode 100644
index 0000000..7e9857e9
--- /dev/null
+++ b/meta/recipes-devtools/remake/remake_git.bb
@@ -0,0 +1,25 @@
+PR = "r0"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
+                    file://tests/COPYING;md5=d32239bcb673463ab874e80d47fae504 \
+                    file://glob/COPYING.LIB;md5=4a770b67e6be0f60da244beb2de0fce4"
+require remake.inc
+
+SRC_URI += "file://version-remake.texi.patch"
+SRCREV = "414d6e84121c6740ff5079370c905dea0f0e1ddb"
+S = "${WORKDIR}/git"
+
+DEPENDS += "readline"
+PROVIDES += "make"
+
+do_configure_prepend() {
+    # create config.rpath which required by configure.ac
+    autopoint || touch config.rpath
+}
+
+do_compile_prepend() {
+    # updating .po and other gnu build files
+    make update
+}
+
+BBCLASSEXTEND = "native"
-- 
1.7.7.6




  parent reply	other threads:[~2012-07-25  7:31 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-25  7:18 [CONSOLIDATED PULL 00/28] Fixes & eglibc 2.16 Saul Wold
2012-07-25  7:18 ` [CONSOLIDATED PULL 01/28] initscripts: don't bg mk_dirs in populate-volatile Saul Wold
2012-07-25  7:18 ` [CONSOLIDATED PULL 02/28] libpcap: fix pcap-config to not return -Wl, -rpath Saul Wold
2012-07-25  7:18 ` [CONSOLIDATED PULL 03/28] tcmode-default: Bump EGLIBC Version to 2.16 Saul Wold
2012-07-25  7:18 ` [CONSOLIDATED PULL 04/28] bash: enable parallel build Saul Wold
2012-07-25  7:18 ` [CONSOLIDATED PULL 05/28] bash: fix warning about bashbug reference /usr/bin when installed in /bin Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 06/28] kernel.bbclass: fix external module building Saul Wold
2012-07-26 17:21   ` Leon Woestenberg
2012-07-26 18:46     ` Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 07/28] shadow-native: use 'users' group by default Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 08/28] shadow: " Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 09/28] linux-yocto/3.4: 3.4.6 and 3.4.x-rt14 Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 10/28] dhcp: remove dependency of dev/staticdev packages on main package Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 11/28] libxp: Change superfluous "+=" to simple "=" when using _append Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 12/28] webkit-gtk: Replace superfluous "+=" with "=", and add leading space Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 13/28] qemu.bbclass: Map the qemu binary name for powerpc64 Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 14/28] cups_1.4.6.bb: Fix build on ppc64 Saul Wold
2012-07-25  7:19 ` Saul Wold [this message]
2012-07-25  7:19 ` [CONSOLIDATED PULL 16/28] libcgroup_0.37.1.bb: Add recipe Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 17/28] kernel bbclass: Recreate uImage only when KEEPUIMAGE != "yes" Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 18/28] package.bbclass: Create symlinks for packages with different packaged name Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 19/28] classes/package_deb: add PackageArch field Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 20/28] eglibc-initial: Fix build failure due to missing limits.h Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 21/28] gcc-cross-initial: Stage self sufficient fixed limits.h Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 22/28] eglibc: Fix build when OPTION_POSIX_WIDE_CHAR_DEVICE_IO is not set Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 23/28] core-image: remove x11-netbook package group, it's unused Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 24/28] busybox: fix the problem that mkfs.minix.tests fails on big endian platform Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 25/28] xinit_1.3.2: Remove broken, superfluous 'FILES_${PN} += "${libdir}X11/xinit"' Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 26/28] busybox:udhcpc: fix the root_is_nfs() function Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 27/28] package-index: inherit pythonnative Saul Wold
2012-07-25  7:19 ` [CONSOLIDATED PULL 28/28] Add missing Upstream-Status to various patches Saul Wold
2012-07-26 13:59 ` [CONSOLIDATED PULL 00/28] Fixes & eglibc 2.16 Richard Purdie

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=628f394ac4d2f87418149d4fdf71ccae11111274.1343200454.git.sgw@linux.intel.com \
    --to=sgw@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox