Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bincrafters/bincrafters-remove-outdated
[OBSOLETE] Use the command `conan remove -r <remote> --outdated` instead
https://github.com/bincrafters/bincrafters-remove-outdated
conan remove tools
Last synced: 3 months ago
JSON representation
[OBSOLETE] Use the command `conan remove -r <remote> --outdated` instead
- Host: GitHub
- URL: https://github.com/bincrafters/bincrafters-remove-outdated
- Owner: bincrafters
- License: mit
- Archived: true
- Created: 2018-07-05T01:45:20.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2020-12-14T08:04:24.000Z (about 4 years ago)
- Last Synced: 2024-04-14T12:13:03.184Z (8 months ago)
- Topics: conan, remove, tools
- Language: Python
- Homepage: https://github.com/bincrafters/bincrafters-conventions/blob/0ec9c9f5052a00bbcdb962d8dae0117b131ac323/.github/workflows/remove-obsolete-packages.yml#L27
- Size: 74.2 KB
- Stars: 3
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status: Linux and Macos](https://travis-ci.org/bincrafters/bincrafters-remove-outdated.svg?branch=master)](https://travis-ci.org/bincrafters/bincrafters-remove-outdated)
[![Build status: Windows](https://ci.appveyor.com/api/projects/status/github/bincrafters/bincrafters-remove-outdated?svg=true)](https://ci.appveyor.com/project/bincrafters/bincrafters-remove-outdated)
[![codecov](https://codecov.io/gh/bincrafters/bincrafters-remove-outdated/branch/master/graph/badge.svg)](https://codecov.io/gh/bincrafters/bincrafters-remove-outdated)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/314bf09e0f214735849519143025e6c4)](https://www.codacy.com/app/uilianries/bincrafters-remove-outdated?utm_source=github.com&utm_medium=referral&utm_content=bincrafters/bincrafters-remove-outdated&utm_campaign=Badge_Grade)
[![Pypi Download](https://img.shields.io/badge/download-pypi-blue.svg)](https://pypi.python.org/pypi/bincrafters-remove-outdated)# Conan Remove Outdated
## A script to remove all outdated packages from remote
![logo](logo.png)
#### Requirements
* Python 3
* the [Conan](https://conan.io) client#### INSTALL
To install by pip is just one step##### Local
If you want to install by local copypip install .
##### Remote
Or if you want to download our pip packagepip install bincrafters_remove_outdated
#### RUN
- Make sure your remote is properly listed on Conan remote list (`conan remote list`)
- Make sure your Conan client is logged in (`conan user`) the repository you want to clean. Then:$ bincrafters-remove-outdated
To remove **ALL** outdated packages on Bincrafters https://api.bintray.com/conan/bincrafters/public-conan
$ bincrafters-remove-outdated bincrafters
#### USAGE
```
bincrafters-remove-outdated [-h] [--yes] [--ignore] [--dry-run] [--pattern PATTERN | --package-list-file PACKAGE_LIST_FILE] [--version] remoteConan Remove Outdated
positional arguments:
remote Conan remote to be cleaned e.g conan-centeroptional arguments:
-h, --help show this help message and exit
--yes, -y Do not ask for confirmation
--ignore, -i Ignore errors receive from remote
--dry-run, -d Check which packages will be removed only
--pattern PATTERN, -p PATTERN
Pattern to filter package name to be removed. e.g
Boost/*
--package-list-file PACKAGE_LIST_FILE, -plf PACKAGE_LIST_FILE
Package list file path
--version, -v show program's version number and exit
```##### FILTER
If you need to remove only some packages, there are some options:###### Pattern
You could apply a pattern to filter the reference name.For example, removing all Boost packages from bincrafters:
bincrafters-remove-outdated --pattern=Boost/* bincrafters
###### Package List
You could use a file to list all packages to be removed.For example, remove outdated builds from Boost, Poco and OpenSSL using a text file:
```
boost/1.71.0@conan/stable
poco/1.9.1@pocoproject/stable
openssl/1.0.2s@conan/stable
```bincrafters-remove-outdated --package-list-file=package_list.txt bincrafters
##### Testing and Development
To install extra packages required to testpip install .[test]
#### TESTING
To run all unit test + code coverage, just execute:pip install -r bincrafters_remove_outdated/requirements_test.txt
cd tests
pytest -v --cov=bincrafters_remove_outdated#### REQUIREMENTS and DEVELOPMENT
To develop or run conan remove outdatedpip install -r bincrafters_remove_outdated/requirements.txt
#### UPLOAD
There are two ways to upload this project.##### Travis CI
After to create a new tag, the package will be uploaded automatically to PyPi.
Both username and password (encrypted) are in travis file.
Only one job will upload, the others will be skipped.##### Command line
To upload this package on pypi (legacy mode):pip install twine
python setup.py sdist
twine upload dist/*#### LICENSE
[MIT](LICENSE.md)