-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from sarnold/more-doc-bits
More docstring cleanup and fixes
- Loading branch information
Showing
13 changed files
with
268 additions
and
85 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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Debian packages | ||
|
||
on: | ||
workflow_dispatch: | ||
#push: | ||
#branches: [ main ] | ||
pull_request: | ||
|
||
jobs: | ||
get_version: | ||
name: Get version info | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
run: | ||
shell: bash | ||
outputs: | ||
version: ${{ steps.git_ver.outputs.version }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get package version | ||
id: git_ver | ||
run: | | ||
version=$(git describe --tags | sed -e "s|-g|+g|") | ||
echo "Version from git: ${version}" | ||
echo "version=${version}" >> $GITHUB_OUTPUT | ||
build_debs: | ||
name: ${{ matrix.name }} | ||
runs-on: ubuntu-22.04 | ||
needs: [get_version] | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
name: [ | ||
x64_bookworm, | ||
x64_trixie, | ||
x64_sid, | ||
] | ||
|
||
include: | ||
- name: x64_bookworm | ||
dist: bookworm | ||
|
||
- name: x64_trixie | ||
dist: trixie | ||
|
||
- name: x64_sid | ||
dist: sid | ||
|
||
steps: | ||
- name: Check github variables | ||
env: | ||
VERSION: ${{ needs.get_version.outputs.version }} | ||
run: | | ||
echo "Package version from git: ${VERSION}" | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Fetch debian files | ||
run: | | ||
wget https://launchpad.net/~nerdboy/+archive/ubuntu/embedded/+sourcefiles/timew-addons/0.1.1-1ubuntu1.22.04.1/timew-addons_0.1.1-1ubuntu1.22.04.1.debian.tar.xz | ||
tar xf timew-addons_0.1.1-1ubuntu1.22.04.1.debian.tar.xz && rm *debian.tar.xz | ||
ls | ||
- name: Install deps and update debian changelog | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install devscripts | ||
debchange -v ${{ needs.get_version.outputs.version }}-${{ matrix.dist }} -b -M --distribution ${{ matrix.dist }} "ci build" | ||
- name: Build deb packages | ||
uses: jtdor/build-deb-action@v1 | ||
env: | ||
DEB_BUILD_OPTIONS: noautodbgsym | ||
with: | ||
docker-image: "debian:${{ matrix.dist }}-slim" | ||
buildpackage-opts: --build=binary --no-sign | ||
extra-build-deps: git | ||
|
||
- name: Upload deb files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "timew-addons_${{ needs.get_version.outputs.version }}-${{ matrix.dist }}" | ||
path: ./debian/artifacts/*.deb |
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 |
---|---|---|
|
@@ -133,36 +133,42 @@ generated python byte-code. In the latter case, the list of installed | |
files can be obtained with the following command:: | ||
|
||
$ python -m pip show -f timew-addons | ||
Name: timew-addons | ||
Version: 0.1.2.dev3+gda11428.d20240825 | ||
Summary: A collection of timewarrior extensions and experiments | ||
Home-page: https://github.com/sarnold/timew-addons | ||
Author: Stephen L Arnold | ||
Author-email: | ||
License: | ||
Location: /home/user/src/timew-addons/.tox/check/lib/python3.11/site-packages | ||
Requires: munch, pycairo, PyGObject, timew-report | ||
Required-by: | ||
Files: | ||
../../../bin/timew-status-indicator | ||
../../../share/applications/timew-status-indicator.desktop | ||
../../../share/icons/hicolor/48x48/apps/timew.png | ||
../../../share/icons/hicolor/scalable/apps/timew.svg | ||
../../../share/icons/hicolor/scalable/status/timew_error.svg | ||
../../../share/icons/hicolor/scalable/status/timew_inactive.svg | ||
../../../share/icons/hicolor/scalable/status/timew_info.svg | ||
../../../share/icons/hicolor/scalable/status/timew_warning.svg | ||
../../../share/timew-addons/extensions/csv_rpt.py | ||
../../../share/timew-addons/extensions/onelineday.py | ||
../../../share/timew-addons/extensions/totals.py | ||
timew_addons-0.1.2.dev3+gda11428.d20240825.dist-info/INSTALLER | ||
timew_addons-0.1.2.dev3+gda11428.d20240825.dist-info/METADATA | ||
timew_addons-0.1.2.dev3+gda11428.d20240825.dist-info/RECORD | ||
timew_addons-0.1.2.dev3+gda11428.d20240825.dist-info/REQUESTED | ||
timew_addons-0.1.2.dev3+gda11428.d20240825.dist-info/WHEEL | ||
timew_addons-0.1.2.dev3+gda11428.d20240825.dist-info/top_level.txt | ||
timew_status/__init__.py | ||
timew_status/utils.py | ||
Name: timew-addons | ||
Version: 0.2.2.dev0+g4659e21.d20240901 | ||
Summary: A collection of timewarrior extensions and experiments | ||
Home-page: https://github.com/sarnold/timew-addons | ||
Author: Stephen L Arnold | ||
Author-email: [email protected] | ||
License: GPLv3+ | ||
Location: /home/nerdboy/src/timew-addons/.tox/py/lib/python3.11/site-packages | ||
Requires: munch, pycairo, PyGObject, timew-report | ||
Required-by: | ||
Files: | ||
../../../bin/timew-status-indicator | ||
../../../share/applications/timew-status-indicator.desktop | ||
../../../share/icons/hicolor/48x48/apps/timew.png | ||
../../../share/icons/hicolor/scalable/apps/timew.svg | ||
../../../share/icons/hicolor/scalable/status/timew_error.svg | ||
../../../share/icons/hicolor/scalable/status/timew_inactive.svg | ||
../../../share/icons/hicolor/scalable/status/timew_info.svg | ||
../../../share/icons/hicolor/scalable/status/timew_warning.svg | ||
../../../share/timew-addons/extensions/__pycache__/csv_rpt.cpython-311.pyc | ||
../../../share/timew-addons/extensions/__pycache__/onelineday.cpython-311.pyc | ||
../../../share/timew-addons/extensions/__pycache__/totals.cpython-311.pyc | ||
../../../share/timew-addons/extensions/csv_rpt.py | ||
../../../share/timew-addons/extensions/onelineday.py | ||
../../../share/timew-addons/extensions/totals.py | ||
timew_addons-0.2.2.dev0+g4659e21.d20240901.dist-info/INSTALLER | ||
timew_addons-0.2.2.dev0+g4659e21.d20240901.dist-info/METADATA | ||
timew_addons-0.2.2.dev0+g4659e21.d20240901.dist-info/RECORD | ||
timew_addons-0.2.2.dev0+g4659e21.d20240901.dist-info/REQUESTED | ||
timew_addons-0.2.2.dev0+g4659e21.d20240901.dist-info/WHEEL | ||
timew_addons-0.2.2.dev0+g4659e21.d20240901.dist-info/direct_url.json | ||
timew_addons-0.2.2.dev0+g4659e21.d20240901.dist-info/top_level.txt | ||
timew_status/__init__.py | ||
timew_status/__pycache__/__init__.cpython-311.pyc | ||
timew_status/__pycache__/utils.cpython-311.pyc | ||
timew_status/utils.py | ||
|
||
Generated files | ||
--------------- | ||
|
@@ -199,18 +205,23 @@ Uninstalling | |
|
||
Depending on how it was installed, use on or more of the following: | ||
|
||
* delete the cloned directory, eg, ``rm -rf src/timew-addons`` | ||
* delete the cloned directory, eg, ``rm -rf path/to/timew-addons`` | ||
* delete the virtual environment, eg, ``rm -rf ``.venv`` | ||
* remove the OS package, eg, on Ubuntu: | ||
|
||
If you installed into a local env via ``pip`` then run:: | ||
|
||
$ pip uninstall timew-addons | ||
|
||
* or, remove the OS package, eg, on Ubuntu: | ||
|
||
:: | ||
|
||
$ sudo apt remove timew-addons | ||
$ sudo apt autoremove | ||
|
||
Finally, delete the above configuration file:: | ||
Finally, delete the configuration file:: | ||
|
||
$ rm ~/.config/timew_status_indicator/config.yaml | ||
$ rm $HOME/.config/timew_status_indicator/config.yaml | ||
|
||
|
||
Reporting examples | ||
|
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 |
---|---|---|
|
@@ -24,4 +24,3 @@ Indices and tables | |
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
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 |
---|---|---|
|
@@ -4,9 +4,10 @@ version = attr: setuptools_scm.get_version | |
description = A collection of timewarrior extensions and experiments | ||
url = https://github.com/sarnold/timew-addons | ||
author = Stephen L Arnold | ||
email = [email protected] | ||
author_email = [email protected] | ||
long_description = file: README.rst | ||
long_description_content_type = text/rst; charset=UTF-8 | ||
license = GPLv3+ | ||
license_expression = GPL-3.0-or-later | ||
license_files = ["LICEN[CS]E*",] | ||
classifiers = | ||
|
@@ -24,6 +25,9 @@ classifiers = | |
|
||
keywords = | ||
appindicator | ||
extensions | ||
timewarrior | ||
timew-report | ||
timew | ||
|
||
[options] | ||
|
@@ -107,7 +111,7 @@ exclude = | |
docs, | ||
tests | ||
|
||
max-line-length = 99 | ||
max-line-length = 100 | ||
max-complexity = 10 | ||
addons = file,open,basestring,xrange,unicode,long,cmp | ||
ignore = | ||
|
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
Oops, something went wrong.