summaryrefslogtreecommitdiff
path: root/dev-ruby
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-03-21 01:57:44 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-03-21 01:57:44 +0000
commit833ae35b137cdff6e7abbbfac481d07c4d5a89c7 (patch)
treed723b36fab653d917cbcc21c5255df4d6172376c /dev-ruby
parent2e9f55766d568ecbce2e42097bf1433dd4a417dc (diff)
downloadbaldeagleos-repo-833ae35b137cdff6e7abbbfac481d07c4d5a89c7.tar.gz
baldeagleos-repo-833ae35b137cdff6e7abbbfac481d07c4d5a89c7.tar.xz
baldeagleos-repo-833ae35b137cdff6e7abbbfac481d07c4d5a89c7.zip
Adding metadata
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/asciimath/files/asciimath-1.0.4-backslashes.patch22
-rw-r--r--dev-ruby/redis/files/redis-4.0.1-local-redis-server.patch40
2 files changed, 0 insertions, 62 deletions
diff --git a/dev-ruby/asciimath/files/asciimath-1.0.4-backslashes.patch b/dev-ruby/asciimath/files/asciimath-1.0.4-backslashes.patch
deleted file mode 100644
index 9bf08ce34046..000000000000
--- a/dev-ruby/asciimath/files/asciimath-1.0.4-backslashes.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 1c06fdc8086077f4785479f78b0823a4a72d7948 Mon Sep 17 00:00:00 2001
-From: Pepijn Van Eeckhoudt <pepijn@vaneeckhoudt.net>
-Date: Thu, 12 May 2016 18:02:45 +0200
-Subject: [PATCH] Remove spurious backslashes
-
----
- spec/parser_spec.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/spec/parser_spec.rb b/spec/parser_spec.rb
-index def78e0..3fa5a75 100644
---- a/spec/parser_spec.rb
-+++ b/spec/parser_spec.rb
-@@ -45,7 +45,7 @@
- '"Скорость"=("Расстояние")/("Время")' =>
- '<math><mtext>Скорость</mtext><mo>=</mo><mfrac><mtext>Расстояние</mtext><mtext>Время</mtext></mfrac></math>',
- 'bb (a + b) + cc c = fr (d^n)' =>
-- '<math><mstyle mathvariant=\"bold\"><mrow><mi>a</mi><mo>+</mo><mi>b</mi></mrow></mstyle><mo>+</mo><mstyle mathvariant=\"script\"><mi>c</mi></mstyle><mo>=</mo><mstyle mathvariant=\"fraktur\"><msup><mi>d</mi><mi>n</mi></msup></mstyle></math>'
-+ '<math><mstyle mathvariant="bold"><mrow><mi>a</mi><mo>+</mo><mi>b</mi></mrow></mstyle><mo>+</mo><mstyle mathvariant="script"><mi>c</mi></mstyle><mo>=</mo><mstyle mathvariant="fraktur"><msup><mi>d</mi><mi>n</mi></msup></mstyle></math>'
- }
-
- version = RUBY_VERSION.split('.').map { |s| s.to_i }
diff --git a/dev-ruby/redis/files/redis-4.0.1-local-redis-server.patch b/dev-ruby/redis/files/redis-4.0.1-local-redis-server.patch
deleted file mode 100644
index 3bd1b03f494a..000000000000
--- a/dev-ruby/redis/files/redis-4.0.1-local-redis-server.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- a/makefile.~1~ 2017-09-28 18:11:35.000000000 +0200
-+++ b/makefile 2018-04-10 20:45:58.307407705 +0200
-@@ -3,7 +3,7 @@
--TMP := tmp
-+TMP := ${T}
- BUILD_DIR := ${TMP}/redis-${REDIS_BRANCH}
- TARBALL := ${TMP}/redis-${REDIS_BRANCH}.tar.gz
--BINARY := ${BUILD_DIR}/src/redis-server
-+BINARY := /usr/sbin/redis-server
--PID_PATH := ${BUILD_DIR}/redis.pid
-+PID_PATH := ${TMP}/redis.pid
--SOCKET_PATH := ${BUILD_DIR}/redis.sock
-+SOCKET_PATH := ${TMP}/redis.sock
- PORT := 6381
-@@ -11,7 +11,7 @@
- test: ${TEST_FILES}
- make start
- env SOCKET_PATH=${SOCKET_PATH} \
-- ruby -v $$(echo $? | tr ' ' '\n' | awk '{ print "-r./" $$0 }') -e ''
-+ ${RUBY} -v $$(echo $? | tr ' ' '\n' | awk '{ print "-r./" $$0 }') -e ''
- make stop
-
- ${TMP}:
-@@ -20,11 +20,11 @@
- ${TARBALL}: ${TMP}
- wget https://github.com/antirez/redis/archive/${REDIS_BRANCH}.tar.gz -O $@
-
--${BINARY}: ${TARBALL} ${TMP}
-- rm -rf ${BUILD_DIR}
-- mkdir -p ${BUILD_DIR}
-- tar xf ${TARBALL} -C ${TMP}
-- cd ${BUILD_DIR} && make
-+# ${BINARY}: ${TARBALL} ${TMP}
-+# rm -rf ${BUILD_DIR}
-+# mkdir -p ${BUILD_DIR}
-+# tar xf ${TARBALL} -C ${TMP}
-+# cd ${BUILD_DIR} && make
-
- stop:
- (test -f ${PID_PATH} && (kill $$(cat ${PID_PATH}) || true) && rm -f ${PID_PATH}) || true