diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..c42844d --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +deblint (0.0.0-1) unstable; urgency=low + + * Initial release. + + -- Your Name Tue, 16 Apr 2024 00:00:00 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..8f004aa --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: deblint +Section: utils +Priority: optional +Maintainer: Your Name +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.8 +Homepage: https://github.com/frode-h/deblint + +Package: deblint +Architecture: all +Depends: python3-regex, python3-apt +Description: Track down unused Debian packages +Deblint is a tool for tracking down unused Debian packages that no other packages depend on. It's designed to help you clean up your system by identifying and removing packages that are no longer needed. + +Deblint uses atime to decide which packages have not been used in the set time. \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..9677726 --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@