
Hello community, here is the log from the commit of package eppic for openSUSE:Factory checked in at 2013-11-30 14:20:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/eppic (Old) and /work/SRC/openSUSE:Factory/.eppic.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "eppic" Changes: -------- --- /work/SRC/openSUSE:Factory/eppic/eppic.changes 2013-04-05 13:05:22.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.eppic.new/eppic.changes 2013-11-30 14:20:58.000000000 +0100 @@ -1,0 +2,6 @@ +Fri Nov 22 09:36:46 UTC 2013 - ptesarik@suse.cz + +- update to commit 09e8b97 + o fix a few compile issues + +------------------------------------------------------------------- Old: ---- eppic-gitc2a2564.tar.bz2 New: ---- eppic-git09e8b97.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ eppic.spec ++++++ --- /var/tmp/diff_new_pack.eTlFby/_old 2013-11-30 14:20:58.000000000 +0100 +++ /var/tmp/diff_new_pack.eTlFby/_new 2013-11-30 14:20:58.000000000 +0100 @@ -1,7 +1,7 @@ # -# spec file for package libeppic +# spec file for package eppic # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,20 +15,23 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -%define git_date 20130402 -%define git_commit c2a2564 + +%define git_date 20130904 +%define git_commit 09e8b97 %define checkout %{git_date}git%{git_commit} Name: eppic Version: 3.99.%{checkout} Release: 0 Summary: Embeddable Pre-Processor and Interpreter for C -Group: System/Libraries License: GPL-2.0+ +Group: System/Libraries Source: %{name}-git%{git_commit}.tar.bz2 Patch1: %{name}-fix-install.patch Patch2: %{name}-no-return.patch -BuildRequires: bison flex ncurses-devel +BuildRequires: bison +BuildRequires: flex +BuildRequires: ncurses-devel Url: http://code.google.com/p/eppic/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -47,7 +50,6 @@ %package -n libeppic-devel Summary: EPPIC include files and libraries Group: Development/Languages/C and C++ -License: GPL-2.0+ %description -n libeppic-devel EPPIC is a C interpreter that permits easy access to the symbol and type ++++++ eppic-gitc2a2564.tar.bz2 -> eppic-git09e8b97.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eppic-gitc2a2564/applications/crash/eppic.c new/eppic-git09e8b97/applications/crash/eppic.c --- old/eppic-gitc2a2564/applications/crash/eppic.c 2013-04-03 03:42:43.000000000 +0200 +++ new/eppic-git09e8b97/applications/crash/eppic.c 2013-09-04 20:54:48.000000000 +0200 @@ -26,7 +26,9 @@ #include "symfile.h" #include "objfiles.h" #include "gdbcmd.h" +#ifndef GDB_7_6 #include "call-cmds.h" +#endif #include "gdb_regex.h" #include "expression.h" #include "language.h" @@ -296,8 +298,8 @@ break; case TYPE_CODE_INT: - - eppic_parsetype(tstr=TYPE_NAME(type), t, 0); + tstr=(char *)TYPE_NAME(type); + eppic_parsetype(tstr, t, 0); type=0; break; @@ -321,7 +323,7 @@ label: eppic_type_setsize(t, TYPE_LENGTH(type)); eppic_type_setidx(t, (ull)(unsigned long)type); - tstr=TYPE_TAG_NAME(type); + tstr=(char *)TYPE_TAG_NAME(type); if(tstr) apigetctype(V_STRUCT, tstr, t); type=0; } @@ -398,7 +400,7 @@ eppic_member_ssize(m, TYPE_FIELD_TYPE(type, midx)->length); eppic_member_snbits(m, TYPE_FIELD_BITSIZE(type, midx)); eppic_member_sfbit(m, TYPE_FIELD_BITPOS(type, midx)%8); - eppic_member_sname(m, TYPE_FIELD_NAME(type, midx)); + eppic_member_sname(m, (char *)TYPE_FIELD_NAME(type, midx)); LASTNUM=midx+1; return drilldowntype(TYPE_FIELD_TYPE(type, midx), tm); } @@ -479,7 +481,7 @@ if(!eppic_type_islocal(stype) && eppic_type_getidx(stype) > 100) { char *tname; type=(struct type*)((long)eppic_type_getidx(stype)); - if(type->main_type) tname=type->main_type->tag_name; + if(type->main_type) tname=(char *)type->main_type->tag_name; if(tname) eppic_chktype(stype, tname); } do_cleanups (old_chain); @@ -507,7 +509,7 @@ struct type *type=sym->type; int n=0; while(n < TYPE_NFIELDS (type)) { - et=eppic_add_enum(et, eppic_strdup(TYPE_FIELD_NAME(type, n)), TYPE_FIELD_BITPOS(type, n)); + et=eppic_add_enum(et, eppic_strdup((char*)TYPE_FIELD_NAME(type, n)), TYPE_FIELD_BITPOS(type, n)); n++; } return et; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eppic-gitc2a2564/libeppic/mkbaseop.c new/eppic-git09e8b97/libeppic/mkbaseop.c --- old/eppic-gitc2a2564/libeppic/mkbaseop.c 2013-04-03 03:42:43.000000000 +0200 +++ new/eppic-git09e8b97/libeppic/mkbaseop.c 2013-09-04 20:54:48.000000000 +0200 @@ -50,8 +50,8 @@ static char *typtbl[] = { "sc", "uc", "ss", "us", "sl", "ul", "sll", "ull" }; -#define NOPS (sizeof(opstbl)/sizeof(opstbl[0])) -#define NTYPS (sizeof(typtbl)/sizeof(typtbl[0])) +#define NOPS ((unsigned int)(sizeof(opstbl)/sizeof(opstbl[0]))) +#define NTYPS ((unsigned int)(sizeof(typtbl)/sizeof(typtbl[0]))) int main() -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de