Skip to content

Commit

Permalink
Update command lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Grimler91 committed Jun 27, 2021
1 parent 9b9722d commit 02ce7de
Show file tree
Hide file tree
Showing 31 changed files with 1,109 additions and 111 deletions.
48 changes: 24 additions & 24 deletions command-not-found.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,83 +26,83 @@ using namespace std;

list<string> games_commands = {
#ifdef __aarch64__
# include "game-packages/commands-aarch64-1150e2f.h"
# include "game-packages/commands-aarch64-9474326.h"
#elif defined __arm__
# include "game-packages/commands-arm-1150e2f.h"
# include "game-packages/commands-arm-9474326.h"
#elif defined __i686__
# include "game-packages/commands-i686-1150e2f.h"
# include "game-packages/commands-i686-9474326.h"
#elif defined __x86_64__
# include "game-packages/commands-x86_64-1150e2f.h"
# include "game-packages/commands-x86_64-9474326.h"
#else
# error Failed to detect arch
#endif
};

list<string> main_commands = {
#ifdef __aarch64__
# include "termux-packages/commands-aarch64-600a3f6.h"
# include "termux-packages/commands-aarch64-366763d.h"
#elif defined __arm__
# include "termux-packages/commands-arm-600a3f6.h"
# include "termux-packages/commands-arm-366763d.h"
#elif defined __i686__
# include "termux-packages/commands-i686-600a3f6.h"
# include "termux-packages/commands-i686-366763d.h"
#elif defined __x86_64__
# include "termux-packages/commands-x86_64-600a3f6.h"
# include "termux-packages/commands-x86_64-366763d.h"
#else
# error Failed to detect arch
#endif
};

list<string> root_commands = {
#ifdef __aarch64__
# include "termux-root-packages/commands-aarch64-48be2f1.h"
# include "termux-root-packages/commands-aarch64-f6d3d28.h"
#elif defined __arm__
# include "termux-root-packages/commands-arm-48be2f1.h"
# include "termux-root-packages/commands-arm-f6d3d28.h"
#elif defined __i686__
# include "termux-root-packages/commands-i686-48be2f1.h"
# include "termux-root-packages/commands-i686-f6d3d28.h"
#elif defined __x86_64__
# include "termux-root-packages/commands-x86_64-48be2f1.h"
# include "termux-root-packages/commands-x86_64-f6d3d28.h"
#else
# error Failed to detect arch
#endif
};

list<string> science_commands = {
#ifdef __aarch64__
# include "science-packages/commands-aarch64-6485c13.h"
# include "science-packages/commands-aarch64-4bacf5c.h"
#elif defined __arm__
# include "science-packages/commands-arm-6485c13.h"
# include "science-packages/commands-arm-4bacf5c.h"
#elif defined __i686__
# include "science-packages/commands-i686-6485c13.h"
# include "science-packages/commands-i686-4bacf5c.h"
#elif defined __x86_64__
# include "science-packages/commands-x86_64-6485c13.h"
# include "science-packages/commands-x86_64-4bacf5c.h"
#else
# error Failed to detect arch
#endif
};

list<string> unstable_commands = {
#ifdef __aarch64__
# include "unstable-packages/commands-aarch64-4d08920.h"
# include "unstable-packages/commands-aarch64-3bbba3b.h"
#elif defined __arm__
# include "unstable-packages/commands-arm-4d08920.h"
# include "unstable-packages/commands-arm-3bbba3b.h"
#elif defined __i686__
# include "unstable-packages/commands-i686-4d08920.h"
# include "unstable-packages/commands-i686-3bbba3b.h"
#elif defined __x86_64__
# include "unstable-packages/commands-x86_64-4d08920.h"
# include "unstable-packages/commands-x86_64-3bbba3b.h"
#else
# error Failed to detect arch
#endif
};

list<string> x11_commands = {
#ifdef __aarch64__
# include "x11-packages/commands-aarch64-36b739a.h"
# include "x11-packages/commands-aarch64-e4deb66.h"
#elif defined __arm__
# include "x11-packages/commands-arm-36b739a.h"
# include "x11-packages/commands-arm-e4deb66.h"
#elif defined __i686__
# include "x11-packages/commands-i686-36b739a.h"
# include "x11-packages/commands-i686-e4deb66.h"
#elif defined __x86_64__
# include "x11-packages/commands-x86_64-36b739a.h"
# include "x11-packages/commands-x86_64-e4deb66.h"
#else
# error Failed to detect arch
#endif
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
" ncdump",
" ncgen",
" ncgen3",
" ocprint",
"openbabel",
" obabel",
" obconformer",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
" ncdump",
" ncgen",
" ncgen3",
" ocprint",
"openbabel",
" obabel",
" obconformer",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
" ncdump",
" ncgen",
" ncgen3",
" ocprint",
"openbabel",
" obabel",
" obconformer",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
" ncdump",
" ncgen",
" ncgen3",
" ocprint",
"openbabel",
" obabel",
" obconformer",
Expand Down
Loading

0 comments on commit 02ce7de

Please sign in to comment.