Accepting request 897265 from home:adra:branches:X11:Utilities
Update to 17.0.1, Updated build requirements OBS-URL: https://build.opensuse.org/request/show/897265 OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/tint2?expand=0&rev=35
This commit is contained in:
parent
f0251c0580
commit
5a848dd891
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:74962c1dd111be9955319a133a790b24fe5a8ef0315a1bcdabc58c1157c1fb26
|
||||
size 551197
|
3
tint2-v17.0.1.tar.bz2
Normal file
3
tint2-v17.0.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9d4d11708de71d7677330ad5e3938c38fc227c3fbe20a4d3dc57ec8f4e3ae98c
|
||||
size 405003
|
@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 3 18:04:13 UTC 2021 - Asterios Dramis <asterios.dramis@gmail.com>
|
||||
|
||||
- Update to 17.0.1:
|
||||
Fixes:
|
||||
* Crash on panel cleanup in single-monitor execp (issue #801)
|
||||
From 17.0:
|
||||
Fixes:
|
||||
* Crash when a window icon is large (issue #786) (santouits)
|
||||
* Minute clock doesn't update (issue #786)
|
||||
* Scrollbars in tint2conf (issue #796)
|
||||
* Preserve item order when skipping executors (issue #799)
|
||||
* Image memory leak (issues #704, #721) (Adam M. Trofa)
|
||||
* Incorrect timeout microsecond computation leading to high CPU
|
||||
usage (issue #800)
|
||||
Enhancements:
|
||||
* Port tint2conf to gtk3 (issue #380)
|
||||
* execp_monitor config (issue #799)
|
||||
* Improved executor examples (Nikita Zlobin)
|
||||
- Updated build requirements from GTK-2 to GTK-3.
|
||||
- Use pkgconfig() for most build requirements.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 23 05:50:13 UTC 2019 - gutaper@gmail.com
|
||||
|
||||
|
68
tint2.spec
68
tint2.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package tint2
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# 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
|
||||
@ -12,35 +12,37 @@
|
||||
# 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/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: tint2
|
||||
Version: 16.7
|
||||
Version: 17.0.1
|
||||
Release: 0
|
||||
Summary: A lightweight X11 desktop panel and task manager
|
||||
License: GPL-2.0-only
|
||||
Group: System/X11/Utilities
|
||||
Url: https://gitlab.com/o9000/tint2
|
||||
Source0: https://gitlab.com/o9000/%{name}/-/archive/v%{version}/%{name}-v%{version}.tar.gz
|
||||
URL: https://gitlab.com/o9000/tint2
|
||||
Source0: https://gitlab.com/o9000/%{name}/-/archive/v%{version}/%{name}-v%{version}.tar.bz2
|
||||
Source1: tint2conf.1.gz
|
||||
BuildRequires: cairo-devel
|
||||
BuildRequires: cmake
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gettext
|
||||
BuildRequires: gtk2-devel
|
||||
BuildRequires: hicolor-icon-theme
|
||||
BuildRequires: imlib2-devel
|
||||
BuildRequires: libXcomposite-devel
|
||||
BuildRequires: libXdamage-devel
|
||||
BuildRequires: libXinerama-devel
|
||||
BuildRequires: libXrandr-devel
|
||||
BuildRequires: libXrender-devel
|
||||
BuildRequires: librsvg2-devel
|
||||
BuildRequires: pango-devel
|
||||
BuildRequires: startup-notification-devel
|
||||
BuildRequires: pkgconfig(gtk+-x11-3.0)
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xcomposite)
|
||||
BuildRequires: pkgconfig(xdamage)
|
||||
BuildRequires: pkgconfig(xinerama)
|
||||
BuildRequires: pkgconfig(xext)
|
||||
BuildRequires: pkgconfig(xrender)
|
||||
BuildRequires: pkgconfig(xrandr)
|
||||
BuildRequires: pkgconfig(pangocairo)
|
||||
BuildRequires: pkgconfig(pango)
|
||||
BuildRequires: pkgconfig(cairo)
|
||||
BuildRequires: pkgconfig(imlib2)
|
||||
BuildRequires: pkgconfig(librsvg-2.0)
|
||||
BuildRequires: pkgconfig(libstartup-notification-1.0)
|
||||
Recommends: %{name}-lang
|
||||
|
||||
%description
|
||||
@ -53,15 +55,12 @@ specifically made for Openbox3 but should also work with other window managers.
|
||||
%setup -q -n %{name}-v%{version}
|
||||
|
||||
%build
|
||||
%cmake -DENABLE_EXAMPLES=ON -DDOCDIR=%{_docdir}/%{name}
|
||||
make %{?_smp_mflags}
|
||||
%cmake -DCMAKE_INSTALL_DOCDIR=%{_defaultdocdir}/%{name}
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
# put sample/ in %%doc
|
||||
rm -rf %{buildroot}%{_datadir}/tint2/*.tint2rc
|
||||
|
||||
# create tint2 config directory
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/skel/.config/tint2/
|
||||
|
||||
@ -81,36 +80,23 @@ install -m 0644 %{SOURCE1} %{buildroot}/%{_mandir}/man1/
|
||||
|
||||
%find_lang tint2conf
|
||||
|
||||
%if 0%{?suse_version} > 1130
|
||||
%post
|
||||
%desktop_database_post
|
||||
%icon_theme_cache_post
|
||||
|
||||
%postun
|
||||
%desktop_database_postun
|
||||
%icon_theme_cache_postun
|
||||
%endif
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING
|
||||
%license COPYING
|
||||
%doc AUTHORS CONTRIBUTING.md ChangeLog README.md
|
||||
%doc %{_defaultdocdir}/tint2/
|
||||
%{_bindir}/tint2
|
||||
%{_bindir}/tint2conf
|
||||
%config(noreplace) %{_sysconfdir}/xdg/tint2/tint2rc
|
||||
%dir %{_sysconfdir}/skel/.config/
|
||||
%{_sysconfdir}/skel/.config/tint2/
|
||||
%{_sysconfdir}/xdg/tint2
|
||||
%config(noreplace) %{_sysconfdir}/xdg/tint2/tint2rc
|
||||
%{_datadir}/tint2/
|
||||
%{_datadir}/applications/tint2conf.desktop
|
||||
%{_datadir}/applications/tint2.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/tint*
|
||||
%{_mandir}/man1/tint*
|
||||
%dir %{_datadir}/doc/tint2
|
||||
%dir %{_datadir}/doc/tint2/html
|
||||
%dir %{_datadir}/doc/tint2/html/images
|
||||
%{_datadir}/doc/tint2/*
|
||||
%{_mandir}/man1/tint*.1%{?ext_man}
|
||||
%{_datadir}/mime/packages/tint2conf.xml
|
||||
|
||||
%files lang -f tint2conf.lang
|
||||
%defattr(-,root,root)
|
||||
|
||||
%changelog
|
||||
|
Loading…
x
Reference in New Issue
Block a user