3 # pkgdelta - create delta files for use with pacman and repo-add
6 # Copyright (c) 2009 Xavier Chantry <shiningxc@gmail.com>
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
26 # gettext initialization
27 export TEXTDOMAIN
='pacman-scripts'
28 export TEXTDOMAINDIR
='@localedir@'
30 myver
='@PACKAGE_VERSION@'
34 # ensure we have a sane umask set
37 m4_include
(library
/output_format.sh
)
39 # print usage instructions
41 printf "pkgdelta (pacman) %s\n\n" "$myver"
42 printf "$(gettext "Usage
: pkgdelta
[-q] <package1
> <package2
>\n")"
44 pkgdelta will create a delta
file between two packages.
\n\
45 This delta
file can
then be added to a database using repo-add.
\n\n")"
46 echo "$(gettext "Example
: pkgdelta pacman-3.0
.0.pkg.
tar.gz pacman-3.0
.1.pkg.
tar.gz
")"
50 printf "pkgdelta (pacman) %s\n\n" "$myver"
52 Copyright
(c
) 2009 Xavier Chantry
<shiningxc@gmail.com
>.
\n\n\
53 This is free software
; see the
source for copying conditions.
\n\
54 There is NO WARRANTY
, to the extent permitted by law.
\n")"
59 pkgname
= pkgver
= arch
=
61 # IFS (field separator) is only the newline character
65 for line
in $
(bsdtar
-xOf "$1" .PKGINFO
2>/dev
/null |
66 grep -v "^#" |
sed 's|\(\w*\)\s*=\s*\(.*\)|\1="\2"|'); do
68 if [[ -n $pkgname && -n $pkgver && -n $arch ]]; then
74 error
"$(gettext "Invalid package
file '%s'.
")" "$1"
78 # $oldfile $oldmd5 $newfile $newmd5 $deltafile $deltamd5 $deltasize
84 oldname oldver oldarch \
85 newname newver newarch \
88 read_pkginfo
"$oldfile" ||
return 1
92 read_pkginfo
"$newfile" ||
return 1
97 if [[ $oldname != $newname ]]; then
98 error
"$(gettext "The package names don
't match : '%s
' and '%s
'")" "$oldname" "$newname"
102 if [[ $oldarch != $newarch ]]; then
103 error "$(gettext "The package architectures don't match
: '%s' and
'%s'")" "$oldarch" "$newarch"
107 if [[ $oldver == $newver ]]; then
108 error
"$(gettext "Both packages have the same version
: '%s'")" "$newver"
112 msg
"$(gettext "Generating delta from version
%s to version
%s
")" "$oldver" "$newver"
113 deltafile
="$(dirname $newfile)/$pkgname-${oldver}_to_${newver}-$arch.delta"
116 xdelta3
-q -f -s "$oldfile" "$newfile" "$deltafile" || ret
=$?
118 error
"$(gettext "Delta could not be created.
")"
121 msg
"$(gettext "Generated delta
: '%s'")" "$deltafile"
122 (( QUIET
)) && echo "$deltafile"
128 -q|
--quiet) QUIET
=1; shift ;;
131 if (( $# != 2 )); then
136 if [[ ! -f $1 ]]; then
137 error
"$(gettext "File
'%s' does not exist
")" "$1"
141 if [[ ! -f $2 ]]; then
142 error
"$(gettext "File
'%s' does not exist
")" "$2"
146 if ! type xdelta3
&>/dev
/null
; then
147 error
"$(gettext "Cannot
find the xdelta3 binary
! Is xdelta3 installed?
")"
151 create_xdelta
"$1" "$2"
153 # vim: set ts=2 sw=2 noet: