Tested it locally without the shebang changing line and it worked with extra/gimp. So removing it
Thanks for the intel
Search Criteria
Package Details: gimp-plugin-resynthesizer-git 2.0.3.r24.gecfc4e7-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/gimp-plugin-resynthesizer-git.git (read-only, click to copy) |
---|---|
Package Base: | gimp-plugin-resynthesizer-git |
Description: | Suite of gimp plugins for texture synthesis (like heal-selection). Git-Version |
Upstream URL: | https://github.com/bootchk/resynthesizer |
Keywords: | heal heal-selection |
Licenses: | GPL2 |
Conflicts: | gimp-resynth, gimp-resynth-git |
Provides: | gimp-plugin-resynthesizer |
Submitter: | TrialnError |
Maintainer: | TrialnError |
Last Packager: | TrialnError |
Votes: | 212 |
Popularity: | 0.085367 |
First Submitted: | 2014-10-09 10:24 (UTC) |
Last Updated: | 2022-10-08 20:52 (UTC) |
Dependencies (3)
- python2-gimpAUR
- git (git-gitAUR, git-glAUR) (make)
- intltool (make)
Required by (0)
Sources (1)
TrialnError commented on 2015-09-13 21:47 (UTC)
TrialnError commented on 2015-09-13 21:29 (UTC)
Ok, but still not really clear what's causing it.
Nontheless my choice is to stay with the repo version, where this sed line doesn't do any harm. I will test if it can be removed for it too (or maybe someone has done it already?). Dunno if AUR Repos allow branches. If so I could add this upcoming(?) change in a separate branch.
Another question. Did it work with gimp-git before and stopped only recently?
JonnyRobbie commented on 2015-09-13 18:32 (UTC)
It was a problem with gimp-git (2.9). It didn't happen on gimp (2.8). Commenting out the sed on line 27 in this PKGBUILD worked around the issue. Not sure why it was a problem with the git version and not with the stable one.
Basically the problems was that PKGBUILD of this repo (sed on line 27) changed shebangs from python to python2, which wasn't a problem in stable, but stopped working in git.
mytbk commented on 2015-09-13 14:53 (UTC)
The sed line change python to python2 causes this issue:
https://github.com/bootchk/resynthesizer/issues/26
TrialnError commented on 2015-09-12 09:30 (UTC)
@JonnyRobbie: On Preferences --> Folders --> Plug-ins the path /usr/lib/gimp/2.0/plug-ins is still there?
Because I cannot reproduce the issue with latest build from master
JonnyRobbie commented on 2015-09-09 09:39 (UTC)
I have Filters->Map->Resynthesize... menu item as expected, but I cannot find Filter->Enhance->Heal Selection...
-rwxr-xr-x 1 root root 6596 Sep 9 03:28 /usr/lib/gimp/2.0/plug-ins/plugin-heal-selection.py
that script should have it's execution flag set. But it somehow doesn't seem to load in gimp.
TrialnError commented on 2015-03-12 02:18 (UTC)
Right. But the autogen stuff will run configure after the generation of the necessary files. So the ./configure line could remain there just add ./autogen.sh before that (downside that configure call would be run twice)
or pass the arguments from ./configure to ./autogen. (downside: sth like that will stand there:
"I am going to run ./configure with the following arguments:
--enable-maintainer-mode --disable-maintainer-mode --prefix=/usr"
So maybe I should additionally add klesk's sed call)
JoZ3 commented on 2015-03-10 00:16 (UTC)
Thanks Klesk, your solution work fine for me :)
adlerweb commented on 2015-03-07 12:08 (UTC)
Same as klesk - PKGBUILD doesn't call autoconf/-make/… so there is no ./configure available. Calling autogen.sh as suggested worked for compiling, however files ended up in /usr/local/lib/gimp/2.0/plug-ins instead of /usr/lib/gimp/2.0/plug-ins.
klesk commented on 2015-02-13 13:42 (UTC)
I had some problems with the build section, error on the ./configure part.
So i changed the build section to this
build() {
cd $_pkgname
AUTOGEN_CONFIGURE_ARGS=--prefix=/usr
sed -i s/--enable-maintainer-mode/--disable-maintainer-mode/g autogen.sh
./autogen.sh
make
}
This worked for me.
Pinned Comments
TrialnError commented on 2020-03-29 19:59 (UTC)
Not particulary a reason of this specific version macflav. The culprit is this change in the by Arch provided GIMP package. They removed the Python Plugin, as it still is python2.
Therefore no Heal Selection in GIMP. You need to install for example python2-gimp which is available from the AUR.