Skip to content

Commit

Permalink
Merge pull request #1 from truenas/NAS-127943
Browse files Browse the repository at this point in the history
NAS-127943 / 24.10 / Initial commit
  • Loading branch information
themylogin authored Mar 27, 2024
2 parents 0a2c04c + 4f567fe commit 536da1e
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh -ex
VERSION=0.16.4
wget https://github.com/restic/restic/releases/download/v${VERSION}/restic_${VERSION}_linux_amd64.bz2
bunzip2 restic_${VERSION}_linux_amd64.bz2
mv restic_${VERSION}_linux_amd64 restic
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
restic (0.16.4-1) unstable; urgency=medium

* Initial release (Closes: #1)

-- Vladimir Vinogradenko <[email protected]> Wed, 27 Mar 2024 13:22:00 +0100
12 changes: 12 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Source: restic
Section: admin
Priority: optional
Maintainer: iXsystems Development Team <[email protected]>
Build-Depends: debhelper-compat (= 12), wget
Standards-Version: 4.4.0
Homepage: https://github.com/restic/restic/releases

Package: restic
Architecture: amd64
Description: restic is a backup program that is fast, efficient and secure
restic is a backup program that is fast, efficient and secure.
3 changes: 3 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: restic
Source: https://github.com/restic/restic
1 change: 1 addition & 0 deletions debian/restic.lintian-overrides
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
statically-linked-binary
13 changes: 13 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/make -f
export DH_VERBOSE = 1

%:
dh $@

override_dh_auto_build:
./build.sh

override_dh_install:
dh_install
mkdir -p debian/restic/usr/bin
cp restic debian/restic/usr/bin
1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (quilt)
1 change: 1 addition & 0 deletions debian/source/lintian-overrides
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source-is-missing

0 comments on commit 536da1e

Please sign in to comment.