Skip to content
Snippets Groups Projects
Commit 9c30f6b8 authored by Alexandre Detiste's avatar Alexandre Detiste :snowflake:
Browse files

release now to fix RC bug, enable dh-cruft later

parent 18d645d5
No related branches found
No related tags found
No related merge requests found
cruft-ng (0.9.48) unstable; urgency=medium cruft-ng (0.9.48) unstable; urgency=medium
* new "dh-cruft" binary package: this DebHelper module is to be used * rewrite last script that needed the "file" command
by source package that wants to provide their own rules. (Closes: #1023336, #1024168)
* rewrite last script that needed the "file" command (Closes: #1023336)
* many more performance improvements by Christian Göttsche * many more performance improvements by Christian Göttsche
* add rules for: firebird3.0-server * add rules for: firebird3.0-server
-- Alexandre Detiste <alexandre.detiste@gmail.com> Sat, 05 Nov 2022 01:48:53 +0100 -- Alexandre Detiste <alexandre.detiste@gmail.com> Fri, 18 Nov 2022 11:38:34 +0100
cruft-ng (0.9.47) unstable; urgency=medium cruft-ng (0.9.47) unstable; urgency=medium
......
...@@ -41,17 +41,17 @@ Description: programs that helps analyse volatile "cruft" files on your system ...@@ -41,17 +41,17 @@ Description: programs that helps analyse volatile "cruft" files on your system
Packages wanting to document such volatile files can do so Packages wanting to document such volatile files can do so
using dh-cruft. using dh-cruft.
Package: dh-cruft #Package: dh-cruft
Depends: ${perl:Depends}, ${misc:Depends} #Depends: ${perl:Depends}, ${misc:Depends}
Architecture: all #Architecture: all
Provides: dh-sequence-cruft #Provides: dh-sequence-cruft
Description: plugin for DebHelper to register .cruft and .purge files #Description: plugin for DebHelper to register .cruft and .purge files
While the files listed in debian/<package>.cruft will simply be # While the files listed in debian/<package>.cruft will simply be
accounted for; the one in debian/<package>.purge will actually # accounted for; the one in debian/<package>.purge will actually
be removed in the final purge step after package removal. # be removed in the final purge step after package removal.
. # .
Some demo package can be found at: # Some demo package can be found at:
https://github.com/a-detiste/dh-cruft-test # https://github.com/a-detiste/dh-cruft-test
Package: cruft Package: cruft
Depends: cruft-ng, ${misc:Depends} Depends: cruft-ng, ${misc:Depends}
......
...@@ -18,12 +18,12 @@ endif ...@@ -18,12 +18,12 @@ endif
override_dh_auto_install: override_dh_auto_install:
dh_auto_install --destdir=debian/cruft-ng dh_auto_install --destdir=debian/cruft-ng
mkdir -p debian/tmp/ # mkdir -p debian/tmp/
pod2man --utf8 dh-cruft/dh_cruft debian/tmp/dh_cruft.1 # pod2man --utf8 dh-cruft/dh_cruft debian/tmp/dh_cruft.1
override_dh_install: override_dh_install:
dh_install dh_install
sed -i 's/DH_CRUFT_VERSION/"$(DEB_VERSION)"/' debian/dh-cruft/usr/bin/dh_cruft # sed -i 's/DH_CRUFT_VERSION/"$(DEB_VERSION)"/' debian/dh-cruft/usr/bin/dh_cruft
ifeq ($(DEB_DISTRIBUTION),$(filter $(DEB_DISTRIBUTION),buster focal)) ifeq ($(DEB_DISTRIBUTION),$(filter $(DEB_DISTRIBUTION),buster focal))
mkdir -p debian/cruft-ng/usr/lib/cruft/ mkdir -p debian/cruft-ng/usr/lib/cruft/
cp -a csv.py debian/cruft-ng/usr/lib/cruft/ cp -a csv.py debian/cruft-ng/usr/lib/cruft/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment