Re: Btrfs Heatmap - v4 ... colors!!
From: Hans van Kranenburg <hidden>
Date: 2017-02-03 14:27:20
On 02/03/2017 03:18 PM, Timofey Titovets wrote:
2017-02-03 15:57 GMT+03:00 Hans van Kranenburg [off-list ref]:quoted
On 02/03/2017 12:25 PM, Timofey Titovets wrote:quoted
Thank you for your great work: JFYI Packaged in AUR: https://aur.archlinux.org/packages/python-btrfs-heatmap/Hey, thanks. Just wondering... what is that btrfs.py you refer to in... https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=python-btrfs ? It's a package, not a single file, so maybe that compile command doesn't do anything? I'm not familiar with arch, so correct me if I'm wrong. . ├── btrfs │ ├── crc32c.py │ ├── ctree.py │ ├── __init__.py │ ├── ioctl.py │ ├── utils.pyYou right, compile command are useless, so i did remove it, thanks.
-$ python2 -m compileall btrfs Listing btrfs ... Compiling btrfs/__init__.py ... Compiling btrfs/crc32c.py ... Compiling btrfs/ctree.py ... Compiling btrfs/ioctl.py ... Compiling btrfs/utils.py ... . ├── btrfs │ ├── crc32c.py │ ├── crc32c.pyc │ ├── ctree.py │ ├── ctree.pyc │ ├── __init__.py │ ├── __init__.pyc │ ├── ioctl.py │ ├── ioctl.pyc │ ├── utils.py │ └── utils.pyc -$ python3 -m compileall btrfs Listing 'btrfs'... Compiling 'btrfs/__init__.py'... Compiling 'btrfs/crc32c.py'... Compiling 'btrfs/ctree.py'... Compiling 'btrfs/ioctl.py'... Compiling 'btrfs/utils.py'... . ├── btrfs │ ├── crc32c.py │ ├── ctree.py │ ├── __init__.py │ ├── ioctl.py │ ├── __pycache__ │ │ ├── crc32c.cpython-35.pyc │ │ ├── ctree.cpython-35.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── ioctl.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ └── utils.py -- Hans van Kranenburg