aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ruby-rugged/fix-extconf-version-check.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-02-21 23:15:10 +0100
committerJakub Jirutka <jakub@jirutka.cz>2018-02-21 23:15:10 +0100
commitbf12ff41d1483a3a7c3052783574e5ee6d66e108 (patch)
tree63ec7820c3f5dc267c9e213cd94c92a79131820f /testing/ruby-rugged/fix-extconf-version-check.patch
parent753b0965d13f776141816e9fbacd56f172c65cdb (diff)
downloadaports-bf12ff41d1483a3a7c3052783574e5ee6d66e108.tar.bz2
aports-bf12ff41d1483a3a7c3052783574e5ee6d66e108.tar.xz
community/ruby-rugged: move from testing
Diffstat (limited to 'testing/ruby-rugged/fix-extconf-version-check.patch')
-rw-r--r--testing/ruby-rugged/fix-extconf-version-check.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/ruby-rugged/fix-extconf-version-check.patch b/testing/ruby-rugged/fix-extconf-version-check.patch
deleted file mode 100644
index 30c65daaca..0000000000
--- a/testing/ruby-rugged/fix-extconf-version-check.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/ext/rugged/extconf.rb
-+++ b/ext/rugged/extconf.rb
-@@ -44,7 +44,7 @@
-
- major = minor = nil
-
-- File.readlines(File.join(LIBGIT2_DIR, "include", "git2", "version.h")).each do |line|
-+ File.readlines(File.join("/usr", "include", "git2", "version.h")).each do |line|
- if !major && (matches = line.match(/^#define LIBGIT2_VER_MAJOR ([0-9]+)$/))
- major = matches[1]
- next