Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
kci-dev (0.1.10-1) unstable; urgency=medium

* New upstream release.
* Update to version 0.1.10.

-- Arisu Tachibana <[email protected]> Wed, 14 Jan 2026 12:00:00 +0900

kci-dev (0.1.9-1) unstable; urgency=medium

* New upstream release.
Expand Down
2 changes: 1 addition & 1 deletion debian/kci-dev.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH kci-dev 1 "December 2025" "kci-dev 0.1.9" "User Commands"
.TH kci-dev 1 "January 2026" "kci-dev 0.1.10" "User Commands"
.SH NAME
kci-dev \- Stand alone command line tool for interacting with KernelCI
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion kcidev/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@click.group(
help="Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI."
)
@click.version_option("0.1.9", prog_name="kci-dev")
@click.version_option("0.1.10", prog_name="kci-dev")
@click.option(
"--settings",
default=".kci-dev.toml",
Expand Down
4 changes: 2 additions & 2 deletions packaging/arch/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = kci-dev
pkgdesc = Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI
pkgver = 0.1.9
pkgver = 0.1.10
pkgrel = 1
url = https://github.com/kernelci/kci-dev
arch = any
Expand All @@ -18,7 +18,7 @@ pkgbase = kci-dev
depends = python-matplotlib
optdepends = python-mplcursors: interactive cursor support for plots (AUR)
optdepends = bash-completion: bash completion support
source = kci-dev-0.1.9.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v0.1.9.tar.gz
source = kci-dev-0.1.10.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v0.1.10.tar.gz
sha256sums = SKIP

pkgname = kci-dev
56 changes: 28 additions & 28 deletions packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,52 +2,52 @@
# https://github.com/kernelci/kci-dev

pkgname=kci-dev
pkgver=0.1.9
pkgver=0.1.10
pkgrel=1
pkgdesc='Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI'
arch=('any')
url='https://github.com/kernelci/kci-dev'
license=('LGPL-2.1-or-later')
depends=(
'python>=3.10'
'python-click'
'python-requests'
'python-gitpython'
'python-yaml'
'python-tabulate'
'python-matplotlib'
'python>=3.10'
'python-click'
'python-requests'
'python-gitpython'
'python-yaml'
'python-tabulate'
'python-matplotlib'
)
makedepends=(
'python-build'
'python-installer'
'python-wheel'
'python-poetry-core'
'python-build'
'python-installer'
'python-wheel'
'python-poetry-core'
)
optdepends=(
'python-mplcursors: interactive cursor support for plots (AUR)'
'bash-completion: bash completion support'
'python-mplcursors: interactive cursor support for plots (AUR)'
'bash-completion: bash completion support'
)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('SKIP')

build() {
cd "${pkgname}-${pkgver}"
python -m build --wheel --no-isolation
cd "${pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}

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

# Shell completions
install -Dm644 completions/kci-dev-completion.bash \
"${pkgdir}/usr/share/bash-completion/completions/kci-dev"
install -Dm644 completions/_kci-dev \
"${pkgdir}/usr/share/zsh/site-functions/_kci-dev"
install -Dm644 completions/kci-dev.fish \
"${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish"
# Shell completions
install -Dm644 completions/kci-dev-completion.bash \
"${pkgdir}/usr/share/bash-completion/completions/kci-dev"
install -Dm644 completions/_kci-dev \
"${pkgdir}/usr/share/zsh/site-functions/_kci-dev"
install -Dm644 completions/kci-dev.fish \
"${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish"

# License and documentation
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
# License and documentation
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kci-dev"
version = "0.1.9"
version = "0.1.10"
description = "Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI"
authors = ["Arisu Tachibana <[email protected]>"]
license = "LGPL-2.1-or-later"
Expand Down
Loading