SHA256
1
0
forked from pool/yakuake
OBS User unknown 2007-01-15 23:44:08 +00:00 committed by Git OBS Bridge
commit 8b21e0cc6c
7 changed files with 213 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

0
ready Normal file
View File

3
yakuake-2.7.5.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4e704ee9a3ef3e3c6fb9842983190db47c2dc94aebff606fe741971a0785b09b
size 442979

59
yakuake.changes Normal file
View File

@ -0,0 +1,59 @@
-------------------------------------------------------------------
Wed May 24 19:21:21 CEST 2006 - adrian@suse.de
- fix build for < 10.1
-------------------------------------------------------------------
Mon Mar 27 13:36:26 CEST 2006 - dkukawka@suse.de
- updated to new upstream version 2.7.5:
- Further translations have been added.
- Yakuake no longer spawns login shells in new sessions.
- A keyboard shortcut to rename the selected session has been
added.
- The default keyboard shortcuts and their names are now
consistent with Konsole.
- A bug that led to the tab bar not updating after a
slotSelectSession DCOP call was issued has been fixed.
- A bug that could lead to the slotRenameSession DCOP call
failing to set a session label after an older session had been
closed has been fixed.
- Upon attempting to set an all-whitespace session label, the
label will now fall back to its prior setting rather than a
default label.
- Yakuake will now display a warning before quitting the
application with multiple tabs open.
-------------------------------------------------------------------
Sun Mar 19 19:06:22 CET 2006 - dkukawka@suse.de
- updated to new upstream version 2.7.4 :
- A bug in the Makefiles that led to the configure script being
run twice has been fixed.
- The source code is now localizable. First translations are
included.
- A bug that could result in a crash on quit has been fixed.
- A bug that could prevent the first line in a new session from
being used up to the full width of the terminal has been fixed.
- The COLORTERM environment variable is now being set in new
sessions, triggering the color detection of Midnight Commander.
- The default session labels are now consistent with Konsole.
- Whitespace at the beginning or end of session labels will now
be trimmed.
- Setting all-whitespace session labels is no longer possible.
-------------------------------------------------------------------
Wed Feb 15 11:43:56 CET 2006 - stbinner@suse.de
- add GenericName to .desktop file
-------------------------------------------------------------------
Wed Jan 25 21:33:41 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Wed Jan 18 20:15:07 CET 2006 - dkukawka@suse.de
- initial package (v2.7.3)

15
yakuake.desktop Normal file
View File

@ -0,0 +1,15 @@
[Desktop Entry]
Encoding=UTF-8
Name=yakuake
Name[xx]=xxyakukakexx
Name[de]=YaKuake
GenericName=Console
Exec=yakuake
Icon=yakuake
Type=Application
Comment=A terminal for KDE
Comment[de]=Ein Termial für KDE
X-KDE-StartupNotify=true
X-DCOP-ServiceType=Multi
X-KDE-AuthorizeAction=shell_access
Categories=Qt;KDE;System;TerminalEmulator;

112
yakuake.spec Normal file
View File

@ -0,0 +1,112 @@
#
# spec file for package yakuake (Version 2.7.5)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: yakuake
BuildRequires: kdelibs3-devel
License: GPL
URL: http://kde-apps.org/content/show.php?content=29153
Group: System/GUI/KDE
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: yakuake is a terminal for KDE
Version: 2.7.5
Release: 8
Source: %{name}-%{version}.tar.bz2
Source1: yakuake.desktop
%description
Yakukake is a retractable KDE Terminal Emulator.
Authors:
--------
Francois Chazal <neptune3k@free.fr>
%prep
%setup -n %{name}-%{version} -q
. /etc/opt/kde3/common_options
update_admin
%build
. /etc/opt/kde3/common_options
./configure
make
%install
. /etc/opt/kde3/common_options
make DESTDIR=$RPM_BUILD_ROOT $INSTALL_TARGET
%if %suse_version < 1010
%suse_update_desktop_file %name System TerminalEmulator
%else
%suse_update_desktop_file -G "Terminal Program" %name System TerminalEmulator
%endif
%post
%{run_ldconfig}
%postun
%{run_ldconfig}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc README AUTHORS ChangeLog COPYING INSTALL
/opt/kde3/bin/*
/opt/kde3/share/apps/yakuake
/opt/kde3/share/icons/??color
/opt/kde3/share/applications/kde/yakuake.desktop
/opt/kde3/share/locale/*/LC_MESSAGES/*.mo
%changelog -n yakuake
* Wed May 24 2006 - adrian@suse.de
- fix build for < 10.1
* Mon Mar 27 2006 - dkukawka@suse.de
- updated to new upstream version 2.7.5:
- Further translations have been added.
- Yakuake no longer spawns login shells in new sessions.
- A keyboard shortcut to rename the selected session has been
added.
- The default keyboard shortcuts and their names are now
consistent with Konsole.
- A bug that led to the tab bar not updating after a
slotSelectSession DCOP call was issued has been fixed.
- A bug that could lead to the slotRenameSession DCOP call
failing to set a session label after an older session had been
closed has been fixed.
- Upon attempting to set an all-whitespace session label, the
label will now fall back to its prior setting rather than a
default label.
- Yakuake will now display a warning before quitting the
application with multiple tabs open.
* Sun Mar 19 2006 - dkukawka@suse.de
- updated to new upstream version 2.7.4 :
- A bug in the Makefiles that led to the configure script being
run twice has been fixed.
- The source code is now localizable. First translations are
included.
- A bug that could result in a crash on quit has been fixed.
- A bug that could prevent the first line in a new session from
being used up to the full width of the terminal has been fixed.
- The COLORTERM environment variable is now being set in new
sessions, triggering the color detection of Midnight Commander.
- The default session labels are now consistent with Konsole.
- Whitespace at the beginning or end of session labels will now
be trimmed.
- Setting all-whitespace session labels is no longer possible.
* Wed Feb 15 2006 - stbinner@suse.de
- add GenericName to .desktop file
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Wed Jan 18 2006 - dkukawka@suse.de
- initial package (v2.7.3)