diff options
Diffstat (limited to 'src/fullpkg')
-rwxr-xr-x | src/fullpkg/fullpkg | 6 | ||||
-rwxr-xr-x | src/fullpkg/fullpkg-build | 5 | ||||
-rwxr-xr-x | src/fullpkg/fullpkg-find | 11 |
3 files changed, 16 insertions, 6 deletions
diff --git a/src/fullpkg/fullpkg b/src/fullpkg/fullpkg index 978cf7b..0572ddb 100755 --- a/src/fullpkg/fullpkg +++ b/src/fullpkg/fullpkg @@ -1,8 +1,12 @@ #!/usr/bin/env bash -# set -x # uncomment for debug # Builds packages from ABS recursively. It tries to find dependencies that # aren't built or need update and then makepkg them in order. +# Copyright (C) 2011 Nicolás Reynolds <fauno@parabola.nu> +# Copyright (C) 2011-2012 Joshua Ismael Haase Hernández (xihh) <hahj87@gmail.com> +# +# License: Unspecified + usage() { print "Usage: %s [OPTIONS] [BUILD_DIR]" "${0##*/}" print "A (libre)makepkg wrapper that will also build dependencies" diff --git a/src/fullpkg/fullpkg-build b/src/fullpkg/fullpkg-build index e824c2e..0ffd42a 100755 --- a/src/fullpkg/fullpkg-build +++ b/src/fullpkg/fullpkg-build @@ -3,6 +3,11 @@ # Builds packages from ABS recursively. It tries to find dependencies that # aren't built or need update and then makepkg them in order. +# Copyright (C) 2011 Joshua Ismael Haase Hernández (xihh) <hahj87@gmail.com> +# Copyright (C) 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# +# License: Unspecified + # TODO move __build to chroot . libremessages diff --git a/src/fullpkg/fullpkg-find b/src/fullpkg/fullpkg-find index 8bd630c..009bb86 100755 --- a/src/fullpkg/fullpkg-find +++ b/src/fullpkg/fullpkg-find @@ -1,10 +1,10 @@ #!/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) 2011-2012 Joshua Ismael Haase Hernández (xihh) <hahj87@gmail.com> +# Copyright (C) 2011-2012 Nicolás Reynolds <fauno@parabola.nu> # Copyright (C) 2012 Michał Masłowski <mtjm@mtjm.eu> -# Copyright (C) 2012-2014 Luke Shumaker <LukeShu@sbcglobal.net> +# Copyright (C) 2012-2014 Luke Shumaker <lukeshu@sbcglobal.net> # # The copy_files() function is taken from makechrootpkg: # Copyright (C) 2007 Armin Luntzer <armin@archlinuxppc.org> @@ -13,8 +13,7 @@ # 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 Biru Ionut <ibiru@archlinux.org> # Copyright (C) 2009 Evangelos Foutras <foutrelis@gmail.com> # Copyright (C) 2009 Francois Charette <francois@samarqand.localdomain> # Copyright (C) 2009 Nezmer <Nezmer@allurelinux.org> @@ -33,6 +32,8 @@ # Because of the code from makechrootpkg, this file is GPLv2, instead of GPLv3 # like most of libretools. # +# License: GNU GPLv2 +# # 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. |