This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/trunk/PKGBUILD b/trunk/PKGBUILD | |
| index a7c3f0d..9abf71b 100644 | |
| --- a/trunk/PKGBUILD | |
| +++ b/trunk/PKGBUILD | |
| @@ -64,6 +64,8 @@ build() { | |
| --with-pid-dir=/run \ | |
| --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' \ | |
| + patch --strip=1 < ../../junest.patch | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import time | |
| from pathlib import Path | |
| # Replaces origin.txt with origin.yaml in every directory under DIR. | |
| # Directory containing albums. | |
| # Set this manually. | |
| DIR = '~/music' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import bencoding | |
| import hashlib | |
| import io | |
| import os | |
| import sys | |
| import time | |
| from origin import GazelleAPI | |
| # Before running this script: | |
| # pip install bencoding |