diff options
| author | Rafael Laboissiere <rafael@laboissiere.net> | 2015-11-11 12:20:59 -0200 |
|---|---|---|
| committer | Rafael Laboissiere <rafael@laboissiere.net> | 2015-11-11 12:20:59 -0200 |
| commit | e707bfca9dadfca8bc0ee89f55f5bdd6ef7250a1 (patch) | |
| tree | 212ecbf2f19b4706b8838bdbdd28dbfc1782b48b /repo | |
Initial commit
Diffstat (limited to 'repo')
| -rw-r--r-- | repo/bin/add-pkg.sh | 13 | ||||
| -rw-r--r-- | repo/conf/distributions | 15 | ||||
| -rw-r--r-- | repo/conf/options | 3 |
3 files changed, 31 insertions, 0 deletions
diff --git a/repo/bin/add-pkg.sh b/repo/bin/add-pkg.sh new file mode 100644 index 0000000..5c1b47c --- /dev/null +++ b/repo/bin/add-pkg.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +prog=${0##*/} + +if [ $# != 2 ] ; then + echo "Usage: $prog dist pkg.changes" >&2 + exit 1 +fi + +dist=$1 +chg=$(readlink -f $2) + +reprepro include $dist $chg diff --git a/repo/conf/distributions b/repo/conf/distributions new file mode 100644 index 0000000..b5582bd --- /dev/null +++ b/repo/conf/distributions @@ -0,0 +1,15 @@ +Origin: praat.cefala.org +Label: Praat backports APT repository +Codename: jessie +Architectures: i386 amd64 source +Components: main +Description: Backports for Praat (Debian stable and testing) +SignWith: 23F1C3E9 + +Origin: praat.cefala.org +Label: Praat backports APT repository +Codename: stretch +Architectures: i386 amd64 source +Components: main +Description: Backports for Praat (Debian stable and testing) +SignWith: 23F1C3E9 diff --git a/repo/conf/options b/repo/conf/options new file mode 100644 index 0000000..7b49bf9 --- /dev/null +++ b/repo/conf/options @@ -0,0 +1,3 @@ +verbose +ask-passphrase +basedir . |
