El jue, 6 may 2021 a las 17:36, Debian Bug Tracking System (<ow...@bugs.debian.org>) escribió: > > Changes: > regina-rexx (3.6-2.3) unstable; urgency=medium > . > * Non-maintainer upload with maintaner agreement. > * Migrate to (still old-style) debhelper (Closes: #982884). > - Make package multiarch. > - Fix reproducibility problems (Closes: #854294). > * Split original az-patch-01 patch into smaller 0000_AZ_*.diff patches. > * debian/control: Add "Rules-Requires-Root: no"
Hi, Alen, Noticed a minor issue after this, libregina3 and libregina-dev were not tagged as Multi-Arch: same. I am also proposing another couple of minor issues, On the one hand, installing HACKERS.txt into -dev package, on the other hand revert file ordering in HISTORY, so newer changelogs are shown first. I am attaching three patches with the proposed changes for your consideration in next upload. Regards, -- Agustin
From 57b7f0d23dddde878e87d57d29a7f9b3876f3363 Mon Sep 17 00:00:00 2001 From: Agustin Martin Domingo <agmar...@debian.org> Date: Mon, 10 May 2021 00:12:10 +0200 Subject: [PATCH 1/3] debian/control: Mark libregina3 and libregina-dev "Multi-Arch: same" Signed-off-by: Agustin Martin Domingo <agmar...@debian.org> --- debian/control | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/control b/debian/control index 14e0106..c81a5e3 100644 --- a/debian/control +++ b/debian/control @@ -16,6 +16,7 @@ Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: regina3 Replaces: regina3 +Multi-Arch: same Description: Regina REXX interpreter, run-time library Regina is an ANSI compliant REXX interpreter for multiple platforms. . @@ -36,6 +37,7 @@ Conflicts: regina2-dev, regina3-dev Replaces: regina2-dev, regina3-dev +Multi-Arch: same Description: Regina REXX interpreter, development files Regina is an ANSI compliant REXX interpreter for multiple platforms. . -- 2.31.1
From 514da86934a33579e9c5e5b60adef398573468d3 Mon Sep 17 00:00:00 2001 From: Agustin Martin Domingo <agmar...@debian.org> Date: Fri, 7 May 2021 17:16:35 +0200 Subject: [PATCH 2/3] debian/libregina3-dev.docs: Install HACKERS.txt. Signed-off-by: Agustin Martin Domingo <agmar...@debian.org> --- debian/libregina3-dev.docs | 1 + 1 file changed, 1 insertion(+) create mode 100644 debian/libregina3-dev.docs diff --git a/debian/libregina3-dev.docs b/debian/libregina3-dev.docs new file mode 100644 index 0000000..50ca005 --- /dev/null +++ b/debian/libregina3-dev.docs @@ -0,0 +1 @@ +HACKERS.txt -- 2.31.1
From 856566881972e2bfd04277f7152d1cb8d7fd0397 Mon Sep 17 00:00:00 2001 From: Agustin Martin Domingo <agmar...@debian.org> Date: Fri, 7 May 2021 19:21:04 +0200 Subject: [PATCH 3/3] debian/rules: Revert file ordering in HISTORY file. Newer first. Signed-off-by: Agustin Martin Domingo <agmar...@debian.org> --- debian/rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 1d8b4cf..5bcb163 100755 --- a/debian/rules +++ b/debian/rules @@ -58,8 +58,8 @@ build-stamp: configure-stamp # Add here commands to compile the package. $(MAKE) CFLAGS="$(CFLAGS) $(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" - #docbook-to-man debian/pam-encfs.sgml > pam-encfs.1 - cat README.0* README.2* README.3* > $(HISTORY) + # Bundle all READMEs into a single HISTORY file + cat $(shell echo README.0* README.2* README.3* | tr -s ' ' '\n' | sort -r) > $(HISTORY) touch build-stamp -- 2.31.1