Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Sep 14, 2023
2 parents 3112960 + efdae1f commit 665b637
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# 2.0.1

### Added
- Add `USE_DAY_FIRST` settings to allow users to swtich between day and month

### Fixed
- `Ctrl+q` did not exit the app (closes https://github.com/kraanzu/dooit/issues/140)


## 2.0.0

Expand Down
32 changes: 32 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,35 @@ package() {
cd "$_pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
}

# Maintainer: Murli Tawari <[email protected]>

pkgname=dooit-git
_pkgname=${pkgname%-git}
pkgver=2.0.0
pkgrel=1
pkgdesc="A todo manager that you didn't ask for, but needed!"
url="https://github.com/kraanzu/dooit"
arch=('any')
license=('MIT')
depends=('python' 'python-pyperclip' 'python-pyaml' 'python-poetry' 'python2-dateutil' 'python-textual' 'python-appdirs-git' 'python-six')
makedepends=('python-build' 'python-wheel' 'python-installer')
source=("$_pkgname::git+$url.git")
sha256sums=('SKIP')

pkgver() {
cd $_pkgname
git describe --long --tags --abbrev=7 --match='v[0-9]*' |
sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
cd "$_pkgname"
echo "$pkgdir"
python -m build --wheel --no-isolation
}

package() {
cd "$_pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
}

0 comments on commit 665b637

Please sign in to comment.