-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This update presents breaking changes to reduce additional python dependencies. Reading json is also much faster than reading yaml. Instructions of fixing the change are in the README.
- Loading branch information
1 parent
617840c
commit 957fe89
Showing
7 changed files
with
24 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
__pycache__/ | ||
.pytest_cache/ | ||
.vimspector.json | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
pkgbase = python-i3-grid | ||
pkgdesc = A grid overlay interface for i3. | ||
pkgver = 0.2.4b1 | ||
pkgdesc = A i3wm grid controller for floating window automation. | ||
pkgver = 0.2.3b3 | ||
pkgrel = 1 | ||
url = https://github.com/justahuman1/i3-grid | ||
arch = any | ||
license = GPL3 | ||
makedepends = python3 | ||
depends = python-i3-py | ||
source = https://files.pythonhosted.org/packages/eb/fa/d7cfd984d9484ea86b547cd663110497175b7a829a08d22d80b8454997f0/i3-grid-0.2.4b1.tar.gz | ||
md5sums = bbb6078e95e3a059421401f820b4cca9 | ||
source = https://files.pythonhosted.org/packages/49/29/f96b8a9ede685cd686e0fbd7f896479cbc97ade399c7afe570cd5bdf8a1c/i3-grid-0.2.3b3.tar.gz | ||
md5sums = 7fb45dbe8ee8ab495ff18c5158faec24 | ||
|
||
pkgname = python-i3-grid | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Maintainer: Sai Valla <[email protected]> | ||
|
||
pkgname=python-i3-grid | ||
pkgver=0.2.3b2 | ||
pkgver=0.2.3b3 | ||
pkgrel=1 | ||
epoch= | ||
pkgdesc='A i3wm grid controller for floating window automation.' | ||
|
@@ -13,16 +13,16 @@ depends=('python-i3-py') | |
makedepends=('python3' ) | ||
checkdepends=() | ||
conflicts=(${provides%=*}) # No quotes, to avoid an empty entry. | ||
source=('https://files.pythonhosted.org/packages/ac/2a/f38475c92a041093756f693fce47a7ed17ca46acda8f6f3785b66cdf0623/i3-grid-0.2.3b2.tar.gz') | ||
md5sums=('2d58b731d962ab2a885a7efabce7c65a') | ||
source=('https://files.pythonhosted.org/packages/49/29/f96b8a9ede685cd686e0fbd7f896479cbc97ade399c7afe570cd5bdf8a1c/i3-grid-0.2.3b3.tar.gz') | ||
md5sums=('7fb45dbe8ee8ab495ff18c5158faec24') | ||
|
||
build() { | ||
cd $srcdir/i3-grid-0.2.3b2 | ||
cd $srcdir/i3-grid-0.2.3b3 | ||
python setup.py build | ||
} | ||
|
||
package() { | ||
cd $srcdir/i3-grid-0.2.3b2 | ||
cd $srcdir/i3-grid-0.2.3b3 | ||
python setup.py install --root="$pkgdir" --optimize=1 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setuptools.setup( | ||
name="i3-grid", | ||
version="0.2.3b2", | ||
version="0.2.3b3", | ||
author="Sai Valla", | ||
author_email="[email protected]", | ||
description="A i3wm grid controller for floating window automation.", | ||
|