[aa283c0] | 1 | # $Id$
|
---|
[945ccaa] | 2 | # functions for recording installation of a package and make a tarball,
|
---|
| 3 | # or using fakeroot type commands for install, then packing and installing
|
---|
| 4 | # the package.
|
---|
| 5 | # We only have access to variables PKGDIR and PKG_DEST. Other variables could
|
---|
| 6 | # be set in the environment
|
---|
| 7 |
|
---|
| 8 | extract_version() {
|
---|
| 9 | local VERSION
|
---|
| 10 |
|
---|
| 11 | case $1 in
|
---|
[3b4399c9] | 12 | expect*|tcl*|tk*|mozjs*|lynx*)
|
---|
[945ccaa] | 13 | VERSION=$(echo $1 | sed 's/^[^0-9]*//')
|
---|
| 14 | ;;
|
---|
[974fe35] | 15 | unzip*|zip*)
|
---|
[945ccaa] | 16 | VERSION=$(echo $1 | sed 's/^[^0-9]*\([0-9]\)\([0-9]\)/\1.\2/')
|
---|
| 17 | ;;
|
---|
| 18 | wireless_tools*|LVM2*)
|
---|
| 19 | VERSION=$(echo $1 | sed 's/^[^.]*\.//')
|
---|
| 20 | ;;
|
---|
| 21 | x264*)
|
---|
| 22 | VERSION=$(echo $1 | sed 's/.*shot-//')
|
---|
| 23 | ;;
|
---|
| 24 | icu*) # No version in PCKGVRS! Use version directly from xml book.
|
---|
[1fa0dee] | 25 | # JH_PACK_INSTALL contains the path to this script, which is in the
|
---|
[945ccaa] | 26 | # parent dir of the book.
|
---|
[1fa0dee] | 27 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
[945ccaa] | 28 | local VERSION1=$(sed -n 's/.*icu-major[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 29 | local VERSION2=$(sed -n 's/.*icu-minor[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 30 | VERSION=$VERSION1.$VERSION2
|
---|
| 31 | ;;
|
---|
[711b98e] | 32 | exiv*)
|
---|
[1fa0dee] | 33 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
[711b98e] | 34 | VERSION=$(sed -n 's/.*exiv2[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 35 | ;;
|
---|
[d0e13dd] | 36 | flashplayer*)
|
---|
[1fa0dee] | 37 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
[d0e13dd] | 38 | VERSION=$(sed -n 's/.*flashplayer[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 39 | ;;
|
---|
[619b313] | 40 | pax*)
|
---|
| 41 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
| 42 | VERSION=$(sed -n 's/.*pax[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 43 | ;;
|
---|
[8fb1daa] | 44 | psutils*)
|
---|
| 45 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
| 46 | VERSION=$(sed -n 's/.*psutils[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 47 | ;;
|
---|
[945ccaa] | 48 | soundtouch*)
|
---|
[1fa0dee] | 49 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
[945ccaa] | 50 | VERSION=$(sed -n 's/.*soundtouch[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 51 | ;;
|
---|
[5c69841] | 52 | unrar*)
|
---|
| 53 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
| 54 | VERSION=$(sed -n 's/.*unrar[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 55 | ;;
|
---|
[e674994] | 56 | xvid*)
|
---|
[1fa0dee] | 57 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
|
---|
[e674994] | 58 | VERSION=$(sed -n 's/.*xvid[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 59 | ;;
|
---|
[945ccaa] | 60 | xf86-video-intel)
|
---|
[1fa0dee] | 61 | local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/x/installing/x7driver-intel.xml
|
---|
[945ccaa] | 62 | VERSION=$(sed -n '/<!--/!s/.*-version[^;][^0-9]*\([^"]*\).*/\1/p' $PACKENT)
|
---|
| 63 | ;;
|
---|
| 64 | jdk8*)
|
---|
| 65 | VERSION=1.8.0.$(echo $1 | sed 's/.*u\([0-9]\+\).*/\1/')
|
---|
| 66 | ;;
|
---|
| 67 | docbook-xml)
|
---|
| 68 | VERSION=4.5
|
---|
| 69 | ;;
|
---|
| 70 | cacerts*)
|
---|
| 71 | VERSION=0.1
|
---|
| 72 | ;;
|
---|
[2d99aa4] | 73 | btrfs*|node*|pnmixer*|libhandy*)
|
---|
[d0e13dd] | 74 | VERSION=$(echo $1 | sed 's/^.*v//')
|
---|
| 75 | ;;
|
---|
[b25dbcf] | 76 | x265*) # can contain vd.d or just d.d: thanks to packagers
|
---|
| 77 | VERSION=$(echo $1 | sed 's/^.*[v_]//')
|
---|
[eb5a32d] | 78 | ;;
|
---|
[04fcea1] | 79 | libuv*|Test-MockModule*) # can contain -vd.d or just -d.d
|
---|
[0d1c9f0] | 80 | VERSION=$(echo $1 | sed 's/^.*[v-]//')
|
---|
| 81 | ;;
|
---|
[6747d51] | 82 | junit*) # can contain -rd.d or just -d.d
|
---|
| 83 | VERSION=$(echo $1 | sed 's/^.*[r-]//')
|
---|
| 84 | ;;
|
---|
[945ccaa] | 85 | *)
|
---|
| 86 | VERSION=$(echo $1 | sed 's/^.*[-_]\([0-9]\)/\1/' | sed 's/_/./g')
|
---|
| 87 | ;;
|
---|
| 88 | # the last sed above is because some package managers do not want a '_'
|
---|
| 89 | # in version.
|
---|
| 90 | esac
|
---|
| 91 | echo ${VERSION,,} # convert to lowercase, in case there is a capital letter
|
---|
| 92 | # in version
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | # Export the previous function, since it is used by the others
|
---|
| 96 | export -f extract_version
|
---|
| 97 | # The other "official" functions, wrapInstall and packInstall, are exported
|
---|
| 98 | # by "envars" (in LFS), and the scripts (in BLFS).
|
---|
| 99 |
|
---|
| 100 | wrapInstall() {
|
---|
| 101 | # a bash command is passed as an argument (that may be a compound command).
|
---|
| 102 | # It is executed by this function, after various set-ups...
|
---|
| 103 |
|
---|
| 104 | # Note that PKGDIR is changed to UNPACKDIR
|
---|
| 105 | # and PKG_DEST is changed to PKG_DIR in BLFS tools.
|
---|
| 106 | # The sed for PACKAGE is therefore not needed in BLFS,
|
---|
| 107 | # but it does not hurt, either.
|
---|
| 108 | local PCKGVRS=$(basename $PKGDIR)
|
---|
| 109 | local TGTPKG=$(basename $PKG_DEST)
|
---|
[89bcb1b] | 110 | local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3,4\}-//' |
|
---|
[3ac3ae1] | 111 | sed 's/^[0-9]\{2\}-//')
|
---|
[945ccaa] | 112 | # Porg converts package names to lowercase anyway, so do the conversion
|
---|
| 113 | # ourselves
|
---|
| 114 | PACKAGE=${PACKAGE,,}
|
---|
| 115 | # version is only accessible from PKGDIR name. Since the format of the
|
---|
| 116 | # name is not normalized, several hacks are necessary (now in function
|
---|
| 117 | # extract_version)...
|
---|
| 118 | VERSION=$(extract_version $PCKGVRS)
|
---|
[0a0b609] | 119 | porg -+ -lp ${PACKAGE}-${VERSION} sh << PORG_EOF
|
---|
[945ccaa] | 120 | $*
|
---|
| 121 | PORG_EOF
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | #----------------
|
---|
| 125 | packInstall() {
|
---|
| 126 |
|
---|
| 127 | # With porg, we need only the package name to make the tarball
|
---|
| 128 | local TGTPKG=$(basename $PKG_DEST)
|
---|
[89bcb1b] | 129 | local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3,4\}-//' |
|
---|
[2f8d952] | 130 | sed 's/^[0-9]\{2\}-//')
|
---|
[945ccaa] | 131 | local PCKGVRS=$(basename $PKGDIR)
|
---|
| 132 | # Porg converts package names to lowercase anyway, so do the conversion
|
---|
| 133 | # ourselves
|
---|
| 134 | PACKAGE=${PACKAGE,,}
|
---|
| 135 | # Building the binary package
|
---|
| 136 | porgball ${PACKAGE}
|
---|
| 137 | # The package is in the current directory
|
---|
| 138 | VERSION=$(extract_version $PCKGVRS)
|
---|
| 139 | mv -v ${PACKAGE}-${VERSION}.porg* /var/lib/packages
|
---|
| 140 | }
|
---|