quasardb 3.14.2.dev2__cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 3.14.2.dev3__cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of quasardb might be problematic. Click here for more details.
- quasardb/Makefile +10 -10
- quasardb/date/Makefile +10 -10
- quasardb/libqdb_api.so +0 -0
- quasardb/pybind11/Makefile +10 -10
- quasardb/quasardb.cpython-310-aarch64-linux-gnu.so +0 -0
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make +2 -2
- quasardb/range-v3/Makefile +10 -10
- {quasardb-3.14.2.dev2.dist-info → quasardb-3.14.2.dev3.dist-info}/METADATA +1 -1
- {quasardb-3.14.2.dev2.dist-info → quasardb-3.14.2.dev3.dist-info}/RECORD +12 -12
- {quasardb-3.14.2.dev2.dist-info → quasardb-3.14.2.dev3.dist-info}/LICENSE.md +0 -0
- {quasardb-3.14.2.dev2.dist-info → quasardb-3.14.2.dev3.dist-info}/WHEEL +0 -0
- {quasardb-3.14.2.dev2.dist-info → quasardb-3.14.2.dev3.dist-info}/top_level.txt +0 -0
quasardb/Makefile
CHANGED
|
@@ -48,10 +48,10 @@ cmake_force:
|
|
|
48
48
|
SHELL = /bin/sh
|
|
49
49
|
|
|
50
50
|
# The CMake executable.
|
|
51
|
-
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
51
|
+
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake
|
|
52
52
|
|
|
53
53
|
# The command to remove a file.
|
|
54
|
-
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
54
|
+
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
|
|
55
55
|
|
|
56
56
|
# Escaping for special characters.
|
|
57
57
|
EQUALS = =
|
|
@@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /mnt/TeamCity/work/938b0bdf6727d1ad/build/temp.linux-aarch64-
|
|
|
68
68
|
# Special rule for the target edit_cache
|
|
69
69
|
edit_cache:
|
|
70
70
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
|
|
71
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
71
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
|
72
72
|
.PHONY : edit_cache
|
|
73
73
|
|
|
74
74
|
# Special rule for the target edit_cache
|
|
@@ -78,7 +78,7 @@ edit_cache/fast: edit_cache
|
|
|
78
78
|
# Special rule for the target rebuild_cache
|
|
79
79
|
rebuild_cache:
|
|
80
80
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
|
81
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
81
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
|
82
82
|
.PHONY : rebuild_cache
|
|
83
83
|
|
|
84
84
|
# Special rule for the target rebuild_cache
|
|
@@ -97,37 +97,37 @@ list_install_components/fast: list_install_components
|
|
|
97
97
|
# Special rule for the target install
|
|
98
98
|
install: preinstall
|
|
99
99
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
100
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
100
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
101
101
|
.PHONY : install
|
|
102
102
|
|
|
103
103
|
# Special rule for the target install
|
|
104
104
|
install/fast: preinstall/fast
|
|
105
105
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
106
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
106
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
107
107
|
.PHONY : install/fast
|
|
108
108
|
|
|
109
109
|
# Special rule for the target install/local
|
|
110
110
|
install/local: preinstall
|
|
111
111
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
112
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
112
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
113
113
|
.PHONY : install/local
|
|
114
114
|
|
|
115
115
|
# Special rule for the target install/local
|
|
116
116
|
install/local/fast: preinstall/fast
|
|
117
117
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
118
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
118
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
119
119
|
.PHONY : install/local/fast
|
|
120
120
|
|
|
121
121
|
# Special rule for the target install/strip
|
|
122
122
|
install/strip: preinstall
|
|
123
123
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
124
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
124
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
125
125
|
.PHONY : install/strip
|
|
126
126
|
|
|
127
127
|
# Special rule for the target install/strip
|
|
128
128
|
install/strip/fast: preinstall/fast
|
|
129
129
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
130
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
130
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
131
131
|
.PHONY : install/strip/fast
|
|
132
132
|
|
|
133
133
|
# The main all target
|
quasardb/date/Makefile
CHANGED
|
@@ -48,10 +48,10 @@ cmake_force:
|
|
|
48
48
|
SHELL = /bin/sh
|
|
49
49
|
|
|
50
50
|
# The CMake executable.
|
|
51
|
-
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
51
|
+
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake
|
|
52
52
|
|
|
53
53
|
# The command to remove a file.
|
|
54
|
-
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
54
|
+
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
|
|
55
55
|
|
|
56
56
|
# Escaping for special characters.
|
|
57
57
|
EQUALS = =
|
|
@@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /mnt/TeamCity/work/938b0bdf6727d1ad/build/temp.linux-aarch64-
|
|
|
68
68
|
# Special rule for the target edit_cache
|
|
69
69
|
edit_cache:
|
|
70
70
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
|
|
71
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
71
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
|
72
72
|
.PHONY : edit_cache
|
|
73
73
|
|
|
74
74
|
# Special rule for the target edit_cache
|
|
@@ -78,7 +78,7 @@ edit_cache/fast: edit_cache
|
|
|
78
78
|
# Special rule for the target rebuild_cache
|
|
79
79
|
rebuild_cache:
|
|
80
80
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
|
81
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
81
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
|
82
82
|
.PHONY : rebuild_cache
|
|
83
83
|
|
|
84
84
|
# Special rule for the target rebuild_cache
|
|
@@ -97,37 +97,37 @@ list_install_components/fast: list_install_components
|
|
|
97
97
|
# Special rule for the target install
|
|
98
98
|
install: preinstall
|
|
99
99
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
100
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
100
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
101
101
|
.PHONY : install
|
|
102
102
|
|
|
103
103
|
# Special rule for the target install
|
|
104
104
|
install/fast: preinstall/fast
|
|
105
105
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
106
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
106
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
107
107
|
.PHONY : install/fast
|
|
108
108
|
|
|
109
109
|
# Special rule for the target install/local
|
|
110
110
|
install/local: preinstall
|
|
111
111
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
112
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
112
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
113
113
|
.PHONY : install/local
|
|
114
114
|
|
|
115
115
|
# Special rule for the target install/local
|
|
116
116
|
install/local/fast: preinstall/fast
|
|
117
117
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
118
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
118
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
119
119
|
.PHONY : install/local/fast
|
|
120
120
|
|
|
121
121
|
# Special rule for the target install/strip
|
|
122
122
|
install/strip: preinstall
|
|
123
123
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
124
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
124
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
125
125
|
.PHONY : install/strip
|
|
126
126
|
|
|
127
127
|
# Special rule for the target install/strip
|
|
128
128
|
install/strip/fast: preinstall/fast
|
|
129
129
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
130
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
130
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
131
131
|
.PHONY : install/strip/fast
|
|
132
132
|
|
|
133
133
|
# The main all target
|
quasardb/libqdb_api.so
CHANGED
|
Binary file
|
quasardb/pybind11/Makefile
CHANGED
|
@@ -48,10 +48,10 @@ cmake_force:
|
|
|
48
48
|
SHELL = /bin/sh
|
|
49
49
|
|
|
50
50
|
# The CMake executable.
|
|
51
|
-
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
51
|
+
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake
|
|
52
52
|
|
|
53
53
|
# The command to remove a file.
|
|
54
|
-
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
54
|
+
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
|
|
55
55
|
|
|
56
56
|
# Escaping for special characters.
|
|
57
57
|
EQUALS = =
|
|
@@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /mnt/TeamCity/work/938b0bdf6727d1ad/build/temp.linux-aarch64-
|
|
|
68
68
|
# Special rule for the target edit_cache
|
|
69
69
|
edit_cache:
|
|
70
70
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
|
|
71
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
71
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
|
72
72
|
.PHONY : edit_cache
|
|
73
73
|
|
|
74
74
|
# Special rule for the target edit_cache
|
|
@@ -78,7 +78,7 @@ edit_cache/fast: edit_cache
|
|
|
78
78
|
# Special rule for the target rebuild_cache
|
|
79
79
|
rebuild_cache:
|
|
80
80
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
|
81
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
81
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
|
82
82
|
.PHONY : rebuild_cache
|
|
83
83
|
|
|
84
84
|
# Special rule for the target rebuild_cache
|
|
@@ -97,37 +97,37 @@ list_install_components/fast: list_install_components
|
|
|
97
97
|
# Special rule for the target install
|
|
98
98
|
install: preinstall
|
|
99
99
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
100
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
100
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
101
101
|
.PHONY : install
|
|
102
102
|
|
|
103
103
|
# Special rule for the target install
|
|
104
104
|
install/fast: preinstall/fast
|
|
105
105
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
106
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
106
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
107
107
|
.PHONY : install/fast
|
|
108
108
|
|
|
109
109
|
# Special rule for the target install/local
|
|
110
110
|
install/local: preinstall
|
|
111
111
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
112
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
112
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
113
113
|
.PHONY : install/local
|
|
114
114
|
|
|
115
115
|
# Special rule for the target install/local
|
|
116
116
|
install/local/fast: preinstall/fast
|
|
117
117
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
118
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
118
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
119
119
|
.PHONY : install/local/fast
|
|
120
120
|
|
|
121
121
|
# Special rule for the target install/strip
|
|
122
122
|
install/strip: preinstall
|
|
123
123
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
124
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
124
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
125
125
|
.PHONY : install/strip
|
|
126
126
|
|
|
127
127
|
# Special rule for the target install/strip
|
|
128
128
|
install/strip/fast: preinstall/fast
|
|
129
129
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
130
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
130
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
131
131
|
.PHONY : install/strip/fast
|
|
132
132
|
|
|
133
133
|
# The main all target
|
|
Binary file
|
|
@@ -44,10 +44,10 @@ cmake_force:
|
|
|
44
44
|
SHELL = /bin/sh
|
|
45
45
|
|
|
46
46
|
# The CMake executable.
|
|
47
|
-
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
47
|
+
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake
|
|
48
48
|
|
|
49
49
|
# The command to remove a file.
|
|
50
|
-
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
50
|
+
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
|
|
51
51
|
|
|
52
52
|
# Escaping for special characters.
|
|
53
53
|
EQUALS = =
|
quasardb/range-v3/Makefile
CHANGED
|
@@ -48,10 +48,10 @@ cmake_force:
|
|
|
48
48
|
SHELL = /bin/sh
|
|
49
49
|
|
|
50
50
|
# The CMake executable.
|
|
51
|
-
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
51
|
+
CMAKE_COMMAND = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake
|
|
52
52
|
|
|
53
53
|
# The command to remove a file.
|
|
54
|
-
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
54
|
+
RM = /opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
|
|
55
55
|
|
|
56
56
|
# Escaping for special characters.
|
|
57
57
|
EQUALS = =
|
|
@@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /mnt/TeamCity/work/938b0bdf6727d1ad/build/temp.linux-aarch64-
|
|
|
68
68
|
# Special rule for the target edit_cache
|
|
69
69
|
edit_cache:
|
|
70
70
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
|
|
71
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
71
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
|
72
72
|
.PHONY : edit_cache
|
|
73
73
|
|
|
74
74
|
# Special rule for the target edit_cache
|
|
@@ -78,7 +78,7 @@ edit_cache/fast: edit_cache
|
|
|
78
78
|
# Special rule for the target rebuild_cache
|
|
79
79
|
rebuild_cache:
|
|
80
80
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
|
81
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
81
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
|
82
82
|
.PHONY : rebuild_cache
|
|
83
83
|
|
|
84
84
|
# Special rule for the target rebuild_cache
|
|
@@ -97,37 +97,37 @@ list_install_components/fast: list_install_components
|
|
|
97
97
|
# Special rule for the target install
|
|
98
98
|
install: preinstall
|
|
99
99
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
100
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
100
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
101
101
|
.PHONY : install
|
|
102
102
|
|
|
103
103
|
# Special rule for the target install
|
|
104
104
|
install/fast: preinstall/fast
|
|
105
105
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
|
106
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
106
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
|
|
107
107
|
.PHONY : install/fast
|
|
108
108
|
|
|
109
109
|
# Special rule for the target install/local
|
|
110
110
|
install/local: preinstall
|
|
111
111
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
112
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
112
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
113
113
|
.PHONY : install/local
|
|
114
114
|
|
|
115
115
|
# Special rule for the target install/local
|
|
116
116
|
install/local/fast: preinstall/fast
|
|
117
117
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
|
118
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
118
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
119
119
|
.PHONY : install/local/fast
|
|
120
120
|
|
|
121
121
|
# Special rule for the target install/strip
|
|
122
122
|
install/strip: preinstall
|
|
123
123
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
124
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
124
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
125
125
|
.PHONY : install/strip
|
|
126
126
|
|
|
127
127
|
# Special rule for the target install/strip
|
|
128
128
|
install/strip/fast: preinstall/fast
|
|
129
129
|
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
|
130
|
-
/opt/_internal/pipx/venvs/cmake/lib/python3.
|
|
130
|
+
/opt/_internal/pipx/venvs/cmake/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
131
131
|
.PHONY : install/strip/fast
|
|
132
132
|
|
|
133
133
|
# The main all target
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
quasardb/Makefile,sha256=
|
|
1
|
+
quasardb/Makefile,sha256=uybJyNiYiCGWsZaNb-q_4EbFnO3ryXUyYJJBDR2whYg,7786
|
|
2
2
|
quasardb/__init__.py,sha256=bUq3IUkC13rfB4SIGIScDevSJ1jwB3oJbuBZVPfKt1Q,4547
|
|
3
3
|
quasardb/cmake_install.cmake,sha256=QpsFbQB-5czXTDy_83DiXb5JE0KfC3VHLUniNtv-qNw,1765
|
|
4
4
|
quasardb/firehose.py,sha256=HO0GjCDg3x4cpzVSH3KZ1AJhV8lK2HJyXr9tpfnNSGI,3492
|
|
5
|
-
quasardb/libqdb_api.so,sha256=
|
|
5
|
+
quasardb/libqdb_api.so,sha256=pSMXIlCGpxHj05PtPgas4v9NNTvjtwPwWOAaHOnLGL8,16467768
|
|
6
6
|
quasardb/pool.py,sha256=4IFwot-U8GEHo8h86264uVTWge44bOH_TUkoVy3Hjac,8449
|
|
7
|
-
quasardb/quasardb.cpython-310-aarch64-linux-gnu.so,sha256=
|
|
7
|
+
quasardb/quasardb.cpython-310-aarch64-linux-gnu.so,sha256=8lNgfIwhf70-v44QY1YaIaCvVZtOGx6WrzJD4pkKVBI,2437000
|
|
8
8
|
quasardb/stats.py,sha256=DKvurzur-4c5nVPjr29_Stu9mvwCynM5gGnw0gVQlt8,7387
|
|
9
9
|
quasardb/table_cache.py,sha256=RgLOYEcgmlc5fVeOBOyjZImtYKoM1UEdzyzPc8EriQI,1507
|
|
10
10
|
quasardb/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=0TX2wPfqMw_GUWHW_vI8GNZ0l1VE4B93wloiC80h8ZQ,702
|
|
11
11
|
quasardb/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
|
|
12
|
-
quasardb/date/Makefile,sha256=
|
|
12
|
+
quasardb/date/Makefile,sha256=DkcT8SpIrcpeNMO-eAalI8jeXDkNgKt4eVuzknpdkTo,7811
|
|
13
13
|
quasardb/date/cmake_install.cmake,sha256=5_bWt3R3xFypkhgki7IE7u_D0LZvSTWnRjkgaJtyl6k,3327
|
|
14
14
|
quasardb/date/dateConfigVersion.cmake,sha256=rL5Cp_r_23Yu8HmjowwKIH04sxxMwdBZ7no3tr4cx14,2762
|
|
15
15
|
quasardb/date/dateTargets.cmake,sha256=15qO3Aj81aERAQ8-05H_SUxytGdU8uDwsNNLIKWuFp0,2791
|
|
@@ -20,11 +20,11 @@ quasardb/extensions/__init__.py,sha256=FUHR0i62qt5NkOXn7eiMZrzWXo9mQNr1xVz3VSCa9
|
|
|
20
20
|
quasardb/extensions/writer.py,sha256=ZH6ldQrbH-DimuQTyk3mXS1OyaJIhvCmZTzFtG4hRfY,5735
|
|
21
21
|
quasardb/numpy/__init__.py,sha256=F1gVvEH1ijnm-mG9nd1Co3bNwgO2Y_2RmsmWu3yCsYk,30050
|
|
22
22
|
quasardb/pandas/__init__.py,sha256=lC8Vq1Kw-vtoBjF1HHV1xwrbf4nI1Hq3-KvGedisq90,14944
|
|
23
|
-
quasardb/pybind11/Makefile,sha256=
|
|
23
|
+
quasardb/pybind11/Makefile,sha256=LuktVjxP25cjPmIxHFEGj0RxYfmzPDY4efSeZssuc8U,7831
|
|
24
24
|
quasardb/pybind11/cmake_install.cmake,sha256=sbucz9_54y8eAg8iqMUtHXpaflvLwgZI47s2s4LBA8Q,1312
|
|
25
25
|
quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=0TX2wPfqMw_GUWHW_vI8GNZ0l1VE4B93wloiC80h8ZQ,702
|
|
26
26
|
quasardb/pybind11/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
|
|
27
|
-
quasardb/range-v3/Makefile,sha256=
|
|
27
|
+
quasardb/range-v3/Makefile,sha256=tVu4FDdJzBWs0a2xNenxaP3e0mLR555j8khZk3dxiVo,9064
|
|
28
28
|
quasardb/range-v3/cmake_install.cmake,sha256=5jxdyWUDodBVBGaBLHI1_RWH3BlkGhPtWFHnTMv-EkQ,4242
|
|
29
29
|
quasardb/range-v3/range-v3-config-version.cmake,sha256=xGi8nCg5dIl5VmCOtTEVVa-dwABxKxLEd1Mx-bUvLLM,3249
|
|
30
30
|
quasardb/range-v3/range-v3-config.cmake,sha256=CvROA_AaZ1oatgnlLa2gEnOYvNtzMXLmjHcUXxuoNio,3384
|
|
@@ -32,14 +32,14 @@ quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=0TX2wPfqMw_G
|
|
|
32
32
|
quasardb/range-v3/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
|
|
33
33
|
quasardb/range-v3/CMakeFiles/Export/48a02d54b5e9e60c30c5f249b431a911/range-v3-targets.cmake,sha256=YaSRRarHsiyAi9CBzEAGyLZ4lDnx7IaILNssyS3A3n8,5265
|
|
34
34
|
quasardb/range-v3/CMakeFiles/range.v3.headers.dir/DependInfo.cmake,sha256=ssojOAtcndfwexIOMvsRoVek3vdNgBmUVZscjIj5L1U,585
|
|
35
|
-
quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make,sha256=
|
|
35
|
+
quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make,sha256=jL9KexytGgd6x7eJA6yLeIv2UVnLCHPmDIzwa3fJmSU,3804
|
|
36
36
|
quasardb/range-v3/CMakeFiles/range.v3.headers.dir/cmake_clean.cmake,sha256=3b0pZoiofoRzAiY1l7OLw203ZXp-mm1FUlQHob6i7aU,160
|
|
37
37
|
quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.make,sha256=Oge9eptzOB-hllw_Tye4o5wiXsIsdq1xm1GGCe0oGFM,126
|
|
38
38
|
quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.ts,sha256=orKrKpvHulgFBjBgzdeRvCpv0fV7cTffTdaHNqijFJg,120
|
|
39
39
|
quasardb/range-v3/CMakeFiles/range.v3.headers.dir/progress.make,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
40
40
|
quasardb/range-v3/include/range/v3/version.hpp,sha256=d-ToEdR3GnC_p_0RAeS77xL-SVx6EKHgTlWJ9PUQlSQ,586
|
|
41
|
-
quasardb-3.14.2.
|
|
42
|
-
quasardb-3.14.2.
|
|
43
|
-
quasardb-3.14.2.
|
|
44
|
-
quasardb-3.14.2.
|
|
45
|
-
quasardb-3.14.2.
|
|
41
|
+
quasardb-3.14.2.dev3.dist-info/LICENSE.md,sha256=_drOadIrIX8mzUZcnTJBTpUQih5gwdRAGK8ZKanYD6k,1467
|
|
42
|
+
quasardb-3.14.2.dev3.dist-info/METADATA,sha256=MVQse6UcTn9aG8ovjjk3DmIzGlcr89Azi5UVX8YVNwg,1418
|
|
43
|
+
quasardb-3.14.2.dev3.dist-info/WHEEL,sha256=I0wYwwsn7gQu60ACWwJQGbebdEKtv2Of_THtVcbr-hA,154
|
|
44
|
+
quasardb-3.14.2.dev3.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
|
|
45
|
+
quasardb-3.14.2.dev3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|