[Armadeus-commitlog] armadeus branch, master, updated. armadeus-5.2-294-g9705cf4
Brought to you by:
sszy
|
From: jorasse <jo...@us...> - 2013-06-25 16:19:30
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 9705cf4c120c3f20997ee416659ef7775d5f5257 (commit)
from cfd03b3139f120fb08d58320577a77c09d4c3c0d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9705cf4c120c3f20997ee416659ef7775d5f5257
Author: Janos Angeli <an...@an...>
Date: Sun Jun 23 21:10:12 2013 +0200
[BUILDROOT] 2013.05: Add joe packege
This patch adds joe text editor to buildroot 2013.05
Signed-off-by: Janos Angeli <an...@an...>
-----------------------------------------------------------------------
Summary of changes:
.../buildroot/2013.05/206-joe-add_package.patch | 80 ++++++++++++++++++++
patches/buildroot/2013.05/cleanup_buildroot.sh | 1 +
2 files changed, 81 insertions(+), 0 deletions(-)
create mode 100644 patches/buildroot/2013.05/206-joe-add_package.patch
diff --git a/patches/buildroot/2013.05/206-joe-add_package.patch b/patches/buildroot/2013.05/206-joe-add_package.patch
new file mode 100644
index 0000000..f842205
--- /dev/null
+++ b/patches/buildroot/2013.05/206-joe-add_package.patch
@@ -0,0 +1,80 @@
+Joe: Add Joe's Own Editor program.
+
+Signed-off-by: Janos Angeli <an...@an...>
+---
+
+Index: buildroot/package/Config.in
+===================================================================
+--- buildroot.orig/package/Config.in
++++ buildroot/package/Config.in
+@@ -900,6 +900,7 @@ endmenu
+
+ menu "Text editors and viewers"
+ source "package/ed/Config.in"
++source "package/joe/Config.in"
+ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
+ source "package/less/Config.in"
+ endif
+Index: buildroot/package/joe/Config.in
+===================================================================
+--- /dev/null
++++ buildroot/package/joe/Config.in
+@@ -0,0 +1,5 @@
++config BR2_PACKAGE_JOE
++ bool "joe"
++ help
++ Joe's Own Editor.
++ http://joe-editor.sourceforge.net/
+Index: buildroot/package/joe/joe.mk
+===================================================================
+--- /dev/null
++++ buildroot/package/joe/joe.mk
+@@ -0,0 +1,11 @@
++#############################################################
++#
++# Joe
++#
++#############################################################
++JOE_VERSION = 3.7
++JOE_SOURCE = joe-$(JOE_VERSION).tar.gz
++JOE_SITE = http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/joe-$(JOE_VERSION)
++JOE_DEPENDENCIES = ncurses
++
++$(eval $(autotools-package))
+Index: buildroot/package/joe/joe-3.7-disable-j0-j1-y0-y1-math-functions.patch
+===================================================================
+--- /dev/null
++++ buildroot/package/joe/joe-3.7-disable-j0-j1-y0-y1-math-functions.patch
+@@ -0,0 +1,32 @@
++--- joe-3.7.orig/umath.c
+++++ joe-3.7/umath.c
++@@ -396,10 +396,10 @@ double m_ceil(double n) { return ceil(n)
++ double m_fabs(double n) { return fabs(n); }
++ double m_erf(double n) { return erf(n); }
++ double m_erfc(double n) { return erfc(n); }
++-double m_j0(double n) { return j0(n); }
++-double m_j1(double n) { return j1(n); }
++-double m_y0(double n) { return y0(n); }
++-double m_y1(double n) { return y1(n); }
+++//double m_j0(double n) { return j0(n); }
+++//double m_j1(double n) { return j1(n); }
+++//double m_y0(double n) { return y0(n); }
+++//double m_y1(double n) { return y1(n); }
++
++ double calc(BW *bw, unsigned char *s)
++ {
++@@ -434,10 +434,10 @@ double calc(BW *bw, unsigned char *s)
++ v = get(USTR "abs"); v->func = m_fabs;
++ v = get(USTR "erf"); v->func = m_erf;
++ v = get(USTR "erfc"); v->func = m_erfc;
++- v = get(USTR "j0"); v->func = m_j0;
++- v = get(USTR "j1"); v->func = m_j1;
++- v = get(USTR "y0"); v->func = m_y0;
++- v = get(USTR "y1"); v->func = m_y1;
+++// v = get(USTR "j0"); v->func = m_j0;
+++// v = get(USTR "j1"); v->func = m_j1;
+++// v = get(USTR "y0"); v->func = m_y0;
+++// v = get(USTR "y1"); v->func = m_y1;
++ }
++
++ v = get(USTR "top");
diff --git a/patches/buildroot/2013.05/cleanup_buildroot.sh b/patches/buildroot/2013.05/cleanup_buildroot.sh
index fe7af02..12e7553 100755
--- a/patches/buildroot/2013.05/cleanup_buildroot.sh
+++ b/patches/buildroot/2013.05/cleanup_buildroot.sh
@@ -73,3 +73,4 @@ rm -f buildroot/package/busybox/1.19.4/busybox-1.19.4-stty_add_rs485_config.patc
rm -f buildroot/package/busybox/1.20.2/busybox-1.20.2-stty_add_rs485_config.patch
rm -f buildroot/package/busybox/1.21.0/busybox-1.21.0-stty_add_rs485_config.patch
rm -f buildroot/package/busybox/snapshot/busybox-stty_add_rs485_config.patch
+rm -rf buildroot/package/joe/
hooks/post-receive
--
armadeus
|