commit e4221d5e0da4d1e2d92fa9e2e58b3953024fc123cb560b4cce3815bbf9d97bdd Author: Ondřej Súkup Date: Mon Jan 13 08:43:02 2020 +0000 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/azote-1.7.8.tar.gz b/azote-1.7.8.tar.gz new file mode 100644 index 0000000..197662c --- /dev/null +++ b/azote-1.7.8.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46641578c1d9d10bbd149b135f15b0ee97f87d02af4f4273d1834cf3beb2d324 +size 610711 diff --git a/azote.changes b/azote.changes new file mode 100644 index 0000000..9be20e8 --- /dev/null +++ b/azote.changes @@ -0,0 +1,23 @@ +------------------------------------------------------------------- +Sun Jan 12 14:56:29 UTC 2020 - Michael Vetter + +- 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 diff --git a/azote.spec b/azote.spec new file mode 100644 index 0000000..e9a22c1 --- /dev/null +++ b/azote.spec @@ -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