summaryrefslogtreecommitdiff
path: root/patches/gnutls/build
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-04-05 23:02:22 -0700
committerJameson Graef Rollins <jrollins@finestructure.net>2009-04-05 23:02:22 -0700
commit1e1718518b06adcf4df593e8b2c095e1e3ae44fb (patch)
treebdbb0e3506cc643d910cfb9be8c7f4b47357b951 /patches/gnutls/build
parent792b299e0850dfa3ab1072760f9e82febd81c366 (diff)
remove the gnutls patch from the repo, since it's included in gnutls 2.6, we don't even use gnutls anymore, and it's cluter in the repo root
Diffstat (limited to 'patches/gnutls/build')
-rwxr-xr-xpatches/gnutls/build36
1 files changed, 0 insertions, 36 deletions
diff --git a/patches/gnutls/build b/patches/gnutls/build
deleted file mode 100755
index b42832a..0000000
--- a/patches/gnutls/build
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh -e
-
-# build a patched version of GnuTLS version 2.4.x, including the
-# ability to parse and accept the GNU S2K extension known as
-# "gnu-dummy" (which doesn't have any secret key data at all)
-
-# Note: you probably want to prepare your build system in the
-# following way:
-
-# apt-get build-dep libgnutls26
-# aptitude install devscripts fakeroot
-
-# Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
-# Date: 2008-08-22 00:11:05-0400
-
-# Note: please run this from the current directory, so it can find and
-# transfer the patch it needs.
-
-set -e
-
-if ! dpkg -l devscripts fakeroot >/dev/null ; then
- exit 1
-fi
-
-workingdir=$(mktemp -d -p .)
-
-(cd "$workingdir" && apt-get source libgnutls26)
-
-cp ./*.diff "$workingdir/gnutls26-2.4".*/debian/patches/
-
-cd "$workingdir/gnutls26-2.4".*
-dch --local .s2kext --distribution experimental 'added patch to handle GNU extensions to S2K'
-debuild -uc -us -sa
-
-echo now you should:
-echo reprepro -C gnutls include experimental "$workingdir/"*.changes