Remove package's dependencies (does not remove package):
brew deps [FORMULA] | xargs brew remove --ignore-dependencies
Remove package:
| FROM rust:latest | |
| WORKDIR /app | |
| RUN apt update &&\ | |
| rm -rf ~/.cache &&\ | |
| apt clean all &&\ | |
| apt install -y cmake &&\ | |
| apt install -y clang | |
| RUN apt install -y build-essential libffi-dev libssl-dev zlib1g-dev liblzma-dev libbz2-dev libreadline-dev libsqlite3-dev libopencv-dev tk-dev git |
| #!/usr/bin/env python2 | |
| import time | |
| # HTTP | |
| import BaseHTTPServer | |
| import SimpleHTTPServer | |
| import SocketServer | |
| import threading |
| // gcc -o drmgl Linux_DRM_OpenGLES.c `pkg-config --cflags --libs libdrm` -lgbm -lEGL -lGLESv2 | |
| /* | |
| * Copyright (c) 2012 Arvin Schnell <arvin.schnell@gmail.com> | |
| * Copyright (c) 2012 Rob Clark <rob@ti.com> | |
| * Copyright (c) 2017 Miouyouyou <Myy> <myy@miouyouyou.fr> | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a | |
| * copy of this software and associated documentation files (the "Software"), | |
| * to deal in the Software without restriction, including without limitation |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |