diff options
author | Alex David <flu0r1ne@flu0r1ne.net> | 2021-08-24 23:37:01 -0500 |
---|---|---|
committer | Alex David <flu0r1ne@flu0r1ne.net> | 2021-08-24 23:37:01 -0500 |
commit | 84a6dbd7122da083da808d2236352b6f5a597571 (patch) | |
tree | 9e2c502b4891bb5e4c95c4cb298009bd222e6aba | |
parent | ac828ba769bad298cb3a404008409b0af11088c7 (diff) | |
download | deb-git-update-agent-84a6dbd7122da083da808d2236352b6f5a597571.tar.xz deb-git-update-agent-84a6dbd7122da083da808d2236352b6f5a597571.zip |
Add pkg metadata
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 16 | ||||
-rw-r--r-- | debian/copyright | 43 | ||||
-rw-r--r-- | debian/gbp.conf | 3 | ||||
-rw-r--r-- | debian/install | 1 | ||||
-rwxr-xr-x | debian/rules | 9 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/watch | 4 |
8 files changed, 82 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f2a56ac --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +git-update-agent (0.0.3-1) focal; urgency=medium + + * Initial release + + -- Alex David <flu0r1ne@flu0r1ne.net> Tue, 24 Aug 2021 22:26:26 -0500 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..513d9a8 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: git-update-agent +Section: devel +Priority: optional +Maintainer: Alex David <flu0r1ne@flu0r1ne.net> +Build-Depends: debhelper-compat (= 12) +Standards-Version: 4.4.1 +Homepage: https://www.git.flu0r1ne.net/git-update-agent/about +Vcs-Browser: https://www.git.flu0r1ne.net/deb-git-update-agent/ +Vcs-Git: https://git.flu0r1ne.net/deb-git-update-agent/ + +Package: git-update-agent +Architecture: all +Depends: git, + ${misc:Depends} +Description: An automatic updater for Git projects + An automatic updater for Git projects. Provides helper to automatically synchronize a Git project with an upstream. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..00f02d8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,43 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: git-update-agent +Upstream-Contact: <preferred name and address to reach the upstream project> +Source: https://www.git.flu0r1ne.net/git-update-agent + +Files: * +Copyright: 2021 Alex David <flu0r1ne@flu0r1ne.net> +License: GPL-2+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/> + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + +Files: debian/* +Copyright: 2021 Alex David <flu0r1ne@flu0r1ne.net> +License: GPL-2+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/> + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..3d450c2 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,3 @@ +[DEFAULT] +debian-branch = debian/sid +dist = DEP14 diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..e1c983d --- /dev/null +++ b/debian/install @@ -0,0 +1 @@ +git-update-agent usr/bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..bc08b3f --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) + +%: + dh $@ + +override_dh_auto_build: +override_dh_auto_install: + 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/watch b/debian/watch new file mode 100644 index 0000000..e054322 --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 +opts="mode=git, gitmode=full, pgpmode=none" \ +https://git.flu0r1ne.net/planr \ +refs/tags/v([\d\.]+) debian uupdate |