aboutsummaryrefslogtreecommitdiff
path: root/security/py-dfvfs
Commit message (Collapse)AuthorAgeFilesLines
* security/py-dfvfs: update to 20210606Antoine Brodin2021-06-262-4/+5
|
* security/py-dfvfs: update to 20210213Antoine Brodin2021-04-202-4/+5
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to 20201219Antoine Brodin2020-12-262-4/+6
| | | | Notes: svn path=/head/; revision=559287
* Update to 20200920Antoine Brodin2020-10-132-4/+5
| | | | Notes: svn path=/head/; revision=552233
* Fix build (extract) with static bsdtar(1)Danilo G. Baio2020-08-011-0/+3
| | | | | | | | | | | | | | tar: Pathname can't be converted from UTF-8 to current locale. tar: Error exit delayed from previous errors. *** Error code 1 See more details for the same issue in bug 246618. Reported by: pkg-fallout Approved by: portmgr blanket Notes: svn path=/head/; revision=543918
* Update to 20200625Antoine Brodin2020-07-072-4/+4
| | | | Notes: svn path=/head/; revision=541441
* Update to 20200429Antoine Brodin2020-05-102-4/+4
| | | | Notes: svn path=/head/; revision=534832
* Update to 20200211Antoine Brodin2020-02-293-15/+5
| | | | Notes: svn path=/head/; revision=527469
* Update to 20200121Antoine Brodin2020-01-253-6/+17
| | | | Notes: svn path=/head/; revision=524040
* - Update to 20190902Antoine Brodin2019-11-242-16/+8
| | | | | | | - Drop python 2.7 support Notes: svn path=/head/; revision=518323
* Update to 20190609Antoine Brodin2019-07-162-4/+4
| | | | Notes: svn path=/head/; revision=506758
* Update to 20190511Antoine Brodin2019-06-042-5/+6
| | | | Notes: svn path=/head/; revision=503455
* Update to 20190421Antoine Brodin2019-05-112-4/+4
| | | | Notes: svn path=/head/; revision=501293
* Update to 20190128Antoine Brodin2019-02-032-4/+4
| | | | Notes: svn path=/head/; revision=492041
* Update to 20181215Antoine Brodin2018-12-202-4/+5
| | | | Notes: svn path=/head/; revision=487916
* Update to 20180831Antoine Brodin2018-10-072-4/+4
| | | | Notes: svn path=/head/; revision=481454
* - Update to 20180703Antoine Brodin2018-07-042-6/+9
| | | | | | | | - Now works with python 3 - Allow concurrent installation Notes: svn path=/head/; revision=473883
* Update to 20180510Antoine Brodin2018-05-242-11/+11
| | | | Notes: svn path=/head/; revision=470783
* Update to 20171230Antoine Brodin2017-12-312-4/+4
| | | | Notes: svn path=/head/; revision=457699
* Update to 20171203Antoine Brodin2017-12-232-4/+4
| | | | Notes: svn path=/head/; revision=457106
* Update to 20171125Antoine Brodin2017-12-022-4/+4
| | | | Notes: svn path=/head/; revision=455373
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* Update to 20170723Antoine Brodin2017-08-062-4/+6
| | | | Notes: svn path=/head/; revision=447471
* Update to 20170406Antoine Brodin2017-04-082-4/+4
| | | | Notes: svn path=/head/; revision=438036
* - Update to 20170116Antoine Brodin2017-03-182-6/+13
| | | | | | | - Make it easier to test python 3 readiness Notes: svn path=/head/; revision=436444
* The output of tools like awk, date, sort, tr,... depends on the currentTijl Coosemans2017-01-181-1/+2
| | | | | | | | | | | | | | | | | | | | | locale set by the user. Add LANG=C and LC_ALL=C at the beginning of bsd.port.mk and export them so all commands are executed with the C locale. LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3) as default value for LC_* variables, so normally it isn't used when LC_ALL is set, but there's code out there that looks at LANG directly so it's safer to set it as well. The only commands not captured by this are != assignments before any inclusion of bsd.port.*mk. Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a different locale (e.g. USE_LOCALE=en_US.UTF-8). PR: 215882 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=431796
* Update to 20160918Antoine Brodin2016-09-203-35/+13
| | | | Notes: svn path=/head/; revision=422523
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-14/+14
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* Sleuthkit 4.2.0 switched from 100 nano seconds precision to 1 nano secondAntoine Brodin2016-03-092-0/+30
| | | | | | | | | precision for *time_nano fields. Adjust py-dfvfs for this. See: https://github.com/log2timeline/dfvfs/issues/116 Notes: svn path=/head/; revision=410715
* Update to 20160108Antoine Brodin2016-01-242-4/+6
| | | | Notes: svn path=/head/; revision=407089
* Update to 20150708Antoine Brodin2015-07-252-12/+5
| | | | Notes: svn path=/head/; revision=392899
* Update to 20150129Antoine Brodin2015-02-012-3/+4
| | | | Notes: svn path=/head/; revision=378247
* Update to 20150108Antoine Brodin2015-01-082-3/+3
| | | | Notes: svn path=/head/; revision=376573
* Update to 20141220Antoine Brodin2014-12-202-3/+3
| | | | Notes: svn path=/head/; revision=375135
* Update to 20141205Antoine Brodin2014-12-072-5/+4
| | | | Notes: svn path=/head/; revision=374166
* Update to 20141108Antoine Brodin2014-11-102-3/+3
| | | | Notes: svn path=/head/; revision=372386
* Update to 20141028Antoine Brodin2014-10-302-4/+7
| | | | Notes: svn path=/head/; revision=371766
* Update to 20140928Antoine Brodin2014-10-043-4/+4
| | | | Notes: svn path=/head/; revision=370006
* Update to 20140824Antoine Brodin2014-08-252-3/+3
| | | | Notes: svn path=/head/; revision=366136
* Update to 20140818Antoine Brodin2014-08-202-6/+6
| | | | Notes: svn path=/head/; revision=365506
* Update to 20140727Antoine Brodin2014-07-312-4/+6
| | | | Notes: svn path=/head/; revision=363634
* Update to 20140604Antoine Brodin2014-06-052-3/+3
| | | | Notes: svn path=/head/; revision=356687
* New port: securiry/py-dfvfsAntoine Brodin2014-05-303-0/+47
dfVFS, or Digital Forensics Virtual File System, provides read-only access to file-system objects from various storage media types and file formats. The goal of dfVFS is to provide a generic interface for accessing file-system objects, for which it uses several back-ends that provide the actual implementation of the various storage media types, volume systems and file systems. WWW: https://code.google.com/p/dfvfs/ Notes: svn path=/head/; revision=355856