package/ranger: bump to version 1.9.3

- Switch to github to get latest release
- Drop patch (already in version)
- Update RANGER_DO_NOT_GENERATE_BYTECODE_AT_RUNTIME as scripts/ranger
  symlink to ranger.py has been removed
- Update hash of AUTHORS and add LICENSE file:
  8263cbac88

https://github.com/ranger/ranger/blob/v1.9.3/CHANGELOG.md

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2023-11-05 22:39:23 +01:00 committed by Thomas Petazzoni
parent 2edabebbb4
commit c4c555bd57
5 changed files with 8 additions and 39 deletions

View File

@ -1201,7 +1201,6 @@ package/quagga/0002-lib-prefix.h-fix-build-with-gcc-10.patch Upstream
package/quagga/0003-Fix-build-with-gcc-10.patch Upstream
package/quotatool/0001-fix-missing-__P-definition-for-musl-compile.patch Upstream
package/racehound/0001-Fix-module-install-path-lib-instead-of-usr-lib-prefi.patch Upstream
package/ranger/0001-colorscheme-check-for-compiled-python-files.patch Upstream
package/rapidxml/0001-ensure-internal-print-operations-are-declared-before.patch Upstream
package/raspberrypi-usbboot/0001-Makefile-allow-passing-CFLAGS-LDFLAGS.patch Upstream
package/rdesktop/0001-8bit-colors.patch Sob Upstream

View File

@ -1,31 +0,0 @@
From 654e3116825c4d12340613196279fb13a5662113 Mon Sep 17 00:00:00 2001
From: Thijs Vermeir <thijsvermeir@gmail.com>
Date: Tue, 20 Oct 2015 18:13:36 +0200
Subject: [PATCH] colorscheme: check for compiled python files
Some systems only provide *.pyc files
Patch accepted upstream:
https://github.com/hut/ranger/commit/d69f1ed3207c785d1a39ddd2992f6abb021b7540
Signed-off-by: Thijs Vermeir <thijsvermeir@gmail.com>
---
ranger/gui/colorscheme.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ranger/gui/colorscheme.py b/ranger/gui/colorscheme.py
index d6afcac..d2b3b2d 100644
--- a/ranger/gui/colorscheme.py
+++ b/ranger/gui/colorscheme.py
@@ -86,7 +86,7 @@ def _colorscheme_name_to_class(signal):
usecustom = not ranger.arg.clean
def exists(colorscheme):
- return os.path.exists(colorscheme + '.py')
+ return os.path.exists(colorscheme + '.py') or os.path.exists(colorscheme + '.pyc')
def is_scheme(x):
try:
--
2.6.1

View File

@ -13,7 +13,7 @@ config BR2_PACKAGE_RANGER
file launcher that is good at automatically finding out
which program to use for what file type.
http://ranger.nongnu.org
https://ranger.github.io
comment "ranger needs a toolchain w/ wchar, threads, dynamic library"
depends on BR2_USE_MMU

View File

@ -1,4 +1,5 @@
# Locally calculated after checking pgp signature
sha256 94f6e342daee4445f15db5a7440a11138487c49cc25da0c473bbf1b8978f5b79 ranger-1.7.2.tar.gz
sha256 ce088a04c91c25263a9675dc5c43514b7ec1b38c8ea43d9a9d00923ff6cdd251 ranger-1.9.3.tar.gz
# Locally computed
sha256 fa3b40d44066b033ac8a134b792a4a4a1915aa7bc7757098e0f67080648a3271 AUTHORS
sha256 ef973501404bd0556fd47324411fc69679f30daf7128e042eafa64e2c4f9ecb9 AUTHORS
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE

View File

@ -4,11 +4,11 @@
#
################################################################################
RANGER_VERSION = 1.7.2
RANGER_SITE = http://ranger.nongnu.org
RANGER_VERSION = 1.9.3
RANGER_SITE = https://ranger.github.io
RANGER_SETUP_TYPE = setuptools
RANGER_LICENSE = GPL-3.0
RANGER_LICENSE_FILES = AUTHORS
RANGER_LICENSE_FILES = AUTHORS LICENSE
# The ranger script request python to be called with -O (optimize generated
# bytecode slightly; also PYTHONOPTIMIZE=x). This implicitly requires the python
@ -16,7 +16,7 @@ RANGER_LICENSE_FILES = AUTHORS
# files are installed.
define RANGER_DO_NOT_GENERATE_BYTECODE_AT_RUNTIME
$(SED) 's%/usr/bin/python -O%/usr/bin/python%g' $(@D)/scripts/ranger
$(SED) 's%/usr/bin/python -O%/usr/bin/python%g' $(@D)/ranger.py
endef
ifeq ($(BR2_PACKAGE_PYTHON3_PYC_ONLY),y)