summary refs log tree commit diff
path: root/pkgs/tools/archivers
Commit message (Collapse)AuthorAge
* _7zz: correct license (#163999)j-k2022-03-18
| | | | | | | | | | | | | | | | | | * _7zz: correct license and remove p7zip dependency The code under Compress/Rar* is licensed under a specific unRAR license Also Compress/LzfseDecoder.cpp is covered by BSD3 The unRAR code is removed from the `.tar.xz` since the license posits you agree or remove the code from your hard drive This adds some complexity to updating 7zz so there is also an update script Meta has been updated and tweaked Source is now downloaded from sourceforge in the `.tar.xz` version to avoid depending on p7zip * _7zz: add notice of the license updates and optional unRAR licenced code
* p7zip: clarify license and remove unRAR code from src drv06kellyjac2022-03-16
| | | | | | | | | | | | The code under Compress/Rar* is licensed under a specific unRAR license Also Compress/LzfseDecoder.cpp is covered by BSD3 The unRAR code is removed from the source drv since the license posits you agree or remove the code from your hard drive This adds some complexity to updating p7zip so there is also an update script Meta has been updated and tweaked
* unrar: 6.1.5 -> 6.1.6R. Ryantm2022-03-11
|
* unrar: 6.1.4 -> 6.1.5R. Ryantm2022-02-26
|
* unshield: 1.4.3 -> 1.5.1R. RyanTM2022-02-24
| | | | | | | | * unshield: 1.4.3 -> 1.5.0 (#148886) * unshield: 1.5.0 -> 1.5.1 Fix library name and versioning broken in 1.5.0 Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
* Merge pull request #153891 from ehmry/tarlzRenaud2022-02-16
|\ | | | | tarlz: 0.21 -> 0.22
| * tarlz: 0.21 -> 0.22Emery Hemingway2022-01-18
| |
* | Merge pull request #157808 from chkno/fix-sources.gentoo.org-urlsPascal Wittmann2022-02-02
|\ \ | | | | | | Fix broken sources.gentoo.org fetch URLs
| * | Fix broken sources.gentoo.org fetch URLsScott Worley2022-02-01
| | | | | | | | | | | | | | | sources.gentoo.org is deprecated: https://gitweb.gentoo.org/sites/www.git/commit/_includes/layout/header.html?id=526ebb46632332d44b91e0cc5a517d137845053a
* | | 7zz: compile optimized assembly code for x86_64Thiago Kenji Okada2022-01-31
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use uasm to compile the optimized code instead of generic C code for faster operations. Before: ``` 7zz x 10.83s user 0.40s system 98% cpu 11.439 total ``` After: ``` 7zz x 6.87s user 0.40s system 98% cpu 7.395 total ```
* | unrar: 6.1.3 -> 6.1.4R. Ryantm2022-01-25
| |
* | Remove myself from maintainersAndreas Rammhold2022-01-20
|/ | | | I don't have time and energy to deal with all of this anymore.
* Merge pull request #154089 from NickCao/zpaq7c6f434c2022-01-09
|\ | | | | zpaq: cleanup and fix cross compilation
| * zpaq: cleanup and fix cross compilationNick Cao2022-01-09
| |
* | zpaqd: fix cross compilationNick Cao2022-01-09
|/
* 7zz: 21.04 -> 21.07Thiago Kenji Okada2022-01-07
|
* treewide: replace http://github.com with https://github.comBen Siraphob2022-01-07
|
* unzoo: init at 4.4AndersonTorres2022-01-02
|
* wimlib: 1.13.4 -> 1.13.5R. Ryantm2021-12-30
|
* torrent7z: init at 1.3cirno-9992021-12-26
| | | | | | torrent7z: apply suggestions from code review Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>
* Merge master into staging-nextgithub-actions[bot]2021-12-21
|\
| * zpaqd: refactorFelix Buehler2021-12-21
| |
* | Merge branch 'master' into staging-nextMartin Weinelt2021-12-13
|\|
| * unrar: 6.1.2 -> 6.1.3R. Ryantm2021-12-13
| |
| * tarlz: 0.11 -> 0.21R. Ryantm2021-12-13
| |
* | Merge master into staging-nextgithub-actions[bot]2021-12-06
|\|
| * unrar: 6.0.7 -> 6.1.2R. Ryantm2021-12-06
| |
* | Merge master into staging-nextgithub-actions[bot]2021-12-03
|\|
| * tarlz: init at 0.11Emery Hemingway2021-12-03
| |
* | cpio: add debug outputAlyssa Ross2021-12-02
|/
* Merge pull request #146843 from arkivm/darwin-fixes-arc_unpackerDomen Kožar2021-11-22
|\ | | | | arc_unpacker: Move to catch2 to support aarch64-darwin
| * arc_unpacker: Move to catch2 to support aarch64-darwinVikram Narayanan2021-11-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | catch is ancient and has no support for aarch64-darwin. The following snippet is an example of what is supported on darwin platforms in catch (i.e., prior to v2). ``` #ifdef CATCH_PLATFORM_MAC #if defined(__ppc64__) || defined(__ppc__) #define CATCH_TRAP() \ __asm__("li r0, 20\nsc\nnop\nli r0, 37\nli r4, 2\nsc\nnop\n" \ : : : "memory","r0","r3","r4" ) /* NOLINT */ #else #define CATCH_TRAP() __asm__("int $3\n" : : /* NOLINT */ ) #endif ```
* | arj: fix build on darwinSebastián Mancilla2021-11-21
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix wrong header for statfs function. Use gccStdenv to build with GCC on all systems. GCC is hardcoded in configure.in, but after setting CC_FOR_BUILD to cc to use Clang, the build fails anyway when running a post-compilation command: clang -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"<out>/lib/arj\"" -D_UNIX -g -O2 -o darwin20.6.0/en/rs/arj/arj <objects_files> : darwin20.6.0/en/rs/arj/arj ./darwin20.6.0/en/rs/tools/join ./darwin20.6.0/en/rs/arj/arj ./darwin20.6.0/en/rs/arjsfxjr/arjsfxjr JOIN v 1.30 [26/04/2003] Not a part of any binary package! Copying .. done! ./darwin20.6.0/en/rs/tools/join ./darwin20.6.0/en/rs/arj/arj ./darwin20.6.0/en/rs/arjsfx/arjsfx JOIN v 1.30 [26/04/2003] Not a part of any binary package! Copying ... done! ./darwin20.6.0/en/rs/tools/join ./darwin20.6.0/en/rs/arj/arj ./darwin20.6.0/en/rs/arjsfxv/arjsfxv JOIN v 1.30 [26/04/2003] Not a part of any binary package! Copying ..... done! ./darwin20.6.0/en/rs/tools/join ./darwin20.6.0/en/rs/arj/arj ./darwin20.6.0/en/rs/sfxstub/sfxstub JOIN v 1.30 [26/04/2003] Not a part of any binary package! Copying . done! rm -f ./darwin20.6.0/en/rs/help.arj TZ=UTC0 ./darwin20.6.0/en/rs/arj/arj a ./darwin20.6.0/en/rs/help.arj -+ -t1f -2d -e -jm -jh65535 -jt -hdo200506231314 ./resource/en/arj?.txt ARJ32 v 3.10, Copyright (c) 1998-2004, ARJ Software Russia. Creating archive : ./darwin20.6.0/en/rs/help.arj Adding ./resource/en/arjl.txt 37.2% Adding ./resource/en/arjs.txt 47.3% Testing arjl.txt OK Testing arjs.txt OK 2 file(s) ./darwin20.6.0/en/rs/tools/join ./darwin20.6.0/en/rs/arj/arj ./darwin20.6.0/en/rs/help.arj JOIN v 1.30 [26/04/2003] Not a part of any binary package! Copying . done! ./darwin20.6.0/en/rs/tools/postproc darwin20.6.0/en/rs/arj/arj POSTPROC v 1.30 [17/01/2003] Not a part of any binary package! Patch not found make[1]: *** [GNUmakefile:398: darwin20.6.0/en/rs/arj/arj] Error 3
* pax: fix build on darwinSebastián Mancilla2021-11-18
|
* Merge pull request #145444 from thiagokokada/build-unar-on-macosxThiago Kenji Okada2021-11-12
|\ | | | | unar: make it build on Darwin
| * unar: make it build on DarwinThiago Kenji Okada2021-11-10
| | | | | | | | Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
* | 7zz: 21.01 -> 21.04 (#145031)Peter Hoeg2021-11-12
| | | | | | | | | | | | | | | | | | * 7zz: 21.01 -> 21.04 Also build from source instead of using the binaries. We cannot (yet) build the fully optimized version as it requires the ASMC assembler which currently doesn't build with GCC.
* | unrar-wrapper: init at 1.0.0Artturin2021-11-09
|/
* CuboCore.packages: addeddan4ik2021-10-20
|
* Merge pull request #141081 from trofi/fix-p7zip-determinismMichael Raskin2021-10-09
|\ | | | | p7zip: fix determinism of compressed manpages
| * p7zip: fix determinism of compressed manpagesSergei Trofimovich2021-10-09
| | | | | | | | | | | | | | | | | | | | | | | | | | diffoscope shown non-determinism in embedded gzip timestamp: --- p7zip-17.04/share/man/man1/7z.1.gz +++ p7zip-17.04.check/share/man/man1/7z.1.gz ─ filetype from file(1) @@ -1 +1 @@ -gzip compressed data, was "7z.1", last modified: Fri Oct 1 14:14:55 2021, from Unix +gzip compressed data, was "7z.1", last modified: Sat Oct 9 08:15:33 2021, from Unix Fix it by using `gzip -n`.
* | xtrt: set meta.mainProgramfigsoda2021-10-08
|/
* libgpg-error: rename from libgpgerrorRyan Burns2021-10-06
| | | | Matches pname and upstream project name
* Merge master into staging-nextgithub-actions[bot]2021-10-02
|\
| * Merge pull request #139993 from thiagokokada/make-rar-works-on-macosfigsoda2021-10-01
| |\ | | | | | | rar: add support to x86_64-darwin
| | * rar: add support to x86_64-darwinThiago Kenji Okada2021-09-30
| | |
* | | Merge master into staging-nextgithub-actions[bot]2021-10-01
|\| |
| * | unrar: 5.9.2 -> 6.0.7Thiago Kenji Okada2021-10-01
| |/
* | Merge master into staging-nextgithub-actions[bot]2021-09-30
|\|
| * rar: init at 6.0.2Thiago Kenji Okada2021-09-29
| |