public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* gstreamer-plugins-dev packages not available?
@ 2019-05-22 20:04 Hamish MB
  2019-05-22 20:19 ` Yaakov Selkowitz
  0 siblings, 1 reply; 4+ messages in thread
From: Hamish MB @ 2019-05-22 20:04 UTC (permalink / raw)
  To: cygwin

Hello,

I've been trying to build wxpython 4 under Cygwin, and I have realised 
that one of the build dependencies - gstreamer-plugins-bad-dev - doesn't 
seem to be in the repository. This is the same for all of the other 
plugin sets. I'm wondering if the package name is just different and I'm 
missing it or not? There is a dev package for the library that I 
installed, but this isn't enough to satisfy wxpython's configure script.

I'm happy to try to modify the build recipe for the gstreamer packages 
to include this, or do something similar. I might need some initial 
pointers - I'm not experienced compiling under Cygwin, or using Cygwin's 
package management system. If I get it working, I will also be happy to 
contribute a python3-wxpython4 package as well.

Can anyone help me?

Hamish McIntyre-Bhatty



--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gstreamer-plugins-dev packages not available?
  2019-05-22 20:04 gstreamer-plugins-dev packages not available? Hamish MB
@ 2019-05-22 20:19 ` Yaakov Selkowitz
  2019-05-22 20:35   ` Brian Inglis
  0 siblings, 1 reply; 4+ messages in thread
From: Yaakov Selkowitz @ 2019-05-22 20:19 UTC (permalink / raw)
  To: cygwin

On Wed, 2019-05-22 at 20:04 +0000, Hamish MB wrote:
> I've been trying to build wxpython 4 under Cygwin, and I have realised 
> that one of the build dependencies - gstreamer-plugins-bad-dev - doesn't 
> seem to be in the repository. This is the same for all of the other 
> plugin sets. I'm wondering if the package name is just different and I'm 
> missing it or not? There is a dev package for the library that I 
> installed, but this isn't enough to satisfy wxpython's configure script.

Package names vary between distributions.  The files are available:

https://cygwin.com/cgi-bin2/package-grep.cgi?grep=%2Fgst.*.pc%24&arch=x86_64

--
Yaakov


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gstreamer-plugins-dev packages not available?
  2019-05-22 20:19 ` Yaakov Selkowitz
@ 2019-05-22 20:35   ` Brian Inglis
  0 siblings, 0 replies; 4+ messages in thread
From: Brian Inglis @ 2019-05-22 20:35 UTC (permalink / raw)
  To: cygwin

On 2019-05-22 14:19, Yaakov Selkowitz wrote:
> On Wed, 2019-05-22 at 20:04 +0000, Hamish MB wrote:
>> I've been trying to build wxpython 4 under Cygwin, and I have realised 
>> that one of the build dependencies - gstreamer-plugins-bad-dev - doesn't 
>> seem to be in the repository. This is the same for all of the other 
>> plugin sets. I'm wondering if the package name is just different and I'm 
>> missing it or not? There is a dev package for the library that I 
>> installed, but this isn't enough to satisfy wxpython's configure script.
> 
> Package names vary between distributions.  The files are available:
> 
> https://cygwin.com/cgi-bin2/package-grep.cgi?grep=%2Fgst.*.pc%24&arch=x86_64

Cygwin dev packages have -devel and debug packages -debuginfo suffixes:

https://cygwin.com/cgi-bin2/package-grep.cgi?grep=gstreamer.*-plugins-bad-.*&arch=x86_64
OR
$ cygcheck -p gstreamer.*-plugins-bad-.*
OR
$ apt-cyg listall gstreamer*-plugins-bad-*
gstreamer1.0-plugins-bad-devel 1.12.5-1 x86_64
gstreamer1.0-plugins-bad-doc 1.12.5-1 x86_64
gstreamer1.0-plugins-bad-free 1.12.5-1 x86_64
gstreamer1.0-plugins-bad-free-debuginfo 1.12.5-1 x86_64
gstreamer1.0-plugins-bad-free-extras 1.12.5-1 x86_64
mingw64-i686-gstreamer1.0-plugins-bad-free 1.12.5-1 noarch
mingw64-i686-gstreamer1.0-plugins-bad-free-extras 1.12.5-1 noarch
mingw64-x86_64-gstreamer1.0-plugins-bad-free 1.12.5-1 noarch
mingw64-x86_64-gstreamer1.0-plugins-bad-free-extras 1.12.5-1 noarch

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

This email may be disturbing to some readers as it contains
too much technical detail. Reader discretion is advised.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gstreamer-plugins-dev packages not available?
@ 2019-05-23 11:02 Hamish MB
  0 siblings, 0 replies; 4+ messages in thread
From: Hamish MB @ 2019-05-23 11:02 UTC (permalink / raw)
  To: cygwin

I see, I missed the -devel package - thanks for your help.

Hamish


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-05-23 11:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-22 20:04 gstreamer-plugins-dev packages not available? Hamish MB
2019-05-22 20:19 ` Yaakov Selkowitz
2019-05-22 20:35   ` Brian Inglis
2019-05-23 11:02 Hamish MB

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).