aboutsummaryrefslogtreecommitdiff
path: root/archivers/p7zip
Commit message (Collapse)AuthorAgeFilesLines
* archivers/p7zip: remove deprecated portMax Brazhnikov2022-05-2510-416/+0
| | | | | | | The port is unmaintained for years and has known vulnerabilities. Use archivers/7-zip instead. PR: 260866
* archivers/p7zip: DeprecateCarlo Strub2021-12-111-0/+3
| | | | | | | Vulnerabilities and no upstream maintenance PR: 260334 Reported by: Chris Hutchinson <portmaster@bsdforge.com>
* archivers/p7zip: Drop maintainership.Raphael Kubo da Costa2021-05-141-1/+1
| | | | | | | | | | | | | I have not had time to properly maintain this port in ages, and do not think this will change in the foreseeable future. Someone needs to push bug 228239 beyond the finishing line (there is some confusion about whether the patch in Debian is enough or not), and hopefully investigate whether a p7zip fork should be adopted, or persuade the 7-Zip maintainer to publish the code for their Linux version (see comment #11 in the PR I mentioned). PR: 228239
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove unnecessary LDFLAGS_i386Mateusz Piotrowski2020-10-031-5/+1
| | | | | | | | | | | archivers/p7zip* ports build just fine without those flags. PR: 230210 Reported by: emaste Approved by: portmgr blanket Notes: svn path=/head/; revision=551317
* Canonicalize CFLAGS across all variants of powerpc64.Mark Linimon2020-09-251-1/+3
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=550076
* archivers/p7zip: fix build on powerpc64Piotr Kubaj2020-03-141-0/+1
| | | | | | | | | | | lld 10 reports the following error: ld: error: relocation R_PPC64_TOC16_LO cannot be used against symbol MatchFinder_GetNumAvailableBytes; recompile with -fPIC >>> defined in LzFind.o >>> referenced by LzFind.c >>> LzFind.o:(MatchFinder_CreateVTable) Notes: svn path=/head/; revision=528445
* First pass at moving manpages to share/man for category a*Baptiste Daroussin2020-01-162-4/+4
| | | | Notes: svn path=/head/; revision=523220
* Hoist LDFLAGS_${ARCH} logic into bsd.port.mkEd Maste2018-09-181-1/+0
| | | | | | | | Approved by: portmgr (bapt) Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=480026
* archivers/p7zip: Fix build with lld as /usr/bin/ld on i386Mahdi Mokhtari2018-08-261-1/+7
| | | | | | | | | | | | PR: 230210 Reported by: emaste Reviewed by: mat, rakuco, tobik Approved by: rakuco (maintainer) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D16813 Notes: svn path=/head/; revision=478120
* Add patch for CVE-2018-5996Raphael Kubo da Costa2018-02-101-0/+211
| | | | | | | | | | | | | | Insufficient exception handling in the method NCompress::NRar3::CDecoder::Code of 7-Zip before 18.00 and p7zip can lead to multiple memory corruptions within the PPMd code, allows remote attackers to cause a denial of service (segmentation fault) or execute arbitrary code via a crafted RAR archive. Obtained from: Debian (link in the patch file) MFH: 2018Q1 Security: 7a2e0063-0e4e-11e8-94c0-5453ed2e2b49 Notes: svn path=/head/; revision=461380
* Add patch from CVE-2017-17969Raphael Kubo da Costa2018-02-102-1/+36
| | | | | | | | | | | Heap-based buffer overflow in 7zip/Compress/ShrinkDecoder.cpp. Obtained from: Debian (link in the actual patch) MFH: 2018Q1 Security: 6d337396-0e4a-11e8-94c0-5453ed2e2b49 Notes: svn path=/head/; revision=461379
* Add a patch to fix the build with Clang 6.0.Raphael Kubo da Costa2018-01-051-0/+33
| | | | | | | | | | | | | | | | | ../../../../CPP/Windows/ErrorMsg.cpp:24:10: error: case value evaluates to -2147024809, which cannot be narrowed to type 'DWORD' (aka 'unsigned int') [-Wc++11-narrowing] case E_INVALIDARG : txt = "E_INVALIDARG"; break ; ^ ../../../../CPP/Common/MyWindows.h:89:22: note: expanded from macro 'E_INVALIDARG' #define E_INVALIDARG ((HRESULT)0x80070057L) ^ HRESULT causes the macro to be parsed as a signed long, so we need to force it to be checked as an unsigned long instead. PR: 224930 Notes: svn path=/head/; revision=458172
* Also pass -fPIC for arm and armv6.Raphael Kubo da Costa2017-10-071-0/+2
| | | | | | | Submitted by: imp Notes: svn path=/head/; revision=451478
* Pass -fPIC on armv7 as well.Raphael Kubo da Costa2017-10-071-0/+1
| | | | | | | | | | | | | | This fixes the following build error: /usr/bin/ld: 7zEncode.o(.text+0x2d04): unresolvable R_ARM_MOVW_ABS_NC relocation against symbol `_ZTIi@@CXXABI_1.3' /usr/bin/ld: final link failed: Nonrepresentable section on output c++: error: linker command failed with exit code 1 (use -v to see invocation) PR: 222852 Submitted by: guyyur@gmail.com Notes: svn path=/head/; revision=451477
* Begin deorbit burn of ia64. We have not attempted to build packages forMark Linimon2017-06-251-1/+0
| | | | | | | | | | | it for many years. While here, alphabetize ARCHs, pet portlint, and modernize usages. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=444251
* Update to 16.02.Raphael Kubo da Costa2016-11-304-47/+5
| | | | | | | | Remove patches for CVE-2016-2334 and CVE-2016-2335 that were integrated upstream. Notes: svn path=/head/; revision=427423
* Import upstream patch to fix CVE-2016-9296Raphael Kubo da Costa2016-11-302-1/+17
| | | | | | | | | | | | | Null pointer dereference can cause 7z to crash. PR: 214940 Reported by: Sevan Janiyan <venture37@geeklan.co.uk> MFH: 2016Q4 Security: 48e83187-b6e9-11e6-b6cf-5453ed2e2b49 Security: CVE-2016-9296 Notes: svn path=/head/; revision=427417
* Cleanup patches, a* categories.Mathieu Arnold2016-07-263-11/+11
| | | | | | | | | | Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=419133
* Add patches for CVE-2016-2334 and CVE-2016-2335.Raphael Kubo da Costa2016-07-153-0/+44
| | | | | | | | | | | | | | While here, use PORTREVISION?= instead of PORTREVISION= to avoid needlessly bumping PORTREVISION in archivers/p7zip-codec-rar. PR: 211114 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> MFH: 2016Q3 Security: a9bcaf57-4a7b-11e6-97f7-5453ed2e2b49 Security: d706a3a3-4a7c-11e6-97f7-5453ed2e2b49 Notes: svn path=/head/; revision=418576
* Update to 15.14.Raphael Kubo da Costa2016-03-143-287/+4
| | | | Notes: svn path=/head/; revision=411056
* - Update to 15.09Sunpoet Po-Chuan Hsieh2015-12-045-96/+41
| | | | | | | | | | | | | | - Convert to new options target helper - Use PORTDOCS - Update patch files Changes: http://sourceforge.net/projects/p7zip/files/p7zip/15.09/README/view PR: 204865 Submitted by: sunpoet (myself) Approved by: rakuco (maintainer) Notes: svn path=/head/; revision=402988
* Apply patch to fix directory traversal vulnerabilityMark Felder2015-09-162-1/+284
| | | | | | | | | | Submitted by: ohauer MFH: 2015Q3 Security: CVE-2015-1038 Security: 8f5c9dd6-5cac-11e5-9ad8-14dae9d210b8 Notes: svn path=/head/; revision=397079
* It turned out -fPIC is required on sparc64 as well: it dumps core withoutAlexey Dokuchaev2015-09-091-0/+1
| | | | | | | | | | | | it on extraction, which turn breaks e.g. `sysutils/namefix' port. Do not bump port revision again as it was bumped just couple of hours ago, which is just too small in Tier-2 land for which we do not produce any packages anyways. Tested on: flame Notes: svn path=/head/; revision=396461
* Compile with -fPIC on PowerPC, otherwise resulting binaries are broken:Alexey Dokuchaev2015-09-091-1/+2
| | | | | | | | | Can't load '/usr/local/bin/../libexec/p7zip/7z.dll' (/usr/local/bin/../libexec/p7zip/7z.so: Unsupported relocation type 10 in non-PLT relocations) Notes: svn path=/head/; revision=396457
* Adds -fPIC to CFLAGS_aarch64 to a number of ports that already have itAndrew Turner2015-08-091-0/+1
| | | | | | | | | | in the amd64 CFLAGS and are failing to build. Approved by: bapt Differential Revision: https://reviews.freebsd.org/D3321 Notes: svn path=/head/; revision=393831
* - Add CPE infoDmitry Marakasov2015-04-241-1/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=384671
* Update to 9.38.1.Raphael Kubo da Costa2015-03-083-7/+17
| | | | Notes: svn path=/head/; revision=380773
* Clean up plistBaptiste Daroussin2014-10-191-5/+0
| | | | Notes: svn path=/head/; revision=371222
* UnbreakAntoine Brodin2014-07-041-1/+1
| | | | Notes: svn path=/head/; revision=360542
* Correct the SLAVE_PORT check.Adam Weinberger2014-07-031-1/+1
| | | | Notes: svn path=/head/; revision=360447
* Reduce unnecessary bsd.port.options.mk inclusions by using OPTIONS helpers.Adam Weinberger2014-07-031-2/+0
| | | | | | | | | | For liborange, reverse the logic, as I'm pretty sure the OPTIONS were being used to disable the selected options. Approved by: portmgr (blanket) Notes: svn path=/head/; revision=360446
* - fix sanity in CAT archiversOlli Hauer2014-06-011-6/+6
| | | | | | | | - USE_BZIP2 -> USES=tar:bzip2 - LICENSE=BSD -> BSD[n]CLAUSE Notes: svn path=/head/; revision=356058
* Install 7z.so, needed for manipulating all archive formats but RAR.Raphael Kubo da Costa2014-01-032-3/+5
| | | | | | | | | | | It was missed during the update in r338410 and basically made p7zip stop handling any archive type. Reported by: Green Dog <fiziologus@gmail.com> Pointy hat to: rakuco Notes: svn path=/head/; revision=338521
* - Modernize and simplify the archivers/p7zip port's Makefile by getting ridRaphael Kubo da Costa2014-01-023-71/+37
| | | | | | | | | | | | | | | | | | of some sed calls, supporting staging. - Set LICENSE for the port. [1] - Get rid of the MINIMAL and MODULES options. They were not very useful and its handling was needlessly complicating the Makefile logic. We now always build as if MINIMAL was unset. - Stop installing the p7zip and Client7z wrappers. - Move the installation of the RAR decompression codec to archivers/p7zip-codec-rar, as its source code uses a more restrictive license than the LGPL21 used for the rest of the code base. PR: ports/185238 [1] Submitted by: Hardy Schumacher <hardy.schumacher@gmx.de> [1] Notes: svn path=/head/; revision=338410
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | archivers) Notes: svn path=/head/; revision=327699
* - Get rid of PTHREAD_CFLAGS and PTHREAD_LIBS (category: archivers)Pietro Cerutti2013-02-071-2/+1
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=311833
* Convert to OptionsNG.Raphael Kubo da Costa2012-11-251-4/+7
| | | | | | | | | PR: ports/173813 Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> Feature safe: yes Notes: svn path=/head/; revision=307758
* Clean up the headers of the ports I maintain.Raphael Kubo da Costa2012-10-071-5/+1
| | | | Notes: svn path=/head/; revision=305477
* Update my mail address in the ports I maintain.Raphael Kubo da Costa2011-08-281-1/+1
| | | | | | | Approved by: avilla Notes: svn path=/head/; revision=280636
* Pass maintainership to submitter.Juergen Lock2011-03-191-1/+1
| | | | | | | | PR: ports/155700 Submitted by: Raphael Kubo da Costa <kubito@gmail.com> Notes: svn path=/head/; revision=271319
* Update to 9.20.1Juergen Lock2011-03-172-9/+5
| | | | | | | | PR: ports/155623 Submitted by: Raphael Kubo da Costa <kubito@gmail.com> Notes: svn path=/head/; revision=271163
* - Fix manpage {SHARE_DOC_DIR} ${DOCDIR} as this confuses people.Juergen Lock2011-01-011-1/+2
| | | | | | | | | | - Bump PORTREVISION. PR: ports/153592 Submitted by: chris petrik <c.petrik.sosa@gmail.com> Notes: svn path=/head/; revision=267253
* Update to 9.13.Juergen Lock2010-06-263-5/+8
| | | | | | | | | PR: ports/148132 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> Feature safe: yes Notes: svn path=/head/; revision=257022
* Add option to build minimal possible executable supporting only 7zip archives.Juergen Lock2009-11-262-19/+35
| | | | | | | | PR: ports/140903 Submitted by: Eugene Perevyazko <john@dnepro.net> Notes: svn path=/head/; revision=244801
* Update to 9.04.Juergen Lock2009-09-302-4/+4
| | | | | | | | PR: ports/139246 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> Notes: svn path=/head/; revision=242325
* Mark MAKE_JOBS_UNSAFEJuergen Lock2009-03-231-0/+1
| | | | Notes: svn path=/head/; revision=230796
* Update to 4.65Juergen Lock2009-02-152-4/+4
| | | | | | | | PR: ports/131697 Submitted by: Wen Heping <wenheping@gmail.com> Notes: svn path=/head/; revision=228449
* Update to 4.61Juergen Lock2008-12-192-4/+4
| | | | Notes: svn path=/head/; revision=224436
* Update to 4.58Juergen Lock2008-09-073-9/+10
| | | | | | | | PR: ports/127159 Submitted by: chinsan Notes: svn path=/head/; revision=220124