Port details |
- py-blobfile Read GCS, ABS and local paths with the same interface
- 3.0.0_1 net
=2 3.0.0Version of this port present on the latest quarterly branch. - Maintainer: sunpoet@FreeBSD.org
 - Port Added: 2023-08-21 17:15:31
- Last Update: 2025-07-21 08:00:55
- Commit Hash: 0b0f7cd
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py311-PyOpenGL, p5-Sane
- Also Listed In: python
- License: UNLICENSE
- WWW:
- https://github.com/blobfile/blobfile
- Description:
- blobfile is a library that provides a Python-like interface for reading local
and remote files (only from blob storage), with an API similar to open() as well
as some of the os.path and shutil functions. blobfile supports local paths,
Google Cloud Storage paths (gs://<bucket>), and Azure Blob Storage paths
(az://<account>/<container> or
https://<account>.blob.core.windows.net/<container>/).
The main function is BlobFile, which lets you open local and remote files that
act more or less like local ones. There are also a few additional functions such
as basename, dirname, and join, which mostly do the same thing as their os.path
namesakes, only they also support GCS paths and ABS paths.
This library is inspired by TensorFlow's gfile but does not have exactly the
same interface.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- ${PYTHON_PKGNAMEPREFIX}blobfile>0:net/py-blobfile@${PY_FLAVOR}
- To install the port:
- cd /usr/ports/net/py-blobfile/ && make install clean
- To add the package, run one of these commands:
- pkg install net/py-blobfile
- pkg install py311-blobfile
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above. NOTE: This is a Python port. Instead of py311-blobfile listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py311-blobfile
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1725559861
SHA256 (blobfile-3.0.0.tar.gz) = 32ec777414de7bb2a76ca812a838f0d33327ca28ae844a253503cde625cdf2f1
SIZE (blobfile-3.0.0.tar.gz) = 77863
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- py311-setuptools>=61.0 : devel/py-setuptools@py311
- py311-wheel>=0 : devel/py-wheel@py311
- python3.11 : lang/python311
- py311-build>=0 : devel/py-build@py311
- py311-installer>=0 : devel/py-installer@py311
- Test dependencies:
-
- python3.11 : lang/python311
- Runtime dependencies:
-
- py311-filelock>=3.0 : sysutils/py-filelock@py311
- py311-lxml5>=4.9 : devel/py-lxml5@py311
- py311-pycryptodomex>=3.8 : security/py-pycryptodomex@py311
- py311-urllib3>=1.25.3,1<3,1 : net/py-urllib3@py311
- python3.11 : lang/python311
- This port is required by:
- for Run
-
- misc/py-transformers
Configuration Options:
- No options to configure
- Options name:
- net_py-blobfile
- USES:
- python
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Number of commits found: 5
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.0.0_1 21 Jul 2025 08:00:55
    |
Hiroki Tagato (tagattie)  |
*/*: update dependency on devel/py-lxml to devel/py-lxml5 (2nd attempt)
This is a follow up to the commit 230fb2661c78, which updated some
ports' dependencies on devel/py-lxml to devel/py-lxml5. It was an
attempt to follow the dependency change of
www/py-beautifulsoup. However, the switch was incomplete and broke
some other ports.
It has turned out that the ports depending on devel/py-lxml (at
version 4.9.3) does not limit their dependencies' upper bound to 4.x
except for one (devel/py-pymaven-patch). So updating them to
devel/py-lxml5 (at version 5.4.0) should cause no harm.
This commit switch dependencies of all the ports (except
devel/py-pymaven-patch) to devel/py-lxml5 avoid potential conflicts.
Co-authored-by: Daniel Engberg <diizzy@FreeBSD.org>
PR: 287144, 288047
Reported by: makc (via ports-committers),
vvd (PR 288047),
diizzy (PR 287144)
Approved by: portmgr (chase dependency change, unbreak build)
Fixes: 230fb2661c78 (*/*: update dependency on devel/py-lxml to devel/py-lxml5) |
3.0.0 08 Sep 2024 18:37:43
    |
Po-Chuan Hsieh (sunpoet)  |
net/py-blobfile: Update to 3.0.0
Changes: https://github.com/blobfile/blobfile/releases
https://github.com/blobfile/blobfile/blob/master/CHANGES.md |
2.1.1 31 Mar 2024 03:07:13
    |
Po-Chuan Hsieh (sunpoet)  |
net/py-blobfile: Update to 2.1.1
Changes: https://github.com/blobfile/blobfile/releases
https://github.com/blobfile/blobfile/blob/master/CHANGES.md |
2.1.0 23 Mar 2024 14:49:29
    |
Po-Chuan Hsieh (sunpoet)  |
net/py-blobfile: Update to 2.1.0
- Change MASTER_SITES from GitHub to PYPI
Changes: https://github.com/blobfile/blobfile/releases
https://github.com/blobfile/blobfile/blob/master/CHANGES.md |
2.0.2 21 Aug 2023 17:01:58
    |
Po-Chuan Hsieh (sunpoet)  |
net/py-blobfile: Add py-blobfile 2.0.2
blobfile is a library that provides a Python-like interface for reading local
and remote files (only from blob storage), with an API similar to open() as well
as some of the os.path and shutil functions. blobfile supports local paths,
Google Cloud Storage paths (gs://<bucket>), and Azure Blob Storage paths
(az://<account>/<container> or
https://<account>.blob.core.windows.net/<container>/).
The main function is BlobFile, which lets you open local and remote files that
act more or less like local ones. There are also a few additional functions such
as basename, dirname, and join, which mostly do the same thing as their os.path
namesakes, only they also support GCS paths and ABS paths.
This library is inspired by TensorFlow's gfile but does not have exactly the
same interface. |
Number of commits found: 5
|