Bernard Jarre

Bernard Jarre (or Garves) (died 1328) was a French Cardinal in the period of the Avignon papacy.

Coat of arms of Bernard de Garves

Biography

He was born at Sainte-Livrade in the diocese of Agen and was a relative of Pope Clement V. From 1307 he is attested as archdeacon of Coutances. On 19 December 1310 Clement V appointed him cardinal-deacon of S. Agata; he was one of at least seven relatives of this pope promoted by him to the cardinalate. He participated in the papal conclave, 1314-1316. New Pope John XXII promoted him to the rank of cardinal-priest of S. Clemente on 18 December 1316. He died at Avignon.

gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystemâ„¢.
gollark: I AM writing this, so you know.

See also

References


    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.