Commit graph

33 commits

Author SHA1 Message Date
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
CvH
0fbc35eda3 addons: drop requirement for os.libreelec.tv 2020-09-06 18:20:10 +02:00
MilhouseVH
061140b226 xbmc.python: bump minimum Python ABI support 2020-03-03 18:18:31 +00: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
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
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
Sascha Kuehndel (InuSasha)
3b9fcfc3b4
buildsystem: rename TOOLCHAIN other to manual 2017-11-22 00:41:13 +01:00
Sascha Kuehndel (InuSasha)
da38cd92e3
buildsystem: set PKG_TOOLCHAIN for packages, that need it 2017-11-22 00:41:13 +01:00
Sascha Kuehndel (InuSasha)
3846ec7dac
buildsystem: replace PKG_AUTORECONF 2017-11-22 00:41:12 +01:00
MilhouseVH
13dabc00ea checksums: update sha256 checksum after github archive change 2017-09-14 04:12:08 +01:00
Peter Vicman
50a51452be build system: add sha256 checksum to all packages
putting #1597 in use
2017-07-17 20:49:23 +02:00
MilhouseVH
c7b9e90ce4 addons: bump PKG_REV 2017-05-10 22:32:57 +01:00
cvh
e5cbfb8d63 script.config.vdr: update to 100
- reworked the addon a bit and fixed icons
2016-11-26 12:08:57 +01:00
awiouy
e0c2de9b39 Decommission PKG_PRIORITY 2016-09-24 11:57:39 +02:00
awiouy
063df1797e Decommission PKG_ADDON_REPOVERSION 2016-09-13 08:13:07 +02:00
Joerg Felser
cbe327e07e changed libreelec URLs in (mainly) descriptions to https://libreelec.tv
changed libreelec URLs in (mainly) descriptions to https://libreelec.tv

fixup
2016-04-27 11:36:31 +02:00
cvh
20bf13b3c6 script.config.vdr: update to 1.1.3
- fix reading lines from sources.conf in the right order
2016-04-23 01:06:48 +02:00
CvH
012878676e script.config.vdr: update to 1.1.1
- changes the addon icon
2016-04-22 14:34:42 +02:00
Lukas Rusak
03f517da42 addons update for LibreELEC 8.0 2016-04-21 02:32:37 -07:00
CvH
10636f5a71 addons: version bump for LE 7.0 Beta 1
- updated all icons
- tiny Tvheadend bump
2016-04-04 22:33:14 +02:00
CvH
6e0e3266c0 addons: initial LibreELEC version bumb
- cleaned changelogs
- bump version to 7.0.100
- added proper names to addon
2016-03-24 12:40:46 +01:00
Stephan Raue
f51faa070d packages: update license headers
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2016-01-02 17:29:56 +01:00
chewitt
43892e0482 addons: bump packages/addons for 7.0 2015-12-20 04:13:32 +01:00
Stephan Raue
78ad7dc616 script.config.vdr: update to script.config.vdr-1.0.8
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2015-05-30 13:45:29 +02:00
Stefan Saraev
5b0ca543e6 script.config.vdr: forgot to remove toolchain from build deps
toolchain is not really needed for this addon
2015-05-05 21:14:53 +03:00
Stefan Saraev
21ade48093 new addon: script.config.vdr 2015-05-05 12:31:50 +03:00