Commit Graph

56 Commits

Author SHA1 Message Date
Rudi Heitbaum
8ab89562c9 addons: reset version
Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
2023-12-07 11:36:03 +00:00
mglae
300721ffcc script.config.vdr: Add missing textures and addon (1) 2023-11-14 10:55:43 +00:00
Rudi Heitbaum
c2a52dc4ac toolchain: migrate from p7zip to 7-zip
The -l option to 7za is not included the 7-Zip 22.01 version,
it was an option added to the p7zip version:

  don't store symlinks; store the files/directories they point to
  (CAUTION : the scanning stage can never end because of recursive
  symlinks like 'ln -s .. ldir')

The default for p7zip 16.02 7za was to store symlinks.
The default for 7-zip 22.01 7za is not to store symlinks.

test output is below and the -l option has been dropped from scripts/install_addon

$ ls -l test
total 4
-rw-r--r-- 1 docker docker 4 Jan 29 10:35 abc
lrwxrwxrwx 1 docker docker 3 Jan 29 10:35 def -> abc

7-Zip (a) 22.01 (x64) : Copyright (c) 1999-2022 Igor Pavlov : 2022-07-15
 64-bit locale=en_US.UTF-8 Threads:16
$ 7za a -mx9 -bsp0 -bso0 -tzip test.zip test
$ unzip -v test.zip
Archive:  test.zip
 Length   Method    Size  Cmpr    Date    Time   CRC-32   Name
--------  ------  ------- ---- ---------- ----- --------  ----
       0  Stored        0   0% 2023-01-29 10:36 00000000  test/
       4  Stored        4   0% 2023-01-29 10:35 4788814e  test/abc
       4  Stored        4   0% 2023-01-29 10:35 4788814e  test/def
--------          -------  ---                            -------
       8                8   0%                            3 files

7-Zip (a) [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21
p7zip Version 16.02 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,16 CPUs x64)
$ 7za a -mx9 -bsp0 -bso0 -tzip test.zip test
$ unzip -v test.zip
 Length   Method    Size  Cmpr    Date    Time   CRC-32   Name
--------  ------  ------- ---- ---------- ----- --------  ----
       0  Stored        0   0% 2023-01-29 10:35 00000000  test/
       4  Stored        4   0% 2023-01-29 10:35 4788814e  test/abc
       3  Stored        3   0% 2023-01-29 10:35 352441c2  test/def
--------          -------  ---                            -------
       7                7   0%                            3 files

7-Zip (a) [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21
p7zip Version 16.02 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,16 CPUs x64)
$ 7za a -l -mx9 -bsp0 -bso0 -tzip test.zip test
$ unzip -v test.zip
Archive:  test.zip
 Length   Method    Size  Cmpr    Date    Time   CRC-32   Name
--------  ------  ------- ---- ---------- ----- --------  ----
       0  Stored        0   0% 2023-01-29 10:35 00000000  test/
       4  Stored        4   0% 2023-01-29 10:35 4788814e  test/abc
       4  Stored        4   0% 2023-01-29 10:35 4788814e  test/def
--------          -------  ---                            -------
       8                8   0%                            3 files
2023-02-04 03:03:19 +00:00
CvH
0f4fd5307c addons: reset versions to 0 2022-12-05 20:47:46 +01:00
CvH
66623697a7 addons: reset changelogs 2022-12-05 20:39:40 +01:00
mglae
c799318a78 script.config.vdr: convert to Python3 (105) 2021-01-24 15:29:18 +01:00
Ian Leonard
eeab3d92b4 addons: automated code cleanup
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2021-01-19 19:33:41 +00:00
heitbaum
49735d1221 driverselect: update to 2020-09-14 (3.0.1+matrix)
change from fork:
- CvH/script.program.driverselect/tree/Matrix
to uostream
- b-jesch/script.program.driverselect/tree/Matrix

patch included and version bumped in upstream
2021-01-15 11:29:08 +00:00
CvH
0fbc35eda3 addons: drop requirement for os.libreelec.tv 2020-09-06 18:20:10 +02:00
MilhouseVH
7e8a3e88fd driverselect: update to driverselect-8fe0e3d with xbmc-python 3.0.0 ABI support 2020-03-03 18:19:02 +00:00
MilhouseVH
061140b226 xbmc.python: bump minimum Python ABI support 2020-03-03 18:18:31 +00:00
CvH
1ebd7516dc driverselect: update to python3 2020-02-22 11:42:32 +01:00
MilhouseVH
01196a4115 addons: need both xmlstarlet+p7zip as an absolute minimum 2020-01-15 18:49:15 +00:00
MilhouseVH
bbd14838a0 script.config.vdr: needs xmlstarlet 2019-12-27 12:31:56 +00:00
MilhouseVH
d4f6326142 packages: align source code licence usage with project licence 2019-03-26 18:05:50 +00:00
mglae
ab6d3251f1 script.config.vdr 103
- remove "HD Channels" option
- fix for Leia skinning engine changes
- convert addon.xml language format to latest
- only show revision number once
2018-11-14 00:45:56 +01:00
Ian Leonard
15282eb38b treewide: retire $SED
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2018-11-04 01:12:58 +00:00
CvH
2923f2b56a cleanup: remove PKG_SOURCE_DIR 2018-10-22 15:06:11 +02:00
Sascha Kuehndel (InuSasha)
6f2b08eab0 create_addon: fixes
- drop group retroplayer
2018-07-29 11:59:52 +02:00
CvH
ca33bf8cd7 spdx: packages/addons 2018-07-17 23:58:49 +02:00
chewitt
aba402abfa addons: update script.config.vdr maintainer 2018-07-08 07:36:15 +04:00
CvH
fbcc62a95c moonlight: mark add-on as broken 2018-05-29 11:39:21 +02:00
Alex Deryskyba
28e998af09 moonlight: update addon 2018-03-26 09:56:57 +03:00
MilhouseVH
9dcc9a05ef moonlight: update to moonlight-4d94439 2018-01-04 18:50:23 +00:00
cvh
540822f224 driver addons: add driver selector script 2017-12-14 11:21:58 +01:00