-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stable merge for week 42 of 2021 (#477)
* toltecctl: Honour dependencies when uninstalling (#456) `toltecctl uninstall` will now try to uninstall packages in the reverse order of their dependencies, so that a package can use binaries it depends on during its removal scripts (see #448). Packages in a dependency cycle are removed in an unspecified order. * [rmkit] upgrade remux with rM1 support on 2.9 (#450) this brings remux up to date with rmkit-dev/rmkit@8254893 major improvement is proper support for touch gestures in remux on rM1 after rebooting. the main issue was the display was resizing after remux started, so the touch gestures were using the wrong display size. holding the center button on rM1 would cause remux to restart (and fix this problem), so there is a workaround available. * Update KOReader to 2021.10 (#467) Co-authored-by: raisjn <[email protected]> * Add cache for dependencies install (#473) * Add cache for dependencies install Co-authored-by: Mattéo Delabre <[email protected]> Co-authored-by: raisjn <[email protected]> Co-authored-by: Mattéo Delabre <[email protected]>
- Loading branch information
1 parent
c1ad0f0
commit cec7439
Showing
7 changed files
with
117 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
pkgnames=(koreader) | ||
pkgdesc="Ebook reader supporting PDF, DjVu, EPUB, FB2 and many more formats" | ||
url=https://github.com/koreader/koreader | ||
pkgver=2021.09-2 | ||
timestamp=2021-09-20T08:33:06Z | ||
pkgver=2021.10-1 | ||
timestamp=2021-10-16T11:37:17Z | ||
section="readers" | ||
maintainer="raisjn <[email protected]>" | ||
license=AGPL-3.0-or-later | ||
|
@@ -21,7 +21,7 @@ source=( | |
koreader | ||
) | ||
sha256sums=( | ||
12ebc96521a390fc10f236e4dc9097fa8bea7e8d6928d474a7966b35a045cd2a | ||
121920ca958a79f5d0187649cf7ff6e9a9d3f485246e7d0aacdf30ddeda60864 | ||
SKIP | ||
SKIP | ||
SKIP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,34 +3,24 @@ | |
# SPDX-License-Identifier: MIT | ||
|
||
pkgnames=(bufshot genie harmony iago lamp mines nao remux simple) | ||
timestamp=2021-03-14T14:20-08:00 | ||
timestamp=2021-09-21T14:20-08:00 | ||
maintainer="raisjn <[email protected]>" | ||
license=MIT | ||
installdepends=(display) | ||
flags=(patch_rm2fb) | ||
|
||
image=python:v2.1 | ||
source=( | ||
https://github.com/rmkit-dev/rmkit/archive/a99b2f70c72539bedc1d201e3899da6e19c197da.zip | ||
patch-remux-duplicate-xochitl.diff | ||
patch-remux-start-xochitl.diff | ||
https://github.com/rmkit-dev/rmkit/archive/8254893999d7334fd14c162d5a15605dcff77ec5.zip | ||
remux.service | ||
genie.service | ||
) | ||
sha256sums=( | ||
db54abfa385017b7d60b1d332efa695756f61caa81644fdadeb4c1b26f8bf923 | ||
SKIP | ||
SKIP | ||
977c38d652d8088e9b25c69aff5013b85173be363b5cb341529df261773ff9be | ||
SKIP | ||
SKIP | ||
) | ||
|
||
prepare() { | ||
patch -p1 -d"$srcdir" < "$srcdir"/patch-remux-duplicate-xochitl.diff | ||
patch -p1 -d"$srcdir" < "$srcdir"/patch-remux-start-xochitl.diff | ||
rm "$srcdir"/*.diff | ||
} | ||
|
||
build() { | ||
pip3 install okp | ||
make | ||
|
@@ -144,7 +134,7 @@ nao() { | |
remux() { | ||
pkgdesc="Launcher that supports multi-tasking applications" | ||
url="https://rmkit.dev/apps/remux" | ||
pkgver=0.1.9-5 | ||
pkgver=0.1.10-1 | ||
section="launchers" | ||
|
||
package() { | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,12 @@ | |
pkgnames=(toltec-bootstrap) | ||
pkgdesc="Manage your Toltec install" | ||
url=https://toltec-dev.org/ | ||
pkgver=0.2.0-1 | ||
timestamp=2021-09-25T10:36Z | ||
pkgver=0.2.1-1 | ||
timestamp=2021-10-06T07:51Z | ||
section="utils" | ||
maintainer="Eeems <[email protected]>" | ||
license=MIT | ||
installdepends=(coreutils-tsort) | ||
|
||
source=( | ||
toltecctl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters