summaryrefslogtreecommitdiff
authorWulf C. Krueger <philantrop@exherbo.org>2012-01-29 10:42:43 (GMT)
committer Wulf C. Krueger <philantrop@exherbo.org>2012-01-29 10:42:43 (GMT)
commitaf4d9f41fc39835aac60790ed1a9ac26220a7bac (patch) (side-by-side diff)
tree0f01a818c6c825114845786af2ef0529d4ac9e42
parent0c44f4fd099faa3ddb2ba5a0bf62fe7d6db92cce (diff)
Nuke quilt.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--packages/dev-scm/quilt/files/quilt-0.48-Fix-prototype-mismatch-error.patch44
-rw-r--r--packages/dev-scm/quilt/files/quilt-0.48-no-graphviz.patch38
-rw-r--r--packages/dev-scm/quilt/quilt-0.48.exheres-056
3 files changed, 0 insertions, 138 deletions
diff --git a/packages/dev-scm/quilt/files/quilt-0.48-Fix-prototype-mismatch-error.patch b/packages/dev-scm/quilt/files/quilt-0.48-Fix-prototype-mismatch-error.patch
deleted file mode 100644
index 18726f5..0000000
--- a/packages/dev-scm/quilt/files/quilt-0.48-Fix-prototype-mismatch-error.patch
+++ b/dev/null
@@ -1,44 +0,0 @@
-Source: Written by Reini Urban, ammended by Michael Forney
-Upstream: https://savannah.nongnu.org/bugs/index.php?27954
-Reason: Fix test failure with perl-5.10
-
-From ebec4d5e4f5f93f62f0f5219119a94fa4a7b1a11 Mon Sep 17 00:00:00 2001
-From: Reini Urban <rurban@x-ray.at>
-Date: Wed, 4 Nov 2009 13:38:05 -0800
-Subject: [PATCH] Fix prototype mismatch error
-
-Signed-off-by: Michael Forney <michael@obberon.com>
----
- quilt/scripts/edmail.in | 2 +-
- quilt/scripts/remove-trailing-ws.in | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/quilt/scripts/edmail.in b/quilt/scripts/edmail.in
-index 8c87218..abe4589 100644
---- a/quilt/scripts/edmail.in
-+++ b/quilt/scripts/edmail.in
-@@ -16,7 +16,7 @@ BEGIN {
- if (eval { require Locale::gettext }) {
- import Locale::gettext;
- require POSIX;
-- import POSIX, qw(setlocale);
-+ POSIX->import('setlocale');
- } else {
- eval '
- use constant LC_MESSAGES => 0;
-diff --git a/quilt/scripts/remove-trailing-ws.in b/quilt/scripts/remove-trailing-ws.in
-index 8179a9a..e715200 100644
---- a/quilt/scripts/remove-trailing-ws.in
-+++ b/quilt/scripts/remove-trailing-ws.in
-@@ -18,7 +18,7 @@ BEGIN {
- if (eval { require Locale::gettext }) {
- import Locale::gettext;
- require POSIX;
-- import POSIX, qw(setlocale);
-+ POSIX->import('setlocale');
- } else {
- eval '
- use constant LC_MESSAGES => 0;
---
-1.6.5.2
-
diff --git a/packages/dev-scm/quilt/files/quilt-0.48-no-graphviz.patch b/packages/dev-scm/quilt/files/quilt-0.48-no-graphviz.patch
deleted file mode 100644
index 06b7175..0000000
--- a/packages/dev-scm/quilt/files/quilt-0.48-no-graphviz.patch
+++ b/dev/null
@@ -1,38 +0,0 @@
-Upstream: Wants it as-is.
-Source: Gentoo
-Reason: Allow for disabling graphviz.
-
---- Makefile.in.orig 2009-02-24 13:49:47.000000000 -0500
-+++ Makefile.in 2009-02-24 13:50:21.000000000 -0500
-@@ -82,8 +82,7 @@ QUILT := $(QUILT_IN)
- SRC += $(QUILT_SRC:%=quilt/%)
- DIRT += $(QUILT_IN:%=quilt/%)
-
--SCRIPTS_IN := patchfns parse-patch inspect dependency-graph edmail \
-- remove-trailing-ws
-+SCRIPTS_IN := patchfns parse-patch inspect edmail remove-trailing-ws
-
- SCRIPTS_SRC := $(SCRIPTS_IN:%=%.in)
- SCRIPTS := $(SCRIPTS_IN)
---- bash_completion.orig 2009-02-24 13:49:52.000000000 -0500
-+++ bash_completion 2009-02-24 13:50:46.000000000 -0500
-@@ -189,19 +189,6 @@ _quilt_completion()
- ;;
- esac
- ;;
-- graph)
-- case $prev in
-- -T)
-- COMPREPLY=( $( compgen -W "ps" -- $cur ) )
-- ;;
-- --edge-labels)
-- COMPREPLY=( $( compgen -W "files" -- $cur ) )
-- ;;
-- *)
-- COMPREPLY=( $( compgen -W "-T -h --all --reduce --lines --edge-labels $(quilt applied)" -- $cur ) )
-- ;;
-- esac
-- ;;
- grep)
- _longopt grep
- COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W "-h" -- $cur ) )
diff --git a/packages/dev-scm/quilt/quilt-0.48.exheres-0 b/packages/dev-scm/quilt/quilt-0.48.exheres-0
deleted file mode 100644
index 35e7cb9..0000000
--- a/packages/dev-scm/quilt/quilt-0.48.exheres-0
+++ b/dev/null
@@ -1,56 +0,0 @@
-# Copyright 2010 Wulf C. Krueger <philantrop@exherbo.org>
-# Distributed under the terms of the GNU General Public License v2
-
-require bash-completion
-
-SUMMARY="Quilt allows you to easily manage large numbers of patches"
-DESCRIPTION="
-Quilt is a set of scripts to manage a series of patches by keeping track of the
-changes each patch makes. Patches can be applied, un-applied, refreshed, etc.
-The key philosophical concept is that your primary output is patches, not '.c'
-files or '.h' files, so patches are the first-class object here. It was originally
-based on Andrew Morton's patch scripts published on the Linux kernel mailing list
-a while ago, but has been heavily modified since then.
-"
-HOMEPAGE="http://savannah.nongnu.org/projects/${PN}"
-DOWNLOADS="mirror://savannah/${PN}/${PNV}.tar.gz"
-
-BUGS_TO="kimrhh@exherbo.org"
-REMOTE_IDS="freshmeat:${PN}"
-
-UPSTREAM_CHANGELOG="http://git.savannah.gnu.org/cgit/${PN}.git/tree/${PN}.changes?id=v${PV} [[ lang = en ]]"
-
-LICENCES="GPL-2"
-SLOT="0"
-PLATFORMS="~amd64 ~x86"
-MYOPTIONS="
- graphviz [[ description = [ Support for displaying patch stacks ] ]]
-"
-
-RESTRICT="test"
-
-DEPENDENCIES="
- build+run:
- dev-util/diffstat[>=1.47]
- sys-apps/ed
- virtual/mta
- graphviz? ( media-gfx/graphviz[>=2.20.3] )
-"
-
-DEFAULT_SRC_PREPARE_PATCHES=( "${FILES}"/${PNV}-Fix-prototype-mismatch-error.patch )
-DEFAULT_SRC_INSTALL_PARAMS=( BUILD_ROOT="${IMAGE}" )
-DEFAULT_SRC_INSTALL_EXTRA_DOCS=( quilt.changes )
-DEFAULT_SRC_TEST_PARAMS=( -j1 )
-
-src_prepare() {
- default
-
- option graphviz || expatch -p0 "${FILES}"/${PNV}-no-graphviz.patch
-}
-
-src_install() {
- default
-
- rm -r "${IMAGE}"/etc/bash_completion.d || die "removing cruft failed"
- dobashcompletion bash_completion
-}