On 02/03/2017 03:18 PM, Timofey Titovets wrote: > 2017-02-03 15:57 GMT+03:00 Hans van Kranenburg <hans.van.kranenburg@xxxxxxxxxx>: >> On 02/03/2017 12:25 PM, Timofey Titovets wrote: >>> 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.py >> > > You 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 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
