From 90305c6f48eb2693a6da02cd69e48b4c1996368d Mon Sep 17 00:00:00 2001 From: Julien Nicoulaud Date: Sat, 9 Mar 2019 22:46:42 +0100 Subject: [PATCH 01/24] 0.14.4 --- .SRCINFO | 18 ++++++++++++++++++ .gitignore | 6 ++++++ PKGBUILD | 28 ++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..f7b6714 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = python-pystray + pkgdesc = Provides systray integration. + pkgver = 0.14.4 + pkgrel = 1 + url = https://github.com/moses-palmer/pystray + arch = any + license = GPL + makedepends = python + makedepends = python2 + makedepends = python-setuptools + makedepends = python2-setuptools + source = https://github.com/moses-palmer/pystray/archive/v0.14.4.tar.gz + sha512sums = 8c0da713ce5314137015d23c156de22054a44d4720be36a41ad1917bc694ffaed0b254b9473f67a26bf630e12d7fa71744410723927318280768efcfb752cd81 + +pkgname = python-pystray + +pkgname = python2-pystray + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8eab14e --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/pkg/ +/src/ +/*.tar.gz +/*.xz +/*.zst +/*.swp diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..994cbfb --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Julien Nicoulaud + +_pkgname=pystray +pkgbase="python-${_pkgname}" +pkgname=("python-${_pkgname}" "python2-${_pkgname}") +pkgver=0.14.4 +pkgrel=1 +arch=(any) +license=('GPL') +pkgdesc="Provides systray integration." +url="https://github.com/moses-palmer/pystray" +makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools') +source=("https://github.com/moses-palmer/${_pkgname}/archive/v${pkgver}.tar.gz") +sha512sums=('8c0da713ce5314137015d23c156de22054a44d4720be36a41ad1917bc694ffaed0b254b9473f67a26bf630e12d7fa71744410723927318280768efcfb752cd81') + +prepare() { + cp -a ${_pkgname}-${pkgver}{,-py2} +} + +package_python-pystray() { + cd ${_pkgname}-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +} + +package_python2-pystray() { + cd ${_pkgname}-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 +} From f44e787f5d1c4746be70e7cdc129025e574594f0 Mon Sep 17 00:00:00 2001 From: Julien Nicoulaud Date: Sun, 27 Oct 2019 18:53:57 +0100 Subject: [PATCH 02/24] add missing dependencies, separate build and package --- .SRCINFO | 8 ++++++++ PKGBUILD | 24 ++++++++++++++++++------ 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f7b6714..68e0693 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -9,10 +9,18 @@ pkgbase = python-pystray makedepends = python2 makedepends = python-setuptools makedepends = python2-setuptools + makedepends = python-sphinx + makedepends = python2-sphinx source = https://github.com/moses-palmer/pystray/archive/v0.14.4.tar.gz sha512sums = 8c0da713ce5314137015d23c156de22054a44d4720be36a41ad1917bc694ffaed0b254b9473f67a26bf630e12d7fa71744410723927318280768efcfb752cd81 pkgname = python-pystray + depends = python-pillow + depends = python-six + depends = python-xlib pkgname = python2-pystray + depends = python2-pillow + depends = python2-six + depends = python2-xlib diff --git a/PKGBUILD b/PKGBUILD index 994cbfb..f8de252 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,12 +4,12 @@ _pkgname=pystray pkgbase="python-${_pkgname}" pkgname=("python-${_pkgname}" "python2-${_pkgname}") pkgver=0.14.4 -pkgrel=1 +pkgrel=2 arch=(any) license=('GPL') pkgdesc="Provides systray integration." url="https://github.com/moses-palmer/pystray" -makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools') +makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 'python-sphinx' 'python2-sphinx') source=("https://github.com/moses-palmer/${_pkgname}/archive/v${pkgver}.tar.gz") sha512sums=('8c0da713ce5314137015d23c156de22054a44d4720be36a41ad1917bc694ffaed0b254b9473f67a26bf630e12d7fa71744410723927318280768efcfb752cd81') @@ -17,12 +17,24 @@ prepare() { cp -a ${_pkgname}-${pkgver}{,-py2} } +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + python setup.py build + + cd "${srcdir}/${_pkgname}-${pkgver}-py2" + python2 setup.py build +} + package_python-pystray() { - cd ${_pkgname}-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 + depends=('python-pillow' 'python-six' 'python-xlib') + + cd "${srcdir}/${_pkgname}-${pkgver}" + python setup.py install --root="$pkgdir" --optimize=1 --skip-build } package_python2-pystray() { - cd ${_pkgname}-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 + depends=('python2-pillow' 'python2-six' 'python2-xlib') + + cd "${srcdir}/${_pkgname}-${pkgver}-py2" + python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build } From da5a77603159c0807a469794af566008fa65eecf Mon Sep 17 00:00:00 2001 From: Julien Nicoulaud Date: Sun, 27 Oct 2019 18:54:46 +0100 Subject: [PATCH 03/24] udpate SRCINFO --- .SRCINFO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index 68e0693..96fa3cd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Provides systray integration. pkgver = 0.14.4 - pkgrel = 1 + pkgrel = 2 url = https://github.com/moses-palmer/pystray arch = any license = GPL From 44c85e59353251374fcb47c8e7472388e4a0dc10 Mon Sep 17 00:00:00 2001 From: Julien Nicoulaud Date: Tue, 31 Dec 2019 10:19:09 +0100 Subject: [PATCH 04/24] 0.15.0 --- .SRCINFO | 8 ++++---- PKGBUILD | 7 ++++--- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 96fa3cd..00b47be 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Provides systray integration. - pkgver = 0.14.4 - pkgrel = 2 + pkgver = 0.15.0 + pkgrel = 1 url = https://github.com/moses-palmer/pystray arch = any license = GPL @@ -11,8 +11,8 @@ pkgbase = python-pystray makedepends = python2-setuptools makedepends = python-sphinx makedepends = python2-sphinx - source = https://github.com/moses-palmer/pystray/archive/v0.14.4.tar.gz - sha512sums = 8c0da713ce5314137015d23c156de22054a44d4720be36a41ad1917bc694ffaed0b254b9473f67a26bf630e12d7fa71744410723927318280768efcfb752cd81 + source = https://github.com/moses-palmer/pystray/archive/v0.15.0.tar.gz + sha512sums = 889730ef8b7967f60538bf1354fb9864c9136d4c5700c2eab411164f1878938a0c2c2d0946c9df58892f3d3a27832316f5413a462741166b81f49f9d915dfc1f pkgname = python-pystray depends = python-pillow diff --git a/PKGBUILD b/PKGBUILD index f8de252..57a7e0b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,15 +3,15 @@ _pkgname=pystray pkgbase="python-${_pkgname}" pkgname=("python-${_pkgname}" "python2-${_pkgname}") -pkgver=0.14.4 -pkgrel=2 +pkgver=0.15.0 +pkgrel=1 arch=(any) license=('GPL') pkgdesc="Provides systray integration." url="https://github.com/moses-palmer/pystray" makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 'python-sphinx' 'python2-sphinx') source=("https://github.com/moses-palmer/${_pkgname}/archive/v${pkgver}.tar.gz") -sha512sums=('8c0da713ce5314137015d23c156de22054a44d4720be36a41ad1917bc694ffaed0b254b9473f67a26bf630e12d7fa71744410723927318280768efcfb752cd81') +sha512sums=('889730ef8b7967f60538bf1354fb9864c9136d4c5700c2eab411164f1878938a0c2c2d0946c9df58892f3d3a27832316f5413a462741166b81f49f9d915dfc1f') prepare() { cp -a ${_pkgname}-${pkgver}{,-py2} @@ -38,3 +38,4 @@ package_python2-pystray() { cd "${srcdir}/${_pkgname}-${pkgver}-py2" python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build } + From b2a960bf8a8ba71f6350af7fcc10dbfa3cb56e2f Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Sat, 15 Aug 2020 17:29:45 +0200 Subject: [PATCH 05/24] Update to 0.16.0 - Drop support for python2-pystray - Fix dependencies --- .SRCINFO | 27 ++++++++++----------------- PKGBUILD | 37 ++++++++++--------------------------- 2 files changed, 20 insertions(+), 44 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 00b47be..e0a5332 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,26 +1,19 @@ pkgbase = python-pystray pkgdesc = Provides systray integration. - pkgver = 0.15.0 + pkgver = 0.16.0 pkgrel = 1 url = https://github.com/moses-palmer/pystray arch = any - license = GPL - makedepends = python - makedepends = python2 + license = GPL3 + makedepends = python>=3.4 makedepends = python-setuptools - makedepends = python2-setuptools - makedepends = python-sphinx - makedepends = python2-sphinx - source = https://github.com/moses-palmer/pystray/archive/v0.15.0.tar.gz - sha512sums = 889730ef8b7967f60538bf1354fb9864c9136d4c5700c2eab411164f1878938a0c2c2d0946c9df58892f3d3a27832316f5413a462741166b81f49f9d915dfc1f + makedepends = python-pip + makedepends = python-wheel + depends = python-six + depends = python-pillow + depends = python-xlib>=0.17 + source = https://github.com/moses-palmer/pystray/archive/v0.16.0.tar.gz + sha512sums = 1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a pkgname = python-pystray - depends = python-pillow - depends = python-six - depends = python-xlib - -pkgname = python2-pystray - depends = python2-pillow - depends = python2-six - depends = python2-xlib diff --git a/PKGBUILD b/PKGBUILD index 57a7e0b..53fa9b5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,41 +1,24 @@ # Maintainer: Julien Nicoulaud -_pkgname=pystray -pkgbase="python-${_pkgname}" -pkgname=("python-${_pkgname}" "python2-${_pkgname}") -pkgver=0.15.0 +pkgname="python-pystray" +pkgver=0.16.0 pkgrel=1 arch=(any) -license=('GPL') +license=('GPL3') pkgdesc="Provides systray integration." url="https://github.com/moses-palmer/pystray" -makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 'python-sphinx' 'python2-sphinx') -source=("https://github.com/moses-palmer/${_pkgname}/archive/v${pkgver}.tar.gz") -sha512sums=('889730ef8b7967f60538bf1354fb9864c9136d4c5700c2eab411164f1878938a0c2c2d0946c9df58892f3d3a27832316f5413a462741166b81f49f9d915dfc1f') - -prepare() { - cp -a ${_pkgname}-${pkgver}{,-py2} -} +depends=('python-six' 'python-pillow' 'python-xlib>=0.17') +makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') +source=("https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") +sha512sums=('1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a') build() { - cd "${srcdir}/${_pkgname}-${pkgver}" + cd "pystray-$pkgver" python setup.py build - - cd "${srcdir}/${_pkgname}-${pkgver}-py2" - python2 setup.py build } package_python-pystray() { - depends=('python-pillow' 'python-six' 'python-xlib') - - cd "${srcdir}/${_pkgname}-${pkgver}" + cd "pystray-$pkgver" python setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } - -package_python2-pystray() { - depends=('python2-pillow' 'python2-six' 'python2-xlib') - - cd "${srcdir}/${_pkgname}-${pkgver}-py2" - python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build -} - From b61c396023eddb64618e39732eed9a5085965603 Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Sat, 15 Aug 2020 17:40:46 +0200 Subject: [PATCH 06/24] Remove .gitignore --- .gitignore | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 8eab14e..0000000 --- a/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/pkg/ -/src/ -/*.tar.gz -/*.xz -/*.zst -/*.swp From e60b3e37c798d39fe8da17bc95b10075c170909b Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Sat, 15 Aug 2020 17:44:06 +0200 Subject: [PATCH 07/24] Change pkgdescr --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e0a5332..6b1ad80 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = python-pystray - pkgdesc = Provides systray integration. + pkgdesc = Allows to create a system tray icon pkgver = 0.16.0 pkgrel = 1 url = https://github.com/moses-palmer/pystray diff --git a/PKGBUILD b/PKGBUILD index 53fa9b5..3310b68 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgver=0.16.0 pkgrel=1 arch=(any) license=('GPL3') -pkgdesc="Provides systray integration." +pkgdesc="Allows to create a system tray icon" url="https://github.com/moses-palmer/pystray" depends=('python-six' 'python-pillow' 'python-xlib>=0.17') makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') From 0634b527d9d01e966fa854e8efc121f8495687bc Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Sat, 15 Aug 2020 17:45:59 +0200 Subject: [PATCH 08/24] Change maintainer --- PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 3310b68..b3fb1d5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,5 @@ -# Maintainer: Julien Nicoulaud +# Maintainer: Franck STAUFFER +# Contributor: Julien Nicoulaud pkgname="python-pystray" pkgver=0.16.0 From d911c060314505a48230a1ea2ab0100305be8bf6 Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Mon, 17 Aug 2020 14:37:19 +0200 Subject: [PATCH 09/24] Use unique file name --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6b1ad80..d040db2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -12,7 +12,7 @@ pkgbase = python-pystray depends = python-six depends = python-pillow depends = python-xlib>=0.17 - source = https://github.com/moses-palmer/pystray/archive/v0.16.0.tar.gz + source = python-pystray-0.16.0.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.16.0.tar.gz sha512sums = 1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index b3fb1d5..91d96bc 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,7 +10,7 @@ pkgdesc="Allows to create a system tray icon" url="https://github.com/moses-palmer/pystray" depends=('python-six' 'python-pillow' 'python-xlib>=0.17') makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') -source=("https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") +source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") sha512sums=('1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a') build() { From dcf76014bd806b31798bd1dbfceb383a7b60765b Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Tue, 18 Aug 2020 13:45:29 +0200 Subject: [PATCH 10/24] Fix missing dependency --- .SRCINFO | 3 ++- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d040db2..e6da85f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon pkgver = 0.16.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/moses-palmer/pystray arch = any license = GPL3 @@ -12,6 +12,7 @@ pkgbase = python-pystray depends = python-six depends = python-pillow depends = python-xlib>=0.17 + depends = libappindicator-gtk3 source = python-pystray-0.16.0.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.16.0.tar.gz sha512sums = 1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a diff --git a/PKGBUILD b/PKGBUILD index 91d96bc..6a45dcf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,12 +3,12 @@ pkgname="python-pystray" pkgver=0.16.0 -pkgrel=1 +pkgrel=2 arch=(any) license=('GPL3') pkgdesc="Allows to create a system tray icon" url="https://github.com/moses-palmer/pystray" -depends=('python-six' 'python-pillow' 'python-xlib>=0.17') +depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3') makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") sha512sums=('1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a') From 3b56bca689ecc61a0eb697a9aa464b1042d542e8 Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Thu, 10 Sep 2020 14:44:08 +0200 Subject: [PATCH 11/24] Update to 0.17.1 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e6da85f..5851e3e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.16.0 - pkgrel = 2 + pkgver = 0.17.1 + pkgrel = 1 url = https://github.com/moses-palmer/pystray arch = any license = GPL3 @@ -13,8 +13,8 @@ pkgbase = python-pystray depends = python-pillow depends = python-xlib>=0.17 depends = libappindicator-gtk3 - source = python-pystray-0.16.0.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.16.0.tar.gz - sha512sums = 1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a + source = python-pystray-0.17.1.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.1.tar.gz + sha512sums = ca56fe3ea0588fcd1d3829e18344b856e9031d4531bafa66349056f858fb94a112579b9114d7fa9406dc9f9424ae298bee9825cba1af7014a173c63d0590c8e1 pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index 6a45dcf..404910a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.16.0 -pkgrel=2 +pkgver=0.17.1 +pkgrel=1 arch=(any) license=('GPL3') pkgdesc="Allows to create a system tray icon" @@ -11,7 +11,7 @@ url="https://github.com/moses-palmer/pystray" depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3') makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -sha512sums=('1571a91851cb9ff85cc7497162db687d3cef3ff6c863d1f8ede4ca1275de1f0a1dcf09a313a744f39f5666765c507c0dccf5f75320e5c7bd6dd4074ef2e5b83a') +sha512sums=('ca56fe3ea0588fcd1d3829e18344b856e9031d4531bafa66349056f858fb94a112579b9114d7fa9406dc9f9424ae298bee9825cba1af7014a173c63d0590c8e1') build() { cd "pystray-$pkgver" From 6c4daedf949d586c468aba966359c1cd6b848bcb Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Thu, 10 Sep 2020 14:46:39 +0200 Subject: [PATCH 12/24] Add changelog --- .SRCINFO | 1 + PKGBUILD | 1 + python-pystray.changelog | 162 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 164 insertions(+) create mode 100644 python-pystray.changelog diff --git a/.SRCINFO b/.SRCINFO index 5851e3e..74e5700 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -3,6 +3,7 @@ pkgbase = python-pystray pkgver = 0.17.1 pkgrel = 1 url = https://github.com/moses-palmer/pystray + changelog = python-pystray.changelog arch = any license = GPL3 makedepends = python>=3.4 diff --git a/PKGBUILD b/PKGBUILD index 404910a..216e51a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,6 +10,7 @@ pkgdesc="Allows to create a system tray icon" url="https://github.com/moses-palmer/pystray" depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3') makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') +changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") sha512sums=('ca56fe3ea0588fcd1d3829e18344b856e9031d4531bafa66349056f858fb94a112579b9114d7fa9406dc9f9424ae298bee9825cba1af7014a173c63d0590c8e1') diff --git a/python-pystray.changelog b/python-pystray.changelog new file mode 100644 index 0000000..7bf87ba --- /dev/null +++ b/python-pystray.changelog @@ -0,0 +1,162 @@ +Release Notes +============= + +v0.17.1 - Corrected release notes +--------------------------------- +* Corrected attribution of *Windows* notification fix. + + +v0.17.0 - Various bug fixes +--------------------------- +* Corrected signalling in *GTK* backend. Thanks to *Simon Lindholm*! +* Corrected hinding of notification message in *GTK backend*. Thanks to *Simon + Lindholm*! +* Corrected notification structure on *Windows*. Thanks to *flameiguana*! + + +v0.16.0 - Enable notifications +------------------------------ +* Added support for notifications. Thanks to *ralphwetzel* and *Chr0nicT*! +* Added support for forcing the backend to use. + + +v0.15.0 - Allow methods as menu callbacks +----------------------------------------- +* Allow passing a method as menu callback. +* Ensure that the temporary file is removed when running under *AppIndicator*. + Thanks to *superjamie*! + + +v0.14.4 - Allow setting icon after construction +----------------------------------------------- +* Do not require setting ``icon`` twice when not passing the icon to the + constructor. +* Clarified documentation regarding name of menu argument. + + +v0.14.3 - Full license coverage +------------------------------- +* Added license preamble to all source files. Thanks to *Björn Esser*! + + +v0.14.2 - Proper license files +------------------------------ +* Added proper license files. Thanks to *Björn Esser*! + + +v0.14.1 - Restore icon after *explorer.exe* crash +------------------------------------------------- +* Restore the icon when *explorer exe* restarts after a crash. Thanks to + *Michael Dubner*! + + +v0.14 - Disabled menu items +--------------------------- +* Added support for disabling menu items. + + +v0.13 - Corrections for X +------------------------- +* Make sure to set window size hints on *X*. Thanks to *filonenko-mikhail*! + + +v0.12 - Simplified API +---------------------- +* Do not require use of ``setup`` to show icon. +* Pass reference to menu item to action handler. If action handlers do not + support this argument, they will be wrapped. +* Updated documentation. + + +v0.11 - Radio buttons +--------------------- +* Added support for radio buttons. +* Corrected transparent icons for *OSX*. + + +v0.10 - Changed Xlib backend library +------------------------------------ +* Changed *Xlib* library. +* Corrected test with incorrect parameter. + + +v0.9 - Submenus +--------------- +* Added support for nested menus. + + +v0.8 - Platform independent API and checkable +--------------------------------------------- +* Added method to explicitly update menu to enable support for other platforms. +* Added support for *AppIndicator* backend. +* Re-added native clickability for *OSX*. +* Added support for check boxes. + + +v0.7 - Dynamic menus +-------------------- +* Added support for dynamically generating menu item properties when a popup + menu is displayed. +* Display the default menu item distinctly. +* Changed the menu item API slightly. +* Corrected logging on Windows. + + +v0.6 - Simplified API +--------------------- +* Removed explicit default action parameter ``on_activate``. +* Allow terminating the application with *ctrl+c* on *OSX*. +* Added basic logging. + + +v0.5 - Menu support +------------------- +* Added support for popup menus. +* Corrected bug which prevented stopping the icon on *Windows*. +* Corrected documentation. + + +v0.4 - GTK+ 3 support +--------------------- +* Added support for *GTK+* on *Linux*. + + +v0.3.5 - Corrected import errors +-------------------------------- +* Propagate import errors raised on Linux to help troubleshoot missing + ``Xlib`` module. Thanks to Lance Kindle! +* Properly declare ``six`` as a dependency. +* Declare ``python3-xlib`` as dependency on *Linux* for *Python 3*. + + +v0.3.4 - Corrected Python 3 issues on Xorg +------------------------------------------ +* Make sure that ``pystray`` can be used on *Python 3* on *Xorg*. +* Make sure the release making script runs on *Python 3*. + + +v0.3.3 - Corrected encoding issues +---------------------------------- +* Make sure building works even when default encoding is not *utf-8*. +* Corrected issue with click selector on *OSX*. + + +v0.3.2 - Universal wheel +------------------------ +* Make sure to build a universal wheel for all python versions. + + +v0.3.1 - No-change packaging update +----------------------------------- +* Do not package an old version of ``pynput``. + + +v0.3 - Proper Python 3 Support +------------------------------ +* Corrected Python 3 bugs. +* Made ``Icon.run()`` mandatory on all platforms. + + +v0.2 - Initial Release +---------------------- +* Support for adding a system tray icon on *Linux*, *Mac OSX* and *Windows*. From 332e8e9dafbb06d7db5950f0b513ba74edf6b2d5 Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Thu, 5 Nov 2020 10:04:15 +0100 Subject: [PATCH 13/24] Remove useless license --- .SRCINFO | 2 +- PKGBUILD | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 74e5700..c89d33a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon pkgver = 0.17.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog arch = any diff --git a/PKGBUILD b/PKGBUILD index 216e51a..86df2ba 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,8 +3,8 @@ pkgname="python-pystray" pkgver=0.17.1 -pkgrel=1 -arch=(any) +pkgrel=2 +arch=('any') license=('GPL3') pkgdesc="Allows to create a system tray icon" url="https://github.com/moses-palmer/pystray" @@ -22,5 +22,4 @@ build() { package_python-pystray() { cd "pystray-$pkgver" python setup.py install --root="$pkgdir" --optimize=1 --skip-build - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } From 9953f5b0e2261088f16481ed23487ab1af068d74 Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Sun, 13 Dec 2020 10:42:56 +0100 Subject: [PATCH 14/24] Update to 0.17.2 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- python-pystray.changelog | 7 +++++++ 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c89d33a..93b521b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.17.1 - pkgrel = 2 + pkgver = 0.17.2 + pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog arch = any @@ -14,8 +14,8 @@ pkgbase = python-pystray depends = python-pillow depends = python-xlib>=0.17 depends = libappindicator-gtk3 - source = python-pystray-0.17.1.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.1.tar.gz - sha512sums = ca56fe3ea0588fcd1d3829e18344b856e9031d4531bafa66349056f858fb94a112579b9114d7fa9406dc9f9424ae298bee9825cba1af7014a173c63d0590c8e1 + source = python-pystray-0.17.2.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.2.tar.gz + sha512sums = d9e7f8896e177ecab9998fce8ec23a8a030525d114f7f546471c0995bbea23b698870ae084d56ad091a46e0b14047a68aa7f5dd0f2edf1a2479704408ecc6435 pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index 86df2ba..b5088ad 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.17.1 -pkgrel=2 +pkgver=0.17.2 +pkgrel=1 arch=('any') license=('GPL3') pkgdesc="Allows to create a system tray icon" @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -sha512sums=('ca56fe3ea0588fcd1d3829e18344b856e9031d4531bafa66349056f858fb94a112579b9114d7fa9406dc9f9424ae298bee9825cba1af7014a173c63d0590c8e1') +sha512sums=('d9e7f8896e177ecab9998fce8ec23a8a030525d114f7f546471c0995bbea23b698870ae084d56ad091a46e0b14047a68aa7f5dd0f2edf1a2479704408ecc6435') build() { cd "pystray-$pkgver" diff --git a/python-pystray.changelog b/python-pystray.changelog index 7bf87ba..eedde23 100644 --- a/python-pystray.changelog +++ b/python-pystray.changelog @@ -1,6 +1,13 @@ Release Notes ============= +v0.17.2 - Windows bug fixes +--------------------------- +* Actually release loaded icons on *Windows*. Thanks to *Bob1011941*! +* Let mouse button release trigger menu and action on *Windows* as expected. + Thanks to *Ennea*! + + v0.17.1 - Corrected release notes --------------------------------- * Corrected attribution of *Windows* notification fix. From efb5551a921270ec77267b6e5861683347590b72 Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Fri, 8 Jan 2021 13:59:13 +0100 Subject: [PATCH 15/24] Add python-gobject as dependency --- .SRCINFO | 3 ++- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 93b521b..422439c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon pkgver = 0.17.2 - pkgrel = 1 + pkgrel = 2 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog arch = any @@ -14,6 +14,7 @@ pkgbase = python-pystray depends = python-pillow depends = python-xlib>=0.17 depends = libappindicator-gtk3 + depends = python-gobject source = python-pystray-0.17.2.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.2.tar.gz sha512sums = d9e7f8896e177ecab9998fce8ec23a8a030525d114f7f546471c0995bbea23b698870ae084d56ad091a46e0b14047a68aa7f5dd0f2edf1a2479704408ecc6435 diff --git a/PKGBUILD b/PKGBUILD index b5088ad..8b352fe 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,12 +3,12 @@ pkgname="python-pystray" pkgver=0.17.2 -pkgrel=1 +pkgrel=2 arch=('any') license=('GPL3') pkgdesc="Allows to create a system tray icon" url="https://github.com/moses-palmer/pystray" -depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3') +depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' 'python-gobject') makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") From 8863a7ff24a5c1747a85edee00072ab51635276f Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Sat, 10 Apr 2021 10:25:35 +0200 Subject: [PATCH 16/24] Update to 0.17.3 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- python-pystray.changelog | 8 ++++++++ 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 422439c..f4ff5c0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.17.2 - pkgrel = 2 + pkgver = 0.17.3 + pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog arch = any @@ -15,8 +15,8 @@ pkgbase = python-pystray depends = python-xlib>=0.17 depends = libappindicator-gtk3 depends = python-gobject - source = python-pystray-0.17.2.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.2.tar.gz - sha512sums = d9e7f8896e177ecab9998fce8ec23a8a030525d114f7f546471c0995bbea23b698870ae084d56ad091a46e0b14047a68aa7f5dd0f2edf1a2479704408ecc6435 + source = python-pystray-0.17.3.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.3.tar.gz + sha512sums = 01f09e20aa9fff689932c332369ad3ecad2887215c5ccf2ff75881b29cdae41a3a811267879bfc2c6c0dc4c3220b4c263382341bebc6504dd2047486fca71260 pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index 8b352fe..3003fe4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.17.2 -pkgrel=2 +pkgver=0.17.3 +pkgrel=1 arch=('any') license=('GPL3') pkgdesc="Allows to create a system tray icon" @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -sha512sums=('d9e7f8896e177ecab9998fce8ec23a8a030525d114f7f546471c0995bbea23b698870ae084d56ad091a46e0b14047a68aa7f5dd0f2edf1a2479704408ecc6435') +sha512sums=('01f09e20aa9fff689932c332369ad3ecad2887215c5ccf2ff75881b29cdae41a3a811267879bfc2c6c0dc4c3220b4c263382341bebc6504dd2047486fca71260') build() { cd "pystray-$pkgver" diff --git a/python-pystray.changelog b/python-pystray.changelog index eedde23..6c4ffb4 100644 --- a/python-pystray.changelog +++ b/python-pystray.changelog @@ -1,6 +1,14 @@ Release Notes ============= +v0.17.3 - macOS and AppIndicator bug fixes +------------------------------------------ +* Let the default timeout for notifications when using the *AppIndicator* + backend be decided by the desktop environment, not infinity. Thanks to + *Angelo Naselli*! +* Do not attempt to create a menu before the icon has started on *macOS*. + + v0.17.2 - Windows bug fixes --------------------------- * Actually release loaded icons on *Windows*. Thanks to *Bob1011941*! From 27baffcbf5648729497f626815b6e0f64d6d35a8 Mon Sep 17 00:00:00 2001 From: Qontinuum Date: Fri, 4 Jun 2021 12:20:58 +0200 Subject: [PATCH 17/24] Change maintainer --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 3003fe4..09b2a2c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Franck STAUFFER +# Maintainer: Qontinuum # Contributor: Julien Nicoulaud pkgname="python-pystray" From eb9baa304c2e68de3a0346385d3ba4028c69b856 Mon Sep 17 00:00:00 2001 From: qontinuum Date: Thu, 8 Jul 2021 11:30:36 +0200 Subject: [PATCH 18/24] Update to 0.17.4 --- .SRCINFO | 7 +++---- PKGBUILD | 4 ++-- python-pystray.changelog | 6 ++++++ 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f4ff5c0..41631cc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.17.3 + pkgver = 0.17.4 pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog @@ -15,8 +15,7 @@ pkgbase = python-pystray depends = python-xlib>=0.17 depends = libappindicator-gtk3 depends = python-gobject - source = python-pystray-0.17.3.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.3.tar.gz - sha512sums = 01f09e20aa9fff689932c332369ad3ecad2887215c5ccf2ff75881b29cdae41a3a811267879bfc2c6c0dc4c3220b4c263382341bebc6504dd2047486fca71260 + source = python-pystray-0.17.4.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.4.tar.gz + b2sums = 2be8d038afb35c0ecc6a0879a41bf898ef8ecf1f5e6d8e9c6d23a157714b866ec7a19d2e5205e95d5c16d0f401e360fb3fa4cdef1f4ed7779436be3e1a4fd37f pkgname = python-pystray - diff --git a/PKGBUILD b/PKGBUILD index 09b2a2c..c6568b5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.17.3 +pkgver=0.17.4 pkgrel=1 arch=('any') license=('GPL3') @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -sha512sums=('01f09e20aa9fff689932c332369ad3ecad2887215c5ccf2ff75881b29cdae41a3a811267879bfc2c6c0dc4c3220b4c263382341bebc6504dd2047486fca71260') +b2sums=('2be8d038afb35c0ecc6a0879a41bf898ef8ecf1f5e6d8e9c6d23a157714b866ec7a19d2e5205e95d5c16d0f401e360fb3fa4cdef1f4ed7779436be3e1a4fd37f') build() { cd "pystray-$pkgver" diff --git a/python-pystray.changelog b/python-pystray.changelog index 6c4ffb4..22d4a2c 100644 --- a/python-pystray.changelog +++ b/python-pystray.changelog @@ -1,6 +1,12 @@ Release Notes ============= +v0.17.4 - Corrected import on Windows +------------------------------------- +* Corrected imports from _WinDLL_ to ensure argument definitions are private + to this library. Thanks to *TomsonBoylett*! + + v0.17.3 - macOS and AppIndicator bug fixes ------------------------------------------ * Let the default timeout for notifications when using the *AppIndicator* From 6903af6a92d860d702d63f80493592c0c1513d3b Mon Sep 17 00:00:00 2001 From: qontinuum Date: Mon, 25 Oct 2021 12:40:16 +0200 Subject: [PATCH 19/24] Update to 0.18.0 --- PKGBUILD | 4 ++-- python-pystray.changelog | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index c6568b5..6eaeddb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.17.4 +pkgver=0.18.0 pkgrel=1 arch=('any') license=('GPL3') @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -b2sums=('2be8d038afb35c0ecc6a0879a41bf898ef8ecf1f5e6d8e9c6d23a157714b866ec7a19d2e5205e95d5c16d0f401e360fb3fa4cdef1f4ed7779436be3e1a4fd37f') +b2sums=('9b3faed02f6d712a1d714f7145f18ab35eb8ac2ba9075f164bb554a9a725b220e1b421d62db6c5a188126d0328b792629c355b890be64ad6e67c2030d3a7da42') build() { cd "pystray-$pkgver" diff --git a/python-pystray.changelog b/python-pystray.changelog index 22d4a2c..c3df90c 100644 --- a/python-pystray.changelog +++ b/python-pystray.changelog @@ -1,6 +1,15 @@ Release Notes ============= +v0.18.0 - Easier integration with other libraries +------------------------------------------------- +* Added a detached run mode to enable integration with libraries with a run + loop. Thanks to *PySimpleGUI* and *glight2000* for their testing efforts! +* Do not crash when running the icon in a non-main thread when using a *GTK+* + backend. +* Updated documentation. + + v0.17.4 - Corrected import on Windows ------------------------------------- * Corrected imports from _WinDLL_ to ensure argument definitions are private From 59a5a49b8801bb8ba763967befb13898f65bbab5 Mon Sep 17 00:00:00 2001 From: qontinuum Date: Mon, 25 Oct 2021 12:41:10 +0200 Subject: [PATCH 20/24] Fix .SRCINFO --- .SRCINFO | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 41631cc..3496190 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.17.4 + pkgver = 0.18.0 pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog @@ -15,7 +15,7 @@ pkgbase = python-pystray depends = python-xlib>=0.17 depends = libappindicator-gtk3 depends = python-gobject - source = python-pystray-0.17.4.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.17.4.tar.gz - b2sums = 2be8d038afb35c0ecc6a0879a41bf898ef8ecf1f5e6d8e9c6d23a157714b866ec7a19d2e5205e95d5c16d0f401e360fb3fa4cdef1f4ed7779436be3e1a4fd37f + source = python-pystray-0.18.0.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.18.0.tar.gz + b2sums = 9b3faed02f6d712a1d714f7145f18ab35eb8ac2ba9075f164bb554a9a725b220e1b421d62db6c5a188126d0328b792629c355b890be64ad6e67c2030d3a7da42 pkgname = python-pystray From 963b5831ed2e315b3bd69baad73ec5c8fcaf6257 Mon Sep 17 00:00:00 2001 From: Echizen Ryoma Date: Thu, 9 Dec 2021 08:18:48 +0800 Subject: [PATCH 21/24] Bump version to 0.19.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3496190..cb90d44 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.18.0 + pkgver = 0.19.1 pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog @@ -15,7 +15,7 @@ pkgbase = python-pystray depends = python-xlib>=0.17 depends = libappindicator-gtk3 depends = python-gobject - source = python-pystray-0.18.0.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.18.0.tar.gz - b2sums = 9b3faed02f6d712a1d714f7145f18ab35eb8ac2ba9075f164bb554a9a725b220e1b421d62db6c5a188126d0328b792629c355b890be64ad6e67c2030d3a7da42 + source = python-pystray-0.19.1.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.19.1.tar.gz + b2sums = 396f18262ee9615579a5e0ab9e91acfc45cf4482be5076f286b79de069141c4662abe470e312e571ee93b0698ef0d30a76e1df549a9e2a29936f9d811963bfed pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index 6eaeddb..fc0c515 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.18.0 +pkgver=0.19.1 pkgrel=1 arch=('any') license=('GPL3') @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -b2sums=('9b3faed02f6d712a1d714f7145f18ab35eb8ac2ba9075f164bb554a9a725b220e1b421d62db6c5a188126d0328b792629c355b890be64ad6e67c2030d3a7da42') +b2sums=('396f18262ee9615579a5e0ab9e91acfc45cf4482be5076f286b79de069141c4662abe470e312e571ee93b0698ef0d30a76e1df549a9e2a29936f9d811963bfed') build() { cd "pystray-$pkgver" From 419feea0cbf86b7fdeb5a55207fac241aa35c99e Mon Sep 17 00:00:00 2001 From: Echizen Ryoma Date: Mon, 28 Feb 2022 08:24:46 +0800 Subject: [PATCH 22/24] Bump version to 0.19.2 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cb90d44..aaa1c23 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.19.1 + pkgver = 0.19.2 pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog @@ -15,7 +15,7 @@ pkgbase = python-pystray depends = python-xlib>=0.17 depends = libappindicator-gtk3 depends = python-gobject - source = python-pystray-0.19.1.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.19.1.tar.gz - b2sums = 396f18262ee9615579a5e0ab9e91acfc45cf4482be5076f286b79de069141c4662abe470e312e571ee93b0698ef0d30a76e1df549a9e2a29936f9d811963bfed + source = python-pystray-0.19.2.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.19.2.tar.gz + b2sums = 5ce792314499467cb6d4e1013dc29677f13b3dc679da70df6aba026e7202c4c86d31422132521c0764224a048f7a150f014060b36a42ccdf2e94a87f457f00f9 pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index fc0c515..68ea28f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.19.1 +pkgver=0.19.2 pkgrel=1 arch=('any') license=('GPL3') @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -b2sums=('396f18262ee9615579a5e0ab9e91acfc45cf4482be5076f286b79de069141c4662abe470e312e571ee93b0698ef0d30a76e1df549a9e2a29936f9d811963bfed') +b2sums=('5ce792314499467cb6d4e1013dc29677f13b3dc679da70df6aba026e7202c4c86d31422132521c0764224a048f7a150f014060b36a42ccdf2e94a87f457f00f9') build() { cd "pystray-$pkgver" From d089f1c84e68f92f0a67f6f9ad556a34b2cb7aa4 Mon Sep 17 00:00:00 2001 From: Echizen Ryoma Date: Fri, 8 Apr 2022 21:16:38 +0800 Subject: [PATCH 23/24] Bump version to 0.19.3 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index aaa1c23..4173413 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.19.2 + pkgver = 0.19.3 pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog @@ -15,7 +15,7 @@ pkgbase = python-pystray depends = python-xlib>=0.17 depends = libappindicator-gtk3 depends = python-gobject - source = python-pystray-0.19.2.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.19.2.tar.gz - b2sums = 5ce792314499467cb6d4e1013dc29677f13b3dc679da70df6aba026e7202c4c86d31422132521c0764224a048f7a150f014060b36a42ccdf2e94a87f457f00f9 + source = python-pystray-0.19.3.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.19.3.tar.gz + b2sums = 4fa1488efd9e0c65d4c4b9d45ad5dfb265a3dec084259064453f8018555c536e8df609c371a22e2c92ea25ab608f79760af3ec99d0f3f07840225d465a1b1172 pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index 68ea28f..008bc43 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.19.2 +pkgver=0.19.3 pkgrel=1 arch=('any') license=('GPL3') @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -b2sums=('5ce792314499467cb6d4e1013dc29677f13b3dc679da70df6aba026e7202c4c86d31422132521c0764224a048f7a150f014060b36a42ccdf2e94a87f457f00f9') +b2sums=('4fa1488efd9e0c65d4c4b9d45ad5dfb265a3dec084259064453f8018555c536e8df609c371a22e2c92ea25ab608f79760af3ec99d0f3f07840225d465a1b1172') build() { cd "pystray-$pkgver" From ece14be2200b8bde0a70883c13dc37211919a4eb Mon Sep 17 00:00:00 2001 From: Echizen Ryoma Date: Fri, 19 Aug 2022 08:23:57 +0800 Subject: [PATCH 24/24] Bump version to 0.19.4 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4173413..8d143c4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-pystray pkgdesc = Allows to create a system tray icon - pkgver = 0.19.3 + pkgver = 0.19.4 pkgrel = 1 url = https://github.com/moses-palmer/pystray changelog = python-pystray.changelog @@ -15,7 +15,7 @@ pkgbase = python-pystray depends = python-xlib>=0.17 depends = libappindicator-gtk3 depends = python-gobject - source = python-pystray-0.19.3.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.19.3.tar.gz - b2sums = 4fa1488efd9e0c65d4c4b9d45ad5dfb265a3dec084259064453f8018555c536e8df609c371a22e2c92ea25ab608f79760af3ec99d0f3f07840225d465a1b1172 + source = python-pystray-0.19.4.tar.gz::https://github.com/moses-palmer/pystray/archive/v0.19.4.tar.gz + b2sums = 325bedd97a11e04f87a41f5fc206ed2a97c4693dc9d5ef52e12fdb72761d53af3a43a324e5d45db72d697e6f06e9a0c60b585b4935c4202d60f4e8e299df354a pkgname = python-pystray diff --git a/PKGBUILD b/PKGBUILD index 008bc43..378b23b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Julien Nicoulaud pkgname="python-pystray" -pkgver=0.19.3 +pkgver=0.19.4 pkgrel=1 arch=('any') license=('GPL3') @@ -12,7 +12,7 @@ depends=('python-six' 'python-pillow' 'python-xlib>=0.17' 'libappindicator-gtk3' makedepends=('python>=3.4' 'python-setuptools' 'python-pip' 'python-wheel') changelog="$pkgname.changelog" source=("$pkgname-$pkgver.tar.gz::https://github.com/moses-palmer/pystray/archive/v${pkgver}.tar.gz") -b2sums=('4fa1488efd9e0c65d4c4b9d45ad5dfb265a3dec084259064453f8018555c536e8df609c371a22e2c92ea25ab608f79760af3ec99d0f3f07840225d465a1b1172') +b2sums=('325bedd97a11e04f87a41f5fc206ed2a97c4693dc9d5ef52e12fdb72761d53af3a43a324e5d45db72d697e6f06e9a0c60b585b4935c4202d60f4e8e299df354a') build() { cd "pystray-$pkgver"