Package Details: python-lzallright 0.2.4-3

Git Clone URL: https://aur.archlinux.org/python-lzallright.git (read-only, click to copy)
Package Base: python-lzallright
Description: Python bindings for the LZ library (LZO data compression algorithm)
Upstream URL: https://github.com/vlaci/lzallright
Licenses: MIT
Submitter: spoof
Maintainer: spoof
Last Packager: spoof
Votes: 2
Popularity: 0.092921
First Submitted: 2023-05-10 17:10 (UTC)
Last Updated: 2023-12-25 15:51 (UTC)

Latest Comments

spoof commented on 2023-12-25 15:51 (UTC) (edited on 2023-12-25 15:52 (UTC) by spoof)

Ok, fixed that, thanks. I thought, as 'rust' conflicts with 'rustup', having them both in makedepends works like "OR", but I was wrong

ErnyTech commented on 2023-12-25 12:34 (UTC)

Please remove rustup from makedepends, it is incompatible with rust package and in any case it is not necessary as rustup already provides rust package

justapony commented on 2023-07-21 03:39 (UTC)

Please apply this patch

diff --git a/PKGBUILD b/PKGBUILD
index 04254ef..f7c5703 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,17 +2,17 @@

 pkgname=python-lzallright
 _name=${pkgname#python-}
-pkgver=0.1.0
+pkgver=0.2.3
 pkgrel=1
 pkgdesc="Python bindings for the LZ library (LZO data compression algorithm)"
 arch=('x86_64' 'aarch64')
 url="https://pypi.org/project/lzallright"
 license=('MIT')
 depends=('python>=3.8')
-makedepends=(python-{build,installer,wheel} 'python-maturin>=0.14' 'python-maturin<0.15')
+makedepends=('python' 'python-maturin')
 checkdepends=('python-pytest>=7')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
-sha256sums=('0de7e0fe110650a79c1e1fca10a188da5b6fc6b2f3730c69dc411782e3b4923a')
+source=("https://github.com/vlaci/lzallright/archive/refs/tags/v$pkgver.tar.gz")
+sha256sums=('c06e026d182fa0cda423b4bdb04e6a8ec1682ee213b6443c3b07a212e2b10ef7')
 build() {
   cd "$_name-$pkgver"
   python -m build --wheel

AkechiShiro commented on 2023-07-02 16:36 (UTC)

According to this issue I've opened they're no longer needed : https://github.com/vlaci/lzallright/issues/11

AkechiShiro commented on 2023-07-02 16:35 (UTC)

Hi could you remove the maturin version constraints?

spoof commented on 2023-05-20 16:53 (UTC)

@AkechiShiro Thanks! I've applied this patch.

AkechiShiro commented on 2023-05-20 16:34 (UTC)

Please apply this patch, a typo is in the sources :

diff --git a/PKGBUILD b/PKGBUILD
index fb53b33..04254ef 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,7 +11,7 @@ license=('MIT')
 depends=('python>=3.8')
 makedepends=(python-{build,installer,wheel} 'python-maturin>=0.14' 'python-maturin<0.15')
 checkdepends=('python-pytest>=7')
-source=("https://files.pythonhosted.org/packages/sources/${_name::1}/$_name/$_name-$pkgver.tar.gz")
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
 sha256sums=('0de7e0fe110650a79c1e1fca10a188da5b6fc6b2f3730c69dc411782e3b4923a')
 build() {
   cd "$_name-$pkgver"