--- /dev/null
+* Fri Aug 09 2013 Eduardo Lima (Etrunko) <eduardo.lima@intel.com> upstream/1.7.5@fc1ed62
+- Updated to release 1.7.8
+
+* Thu Jun 27 23:48:26 UTC 2013 - tracy.graydon@intel.com
+- TIVI-1068: enable elementary examples
+
+* Tue Jun 18 20:47:50 UTC 2013 - tracy.graydon@intel.com
+- TIVI-1046: package fails to build via linkbuild for Tizen:IVI on /usr/bin/eet.
+Adding eet-tools instead of eet-bin fixes build for Tizen:IVI without breaking Tizen project build.
+
+* Sun Jun 16 2013 Rusty Lynch <rusty.lynch@intel.com> accepted/tizen/20130606.163020@b8399a3
+- Add BuildRequires for eet-bin
+
+* Wed Jun 05 2013 Rusty Lynch <rusty.lynch@intel.com> upstream/1.7.5@55405ad
+- Update to release 1.7.7
+
+* Wed May 22 2013 Rusty Lynch <rusty.lynch@intel.com> accepted/tizen/20130520.103640@72102d0
+- Adding elm_win_wm_rotation support
+
+* Sun May 19 2013 Rusty Lynch <rusty.lynch@intel.com> submit/tizen/20130517.020932@944fb57
+- Add elm_gesture_layer_* support from Tizen 2.1
+
+* Fri May 10 2013 Rusty Lynch <rusty.lynch@intel.com> submit/tizen/20130509.174056@69ef9f4
+- Force ELM_WAYLAND_EGL if engine set called when DISPLAY not set
+- Adding tickernoti widget
+- Add elm_win_indicator_state_set
+- Add elm_widget_sub_object_list_get()
+- Adding elm_finger_size_get and elm_finger_size_set
+- Add elm_scale_get and elm_scale_set
+- Add dummy implemention of Tizen specific elm_config magnification
+
+* Thu Apr 18 2013 Rusty Lynch <rusty.lynch@intel.com> accepted/trunk/20130320.004832@059952f
+- Elementary: Patch from Alex Wu <zhiwen.wu@linux.intel.com> to fix glview tests in Wayland:
+
+* Tue Mar 19 2013 Anas Nashif <anas.nashif@intel.com> upstream/1.7.5@67e4f58
+- Update to 1.7.5
+
+* Fri Dec 21 2012 Anas Nashif <anas.nashif@intel.com> upstream/1.7.4@8ea39c5
+- Update tp 1.7.4
+
--- /dev/null
+%define dbus_unavailable 1
+
+%bcond_with wayland
+%bcond_with x
+Name: elementary
+Version: cc8501b259dcb261a8f53f0e5b0e63fe0807f44c
+Release: 0
+License: LGPL-2.1+
+Summary: EFL toolkit for small touchscreens
+Url: http://trac.enlightenment.org/e/wiki/Elementary
+Group: Graphics & UI Framework/Development
+Source0: elementary-%{version}.tar.bz2
+Source1001: elementary.manifest
+BuildRequires: doxygen
+BuildRequires: gettext-devel
+BuildRequires: pkgconfig(ecore)
+BuildRequires: pkgconfig(ecore-evas)
+BuildRequires: pkgconfig(ecore-file)
+BuildRequires: pkgconfig(ecore-imf)
+
+%if %{with wayland}
+BuildRequires: pkgconfig(ecore-wayland)
+BuildRequires: pkgconfig(ecore-drm)
+%endif
+
+%if %{with x}
+BuildRequires: pkgconfig(ecore-x)
+BuildRequires: pkgconfig(x11)
+%endif
+
+%if !%{with x}
+%if !%{with wayland}
+BuildRequires: pkgconfig(ecore-fb)
+%endif
+%endif
+
+BuildRequires: pkgconfig(edbus)
+BuildRequires: pkgconfig(edje)
+BuildRequires: pkgconfig(eet)
+BuildRequires: pkgconfig(efreet)
+BuildRequires: pkgconfig(eina)
+BuildRequires: pkgconfig(evas)
+BuildRequires: pkgconfig(ethumb)
+BuildRequires: pkgconfig(emotion)
+BuildRequires: eet-tools
+BuildRequires: eolian-devel
+BuildRequires: python-devel
+Recommends: %{name}-locale = %{version}
+
+%description
+Elementary is a widget set. It is a new-style of widget set much more canvas
+object based than anything else. Why not ETK? Why not EWL? Well they both
+tend to veer away from the core of Evas, Ecore and Edje a lot to build their
+own worlds. Also I wanted something focused on embedded devices -
+specifically small touchscreens. Unlike GTK+ and Qt, 75% of the "widget set"
+is already embodied in a common core - Ecore, Edje, Evas etc. So this
+fine-grained library splitting means all of this is shared, just a new
+widget "personality" is on top. And that is... Elementary, my dear watson.
+Elementary.
+
+%package examples
+Summary: EFL elementary examples
+
+%description examples
+EFL elementary examples
+
+%package tools
+Summary: EFL elementary configuration and test apps
+
+%description tools
+EFL elementary configuration and test apps package
+
+%package devel
+Summary: Development files for elementary
+Group: Development/Libraries
+Requires: %{name} = %{version}
+
+%description devel
+Development components for the elementary package
+
+
+%prep
+%setup -q
+cp %{SOURCE1001} .
+
+%build
+
+%autogen --disable-static \
+%if %{with wayland}
+ --enable-ecore-wayland \
+%endif
+%if !%{with x}
+ --disable-ecore-x \
+%endif
+%if %dbus_unavailable
+ --disable-build-examples
+%else
+ --enable-build-examples
+%endif
+
+%__make %{?_smp_mflags}
+
+%install
+%make_install
+
+%find_lang %{name}
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%lang_package
+
+%files
+%manifest %{name}.manifest
+%defattr(-,root,root,-)
+%license COPYING
+%{_bindir}/elementary_quicklaunch
+%{_bindir}/elementary_run
+%{_libdir}/edje/*
+%{_libdir}/elementary/modules/*
+%{_libdir}/*.so.*
+%{_datadir}/elementary/*
+%{_datadir}/icons/elementary.png
+
+%if ! %dbus_unavailable
+%files examples
+%manifest %{name}.manifest
+%defattr(-,root,root,-)
+%{_libdir}/elementary/examples/*
+%endif
+
+%files tools
+%manifest %{name}.manifest
+%defattr(-,root,root,-)
+%{_datadir}/applications/*
+%{_bindir}/elementary_config
+%{_bindir}/elementary_test*
+%{_bindir}/elementary_codegen
+%{_bindir}/elm_prefs_cc
+
+%files devel
+%manifest %{name}.manifest
+%defattr(-,root,root,-)
+%{_includedir}/%{name}-1/*.h*
+%{_datadir}/eolian/include/%{name}-1/*.eo
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/*.pc
+%{_libdir}/cmake/Elementary/ElementaryConfig.cmake
+%{_libdir}/cmake/Elementary/ElementaryConfigVersion.cmake
+