Skip to content

Commit 665b637

Browse files
committed
Merge branch 'develop'
2 parents 3112960 + efdae1f commit 665b637

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
# 2.0.1
9+
10+
### Added
11+
- Add `USE_DAY_FIRST` settings to allow users to swtich between day and month
12+
13+
### Fixed
14+
- `Ctrl+q` did not exit the app (closes https://github.com/kraanzu/dooit/issues/140)
15+
816

917
## 2.0.0
1018

PKGBUILD

+32
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,35 @@ package() {
2929
cd "$_pkgname"
3030
python -m installer --destdir="$pkgdir" dist/*.whl
3131
}
32+
33+
# Maintainer: Murli Tawari <[email protected]>
34+
35+
pkgname=dooit-git
36+
_pkgname=${pkgname%-git}
37+
pkgver=2.0.0
38+
pkgrel=1
39+
pkgdesc="A todo manager that you didn't ask for, but needed!"
40+
url="https://github.com/kraanzu/dooit"
41+
arch=('any')
42+
license=('MIT')
43+
depends=('python' 'python-pyperclip' 'python-pyaml' 'python-poetry' 'python2-dateutil' 'python-textual' 'python-appdirs-git' 'python-six')
44+
makedepends=('python-build' 'python-wheel' 'python-installer')
45+
source=("$_pkgname::git+$url.git")
46+
sha256sums=('SKIP')
47+
48+
pkgver() {
49+
cd $_pkgname
50+
git describe --long --tags --abbrev=7 --match='v[0-9]*' |
51+
sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
52+
}
53+
54+
build() {
55+
cd "$_pkgname"
56+
echo "$pkgdir"
57+
python -m build --wheel --no-isolation
58+
}
59+
60+
package() {
61+
cd "$_pkgname"
62+
python -m installer --destdir="$pkgdir" dist/*.whl
63+
}

0 commit comments

Comments
 (0)