From 1f972ea8f4cbf984ac972b3471903b156e39d283 Mon Sep 17 00:00:00 2001 From: Mubashshir Date: Wed, 15 Feb 2023 15:37:47 +0600 Subject: Initial release Signed-off-by: Mubashshir --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 17 +++++++++++++++++ debian/copyright | 27 +++++++++++++++++++++++++++ debian/debian-archive-keyring.install | 2 ++ debian/debian-archive-keyring.postrm | 12 ++++++++++++ debian/lintian-brush.conf | 1 + debian/rules | 6 ++++++ debian/source/format | 1 + 9 files changed, 72 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/debian-archive-keyring.install create mode 100644 debian/debian-archive-keyring.postrm create mode 100644 debian/lintian-brush.conf create mode 100755 debian/rules create mode 100644 debian/source/format (limited to 'debian') 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 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 +Uploaders: Mubashshir , + Saikat , +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 + + +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 +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) -- cgit v1.2.3