aboutsummaryrefslogtreecommitdiff
path: root/archivers/py-borgbackup
Commit message (Collapse)AuthorAgeFilesLines
* archivers/py-borgbackup: update to v1.4.3Matthias Andree10 days2-4/+4
| | | | | ChangeLog: https://borgbackup.readthedocs.io/en/1.4.3/changes.html#version-1-4-3-2025-12-02 MFH: 2025Q4 (after a few days)
* archivers/py-borgbackup: update to 1.4.2Matthias Andree2025-11-105-35/+53
| | | | | | | | | | | Changelog: https://borgbackup.readthedocs.io/en/1.4.2/changes.html#version-1-4-2-2025-10-31 This reverts the setuptools update for the SPDX license documentation, which would break with our ancient setuptools. (Note that https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=270358 and https://reviews.freebsd.org/D46236 have not made progress in over one and a half years, so... we need to work around that.)
* archivers/py-borgbackup: use spawn for multiprocessingMatthias Andree2025-11-011-0/+19
| | | | | | | | | borgbackup's setup.py fails with Python 3.14's new forkserver default (borgbackup predates the Python 3.14 release) Note "make test" is currently unavailable on Python 3.13 and 3.14 becuase it expects py-sphinx, but the sphinx 5 version currently in ports uses imghr, which was removed in 3.13.
* archivers/py-borgbackup: Allow build with py-msgpack 1.1.2Po-Chuan Hsieh2025-10-192-4/+5
| | | | | | - Bump PORTREVISION for package change Obtained from: https://github.com/borgbackup/borg/commit/e7d8fba1df8409f5aa71faa16f97935aea802171
* archivers/py-borgbackup: Add github to MASTER_SITESMatthias Andree2025-08-061-1/+2
|
* archivers/py-borgbackup: Allow build with py-msgpack 1.1.1Po-Chuan Hsieh2025-06-262-3/+27
| | | | | | - Bump PORTREVISION for package change Obtained from: https://github.com/borgbackup/borg/commit/862f19aab9780b91424bb7f9319d915751d0024f
* archivers/py-borgbackup: bugfix update to 1.4.1Matthias Andree2025-04-212-6/+6
| | | | | Changelog: https://borgbackup.readthedocs.io/en/1.4.1/changes.html#version-1-4-1-2025-04-19 MFH: 2025Q2 (after a few days)
* python: bump all USE_PYTHON=distutils consumers after RUN_DEPENDS removalCharlie Li2025-03-081-1/+1
| | | | | | | | Any missed ports, feel free to bump. Any ports that need setuptools at runtime can have the devel/py-setuptools manually added back to RUN_DEPENDS, but understand that this practice is deprecated; see CHANGES for details.
* filesystems: add new category for file systems and related utilitiesRobert Clausecker2024-11-061-1/+1
| | | | | | | | | | | | | | | | | | The filesystems category houses file systems and file system utilities. It is added mainly to turn the sysutils/fusefs-* pseudo-category into a proper one, but is also useful for the sundry of other file systems related ports found in the tree. Ports that seem like they belong there are moved to the new category. Two ports, sysutils/fusefs-funionfs and sysutils/fusefs-fusepak are not moved as they currently don't fetch and don't have TIMESTAMP set in their distinfo, but that is required to be able to push a rename of the port by the pre-receive hook. Approved by: portmgr (rene) Reviewed by: mat Pull Request: https://github.com/freebsd/freebsd-ports/pull/302 PR: 281988
* devel/py-msgpack: clean up borgbackup dependenciesMatthias Andree2024-09-261-1/+1
|
* archivers/py-borgbackup: Fix version requirement of py-msgpackPo-Chuan Hsieh2024-09-251-1/+1
| | | | | | | | | | | | from pyproject.toml: "msgpack >=1.0.3, <=1.1.0", from src/borg/helpers/msgpack.py: return (1, 0, 3) <= msgpack.version <= (1, 1, 0) and \ Reference: https://github.com/borgbackup/borg/blob/1.4.0/pyproject.toml#L37 https://github.com/borgbackup/borg/blob/1.4.0/src/borg/helpers/msgpack.py#L140 https://github.com/borgbackup/borg/commit/249b9e804fd32b9fc59329be317a329f2ecf655d
* archivers/py-borgbackup: unbreak on FreeBSD 13Matthias Andree2024-07-263-4/+111
| | | | | | | | | | | import acl_extended_file_np.c from src/lib/libc/posix1e, taken from FreeBSD src branch as of 559a218c9b25, 2023-11-01T16:43:37Z and tell Cython to include it on FreeBSD before 1400033, i. e., before FreeBSD's libc had it. This fixes https://github.com/borgbackup/borg/issues/8269 and makes it unnecessary to look into PR: 280453
* archivers/py-borgbackup: clean up 1.4.0 upgrade falloutMatthias Andree2024-07-241-2/+4
| | | | | | | | | | | | | | | | | - Mark broken on FreeBSD 13 due to https://github.com/borgbackup/borg/issues/8269 which upstream maintainer intends to fix for borgbackup 1.4.1 (milestone). Reported by "Support SimpleRezo" in direct e-mail message. - Add UPDATING entry. The broken MOVED entry has been removed by sunpoet@ already, Reported by: Juraj Lutter <otis@>, freebsd@rail.eu.org PR: 280424 - Move py-pkgconfig to BUILD_DEPENDS to fix build failures in poudriere or on bare metal if py-pkgconfig isn't installed. Reported by: Juraj Lutter <otis@>, Hyogeol Lee <hyogeollee@gmail.com> (patch) PR: 280413
* py-borgbackup: Upgrade to 1.4.0, preserving 1.2.8 as py-borgbackup12Matthias Andree2024-07-213-7/+8
| | | | | | ...and mentioning it in MOVED so that the upgrade path is clear. ChangeLog: https://www.borgbackup.org/releases/borg-1.4.html
* archivers/py-borgbackup: fix pkg-message instructionsMatthias Andree2024-04-182-7/+11
| | | | | | | | | which were suggesting to add the loader.conf variable fusefs_load to rc.conf instead via sysrc. Reported by: zero1@zaclys.net PR: 278429 MFH: 2024Q2
* archivers/py-borgbackup: bugfix update to v1.2.8Matthias Andree2024-03-303-29/+5
| | | | ChangeLog: https://github.com/borgbackup/borg/blob/1.2.8/docs/changes.rst#version-128-2024-03-29
* archivers/py-borgbackup: Allow build with py-msgpack 1.0.8Po-Chuan Hsieh2024-03-092-2/+26
| | | | | | - Bump PORTREVISION for package change Reference: https://github.com/borgbackup/borg/commit/a507a2cb3b9fed025743e80971ce1615887a47e4
* devel/py-setuptools-scm: update to 8.0.4Charlie Li2024-02-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Directory and PORTNAME changed to match normalised name in release tarball; consumers updated to match. Although setuptools itself is specified as a run dependency in the Python package metadata, it is currently left out here to prevent environment pollution until at least PR 270510 is committed. Additionally, this version of setuptools-scm requires setuptools>=61, which means this version is only meant for USE_PYTHON=pep517 ports as all USE_PYTHON=distutils ports will switch to devel/py-setuptools58 also after PR 270510. science/py-emmet-core is switched to devel/py-setuptools_scm7 accordingly, as it specifies setuptools-scm<8. devel/py-{flit-scm,hatch-vcs} have ${PY_SETUPTOOLS} added to RUN_DEPENDS to compensate. Further details: https://wiki.freebsd.org/Python/setuptools Reported by: yuri Co-authored by: matthew Exp-run by: antoine (earlier iteration) Approved by: yuri (science/py-emmet-core, previous iteration) PR: 272134 Differential Revision: https://reviews.freebsd.org/D39288
* archivers/py-borgbackup: eliminate use of MAN1PREFIXBaptiste Daroussin2024-01-101-1/+1
|
* MAN?PREFIX: eleminate its usage and move man to share/manBaptiste Daroussin2024-01-101-1/+1
|
* archivers/py-borgbackup: update to 1.2.7Matthias Andree2023-12-053-27/+5
| | | | ChangeLog: https://github.com/borgbackup/borg/blob/1.2.7/docs/changes.rst#version-127-2023-12-02
* archivers/py-borgbackup: Allow build with py-msgpack 1.0.7Po-Chuan Hsieh2023-09-302-4/+4
| | | | | | - Bump PORTREVISION for package change Reference: https://github.com/borgbackup/borg/commit/cdcab4df6851b5d3da6ac5435bcaeb8aa1d632b5
* archivers/py-borgbackup: Allow build with py-msgpack 1.0.6Po-Chuan Hsieh2023-09-292-1/+24
| | | | | | - Bump PORTREVISION for package change Reference: https://github.com/borgbackup/borg/commit/95e75b90f1a092bad10e0b93ef065e78dfabb227
* archivers/py-borgbackup: security upgrade to 1.2.6Matthias Andree2023-09-062-4/+4
| | | | | | | | | | | 1.2.5 has been skipped for FreeBSD ports because the necessary upgrade procedure did not work for all archives. Changelog: https://github.com/borgbackup/borg/blob/1.2.6/docs/changes.rst#version-126-2023-08-31 Security: https://github.com/borgbackup/borg/blob/1.2.6/docs/changes.rst#pre-125-archives-spoofing-vulnerability-cve-2023-36811 Security: CVE-2023-36811 Security: b8a52e5a-483d-11ee-971d-3df00e0f9020 MFH: 2023Q3 after some stabilization time
* all: remove explicit versions in USES=python for "3.x+"Rene Ladan2023-06-271-1/+1
| | | | | | | | | | | | | | | | | | | The logic in USES=python will automatically convert this to 3.8+ by itself. Adjust two ports that only had Python 3.7 mentioned but build fine on Python 3.8 too. finance/quickfix: mark BROKEN with PYTHON libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option] QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found ^~~~~~~~~~ 1 warning and 1 error generated. Reviewed by: portmgr, vishwin, yuri Differential Revision: <https://reviews.freebsd.org/D40568>
* archivers/py-borgbackup: Fix *_DEPENDSPo-Chuan Hsieh2023-04-091-1/+1
| | | | Approved by: portmgr (blanket)
* archivers/py-borgbackup: also tighten up RUN_DEPENDS for msgpackMatthias Andree2023-04-071-3/+4
| | | | | and refactor. After the version in 2023Q2, and related to: PR: 270665
* archivers/py-borgbackup: update to 1.2.4, unbreaking with msgpack 1.0.5Matthias Andree2023-04-072-6/+7
| | | | | | | | | | | | | | | | | | | Borgbackup pins the exact, full, patch-level based version range and the prior borgbackup 1.2.3 wanted to have at most msgpack 1.0.4. Update to 1.2.4 which allows msgpack 1.0.5, and pin the exact msgpack version in our depends to "fail early". And other changes including bug fixes: https://github.com/borgbackup/borg/blob/1.2.4/docs/changes.rst#version-124-2023-03-24 based on a PR: 270665 Submitted by: otis@ As in-depth soft robustness measure, add relevant warning comments to devel/py-msgpack/Makefile, and while there, clean up the python:3.6+ to just a bare python because 3.6 and older are long gone from ports.
* archivers/py-borgbackup: update to 1.2.3Matthias Andree2023-01-132-4/+4
| | | | Changelog: https://borgbackup.readthedocs.io/en/stable/changes.html#version-1-2-3-2022-12-24
* */*: rename CHEESESHOP to PYPI in MASTER_SITESDmitry Marakasov2023-01-111-1/+1
| | | | | | PR: 267994 Differential revision: D37518 Approved by: bapt
* archivers/py-borgbackup: clean environment for self-testsMatthias Andree2022-10-041-2/+2
| | | | | | | | | | | | | This avoids build failures when, for instance, BORG_NEW_PASSWORD is set to another password than the one used by the self-tests. Reported by: SimpleRezo <simplerezo@gmail.com> PR: 266821 Not bumping PORTREVISION because this only affects the execution of self-tests, which is pass (then the change is irrelevant) or fail (then there is no package or installed port and PORTREVISION would serve no purpose).
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* archivers/py-borgbackup*: staging without HOMEMatthias Andree2022-09-031-2/+4
| | | | | | | | | | | Building as non-root often inherits the "nobody" user's would-be home directory, "/nonexistent", which is just that. Provide something blank in the WRKDIR instead. Reported by: Juraj Lutter (otis@) Unrelated to, but still mentioned for... PR: 264816
* archivers/py-borgbackup: update to 1.2.2+man+test, preserve 1.1Matthias Andree2022-09-033-11/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Take maintainership, because original maintainer asked for a new maintainer, https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264816#c10 ¡Muchas gracias, José! Thanks for maintaining the port thus far. If there is a potential maintainer who is using BorgBackup at scale, I will be happy to pass maintainership on. Update to v1.2.2 [1, was for 1.2.1], preserve the earlier 1.1.18 version (also with manpages and self-tests added, hence bumping PORTREVISION) as py-borgbackup11, and document this in UPDATING. ChangeLog: https://www.borgbackup.org/releases/borg-1.2.html Add self-tests [1] to both 1.1 and 1.2, including - a smoke test in post-install in order to always run it - "make test" support (requires network access for tox) PR: 264816 [1] Reported by: rob2g2-freebsd@bitbert.com [1] Add manual pages to both 1.1 and 1.2. [2] PR: 263269 [2] Reported by: courtney.hicks1@icloud.com [2]
* archivers/py-borgbackup: use fixed xxhash instead of avoiding itMatthias Andree2022-08-132-12/+2
| | | | | | | | | | | | | | | | | | | | | This reverts commit 9db903a89b3d1d7c0be2a56059542f3fdb412908 because it does not fix the situation for lack of a PORTREVISION bump. Let us use the opportunity to fix the real bug instead. Now with xxhash fixed as of 0.8.1_2, drop 9db903a89, and bump PORTREVISION so we flush out the old garbage packages. A simple web search would have brought up that static_assert() is a C11 convenience macro defined in <assert.h>, and a detailed search would have turned up that this had been fixed in xxhash before. While here, add a smoke test to post-install. Proper fix was Reported by: Thierry Dussuet <thierry.dussuet@protonmail.com> PR: 265060 MFH: 2022Q3
* *: bump PORTREVISION of all devel/xxhash users...Matthias Andree2022-08-131-1/+3
| | | | ...except archivers/py-borgbackup, which requires a more complete fix.
* archivers/py-borgbackup: avoid dependency on xxhash portJose G. Juanino2022-08-132-2/+12
| | | | | | | - Instead, use the xxhash library provided in the same port PR: 265060 Author: Jose G. Juanino <jjuanino@gmail.com>
* archivers: remove 'Created by' linesTobias C. Berner2022-07-201-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A big Thank You to the original contributors of these ports: * Aaron Dalton <aaron@FreeBSD.org> * Akinori MUSHA aka knu <knu@idaemons.org> * Albert Vernon <f3cun3c02@sneakemail.com> * Alex Dupre <ale@FreeBSD.org> * Alex Samorukov <samm@freebsd.org> * Alexander Kuehn <freebsd@nagilum.org> * Alexander Logvinov <ports@logvinov.com> * Alexander Zhuravlev <zaa@zaa.pp.ru> * Alexey Dokuchaev <danfe@FreeBSD.org> * Alexey Dokuchaev <danfe@regency.nsu.ru> * Anders Nordby <anders@FreeBSD.org> * Andreas Klemm <andreas@klemm.gtn.com> * Andreev Maxim * Andrew Pantyukhin <infofarmer@FreeBSD.org> * Andrey Chernov <ache@FreeBSD.org> * Andrey Kostenko <andrey@kostenko.name> * Anes Mukhametov <anes@anes.su> * Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) * Ayumi M <ayu@commun.jp> * Carsten Larsen <cs@innolan.dk> * Chin-San Huang <chinsan.tw@gmail.com> * Chris D. Faulhaber <jedgar@FreeBSD.org> * Chris Larsen <darth@vader.dk> * Christopher Key <cjk32@cam.ac.uk> * Cyrille Lefevre <cyrille.lefevre@laposte.net> * Dmitry Sivachenko <demon@FreeBSD.org> * Emanuel Haupt <ehaupt@FreeBSD.org> * Emanuel Haupt <ehaupt@critical.ch> * Felix Palmen <felix@palmen-it.de> * Gabor Kovesdan <gabor@FreeBSD.org> * Gea-Suan Lin (gslin@ccca.nctu.edu.tw) * Gea-Suan Lin <gslin@gslin.org> * George Reid <greid@ukug.uk.freebsd.org> * Greg Lewis <glewis@FreeBSD.org> * Hsin-Han You <hhyou@cs.nctu.edu.tw> * Hye-Shik Chang * Hye-Shik Chang <perky@FreeBSD.org> * Igor Pokrovsky <tiamat@telegraph.spb.ru> * Jaap Boender <jaapb@kerguelen.org> * Jean-Yves Lefort <jylefort@brutele.be> * Jeff Burchell <toxic@doobie.com> * Jeffrey H. Johnson <CPE1704TKS@bellsouth.net> * Jerry Hicks * Joao Carlos Mendes Luis <jonny@jonny.eng.br> * John Marino <marino@FreeBSD.org> * José García Juanino <jjuanino@gmail.com> * Juergen Lock <nox@jelal.kn-bremen.de> * Kevin Golding <ports@caomhin.org> * Konstantin Reznichenko <kot@premierbank.dp.ua> * Koop Mast <kwm@FreeBSD.org> * Kubilay Kocak <koobs@FreeBSD.org> * Lars Thegler <lth@FreeBSD.org> * Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> * Mark Felder <feld@FreeBSD.org> * Mark Kane <mark@mkproductions.org> * Mark Pulford <mark@kyne.com.au> * Martin Matuska <mm@FreeBSD.org> * Martin Wilke <miwi@FreeBSD.org> * Matteo Cypriani <mcy@lm7.fr> * Max Khon <fjoe@FreeBSD.org> * Maxim Sobolev <sobomax@FreeBSD.org> * Melvyn Sopacua <melvyn@magemana.nl> * Miguel Mendez <flynn@energyhq.homeip.net> * Nathan Ahlstrom <nra@FreeBSD.org> * Nicola Vitale <nivit@FreeBSD.org> * Patrick Seal <patseal@hyperhost.net> * Pav Lucistnik <pav@FreeBSD.org> * Per Wigren * Philippe Casidy <pcasidy@casidy.com> * Po-Chuan Hsieh <sunpoet@FreeBSD.org> * Poul-Henning Kamp <phk@FreeBSD.org> * Radim Kolar * Radim Kolar <hsn@filez.com> * Radim Kolar <hsn@netmag.cz> * Rainer Hurling <rhurlin@gwdg.de> * Richard Gallamore <ultima@FreeBSD.org> * Roman Shterenzon <roman@xpert.com> * Ryan Steinmetz <zi@FreeBSD.org> * Sam Lawrance <boris@brooknet.com.au> * Sergey A. Osokin <osa@FreeBSD.org> * Sergey Skvortsov <skv@protey.ru> * Sir l33tname <sirl33tname@gmail.com> * Stanislav Sedov <ssedov@mbsd.msk.ru> * Stefan Esser <se@FreeBSD.org> * Steve Wills <swills@FreeBSD.org> * Steven Kreuzer <skreuzer@FreeBSD.org> * Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> * Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> * Sylvio Cesar <sylvio@FreeBSD.org> * TAKATSU Tomonari <tota@FreeBSD.org> * Thierry Thomas <thierry@pompo.net> * Thomas Abthorpe <thomas@goodking.ca> * Thomas Gellekum <tg@FreeBSD.org> * Vanilla I. Shu <vanilla@FreeBSD.org> * Wen Heping <wenheping@gmail.com> * Will Andrews <andrews@technologist.com> * Yarodin <yarodin@gmail.com> * Ying-Chieh Liao <ijliao@FreeBSD.org> * Yuri Victorovich <yuri@rawbw.com> * ache * adamw * antoine@FreeBSD.org * bf <bf2006a@yahoo.com> * chinsan <chinsan.tw@gmail.com> * giffunip@asme.org * gurkan@phys.ethz.ch * iblis <iblis.dif01@nctu.edu.tw> * ijliao * jmz * kwm@FreeBSD.org * lbartoletti <lbartoletti@FreeBSD.org> * mm * ports@c0decafe.net <ports@c0decafe.net> * samm@freebsd.org * swhetzel@gmail.com * will With hat: portmgr
* archivers/py-borgbackup: Update to 1.1.18Jose G. Juanino2022-06-303-8/+8
| | | | | | Changes: https://github.com/borgbackup/borg/blob/1.1.18/docs/changes.rst#version-1118-2022-06-05 PR: 264953
* archivers/py-borgbackup: Update 1.1.16 -> 1.1.17Bartek Rutkowski2021-11-232-5/+5
| | | | | PR: 259492 Reported by: Jose G. Juanino <jjuanino@gmail.com> (maintainer)
* Revert "- Reset PORTREVISION"Nuno Teixeira2021-05-121-0/+1
| | | | | | Restore wrongly removed PORTREVISION This reverts commit 8812ac1d68e36439f42df4df9a5428583cb90885.
* - Reset PORTREVISIONNuno Teixeira2021-05-101-1/+0
| | | | Approved by: dbaio, garga (mentors, implicit)
* archivers/py-borgbackup: Update to 1.1.16Nuno Teixeira2021-05-102-4/+4
| | | | | | | | ChangeLog: https://github.com/borgbackup/borg/releases/tag/1.1.16 PR: 255668 Reported by: José García Juanino <jjuanino@gmail.com> Approved by: dbaio, garga (mentors, implicit)
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Fix run-depends check for py-llfuse after shared libs naming changeDimitry Andric2021-02-281-1/+2
| | | | | | | | | | | | | | Newer python versions (after 3.8.7) have changed the names of extension shared libraries from ".so" to e.g. ".cpython-38.so". So for the FUSE option, now check for the py-llfuse package instead of the dynamic library llfuse.so. Approved by: jjuanino@gmail.com (maintainer) PR: 253907 MFH: 2021Q Notes: svn path=/head/; revision=566802
* Update to 1.1.15.Vanilla I. Shu2021-02-072-6/+7
| | | | | | | | PR: 253280 Submitted by: maintainer Notes: svn path=/head/; revision=564588
* archivers/py-borgbackup: Update to 1.1.14Loïc Bartoletti2020-10-072-4/+4
| | | | | | | | | | | Changelog: - https://github.com/borgbackup/borg/blob/1.1.14/docs/changes.rst#version-1114-2020-10-07 PR: 250183 Submitted by: jjuanino@gmail.com (maintainer) Notes: svn path=/head/; revision=551645
* archivers/py-borgbackup: Update to 1.1.13Fernando Apesteguía2020-06-092-4/+4
| | | | | | | | | | | ChangeLog: https://github.com/borgbackup/borg/blob/1.1.13/docs/changes.rst#version-1113-2020-06-06 PR: 247052 Submitted by: jjuanino@gmail.com (maintainer) Notes: svn path=/head/; revision=538303
* archivers/py-borgbackup: Update to 1.1.11Tobias C. Berner2020-04-032-4/+4
| | | | | | | | PR: 245329 Submitted by: jjuanino@gmail.com (maintainer) Notes: svn path=/head/; revision=530523