bash: update to 4.2.45
This commit is contained in:
parent
3395e10200
commit
3cdcb8d966
111
bash/build.sh
Executable file
111
bash/build.sh
Executable file
@ -0,0 +1,111 @@
|
||||
#!/bin/bash
|
||||
# This is a buildpkg build.sh script
|
||||
# build.sh helper functions
|
||||
. ${BUILDPKG_SCRIPTS}/build.sh.functions
|
||||
#
|
||||
###########################################################
|
||||
# Check the following 4 variables before running the script
|
||||
topdir=bash
|
||||
real_version=4.2
|
||||
version=4.2.45
|
||||
pkgver=1
|
||||
source[0]=$topdir-$real_version.tar.gz
|
||||
|
||||
# Source function library
|
||||
. ${BUILDPKG_SCRIPTS}/buildpkg.functions
|
||||
|
||||
patch[0]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-001
|
||||
patch[1]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-002
|
||||
patch[2]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-003
|
||||
patch[3]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-004
|
||||
patch[4]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-005
|
||||
patch[5]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-006
|
||||
patch[6]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-007
|
||||
patch[7]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-008
|
||||
patch[8]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-009
|
||||
patch[9]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-010
|
||||
patch[10]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-011
|
||||
patch[11]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-012
|
||||
patch[12]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-013
|
||||
patch[13]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-014
|
||||
patch[14]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-015
|
||||
patch[15]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-016
|
||||
patch[16]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-017
|
||||
patch[17]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-018
|
||||
patch[18]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-019
|
||||
patch[19]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-020
|
||||
patch[20]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-021
|
||||
patch[21]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-022
|
||||
patch[22]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-023
|
||||
patch[23]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-024
|
||||
patch[24]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-025
|
||||
patch[25]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-026
|
||||
patch[26]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-027
|
||||
patch[27]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-028
|
||||
patch[28]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-029
|
||||
patch[29]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-030
|
||||
patch[30]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-031
|
||||
patch[31]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-032
|
||||
patch[32]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-033
|
||||
patch[33]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-034
|
||||
patch[34]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-035
|
||||
patch[35]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-036
|
||||
patch[36]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-037
|
||||
patch[37]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-038
|
||||
patch[38]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-039
|
||||
patch[39]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-040
|
||||
patch[40]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-041
|
||||
patch[41]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-042
|
||||
patch[42]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-043
|
||||
patch[43]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-044
|
||||
patch[44]=ftp://ftp.sunet.se/pub/gnu/bash/bash-${real_version}-patches/bash42-045
|
||||
|
||||
# Global settings
|
||||
export CPPFLAGS="-I$prefix/include"
|
||||
export LDFLAGS="-L$prefix/lib -R$prefix/lib"
|
||||
patch_prefix="-p0"
|
||||
topsrcdir=${topdir}-${real_version}
|
||||
|
||||
reg prep
|
||||
prep()
|
||||
{
|
||||
generic_prep
|
||||
}
|
||||
|
||||
reg build
|
||||
build()
|
||||
{
|
||||
generic_build
|
||||
}
|
||||
|
||||
reg check
|
||||
check()
|
||||
{
|
||||
generic_check
|
||||
}
|
||||
|
||||
reg install
|
||||
install()
|
||||
{
|
||||
generic_install DESTDIR
|
||||
doc AUTHORS CHANGES COMPAT NEWS POSIX RBASH README COPYING
|
||||
compat bash 3.2.39 1 1
|
||||
compat bash 4.2.42 1 1
|
||||
}
|
||||
|
||||
reg pack
|
||||
pack()
|
||||
{
|
||||
generic_pack
|
||||
}
|
||||
|
||||
reg distclean
|
||||
distclean()
|
||||
{
|
||||
clean distclean
|
||||
}
|
||||
|
||||
###################################################
|
||||
# No need to look below here
|
||||
###################################################
|
||||
build_sh $*
|
4
bash/meta/ChangeLog
Normal file
4
bash/meta/ChangeLog
Normal file
@ -0,0 +1,4 @@
|
||||
CHANGELOG
|
||||
---------
|
||||
* Sat Nov 09 2013 Tom G. Christensen <swpkg@jupiterrise.com> - 4.2.45-1
|
||||
- Import from tgcware v2
|
103
bash3/build.sh
103
bash3/build.sh
@ -1,103 +0,0 @@
|
||||
#!/bin/bash
|
||||
# This is a buildpkg build.sh script
|
||||
# build.sh helper functions
|
||||
. ${BUILDPKG_SCRIPTS}/build.sh.functions
|
||||
#
|
||||
###########################################################
|
||||
# Check the following 4 variables before running the script
|
||||
topdir=bash
|
||||
real_version=3.2
|
||||
version=3.2.39
|
||||
pkgver=1
|
||||
source[0]=$topdir-$real_version.tar.gz
|
||||
|
||||
# Source function library
|
||||
. ${BUILDPKG_SCRIPTS}/buildpkg.functions
|
||||
|
||||
patch[0]=${srcfiles}/${topdir}-${real_version}-patches/bash32-001
|
||||
patch[1]=${srcfiles}/${topdir}-${real_version}-patches/bash32-002
|
||||
patch[2]=${srcfiles}/${topdir}-${real_version}-patches/bash32-003
|
||||
patch[3]=${srcfiles}/${topdir}-${real_version}-patches/bash32-004
|
||||
patch[4]=${srcfiles}/${topdir}-${real_version}-patches/bash32-005
|
||||
patch[5]=${srcfiles}/${topdir}-${real_version}-patches/bash32-006
|
||||
patch[6]=${srcfiles}/${topdir}-${real_version}-patches/bash32-007
|
||||
patch[7]=${srcfiles}/${topdir}-${real_version}-patches/bash32-008
|
||||
patch[8]=${srcfiles}/${topdir}-${real_version}-patches/bash32-009
|
||||
patch[9]=${srcfiles}/${topdir}-${real_version}-patches/bash32-010
|
||||
patch[10]=${srcfiles}/${topdir}-${real_version}-patches/bash32-011
|
||||
patch[11]=${srcfiles}/${topdir}-${real_version}-patches/bash32-012
|
||||
patch[12]=${srcfiles}/${topdir}-${real_version}-patches/bash32-013
|
||||
patch[13]=${srcfiles}/${topdir}-${real_version}-patches/bash32-014
|
||||
patch[14]=${srcfiles}/${topdir}-${real_version}-patches/bash32-015
|
||||
patch[15]=${srcfiles}/${topdir}-${real_version}-patches/bash32-016
|
||||
patch[16]=${srcfiles}/${topdir}-${real_version}-patches/bash32-017
|
||||
patch[17]=${srcfiles}/${topdir}-${real_version}-patches/bash32-018
|
||||
patch[18]=${srcfiles}/${topdir}-${real_version}-patches/bash32-019
|
||||
patch[19]=${srcfiles}/${topdir}-${real_version}-patches/bash32-020
|
||||
patch[20]=${srcfiles}/${topdir}-${real_version}-patches/bash32-021
|
||||
patch[21]=${srcfiles}/${topdir}-${real_version}-patches/bash32-022
|
||||
patch[22]=${srcfiles}/${topdir}-${real_version}-patches/bash32-023
|
||||
patch[23]=${srcfiles}/${topdir}-${real_version}-patches/bash32-024
|
||||
patch[24]=${srcfiles}/${topdir}-${real_version}-patches/bash32-025
|
||||
patch[25]=${srcfiles}/${topdir}-${real_version}-patches/bash32-026
|
||||
patch[26]=${srcfiles}/${topdir}-${real_version}-patches/bash32-027
|
||||
patch[27]=${srcfiles}/${topdir}-${real_version}-patches/bash32-028
|
||||
patch[28]=${srcfiles}/${topdir}-${real_version}-patches/bash32-029
|
||||
patch[29]=${srcfiles}/${topdir}-${real_version}-patches/bash32-030
|
||||
patch[30]=${srcfiles}/${topdir}-${real_version}-patches/bash32-031
|
||||
patch[31]=${srcfiles}/${topdir}-${real_version}-patches/bash32-032
|
||||
patch[32]=${srcfiles}/${topdir}-${real_version}-patches/bash32-033
|
||||
patch[33]=${srcfiles}/${topdir}-${real_version}-patches/bash32-034
|
||||
patch[34]=${srcfiles}/${topdir}-${real_version}-patches/bash32-035
|
||||
patch[35]=${srcfiles}/${topdir}-${real_version}-patches/bash32-036
|
||||
patch[36]=${srcfiles}/${topdir}-${real_version}-patches/bash32-037
|
||||
patch[37]=${srcfiles}/${topdir}-${real_version}-patches/bash32-038
|
||||
patch[38]=${srcfiles}/${topdir}-${real_version}-patches/bash32-039
|
||||
|
||||
# Global settings
|
||||
export CPPFLAGS="-I$prefix/include"
|
||||
export LDFLAGS="-L$prefix/lib -R$prefix/lib"
|
||||
patch_prefix="-p0"
|
||||
topsrcdir=${topdir}-${real_version}
|
||||
|
||||
reg prep
|
||||
prep()
|
||||
{
|
||||
generic_prep
|
||||
}
|
||||
|
||||
reg build
|
||||
build()
|
||||
{
|
||||
generic_build
|
||||
}
|
||||
|
||||
reg check
|
||||
check()
|
||||
{
|
||||
generic_check
|
||||
}
|
||||
|
||||
reg install
|
||||
install()
|
||||
{
|
||||
generic_install DESTDIR
|
||||
doc AUTHORS CHANGES COMPAT NEWS POSIX RBASH README COPYING
|
||||
}
|
||||
|
||||
reg pack
|
||||
pack()
|
||||
{
|
||||
generic_pack
|
||||
}
|
||||
|
||||
reg distclean
|
||||
distclean()
|
||||
{
|
||||
clean distclean
|
||||
}
|
||||
|
||||
###################################################
|
||||
# No need to look below here
|
||||
###################################################
|
||||
build_sh $*
|
@ -1,27 +0,0 @@
|
||||
PACKAGE DETAILS
|
||||
---------------
|
||||
Name: %%PKGNAME%%
|
||||
Version: %%SOURCE_AND_VER%%
|
||||
Vendor: %%VENDOR%%
|
||||
Packager: %%PKGEDBY%%
|
||||
|
||||
Source (sha1sum):
|
||||
%%SOURCE_SHA1SUM%%
|
||||
|
||||
BUILD DETAILS
|
||||
-------------
|
||||
Compiler:
|
||||
%%COMPILER%%
|
||||
|
||||
Environment:
|
||||
%%ENVIRONMENT%%
|
||||
|
||||
Configure:
|
||||
%%CONFIGURE%%
|
||||
|
||||
KNOWN DEPENDENCIES
|
||||
------------------
|
||||
%%DEPENDENCIES%%
|
||||
|
||||
ERRORS/MISCELLANEOUS
|
||||
--------------------
|
Loading…
x
Reference in New Issue
Block a user