From 512aa3e8fe7116b88e3805ca0f54eb0a39118b26 Mon Sep 17 00:00:00 2001 From: Alarig Le Lay Date: Sat, 13 Jun 2020 15:11:43 +0200 Subject: [PATCH] games-util/factorio-mod-updater: Version bump to 0.2.0 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Alarig Le Lay --- games-util/factorio-mod-updater/Manifest | 1 + .../factorio-mod-updater-0.2.0.ebuild | 30 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 games-util/factorio-mod-updater/factorio-mod-updater-0.2.0.ebuild diff --git a/games-util/factorio-mod-updater/Manifest b/games-util/factorio-mod-updater/Manifest index 9a66d50..f45444b 100644 --- a/games-util/factorio-mod-updater/Manifest +++ b/games-util/factorio-mod-updater/Manifest @@ -1,2 +1,3 @@ DIST factorio-mod-updater-0.1.0.tar.gz 5255 BLAKE2B 56ac80d3190bd58edd698435ab332f61656071c82d41a1bafb1d33145a62eacddf6a2561c50ee8ba5feaae2332e4875c2d6a62184a771b758965634fa4056591 SHA512 492cf79c0a6147a71cfbe0341be0be32310979893a834a9561d654915d96e48b45940e7f05568603ef0d82a1cad7944c48f56d1b2d0b34ba585da8a20f6ed39f DIST factorio-mod-updater-0.1.1.tar.gz 5268 BLAKE2B 2734ef968d5314b3dfc9ea59cac39ff9280833f6314e0876dc72b3d4736376a28bbe7e83515fdf9a704dd454abf4ba34026d87da41b1654b4068906218180e89 SHA512 c80dafe28206d91a26bc8e34c88fae5efe1eb7f40d3d3fef7db355b1d6fc38bb1ea3548ad08b562e81142aa6e8c9cb327ce97df3dc5d9e3d0f65bcb3530065c8 +DIST factorio-mod-updater-0.2.0.tar.gz 6255 BLAKE2B 3278a85f02b8f58439fc7543d15d85c6b781dd1a60de06ba7530096a247c124fc36292ccc399a6d3160ea97fccb78dcc3a203610f60ca1441426c98a3423287a SHA512 5935509b7f69ed9edd7d8e725056c1de82b4c5ff5f8f9b872122843117232b91f3093c76e20cf20522c4c7a949edccd05bb4b418bdd3e1840b75514218d584e5 diff --git a/games-util/factorio-mod-updater/factorio-mod-updater-0.2.0.ebuild b/games-util/factorio-mod-updater/factorio-mod-updater-0.2.0.ebuild new file mode 100644 index 0000000..2d2bc21 --- /dev/null +++ b/games-util/factorio-mod-updater/factorio-mod-updater-0.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit python-r1 + +DESCRIPTION="Python script to update mods on a dedicated factorio server" +HOMEPAGE="https://github.com/pdemonaco/factorio-mod-updater" +MY_GITHUB_AUTHOR="pdemonaco" +SRC_URI="https://github.com/${MY_GITHUB_AUTHOR}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="all-rights-reserved" +RESTRICT="bindist mirror" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=" + ${DEPEND} + dev-python/requests +" +BDEPEND="" + +src_install() { + default + python_foreach_impl python_newscript mod_updater.py factorio-mod-updater +}