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/>.
25 # gettext initialization
26 export TEXTDOMAIN
='pacman-scripts'
27 export TEXTDOMAINDIR
='@localedir@'
29 myver
='@PACKAGE_VERSION@'
33 # ensure we have a sane umask set
36 m4_include
(library
/output_format.sh
)
38 # print usage instructions
40 printf "pkgdelta (pacman) %s\n\n" "$myver"
41 printf -- "$(gettext "Usage
: pkgdelta
[options
] <package1
> <package2
>\n")"
42 printf -- "$(gettext "\
43 pkgdelta will create a delta
file between two packages.
\n\
44 This delta
file can
then be added to a database using repo-add.
\n\n")"
45 printf -- "$(gettext "Example
: pkgdelta pacman-3.0
.0.pkg.
tar.gz pacman-3.0
.1.pkg.
tar.gz
")\n"
47 printf -- "$(gettext "Options
:\n")"
48 printf -- " -q ""$(gettext "quiet
\n")"
52 printf "pkgdelta (pacman) %s\n\n" "$myver"
53 printf -- "$(gettext "\
54 Copyright
(c
) 2009 Xavier Chantry
<shiningxc@gmail.com
>.
\n\n\
55 This is free software
; see the
source for copying conditions.
\n\
56 There is NO WARRANTY
, to the extent permitted by law.
\n")"
61 pkgname
= pkgver
= arch
=
63 # IFS (field separator) is only the newline character
67 for line
in $
(bsdtar
-xOqf "$1" .PKGINFO
2>/dev
/null |
68 grep -v "^#" |
sed 's|\(\w*\)\s*=\s*\(.*\)|\1="\2"|'); do
70 if [[ -n $pkgname && -n $pkgver && -n $arch ]]; then
76 error
"$(gettext "Invalid package
file '%s'.
")" "$1"
80 # $oldfile $oldmd5 $newfile $newmd5 $deltafile $deltamd5 $deltasize
86 oldname oldver oldarch \
87 newname newver newarch \
90 read_pkginfo
"$oldfile" ||
return 1
94 read_pkginfo
"$newfile" ||
return 1
99 if [[ $oldname != "$newname" ]]; then
100 error
"$(gettext "The package names don
't match : '%s
' and '%s
'")" "$oldname" "$newname"
104 if [[ $oldarch != "$newarch" ]]; then
105 error "$(gettext "The package architectures don't match
: '%s' and
'%s'")" "$oldarch" "$newarch"
109 if [[ $oldver == "$newver" ]]; then
110 error
"$(gettext "Both packages have the same version
: '%s'")" "$newver"
114 msg
"$(gettext "Generating delta from version
%s to version
%s
")" "$oldver" "$newver"
115 deltafile
="$(dirname $newfile)/$pkgname-${oldver}_to_${newver}-$arch.delta"
118 xdelta3
-q -f -s "$oldfile" "$newfile" "$deltafile" || ret
=$?
120 error
"$(gettext "Delta could not be created.
")"
123 msg
"$(gettext "Generated delta
: '%s'")" "$deltafile"
124 (( QUIET
)) && echo "$deltafile"
134 -h|
--help) usage
; exit 0 ;;
135 -V|
--version) version
; exit 0 ;;
136 -q|
--quiet) QUIET
=1;;
137 --) shift; args
+=("$@"); break 2 ;;
138 -*) echo "invalid option -- '$1'"; usage
; exit 1 ;;
144 if (( ${#args[@]} != 2 )); then
149 for i
in "${args[@]}"; do
150 if [[ ! -f $i ]]; then
151 error
"$(gettext "File
'%s' does not exist
")" "$i"
156 if ! type xdelta3
&>/dev
/null
; then
157 error
"$(gettext "Cannot
find the xdelta3 binary
! Is xdelta3 installed?
")"
161 create_xdelta
"${args[@]}"
163 # vim: set ts=2 sw=2 noet: