do not use bundler as per Ruby policy
authorLaszlo Boszormenyi (GCS) <gcs@debian.org>
Sat, 9 May 2026 13:29:42 +0000 (13:29 +0000)
committerLaszlo Boszormenyi (GCS) <gcs@debian.org>
Sat, 9 May 2026 13:29:42 +0000 (13:29 +0000)
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 64ff7b12beeb86062ade67d7f8837939f9da45d6..1695e6fcc74dcad10fcb376d4e29bf62cad37d81 100644 (file)
@@ -28,20 +28,24 @@ endif
 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 5628a238293012ad715befc17594188d8c046720..2513ee8d15db9f735ea56de3bacbffe04c34129c 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: