From ie@aegle.fr Fri Aug 1 14:00:00 2014 From: ie@aegle.fr (Isabelle EDOUARD) Date: Fri, 01 Aug 2014 14:00:00 -0000 Subject: keyboard problem with mwm and window done with Motif Message-ID: <005801cfad90$f3757210$da605630$@aegle.fr> Hello, I run with command line on my Windows 7 Xwin.exe in rootless mode. After I run the window manager: mwm.exe and finally I launch an application in a Red-Hat Server which use window done in Motif and Qt. With Qt windows the Keypad of my Keyboard works well (All the keyboard is OK) in a xterm too but with Motif windows is different: All seems to be well except 0. When I want to make 0 with the keypad, nothing appear, it's Ok with 1,2,3,4 etc ... but not with 0. Have I forgotten to configure a file or file(s) have bad configuration? Thanks for your help. Regards, Isabelle -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From linush@verizon.net Fri Aug 1 20:50:00 2014 From: linush@verizon.net (C Linus Hicks) Date: Fri, 01 Aug 2014 20:50:00 -0000 Subject: Resize a Cygwin64 xterm on Windows 7 64-bit jumps in increments of two or three columns In-Reply-To: <1406817238.20244.32.camel@lh8.linush.lan> References: <1406743450.20244.29.camel@lh8.linush.lan> <53DA2C58.6060108@dronecode.org.uk> <1406817238.20244.32.camel@lh8.linush.lan> Message-ID: <1406926196.23056.2.camel@lh8.linush.lan> On Thu, 2014-07-31 at 10:33 -0400, C Linus Hicks wrote: > On Thu, 2014-07-31 at 12:45 +0100, Jon TURNEY wrote: > > On 30/07/2014 19:04, C Linus Hicks wrote: > > > I have run Cygwin on multiple versions of Windows including recently on > > > Windows XP and don't think I ever had this problem. Resizing or > > > specifying a geometry always resulted in the exact number of columns > > > requested, with increments of 1 column being available when dragging the > > > borders of a window to resize. > > > > > > Now, after upgrading to Windows 7 64-bit, I cannot get the window to > > > have 80 columns on resize. It jumps in increments of two or three, > > > depending on the number of columns prior to resizing. For example: > > > > Thanks for reporting this problem. > > > > I think this may be resolved by a fix "Correctly interpret WM_HINTS, > > WM_NORMAL_HINTS properties on x86_64" I made in 1.15.1-3 [1]. Can you > > please test with the latest version? > > > > > Should I be able to resize by increments of one column? > > > > Yes > > Yes, I will try that within the next day or so. Thanks. Updated to latest as of 30 minutes ago and it allows me to resize at any column width. Thanks for your help. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From matt@codespunk.com Sun Aug 3 14:32:00 2014 From: matt@codespunk.com (Matt D.) Date: Sun, 03 Aug 2014 14:32:00 -0000 Subject: XWin cursor huge on one computer but normal on another Message-ID: <53DE4801.3040209@codespunk.com> I primarily work on my workstation which has four 1080p monitors (three on the bottom with the fourth at center top) and for the longest time I thought that it this was a configuration error on my part; and perhaps it still it. The issue is that on my worksation, the cursor is huge and is sometimes even cropped for being too large. This is especially noticeable for applications like xterm and gedit. I think it might be a DPI or scaling issue due to my large screen size, however I've always explicitly defined "-dpi 96" in my xinit. I had thought that this was a known bug and hadn't thought much about it until I pulled up gedit on my laptop where I saw that the cursors were all fine. I thought that maybe I had different packages but even after copying my entire cygwin directory and startup scripts over, on my laptop it still shows cursors no larger than the default Windows size. Has anyone experienced this before? Thanks, Matt D. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Mon Aug 4 15:30:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 04 Aug 2014 15:30:00 -0000 Subject: XWin cursor huge on one computer but normal on another In-Reply-To: <53DE4801.3040209@codespunk.com> References: <53DE4801.3040209@codespunk.com> Message-ID: <53DFA71C.4060809@dronecode.org.uk> On 03/08/2014 15:32, Matt D. wrote: > I primarily work on my workstation which has four 1080p monitors (three > on the bottom with the fourth at center top) and for the longest time I > thought that it this was a configuration error on my part; and perhaps > it still it. > > The issue is that on my worksation, the cursor is huge and is sometimes > even cropped for being too large. This is especially noticeable for > applications like xterm and gedit. > > I think it might be a DPI or scaling issue due to my large screen size, > however I've always explicitly defined "-dpi 96" in my xinit. > > I had thought that this was a known bug and hadn't thought much about it > until I pulled up gedit on my laptop where I saw that the cursors were > all fine. I thought that maybe I had different packages but even after > copying my entire cygwin directory and startup scripts over, on my > laptop it still shows cursors no larger than the default Windows size. > > Has anyone experienced this before? This is pretty odd. Not a known bug, or one that I think we have a had reported before. I guess what you are seeing when you say the cursor is 'cropped' is the X cursor being truncated to fit in the Windows cursor size of GetSystemMetrics(SM_CXCURSOR) by GetSystemMetrics(SM_CYCURSOR) The libXcursor checks various things [1] when choosing a cursor size, falling back to (smallest screen dimension/48), so I guess it's your large display causing this issue. I'm not sure about the best way to fix this, but as a workaround for the moment, you might try setting the XCURSOR_SIZE env var to something reasonable. You might like to try this small test program to confirm what's going on: $ cat cursor.c #include #include int main() { Display *dpy = XOpenDisplay(NULL); int c = XcursorGetDefaultSize(dpy); printf("XcursorGetDefaultSize = %d\n", c); printf("GetSystemMetrics(SM_CXCURSOR) = %d\n", GetSystemMetrics(SM_CXCURSOR)); printf("GetSystemMetrics(SM_CYCURSOR) = %d\n", GetSystemMetrics(SM_CYCURSOR)); } $ gcc cursor.c -o cursor -lXcursor -lX11 $ ./cursor XcursorGetDefaultSize = 22 GetSystemMetrics(SM_CXCURSOR) = 32 GetSystemMetrics(SM_CYCURSOR) = 32 [1] http://cgit.freedesktop.org/xorg/lib/libXcursor/tree/src/display.c#n168 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Mon Aug 4 15:35:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 04 Aug 2014 15:35:00 -0000 Subject: keyboard problem with mwm and window done with Motif In-Reply-To: <005801cfad90$f3757210$da605630$@aegle.fr> References: <005801cfad90$f3757210$da605630$@aegle.fr> Message-ID: <53DFA847.8010007@dronecode.org.uk> On 01/08/2014 15:00, Isabelle EDOUARD wrote: > I run with command line on my Windows 7 Xwin.exe in rootless mode. After I > run the window manager: mwm.exe and finally I launch an application in a > Red-Hat Server which use window done in Motif and Qt. > > With Qt windows the Keypad of my Keyboard works well (All the keyboard is > OK) in a xterm too but with Motif windows is different: All seems to be well > except 0. When I want to make 0 with the keypad, nothing appear, it's Ok > with 1,2,3,4 etc ... but not with 0. > > Have I forgotten to configure a file or file(s) have bad configuration? > > Thanks for your help. Thanks for reporting this problem. I can't immediately reproduce it, so perhaps you can help me with a bit more information Can you attach your /var/log/xwin/XWin.0.log so I can see precisely what keyboard layout you are using? Can you tell me what particular motif application and version of Red-Hat server you are connecting to? -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Mon Aug 4 15:57:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 04 Aug 2014 15:57:00 -0000 Subject: xinit hangs on XWin infinite loop when using -displayfd In-Reply-To: <53D6E386.3060001@codespunk.com> References: <53CC6789.4000601@codespunk.com> <53CD368C.3060509@codespunk.com> <53CD3917.4060305@codespunk.com> <53CD4E2C.6040204@codespunk.com> <53D6436D.2090808@dronecode.org.uk> <53D6E386.3060001@codespunk.com> Message-ID: <53DFAD63.5090306@dronecode.org.uk> On 29/07/2014 00:57, Matt D. wrote: > Doh! I was so blind! Windows XP does not have an IPv6 protocol installed > by default. I added it and the problem went away. > > This sounds like a bug. XWin should verify whether a device which > supports the target protocol exists before attempting to open a socket > on it. Yes, it shouldn't fail like this if IPv6 isn't installed I suspect the same problem will occur if you use X -displayfd built with IPv6 on linux kernel without IPv6 support > What is this used for? Sharing a local X session with someone else? > Logging onto an existing X session at work from home? I've only ever > used X locally or through ssh forwarding. It's used to allow remote X clients to connect to an X server without using a ssh tunnel (e.g. [1]) [1] http://x.cygwin.com/docs/ug/using-remote-apps.html#using-remote-apps-telnet -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@cygwin.com Fri Aug 15 05:46:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Fri, 15 Aug 2014 05:46:00 -0000 Subject: [ANNOUNCEMENT] Various X.Org updates Message-ID: The following packages have been added in the Cygwin distribution: * fontsproto-2.1.3-1 * gccmakedep-1.0.3-1 * imake-1.0.7-1 * inputproto-2.3.1-1 * libICE-1.0.9-1 * libXaw-1.0.12-2 * libXaw3d-1.6.2-2 * libXext-1.3.3-1 * libXfont-1.5.0-1 * libXft-2.3.2-1 * libXi-1.7.4-1 * libXt-1.1.4-2 * libxkbcommon-0.4.2-1 * mesa-10.2.5-1 * motif-2.3.4-2 * xauth-1.0.9-1 * xcb-util-cursor-0.1.1-1 * xcb-util-renderutil-0.3.9-1 * xcb-util-wm-0.4.1-1 * xcursorgen-1.0.6-1 * xfs-1.1.3-20140603-1 * xkeyboard-config-2.12-1 * xorg-util-macros-1.19.0-1 * xproto-7.0.26-1 * xrandr-1.4.3-1 * xtrans-1.3.4-1 This batch of updates consists mostly of bugfixes and some new features required by the upcoming xorg-server 1.16 release. The issue on x86_64 where Xaw/Motif apps would not work depending on where they were rebased should now be fixed. -- Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Sun Aug 17 03:23:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Sun, 17 Aug 2014 03:23:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.16.0-1 (TEST) Message-ID: The following packages have been updated in the Cygwin distribution: *** xorg-server-*1.16.0-1 These packages contain XWin and the other X.Org X11 servers. This is the first release of the xserver 1.16 series. It is currently available as a test release, and will be made stable in approximately two weeks, if no major regressions are reported. Please try test releases and report problems to the Cygwin/X mailing list. Testing helps ensure good releases! Unfortunately, the upstream announce mail [1] does not contain a full changelog since 1.15, so you will need to consult the changelog or git for a list of upstream fixes and improvements. There are no (intentional) cygwin-specific changes since 1.15.1-4. x86: 216a51a629bcd4742b7b826adc0002f4 *xorg-server-1.16.0-1-src.tar.xz 1ac20f486d79ea8265d8c2bd71f84480 *xorg-server-1.16.0-1.tar.xz fc95cbac01494fd8c6606ce42cb57e3d *xorg-server-common-1.16.0-1.tar.xz 0c26f66ad820f3cf35b688f391b00008 *xorg-server-debuginfo-1.16.0-1.tar.xz ff468207cf884ea9ae5b12915749adfd *xorg-server-devel-1.16.0-1.tar.xz a97a9a98c952eb75ff0b1674e675b7b0 *xorg-server-dmx-1.16.0-1.tar.xz cf3a0e1bbdb4886af612009785c6f6da *xorg-server-extra-1.16.0-1.tar.xz 591d3a44361da533f61a661f11f81b90 *xwinclip-1.16.0-1.tar.xz x86_64: f422bf9198638eadf9e67debcfd52124 *xorg-server-1.16.0-1-src.tar.xz 2c25e1613cd257947a7b0948f555ef5a *xorg-server-1.16.0-1.tar.xz f343043b0fee407f278fefd6bf3e170f *xorg-server-common-1.16.0-1.tar.xz d16da2c1e663d02ce2a4f7f632a6a2e3 *xorg-server-debuginfo-1.16.0-1.tar.xz 88ca9cd147a34a231d543c6d1a19a166 *xorg-server-devel-1.16.0-1.tar.xz e40e5b425ff81529d43887ea72eeac65 *xorg-server-dmx-1.16.0-1.tar.xz f754e024a2dded60c7621e3c53e41141 *xorg-server-extra-1.16.0-1.tar.xz 4f31330dd0fe1274019d9f93ab90a74f *xwinclip-1.16.0-1.tar.xz [1] http://lists.x.org/archives/xorg-announce/2014-July/002457.html -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mikedep333@gmail.com Mon Aug 18 13:43:00 2014 From: mikedep333@gmail.com (Michael DePaulo) Date: Mon, 18 Aug 2014 13:43:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.16.0-1 (TEST) In-Reply-To: References: Message-ID: On Sat, Aug 16, 2014 at 10:41 AM, Jon TURNEY wrote: > > The following packages have been updated in the Cygwin distribution: > > *** xorg-server-*1.16.0-1 > > These packages contain XWin and the other X.Org X11 servers. > > This is the first release of the xserver 1.16 series. It is currently > available as a test release, and will be made stable in approximately two > weeks, if no major regressions are reported. > > Please try test releases and report problems to the Cygwin/X mailing list. > Testing helps ensure good releases! > > Unfortunately, the upstream announce mail [1] does not contain a full > changelog since 1.15, so you will need to consult the changelog or git for a > list of upstream fixes and improvements. > > There are no (intentional) cygwin-specific changes since 1.15.1-4. [...] I think I found a bug: There is no stdout or stderr. So for example, "xwin --version" does not output anything. Nothing is logged to /var/log/xwin/Xorg.0.log when I type that command. This is the same as with xorg-server 1.15. If I specify an invalid argument (e.g. "xwin --foobar"). then I see the information dialog box, and the xwin usage info is outputted to that log file. I did all my testing with 32-bit Cygwin. mike@executor ~ $ xwin --version mike@executor ~ $ cygcheck.exe -c xorg-server Cygwin Package Information Package Version Status xorg-server 1.16.0-1 OK mike@executor ~ $ cygcheck -s -v -r > cygcheck.out mike@executor ~ $ cygcheck -s -v -r > cygcheck-xorg16.out In contrast to xorg-server 1.15: mike@executor ~ $ xwin --version Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 1.15.1.0 OS: CYGWIN_NT-6.3-WOW64 executor 1.7.32(0.274/5/3) 2014-08-13 23:03 i686 OS: Windows 8.1 [Windows NT 6.3 build 9600] (WoW64) Package: version 1.15.1-4 built 2014-07-18 mike@executor ~ $ cygcheck -c xorg-server Cygwin Package Information Package Version Status xorg-server 1.15.1-4 OK mike@executor ~ $ cygcheck -s -v -r > cygcheck-xorg15.out -Mike -------------- next part -------------- A non-text attachment was scrubbed... Name: cygcheck-xorg16.out Type: application/octet-stream Size: 37530 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: cygcheck-xorg15.out Type: application/octet-stream Size: 132421 bytes Desc: not available URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Wed Aug 20 11:19:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 20 Aug 2014 11:19:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.16.0-1 (TEST) In-Reply-To: References: Message-ID: <53F48418.5090509@dronecode.org.uk> On 18/08/2014 14:43, Michael DePaulo wrote: > On Sat, Aug 16, 2014 at 10:41 AM, Jon TURNEY wrote: >> >> The following packages have been updated in the Cygwin distribution: >> >> *** xorg-server-*1.16.0-1 > I think I found a bug: > > There is no stdout or stderr. > > So for example, "xwin --version" does not output anything. > > Nothing is logged to /var/log/xwin/Xorg.0.log when I type that > command. This is the same as with xorg-server 1.15. > > If I specify an invalid argument (e.g. "xwin --foobar"). then I see > the information dialog box, and the xwin usage info is outputted to > that log file. > > I did all my testing with 32-bit Cygwin. Thanks for reporting this. Are you using the same terminal in both cases? (For obscure reasons, XWin --version doesn't work in a cmd.exe terminal, see [1]) You also seem to be using a separate cygwin installation to test xorg-server 1.16, which might also be related to this in some way. [1] https://sourceware.org/bugzilla/show_bug.cgi?id=9763 -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mikedep333@gmail.com Wed Aug 20 12:47:00 2014 From: mikedep333@gmail.com (Michael DePaulo) Date: Wed, 20 Aug 2014 12:47:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.16.0-1 (TEST) In-Reply-To: <53F48418.5090509@dronecode.org.uk> References: <53F48418.5090509@dronecode.org.uk> Message-ID: On Wed, Aug 20, 2014 at 7:18 AM, Jon TURNEY wrote: > On 18/08/2014 14:43, Michael DePaulo wrote: > >> On Sat, Aug 16, 2014 at 10:41 AM, Jon TURNEY wrote: >>> >>> >>> The following packages have been updated in the Cygwin distribution: >>> >>> *** xorg-server-*1.16.0-1 > > >> I think I found a bug: >> >> There is no stdout or stderr. >> >> So for example, "xwin --version" does not output anything. >> >> Nothing is logged to /var/log/xwin/Xorg.0.log when I type that >> command. This is the same as with xorg-server 1.15. >> >> If I specify an invalid argument (e.g. "xwin --foobar"). then I see >> the information dialog box, and the xwin usage info is outputted to >> that log file. >> >> I did all my testing with 32-bit Cygwin. > > > Thanks for reporting this. > > Are you using the same terminal in both cases? (For obscure reasons, XWin > --version doesn't work in a cmd.exe terminal, see [1]) > > You also seem to be using a separate cygwin installation to test xorg-server > 1.16, which might also be related to this in some way. > > [1] https://sourceware.org/bugzilla/show_bug.cgi?id=9763 > > -- > Jon TURNEY > Volunteer Cygwin/X X Server maintainer Hi Jon, Your suspician was correct. I was launching my main cygwin installation with the start menu shortcut (`C:\cygwin\bin\mintty.exe -i /Cygwin-Terminal.ico -`), but I was launching the X.org 1.16 cygwin installation by double-clicking C:\cygwin-xorg16\cygwin.bat. Thus I was running my X.org 1.16 cygwin installation with cmd.exe. When I launched my X.org 1.16 Cygwin installation by running `C:\cygwin-xorg16\bin\mintty.exe -i /Cygwin-Terminal.ico -`, this issue was resolved. Thanks, -Mike -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@cygwin.com Fri Aug 29 07:02:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Fri, 29 Aug 2014 07:02:00 -0000 Subject: [ANNOUNCEMENT] New: Additional GNOME libraries, Python bindings, Glade Message-ID: The following packages, and their subpackages, have been added to the Cygwin distribution: * clutter1.0-1.16.4-1 * clutter-gtk0.10-0.10.8-8 * clutter-gtk1.0-1.4.4-2 * cogl-1.16.2-1 * geoclue-0.12.99-1 * gnome-python-2.28.1-3 * gnome-python-extras-2.29.0-2 * goocanvas-1.0.0-1 * goocanvas2.0-2.0.2-1 * goocanvasmm2.0-1.90.9-1 * gtkspell-2.0.16-1 * gtkspell3-3.0.4-1 * gtksourceview2.0-2.10.5-2 * gtksourceview3.0-3.10.3-1 * gtksourceviewmm3.0-3.2.0-2 * json-glib1.0-0.16.2-1 * libgee-0.6.8-1 * libgee0.8-0.12.1-1 * libnotify-0.7.6-1 * notification-daemon-0.7.6-1 * python-goocanvas-0.14.1-4 * python-gst0.10-0.10.22-2 * python-gtksourceview2-2.10.1-2 * python-orbit-2.24.0-12 * python-webkit-1.1.8-2 * vte-0.28.2-4 * vte2.90-0.34.9-1 * webkitgtk-2.0.4-1 These libraries and bindings provide the dependencies for the vast majority of GNOME applications. * glade2-2.12.2-2 * glade3-3.8.4-1 * glade-3.16.1-1 Glade is a RAD tool to enable quick & easy development of user interfaces for the GTK+ toolkit and the GNOME desktop environment. The user interfaces designed in Glade are stored in XML format, enabling easy integration with external tools. These versions support the old GNOME 2.x GladeXML, GTK+ 2.10+ GtkBuilder, and GTK+ 3.x GtkBuilder formats, respectively. Yaakov -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@cygwin.com Fri Aug 29 16:06:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Fri, 29 Aug 2014 16:06:00 -0000 Subject: [ANNOUNCEMENT] New: Ruby-GNOME2 bindings 2.2.0 Message-ID: The following packages have been added to the Cygwin distribution: * ruby-atk-2.2.0-1 * ruby-cairo-1.12.9-1 * ruby-cairo-gobject-2.2.0-1 * ruby-gdk3-2.2.0-1 * ruby-gdk_pixbuf2-2.2.0-1 * ruby-gettext-3.1.4-1 * ruby-gio2-2.2.0-1 * ruby-glib2-2.2.0-1 * ruby-gobject-introspection-2.2.0-1 * ruby-goocanvas1-1.2.6-2 * ruby-goocanvas2-2.2.0-1 * ruby-gstreamer0.10-1.2.6-2 * ruby-gstreamer1.0-2.2.0-1 * ruby-gtk2-2.2.0-1 * ruby-gtk3-2.2.0-1 * ruby-gtksourceview2-2.2.0-1 * ruby-gtksourceview3-2.2.0-1 * ruby-locale-2.1.0-1 * ruby-pkg-config-1.1.5-1 * ruby-pango-2.2.0-1 * ruby-poppler-2.2.0-1 * ruby-rsvg2-2.2.0-1 * ruby-text-1.3.0-1 * ruby-vte-2.2.0-1 * ruby-vte3-2.2.0-1 Ruby-GNOME2 is a set of Ruby language bindings for the GNOME 2.x and 3.x development environment. These allow you to write full-fledged GTK+ and GNOME applications in the Ruby programming language. These releases have been built for Ruby 2.0.0. Per the new rubygem packaging scheme, each gem also comes with a separate -doc package with the generated documentation, which can be either viewed in a web browser (served with 'gem server') or from the command-line (with 'ri'). Yaakov -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/