From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7FB0E139694 for ; Fri, 14 Apr 2017 10:11:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1268E0BD4; Fri, 14 Apr 2017 10:11:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A0C6BE0BD4 for ; Fri, 14 Apr 2017 10:11:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7559B340806 for ; Fri, 14 Apr 2017 10:11:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56407742F for ; Fri, 14 Apr 2017 10:11:13 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1492164669.2ffaabbc863ca7c364d8e2e3d2a3cab179810087.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/lxc/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/lxc/files/lxc-1.0.6-bash-completion.patch X-VCS-Directories: app-emulation/lxc/files/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: 2ffaabbc863ca7c364d8e2e3d2a3cab179810087 X-VCS-Branch: master Date: Fri, 14 Apr 2017 10:11:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a882e56a-6104-4ab4-b74f-ac98b76b3494 X-Archives-Hash: eaf31957d739c3e855358f71f7220db0 commit: 2ffaabbc863ca7c364d8e2e3d2a3cab179810087 Author: Sven Wegener gentoo org> AuthorDate: Fri Apr 14 09:22:03 2017 +0000 Commit: Sven Wegener gentoo org> CommitDate: Fri Apr 14 10:11:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffaabbc app-emulation/lxc: Remove old patch Package-Manager: Portage-2.3.3, Repoman-2.3.2 .../lxc/files/lxc-1.0.6-bash-completion.patch | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/app-emulation/lxc/files/lxc-1.0.6-bash-completion.patch b/app-emulation/lxc/files/lxc-1.0.6-bash-completion.patch deleted file mode 100644 index 942c12f0519..00000000000 --- a/app-emulation/lxc/files/lxc-1.0.6-bash-completion.patch +++ /dev/null @@ -1,39 +0,0 @@ - config/bash/Makefile.am | 8 ++++---- - config/bash/lxc.in | 2 -- - 2 files changed, 4 insertions(+), 6 deletions(-) - -diff --git a/config/bash/Makefile.am b/config/bash/Makefile.am -index b1768c9..3fbbe8e 100644 ---- a/config/bash/Makefile.am -+++ b/config/bash/Makefile.am -@@ -2,12 +2,12 @@ EXTRA_DIST = lxc - - if ENABLE_BASH - install-bash: -- $(MKDIR_P) $(DESTDIR)$(sysconfdir)/bash_completion.d/ -- $(INSTALL_DATA) lxc $(DESTDIR)$(sysconfdir)/bash_completion.d/ -+ $(MKDIR_P) $(DESTDIR)$(datarootdir)/bash-completion/completions/ -+ $(INSTALL_DATA) lxc $(DESTDIR)$(datarootdir)/bash-completion/completions/ - - uninstall-bash: -- rm -f $(DESTDIR)$(sysconfdir)/bash_completion.d/lxc -- rmdir $(DESTDIR)$(sysconfdir)/bash_completion.d/ || : -+ rm -f $(DESTDIR)$(datarootdir)/bash-completion/completions/lxc -+ rmdir $(DESTDIR)$(datarootdir)/bash-completion/ || : - - install-data-local: install-bash - uninstall-local: uninstall-bash -diff --git a/config/bash/lxc.in b/config/bash/lxc.in -index 18fd48f..8fff725 100644 ---- a/config/bash/lxc.in -+++ b/config/bash/lxc.in -@@ -1,4 +1,3 @@ --have lxc-start && { - _lxc_names() { - COMPREPLY=( $( compgen -W "$( lxc-ls )" "$cur" ) ) - } -@@ -100,4 +99,3 @@ have lxc-start && { - - complete -o default -F _lxc-generic-o lxc-clone - complete -o default -F _lxc-generic-o lxc-start-ephemeral --}