File tree 6 files changed +76
-5
lines changed
6 files changed +76
-5
lines changed Original file line number Diff line number Diff line change 7
7
# Maintainer: Guinux <nuxgui|gmail|com>
8
8
9
9
_pkgver=" 2.02"
10
- _GRUB_GIT_TAG=" 2.02-rc1 "
10
+ _GRUB_GIT_TAG=" 2.02-rc2 "
11
11
_SNAPSHOT=" ec4aca088a04fce6c7d97c733ec272c63b0a1231"
12
12
_SNAPSHOT_EXTRAS=" f2a079441939eee7251bf141986cdd78946e1d20"
13
13
@@ -18,7 +18,7 @@ _UNIFONT_VER="9.0.06"
18
18
19
19
pkgname=" grub"
20
20
pkgdesc=" GNU GRand Unified Bootloader (2)"
21
- pkgver=2.02.rc1
21
+ pkgver=2.02.rc2
22
22
pkgrel=1
23
23
url=" https://www.gnu.org/software/grub/"
24
24
arch=(' x86_64' ' i686' )
Original file line number Diff line number Diff line change 1
1
# Maintainer: Guinux <[email protected] >
2
2
3
3
pkgname=manjaro-release
4
- pkgver=17.0
4
+ pkgver=17.0.1
5
5
pkgrel=1
6
6
pkgdesc=" Manjaro's release definition"
7
7
arch=(" any" )
@@ -10,7 +10,7 @@ license=('GPL2')
10
10
depends=(' lsb-release' )
11
11
source=(' lsb-release' )
12
12
install=" manjaro-release.install"
13
- sha256sums=(' b79ebee0b55b541a029b641b300b343bf76e2240364b45974046ee1bd82cd5d3 ' )
13
+ sha256sums=(' b0f72b2bf91e0f470fa7cc34a01936951be47fc8a9557ff14a9293473d5eb5c1 ' )
14
14
15
15
package () {
16
16
# Copy files
Original file line number Diff line number Diff line change 1
1
DISTRIB_ID=ManjaroLinux
2
- DISTRIB_RELEASE=17.0
2
+ DISTRIB_RELEASE=17.0.1
3
3
DISTRIB_CODENAME=Gellivara
4
4
DISTRIB_DESCRIPTION="Manjaro Linux"
Original file line number Diff line number Diff line change
1
+ # Maintainer: Guillaume <[email protected] >
2
+ # Maintainer: Roland <[email protected] >
3
+ # Maintainer: Philip Müller <[email protected] >
4
+
5
+ _branch=master
6
+ _date=20$( date +%y%m%d)
7
+ pkgname=pacman-mirrors-dev
8
+ pkgver=4.0.4
9
+ pkgrel=0.1
10
+ pkgdesc=" Manjaro Linux mirror list for use by pacman"
11
+ arch=(' any' )
12
+ depends=(' python' ' python-npyscreen' )
13
+ makedepends=(' git' ' python-babel' ' python-setuptools' )
14
+ optdepends=(' gtk3: for interactive mode (GUI)'
15
+ ' python-gobject: for interactive mode (GUI)' )
16
+ url=" https://github.com/manjaro/pacman-mirrors.git"
17
+ conflicts=(' pacman-mirrorlist' ' pacman-mirrorlist-dev' ' pacman-mirrors' )
18
+ provides=(" pacman-mirrorlist=$_date " " pacman-mirrors=$pkgver " )
19
+ license=(' GPL' )
20
+ install=pacman-mirrors.install
21
+ backup=(etc/pacman-mirrors.conf)
22
+ source=(git+$url #branch=$_branch )
23
+ sha256sums=(' SKIP' )
24
+
25
+ package () {
26
+ cd " ${srcdir} " /pacman-mirrors
27
+ make DESTDIR=" ${pkgdir} " install
28
+ }
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ msg () {
4
+ ALL_OFF=" \e[1;0m"
5
+ BOLD=" \e[1;1m"
6
+ GREEN=" ${BOLD} \e[1;32m"
7
+ local mesg=$1 ; shift
8
+ printf " ${GREEN} ==>${ALL_OFF}${BOLD} ${mesg}${ALL_OFF} \n" " $@ " >&2
9
+ }
10
+
11
+ post_install () {
12
+ if [ -f /etc/pacman-mirrors.conf.pacsave ]; then
13
+ msg " use pacman-mirrorlist config"
14
+ mv /etc/pacman-mirrors.conf /etc/pacman-mirrors.conf.20$( date +%y%m%d) .backup
15
+ mv /etc/pacman-mirrors.conf.pacsave /etc/pacman-mirrors.conf
16
+ fi
17
+ /usr/bin/pacman-mirrors -m random
18
+ message
19
+ }
20
+
21
+
22
+ post_upgrade () {
23
+ /usr/bin/pacman-mirrors -g --no-update
24
+ message
25
+ }
26
+
27
+ message () {
28
+ echo " "
29
+ echo " hint: use \` pacman-mirrors\` to generate and update your pacman mirrorlist."
30
+ }
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
+ msg () {
4
+ ALL_OFF=" \e[1;0m"
5
+ BOLD=" \e[1;1m"
6
+ GREEN=" ${BOLD} \e[1;32m"
7
+ local mesg=$1 ; shift
8
+ printf " ${GREEN} ==>${ALL_OFF}${BOLD} ${mesg}${ALL_OFF} \n" " $@ " >&2
9
+ }
10
+
3
11
post_install () {
12
+ if [ -f /etc/pacman-mirrors.conf.pacsave ]; then
13
+ msg " use pacman-mirrorlist config"
14
+ mv /etc/pacman-mirrors.conf /etc/pacman-mirrors.conf.20$( date +%y%m%d) .backup
15
+ mv /etc/pacman-mirrors.conf.pacsave /etc/pacman-mirrors.conf
16
+ fi
4
17
/usr/bin/pacman-mirrors -g -m random
5
18
message
6
19
}
You can’t perform that action at this time.
0 commit comments