Skip to content

Commit e67cd9f

Browse files
authored
bump libmongocrypt to 1.8.0 (#6)
1 parent dcb1afa commit e67cd9f

File tree

410 files changed

+56606
-56571
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

410 files changed

+56606
-56571
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
# Dependencies specified in simple_clipboard.gemspec
3+
# Dependencies specified in libmongocrypt-helper-ruby.gemspec
44
gemspec
55

66
group :development, :test do

README.maint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Edit `lib/libmongocrypt_helper/version.rb` and:
1111
derived from `libmongocrypt` version as described below.
1212
3. Download the source code of the corresponding version of `libmongocrypt` from
1313
https://github.com/mongodb/libmongocrypt/releases/, and unpack it to
14-
`ext/libmongocrypt/libmongicrypt`.
14+
`ext/libmongocrypt/libmongocrypt`.
1515
4. Commit the changes including the new shared library.
1616
5. Run `./release.sh` to create a gem and push it to RubyGems.
1717

Rakefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@ require 'bundler'
22
require 'bundler/gem_tasks'
33
require 'rake/extensiontask'
44

5-
Rake::ExtensionTask.new("libmongocrypt")
5+
task :compile do
6+
chdir "ext/libmongocrypt" do
7+
ruby "extconf.rb"
8+
end
9+
end
Lines changed: 29 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,33 @@
11
---
2+
Language: Cpp
3+
# (Options are sorted alphabetically)
24
AlignAfterOpenBracket: Align
3-
AlignConsecutiveAssignments: 'false'
4-
AlignConsecutiveDeclarations: 'false'
5-
AlignEscapedNewlinesLeft: 'true'
6-
AllowAllParametersOfDeclarationOnNextLine: 'true'
7-
AllowShortBlocksOnASingleLine: 'false'
8-
AllowShortCaseLabelsOnASingleLine: 'false'
5+
AlignEscapedNewlines: Right
6+
AlignOperands: AlignAfterOperator
7+
AllowAllArgumentsOnNextLine: false
8+
AllowAllParametersOfDeclarationOnNextLine: false
9+
AllowShortBlocksOnASingleLine: Empty
10+
AllowShortCaseLabelsOnASingleLine: true
911
AllowShortFunctionsOnASingleLine: None
10-
AllowShortIfStatementsOnASingleLine: 'false'
11-
AllowShortLoopsOnASingleLine: 'false'
12-
AlwaysBreakAfterReturnType: All
13-
BinPackArguments: 'false'
14-
BinPackParameters: 'false'
15-
BreakBeforeBraces: Linux
16-
ColumnLimit: '80'
17-
ContinuationIndentWidth: '3'
18-
IndentCaseLabels: 'false'
19-
IndentWidth: '3'
20-
KeepEmptyLinesAtTheStartOfBlocks: 'false'
21-
Language: Cpp
22-
MaxEmptyLinesToKeep: '2'
23-
SortIncludes: 'false'
24-
SpaceAfterCStyleCast: 'true'
25-
SpaceBeforeAssignmentOperators: 'true'
26-
SpaceBeforeParens: Always
27-
SpaceInEmptyParentheses: 'false'
28-
SpacesInAngles: 'false'
29-
SpacesInCStyleCastParentheses: 'false'
30-
SpacesInContainerLiterals: 'true'
31-
SpacesInParentheses: 'false'
32-
SpacesInSquareBrackets: 'false'
33-
Standard: Cpp11
34-
TabWidth: '3'
12+
AllowShortIfStatementsOnASingleLine: Never
13+
AllowShortLoopsOnASingleLine: false
14+
BinPackArguments: false
15+
BinPackParameters: false
16+
BreakBeforeBinaryOperators: NonAssignment
17+
BreakBeforeBraces: Attach
18+
ColumnLimit: 120
19+
ContinuationIndentWidth: 4
20+
IndentCaseLabels: false
21+
IndentWidth: 4
22+
InsertBraces: true
23+
KeepEmptyLinesAtTheStartOfBlocks: false
24+
PointerAlignment: Right
25+
QualifierAlignment: Custom
26+
QualifierOrder: ["static", "inline", "const", "volatile", "type", "restrict"]
27+
SeparateDefinitionBlocks: Always
28+
SpaceBeforeAssignmentOperators: true
29+
SpaceBeforeParens: ControlStatements
30+
SpacesInLineCommentPrefix:
31+
Minimum: 1
32+
Maximum: -1
3533
UseTab: Never
36-
37-
...
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
cmake-build/
2+
cmake-build-deb/
3+
_build/

ext/libmongocrypt/libmongocrypt/.evergreen/build_all.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# Set extra cflags for libmongocrypt variables by setting LIBMONGOCRYPT_EXTRA_CFLAGS.
55
#
66

7-
set -x
87
echo "Begin compile process"
98

109
. "$(dirname "${BASH_SOURCE[0]}")/setup-env.sh"

0 commit comments

Comments
 (0)