From abec5c07858f90b9475bc97789da2751fc6a5fe3 Mon Sep 17 00:00:00 2001 From: Baptiste Gaillard Date: Sat, 16 Dec 2023 09:07:34 +0100 Subject: [PATCH] Add Debian configuration. --- .github/workflows/mclip.yml | 4 ++++ .gitignore | 3 +++ Makefile.am | 1 + debian/README.Debian | 8 ++++++++ debian/changelog | 5 +++++ debian/control | 18 ++++++++++++++++++ debian/copyright | 11 +++++++++++ debian/patches/series | 1 + debian/rules | 12 ++++++++++++ debian/source/format | 1 + debian/source/local-options | 4 ++++ debian/source/options | 4 ++++ debian/source/patch-header | 22 ++++++++++++++++++++++ debian/tests/control | 6 ++++++ debian/upstream/metadata | 16 ++++++++++++++++ debian/watch | 2 ++ 16 files changed, 118 insertions(+) create mode 100644 debian/README.Debian create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/patches/series create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/source/local-options create mode 100644 debian/source/options create mode 100644 debian/source/patch-header create mode 100644 debian/tests/control create mode 100644 debian/upstream/metadata create mode 100644 debian/watch diff --git a/.github/workflows/mclip.yml b/.github/workflows/mclip.yml index 9bc1b4f..d2c9803 100644 --- a/.github/workflows/mclip.yml +++ b/.github/workflows/mclip.yml @@ -19,6 +19,10 @@ jobs: - name: Make run: make + - name: Debian package + run: | + debmake --dist --invoke debuild + - name: Upload uses: actions/upload-artifact@v3 with: diff --git a/.gitignore b/.gitignore index e3061cf..894360d 100644 --- a/.gitignore +++ b/.gitignore @@ -118,4 +118,7 @@ Makefile # Other ######################################################################################################################## +# make dist and make distdir +mclip-* +mclip_* src/mclip diff --git a/Makefile.am b/Makefile.am index b23ad65..2845eb1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,4 @@ SUBDIRS = src dist_doc_DATA = README.md man_MANS = man/$(PACKAGE).1 +EXTRA_DIST = $(man_MANS) diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..f130224 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,8 @@ +mclip for Debian + +Please edit this to provide information specific to +this mclip Debian package. + + (Automatically generated by debmake Version 4.4.0) + + -- Baptiste Gaillard Sat, 16 Dec 2023 09:00:37 +0100 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..51da618 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +mclip (1.0.0-1) unstable; urgency=low + + * Initial release. + + -- Baptiste Gaillard Sat, 16 Dec 2023 09:00:37 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..1938826 --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: mclip +Section: utils +Priority: optional +Maintainer: Baptiste Gaillard +Build-Depends: debhelper-compat (= 13), dh-autoreconf +Standards-Version: 4.5.1 +Homepage: https://github.com/bgaillard/mclip +Rules-Requires-Root: no +Vcs-Git: https://github.com/bgaillard/mclip.git +#Vcs-Browser: https://salsa.debian.org/debian/mclip + +Package: bin +Architecture: any +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: auto-generated package by debmake + This Debian binary package was auto-generated by the + debmake(1) command provided by the debmake package. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..57d6362 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,11 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: mclip +Upstream-Contact: Baptiste Gaillard +Source: https://github.com/bgaillard/mclip +# +# Please double check copyright with the licensecheck(1) command. + +Files: + * +Copyright: 2023 Baptiste Gaillard +License: GPL-3+ diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f0c70fd --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f +# You must remove unused comment lines for the released package. +#export DH_VERBOSE = 1 +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + +%: + dh $@ --with autoreconf + +#override_dh_install: +# dh_install --list-missing -X.la -X.pyc -X.pyo diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/local-options b/debian/source/local-options new file mode 100644 index 0000000..77effbe --- /dev/null +++ b/debian/source/local-options @@ -0,0 +1,4 @@ +# +# ### gbp-buildpackage(1) user may like this. ### +#abort-on-upstream-changes +#unapply-patches diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..077de7d --- /dev/null +++ b/debian/source/options @@ -0,0 +1,4 @@ +# +# ### dgit-maint-merge(7) workflow user need this ### +# single-debian-patch +# auto-commit diff --git a/debian/source/patch-header b/debian/source/patch-header new file mode 100644 index 0000000..6ff0a40 --- /dev/null +++ b/debian/source/patch-header @@ -0,0 +1,22 @@ +The automatically generated patch puts this free form text on top of it. + +If you are using gbp-buildpackage(1), you probably don't need this file. + +If you are using dgit-maint-merge(7), please consider text as follows. + +The Debian packaging of foo is maintained in git, using the merging workflow +described in dgit-maint-merge(7). There isn't a patch queue that can be +represented as a quilt series. + +A detailed breakdown of the changes is available from their canonical +representation - git commits in the packaging repository. For example, to see +the changes made by the Debian maintainer in the first upload of upstream +version 1.2.3, you could use: + + % git clone https://git.dgit.debian.org/foo + % cd foo + % git log --oneline 1.2.3..debian/1.2.3-1 -- . ':!debian' + +(If you have dgit, use `dgit clone foo`, rather than plain `git clone`.) + +A single combined diff, containing all the changes, follows. diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 0000000..a0fbc51 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,6 @@ +# +# DEP-8: autopkgtest - automatic as-installed package testing +# Please check * https://dep-team.pages.debian.net/deps/dep8/ +# * /usr/share/doc/autopkgtest +#Tests: testcode.sh +#Restrictions: allow-stderr, breaks-testbed, needs-internet, needs-root diff --git a/debian/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..dc2feb0 --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,16 @@ +# +# DEP-12: Per-package machine-readable metadata about Upstream +# Please check * https://dep-team.pages.debian.net/deps/dep12/ +# * https://wiki.debian.org/UpstreamMetadata +Reference: + Author: + Title: + Journal: + Year: + Volume: + Number: + Pages: + DOI: + PMID: + URL: + eprint: diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..76575dc --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +# You must remove unused comment lines for the released package. +version=3