Accepting request 260808 from X11:lxde

fixed license tag

OBS-URL: https://build.opensuse.org/request/show/260808
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lxqt-qtplugin?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2014-11-15 10:41:26 +00:00 committed by Git OBS Bridge
commit 5ae85b7b42
5 changed files with 141 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:0708c2a814c95777e93c8f23efc0bf1f0bdd193bae580627ced915a7b1b29b8d
size 16712

51
lxqt-qtplugin.changes Normal file
View File

@ -0,0 +1,51 @@
-------------------------------------------------------------------
Tue Nov 11 09:21:04 UTC 2014 - andrea@opensuse.org
- Fixed license tag
-------------------------------------------------------------------
Sat Oct 25 11:55:34 UTC 2014 - andrea@opensuse.org
- new upstream version 0.8.0
-------------------------------------------------------------------
Tue May 13 18:01:14 UTC 2014 - andrea@opensuse.org
- removed unused build requires
-------------------------------------------------------------------
Tue May 13 15:29:43 UTC 2014 - andrea@opensuse.org
- spec file clean up
-------------------------------------------------------------------
Mon May 12 16:23:28 UTC 2014 - sfalken@opensuse.org
- removed fedora spec, split into subproject
Del: lxqt-qtplugin-Fedora_20.spec
-------------------------------------------------------------------
Sat May 10 21:25:08 UTC 2014 - sfalken@opensuse.org
- ran spec-cleaner on openSUSE specfile
-------------------------------------------------------------------
Fri May 9 23:08:21 UTC 2014 - sfalken@opensuse.org
- Added specfile for Fedora_20
Add: lxqt-qtplugin-Fedora_20.spec
-------------------------------------------------------------------
Fri May 9 16:54:18 UTC 2014 - sfalken@opensuse.org
- Added tarball for new stable release
Add: lxqt-qtplugin-0.7.0.tar.xz
Del: _service
-------------------------------------------------------------------
Thu Apr 3 18:53:28 UTC 2014 - sfalken@opensuse.org
- Initial Source Upload
Add: _service
Add: lxqt-qtplugin.spec
Add: lxqt-qtplugin.changes

63
lxqt-qtplugin.spec Normal file
View File

@ -0,0 +1,63 @@
#
# spec file for package lxqt-qtplugin
#
# 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: lxqt-qtplugin
Version: 0.8.0
Release: 0
Summary: LxQt platform integration plugin for Qt 5
License: LGPL-2.1+
Group: System/GUI/LXDE-Qt
Url: http://www.lxde.org
Source: %{name}-%{version}.tar.xz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: pkgconfig(lxqt-qt5) >= 0.8.0
BuildRequires: pkgconfig(Qt5Gui)
BuildRequires: libQt5Gui-private-headers-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
With this plugin, all Qt-based programs can adopt settings of
LXQt, such as the icon theme.
To use the plugin in Qt 5, we have to export the environment
variable QT_QPA_PLATFORMTHEME=lxqt. Then every Qt5 program
can load the theme plugin.
If, for some unknown reasons, the plugin is not loaded, we can
debug the plugin by exporting QT_DEBUG_PLUGINS=1.
Then, Qt5 will print detailed information and error messages
about all plugins in the console when running any Qt5 programs.)
%prep
%setup -q
%build
%cmake -DUSE_QT5=ON
%__make %{?_smp_mflags}
%install
%cmake_install
%files
%defattr(-,root,root)
%doc AUTHORS COPYING README
%dir %{_libdir}/qt5/plugins
%dir %{_libdir}/qt5/plugins/platformthemes
%{_libdir}/qt5/plugins/platformthemes/libqtlxqt.so
%changelog