--- asterisk-prompt-fr-armelle-20070613.orig/debian/changelog +++ asterisk-prompt-fr-armelle-20070613/debian/changelog @@ -0,0 +1,28 @@ +asterisk-prompt-fr-armelle (20070613-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * debian/compat: 5 -> 7. (Closes: #965429) + * debian/rules: Add build-arch. (Closes: #999033) + + -- Adrian Bunk Tue, 08 Nov 2022 14:06:48 +0200 + +asterisk-prompt-fr-armelle (20070613-2.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Fri, 08 Jan 2021 14:58:38 +0100 + +asterisk-prompt-fr-armelle (20070613-2) unstable; urgency=low + + * Sounds are compatible with Asterisk 1.2, so relax recommendation to + version 1.2 or later + + -- Lionel Elie Mamane Sat, 23 Jun 2007 17:39:18 +0200 + +asterisk-prompt-fr-armelle (20070613-1) unstable; urgency=low + + * Initial release + + -- Lionel Elie Mamane Fri, 15 Jun 2007 19:59:50 +0200 + --- asterisk-prompt-fr-armelle-20070613.orig/debian/compat +++ asterisk-prompt-fr-armelle-20070613/debian/compat @@ -0,0 +1 @@ +7 --- asterisk-prompt-fr-armelle-20070613.orig/debian/control +++ asterisk-prompt-fr-armelle-20070613/debian/control @@ -0,0 +1,21 @@ +Source: asterisk-prompt-fr-armelle +Section: comm +Priority: extra +Maintainer: Debian VoIP team +Uploaders: Lionel Elie Mamane +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: asterisk-prompt-fr-armelle +Architecture: all +Recommends: asterisk (>= 1:1.2) +Conflicts: asterisk-prompt-fr +Provides: asterisk-prompt-fr +Replaces: asterisk-prompt-fr +Depends: ${misc:Depends} +Description: French voice prompts for Asterisk by Armelle Desjardins + These are French voice prompts for the Asterisk PBX, recorded by + Armelle Desjardins for Michel Gutierrez. + . + You need such prompts if you intend to run Asterisk and wish to + support French-speaking callers. --- asterisk-prompt-fr-armelle-20070613.orig/debian/copyright +++ asterisk-prompt-fr-armelle-20070613/debian/copyright @@ -0,0 +1,54 @@ +This package was debianized by Lionel Elie Mamane on +Fri, 15 Jun 2007 19:59:50 +0200. + +It was downloaded from + +Upstream: + + Voice actor: Armelle Desjardins + Copyright holder (2006): Michel Gutierrez + +License: + + Copyright (C) 2006 Michel Gutierrez + + Redistribution and use, with or without modification, are permitted + provided that the following conditions are met: + 1. Redistributions must retain the above copyright notice, this + list of conditions and the following disclaimer. + 2. Neither the name of the Indigen Solutions nor the names of its + contributors, contractors and employees may be used to endorse + or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. + + +The Debian packaging is (C) 2007, Lionel Elie Mamane + and is free software; you can redistribute it +and/or modify it under the terms of the GNU General Public License; +either version 2 of the License, or (at your option) any later version +as published by the Free Software Foundation. + +It 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 package; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 +USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- asterisk-prompt-fr-armelle-20070613.orig/debian/dirs +++ asterisk-prompt-fr-armelle-20070613/debian/dirs @@ -0,0 +1 @@ +usr/share/asterisk/sounds/fr --- asterisk-prompt-fr-armelle-20070613.orig/debian/rules +++ asterisk-prompt-fr-armelle-20070613/debian/rules @@ -0,0 +1,54 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +NO_DISTRIB:=LICENSE.txt +NO_DISTRIB_FIND_EXPR:=$(patsubst %,-not -name '%',$(NO_DISTRIB)) +PKG_NAME:=asterisk-prompt-fr-armelle +LNG:=fr + +build: build-indep + +build-indep: + +clean: + dh_testdir + dh_testroot + rm -f build-stamp debian/links + + dh_clean + +binary-indep: build-indep install + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + dh_installchangelogs + dh_installdocs + + cp -R $(LNG) debian/$(PKG_NAME)/usr/share/asterisk/sounds/ + set -e; find . -mindepth 1 -maxdepth 1 -type d -not -name debian $(NO_DISTRIB_FIND_EXPR) -not -name $(LNG) | while read d; do cp -R $${d}/$(LNG) debian/$(PKG_NAME)/usr/share/asterisk/sounds/$(LNG)/$${d}; done + + set -e; \ + ( cd debian/$(PKG_NAME)/usr/share/asterisk/sounds/$(LNG)/; \ + for d in $$(find . -mindepth 1 -type d -printf '%P\n'); do \ + mkdir -p ../$${d}; \ + echo usr/share/asterisk/sounds/$(LNG)/$${d} usr/share/asterisk/sounds/$${d}/$(LNG); \ + done ) > debian/links + dh_link + + dh_compress + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +#Only "arch: any", so nothing to do, but that target is mandatory. +binary-arch: + +binary: binary-indep binary-arch +build-arch: build + +.PHONY: clean binary-indep binary-arch binary install build build-arch build-indep