[Ubuntustudio-bugs] [Bug 1775109] Re: mididings abort by dynamic module fail

2018-06-04 Thread Erich Eickmeyer
Probably needs to be repackaged from GitHub source, though project seems
to be largely unmaintained. Last commit was November 16, 2015. Issue
seems to be related to this upstream bug:
https://github.com/dsacre/mididings/issues/26

** Bug watch added: github.com/dsacre/mididings/issues #26
   https://github.com/dsacre/mididings/issues/26

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to The Ubuntu Studio Project.
Matching subscriptions: UbuntuStudio Bugs
https://bugs.launchpad.net/bugs/1775109

Title:
  mididings abort by  dynamic module fail

Status in Ubuntu Studio:
  Invalid
Status in mididings package in Ubuntu:
  New

Bug description:
  when start mididings, then abort by "dynamic module does not define
  error"

  *Exec result:=
  $ mididings -f someLiveSetting.py
  Traceback (most recent call last):
File "/usr/bin/mididings", line 4, in 
  __import__('pkg_resources').run_script('mididings==2015+r605d841', 
'mididings')
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 
658, in run_script
  self.require(requires)[0].run_script(script_name, ns)
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 
1438, in run_script
  exec(code, namespace, namespace)
File "/usr/lib/python2.7/dist-packages/mididings", line 20, in 
  import mididings
File "/usr/lib/python2.7/dist-packages/mididings/__init__.py", line 13, in 

  import _mididings
  ImportError: dynamic module does not define init function (init_mididings)
  *Exec result:=

  this is compile option bug.
  I fixed and recompile at setup.py in mididngs source, then work fine.

  
  *Fix setup.py:===
  at line 115, in function my_customize_compiler,
  commentout compile option "-fvisibility=hidden"

  105 def my_customize_compiler(compiler):
  106 retval = distutils_customize_compiler(compiler)
  107 try:
  108 # -Wstrict-prototypes is not valid for C++
  109 compiler.compiler_so.remove('-Wstrict-prototypes')
  110 # immediately stop on error
  111 compiler.compiler_so.append('-Wfatal-errors')
  112 # some options to reduce the size of the binary
  113 compiler.compiler_so.remove('-g')
  114 compiler.compiler_so.append('-finline-functions')
  115 #compiler.compiler_so.append('-fvisibility=hidden') #< 
need comment out!!
  116 except (AttributeError, ValueError):
  117 pass
  118 return retval



  *Platform===
  Kernel:  4.15.0-22-lowlatency
  dist: Ubuntu 18.04 LTS
  package: mididings, python-mididings
  python-version:
   python2.7 as 2.7.15-rc1-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntustudio/+bug/1775109/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 1775109] Re: mididings abort by dynamic module fail

2018-06-04 Thread Erich Eickmeyer
When filing bug reports, best practice is to file against the package.
The bug is upstream of Ubuntu Studio.

** Also affects: mididings (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: ubuntustudio
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to The Ubuntu Studio Project.
Matching subscriptions: UbuntuStudio Bugs
https://bugs.launchpad.net/bugs/1775109

Title:
  mididings abort by  dynamic module fail

Status in Ubuntu Studio:
  Invalid
Status in mididings package in Ubuntu:
  New

Bug description:
  when start mididings, then abort by "dynamic module does not define
  error"

  *Exec result:=
  $ mididings -f someLiveSetting.py
  Traceback (most recent call last):
File "/usr/bin/mididings", line 4, in 
  __import__('pkg_resources').run_script('mididings==2015+r605d841', 
'mididings')
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 
658, in run_script
  self.require(requires)[0].run_script(script_name, ns)
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 
1438, in run_script
  exec(code, namespace, namespace)
File "/usr/lib/python2.7/dist-packages/mididings", line 20, in 
  import mididings
File "/usr/lib/python2.7/dist-packages/mididings/__init__.py", line 13, in 

  import _mididings
  ImportError: dynamic module does not define init function (init_mididings)
  *Exec result:=

  this is compile option bug.
  I fixed and recompile at setup.py in mididngs source, then work fine.

  
  *Fix setup.py:===
  at line 115, in function my_customize_compiler,
  commentout compile option "-fvisibility=hidden"

  105 def my_customize_compiler(compiler):
  106 retval = distutils_customize_compiler(compiler)
  107 try:
  108 # -Wstrict-prototypes is not valid for C++
  109 compiler.compiler_so.remove('-Wstrict-prototypes')
  110 # immediately stop on error
  111 compiler.compiler_so.append('-Wfatal-errors')
  112 # some options to reduce the size of the binary
  113 compiler.compiler_so.remove('-g')
  114 compiler.compiler_so.append('-finline-functions')
  115 #compiler.compiler_so.append('-fvisibility=hidden') #< 
need comment out!!
  116 except (AttributeError, ValueError):
  117 pass
  118 return retval



  *Platform===
  Kernel:  4.15.0-22-lowlatency
  dist: Ubuntu 18.04 LTS
  package: mididings, python-mididings
  python-version:
   python2.7 as 2.7.15-rc1-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntustudio/+bug/1775109/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 1775109] [NEW] mididings abort by dynamic module fail

2018-06-04 Thread fgtsystems
Public bug reported:

when start mididings, then abort by "dynamic module does not define
error"

*Exec result:=
$ mididings -f someLiveSetting.py
Traceback (most recent call last):
  File "/usr/bin/mididings", line 4, in 
__import__('pkg_resources').run_script('mididings==2015+r605d841', 
'mididings')
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 658, 
in run_script
self.require(requires)[0].run_script(script_name, ns)
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 1438, 
in run_script
exec(code, namespace, namespace)
  File "/usr/lib/python2.7/dist-packages/mididings", line 20, in 
import mididings
  File "/usr/lib/python2.7/dist-packages/mididings/__init__.py", line 13, in 

import _mididings
ImportError: dynamic module does not define init function (init_mididings)
*Exec result:=

this is compile option bug.
I fixed and recompile at setup.py in mididngs source, then work fine.


*Fix setup.py:===
at line 115, in function my_customize_compiler,
commentout compile option "-fvisibility=hidden"

105 def my_customize_compiler(compiler):
106 retval = distutils_customize_compiler(compiler)
107 try:
108 # -Wstrict-prototypes is not valid for C++
109 compiler.compiler_so.remove('-Wstrict-prototypes')
110 # immediately stop on error
111 compiler.compiler_so.append('-Wfatal-errors')
112 # some options to reduce the size of the binary
113 compiler.compiler_so.remove('-g')
114 compiler.compiler_so.append('-finline-functions')
115 #compiler.compiler_so.append('-fvisibility=hidden') #< need 
comment out!!
116 except (AttributeError, ValueError):
117 pass
118 return retval


*Platform===
Kernel:  4.15.0-22-lowlatency
dist: Ubuntu 18.04 LTS
package: mididings, python-mididings
python-version:
 python2.7 as 2.7.15-rc1-1

** Affects: ubuntustudio
 Importance: Undecided
 Status: New

** Attachment added: "setup.py.fixed"
   
https://bugs.launchpad.net/bugs/1775109/+attachment/5148799/+files/setup.py.fixed

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to The Ubuntu Studio Project.
Matching subscriptions: UbuntuStudio Bugs
https://bugs.launchpad.net/bugs/1775109

Title:
  mididings abort by  dynamic module fail

Status in Ubuntu Studio:
  New

Bug description:
  when start mididings, then abort by "dynamic module does not define
  error"

  *Exec result:=
  $ mididings -f someLiveSetting.py
  Traceback (most recent call last):
File "/usr/bin/mididings", line 4, in 
  __import__('pkg_resources').run_script('mididings==2015+r605d841', 
'mididings')
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 
658, in run_script
  self.require(requires)[0].run_script(script_name, ns)
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 
1438, in run_script
  exec(code, namespace, namespace)
File "/usr/lib/python2.7/dist-packages/mididings", line 20, in 
  import mididings
File "/usr/lib/python2.7/dist-packages/mididings/__init__.py", line 13, in 

  import _mididings
  ImportError: dynamic module does not define init function (init_mididings)
  *Exec result:=

  this is compile option bug.
  I fixed and recompile at setup.py in mididngs source, then work fine.

  
  *Fix setup.py:===
  at line 115, in function my_customize_compiler,
  commentout compile option "-fvisibility=hidden"

  105 def my_customize_compiler(compiler):
  106 retval = distutils_customize_compiler(compiler)
  107 try:
  108 # -Wstrict-prototypes is not valid for C++
  109 compiler.compiler_so.remove('-Wstrict-prototypes')
  110 # immediately stop on error
  111 compiler.compiler_so.append('-Wfatal-errors')
  112 # some options to reduce the size of the binary
  113 compiler.compiler_so.remove('-g')
  114 compiler.compiler_so.append('-finline-functions')
  115 #compiler.compiler_so.append('-fvisibility=hidden') #< 
need comment out!!
  116 except (AttributeError, ValueError):
  117 pass
  118 return retval



  *Platform===
  Kernel:  4.15.0-22-lowlatency
  dist: Ubuntu 18.04 LTS
  package: mididings, python-mididings
  python-version:
   python2.7 as 2.7.15-rc1-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntustudio/+bug/1775109/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : 

[Ubuntustudio-bugs] [Bug 992971] Re: libavformat53 Mismatching header version

2018-06-04 Thread Janek Kozicki
ah, sorry. That error wasn't critical (although I have that message
too). My problem was:

[msmpeg4v2 @ 0x7f08f7cefae0][lavc rc] Error: bitrate too low for this
video with these parameters.

So I just need higher bitrate.

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to libav in Ubuntu.
Matching subscriptions: Ubuntu Studio Bugs
https://bugs.launchpad.net/bugs/992971

Title:
  libavformat53 Mismatching header version

Status in libav package in Ubuntu:
  Opinion
Status in mplayer package in Ubuntu:
  Confirmed
Status in libav package in Arch Linux:
  New

Bug description:
  Version details should be in the auto-loaded Apport file.

  $ mplayer blah_blah.mov
  MPlayer svn r34540 (Ubuntu), built with gcc-4.6 (C) 2000-2012 MPlayer Team

  Playing blah_blah.mov.
  libavformat version 53.21.0 (external)
  Mismatching header version 53.19.0
  libavformat file format detected.
  [snip]

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: libavformat53 4:0.8.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  Date: Tue May  1 20:24:45 2012
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: libav
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav/+bug/992971/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 992971] Re: libavformat53 Mismatching header version

2018-06-04 Thread Janek Kozicki
I confirm. And it's critical for me, because I cannot use mencoder to
for 2nd and 3rd pass:

$ mencoder IMG_6040.MOV -o Dell_P4317Q_two_problems.avi -mf fps=25 -ovc lavc 
-lavcopts vcodec=msmpeg4v2:vpass=3:vbitrate=240 -oac mp3lame -vf 
scale=1536:864  
   (pon,04 cze,20:56)
MEncoder 1.3.0 (Debian), built with gcc-6.2.1 (C) 2000-2016 MPlayer Team
success: format: 0  data: 0x0 - 0x1b33e43f
libavformat version 57.56.101 (external)
Mismatching header version 57.56.100
libavformat file format detected.

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to libav in Ubuntu.
Matching subscriptions: Ubuntu Studio Bugs
https://bugs.launchpad.net/bugs/992971

Title:
  libavformat53 Mismatching header version

Status in libav package in Ubuntu:
  Opinion
Status in mplayer package in Ubuntu:
  Confirmed
Status in libav package in Arch Linux:
  New

Bug description:
  Version details should be in the auto-loaded Apport file.

  $ mplayer blah_blah.mov
  MPlayer svn r34540 (Ubuntu), built with gcc-4.6 (C) 2000-2012 MPlayer Team

  Playing blah_blah.mov.
  libavformat version 53.21.0 (external)
  Mismatching header version 53.19.0
  libavformat file format detected.
  [snip]

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: libavformat53 4:0.8.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  Date: Tue May  1 20:24:45 2012
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: libav
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav/+bug/992971/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 1758729] Re: package gimp-plugin-registry (not installed) failed to install/upgrade: a tentar sobre-escrever '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', que também está no

2018-06-04 Thread Erich Eickmeyer
*** This bug is a duplicate of bug 1772769 ***
https://bugs.launchpad.net/bugs/1772769

** This bug has been marked a duplicate of bug 1772769
   package gimp-plugin-registry (not installed) failed to install/upgrade: 
trying to overwrite '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', which is 
also in package gimp 2.10.2+omg-0ubu18.04.1~ppa

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to gimp-plugin-registry in Ubuntu.
Matching subscriptions: Ubuntu Studio Bugs
https://bugs.launchpad.net/bugs/1758729

Title:
  package gimp-plugin-registry (not installed) failed to
  install/upgrade: a tentar sobre-escrever '/usr/lib/gimp/2.0/plug-ins
  /wavelet-decompose', que também está no pacote gimp
  2.9.9~19-ubu18.04.6~ppa~f2c80e1

Status in gimp-plugin-registry package in Ubuntu:
  New

Bug description:
  na instalação

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: gimp-plugin-registry (not installed)
  ProcVersionSignature: Ubuntu 4.15.0-13.14-generic 4.15.10
  Uname: Linux 4.15.0-13-generic x86_64
  ApportVersion: 2.20.9-0ubuntu1
  Architecture: amd64
  Date: Sun Mar 25 16:02:12 2018
  ErrorMessage: a tentar sobre-escrever 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', que também está no pacote gimp 
2.9.9~19-ubu18.04.6~ppa~f2c80e1
  InstallationDate: Installed on 2018-02-23 (29 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20180221)
  Python3Details: /usr/bin/python3.6, Python 3.6.5rc1, python3-minimal, 3.6.4-1
  PythonDetails: /usr/bin/python2.7, Python 2.7.14+, python-minimal, 2.7.14-4
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu1
   apt  1.6~beta1
  SourcePackage: gimp-plugin-registry
  Title: package gimp-plugin-registry (not installed) failed to 
install/upgrade: a tentar sobre-escrever 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', que também está no pacote gimp 
2.9.9~19-ubu18.04.6~ppa~f2c80e1
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gimp-plugin-registry/+bug/1758729/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 1767791] Re: package gimp-plugin-registry (not installed) failed to install/upgrade: tentative de remplacement de « /usr/lib/gimp/2.0/plug-ins/wavelet-decompose », qui apparti

2018-06-04 Thread Erich Eickmeyer
*** This bug is a duplicate of bug 1772769 ***
https://bugs.launchpad.net/bugs/1772769

** This bug has been marked a duplicate of bug 1772769
   package gimp-plugin-registry (not installed) failed to install/upgrade: 
trying to overwrite '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', which is 
also in package gimp 2.10.2+omg-0ubu18.04.1~ppa

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to gimp-plugin-registry in Ubuntu.
Matching subscriptions: Ubuntu Studio Bugs
https://bugs.launchpad.net/bugs/1767791

Title:
  package gimp-plugin-registry (not installed) failed to
  install/upgrade: tentative de remplacement de « /usr/lib/gimp/2.0
  /plug-ins/wavelet-decompose », qui appartient aussi au paquet gimp
  2.10.0+om-1ubu18.04.1~ppa

Status in gimp-plugin-registry package in Ubuntu:
  Incomplete

Bug description:
  Display(Posting) in the screen of a problem while there is no use of
  GIMP!?

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: gimp-plugin-registry (not installed)
  ProcVersionSignature: Ubuntu 4.13.0-38.43-generic 4.13.16
  Uname: Linux 4.13.0-38-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  Date: Sun Apr 29 13:53:27 2018
  DpkgHistoryLog:
   Start-Date: 2018-04-29  13:52:24
   Commandline: packagekit role='install-packages'
   Requested-By: pymubuntu (1000)
   Install: libpangox-1.0-0:amd64 (0.0.2-5, automatic), libcurl4:amd64 
(7.58.0-2ubuntu3, automatic), human-icon-theme:amd64 (0.36, automatic), 
libopencv-video3.2:amd64 (3.2.0+dfsg-4build2, automatic), libtiff-tools:amd64 
(4.0.9-5, automatic), frei0r-plugins-dev:amd64 (1.6.1-2), 
frei0r-plugins-doc:amd64 (1.6.1-2), gimp-plugin-registry:amd64 
(7.20140602ubuntu3), breathe-icon-theme:amd64 (0.51.2, automatic), 
gnome-icon-theme:amd64 (3.12.0-3, automatic), frei0r-plugins:amd64 (1.6.1-2), 
libgtkglext1:amd64 (1.2.0-8, automatic), community-themes:amd64 (0.23.2), 
gimp-gmic:amd64 (1:2.2.1+om-ubu18.04.1~ppa, automatic), libgavl1:amd64 
(1.4.0-5, automatic)
   Remove: googleearth:amd64 (6.0.3.2197+1.2.0-1), libcurl3:i386 
(7.58.0-2ubuntu2)
  ErrorMessage: tentative de remplacement de « 
/usr/lib/gimp/2.0/plug-ins/wavelet-decompose », qui appartient aussi au paquet 
gimp 2.10.0+om-1ubu18.04.1~ppa
  Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
  PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu2
   apt  1.6.1
  SourcePackage: gimp-plugin-registry
  Title: package gimp-plugin-registry (not installed) failed to 
install/upgrade: tentative de remplacement de « 
/usr/lib/gimp/2.0/plug-ins/wavelet-decompose », qui appartient aussi au paquet 
gimp 2.10.0+om-1ubu18.04.1~ppa
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gimp-plugin-registry/+bug/1767791/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 1774980] Re: package gimp-plugin-registry (not installed) failed to install/upgrade: poging tot overschrijven van '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', wat ook in pa

2018-06-04 Thread Erich Eickmeyer
*** This bug is a duplicate of bug 1772769 ***
https://bugs.launchpad.net/bugs/1772769

** This bug has been marked a duplicate of bug 1772769
   package gimp-plugin-registry (not installed) failed to install/upgrade: 
trying to overwrite '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', which is 
also in package gimp 2.10.2+omg-0ubu18.04.1~ppa

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to gimp-plugin-registry in Ubuntu.
Matching subscriptions: Ubuntu Studio Bugs
https://bugs.launchpad.net/bugs/1774980

Title:
  package gimp-plugin-registry (not installed) failed to
  install/upgrade: poging tot overschrijven van '/usr/lib/gimp/2.0/plug-
  ins/wavelet-decompose', wat ook in pakket gimp 2.10.2+omg-
  0ubu18.04.1~ppa zit

Status in gimp-plugin-registry package in Ubuntu:
  New

Bug description:
  ?

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: gimp-plugin-registry (not installed)
  ProcVersionSignature: Ubuntu 4.15.0-22.24-generic 4.15.17
  Uname: Linux 4.15.0-22-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.9-0ubuntu7.1
  Architecture: amd64
  Date: Mon Jun  4 14:05:05 2018
  ErrorMessage: poging tot overschrijven van 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', wat ook in pakket gimp 
2.10.2+omg-0ubu18.04.1~ppa zit
  InstallationDate: Installed on 2018-05-01 (33 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
  PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu2
   apt  1.6.1
  SourcePackage: gimp-plugin-registry
  Title: package gimp-plugin-registry (not installed) failed to 
install/upgrade: poging tot overschrijven van 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', wat ook in pakket gimp 
2.10.2+omg-0ubu18.04.1~ppa zit
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gimp-plugin-registry/+bug/1774980/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 1772074] Re: package gimp-plugin-registry (not installed) failed to install/upgrade: a tentar sobre-escrever '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', que também está no

2018-06-04 Thread Erich Eickmeyer
*** This bug is a duplicate of bug 1772769 ***
https://bugs.launchpad.net/bugs/1772769

** This bug has been marked a duplicate of bug 1772769
   package gimp-plugin-registry (not installed) failed to install/upgrade: 
trying to overwrite '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', which is 
also in package gimp 2.10.2+omg-0ubu18.04.1~ppa

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to gimp-plugin-registry in Ubuntu.
Matching subscriptions: Ubuntu Studio Bugs
https://bugs.launchpad.net/bugs/1772074

Title:
  package gimp-plugin-registry (not installed) failed to
  install/upgrade: a tentar sobre-escrever '/usr/lib/gimp/2.0/plug-ins
  /wavelet-decompose', que também está no pacote gimp 2.10.0+om-
  1ubu18.04.1~ppa

Status in gimp-plugin-registry package in Ubuntu:
  Incomplete

Bug description:
  instalation problem

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: gimp-plugin-registry (not installed)
  ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
  Uname: Linux 4.15.0-20-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  Date: Fri May 18 14:26:21 2018
  ErrorMessage: a tentar sobre-escrever 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', que também está no pacote gimp 
2.10.0+om-1ubu18.04.1~ppa
  InstallationDate: Installed on 2018-05-17 (0 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
  PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu2
   apt  1.6.1
  SourcePackage: gimp-plugin-registry
  Title: package gimp-plugin-registry (not installed) failed to 
install/upgrade: a tentar sobre-escrever 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', que também está no pacote gimp 
2.10.0+om-1ubu18.04.1~ppa
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gimp-plugin-registry/+bug/1772074/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntustudio-bugs] [Bug 1774980] [NEW] package gimp-plugin-registry (not installed) failed to install/upgrade: poging tot overschrijven van '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', wat ook in

2018-06-04 Thread Jullien Chau
Public bug reported:

?

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: gimp-plugin-registry (not installed)
ProcVersionSignature: Ubuntu 4.15.0-22.24-generic 4.15.17
Uname: Linux 4.15.0-22-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.9-0ubuntu7.1
Architecture: amd64
Date: Mon Jun  4 14:05:05 2018
ErrorMessage: poging tot overschrijven van 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', wat ook in pakket gimp 
2.10.2+omg-0ubu18.04.1~ppa zit
InstallationDate: Installed on 2018-05-01 (33 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2
 apt  1.6.1
SourcePackage: gimp-plugin-registry
Title: package gimp-plugin-registry (not installed) failed to install/upgrade: 
poging tot overschrijven van '/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', 
wat ook in pakket gimp 2.10.2+omg-0ubu18.04.1~ppa zit
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gimp-plugin-registry (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package bionic

-- 
You received this bug notification because you are a member of Ubuntu
Studio Bugs, which is subscribed to gimp-plugin-registry in Ubuntu.
Matching subscriptions: Ubuntu Studio Bugs
https://bugs.launchpad.net/bugs/1774980

Title:
  package gimp-plugin-registry (not installed) failed to
  install/upgrade: poging tot overschrijven van '/usr/lib/gimp/2.0/plug-
  ins/wavelet-decompose', wat ook in pakket gimp 2.10.2+omg-
  0ubu18.04.1~ppa zit

Status in gimp-plugin-registry package in Ubuntu:
  New

Bug description:
  ?

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: gimp-plugin-registry (not installed)
  ProcVersionSignature: Ubuntu 4.15.0-22.24-generic 4.15.17
  Uname: Linux 4.15.0-22-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.9-0ubuntu7.1
  Architecture: amd64
  Date: Mon Jun  4 14:05:05 2018
  ErrorMessage: poging tot overschrijven van 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', wat ook in pakket gimp 
2.10.2+omg-0ubu18.04.1~ppa zit
  InstallationDate: Installed on 2018-05-01 (33 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
  PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu2
   apt  1.6.1
  SourcePackage: gimp-plugin-registry
  Title: package gimp-plugin-registry (not installed) failed to 
install/upgrade: poging tot overschrijven van 
'/usr/lib/gimp/2.0/plug-ins/wavelet-decompose', wat ook in pakket gimp 
2.10.2+omg-0ubu18.04.1~ppa zit
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gimp-plugin-registry/+bug/1774980/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntustudio-bugs
Post to : ubuntustudio-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntustudio-bugs
More help   : https://help.launchpad.net/ListHelp