diff options
-rwxr-xr-x | src/fullpkg/fullpkg-find | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/src/fullpkg/fullpkg-find b/src/fullpkg/fullpkg-find index 1a4f62e..fd6a107 100755 --- a/src/fullpkg/fullpkg-find +++ b/src/fullpkg/fullpkg-find @@ -1,5 +1,48 @@ #!/usr/bin/env bash # set -x # uncomment for debug + +# Copyright (c) 2011-2012 Joshua I. Haase H. (xihh) <hahj87@gmail.com> +# Copyright (c) 2011-2012 Nicolás Reynolds <fauno@kiwwwi.com.ar> +# Copyright (c) 2012 Michał Masłowski <mtjm@mtjm.eu> +# Copyright (c) 2012-2013 Luke Shumaker <LukeShu@sbcglobal.net> +# +# The copy_files() function is taken from makechrootpkg: +# Copyright (c) 2007 Armin Luntzer <armin@archlinuxppc.org> +# Copyright (c) 2007 Jason Chu <jchu@xentac.net> +# Copyright (c) 2007, 2011 Dan McGee <dan@archlinux.org> +# Copyright (c) 2007-2008 Travis Willard <travis@archlinux.org> +# Copyright (c) 2007-2009 Aaron Griffin <aaronmgriffin@gmail.com> +# Copyright (c) 2008 Simo Leone <simo@archlinux.org> +# Copyright (c) 2009 Biru Ionut <biru.ionut@gmail.com> +# Copyright (c) 2009 Biru Ionut <ionut@archlinux.ro> +# Copyright (c) 2009 Evangelos Foutras <foutrelis@gmail.com> +# Copyright (c) 2009 Francois Charette <francois@samarqand.localdomain> +# Copyright (c) 2009 Nezmer <Nezmer@allurelinux.org> +# Copyright (c) 2009 Ronald van Haren <pressh@gmail.com> +# Copyright (c) 2009-2011 Andrea Scarpino <andrea@archlinux.org> +# Copyright (c) 2009-2012 Allan McRae <allan@archlinux.org> +# Copyright (c) 2009-2012 Eric Bélanger <snowmaniscool@gmail.com> +# Copyright (c) 2009-2012 Pierre Schmitz <pierre@archlinux.de> +# Copyright (c) 2010 Byron Clark <byron@theclarkfamily.name> +# Copyright (c) 2011 Ionut Biru <ibiru@archlinux.org> +# Copyright (c) 2011 Lukas Fleischer <archlinux@cryptocrack.de> +# Copyright (c) 2011-2012 Florian Pritz <bluewind@xinu.at> +# Copyright (c) 2011-2013 Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> +# Copyright (c) 2013 Sébastien Luttringer <seblu@seblu.net> +# +# Because of the code from makechrootpkg, this file is GPLv2, instead of GPLv3 +# like most of libretools. +# +# 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; version 2 of the License. +# +# 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. + + # Builds packages from ABS recursively. It tries to find dependencies that # aren't built or need update and then makepkg them in order. @@ -12,7 +55,6 @@ guess_repo() { } # This function is stolen from makechrootpkg. -# That probably has some copyright/licensing implications. copy_files() { local copydir="$build_dir/${pkgbase:-${pkgname[0]}}" |