Many a Mile

Many a Mile is Buffy Sainte-Marie's second album, released in 1965.

Many a Mile
Studio album by
Released1965
GenreFolk
Length36:33
LabelVanguard
ProducerMaynard Solomon
Buffy Sainte-Marie chronology
It's My Way
(1964)
Many a Mile
(1965)
Little Wheel Spin and Spin
(1966)
Professional ratings
Review scores
SourceRating
Allmusic[1]

Though originally released on Vanguard Records, it was never reissued on CD when the rest of Sainte-Marie's catalog for that label came out in the late 1990s. It was reissued on CD in Italy via Fontana Records, and in 2015 in the United Kingdom via Ace Records.[2]

The album contained a larger proportion of traditional material than her debut, including a number of Child ballads. The most famous song here is "Until It's Time for You to Go", which has been covered by Cher, Neil Diamond, Shirley Bassey, Françoise Hardy and Elvis Presley. "Groundhog" shows Sainte-Marie playing her unique mouthbow. The song "The Piney Wood Hills" was re-recorded for I'm Gonna Be a Country Girl Again three years later (in a Nashville country arrangement), and again thirty years later on the album Up Where We Belong.

Track listing

All tracks composed by Buffy Sainte-Marie, except where noted.

Side one

  1. "Must I Go Bound" (Traditional) – 2:36
  2. "Los Pescadores" – 2:01
  3. "Groundhog" (Traditional) – 2:13
  4. "On the Banks of Red Roses" (Traditional) – 2:36
  5. "Fixin' to Die" (Bukka White) – 2:29
  6. "Until It's Time for You to Go" – 2:27
  7. "The Piney Wood Hills" – 3:40

Side two

  1. "Welcome, Welcome Emigrante" – 2:12
  2. "Broke Down Girl" – 2:00
  3. "Johnny Be Fair" – 1:44
  4. "Maple Sugar Boy" (Traditional) – 1:42
  5. "Lazarus" (Traditional) – 2:56
  6. "Come All Ye Fair and Tender Ladies" (Traditional) – 4:48
  7. "Many a Mile" (Patrick Sky) – 2:42

Personnel

  • Buffy Sainte-Marie – vocals, instruments
  • Russ Savakus – bass
  • Daddy Bones – guitar on "The Piney Wood Hills"
  • Patrick Sky – guitar on "Many a Mile"
gollark: Perfectly sane.
gollark: <@!509849474647064576> and <@!134073775925886976> are perfectly sane.
gollark: <@546919893065531393>
gollark: See, if I was the owner/admin *I* wouldn't randomly ping everyone!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "wb") as out: out.write(code)```

References

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