Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Packages
Core
manjaro-system
Commits
427d87ff
Commit
427d87ff
authored
Apr 18, 2020
by
Philip Müller
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[pkg-upd] 20200418-1
parent
6b03019a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
PKGBUILD
PKGBUILD
+1
-1
manjaro-update-system.sh
manjaro-update-system.sh
+23
-0
No files found.
PKGBUILD
View file @
427d87ff
...
...
@@ -2,7 +2,7 @@
# Maintainer : Bernhard Landauer <oberon@manjaro.org>
pkgname
=
manjaro-system
pkgver
=
20200
325
pkgver
=
20200
418
pkgrel
=
1
pkgdesc
=
"Manjaro Linux System - Update script"
arch
=(
'any'
)
...
...
manjaro-update-system.sh
View file @
427d87ff
...
...
@@ -42,6 +42,29 @@ detectDE()
post_upgrade
()
{
# Fix nss 3.51.1-1 upgrade
if
[[
"
$(
vercmp
$(
pacman
-Qq
|
grep
'nss'
-m1
|
cut
-d
' '
-f2
)
3.51.1-1
)
"
-lt
0
]]
;
then
msg
"Fixing file conflicts for 'nss' update for you ..."
rm
/var/lib/pacman/db.lck &> /dev/null
pacman
-S
nss
--noconfirm
--overwrite
/usr/lib
\*
/p11-kit-trust.so
fi
# Fix lib32-nss 3.51.1-1 upgrade
if
[[
"
$(
pacman
-Qq
|
grep
'lib32-nss'
-m1
)
"
==
"lib32-nss"
]]
&&
\
[[
"
$(
vercmp
$(
pacman
-Qq
|
grep
'lib32-nss'
-m1
|
cut
-d
' '
-f2
)
3.51.1-1
)
"
-lt
0
]]
;
then
msg
"Fixing file conflicts for 'lib32-nss' update for you ..."
rm
/var/lib/pacman/db.lck &> /dev/null
pacman
-S
lib32-nss
--noconfirm
--overwrite
/usr/lib
\*
/p11-kit-trust.so
fi
# Fix zn_poly 0.9.2-2 upgrade
if
[[
"
$(
pacman
-Qq
|
grep
'zn_poly'
-m1
)
"
==
"zn_poly"
]]
&&
\
[[
"
$(
vercmp
$(
pacman
-Qq
|
grep
'zn_poly'
-m1
|
cut
-d
' '
-f2
)
0.9.2-2
)
"
-lt
0
]]
;
then
msg
"Fixing file conflicts for 'zn_poly' update for you ..."
rm
/var/lib/pacman/db.lck &> /dev/null
pacman
-S
zn_poly
--noconfirm
--overwrite
usr/lib/libzn_poly-0.9.so
fi
# Fix hplip 3.20.3-2 upgrade
if
[[
"
$(
pacman
-Qq
|
grep
'hplip'
-m1
)
"
==
"hplip"
]]
&&
\
[[
"
$(
vercmp
$(
pacman
-Q
|
grep
'hplip'
-m1
|
cut
-d
' '
-f2
)
1:3.20.3-2
)
"
-lt
0
]]
;
then
...
...
Philip Müller
@philm
mentioned in issue
applications/pamac#799 (closed)
·
Apr 18, 2020
mentioned in issue
applications/pamac#799 (closed)
mentioned in issue applications/pamac#799
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment