From patchwork Wed Feb 3 19:14:14 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 3859 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4DWBFF23wzz3wdN for ; Wed, 3 Feb 2021 19:14:25 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4DWBFD2JdKzJh; Wed, 3 Feb 2021 19:14:24 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4DWBFD1Zx3z2yNY; Wed, 3 Feb 2021 19:14:24 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4DWBFB5Ndhz2xcv for ; Wed, 3 Feb 2021 19:14:22 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4DWBF95kxkzJh; Wed, 3 Feb 2021 19:14:21 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1612379662; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=mTS3iCQiHU5pDbG6WQ7MFMxB3ks4Ns62blsw4d0XmG4=; b=c/4aRq8L71yGCTLYkagUWBSQOeY00D89sJV9IeQWqP+T9m5X57f80wsHczcaMdGRNfa8RU Pl6KVa0XfJX0jhDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1612379662; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=mTS3iCQiHU5pDbG6WQ7MFMxB3ks4Ns62blsw4d0XmG4=; b=MrYVjfJ2/hFHUnMtvGFHKWx5NHiC2j4gaMyEeuH15kpjYLy0oVibn4wpdsIpTGmqcoqEVK 4Hx+V6qo4LBSXT3L5nAgsklxw2QXjjUWRaEB05Qd3/UlGWdAObu5tLDDcynymh2Y/7Bktd cMHKfgCfQp8Eepe0858dQMvGR7Y94DifNZb9s4H/JGtmd9OQ+1p8Tm0WCwa76OjoW7LZVu tnuTs8WGpzaq3gLIIug16xqL/YZT5wQkO6zYffXG7yjFmcsxMUrOgPgvmv2vsiEO+MkVvM zQQ/zn9Tc750cznBjjL9D85OTZVCzeIykVVPHXaNryhyH4tmPzoZeak8rjmEsw== From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] Add required files to allow building debian packages. Date: Wed, 3 Feb 2021 20:14:14 +0100 Message-Id: <20210203191414.25444-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Fixes #12570. Signed-off-by: Stefan Schantl --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 29 +++++++++++++++++++++++++++++ debian/rules | 4 ++++ 5 files changed, 54 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4b9942c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +fireperf (0.0.1) UNRELEASED; urgency=medium + + * Initial release. + + -- Michael Tremer Wed, 03 Feb 2021 19:35:23 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..15d34fc --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: fireperf +Section: utils +Priority: optional +Maintainer: Michael Tremer +Build-Depends: debhelper (>= 11) +Standards-Version: 4.3.0 +Homepage: https://git.ipfire.org/?p=fireperf.git +Vcs-Git: https://git.ipfire.org/pub/git/fireperf.git + +Package: fireperf +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Multi-Arch: foreign +Description: can perform network benchmarks to test throughput and quality of + a network between a fireperf client and fireperf server. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..fffa338 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: firperf +Upstream-Contact: Michael Tremer +Source: https://location.ipfire.org/download + +Files: * +Copyright: 2021 IPFire Development team +License: GPL-3+ + +Files: debian/* +Copyright: 2021 Stefan Schantl stefan.schantl@ipfire.org> +License: GPL-3+ + +License: GPL-3+ + 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 + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@