From 18fb7aa81dd428280512269b079c037af00e912b 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 | 16 ++++++++++++++++ .gitignore | 3 +++ Makefile.am | 1 + debian/changelog | 5 +++++ debian/control | 17 +++++++++++++++++ debian/copyright | 11 +++++++++++ debian/rules | 12 ++++++++++++ 7 files changed, 65 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/.github/workflows/mclip.yml b/.github/workflows/mclip.yml index 9bc1b4f..db0eacf 100644 --- a/.github/workflows/mclip.yml +++ b/.github/workflows/mclip.yml @@ -19,6 +19,22 @@ jobs: - name: Make run: make + - name: Make dist + run: make dist + + - name: Debian package + run: | + sudo apt-get install -y devscripts + mkdir -p "${RUNNER_TEMP}/debian-packaging" + cp mclip-*.tar.gz "${RUNNER_TEMP}/debian-packaging" + cd "${RUNNER_TEMP}/debian-packaging" + ORIG_TAR_GZ=$(ls mclip-*.gz | sed -E 's/^mclip-([[:digit:]])\.([[:digit:]])\.([[:digit:]])\.tar\.gz$/mclip_\1.\2.\3\.orig\.tar\.gz/g') + mv mclip-*.tar.gz "${ORIG_TAR_GZ}" + tar xf "${ORIG_TAR_GZ}" + cd mclip-*/ + cp -R "${GITHUB_WORKSPACE}/debian" . + debuild -us -uc + - 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/changelog b/debian/changelog new file mode 100644 index 0000000..66b3210 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +mclip (1.0.0-1) UNRELEASED; 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..3f03ad7 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +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: mclip +Architecture: any +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: mclip (for "Memory CLIPboard") is a very simple clipboard manager which stores its data inside a POSIX + shared memory object. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..13aa099 --- /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/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