merge of '30bd40aa8c1637256a775b418e15d0e636cc96c6'

and 'abd4faae60790075a5dd79142e3c7f8cfb15ea40'
This commit is contained in:
z3d
2010-11-25 13:43:57 +00:00
2 changed files with 11 additions and 4 deletions

9
debian/changelog vendored
View File

@@ -1,3 +1,12 @@
i2p (0.8.1-4) all; urgency=low
* I2P 0.8.1-6
* Closes: #448638
-- Hungry Hobo <HungryHobo@i2pmail.org> Mon, 24 Nov 2010 17:14:57 +0000
i2p (0.8.1-3) all; urgency=low
* I2P 0.8.1-3
-- Hungry Hobo <HungryHobo@i2pmail.org> Mon, 21 Nov 2010 17:14:57 +0000
i2p (0.8.1) all; urgency=low
* Speedups
* Bugfixes

6
debian/makerepo.sh vendored
View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# This script creates a Debian repository in ${DIR} using the reprepro tool.
# The packages are signed with the key referenced in the newest changelog entry.
@@ -9,9 +9,7 @@ DIR=./repo
CONFDIR=conf
CONFFILE=${CONFDIR}/distributions
SIGNER=`parsechangelog --file changelog | grep Maintainer | cut -d: -f2`
SIGNER=${SIGNER//^ /}
SIGNER=`echo ${SIGNER} | cut -d\ -f1`
SIGNER=`parsechangelog --file changelog | grep Maintainer | cut -d\< -f2 | cut -d\> -f1`
KEYID=`gpg --list-keys "${SIGNER}" | cut -d: -f2 | grep -w pub | cut -d/ -f2 | cut -d\ -f1`
echo Using signing key: ${SIGNER}
echo Key ID: ${KEYID}