Skip to content

Commit fa68e4d

Browse files
authored
Stable merge window for week 52 of 2023 (#812)
### New Packages - `bottom` - 0.9.6-1 (#804) ### Updated Packages - `webinterface-onboot` - 1.2.2-3 (#794 #816) - `lf` r31-2 - (#802 #811) - `webinterface-upload-button` - 1.1.1-1 (#790) - `7zip` - 23.01-1 (#805) - `ripgrep` - 14.0.3-1 (#801)
1 parent f97179c commit fa68e4d

File tree

7 files changed

+51
-24
lines changed

7 files changed

+51
-24
lines changed

package/7zip/package

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
#!/usr/bin/env bash
2-
# Copyright (c) 2021 The Toltec Contributors
2+
# Copyright (c) 2023 The Toltec Contributors
33
# SPDX-License-Identifier: MIT
44
pkgnames=(7zip)
55
pkgdesc="A file archiver with a high compression ratio."
66
url="https://www.7-zip.org/"
7-
section="util"
8-
pkgver=22.01-1
9-
timestamp=2022-07-15T00:00:00Z
7+
section="utils"
8+
pkgver=23.01-1
9+
timestamp=2023-06-20T00:00:00Z
1010
maintainer="Eeems <[email protected]>"
1111
license=LGPL-2.1-or-later
1212
source=(
13-
https://www.7-zip.org/a/7z2201-linux-arm.tar.xz
13+
https://www.7-zip.org/a/7z2301-linux-arm.tar.xz
1414
)
1515
sha256sums=(
16-
428c11efd91fe1809c4750e8cd5d6eddfbed2826d8a5399ffcacb849f0d21cf8
16+
9d67650982f819d7557c27dea748fa66ca6c04a3a1148d66716c463580b0550c
1717
)
1818

1919
package() {

package/bottom/package

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/usr/bin/env bash
2+
# Copyright (c) 2023 The Toltec Contributors
3+
# SPDX-License-Identifier: MIT
4+
5+
pkgnames=(bottom)
6+
pkgdesc="Cross-platform graphical process/system monitor"
7+
url=https://github.com/ClementTsang/bottom
8+
pkgver=0.9.6-1
9+
timestamp=2023-08-26T14:43Z
10+
section="utils"
11+
maintainer="gbyl <[email protected]>"
12+
license=MIT
13+
14+
image=rust:v3.1
15+
source=("https://github.com/ClementTsang/bottom/archive/refs/tags/${pkgver%-*}.zip")
16+
sha256sums=(38c1a544ceeac4792f8e4acbf3adbf0a6d7a935afb7ef9121aaba1e7ed25cea3)
17+
18+
build() {
19+
cargo build --release
20+
}
21+
22+
package() {
23+
install -D -m 755 "$srcdir"/target/armv7-unknown-linux-gnueabihf/release/btm "$pkgdir"/opt/bin/btm
24+
}

package/lf/package

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
#!/usr/bin/env bash
2-
# Copyright (c) 2022 The Toltec Contributors
2+
# Copyright (c) 2023 The Toltec Contributors
33
# SPDX-License-Identifier: MIT
44

55
pkgnames=(lf)
66
pkgdesc="Terminal file manager"
77
url=https://github.com/gokcehan/lf
8-
pkgver=r27-1
9-
timestamp=2022-04-02T09:40Z
8+
pkgver=r31-2
9+
timestamp=2023-09-17T12:55Z
1010
section="utils"
1111
maintainer="gbyl <[email protected]>"
1212
license=MIT
13+
installdepends=(libncurses-dev)
1314

14-
image=golang:v2.3
15-
source=("https://github.com/gokcehan/lf/archive/refs/tags/r27.zip")
16-
sha256sums=(a4f7b3ada4aa1348b7f102374d8580b6992977f7e84053aa04ef6aadb69dc205)
15+
image=golang:v3.1
16+
source=("https://github.com/gokcehan/lf/archive/refs/tags/${pkgver%-*}.zip")
17+
sha256sums=(217e152f09ae0cc8ab8f12fd92f705dd12630907de2b6a78ffc2727950921f97)
1718

1819
build() {
1920
export GOARCH=arm

package/ripgrep/package

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
#!/usr/bin/env bash
2-
# Copyright (c) 2022 The Toltec Contributors
2+
# Copyright (c) 2023 The Toltec Contributors
33
# SPDX-License-Identifier: MIT
44

55
pkgnames=(ripgrep)
66
pkgdesc="Modern grep for recursive regex pattern searching"
77
url=https://github.com/BurntSushi/ripgrep
8-
pkgver=13.0.0-1
9-
timestamp=2021-06-12T10:54Z
8+
pkgver=14.0.3-1
9+
timestamp=2023-11-28T21:22Z
1010
section="utils"
1111
maintainer="gbyl <[email protected]>"
1212
license=MIT
1313

14-
image=rust:v2.3
15-
source=("https://github.com/BurntSushi/ripgrep/archive/refs/tags/13.0.0.zip")
16-
sha256sums=(5f9d35c2db0513d9d1cbc5254aa9d48fcd74243259b7b15955e131f36f627745)
14+
image=rust:v3.1
15+
source=("https://github.com/BurntSushi/ripgrep/archive/refs/tags/${pkgver%-*}.zip")
16+
sha256sums=(eb91f202fc25d51755390736775a7e7f8e146eb97e584aaa01fb0c45aa5de654)
1717

1818
build() {
1919
cargo build --release

package/webinterface-onboot/package

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ _pkgname='webinterface-onboot'
66
pkgnames=("$_pkgname")
77
pkgdesc="Start the web interface without the cable, on boot."
88
url="https://github.com/rM-self-serve/$_pkgname"
9-
pkgver=1.2.2-2
9+
pkgver=1.2.2-4
1010
timestamp=2023-12-03T11:43:00Z
1111
section="utils"
1212
maintainer="rM-self-serve <[email protected]>"
1313
license=MIT
1414
conflicts=(ddvk-hacks signature-rm)
15+
installdepends=(libbfd)
1516

1617
source=(
1718
"$url"/archive/cdfe457435974f7ca309b1ac50f1b2ef67000813.zip

package/webinterface-onboot/webinterface-onboot-toltec.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Description=Enable the web interface on boot
33
StartLimitIntervalSec=600
44
StartLimitBurst=4
5-
After=home.mount
5+
After=home.mount sys-subsystem-net-devices-usb0.device
66

77
[Service]
88
Environment=HOME=/home/root

package/webinterface-upload-button/package

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,22 @@ _pkgname='webinterface-upload-button'
66
pkgnames=("$_pkgname")
77
pkgdesc="A simple upload button for the web interface"
88
url="https://github.com/rM-self-serve/$_pkgname"
9-
pkgver=1.0.1-1
10-
timestamp=2023-12-06T11:43:00Z
9+
pkgver=1.1.1-1
10+
timestamp=2023-12-16T15:35:49Z
1111
section="utils"
1212
maintainer="rM-self-serve <[email protected]>"
1313
license=MIT
1414

1515
source=(
16-
"$url"/archive/1c69d4fcaa1cb8e2cf4b022a190429dc39946498.zip
16+
"$url"/archive/1d28b2d91c0179059017696ae5a33aa49e1e7c7d.zip
1717
)
1818
sha256sums=(
19-
a388d1db49a3c35782600efbd94ee449c59f46c223f14c254cb74d9509255d96
19+
99ac382e665b55c43876e8991c9dfa7f11a625d4f3ed4f35d3bc58762e04db39
2020
)
2121

2222
package() {
2323
install -D -m 755 -t "$pkgdir"/opt/bin "$srcdir/$_pkgname"
24+
install -D -m 644 -t "$pkgdir"/usr/share/remarkable/webui/ "$srcdir/$_pkgname.js"
2425

2526
touch "$srcdir"/emptyfile
2627
install -D -m 666 -t "$pkgdir"/usr/share/toltec/reenable.d/"$_pkgname" "$srcdir"/emptyfile

0 commit comments

Comments
 (0)