Accepting request 763663 from home:jubalh

please add me as maintainer

OBS-URL: https://build.opensuse.org/request/show/763663
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/azote?expand=0&rev=1
This commit is contained in:
Ondřej Súkup 2020-01-13 08:43:02 +00:00 committed by Git OBS Bridge
commit e4221d5e0d
4 changed files with 110 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

3
azote-1.7.8.tar.gz Normal file
View File

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

23
azote.changes Normal file
View File

@ -0,0 +1,23 @@
-------------------------------------------------------------------
Sun Jan 12 14:56:29 UTC 2020 - Michael Vetter <mvetter@suse.com>
- Update to 1.7.8:
* styling clicked palette button with button#color-btn-selected
added (for colour-blind people like myself);
* colour picker: colour image converted into the Gtk.ColorButton
class, to allow the colour edition;
* added tracking the currently selected wallpapers folder for
file addition / deletion: switchable, configurable (every 5 sec by default);
* tray status icon added, i.a. to indicate the tracking on/off state;
* python-send2trash from now on recommended as an obligatory dependency.
- Remove azote-python-version.patch
-------------------------------------------------------------------
Mon Jul 1 14:42:17 UTC 2019 - mvetter@suse.com
- Add azote-python-version.patch: Use python3
-------------------------------------------------------------------
Mon Jul 1 14:17:18 UTC 2019 - mvetter@suse.com
- Package azote 1.1.1 for openSUSE

61
azote.spec Normal file
View File

@ -0,0 +1,61 @@
#
# spec file for package azote
#
# Copyright (c) 2019 SUSE LINUX 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 https://bugs.opensuse.org/
#
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Name: azote
Version: 1.7.8
Release: 0
Summary: Wallpaper manager for Sway, i3 and some other WMs
License: GPL-3.0-only
Group: Productivity/Graphics/Viewers
URL: https://github.com/nwg-piotr/azote
Source: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: python3-Pillow
BuildRequires: python3-gobject
BuildRequires: python3-setuptools
Requires: python3-Pillow
Requires: python3-gobject
Requires: python3-Send2Trash
Requires: python3-yaml
Requires: feh
Requires: wget
Requires: wmctrl
Requires: xrandr
BuildArch: noarch
%description
Azote is a GTK+ 3-based picture browser and a wallpaper setter, as the frontend to the swaybg (Sway/Wayland) and feh (X windows) commands.
%prep
%setup -q
%build
%python3_build
%install
%python3_install
install -D -m 0755 dist/azote %{buildroot}%{_bindir}/azote
install -D -m 0644 dist/azote.svg %{buildroot}%{_datadir}/azote/azote.svg
install -D -m 0644 dist/azote.desktop %{buildroot}%{_datadir}/applications/azote.desktop
%files
%license LICENSE
%doc CHANGELOG.md README.md
%{python_sitelib}/*
%changelog