source: pkgmngt/packInstall.sh.porg@ 03b24b2

ablfs-more legacy trunk
Last change on this file since 03b24b2 was ff5c301, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Treat the case of boost in packInstall.sh.porg

The default VERSION returned is always "0". Create
a special case to prevent that.

  • Property mode set to 100644
File size: 4.8 KB
Line 
1# functions for recording installation of a package and make a tarball,
2# or using fakeroot type commands for install, then packing and installing
3# the package.
4# We only have access to variables PKGDIR and PKG_DEST. Other variables could
5# be set in the environment
6
7extract_version() {
8local VERSION
9
10case $1 in
11 expect*|tcl*|tk*|mozjs*|lynx*)
12 VERSION=$(echo $1 | sed 's/^[^0-9]*//')
13 ;;
14 unzip*|zip*)
15 VERSION=$(echo $1 | sed 's/^[^0-9]*\([0-9]\)\([0-9]\)/\1.\2/')
16 ;;
17 wireless_tools*|LVM2*)
18 VERSION=$(echo $1 | sed 's/^[^.]*\.//')
19 ;;
20 icu*) # No version in PCKGVRS! Use version directly from xml book.
21 # JH_PACK_INSTALL contains the path to this script, which is in the
22 # parent dir of the book.
23 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
24 local VERSION1=$(sed -n 's/.*icu-major[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
25 local VERSION2=$(sed -n 's/.*icu-minor[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
26 VERSION=$VERSION1.$VERSION2
27 ;;
28 exiv*)
29 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
30 VERSION=$(sed -n 's/.*exiv2[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
31 ;;
32 flashplayer*)
33 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
34 VERSION=$(sed -n 's/.*flashplayer[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
35 ;;
36 pax*)
37 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
38 VERSION=$(sed -n 's/.*pax[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
39 ;;
40 psutils*)
41 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
42 VERSION=$(sed -n 's/.*psutils[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
43 ;;
44 soundtouch*)
45 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
46 VERSION=$(sed -n 's/.*soundtouch[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
47 ;;
48 unrar*)
49 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
50 VERSION=$(sed -n 's/.*unrar[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
51 ;;
52 xvid*)
53 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
54 VERSION=$(sed -n 's/.*xvid[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
55 ;;
56 xf86-video-intel)
57 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/x/installing/x7driver-intel.xml
58 VERSION=$(sed -n '/<!--/!s/.*-version[^;][^0-9]*\([^"]*\).*/\1/p' $PACKENT)
59 ;;
60 jdk8*)
61 VERSION=1.8.0.$(echo $1 | sed 's/.*u\([0-9]\+\).*/\1/')
62 ;;
63 docbook-xml)
64 VERSION=4.5
65 ;;
66 cacerts*)
67 VERSION=0.1
68 ;;
69 btrfs*|node*|pnmixer*|docbook-v*)
70 VERSION=$(echo $1 | sed 's/^.*v//')
71 ;;
72 x265*) # can contain vd.d or just d.d: thanks to packagers
73 VERSION=$(echo $1 | sed 's/^.*[v_]//')
74 ;;
75 libuv*|Test-MockModule*) # can contain -vd.d or just -d.d
76 VERSION=$(echo $1 | sed 's/^.*[v-]//')
77 ;;
78 junit*|inih*) # can contain -rd.d or just -d.d
79 VERSION=$(echo $1 | sed 's/^.*[r-]//')
80 ;;
81 boost*) # $1 is of the form boost_1_dd_0. Since sed is greedy, the default
82 # case takes only "0" for VERSION
83 VERSION=$(echo $1 | sed 's/boost_//' | sed 's/_/./g')
84 ;;
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.
90esac
91echo ${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
96export -f extract_version
97# The other "official" functions, wrapInstall and packInstall, are exported
98# by "envars" (in LFS), and the scripts (in BLFS).
99
100wrapInstall() {
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 JH_UNPACKDIR
105# and PKG_DEST is changed to JH_PKG_DIR in BLFS tools.
106# The sed for PACKAGE is therefore not needed in BLFS,
107# but it does not hurt, either.
108local PCKGVRS=$(basename $PKGDIR)
109local TGTPKG=$(basename $PKG_DEST)
110local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3,4\}-//' |
111 sed 's/^[0-9]\{2\}-//')
112# Porg converts package names to lowercase anyway, so do the conversion
113# ourselves
114PACKAGE=${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)...
118VERSION=$(extract_version $PCKGVRS)
119porg -+ -lp ${PACKAGE}-${VERSION} sh << PORG_EOF
120$*
121PORG_EOF
122}
123
124#----------------
125packInstall() {
126
127# With porg, we need only the package name to make the tarball
128local TGTPKG=$(basename $PKG_DEST)
129local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3,4\}-//' |
130 sed 's/^[0-9]\{2\}-//')
131local PCKGVRS=$(basename $PKGDIR)
132# Porg converts package names to lowercase anyway, so do the conversion
133# ourselves
134PACKAGE=${PACKAGE,,}
135# Building the binary package
136porgball ${PACKAGE}
137# The package is in the current directory
138VERSION=$(extract_version $PCKGVRS)
139mv -v ${PACKAGE}-${VERSION}.porg* /var/lib/packages
140}
Note: See TracBrowser for help on using the repository browser.