- Change BuildRequires from lxqt-build-tools-devel to

cmake(lxqt-build-tools)

OBS-URL: https://build.opensuse.org/package/show/X11:LXQt/qlipper?expand=0&rev=12
This commit is contained in:
Shawn Dunn 2024-10-30 18:42:46 +00:00 committed by Git OBS Bridge
commit bd73c04395
5 changed files with 147 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

3
5.1.2.tar.gz Normal file
View File

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

47
qlipper.changes Normal file
View File

@ -0,0 +1,47 @@
-------------------------------------------------------------------
Wed Oct 30 18:42:19 UTC 2024 - Shawn Dunn <sfalken@opensuse.org>
- Change BuildRequires from lxqt-build-tools-devel to
cmake(lxqt-build-tools)
-------------------------------------------------------------------
Wed Feb 10 09:05:51 UTC 2021 - Wang Jun <jgwang@suse.com>
- Update to version 5.1.2
* Added clearing history confirmation
* Fixed FTBFS for clipboard sharing
* Translation improvements
-------------------------------------------------------------------
Thu Jan 31 10:46:28 UTC 2019 - Michael Vetter <mvetter@suse.com>
- BuildRequires: lxqt-build-tools-devel >= 0.5.0
- Clean up spec
-------------------------------------------------------------------
Wed Aug 8 17:03:18 UTC 2018 - jengelh@inai.de
- Remove redundancies from description.
-------------------------------------------------------------------
Mon May 21 08:37:50 UTC 2018 - mvetter@suse.com
- Require lxqt-build-tools-devel >= 0.4.0
-------------------------------------------------------------------
Sun May 20 10:25:59 UTC 2018 - mvetter@suse.com
- Update to 5.1.1:
* Support lxqt-session and add necessary xdg autostart desktop entry files.
* Allow only one instance of application
* Clean up dialoges
* Bug fixes
* Update translations
* systray: Don't display clipboard items in context menu
- Remove _service file
- Remove icon cache update
-------------------------------------------------------------------
Wed Jan 10 18:43:48 UTC 2018 - and.november@opensuse.org
- update to version 5.1.1

73
qlipper.spec Normal file
View File

@ -0,0 +1,73 @@
#
# spec file for package qlipper
#
# Copyright (c) 2021 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
Name: qlipper
Version: 5.1.2
Release: 0
Summary: Clipboard history applet
License: GPL-2.0-or-later
Group: Productivity/Text/Utilities
URL: https://github.com/pvanek/qlipper
Source: https://github.com/pvanek/qlipper/archive/%{version}.tar.gz
BuildRequires: cmake >= 3.1.0
BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme
BuildRequires: libQt5Gui-private-headers-devel
BuildRequires: pkgconfig
BuildRequires: cmake(lxqt-build-tools) >= 0.5.0
BuildRequires: cmake(Qt5LinguistTools)
BuildRequires: pkgconfig(Qt5Network)
BuildRequires: pkgconfig(Qt5Widgets)
%if 0%{?suse_version}
BuildRequires: update-desktop-files
%endif
%description
A clipboard history applet.
%lang_package
%prep
%setup -q
%build
%cmake \
-DENABLE_LXQT_AUTOSTART=ON
make %{?_smp_mflags}
%install
%cmake_install
%if 0%{?suse_version}
%suse_update_desktop_file -r -u %{name} Utility DesktopUtility
%endif
%find_lang %{name} --with-qt
%files
%license COPYING
%doc CHANGELOG README
%{_sysconfdir}/xdg/autostart/lxqt-%{name}-autostart.desktop
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
%files lang -f %{name}.lang
%dir %{_datadir}/%{name}
%dir %{_datadir}/%{name}/translations
%changelog