From 0b572c4cf828cd91a905d630a4aeb88cd2c579e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20L=2E=20C=2E=20Moreira?= Date: Sun, 7 May 2023 17:46:11 -0300 Subject: [PATCH] ranger: add changelog, adopt --- srcpkgs/ranger/template | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template index 4c2a670374e9..3ba965172b3b 100644 --- a/srcpkgs/ranger/template +++ b/srcpkgs/ranger/template @@ -3,21 +3,25 @@ pkgname=ranger version=1.9.3 revision=4 build_style=python3-module -pycompile_module="ranger" hostmakedepends="python3" makedepends="python3-devel" depends="python3" checkdepends="python3-pytest flake8 ncurses-term" short_desc="File manager with an ncurses frontend written in Python" -maintainer="Orphaned " +maintainer="André L. C. Moreira " license="GPL-3.0-only" homepage="https://ranger.github.io" +changelog="https://raw.githubusercontent.com/ranger/ranger/master/CHANGELOG.md" distfiles="${homepage}/${pkgname}-${version}.tar.gz" checksum=ce088a04c91c25263a9675dc5c43514b7ec1b38c8ea43d9a9d00923ff6cdd251 do_check() { # test_pylint is failing, # As a distro, we don't want to check their code style - TERM=linux TERMINFO=/usr/share/terminfo \ + + # as workaround to fix this step, we set the 'PYTHON' variable due the lack + # of 'which' command (whose is used in the ranger's Makefile to find the + # suitable python version) in base-chroot. + PYTHON=python TERM=linux TERMINFO=/usr/share/terminfo \ make test_flake8 test_doctest test_pytest test_other }