source: pkgmngt/packInstall.sh.porg@ 5c69841

ablfs-more legacy trunk
Last change on this file since 5c69841 was 5c69841, checked in by Pierre Labastie <pierre@…>, 7 years ago

Special case for unrar in packInstall.sh.porg

  • Property mode set to 100644
File size: 4.2 KB
Line 
1# $Id:$
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
8extract_version() {
9local VERSION
10
11case $1 in
12 expect*|tcl*|tk*|mozjs*)
13 VERSION=$(echo $1 | sed 's/^[^0-9]*//')
14 ;;
15 vim*|unzip*|zip*)
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.
25 # JH_PACK_INSTALL contains the path to this script, which is in the
26 # parent dir of the book.
27 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
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 ;;
32 exiv*)
33 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
34 VERSION=$(sed -n 's/.*exiv2[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
35 ;;
36 flashplayer*)
37 local PACKENT=$(dirname $JH_PACK_INSTALL)/blfs-xml/packages.ent
38 VERSION=$(sed -n 's/.*flashplayer[^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*|x265*)
70 VERSION=$(echo $1 | sed 's/^.*v//')
71 ;;
72 *)
73 VERSION=$(echo $1 | sed 's/^.*[-_]\([0-9]\)/\1/' | sed 's/_/./g')
74 ;;
75# the last sed above is because some package managers do not want a '_'
76# in version.
77esac
78echo ${VERSION,,} # convert to lowercase, in case there is a capital letter
79 # in version
80}
81
82# Export the previous function, since it is used by the others
83export -f extract_version
84# The other "official" functions, wrapInstall and packInstall, are exported
85# by "envars" (in LFS), and the scripts (in BLFS).
86
87wrapInstall() {
88# a bash command is passed as an argument (that may be a compound command).
89# It is executed by this function, after various set-ups...
90
91# Note that PKGDIR is changed to UNPACKDIR
92# and PKG_DEST is changed to PKG_DIR in BLFS tools.
93# The sed for PACKAGE is therefore not needed in BLFS,
94# but it does not hurt, either.
95local PCKGVRS=$(basename $PKGDIR)
96local TGTPKG=$(basename $PKG_DEST)
97local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3\}-//' |
98 sed 's/^[0-9]\{1\}-//')
99# Porg converts package names to lowercase anyway, so do the conversion
100# ourselves
101PACKAGE=${PACKAGE,,}
102# version is only accessible from PKGDIR name. Since the format of the
103# name is not normalized, several hacks are necessary (now in function
104# extract_version)...
105VERSION=$(extract_version $PCKGVRS)
106porg -lp ${PACKAGE}-${VERSION} sh << PORG_EOF
107$*
108PORG_EOF
109}
110
111#----------------
112packInstall() {
113
114# With porg, we need only the package name to make the tarball
115local TGTPKG=$(basename $PKG_DEST)
116local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3\}-//' |
117 sed 's/^[0-9]\{1\}-//')
118local PCKGVRS=$(basename $PKGDIR)
119# Porg converts package names to lowercase anyway, so do the conversion
120# ourselves
121PACKAGE=${PACKAGE,,}
122# Building the binary package
123porgball ${PACKAGE}
124# The package is in the current directory
125VERSION=$(extract_version $PCKGVRS)
126mv -v ${PACKAGE}-${VERSION}.porg* /var/lib/packages
127}
Note: See TracBrowser for help on using the repository browser.