diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-07-16 19:22:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-07-16 19:22:11 +0000 |
commit | 502681fb5f12f716a4cac0536736ab0e5082caff (patch) | |
tree | c0107cd16542fe65641e04c0ccc6c50030ebbef3 | |
parent | Adding upstream version 0.20.1+dfsg. (diff) | |
download | gitui-debian.tar.xz gitui-debian.zip |
Adding debian version 0.20.1+dfsg-1.HEADdebian/0.20.1+dfsg-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 57 | ||||
-rw-r--r-- | debian/copyright | 32 | ||||
-rwxr-xr-x | debian/rules | 12 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/watch | 3 |
6 files changed, 111 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8abc55e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +gitui (0.20.1+dfsg-1) sid; urgency=medium + + * Initial upload to sid (Closes: #). + * Removed embedded binary components to build gitui on windows. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 27 Feb 2021 12:45:08 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..f5b8356 --- /dev/null +++ b/debian/control @@ -0,0 +1,57 @@ +Source: gitui +Section: utils +Priority: optional +Maintainer: Daniel Baumann <daniel.baumann@progress-linux.org> +Build-Depends: + cargo, + debhelper-compat (= 13), + librust-anyhow-dev, + librust-backtrace-dev, + librust-bitflags-dev, + librust-bytesize-dev, + librust-chrono-dev, + librust-clap-dev, + librust-crossbeam-channel-dev, + librust-dirs-next-dev, + librust-itertools-dev, + librust-log-dev, + librust-rayon-core-dev, + librust-ron-dev, + librust-scopeguard-dev, + librust-serde-dev, + librust-simplelog-dev, + librust-textwrap-dev, + librust-tui+crossterm-dev, + librust-tui-dev, + librust-unicode-width-dev, + rustc, + libgit2-dev, + libxcb1-dev, +# scopetime = { path = "./scopetime", version = "0.1" } +# asyncgit = { path = "./asyncgit", version = "0.11" } +Rules-Requires-Root: no +Standards-Version: 4.5.1 +Homepage: https://github.com/extrawurst/gitui +Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/gitui +Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/gitui + +Package: gitui +Section: utils +Architecture: any +Depends: + ${misc:Depends}, + ${shlib:Depends}, +Description: Blazing fast terminal client for Git + GitUI is a terminal client for Git Version Control, featuring: + . + * Fast and intuitive keyboard only control + * Context based help (no need to memorize tons of hot-keys) + * Inspect, commit, and amend changes (incl. hooks: commit-msg/post-commit) + * Stage, unstage, revert and reset files and hunks + * Stashing (save, apply, drop, and inspect) + * Push to remote + * Branch List (create, rename, delete) + * Browse commit log, diff committed changes + * Scalable terminal UI layout + * Async input polling + * Async git API for fluid control diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..486acee --- /dev/null +++ b/debian/copyright @@ -0,0 +1,32 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: GitUI +Upstream-Contact: Stephan Dilly <dilly.stephan@gmail.com> +Source: https://github.com/extrawurst/gitui/releases +Files-excluded: wix + +Files: * +Copyright: 2020-2022 Stephan Dilly <dilly.stephan@gmail.com> +License: MIT + +Files: debian/* +Copyright: 2022 Daniel Baumann <daniel.baumann@progress-linux.org> +License: MIT + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2e4270f --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +override_dh_auto_build: + LIBGIT2_SYS_USE_PKG_CONFIG=1 cargo build --release --locked + +override_dh_auto_install: + +override_dh_auto_test: + # disabled, doesn't work yet diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..7e7a7f0 --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=4 +opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/gitui-$1\.tar\.gz/ \ +https://github.com/extrawurst/gitui/releases .*/v?(\d\S+)\.tar\.gz |