Hello community,

here is the log from the commit of package shellementary for openSUSE:Factory 
checked in at 2013-04-24 16:00:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/shellementary (Old)
 and      /work/SRC/openSUSE:Factory/.shellementary.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "shellementary", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2013-04-05 00:01:41.916011506 +0200
+++ /work/SRC/openSUSE:Factory/.shellementary.new/shellementary.changes 
2013-04-24 16:00:51.000000000 +0200
@@ -0,0 +1,95 @@
+-------------------------------------------------------------------
+Fri Nov 30 19:20:53 UTC 2012 - [email protected]
+
+- adaptation for factory
+  - remove autoupdate configuration from spec file
+  - use separate packages instead of single efl package
+  - fix Url
+
+-------------------------------------------------------------------
+Mon Nov 26 17:55:52 UTC 2012 - [email protected]
+
+- fix license
+- simplify/unify make install
+- --disable-silent-rules
+
+-------------------------------------------------------------------
+Sat Nov 24 18:29:22 UTC 2012 - [email protected]
+
+- use efl instead of separate packages
+
+-------------------------------------------------------------------
+Mon Oct  1 19:41:45 UTC 2012 - [email protected]
+
+- remove patch fixed in upstream
+
+-------------------------------------------------------------------
+Mon Oct  1 14:29:16 UTC 2012 - [email protected]
+
+- source_grabber autoupdate to revision 
9ae51a669a0e2e2d57b80351efc30a63dbba27c8
+
+-------------------------------------------------------------------
+Tue Sep 25 09:43:10 UTC 2012 - [email protected]
+
+- fix this long standing bug with autoreconf vs. autogen differences
+
+-------------------------------------------------------------------
+Tue Sep 25 09:27:22 UTC 2012 - [email protected]
+
+- add aclocal and automake calls
+
+-------------------------------------------------------------------
+Fri Sep 21 14:45:00 UTC 2012 - [email protected]
+
+- replace autogen with autoreconf as upstream refuse to have it in dist tarball
+
+-------------------------------------------------------------------
+Thu Sep 20 21:50:36 UTC 2012 - [email protected]
+
+- source_grabber autoupdate to revision 
ab2747c0e47dcec73618f6742fbcf9b9c72d1579
+
+-------------------------------------------------------------------
+Wed Sep 12 21:11:06 UTC 2012 - [email protected]
+
+- make_install --> makeinstall
+
+-------------------------------------------------------------------
+Mon Sep 10 21:13:43 UTC 2012 - [email protected]
+
+- source_grabber autoupdate to revision 
31b8684eb94d59def6686d1b8da71d4d25770953
+
+-------------------------------------------------------------------
+Thu Sep  6 22:29:58 UTC 2012 - [email protected]
+
+- source_grabber autoupdate to revision 
31b8684eb94d59def6686d1b8da71d4d25770953
+
+-------------------------------------------------------------------
+Fri Jul  6 21:54:41 UTC 2012 - [email protected]
+
+- add dependencies for factory
+
+-------------------------------------------------------------------
+Fri Jul  6 21:27:19 UTC 2012 - [email protected]
+
+- change pkgconfig dependency name
+
+-------------------------------------------------------------------
+Fri Jul  6 21:25:55 UTC 2012 - [email protected]
+
+- make printf more secure
+
+-------------------------------------------------------------------
+Tue Jun 26 09:51:35 UTC 2012 - [email protected]
+
+- change autoreconf to autogen.sh, fix make install
+
+-------------------------------------------------------------------
+Sat Jun 16 16:39:18 UTC 2012 - [email protected]
+
+- remove version checking used in previous repository
+
+-------------------------------------------------------------------
+Thu Jun 14 10:33:04 UTC 2012 - [email protected]
+
+- source_grabber autoupdate to revision 
fbf1426657d7b987ac4fcda68e9a2082a7b1144a
+

New:
----
  printf.patch
  shellementary-0.2.0.tar.bz2
  shellementary.changes
  shellementary.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ shellementary.spec ++++++
#
# spec file for package shellementary
#
# Copyright (c) 2010 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

Name:           shellementary
Version:        0.2.0
Release:        0
License:        MIT
Summary:        EFL GUI application similar to zenity/kdialog
Url:            http://enlightenment.org
Group:          System/X11/Utilities
Source:         %{name}-%{version}.tar.bz2
# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
Patch0:         printf.patch
BuildRequires:  autoconf
BuildRequires:  automake
BuildRequires:  doxygen
BuildRequires:  ecore-devel
BuildRequires:  elementary-devel
BuildRequires:  eina-devel
BuildRequires:  evas-devel
BuildRequires:  libtool
BuildRequires:  pkgconfig
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description
Application providing GUI to shell scripts, similar to zenity/kdialog.

%prep
%setup -q
%patch0 -p3

%build
# Devs refuse to add autogen.sh to make dist tarball
#./autogen.sh
autoreconf -ifv
automake --add-missing --copy --gnu
%configure --disable-static --disable-silent-rules
make %{?_smp_mflags}

%install
make install DESTDIR="%buildroot"
%find_lang %{name}

%clean
%{?buildroot:rm -rf %{buildroot}}

%files -f %{name}.lang
%defattr(-,root,root)
%doc ChangeLog README COPYING
%dir %{_datadir}/shellementary/
%{_bindir}/*
%{_datadir}/shellementary/*


%changelog
++++++ printf.patch ++++++
diff --git a/PROTO/shellementary/src/bin/shelm_callbacks.c 
b/PROTO/shellementary/src/bin/shelm_callbacks.c
index 88efac1..2005b3b 100644
--- a/PROTO/shellementary/src/bin/shelm_callbacks.c
+++ b/PROTO/shellementary/src/bin/shelm_callbacks.c
@@ -47,7 +47,7 @@ entry_callback(void *data, Evas_Object *obj, void *event_info)
     {
       char *s;
       s = elm_entry_markup_to_utf8(elm_entry_entry_get(entry));
-      printf(s);
+      printf("%s", s);
       E_FREE(s);
     }
   elm_exit();
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to