]> www.infradead.org Git - users/sagi/nvme-cli.git/commitdiff
Remove debian/ directory
authorBreno Leitao <breno.leitao@gmail.com>
Mon, 6 Feb 2017 13:04:35 +0000 (08:04 -0500)
committerBreno Leitao <breno.leitao@gmail.com>
Mon, 6 Feb 2017 13:04:35 +0000 (08:04 -0500)
Current debian/ directory is not used anymore. All the debian control
files are kept in the packages at Debian/Ubuntu/etc

This directory is, in fact, causing trouble when upgrading nvme-cli in
Debian.

Signed-off-by: Breno Leitao <breno.leitao@gmail.com>
debian/changelog [deleted file]
debian/compat [deleted file]
debian/control [deleted file]
debian/copyright [deleted file]
debian/postinst [deleted file]
debian/postrm [deleted file]
debian/rules [deleted file]
debian/source/format [deleted file]
debian/watch [deleted file]

diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644 (file)
index 26ce506..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-nvme-cli (0.5-1) unstable; urgency=medium
-
-  * New upstream release
-  * Fix version number (Closes: #816438)
-
- -- Breno Leitao <brenohl@br.ibm.com>  Wed, 02 Mar 2016 15:30:12 -0500
-
-nvme-cli (0.3-1) unstable; urgency=medium
-
-  * Initial release. (Closes: #810033)
-
- -- Breno Leitao <brenohl@br.ibm.com>  Tue, 05 Jan 2016 14:40:05 -0500
diff --git a/debian/compat b/debian/compat
deleted file mode 100644 (file)
index ec63514..0000000
+++ /dev/null
@@ -1 +0,0 @@
-9
diff --git a/debian/control b/debian/control
deleted file mode 100644 (file)
index e45b4b1..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-Source: nvme-cli
-Maintainer: Breno Leitao <brenohl@br.ibm.com>
-Section: admin
-Priority: optional
-Standards-Version: 3.9.7
-Build-Depends: debhelper (>= 9), libudev-dev
-Homepage: https://github.com/linux-nvme/nvme-cli
-
-Package: nvme-cli
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: userspace tooling to control NVMe drives
- NVMe is a fast, scalable, direct attached storage interface, accessing
- solid state drives through PCIe.
- .
- The nvme CLI contains core management tools with minimal dependencies.
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644 (file)
index 51cb131..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Source: https://github.com/linux-nvme/nvme-cli
-
-Files: *
-Copyright: 2011-2015 Intel Corporation
-           2014 PMC-Sierra, Inc
-License: GPL-2+
-
-Files: linux/nvme.h
-Copyright: 2011-2014 Intel Corporation.
-License: GPL-2
-
-License: GPL-2+
- This program 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 program 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.
- .
- On Debian systems, the full text of the GNU General Public License
- version 2 can be found in `/usr/share/common-licenses/GPL-2'.
-
-License: GPL-2
- This program is free software; you can redistribute it and/or modify it
- under the terms and conditions of the GNU General Public License,
- version 2, as published by the Free Software Foundation.
- .
- This program is distributed in the hope 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.
- .
- On Debian systems, the full text of the GNU General Public License
- version 2 can be found in `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100644 (file)
index cd497b7..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "$1" in
-    configure|install)
-       if [ ! -f /etc/nvme/hostnqn ]; then
-               install -D /dev/null /etc/nvme/hostnqn
-               echo `nvme gen-hostnqn` > /etc/nvme/hostnqn
-        fi
-        ;;
-
-    upgrade|abort-upgrade)
-        ;;
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 0
-        ;;
-esac
-exit 0
diff --git a/debian/postrm b/debian/postrm
deleted file mode 100644 (file)
index c655ee4..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-if [ "$1" = "purge" ]; then
-       if [ -d /etc/nvme ]; then
-               rm -f /etc/nvme/hostnqn
-               if [ ! -n "`ls -A /etc/nvme`" ]; then
-                       rm -rf /etc/nvme
-               fi
-       fi
-fi
diff --git a/debian/rules b/debian/rules
deleted file mode 100755 (executable)
index e797412..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/make -f
-
-export DEB_BUILD_MAINT_OPTIONS = hardening=+all
-
-%:
-       dh $@
-
-override_dh_auto_test:
-
-override_dh_auto_install:
-       dh_auto_install -- PREFIX=/usr
diff --git a/debian/source/format b/debian/source/format
deleted file mode 100644 (file)
index 163aaf8..0000000
+++ /dev/null
@@ -1 +0,0 @@
-3.0 (quilt)
diff --git a/debian/watch b/debian/watch
deleted file mode 100644 (file)
index 082059c..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-version=3
-opts="filenamemangle=s/(?:.*?)?v?(\d[\d.]*)\.tar\.gz/nvme-cli-$1.tar.gz/" \
-https://github.com/linux-nvme/nvme-cli/tags (?:.*?/)?v?(\d[\d.]*)\.tar\.gz