HarfBuzz text shaping engine http://harfbuzz.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
340 B

#!/usr/bin/env python3
import os, subprocess
from pathlib import Path
outfile = Path(
os.getenv('MESON_DIST_ROOT')
or os.getenv('MESON_SOURCE_ROOT')
or Path(__file__).parent
) / '.tarball-revision'
with open(outfile, 'wb') as f:
f.write(subprocess.check_output(['git', 'log', '--no-color', '--no-decorate', 'HEAD~..HEAD']))