diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 17 | ||||
-rw-r--r-- | debian/copyright | 27 | ||||
-rw-r--r-- | debian/debian-archive-keyring.install | 2 | ||||
-rw-r--r-- | debian/debian-archive-keyring.postrm | 12 | ||||
-rw-r--r-- | debian/lintian-brush.conf | 1 | ||||
-rwxr-xr-x | debian/rules | 6 | ||||
-rw-r--r-- | debian/source/format | 1 |
9 files changed, 72 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..6a2ca59 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +jadupc-archive-keyring (2023.2.9) shopno; urgency=medium + + * initial release + + -- Mubashshir <ahm@jadupc.com> Thu, 9 Feb 2023 18:32:00 +0600 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..09ff00e --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: jadupc-archive-keyring +Priority: important +Section: misc +Maintainer: JaduPC Tech Team <tech@jadupc.com> +Uploaders: Mubashshir <ahm@jadupc.com>, + Saikat <fas@jadupc.com>, +Build-Depends: debhelper (>= 10), jetring, gnupg +Rules-Requires-Root: no +Standards-Version: 4.1.2 + +Package: jadupc-archive-keyring +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends} +Description: GnuPG archive keys of the JaduPC/ShopnoOS archive + The JaduPC/ShopnoOS project digitally signs its Release files. This package + contains the archive keys used for that. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d934ced --- /dev/null +++ b/debian/copyright @@ -0,0 +1,27 @@ +This is Debian GNU's GnuPG keyrings of archive keys. + +This package was originally put together by Michael Vogt +<mvo@debian.org> + +The keys in the keyrings don't fall under any copyright. Everything +else in the package is covered by the GNU GPL. + +Debian support files Copyright (C) 2006 Michael Vogt <mvo@debian.org> +based on the debian-keyring package maintained by James Troup + +Debian support files for debian-archive-keyring are free software; you +can redistribute them and/or modify them under the terms of the GNU +General Public License as published by the Free Software Foundation; +either version 2, or (at your option) any later version. + +Debian support files for debian-archive-keyring are distributed in the +hope that they 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 with +your Debian system, in /usr/share/common-licenses/GPL, or with the +Debian GNU debian-archive-keyring source package as the file COPYING. +If not, write to the Free Software Foundation, Inc., 51 Franklin Street, +Fifth Floor, Boston, MA 02110-1301 USA. + diff --git a/debian/debian-archive-keyring.install b/debian/debian-archive-keyring.install new file mode 100644 index 0000000..24a1b06 --- /dev/null +++ b/debian/debian-archive-keyring.install @@ -0,0 +1,2 @@ +usr/share/keyrings/* +etc/apt/trusted.gpg.d/* diff --git a/debian/debian-archive-keyring.postrm b/debian/debian-archive-keyring.postrm new file mode 100644 index 0000000..b86240b --- /dev/null +++ b/debian/debian-archive-keyring.postrm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +if [ "$1" = "purge" ] +then + # Remove the symlink + rm -f /etc/apt/trusted.gpg.d/debian-archive-keyring.gpg +fi + +#DEBHELPER# + diff --git a/debian/lintian-brush.conf b/debian/lintian-brush.conf new file mode 100644 index 0000000..af2774e --- /dev/null +++ b/debian/lintian-brush.conf @@ -0,0 +1 @@ +compat-release = oldstable diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..043b269 --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_build: + dh_auto_build --no-parallel diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) |