Accepting request 254017 from home:DarkSS

Zeal is a simple offline API documentation browser inspired by Dash (OS X app), available for Linux and Windows.
 * Quickly search documentation using Alt+Space (or customised) hotkey to display Zeal from any place in your workspace.
 * Search in multiple sets of documentation at once.
 * Don't be dependent on your internet connection.
 * Integrate Zeal with Emacs, Sublime Text, or Vim. See Usage » Editor plugins for details.

OBS-URL: https://build.opensuse.org/request/show/254017
OBS-URL: https://build.opensuse.org/package/show/devel:tools/zeal?expand=0&rev=1
This commit is contained in:
Stephan Kulow 2014-10-06 09:39:07 +00:00 committed by Git OBS Bridge
commit c184e0662b
5 changed files with 118 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

View File

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

10
zeal.changes Normal file
View File

@ -0,0 +1,10 @@
-------------------------------------------------------------------
Sun Oct 5 13:49:10 UTC 2014 - dap.darkness@gmail.com
- "I: Program returns random data in a function" were fixed.
-------------------------------------------------------------------
Thu Sep 25 15:49:33 UTC 2014 - dap.darkness@gmail.com
- Initial build.

81
zeal.spec Normal file
View File

@ -0,0 +1,81 @@
#
# spec file for package zeal
#
# Copyright (c) 2014 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: zeal
Summary: Offline API documentation browser
Version: 0.0+git.2014.10.03
Release: 0
License: GPL-3.0
URL: http://zealdocs.org
Group: Development/Tools/Other
Source0: zeal-%{version}.tar.gz
BuildRequires: fdupes
%if 0%{?suse_version} > 1310
BuildRequires: libQt5Gui-private-headers-devel
%else
BuildRequires: libqt5-qtbase-private-headers-devel
%endif
BuildRequires: update-desktop-files
BuildRequires: pkgconfig(Qt5Concurrent)
BuildRequires: pkgconfig(Qt5WebKitWidgets)
BuildRequires: pkgconfig(Qt5Xml)
%if 0%{?suse_version} > 1310
BuildRequires: pkgconfig(appindicator-0.1)
%endif
BuildRequires: pkgconfig(gtk+-2.0)
BuildRequires: pkgconfig(xcb-keysyms)
%description
Zeal is a simple offline API documentation browser inspired by Dash
(OS X app), available for Linux and Windows.
* Quickly search documentation using Alt+Space (or customised)
hotkey to display Zeal from any place in your workspace.
* Search in multiple sets of documentation at once.
* Don't be dependent on your internet connection.
* Integrate Zeal with Emacs, Sublime Text, or Vim. See Usage »
Editor plugins for details.
%prep
%setup -q -n %{name}-%{version}/%{name}
%build
qmake-qt5 \
%if 0%{?suse_version} <= 1310
"CONFIG+=no_libappindicator" \
%endif
QMAKE_STRIP="" \
QMAKE_CFLAGS+="%{optflags}" \
QMAKE_CXXFLAGS+="%{optflags}"
make V=1 %{?_smp_mflags}
%install
make V=1 INSTALL_ROOT=%{buildroot} install
%suse_update_desktop_file -r %{name} Office Viewer
%fdupes -s %{buildroot}%{_datadir}
%files
%defattr(-,root,root,-)
%doc ../COPYING ../README.md
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}*
%{_datadir}/pixmaps/%{name}
%changelog