diff options
author | 2017-01-26 18:11:55 +0100 | |
---|---|---|
committer | 2017-01-26 23:36:47 +0100 | |
commit | 673106f694d00f4cc0f288cb5ffb2ea3898069b5 (patch) | |
tree | f8749a401a55f67af7adeffe0d39557f19934e1d /net-misc/mikutter/files | |
parent | net-misc/directvnc: remove unused patch (diff) | |
download | gentoo-673106f694d00f4cc0f288cb5ffb2ea3898069b5.tar.gz gentoo-673106f694d00f4cc0f288cb5ffb2ea3898069b5.tar.bz2 gentoo-673106f694d00f4cc0f288cb5ffb2ea3898069b5.zip |
net-misc/mikutter: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3663
Diffstat (limited to 'net-misc/mikutter/files')
-rw-r--r-- | net-misc/mikutter/files/mikutter-0.2.2.1537-disable-bundler.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/net-misc/mikutter/files/mikutter-0.2.2.1537-disable-bundler.patch b/net-misc/mikutter/files/mikutter-0.2.2.1537-disable-bundler.patch deleted file mode 100644 index 582787dab704..000000000000 --- a/net-misc/mikutter/files/mikutter-0.2.2.1537-disable-bundler.patch +++ /dev/null @@ -1,31 +0,0 @@ -commit d2d55a4c463c43de4577b479b7717f7648005e5c -Author: Toshiaki Asai <toshi.alternative@gmail.com> -Date: Sat Mar 15 23:31:59 2014 +0900 - - 環境変数 DISABLE_BUNDLER_SETUP を空にセットすることで、bundlerを読みに行く挙動を抑制できるようにした refs #645 - -diff --git a/mikutter.rb b/mikutter.rb -index 3adcb90..695e2f5 100755 ---- a/mikutter.rb -+++ b/mikutter.rb -@@ -13,12 +13,14 @@ You should have received a copy of the GNU General Public License along with thi - =end - mikutter_directory = File.expand_path(File.dirname(__FILE__)) - --begin -- ENV['BUNDLE_GEMFILE'] = File.expand_path(File.join(File.dirname($0), "Gemfile")) -- require 'bundler/setup' --rescue LoadError, SystemExit -- # bundlerがないか、依存関係の解決に失敗した場合 -- # System の gem を使ってみる -+unless ENV['DISABLE_BUNDLER_SETUP'] -+ begin -+ ENV['BUNDLE_GEMFILE'] = File.expand_path(File.join(File.dirname($0), "Gemfile")) -+ require 'bundler/setup' -+ rescue LoadError, SystemExit -+ # bundlerがないか、依存関係の解決に失敗した場合 -+ # System の gem を使ってみる -+ end - end - - Thread.abort_on_exception = true |