do not use bundler as per Ruby policy
authorLaszlo Boszormenyi (GCS) <gcs@debian.org>
Sun, 28 Aug 2022 10:41:21 +0000 (11:41 +0100)
committerLaszlo Boszormenyi (GCS) <gcs@debian.org>
Sun, 28 Aug 2022 10:41:21 +0000 (11:41 +0100)
Bug-Debian: https://bugs.debian.org/804668
Last-Update: 2019-10-23

Gbp-Pq: Name no_bundler_use.patch

lib/rb/Makefile.am
test/rb/Makefile.am

index 1841065f5a3bba47418ec3a36f29d67a75232634..66f1ccea80d0d6e63d1ebb8c991c98ffc6a0b1d7 100755 (executable)
@@ -22,20 +22,24 @@ DESTDIR ?= /
 if HAVE_BUNDLER
 
 all-local:
-       $(BUNDLER) install
-       $(BUNDLER) exec rake build_ext
+       echo Do not use bundler for all-local
+#      $(BUNDLER) install
+#      $(BUNDLER) exec rake build_ext
 
 install-exec-hook:
-       $(BUNDLER) exec rake install
+       echo Do not use bundler for install-exec-hook
+#      $(BUNDLER) exec rake install
 
 clean-local:
-       $(BUNDLER) install
-       $(BUNDLER) exec rake clean
+       echo Do not use bundler for clean-local
+#      $(BUNDLER) install
+#      $(BUNDLER) exec rake clean
        $(RM) -r spec/gen-rb/
 
 check-local: all
-       $(BUNDLER) install
-       $(BUNDLER) exec rake
+       echo Do not use bundler for check-local
+#      $(BUNDLER) install
+#      $(BUNDLER) exec rake
 
 endif
 
index 39109340d8cce4c5c195b4c2d6895c63df913a8d..4a1c8664a88dc8df6bf92bf7e8a8035f11374940 100644 (file)
@@ -26,8 +26,9 @@ precross: stubs
 
 check: stubs
 if HAVE_BUNDLER
-       $(BUNDLER) install
-       $(BUNDLER) exec $(RUBY) -I. test_suite.rb
+       echo Do not use bundler for check
+#      $(BUNDLER) install
+#      $(BUNDLER) exec $(RUBY) -I. test_suite.rb
 endif
 
 clean-local: