Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/gfx/harfbuzz/src/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  gen-hb-version.py

  Sprache: Python
 

#!/usr/bin/env python3

"This tool is intended to be used from meson"

import os, sys, shutil, re

if len (sys.argv) < 4:
 sys.exit(__doc__)

version = sys.argv[1]
major, minor, micro = version.split (".")

OUTPUT = sys.argv[2]
INPUT = sys.argv[3]
CURRENT_SOURCE_DIR = os.path.dirname(INPUT)

try:
 with open (OUTPUT, "r", encoding='utf-8'as old_output:
  for line in old_output:
   old_version = re.match (r"#define HB_VERSION_STRING \"(\d.\d.\d)\"", line)
   if old_version and old_version[1] == version:
    sys.exit ()
except IOError:
 pass

with open (INPUT, "r", encoding='utf-8'as template:
 with open (OUTPUT, "wb"as output:
  output.write (template.read ()
   .replace ("@HB_VERSION_MAJOR@", major)
   .replace ("@HB_VERSION_MINOR@", minor)
   .replace ("@HB_VERSION_MICRO@", micro)
   .replace ("@HB_VERSION@", version)
   .encode ())

# copy it also to the source tree, but only if it has changed
baseline_filename = os.path.join (CURRENT_SOURCE_DIR, os.path.basename (OUTPUT))
with open(baseline_filename, "rb"as baseline:
 with open(OUTPUT, "rb"as generated:
  if baseline.read() != generated.read():
   shutil.copyfile (OUTPUT, baseline_filename)

Messung V0.5 in Prozent
C=61 H=98 G=81

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.