summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
Diffstat (limited to 'pcr')
-rw-r--r--pcr/chroot-nspawn/PKGBUILD6
-rw-r--r--pcr/lzlib/PKGBUILD31
-rw-r--r--pcr/nextpnr-git/PKGBUILD8
-rw-r--r--pcr/toot/PKGBUILD4
-rw-r--r--pcr/tootle/PKGBUILD18
-rw-r--r--pcr/tootle/handle-unknown-message-types.patch56
6 files changed, 110 insertions, 13 deletions
diff --git a/pcr/chroot-nspawn/PKGBUILD b/pcr/chroot-nspawn/PKGBUILD
index 4067781fd..249a53327 100644
--- a/pcr/chroot-nspawn/PKGBUILD
+++ b/pcr/chroot-nspawn/PKGBUILD
@@ -4,15 +4,15 @@
_pkgname=systemd-nspawn
pkgname=chroot-nspawn
-pkgver=0.2.3
-pkgrel=2.2
+pkgver=0.2.4
+pkgrel=1
pkgdesc="A $_pkgname wrapper for chroot"
arch=(any)
url="https://git.hyperbola.info:50100/software/$pkgname.git"
license=(GPL3)
#conflicts=(systemd)
source=("https://repo.hyperbola.info:50000/sources/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('4e698ab6aedb382581accd88d0af5a96078d70090d0a988da605688e8b9bae568c13475238f898810d6794a8a54d6f4c4787282bb9ec1ca228194f36ba1f2045'
+sha512sums=('155ee3418056e883d28f2e2dfd4165a78d147fc94b31ea287cf032e1b3ff6a5212fb4ddeeacfb69dc4e69f9c25c321693429f5814e65005ae4b6fd50d3c5f08a'
'SKIP')
validpgpkeys=('684D54A189305A9CC95446D36B888913DDB59515') # Márcio Silva
diff --git a/pcr/lzlib/PKGBUILD b/pcr/lzlib/PKGBUILD
new file mode 100644
index 000000000..3bdd22be3
--- /dev/null
+++ b/pcr/lzlib/PKGBUILD
@@ -0,0 +1,31 @@
+# Maintainer(AUR): Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor(AUR): Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
+
+pkgname=lzlib
+pkgver=1.11
+pkgrel=1
+pkgdesc="A library providing in-memory LZMA compression and decompression functions"
+arch=('i686' 'x86_64')
+url="http://www.nongnu.org/lzip/lzlib.html"
+license=('GPL3')
+depends=('gcc-libs')
+options=('!emptydirs')
+source=(http://download.savannah.gnu.org/releases/lzip/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
+validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742') # Antonio Diaz Diaz
+sha256sums=('6c5c5f8759d1ab7c4c3c53788ea2d9daad04aeddcf338226893f8ff134914d36'
+ 'SKIP')
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-shared
+ make
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm755 minilzip "${pkgdir}"/usr/bin/minilzip
+}
diff --git a/pcr/nextpnr-git/PKGBUILD b/pcr/nextpnr-git/PKGBUILD
index ead018102..f2dd4563c 100644
--- a/pcr/nextpnr-git/PKGBUILD
+++ b/pcr/nextpnr-git/PKGBUILD
@@ -1,15 +1,17 @@
# Maintainer(AUR): Graham Edgecombe <gpe@grahamedgecombe.com>
# Maintainer: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
# parabola changes and rationale:
-# no changes.
+# - Fixed "error while loading shared libraries: libboost_python37.so.1.69.0"
+# by switching from boost-libs to boost1.69-libs
+# TODO: see if this needs to be sent to the nextpnr-git AUR maintainer
pkgname=nextpnr-git
-pkgver=r2197.cce5cb6
+pkgver=r2284.08cf545
pkgrel=1
pkgdesc='Portable FPGA place and route tool'
arch=('i686' 'x86_64')
url='https://github.com/YosysHQ/nextpnr'
license=('custom:ISC')
-depends=('boost-libs' 'python' 'qt5-base')
+depends=('boost1.69-libs' 'python' 'qt5-base')
makedepends=('boost' 'cmake' 'eigen' 'git' 'icestorm' 'trellis')
provides=('nextpnr')
conflicts=('nextpnr')
diff --git a/pcr/toot/PKGBUILD b/pcr/toot/PKGBUILD
index ed9ee9f0e..561138e8c 100644
--- a/pcr/toot/PKGBUILD
+++ b/pcr/toot/PKGBUILD
@@ -3,13 +3,13 @@
pkgname=toot
pkgver=0.24.0
-pkgrel=1
+pkgrel=2
pkgdesc="CLI and TUI clients for Mastodon federated services"
arch=('any')
url=https://github.com/ihabunek/toot
license=('GPL3')
-depends=('python-requests' 'python-beautifulsoup4' 'python-wcwidth')
+depends=('python-requests' 'python-beautifulsoup4' 'python-urwid' 'python-wcwidth')
# source=(https://github.com/ihabunek/toot/releases/download/${pkgver}/${_release}.tar.gz)
source=(https://github.com/ihabunek/toot/archive/${pkgver}.tar.gz)
diff --git a/pcr/tootle/PKGBUILD b/pcr/tootle/PKGBUILD
index 446dafe7e..f075e5af3 100644
--- a/pcr/tootle/PKGBUILD
+++ b/pcr/tootle/PKGBUILD
@@ -7,7 +7,7 @@
pkgname=tootle
pkgver=0.2.0
-pkgrel=1
+pkgrel=2
pkgdesc="GTK3 client for Mastodon federated services"
arch=('armv7h' 'x86_64' 'i686')
url=https://github.com/bleakgrey/tootle
@@ -17,12 +17,14 @@ depends=('glib2' 'gtk3' 'hicolor-icon-theme' 'libsoup' 'granite' 'json-glib')
optdepends=('noto-fonts-emoji: color emoji')
makedepends=('git' 'desktop-file-utils' 'hicolor-icon-theme' 'intltool' 'yelp-tools' 'gnome-common' 'gobject-introspection' 'meson' 'ninja' 'vala')
options=('!libtool')
-source=(https://github.com/bleakgrey/${pkgname}/archive/${pkgver}.tar.gz \
- fix-build-on-vala-46.patch \
- tootle-horn-16.png tootle-horn-24.png tootle-horn-32.png tootle-horn-48.png \
- tootle-horn-64.png tootle-horn-128.png tootle-horn-grey-128.png )
+source=(https://github.com/bleakgrey/${pkgname}/archive/${pkgver}.tar.gz
+ fix-build-on-vala-46.patch
+ handle-unknown-message-types.patch
+ tootle-horn-16.png tootle-horn-24.png tootle-horn-32.png tootle-horn-48.png
+ tootle-horn-64.png tootle-horn-128.png tootle-horn-grey-128.png)
sha256sums=('e83c4a0539bf7b4b9d2b81d036ee0e8a69564b11c70f77ded5091955a89d2737'
'5158d1e2019eaf6f4fa043b8483f8dfa049335d572a2563a0d4f71f799cae2b0'
+ '6f28fe4169d5f596e3574fa717cc07c709659c653f6fee56fdfe370aa02d55c5'
'd0f5575de5c73afc5b0db9c91c45762f4eb948b36b756bf45f5116cde91b42a8'
'6c3533b2e795d478047d3df477109c85aaa8aa1389db42341ec770823d595502'
'516b0358b6e9806c812331a8819567519cf54131566ca1450c251eced401eb11'
@@ -36,6 +38,12 @@ prepare()
cd "${srcdir}/${pkgname}-${pkgver}"
patch -p1 < ../fix-build-on-vala-46.patch
+ # FIXME: the program will crash if it gets any message of an unknown type
+ # there is a fix for this on the upstream master branch
+ # but it can not be back-ported onto release 0.2.0
+ # this patch is adapted from a rejected merge request:
+ # https://github.com/bleakgrey/tootle/pull/143
+ patch -p1 < ../handle-unknown-message-types.patch
sed -i "s|'\.svg'|'\.png'|" data/meson.build
for dims in 16 24 32 48 64 128
diff --git a/pcr/tootle/handle-unknown-message-types.patch b/pcr/tootle/handle-unknown-message-types.patch
new file mode 100644
index 000000000..4653b2675
--- /dev/null
+++ b/pcr/tootle/handle-unknown-message-types.patch
@@ -0,0 +1,56 @@
+diff --git a/src/API/NotificationType.vala b/src/API/NotificationType.vala
+index 53598b5..25c2b2c 100644
+--- a/src/API/NotificationType.vala
++++ b/src/API/NotificationType.vala
+@@ -4,7 +4,8 @@ public enum Tootle.NotificationType {
+ FAVORITE,
+ FOLLOW,
+ FOLLOW_REQUEST, // Internal
+- WATCHLIST; // Internal
++ WATCHLIST, // Internal
++ UNKNOWN; // Fallback
+
+ public string to_string() {
+ switch (this) {
+@@ -20,8 +21,9 @@ public enum Tootle.NotificationType {
+ return "follow_request";
+ case WATCHLIST:
+ return "watchlist";
++ case UNKNOWN:
+ default:
+- assert_not_reached();
++ return "unknown";
+ }
+ }
+
+@@ -39,8 +41,9 @@ public enum Tootle.NotificationType {
+ return FOLLOW_REQUEST;
+ case "watchlist":
+ return WATCHLIST;
++ case "unknown":
+ default:
+- assert_not_reached();
++ return UNKNOWN;
+ }
+ }
+
+@@ -58,6 +61,8 @@ public enum Tootle.NotificationType {
+ return _("<a href=\"%s\"><b>%s</b></a> wants to follow you").printf (account.url, account.display_name);
+ case WATCHLIST:
+ return _("<a href=\"%s\"><b>%s</b></a> posted a toot").printf (account.url, account.display_name);
++ case UNKNOWN:
++ return _("<a href=\"%s\"><b>%s</b></a> posted an unrecognized type of message").printf (account.url, account.display_name);
+ default:
+ assert_not_reached();
+ }
+@@ -75,8 +80,9 @@ public enum Tootle.NotificationType {
+ case FOLLOW:
+ case FOLLOW_REQUEST:
+ return "contact-new-symbolic";
++ case UNKNOWN:
+ default:
+- assert_not_reached();
++ return "dialog-warning";
+ }
+ }
+