# Gitea Auto Update
[![Build Status](https://github.com/CMiksche/gitea-auto-update/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/CMiksche/gitea-auto-update/actions/workflows/test.yml)
[![Publish Package](https://github.com/CMiksche/gitea-auto-update/actions/workflows/pypi-publish.yml/badge.svg)](https://github.com/CMiksche/gitea-auto-update/actions/workflows/pypi-publish.yml)
[![PyPI version](https://badge.fury.io/py/gitea-auto-update.svg)](https://badge.fury.io/py/gitea-auto-update)
[![Downloads](https://pepy.tech/badge/gitea-auto-update)](https://pepy.tech/project/gitea-auto-update)
![GitHub](https://img.shields.io/github/license/cmiksche/gitea-auto-update?style=flat)
[![Twitter Follow](https://img.shields.io/twitter/follow/cmiksche?style=social)](https://twitter.com/cmiksche)
[![Mastodon Follow](https://img.shields.io/mastodon/follow/106336578279256330?domain=https%3A%2F%2Fmastodon.social&style=social)](https://mastodon.social/@cmiksche)
Script for an automatic update of gitea. Should be run locally on the gitea server. Has options for updating via new binary file or build from source.
This project is on life-support. I focus on bringing new features to my paid [Autoupdate](https://chapati.systems/autoupdate/) tool.
## Want to update more?
> If you want to update Gitea and other software (like Drone, Caddy, Podman, Python, Zitadel and Kanboard), you should check out [Autoupdate](https://chapati.systems/autoupdate/).
>
> This new tool of mine was built as a single binary with a config file and tested on multiple Linux systems.
## Procedure
* Get Gitea Version from the Gitea CLI and if that fails from the Gitea API
* Get latest Release via GitHub API
* Check if there is a newer Version
* If there is a newer Version:
* If binary file was selected:
* Download new version
* Check sha256
* Overwrite old version
* If build from source is active:
* Checkout new release branch
* Build binary
* Overwrite old binary
## General Information
License: GNU General Public License
Author: Christoph Daniel Miksche (m5e.de)
Uses python version 3
## Dependencies
Ensure `pip3`, `setuptools`, `xz-utils` and `wheel` dependencies are installed on the system you are running this script in. (Most Linux OS like Ubuntu or Debian come with these pre-installed)
## Installation
Create a settings.ini file on your system. Example:
````
[Gitea]
site=https://your-gitea-instance.com/api/v1/version
apiUrl=https://api.github.com/repos/go-gitea/gitea/releases/latest
system=linux-amd64
file=/usr/local/bin/gitea
tmpDir=/tmp/
buildFromSource=
sourceDir=
logFile=update.log
````
Use the following command to install gitea-auto-update.
```
sudo pip3 install gitea-auto-update
```
Enter the command `gitea-auto-update --settings=/path/to/settings.ini` in your commandline.
If you want to schedule your updates, edit your /etc/crontab file.
## Tutorials
* English: http://blog.m5e.de/gitea/update/upgrade/bash/script/2018/11/26/gitea-auto-update-script.html
* German: https://blog.wronnay.net/automatische-gitea-updates/
## Development
The following instructions help you for developing.
* Check out the [Contribution Guidelines](CONTRIBUTING.md).
* Clone this git repo
* Install pipenv: `pip install pipenv`
* Install all dependencies: `pipenv install`
* Install git pre-commit hooks (for pylint and gitlint) with `pre-commit install`
* You can run the tests with `python -m unittest`
* After pushing, you should check the build status which currently checks the tests, pylint and the commit message format.
### Notes
The following steps are automatically executed via pre-commit hooks.
* You can run pylint with `pylint gitea_auto_update`
* After changes and commit, you can check if your commit message follows the contribution guidelines with `gitlint`. If there is a problem, gitlint will show you a error message.
## Contributors
See https://github.com/CMiksche/gitea-auto-update/graphs/contributors
Thank you for your support!
Interested in contributing to this project? Check out the [Contribution Guidelines](CONTRIBUTING.md).
Raw data
{
"_id": null,
"home_page": "https://github.com/CMiksche/gitea-auto-update",
"name": "gitea-auto-update",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3",
"maintainer_email": null,
"keywords": "gitea, update, debian, linux",
"author": "Christoph Miksche",
"author_email": "autoupdate@chapati.systems",
"download_url": null,
"platform": null,
"description": "# Gitea Auto Update\n\n[![Build Status](https://github.com/CMiksche/gitea-auto-update/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/CMiksche/gitea-auto-update/actions/workflows/test.yml)\n[![Publish Package](https://github.com/CMiksche/gitea-auto-update/actions/workflows/pypi-publish.yml/badge.svg)](https://github.com/CMiksche/gitea-auto-update/actions/workflows/pypi-publish.yml)\n[![PyPI version](https://badge.fury.io/py/gitea-auto-update.svg)](https://badge.fury.io/py/gitea-auto-update)\n[![Downloads](https://pepy.tech/badge/gitea-auto-update)](https://pepy.tech/project/gitea-auto-update)\n![GitHub](https://img.shields.io/github/license/cmiksche/gitea-auto-update?style=flat)\n[![Twitter Follow](https://img.shields.io/twitter/follow/cmiksche?style=social)](https://twitter.com/cmiksche)\n[![Mastodon Follow](https://img.shields.io/mastodon/follow/106336578279256330?domain=https%3A%2F%2Fmastodon.social&style=social)](https://mastodon.social/@cmiksche)\n\nScript for an automatic update of gitea. Should be run locally on the gitea server. Has options for updating via new binary file or build from source.\n\nThis project is on life-support. I focus on bringing new features to my paid [Autoupdate](https://chapati.systems/autoupdate/) tool.\n\n## Want to update more?\n\n> If you want to update Gitea and other software (like Drone, Caddy, Podman, Python, Zitadel and Kanboard), you should check out [Autoupdate](https://chapati.systems/autoupdate/).\n>\n> This new tool of mine was built as a single binary with a config file and tested on multiple Linux systems.\n\n## Procedure\n* Get Gitea Version from the Gitea CLI and if that fails from the Gitea API\n* Get latest Release via GitHub API\n* Check if there is a newer Version\n* If there is a newer Version:\n * If binary file was selected:\n * Download new version\n * Check sha256\n * Overwrite old version\n * If build from source is active:\n * Checkout new release branch\n * Build binary\n * Overwrite old binary\n\n\n## General Information\nLicense: GNU General Public License\n\nAuthor: Christoph Daniel Miksche (m5e.de)\n\nUses python version 3\n\n\n## Dependencies\nEnsure `pip3`, `setuptools`, `xz-utils` and `wheel` dependencies are installed on the system you are running this script in. (Most Linux OS like Ubuntu or Debian come with these pre-installed)\n\n## Installation\n\nCreate a settings.ini file on your system. Example:\n\n ````\n[Gitea]\nsite=https://your-gitea-instance.com/api/v1/version\napiUrl=https://api.github.com/repos/go-gitea/gitea/releases/latest\nsystem=linux-amd64\nfile=/usr/local/bin/gitea\ntmpDir=/tmp/\nbuildFromSource=\nsourceDir=\nlogFile=update.log\n ````\n\nUse the following command to install gitea-auto-update.\n\n ```\n sudo pip3 install gitea-auto-update\n ```\n\nEnter the command `gitea-auto-update --settings=/path/to/settings.ini` in your commandline.\n\nIf you want to schedule your updates, edit your /etc/crontab file.\n\n## Tutorials\n\n* English: http://blog.m5e.de/gitea/update/upgrade/bash/script/2018/11/26/gitea-auto-update-script.html\n* German: https://blog.wronnay.net/automatische-gitea-updates/\n\n## Development\n\nThe following instructions help you for developing.\n\n* Check out the [Contribution Guidelines](CONTRIBUTING.md).\n* Clone this git repo\n* Install pipenv: `pip install pipenv`\n* Install all dependencies: `pipenv install`\n* Install git pre-commit hooks (for pylint and gitlint) with `pre-commit install`\n* You can run the tests with `python -m unittest`\n* After pushing, you should check the build status which currently checks the tests, pylint and the commit message format.\n\n### Notes\n\nThe following steps are automatically executed via pre-commit hooks.\n\n* You can run pylint with `pylint gitea_auto_update`\n* After changes and commit, you can check if your commit message follows the contribution guidelines with `gitlint`. If there is a problem, gitlint will show you a error message.\n\n## Contributors\n\nSee https://github.com/CMiksche/gitea-auto-update/graphs/contributors\n\nThank you for your support!\n\nInterested in contributing to this project? Check out the [Contribution Guidelines](CONTRIBUTING.md).\n",
"bugtrack_url": null,
"license": "GPLv3",
"summary": "A script which can update gitea to a new version.",
"version": "2.0.13",
"project_urls": {
"Homepage": "https://github.com/CMiksche/gitea-auto-update"
},
"split_keywords": [
"gitea",
" update",
" debian",
" linux"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "6d5e1a4f7df1374739c299b721cbe74fdbc1de92d8a84671613f3bc79045bb15",
"md5": "073297ad153ca25ef5477a6a790b54ae",
"sha256": "a98b0d1240940b423c33a5d56dbe6b65cd6a07903f1b38d27c9eb215b7e3b709"
},
"downloads": -1,
"filename": "gitea_auto_update-2.0.13-py3-none-any.whl",
"has_sig": false,
"md5_digest": "073297ad153ca25ef5477a6a790b54ae",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 20813,
"upload_time": "2024-08-07T11:38:24",
"upload_time_iso_8601": "2024-08-07T11:38:24.186888Z",
"url": "https://files.pythonhosted.org/packages/6d/5e/1a4f7df1374739c299b721cbe74fdbc1de92d8a84671613f3bc79045bb15/gitea_auto_update-2.0.13-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-07 11:38:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "CMiksche",
"github_project": "gitea-auto-update",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "gitea-auto-update"
}