Package Details: pyrescene-git 0.7.r31.g78e9c0c-2

Git Clone URL: https://aur.archlinux.org/pyrescene-git.git (read-only, click to copy)
Package Base: pyrescene-git
Description: pyReScene is a port of ReScene .NET to the Python programming language.
Upstream URL: https://github.com/EchterAgo/pyrescene
Licenses: GPL, custom, MIT
Conflicts: pyrescene
Provides: pyrescene
Submitter: ichundes
Maintainer: ichundes
Last Packager: ichundes
Votes: 6
Popularity: 0.000000
First Submitted: 2020-09-16 04:16 (UTC)
Last Updated: 2020-09-16 04:16 (UTC)

Latest Comments

1 2 Next › Last »

Ketchup901 commented on 2022-10-22 07:05 (UTC) (edited on 2022-10-22 07:12 (UTC) by Ketchup901)

Some of the old versions wouldn't run because I was missing some old glibc libraries. I couldn't find anything in the repos or AUR that provided these old libraries, but I did finally find this Ubuntu package: https://launchpad.net/ubuntu/dapper/i386/libstdc++2.10-glibc2.2/1:2.95.4-24

I converted it to an Arch package with debtap -s libstdc++2.10-glibc2.2_2.95.4-24_i386.deb.

Also, there is a new upstream repo at https://github.com/srrDB/pyrescene, but it hasn't been updated.

micwoj92 commented on 2020-09-15 17:22 (UTC)

Thanks

ichundes commented on 2020-09-15 17:17 (UTC)

@micwoj92 I created a new package that builds from a git mirror: https://aur.archlinux.org/packages/pyrescene-git/

ichundes commented on 2020-09-08 02:22 (UTC)

@micwoj92 unfortunately there is no new upstream repository available. I'll check if I have a copy of the code somewhere.

micwoj92 commented on 2020-09-08 01:57 (UTC)

Bitbucket no longer hosts mercurial repositories, could you update this package?

ichundes commented on 2020-03-11 13:55 (UTC)

@nullstring0 making chromaprint optional is definitely a good idea, this pulls in a ton of dependencies on my system that I don't really need. I'll double check about python-numpy and remove it. As for lib32-libstdc++5, I think it is needed for some old RAR versions.

nullstring0 commented on 2020-03-10 20:05 (UTC)

I was able to get this to work without the following dependencies. Could we discuss changing some of them?

  • chromaprint - I assume it's needed for some features, I recommend adding as opt-dependency.
  • python-numpy - No longer a dependency of pyrescene, I suggest removing
  • lib32-libstdc++5 - Not sure why this is here, would you mind clarifying?

ichundes commented on 2020-01-06 07:47 (UTC)

Oh, sorry about that. I applied your patch and bumped pkgrel to 3.

hashworks commented on 2020-01-06 00:57 (UTC)

Since the latest commit this package won't build. Apply this patch to fix this: https://fb.hash.works/4AfLLE

git am < 0001-Fix-changedir-arguments-in-regards-to-previous-commi.patch

From 81c0fc3fa7f9ccd067f0490562c29957c0cddd5b Mon Sep 17 00:00:00 2001
From: hashworks <mail@hashworks.net>
Date: Mon, 6 Jan 2020 01:54:53 +0100
Subject: [PATCH] Fix changedir arguments in regards to previous commit

---
 PKGBUILD | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD
index 3406c73..38f3906 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,12 +15,12 @@ md5sums=('SKIP'
          'SKIP')

 pkgver() {
-  cd "${srcdir}/${pkgname%-hg}"
+  cd "${srcdir}/${pkgname}"
   hg identify -n
 }

 package() {
-  cd "${srcdir}/${pkgname%-hg}"
+  cd "${srcdir}/${pkgname}"

   cp 'rescene/srr.py' 'rescene/srr.py~'
   sed -i -r 's|(dest=\"rar_executable_dir\",)|\1 default=\"/opt/rarlinux\",|' 'rescene/srr.py'
-- 
2.24.1

ichundes commented on 2019-12-02 05:16 (UTC)

Switched to Python 3. Thanks for the suggestion.