From 5fdddf6f37c64da093c7f59e3a85214e819ae652 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Fri, 28 Sep 2018 11:25:54 -0500 Subject: [PATCH] Removed 'debian' directory. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Details: - Removed the top-level 'debian' directory. This directory is apparently no longer needed (issue #257). Thanks to M. Zhou and Nico Schlömer for their contributions. --- debian/changelog | 5 ---- debian/compat | 1 - debian/control | 50 -------------------------------------- debian/copyright | 32 ------------------------ debian/libblis-dev.install | 3 --- debian/libblis.install | 1 - debian/rules | 15 ------------ debian/source/format | 1 - debian/watch | 3 --- 9 files changed, 111 deletions(-) delete mode 100644 debian/changelog delete mode 100644 debian/compat delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/libblis-dev.install delete mode 100644 debian/libblis.install delete mode 100755 debian/rules delete mode 100644 debian/source/format delete mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index ce2c4a568..000000000 --- a/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -blis (0.3.2-1ubuntu1) UNRELEASED; urgency=medium - - * Initial package - - -- Nico Schlömer Fri, 04 May 2018 12:42:09 +0200 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index ec635144f..000000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debian/control b/debian/control deleted file mode 100644 index 5b73c5cfd..000000000 --- a/debian/control +++ /dev/null @@ -1,50 +0,0 @@ -Source: blis -Maintainer: Debian Science Maintainers -Uploaders: Nico Schlömer -Section: math -Priority: optional -Standards-Version: 4.1.4 -# Vcs-Browser: https://anonscm.debian.org/cgit/debian-science/packages/blis.git -# Vcs-Git: https://anonscm.debian.org/git/debian-science/packages/blis.git -Homepage: https://github.com/flame/blis -Build-Depends: - debhelper (>= 9), - python - -Package: libblis-dev -Architecture: any -Section: libdevel -Depends: libblis (= ${binary:Version}), ${misc:Depends} -Recommends: blis -Description: BLAS-like Library Instantiation Software Framework - BLIS is a portable software framework for instantiating high-performance - BLAS-like dense linear algebra libraries. The framework was designed to - isolate essential kernels of computation that, when optimized, immediately - enable optimized implementations of most of its commonly used and - computationally intensive operations. BLIS is written in ISO C99 and available - under a new/modified/3-clause BSD license. While BLIS exports a new BLAS-like - API, it also includes a BLAS compatibility layer which gives application - developers access to BLIS implementations via traditional BLAS routine calls. - An object-based API is also available for more experienced users. - . - The package contains development files. - -Package: libblis -Architecture: any -Multi-Arch: same -Section: libs -Depends: ${misc:Depends}, ${shlibs:Depends} -Recommends: blis -Pre-Depends: ${misc:Pre-Depends} -Description: BLAS-like Library Instantiation Software Framework - shared library - BLIS is a portable software framework for instantiating high-performance - BLAS-like dense linear algebra libraries. The framework was designed to - isolate essential kernels of computation that, when optimized, immediately - enable optimized implementations of most of its commonly used and - computationally intensive operations. BLIS is written in ISO C99 and available - under a new/modified/3-clause BSD license. While BLIS exports a new BLAS-like - API, it also includes a BLAS compatibility layer which gives application - developers access to BLIS implementations via traditional BLAS routine calls. - An object-based API is also available for more experienced users. - . - The package contains a shared library. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 4088b56fd..000000000 --- a/debian/copyright +++ /dev/null @@ -1,32 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: blis -Source: https://github.com/flame/blis - -Files: * -Copyright: Copyright (C) 2017, Advanced Micro Devices, Inc. -License: BSD-3 - BSD-3 - . - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/debian/libblis-dev.install b/debian/libblis-dev.install deleted file mode 100644 index 2f1ac0140..000000000 --- a/debian/libblis-dev.install +++ /dev/null @@ -1,3 +0,0 @@ -usr/include -usr/lib/*/libblis.so -usr/lib/*/libblis.a diff --git a/debian/libblis.install b/debian/libblis.install deleted file mode 100644 index 2963ee63b..000000000 --- a/debian/libblis.install +++ /dev/null @@ -1 +0,0 @@ -usr/lib/*/libblis.so.* diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 024b6cbb4..000000000 --- a/debian/rules +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/make -f - -DEB_HOST_MULTIARCH?=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH) - -ifeq ($(DEB_HOST_MULTIARCH),x86_64-linux-gnu) - CONFIG=x86_64 -else - CONFIG=generic -endif - -%: - dh $@ - -override_dh_auto_configure: - ./configure --prefix=/usr --libdir=/usr/lib/$(DEB_HOST_MULTIARCH) --enable-static --enable-shared $(CONFIG) diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 163aaf8d8..000000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/debian/watch b/debian/watch deleted file mode 100644 index a69b2e45f..000000000 --- a/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=4 -opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/-$1\.tar\.gz/ \ - https://github.com/flame/blis/tags .*/v?(\d\S+)\.tar\.gz