Hello community,

here is the log from the commit of package terminology for openSUSE:Factory 
checked in at 2013-01-14 22:26:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/terminology (Old)
 and      /work/SRC/openSUSE:Factory/.terminology.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "terminology", Maintainer is ""

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

--- /dev/null   2013-01-09 19:40:42.352580873 +0100
+++ /work/SRC/openSUSE:Factory/.terminology.new/terminology.changes     
2013-01-14 22:26:43.000000000 +0100
@@ -0,0 +1,66 @@
+-------------------------------------------------------------------
+Sat Jan 12 11:47:06 UTC 2013 - sleep_wal...@suse.cz
+
+- remove terminology.desktop from tracking as the original is used again
+
+-------------------------------------------------------------------
+Thu Jan 10 23:07:32 UTC 2013 - sleep_wal...@suse.cz
+
+- remove unused mandriva-mkstemps.patch from tracking
+
+-------------------------------------------------------------------
+Thu Jan 10 21:15:59 UTC 2013 - cfarr...@suse.com
+
+- license update: BSD-2-Clause and OFL-1.1
+
+
+-------------------------------------------------------------------
+Tue Jan  8 22:16:31 UTC 2013 - sleep_wal...@suse.cz
+
+- remove autoupdate entries from changelog
+- add tag to patch
+
+-------------------------------------------------------------------
+Thu Dec 27 22:54:23 UTC 2012 - si...@simotek.net
+
+- added dont-print-all.patch
+  required until 0.3.0 stops printing every debug statement tio
+  .xsession-errors
+
+-------------------------------------------------------------------
+Sat Dec 15 12:04:28 UTC 2012 - sleep_wal...@suse.cz
+
+- fix license
+- remove duplicates for SUSEs
+- remove patch which reached upstream (mandriva-mkstemps.patch)
+- fix URL
+- update to 0.2.0 containing a lot of fixes
+
+-------------------------------------------------------------------
+Sun Dec  2 00:43:29 UTC 2012 - sleep_wal...@suse.cz
+
+- mandriva-mkstemps.patch:
+  use mkstemps only if available
+
+-------------------------------------------------------------------
+Mon Nov  5 11:15:34 UTC 2012 - sleep_wal...@suse.cz
+
+- add desktop handling code
+- disable silent rules
+- spec cleanup
+
+-------------------------------------------------------------------
+Sat Jun 16 16:33:29 UTC 2012 - sleep_wal...@suse.cz
+
+- fix git URL for auto updates
+
+-------------------------------------------------------------------
+Fri Jun 15 16:05:09 UTC 2012 - sleep_wal...@suse.cz
+
+- let the terminology build against openSUSE_12.1
+
+-------------------------------------------------------------------
+Fri Jun 15 15:10:28 UTC 2012 - sleep_wal...@suse.cz
+
+- let there be terminology
+

New:
----
  dont-print-all.patch
  terminology-0.2.0.tar.bz2
  terminology.changes
  terminology.spec

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

Other differences:
------------------
++++++ terminology.spec ++++++
#
# spec file for package terminology
#
# 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:           terminology
Version:        0.2.0
Release:        0
License:        BSD-2-Clause and OFL-1.1
Summary:        EFL based terminal emulator
Url:            http://enlightenment.org
Group:          System/X11/Terminals
Source:         %{name}-%{version}.tar.bz2
# PATCH-FIX-UPSTREAM dont-print-all.patch si...@simotek.net -- remove for 0.3.0 
commit 81013 stops everything being printed to .xsession-errors
Patch0:         dont-print-all.patch
BuildRequires:  ecore-devel
BuildRequires:  edje-devel
BuildRequires:  eet-devel
BuildRequires:  efreet-devel
BuildRequires:  eina-devel
BuildRequires:  elementary-devel >= 1.6.99
BuildRequires:  evas-devel
%if 0%{?suse_version}
BuildRequires:  fdupes
BuildRequires:  update-desktop-files
%endif
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
Requires:       elementary >= 1.7.0

%description
Fast and lightweight terminal emulator using EFL libraries.

%prep
%setup -q
%patch0

%build
%configure --disable-silent-rules --disable-static
make %{?_smp_mflags}

%install
%makeinstall
sed -i 's/.png[[:blank:]]*$//' 
%{buildroot}%{_datadir}/applications/terminology.desktop
%if 0%{?suse_version}
%suse_update_desktop_file terminology TerminalEmulator
%fdupes %{buildroot}/%{_datadir}
%endif
mv %{buildroot}%{_datadir}/icons %{buildroot}%{_datadir}/pixmaps

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


%files
%defattr(-,root,root)
%doc README COPYING
%{_bindir}/terminology
%{_datadir}/applications/terminology.desktop
%{_datadir}/pixmaps/terminology.png
%{_datadir}/terminology

%changelog
++++++ dont-print-all.patch ++++++
Index: src/bin/termptyesc.c
===================================================================
--- src/bin/termptyesc.c        2012-12-15 07:44:11 UTC (rev 81012)
+++ src/bin/termptyesc.c        2012-12-15 07:48:17 UTC (rev 81013)
@@ -16,7 +16,7 @@
 #define ERR(...)      EINA_LOG_DOM_ERR(_termpty_log_dom, __VA_ARGS__)
 #define WRN(...)      EINA_LOG_DOM_WARN(_termpty_log_dom, __VA_ARGS__)
 #define INF(...)      EINA_LOG_DOM_INFO(_termpty_log_dom, __VA_ARGS__)
-#define DBG(...)      EINA_LOG_DOM_ERR(_termpty_log_dom, __VA_ARGS__)
+#define DBG(...)      EINA_LOG_DOM_DBG(_termpty_log_dom, __VA_ARGS__)
 
 #define ST 0x9c // String Terminator
 #define BEL 0x07 // Bell
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to