Skip to content

Commit

Permalink
add pop os fiftyone-db support (#4626)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane authored Aug 9, 2024
1 parent 0f16eb3 commit e3aa760
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions package/db/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,28 @@
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-6.0.5.tgz",
},
},
"pop": {
"18": {
"aarch64": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu1804-5.0.4.tgz",
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-5.0.4.tgz",
},
"20": {
"aarch64": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2004-5.0.4.tgz",
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2004-5.0.4.tgz",
},
"22": {
"aarch64": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-6.0.5.tgz",
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-6.0.5.tgz",
},
"23": {
"aarch64": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-7.0.4.tgz",
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-7.0.4.tgz",
},
"24": {
"aarch64": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-7.0.4.tgz",
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-7.0.4.tgz",
},
},
"rhel": {
"7": {
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-5.0.4.tgz",
Expand Down Expand Up @@ -120,7 +142,7 @@ def _get_linux_download():
# filter empty lines
d = dict(line for line in reader if line)

for k, v in LINUX_DOWNLOADS[d["ID"]].items():
for k, v in LINUX_DOWNLOADS[d["ID"].lower()].items():
if d["VERSION_ID"].startswith(k):
return v[MACHINE]

Expand All @@ -143,7 +165,7 @@ def _get_download():
MONGODB_BINARIES = ["mongod"]


VERSION = "1.1.4"
VERSION = "1.1.5"


def get_version():
Expand Down

0 comments on commit e3aa760

Please sign in to comment.