debian/0000775000000000000000000000000012261672040007170 5ustar debian/rules0000775000000000000000000000007312261671744010262 0ustar #!/usr/bin/make -f %: dh $@ --parallel --with autoreconf debian/watch0000664000000000000000000000004111730735403010217 0ustar # There are no upstream releases debian/changelog0000664000000000000000000000245112261672033011046 0ustar libshairport (1.2.1~git20120110.aeb4987-2ubuntu1) trusty; urgency=medium * Use dh-autoreconf to get new libtool macros for ppc64el and update config.{sub,guess} for new arches. -- Logan Rosen Fri, 03 Jan 2014 21:38:00 -0500 libshairport (1.2.1~git20120110.aeb4987-2) unstable; urgency=low * Allow dev package to be multiarch installable. * Bump to Standards-Version 3.9.3. -- Andres Mejia Fri, 16 Mar 2012 18:22:59 -0400 libshairport (1.2.1~git20120110.aeb4987-1) unstable; urgency=low * Prepare upload of libshairport to Debian. (Closes: #655270) -- Andres Mejia Tue, 10 Jan 2012 23:37:25 -0500 libshairport (1.2.0.20310.1-0ubuntu1~oneiric1) oneiric; urgency=low * port to oneiric -- Mario Sitz Thu, 10 Nov 2011 20:48:38 +0100 libshairport (1.2.0.20310.1-0ubuntu1~lucid1) lucid; urgency=low * reorganize patches -- Mario Sitz Thu, 10 Nov 2011 20:46:46 +0100 libshairport (1.2.0.20310-0ubuntu1~oneiric1) oneiric; urgency=low * port to oneiric -- Mario Sitz Thu, 10 Nov 2011 20:02:01 +0100 libshairport (1.2.0.20310-0ubuntu1~lucid1) lucid; urgency=low * Initial release -- Mario Sitz Sun, 23 Oct 2011 10:40:05 +0200 debian/libshairport1.lintian-overrides0000664000000000000000000000016311730735403015336 0ustar # libshairport code is under MIT license, packaging is GPL-2+ libshairport1: possible-gpl-code-linked-with-openssl debian/compat0000664000000000000000000000000211730735403010371 0ustar 9 debian/libshairport-dev.install0000664000000000000000000000010311730735403014033 0ustar usr/include usr/lib/*/pkgconfig usr/lib/*/lib*.so usr/lib/*/lib*.a debian/copyright0000664000000000000000000000420311730735403011125 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: libshairport Source: http://mirrors.xbmc.org/build-deps/darwin-libs/ Files: * Copyright: 2005 David Hammerton 2011 James Laird 2011 M. Andrew Webster License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: debian/* Copyright: 2011 Mario Sitz 2012 Andres Mejia License: GPL-2+ 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 2 can be found in "/usr/share/common-licenses/GPL-2". debian/source/0000775000000000000000000000000011730735403010473 5ustar debian/source/format0000664000000000000000000000001411730735403011701 0ustar 3.0 (quilt) debian/source/options0000664000000000000000000000005211730735403012106 0ustar unapply-patches abort-on-upstream-changes debian/source/lintian-overrides0000664000000000000000000000022011730735403014046 0ustar # Only Build-Depends on debhelper (>= 8.1.3~) is needed, so ignore this. libshairport source: package-needs-versioned-debhelper-build-depends 9 debian/libshairport-get-orig-source0000775000000000000000000000330411730735403014634 0ustar #!/bin/sh set -e # Script used to generate the orig source tarball for libshairport. LIBSHAIRPORT_GIT_URL="git://github.com/amejia1/libshairport.git" LIBSHAIRPORT_GIT_COMMIT="aeb4987f571ee79b3f2e6ccaecd7c1ac3c39e360" DATE_RETRIEVED="20120110" COMMIT_SHORT_FORM="$(echo $LIBSHAIRPORT_GIT_COMMIT | \ sed -e 's/^\([[:xdigit:]]\{,7\}\).*/\1/')" LIBSHAIRPORT_VERSION="1.2.1~git${DATE_RETRIEVED}.${COMMIT_SHORT_FORM}" rm -rf "libshairport-${LIBSHAIRPORT_VERSION}" git clone "$LIBSHAIRPORT_GIT_URL" "libshairport-${LIBSHAIRPORT_VERSION}" cd "libshairport-${LIBSHAIRPORT_VERSION}" git checkout "$LIBSHAIRPORT_GIT_COMMIT" autoreconf -vif cd .. # Remove temp files and other cruft from source tarball # The find command snippet here was taken from debhelper's dh_clean command # with some modification to delete more unneeded files. echo "Removing temp files and other cruft from source tarball" find libshairport-${LIBSHAIRPORT_VERSION} \( \( -type f -a \ \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ -o -name config.status -o -name config.cache -o -name config.log \ \) -exec rm -f "{}" \; \) -o \ \( -type d -a -name autom4te.cache -prune -exec rm -rf "{}" \; \) \) rm -rf libshairport-${LIBSHAIRPORT_VERSION}/.git rm -f libshairport-${LIBSHAIRPORT_VERSION}/.gitignore # Remove empty directories echo "Removing empty directories" find libshairport-${LIBSHAIRPORT_VERSION} -type d -empty -delete tar --exclude-vcs -czf "libshairport_${LIBSHAIRPORT_VERSION}.orig.tar.gz" \ "libshairport-${LIBSHAIRPORT_VERSION}/" debian/libshairport1.install0000664000000000000000000000002411730735403013342 0ustar usr/lib/*/lib*.so.* debian/control0000664000000000000000000000321312261672035010576 0ustar Source: libshairport Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Andres Mejia Build-Depends: debhelper (>= 8.1.3~), libssl-dev, libao-dev, dh-autoreconf Standards-Version: 3.9.3 Section: libs Homepage: http://mirrors.xbmc.org/build-deps/darwin-libs/ Vcs-Git: git://anonscm.debian.org/collab-maint/libshairport.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/libshairport.git Package: libshairport-dev Multi-Arch: same Section: libdevel Architecture: any Depends: libao-dev, libshairport1 (= ${binary:Version}), ${misc:Depends} Description: emulates an AirPort Express (development files) This program emulates an AirPort Express for the purpose of streaming music from iTunes and compatible iPods. It implements a server for the Apple RAOP protocol. ShairPort does not support AirPlay v2 (video and photo streaming). It supports multiple simultaneous streams, if your audio output chain (as detected by libao) does so. . This package installs the files necessary for development. Package: libshairport1 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: ${shlibs:Depends}, ${misc:Depends} Description: emulates an AirPort Express (shared library) This program emulates an AirPort Express for the purpose of streaming music from iTunes and compatible iPods. It implements a server for the Apple RAOP protocol. ShairPort does not support AirPlay v2 (video and photo streaming). It supports multiple simultaneous streams, if your audio output chain (as detected by libao) does so. . This package installs the shared library. debian/gbp.conf0000664000000000000000000000003611730735403010611 0ustar [DEFAULT] pristine-tar = True