chlog: number entries as backport, NMU or no-change rebuild

The version flags were never reachable: --backport was declared but not
read, and compute_new_version's NMU/rebuild numbering sat behind a TODO
asking for CLI wiring (the old positional-bool signature always received
false). generate_entry now takes an EntryKind selected by three mutually
exclusive flags, and is async because the backport numbering derives the
Debian release number of the target series from distro-info:

- --backport: 1.0-1 becomes 1.0-1~bpo12+1 (12 = release number of the
  target series, backport suite names accepted too). Re-running on an
  already-numbered version bumps the counter; series without a numeric
  Debian release (sid, Ubuntu series, UNRELEASED) are rejected before
  anything is written.
- --nmu: 1.0-1 becomes 1.0-1.1 (native 1.0 becomes 1.0+nmu1).
- --rebuild: 1.0-1 becomes 1.0-1build1.

An explicit --version overrides all three. compute_new_version went
from four positional bools to a private Bump enum; backport numbering
reuses increment_suffix with a '~bpoNN+' suffix. The CLI prints the
computed new version before opening the editor.
This commit is contained in:
2026-09-19 20:56:03 +02:00
parent 47bb7c608e
commit 012df20961
3 changed files with 247 additions and 61 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ Missing features:
- [ ] Try to fetch the correct git branch for series on Debian, or fallback to the archive - [ ] Try to fetch the correct git branch for series on Debian, or fallback to the archive
- [ ] `pkh chlog` - [ ] `pkh chlog`
- [x] Auto-generate changelog entry - [x] Auto-generate changelog entry
- [ ] Extra flags: backport, non-maintainer upload, no change rebuild, ... - [x] Extra flags: backport, non-maintainer upload, no change rebuild, ...
- [ ] Commit changelog entry - [ ] Commit changelog entry
- [ ] `pkh build` - [ ] `pkh build`
- [x] Build the source package - [x] Build the source package
+219 -54
View File
@@ -22,12 +22,36 @@ pub struct GeneratedEntry {
pub path: std::path::PathBuf, pub path: std::path::PathBuf,
} }
/// The kind of upload a generated changelog entry describes: it selects how
/// the new entry's version is derived from the previous one. Ignored when an
/// explicit version is given.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
pub enum EntryKind {
/// A regular upload: the Debian revision is bumped (or the trailing
/// upstream number for native packages)
#[default]
Normal,
/// A non-maintainer upload: `1.0-1` becomes `1.0-1.1` (native `1.0`
/// becomes `1.0+nmu1`)
Nmu,
/// A no-change rebuild: `1.0-1` becomes `1.0-1build1`
Rebuild,
/// An Ubuntu upload: `1.0-1` becomes `1.0-1ubuntu1`. Library-only for
/// now: the pkh CLI has no flag selecting it.
Ubuntu,
/// A backport: `1.0-1` becomes `1.0-1~bpo12+1`, where 12 is the Debian
/// release number of the target series (derived from it: the series
/// must therefore be a numbered Debian release, e.g. not sid)
Backport,
}
/// Automatically generate a changelog entry from a commit history and previous changelog /// Automatically generate a changelog entry from a commit history and previous changelog
pub fn generate_entry( pub async fn generate_entry(
changelog_file: &str, changelog_file: &str,
cwd: Option<&Path>, cwd: Option<&Path>,
user_version: Option<&str>, user_version: Option<&str>,
target_series: Option<&str>, target_series: Option<&str>,
kind: EntryKind,
) -> Result<GeneratedEntry, Box<dyn std::error::Error>> { ) -> Result<GeneratedEntry, Box<dyn std::error::Error>> {
let changelog_path = if let Some(path) = cwd { let changelog_path = if let Some(path) = cwd {
path.join(changelog_file) path.join(changelog_file)
@@ -51,16 +75,27 @@ pub fn generate_entry(
Err(_e) => Vec::new(), Err(_e) => Vec::new(),
}; };
// The series the new entry targets: needed before the version is
// computed, because a backport version carries the target release number
let series = target_series.unwrap_or(&current_series).to_string();
// Compute new version if needed, or use user-supplied one // Compute new version if needed, or use user-supplied one
let new_version = if let Some(version) = user_version { let new_version = if let Some(version) = user_version {
version.to_string() version.to_string()
} else { } else {
// TODO: Pass these flags from CLI match kind {
compute_new_version(&old_version, false, false, false)? EntryKind::Normal => compute_new_version(&old_version, Bump::Normal)?,
EntryKind::Nmu => compute_new_version(&old_version, Bump::Nmu)?,
EntryKind::Rebuild => compute_new_version(&old_version, Bump::Rebuild)?,
EntryKind::Ubuntu => compute_new_version(&old_version, Bump::Ubuntu)?,
EntryKind::Backport => {
let number = backport_series_number(&series).await?;
compute_new_version(&old_version, Bump::Backport(number))?
}
}
}; };
let (maintainer_name, maintainer_email) = get_maintainer_info()?; let (maintainer_name, maintainer_email) = get_maintainer_info()?;
let series = target_series.unwrap_or(&current_series).to_string();
let new_entry = format_entry( let new_entry = format_entry(
&package, &package,
&new_version, &new_version,
@@ -81,28 +116,72 @@ pub fn generate_entry(
}) })
} }
/// Compute the next (most probable) version number of a package, from old version and /// How the new version is derived from the previous one: the conditions
/// conditions on changes (is ubuntu upload, is a no change rebuild, is a non-maintainer upload) /// [`compute_new_version`] acts on. The suffixes follow the usual
/// Debian/Ubuntu numbering conventions.
#[derive(Debug, Clone, PartialEq, Eq)]
enum Bump {
/// Regular upload: increment the trailing number
Normal,
/// Ubuntu upload: `1.0-9` becomes `1.0-9ubuntu1`
Ubuntu,
/// Non-maintainer upload: `1.0-1` becomes `1.0-1.1`, native `1.0`
/// becomes `1.0+nmu1`
Nmu,
/// No-change rebuild: `1.0-1` becomes `1.0-1build1`
Rebuild,
/// Backport to the Debian release whose series number is carried
/// (`"12"` for bookworm): `1.0-1` becomes `1.0-1~bpo12+1`
Backport(String),
}
/// Compute the next (most probable) version number of a package, from the
/// old version and the kind of upload the entry describes
fn compute_new_version( fn compute_new_version(
old_version: &str, old_version: &str,
is_ubuntu: bool, bump: Bump,
is_rebuild: bool,
is_nmu: bool,
) -> Result<String, Box<dyn std::error::Error>> { ) -> Result<String, Box<dyn std::error::Error>> {
if is_ubuntu { match bump {
return increment_suffix(old_version, "ubuntu"); Bump::Ubuntu => increment_suffix(old_version, "ubuntu"),
} Bump::Rebuild => increment_suffix(old_version, "build"),
if is_rebuild { Bump::Nmu => {
return increment_suffix(old_version, "build"); if old_version.contains('-') {
} increment_suffix(old_version, ".")
if is_nmu { } else {
if !old_version.contains('-') { increment_suffix(old_version, "+nmu")
return increment_suffix(old_version, "+nmu"); }
} else {
return increment_suffix(old_version, ".");
} }
// A re-backport of the same release reuses its `~bpoNN+M` counter,
// incrementing M: increment_suffix appends a fresh `~bpoNN+1` when
// the version carries no such suffix yet (including when it is a
// backport of another release, whose counter is left untouched)
Bump::Backport(number) => increment_suffix(old_version, &format!("~bpo{}+", number)),
Bump::Normal => increment_suffix(old_version, ""),
} }
increment_suffix(old_version, "") }
/// The Debian release number (e.g. `"12"` for bookworm) that backport
/// versions are numbered after (`~bpo12+1`), derived from the target series;
/// a backport suite name (`bookworm-backports`) is accepted too. Errors when
/// the series has no numeric Debian release number (sid, an Ubuntu series,
/// UNRELEASED, unknown): the numbering cannot be derived for it.
async fn backport_series_number(series: &str) -> Result<String, Box<dyn std::error::Error>> {
let base = series
.strip_suffix("-backports-sloppy")
.or_else(|| series.strip_suffix("-backports"))
.unwrap_or(series);
crate::distro_info::get_debian_series_number(base)
.await?
.filter(|number| !number.is_empty() && number.chars().all(|c| c.is_ascii_digit()))
.ok_or_else(|| {
format!(
"Could not determine the Debian release number of series '{series}', \
needed to number the backport version (as in 1.0-1~bpo12+1). \
Target a numbered Debian release (e.g. --series bookworm) \
or pass the version explicitly with --version."
)
.into()
})
} }
/// Increment a version number by 1, for a given suffix /// Increment a version number by 1, for a given suffix
@@ -515,8 +594,8 @@ mod tests {
.unwrap(); .unwrap();
} }
#[test] #[tokio::test]
fn test_generate_entry() { async fn test_generate_entry() {
let temp_dir = TempDir::new().unwrap(); let temp_dir = TempDir::new().unwrap();
let repo_dir = temp_dir.path(); let repo_dir = temp_dir.path();
setup_repo(repo_dir); setup_repo(repo_dir);
@@ -546,7 +625,15 @@ mod tests {
std::env::set_var("DEBFULLNAME", "Maintainer Maintainer"); std::env::set_var("DEBFULLNAME", "Maintainer Maintainer");
std::env::set_var("DEBEMAIL", "maintainer@maintainer.com"); std::env::set_var("DEBEMAIL", "maintainer@maintainer.com");
} }
generate_entry("debian/changelog", Some(repo_dir), None, None).unwrap(); generate_entry(
"debian/changelog",
Some(repo_dir),
None,
None,
EntryKind::Normal,
)
.await
.unwrap();
unsafe { unsafe {
std::env::remove_var("DEBFULLNAME"); std::env::remove_var("DEBFULLNAME");
std::env::remove_var("DEBEMAIL"); std::env::remove_var("DEBEMAIL");
@@ -568,78 +655,87 @@ mod tests {
fn test_compute_new_version() { fn test_compute_new_version() {
// Debian upload // Debian upload
assert_eq!( assert_eq!(
compute_new_version("15.2.0-8", false, false, false).unwrap(), compute_new_version("15.2.0-8", Bump::Normal).unwrap(),
"15.2.0-9" "15.2.0-9"
); );
assert_eq!( assert_eq!(
compute_new_version("15.2.0-9", false, false, false).unwrap(), compute_new_version("15.2.0-9", Bump::Normal).unwrap(),
"15.2.0-10" "15.2.0-10"
); );
// Ubuntu upload // Ubuntu upload
assert_eq!( assert_eq!(
compute_new_version("15.2.0-9", true, false, false).unwrap(), compute_new_version("15.2.0-9", Bump::Ubuntu).unwrap(),
"15.2.0-9ubuntu1" "15.2.0-9ubuntu1"
); );
assert_eq!( assert_eq!(
compute_new_version("15.2.0-9ubuntu1", true, false, false).unwrap(), compute_new_version("15.2.0-9ubuntu1", Bump::Ubuntu).unwrap(),
"15.2.0-9ubuntu2" "15.2.0-9ubuntu2"
); );
// No change rebuild // No change rebuild
assert_eq!( assert_eq!(
compute_new_version("15.2.0-9", false, true, false).unwrap(), compute_new_version("15.2.0-9", Bump::Rebuild).unwrap(),
"15.2.0-9build1" "15.2.0-9build1"
); );
assert_eq!( assert_eq!(
compute_new_version("15.2.0-9build1", false, true, false).unwrap(), compute_new_version("15.2.0-9build1", Bump::Rebuild).unwrap(),
"15.2.0-9build2" "15.2.0-9build2"
); );
// Rebuild of Ubuntu version // Rebuild of Ubuntu version
assert_eq!( assert_eq!(
compute_new_version("15.2.0-9ubuntu1", false, true, false).unwrap(), compute_new_version("15.2.0-9ubuntu1", Bump::Rebuild).unwrap(),
"15.2.0-9ubuntu1build1" "15.2.0-9ubuntu1build1"
); );
// NMU // NMU
// Native // Native
assert_eq!(compute_new_version("1.0", Bump::Nmu).unwrap(), "1.0+nmu1");
assert_eq!( assert_eq!(
compute_new_version("1.0", false, false, true).unwrap(), compute_new_version("1.0+nmu1", Bump::Nmu).unwrap(),
"1.0+nmu1"
);
assert_eq!(
compute_new_version("1.0+nmu1", false, false, true).unwrap(),
"1.0+nmu2" "1.0+nmu2"
); );
// Non-native // Non-native
assert_eq!(compute_new_version("1.0-1", Bump::Nmu).unwrap(), "1.0-1.1");
assert_eq!( assert_eq!(
compute_new_version("1.0-1", false, false, true).unwrap(), compute_new_version("1.0-1.1", Bump::Nmu).unwrap(),
"1.0-1.1"
);
assert_eq!(
compute_new_version("1.0-1.1", false, false, true).unwrap(),
"1.0-1.2" "1.0-1.2"
); );
// NMU of NMU? // NMU of NMU?
assert_eq!( assert_eq!(
compute_new_version("1.0-1.2", false, false, true).unwrap(), compute_new_version("1.0-1.2", Bump::Nmu).unwrap(),
"1.0-1.3" "1.0-1.3"
); );
// Backport
assert_eq!(
compute_new_version("1.0-1", Bump::Backport("12".to_string())).unwrap(),
"1.0-1~bpo12+1"
);
// Re-backporting the same source reuses the counter
assert_eq!(
compute_new_version("1.0-1~bpo12+1", Bump::Backport("12".to_string())).unwrap(),
"1.0-1~bpo12+2"
);
// Native packages backport too
assert_eq!(
compute_new_version("1.0", Bump::Backport("12".to_string())).unwrap(),
"1.0~bpo12+1"
);
// A version carrying another release's counter gains a fresh one
assert_eq!(
compute_new_version("1.0-1~bpo11+1", Bump::Backport("12".to_string())).unwrap(),
"1.0-1~bpo11+1~bpo12+1"
);
// Native package uploads // Native package uploads
assert_eq!(compute_new_version("1.0", Bump::Normal).unwrap(), "1.1");
assert_eq!(compute_new_version("1.0.5", Bump::Normal).unwrap(), "1.0.6");
assert_eq!( assert_eq!(
compute_new_version("1.0", false, false, false).unwrap(), compute_new_version("20241126", Bump::Normal).unwrap(),
"1.1"
);
assert_eq!(
compute_new_version("1.0.5", false, false, false).unwrap(),
"1.0.6"
);
assert_eq!(
compute_new_version("20241126", false, false, false).unwrap(),
"20241127" "20241127"
); );
} }
@@ -649,20 +745,89 @@ mod tests {
// Date-based versions with a trailing number larger than u32::MAX // Date-based versions with a trailing number larger than u32::MAX
// must increment normally (they fit in a u64) // must increment normally (they fit in a u64)
assert_eq!( assert_eq!(
compute_new_version("1.0-20250123123456", false, false, false).unwrap(), compute_new_version("1.0-20250123123456", Bump::Normal).unwrap(),
"1.0-20250123123457" "1.0-20250123123457"
); );
// A number that does not even fit in a u64 yields a clear error // A number that does not even fit in a u64 yields a clear error
// instead of panicking // instead of panicking
let err = compute_new_version("1.0-99999999999999999999999999", false, false, false); let err = compute_new_version("1.0-99999999999999999999999999", Bump::Normal);
assert!(err.is_err()); assert!(err.is_err());
// u64::MAX itself cannot be incremented // u64::MAX itself cannot be incremented
let err = compute_new_version("1.0-18446744073709551615", false, false, false); let err = compute_new_version("1.0-18446744073709551615", Bump::Normal);
assert!(err.is_err()); assert!(err.is_err());
} }
/// A backport entry is numbered after the Debian release number of the
/// target series (`~bpo12+1` for bookworm). Relies on the host
/// distro-info data mapping bookworm to 12 (see distro_info tests).
#[tokio::test]
async fn test_generate_entry_backport_numbering() {
let temp_dir = TempDir::new().unwrap();
let repo_dir = temp_dir.path();
let changelog_path = repo_dir.join("debian/changelog");
std::fs::create_dir_all(repo_dir.join("debian")).unwrap();
std::fs::write(
&changelog_path,
"mypackage (1.0-1) unstable; urgency=medium\n\n * Initial release\n\n -- Maintainer <m@e.com> Wed, 01 Jan 2020 00:00:00 +0000\n",
)
.unwrap();
unsafe {
std::env::set_var("DEBFULLNAME", "Maintainer Maintainer");
std::env::set_var("DEBEMAIL", "maintainer@maintainer.com");
}
let entry = generate_entry(
"debian/changelog",
Some(repo_dir),
None,
Some("bookworm"),
EntryKind::Backport,
)
.await
.unwrap();
unsafe {
std::env::remove_var("DEBFULLNAME");
std::env::remove_var("DEBEMAIL");
}
assert_eq!(entry.new_version, "1.0-1~bpo12+1");
assert_eq!(entry.series, "bookworm");
let content = std::fs::read_to_string(&changelog_path).unwrap();
assert!(content.contains("mypackage (1.0-1~bpo12+1) bookworm; urgency=medium"));
}
/// Backport numbering needs a numeric Debian release number: series
/// without one (Ubuntu series, sid, ...) are rejected before anything
/// is written, pointing at --series/--version instead.
#[tokio::test]
async fn test_generate_entry_backport_requires_numbered_series() {
let temp_dir = TempDir::new().unwrap();
let repo_dir = temp_dir.path();
let changelog_path = repo_dir.join("debian/changelog");
std::fs::create_dir_all(repo_dir.join("debian")).unwrap();
std::fs::write(
&changelog_path,
"mypackage (1.0-1) unstable; urgency=medium\n\n * Initial release\n\n -- Maintainer <m@e.com> Wed, 01 Jan 2020 00:00:00 +0000\n",
)
.unwrap();
let result = generate_entry(
"debian/changelog",
Some(repo_dir),
None,
Some("noble"),
EntryKind::Backport,
)
.await;
assert!(result.is_err());
// Nothing was written: the changelog is untouched
let content = std::fs::read_to_string(&changelog_path).unwrap();
assert!(content.starts_with("mypackage (1.0-1) unstable"));
}
#[test] #[test]
fn test_get_maintainer_info() { fn test_get_maintainer_info() {
// Test with env vars // Test with env vars
+27 -6
View File
@@ -7,8 +7,6 @@ use pkh::context::ContextConfig;
extern crate flate2; extern crate flate2;
use pkh::changelog::generate_entry;
use indicatif_log_bridge::LogWrapper; use indicatif_log_bridge::LogWrapper;
use log::{error, info}; use log::{error, info};
@@ -178,8 +176,12 @@ fn main() {
Command::new("chlog") Command::new("chlog")
.about("Auto-generate changelog entry, editing it, committing it afterwards") .about("Auto-generate changelog entry, editing it, committing it afterwards")
.arg(arg!(-s --series <series> "Target distribution series").required(false)) .arg(arg!(-s --series <series> "Target distribution series").required(false))
.arg(arg!(--backport "This changelog is for a backport entry").required(false)) .arg(arg!(--backport "Number the entry as a backport of the target series (1.0-1 becomes 1.0-1~bpo12+1)").required(false)
.arg(arg!(-v --version <version> "Target version").required(false)), .conflicts_with_all(["nmu", "rebuild"]))
.arg(arg!(--nmu "Number the entry as a non-maintainer upload (1.0-1 becomes 1.0-1.1, native 1.0 becomes 1.0+nmu1)").required(false)
.conflicts_with("rebuild"))
.arg(arg!(--rebuild "Number the entry as a no-change rebuild (1.0-1 becomes 1.0-1build1)").required(false))
.arg(arg!(-v --version <version> "Target version (overrides the --backport/--nmu/--rebuild numbering)").required(false)),
) )
.subcommand( .subcommand(
Command::new("build") Command::new("build")
@@ -389,6 +391,23 @@ fn main() {
let cwd = current_dir_or_exit(); let cwd = current_dir_or_exit();
let version = sub_matches.get_one::<String>("version").map(|s| s.as_str()); let version = sub_matches.get_one::<String>("version").map(|s| s.as_str());
let cli_series = sub_matches.get_one::<String>("series").map(|s| s.as_str()); let cli_series = sub_matches.get_one::<String>("series").map(|s| s.as_str());
let kind = if sub_matches
.get_one::<bool>("backport")
.copied()
.unwrap_or(false)
{
pkh::changelog::EntryKind::Backport
} else if sub_matches.get_one::<bool>("nmu").copied().unwrap_or(false) {
pkh::changelog::EntryKind::Nmu
} else if sub_matches
.get_one::<bool>("rebuild")
.copied()
.unwrap_or(false)
{
pkh::changelog::EntryKind::Rebuild
} else {
pkh::changelog::EntryKind::Normal
};
// Determine target series: CLI flag > interactive selector > current changelog series // Determine target series: CLI flag > interactive selector > current changelog series
let target_series = if let Some(s) = cli_series { let target_series = if let Some(s) = cli_series {
@@ -418,12 +437,13 @@ fn main() {
} }
}; };
let entry = match generate_entry( let entry = match rt.block_on(pkh::changelog::generate_entry(
"debian/changelog", "debian/changelog",
Some(&cwd), Some(&cwd),
version, version,
target_series.as_deref(), target_series.as_deref(),
) { kind,
)) {
Ok(entry) => entry, Ok(entry) => entry,
Err(e) => { Err(e) => {
error!("{}", e); error!("{}", e);
@@ -434,6 +454,7 @@ fn main() {
"Found package: {}, version: {}", "Found package: {}, version: {}",
entry.package, entry.previous_version entry.package, entry.previous_version
); );
println!("New version: {}", entry.new_version);
println!("Added new changelog entry to {}", entry.path.display()); println!("Added new changelog entry to {}", entry.path.display());
let editor = match std::env::var("EDITOR") { let editor = match std::env::var("EDITOR") {