Browse Source

remove debian dir

pull/185/head
Rafael Diniz 1 year ago
parent
commit
70fbbb93fd
12 changed files with 0 additions and 122 deletions
  1. +0
    -9
      debian/.gitignore
  2. +0
    -6
      debian/changelog
  3. +0
    -1
      debian/compat
  4. +0
    -29
      debian/control
  5. +0
    -15
      debian/copyright
  6. +0
    -2
      debian/libwiringpi-dev.dirs
  7. +0
    -3
      debian/libwiringpi-dev.install
  8. +0
    -1
      debian/libwiringpi2.install
  9. +0
    -2
      debian/libwiringpi2.shlibs
  10. +0
    -49
      debian/rules
  11. +0
    -1
      debian/wiringpi.dirs
  12. +0
    -4
      debian/wiringpi.install

+ 0
- 9
debian/.gitignore View File

@@ -1,9 +0,0 @@
*.debhelper.log
*.substvars
tmp
wiringpi
libwiringpi2
libwiringpi-dev
files
*.postinst.debhelper
*.postrm.debhelper

+ 0
- 6
debian/changelog View File

@@ -1,6 +0,0 @@
wiringpi (2.26~iwj) rpi-unstable; urgency=low

* Initial version with real Debian source package build.

-- Ian Jackson <ijackson@chiark.greenend.org.uk> Sat, 12 Sep 2015 18:31:35 +0100


+ 0
- 1
debian/compat View File

@@ -1 +0,0 @@
8

+ 0
- 29
debian/control View File

@@ -1,29 +0,0 @@
Source: wiringpi
Section: electronics
Priority: optional
Maintainer: Ian Jackson <ijackson@chiark.greenend.org.uk>
Standards-Version: 3.8.0
Homepage: https://github.com/WiringPi/WiringPi
Build-Depends: debhelper (>= 8)

Package: libwiringpi2
Section: libs
Architecture: armhf
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GPIO librariees for Raspberry Pi (runtime).
Runtime for the popular wiringPi library.

Package: wiringpi
Architecture: armhf
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: gpio utility for Raspberry Pi
The wiringPi gpio command line utility, for GPIO access on a
Raspberry Pi from the command line.

Package: libwiringpi-dev
Architecture: armhf
Depends: libwiringpi2 (= ${binary:Version}), libc6-dev, ${misc:Depends}
Suggests: wiringpi
Description: GPIO development library for Raspberry Pi
Development libraries to allow GPIO access on a Raspberry Pi from C
and C++ programs.

+ 0
- 15
debian/copyright View File

@@ -1,15 +0,0 @@
wiringPi is Copyright (C) 2012-2015 Gordon Henderson.

wiringPi is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License, as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

wiringPi 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 Lesser General Public License for more details.

On all Debian and Raspbian systems, a copy of the GNU Lesser General
Public License version 3 can be found in
`/usr/share/common-licenses/LGPL-3'.

+ 0
- 2
debian/libwiringpi-dev.dirs View File

@@ -1,2 +0,0 @@
usr/lib
usr/include

+ 0
- 3
debian/libwiringpi-dev.install View File

@@ -1,3 +0,0 @@
debian/tmp/usr/include
debian/tmp/usr/lib/*.so
examples usr/share/doc/libwiringpi-dev

+ 0
- 1
debian/libwiringpi2.install View File

@@ -1 +0,0 @@
debian/tmp/usr/lib/lib*.so.*

+ 0
- 2
debian/libwiringpi2.shlibs View File

@@ -1,2 +0,0 @@
libwiringPi 2 libwiringpi2
libwiringPiDev 2 libwiringpi2

+ 0
- 49
debian/rules View File

@@ -1,49 +0,0 @@
#!/usr/bin/make -f

.PHONY: build

VERSION:=$(shell cat VERSION)
export VERSION

soname:=$(shell echo $${VERSION%%.*})
WIRINGPI_SONAME_SUFFIX:=.$(soname)
export soname
export WIRINGPI_SONAME_SUFFIX

build:
dh $@

override_dh_auto_configure:

override_dh_prep:
dh_prep -Xdebian/tmp

dirs:
dh_installdirs -A
mkdir debian/tmp
set -e; for p in `dh_listpackages`; do \
(cd debian/$$p; find -type d) | \
(cd debian/tmp; xargs mkdir -p) \
done

override_dh_clean:
dh_clean
WIRINGPI_SUDO= bash -xe ./build clean

override_dh_auto_build: dirs
V=1 LDCONFIG=: WIRINGPI_SUDO= WIRINGPI_SUID=0 \
DESTDIR=`pwd`/debian/tmp/usr \
PREFIX= WIRINGPI_SUDO= \
bash -xe ./build

override_dh_auto_install:
dh_install
set -ex; for l in libwiringPi libwiringPiDev; do \
ln -sf $$l.so.$${VERSION} \
debian/libwiringpi$$soname/usr/lib/$$l.so.$$soname; \
ln -sf $$l.so.$${VERSION} \
debian/libwiringpi-dev/usr/lib/$$l.so; \
done

%:
dh $@

+ 0
- 1
debian/wiringpi.dirs View File

@@ -1 +0,0 @@
usr/bin

+ 0
- 4
debian/wiringpi.install View File

@@ -1,4 +0,0 @@
debian/tmp/usr/bin
debian/tmp/usr/man usr/share
README.TXT usr/share/doc/wiringpi
People usr/share/doc/wiringpi

Loading…
Cancel
Save