first commit
Some checks failed
Docker Build and Push / build-and-push (push) Has been cancelled
Tests / test (bash) (push) Has been cancelled
Tests / test (zsh) (push) Has been cancelled
Tests / lint (push) Has been cancelled
Tests / docker (push) Has been cancelled

This commit is contained in:
2025-12-02 09:02:03 +01:00
commit 24d36cbad4
27 changed files with 2781 additions and 0 deletions

10
debian/changelog vendored Normal file
View File

@@ -0,0 +1,10 @@
finish (0.5.0-1) stable; urgency=medium
* Initial Debian package release
* LLM-powered bash and zsh finishtion
* Support for LM-Studio and Ollama providers
* Context-aware command suggestions
* Intelligent caching system
* Privacy-focused local operation
-- finishte.sh Contributors <noreply@finishte.sh> Mon, 02 Dec 2024 12:00:00 +0000

1
debian/compat vendored Normal file
View File

@@ -0,0 +1 @@
10

24
debian/control vendored Normal file
View File

@@ -0,0 +1,24 @@
Source: finish
Section: utils
Priority: optional
Maintainer: finishte.sh Contributors <noreply@finishte.sh>
Build-Depends: debhelper (>= 10)
Standards-Version: 4.5.0
Homepage: https://git.appmodel.nl/Tour/finish/finish
Vcs-Git: https://git.appmodel.nl/Tour/finish.git
Package: finish
Architecture: all
Depends: bash (>= 4.0) | zsh (>= 5.0), curl, jq, bc, bash-completion
Recommends: lm-studio | ollama
Description: LLM-powered command-line finishtion
finishte.sh enhances your terminal with context-aware command suggestions
using local large language models. Features include:
.
* Local-first operation with LM-Studio or Ollama
* Context-aware suggestions based on command history and environment
* Intelligent caching for instant responses
* Support for multiple LLM providers
* Privacy-focused - no data leaves your machine by default
.
Simply press Tab twice to get intelligent command suggestions powered by AI.

30
debian/copyright vendored Normal file
View File

@@ -0,0 +1,30 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: finish
Upstream-Contact: https://git.appmodel.nl/Tour/finish/finish
Source: https://git.appmodel.nl/Tour/finish
Files: *
Copyright: 2024-2025 finishte.sh Contributors
License: BSD-2-Clause
License: BSD-2-Clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
.
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

27
debian/postinst vendored Normal file
View File

@@ -0,0 +1,27 @@
#!/bin/sh
set -e
case "$1" in
configure)
echo "finishte.sh has been installed successfully!"
echo ""
echo "To complete setup, run:"
echo " finishte install"
echo ""
echo "Then reload your shell:"
echo " source ~/.bashrc # for bash"
echo " source ~/.zshrc # for zsh"
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0

19
debian/rules vendored Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
override_dh_auto_install:
install -D -m 0755 finishte.sh $(CURDIR)/debian/finish/usr/bin/finishte
install -D -m 0644 LICENSE $(CURDIR)/debian/finish/usr/share/doc/finish/copyright
install -D -m 0644 README.md $(CURDIR)/debian/finish/usr/share/doc/finish/README.md
override_dh_auto_build:
# Nothing to build
override_dh_auto_test:
# Tests run in CI

1
debian/source/format vendored Normal file
View File

@@ -0,0 +1 @@
3.0 (native)