gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] /srv/bzr/gsrc/trunk r1348: add bpel2owfn at 2.0.3 but buil


From: Brandon Invergo
Subject: [Gsrc-commit] /srv/bzr/gsrc/trunk r1348: add bpel2owfn at 2.0.3 but build fails
Date: Fri, 07 Dec 2012 23:46:49 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 1348
committer: Brandon Invergo <address@hidden>
branch nick: trunk
timestamp: Fri 2012-12-07 23:46:49 +0100
message:
  add bpel2owfn at 2.0.3 but build fails
added:
  gnu/bpel2owfn/
  gnu/bpel2owfn/Makefile
  gnu/bpel2owfn/config.mk
  gnu/bpel2owfn/files/
  gnu/bpel2owfn/files/bpel2owfn-2.0.3-fix-build.diff
  gnu/bpel2owfn/sha256sums
modified:
  TODO
=== modified file 'TODO'
--- a/TODO      2012-12-07 14:28:54 +0000
+++ b/TODO      2012-12-07 22:46:49 +0000
@@ -35,7 +35,6 @@
   in share/emacs/23.3/site-lisp/ or share/emacs/site-lisp/).
 * Unimplemented packages 
 ** aetherspace: no code available?
-** bpel2owfn
 ** classpathx
 ** cobol: still in early (stalled?) development
 ** dotgnu-forum
@@ -120,6 +119,7 @@
 ** xaos
 ** xhippo
 * Known build failures
+** bpel2owfn: kimwitu++-related build errors
 ** ccscript: ucommon errors
 ** cim: not x86_64 compatible; need cross-compiling env to test
 ** gcl: configure hangs during "checking for

=== added directory 'gnu/bpel2owfn'
=== added file 'gnu/bpel2owfn/Makefile'
--- a/gnu/bpel2owfn/Makefile    1970-01-01 00:00:00 +0000
+++ b/gnu/bpel2owfn/Makefile    2012-12-07 22:46:49 +0000
@@ -0,0 +1,22 @@
+GARNAME = bpel2owfn
+GARVERSION = 2.0.3
+HOME_URL = http://www.gnu.org/software/bpel2owfn/
+DESCRIPTION = Translate a web service expressed in WS-BPEL (Web \\n\
+              Service Business Process Execution Language) into an \\n\
+              oWFN (open Workflow Net)
+
+######################################################################
+
+MASTER_SITES = $(MASTER_GNU)
+MASTER_SUBDIR = $(GARNAME)/$(GARVERSION)/
+DISTFILES = $(DISTNAME).tar.gz
+SIGFILES = $(DISTNAME).tar.gz.sig
+PATCHFILES = $(DISTNAME)-fix-build.diff
+
+BUILDDEPS = kimwitu-pp
+LIBDEPS = 
+
+######################################################################
+
+include ../../gar.lib/auto.mk
+include config.mk

=== added file 'gnu/bpel2owfn/config.mk'
--- a/gnu/bpel2owfn/config.mk   1970-01-01 00:00:00 +0000
+++ b/gnu/bpel2owfn/config.mk   2012-12-07 22:46:49 +0000
@@ -0,0 +1,4 @@
+## Configuration options for bpel2owfn ##
+
+CONFIGURE_OPTS ?= 
+BUILD_OPTS ?=

=== added directory 'gnu/bpel2owfn/files'
=== added file 'gnu/bpel2owfn/files/bpel2owfn-2.0.3-fix-build.diff'
--- a/gnu/bpel2owfn/files/bpel2owfn-2.0.3-fix-build.diff        1970-01-01 
00:00:00 +0000
+++ b/gnu/bpel2owfn/files/bpel2owfn-2.0.3-fix-build.diff        2012-12-07 
22:46:49 +0000
@@ -0,0 +1,59 @@
+diff -x config.log -x config.status -ru 
work/bpel2owfn-2.0.3/src/ast-system-k.cc 
work/bpel2owfn-2.0.3/src/ast-system-k.cc
+--- work/bpel2owfn-2.0.3/src/ast-system-k.cc   2007-06-29 00:02:34.000000000 
+0200
++++ work/bpel2owfn-2.0.3/src/ast-system-k.cc   2012-12-07 12:36:02.824513246 
+0100
+@@ -23,6 +23,7 @@
+ #include <stdio.h>
+ #include <ctype.h>
+ #include <string>
++#include <cstring>
+ #include <sys/types.h>
+ #include <stdlib.h>
+ 
+@@ -5896,27 +5897,27 @@
+     if (!kc_f) kc_f = stdout;
+     enum_phyla kc_phy = phylum();
+     if (kc_phy == phylum_voidptr) {
+-      fprintf(kc_f, "kcidp%x", reinterpret_cast<int>(this));
++      fprintf(kc_f, "kcidp%lx", reinterpret_cast<long>(this));
+       if (use_context_when_sharing_leaves) {
+-          fprintf(kc_f, "_%x_%d", reinterpret_cast<int>(kc_ctxt), kc_son_nr);
++          fprintf(kc_f, "_%lx_%d", reinterpret_cast<long>(kc_ctxt), 
kc_son_nr);
+       }
+     } else if ((kc_phy == phylum_casestring) || (kc_phy == 
phylum_nocasestring)) {
+-      fprintf(kc_f, "kcids%x", reinterpret_cast<int>(this));
++      fprintf(kc_f, "kcids%lx", reinterpret_cast<long>(this));
+       if (use_context_when_sharing_leaves) {
+-          fprintf(kc_f, "_%x_%d", reinterpret_cast<int>(kc_ctxt), kc_son_nr);
++          fprintf(kc_f, "_%lx_%d", reinterpret_cast<long>(kc_ctxt), 
kc_son_nr);
+       }
+     } else if (kc_phy == phylum_integer) {
+-      fprintf(kc_f, "kcidi%x", reinterpret_cast<int>(this));
++      fprintf(kc_f, "kcidi%lx", reinterpret_cast<long>(this));
+       if (use_context_when_sharing_leaves) {
+-          fprintf(kc_f, "_%x_%d", reinterpret_cast<int>(kc_ctxt), kc_son_nr);
++          fprintf(kc_f, "_%lx_%d", reinterpret_cast<long>(kc_ctxt), 
kc_son_nr);
+       }
+     } else if (kc_phy == phylum_real) {
+-      fprintf(kc_f, "kcidf%x", reinterpret_cast<int>(this));
++      fprintf(kc_f, "kcidf%lx", reinterpret_cast<long>(this));
+       if (use_context_when_sharing_leaves) {
+-          fprintf(kc_f, "_%x_%d", reinterpret_cast<int>(kc_ctxt), kc_son_nr);
++          fprintf(kc_f, "_%lx_%d", reinterpret_cast<long>(kc_ctxt), 
kc_son_nr);
+       }
+     } else {
+-      fprintf(kc_f, "kcidx%x", reinterpret_cast<int>(this));
++      fprintf(kc_f, "kcidx%lx", reinterpret_cast<long>(this));
+     }   }
+ 
+ void kc_do_printdot_do_add_edge(c_abstract_phylum kc_p, c_abstract_phylum 
kc_sub_p, int kc_son_nr, int *kc_edge_nr, kc_dotedgenode_t *kc_edges, const 
char *edge_label_prefix)
+diff -x config.log -x config.status -ru work/bpel2owfn-2.0.3/src/helpers.h 
work/bpel2owfn-2.0.3/src/helpers.h
+--- work/bpel2owfn-2.0.3/src/helpers.h 2007-06-29 00:02:34.000000000 +0200
++++ work/bpel2owfn-2.0.3/src/helpers.h 2012-12-07 12:39:35.377889172 +0100
+@@ -61,6 +61,7 @@
+ #include <set>
+ #include <string>
+ #include <vector>
++#include <algorithm>
+ 
+ #ifdef USING_BPEL2OWFN
+ #include "ast-config.h"               // for kc::integer

=== added file 'gnu/bpel2owfn/sha256sums'
--- a/gnu/bpel2owfn/sha256sums  1970-01-01 00:00:00 +0000
+++ b/gnu/bpel2owfn/sha256sums  2012-12-07 22:46:49 +0000
@@ -0,0 +1,3 @@
+800c858765454a51fdf1ac52da44b25f8e1ed46cde98e07ad9f9e24327b8ccba  
download/bpel2owfn-2.0.3.tar.gz
+74ff6fbfeb86ccb6623df917ea0269062e5b9be1d82566ed335c14464116962f  
download/bpel2owfn-2.0.3-fix-build.diff
+56c8ce9e1b008516bfacd4ffcd222a069a8787700df1219e5c5b16bc147a1a53  
download/bpel2owfn-2.0.3.tar.gz.sig


reply via email to

[Prev in Thread] Current Thread [Next in Thread]