Bug#706522: Fwd: Bug#706522: ITP: pcs - Pacemaker/Corosync configuration system
On Fri, May 17, 2013 at 09:21:09AM +0200, Martin Gerhard Loschwitz wrote: > Filip, > Am 17.05.2013 um 09:15 schrieb Filip Chabik : > in fact, I had already uploaded packages to experimental (I just got a REJECT > on > them yesterday for some minor things though). This is awesome news (that you already did it, not that it was rejected). I have fingers crossed for this to succeed next time you try. > Have you included pcsd? That looked highly broken the last time I looked at > it. As far as I saw (I removed packages and my built once you told me, that you already done it), pcsd was included in the packages -- thing is, I had no place to test it out :( > I have actually packaged the ruby gems required for pcsd already. It's just > that > pcsd looks like something that will blow up every second, so I did not > include it > in the package I originally uploaded to experimental. Is it the approach suggest for package maintainers? I'm asking cause I wonder whether there's no conflict in installing gems via gem command and APT? Filip -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#286128: libgtkspell-dev: Please package libgtkspell 3 (from cvs) in experimental
I attached patch itself to ease checking (: Regards, -- Hadret | Blog: blog.fchabik.com Twitter: @hadret | Identi.ca: hadret (D)PPA: hadret.rootnode.net === modified file 'Makefile.am' --- old/Makefile.am 2010-01-08 22:13:05 + +++ new/Makefile.am 2011-07-23 21:39:04 + @@ -1,8 +1,14 @@ SUBDIRS=gtkspell examples docs po pkgconfigdir=$(libdir)/pkgconfig + +if USE_GTK3 +pkgconfig_DATA=gtkspell3-2.0.pc +DISTCLEANFILES=gtkspell3-2.0.pc +else pkgconfig_DATA=gtkspell-2.0.pc DISTCLEANFILES=gtkspell-2.0.pc +endif dist-hook: $(MAKE) -C "$(srcdir)/po" "$(GETTEXT_PACKAGE).pot" === modified file 'configure.ac' --- old/configure.ac 2010-01-08 22:13:05 + +++ new/configure.ac 2011-07-24 00:34:17 + @@ -15,11 +15,32 @@ SPELLER_LIB=-lenchant AC_SUBST(SPELLER_LIB) -GTKSPELL_PACKAGES=gtk+-2.0 + +AC_ARG_WITH([gtk], + [AS_HELP_STRING([--with-gtk], +[Which version of gtk to use @<:@default=2@:>@])], + [], + [with_gtk=3]) +AS_IF([test "x$with_gtk" = x3], +[PKG_CHECK_MODULES(GTKSPELL, gtk+-3.0 + enchant >= 0.4.0) + GTKSPELL_PACKAGES=gtk+-3.0 + AC_SUBST(GTKSPELL_CFLAGS) + AC_SUBST(GTKSPELL_LIBS) + AC_DEFINE(HAVE_GTK3, 1, [whether gtk3 is available]) +], + [test "x$with_gtk" = x2], +[PKG_CHECK_MODULES(GTKSPELL, gtk+-2.0 + enchant >= 0.4.0) + GTKSPELL_PACKAGES=gtk+-2.0 + AC_SUBST(GTKSPELL_CFLAGS) + AC_SUBST(GTKSPELL_LIBS) +], + [AC_MSG_FAILURE([Value for --with-gtk was neither 2 nor 3])] +) +AM_CONDITIONAL(USE_GTK3, [test "x$with_gtk" = x3]) + AC_SUBST(GTKSPELL_PACKAGES) -PKG_CHECK_MODULES(GTKSPELL, $GTKSPELL_PACKAGES enchant >= 0.4.0 ) -AC_SUBST(GTKSPELL_CFLAGS) -AC_SUBST(GTKSPELL_LIBS) # check Pango version so we can use PANGO_UNDERLINE_ERROR when available: PKG_CHECK_MODULES(PANGO, [pango >= 1.3.5], @@ -90,7 +111,7 @@ dnl AM_MAINTAINER_MODE -AC_CONFIG_FILES(Makefile gtkspell/Makefile examples/Makefile gtkspell-2.0.pc gtkspell.spec docs/Makefile po/Makefile.in) +AC_CONFIG_FILES(Makefile gtkspell/Makefile examples/Makefile gtkspell-2.0.pc gtkspell3-2.0.pc gtkspell.spec docs/Makefile po/Makefile.in) GTK_DOC_CHECK(1.0) === modified file 'examples/Makefile.am' --- old/examples/Makefile.am 2005-09-06 13:00:45 + +++ new/examples/Makefile.am 2011-07-23 21:39:04 + @@ -1,6 +1,10 @@ noinst_PROGRAMS = simple advanced AM_CFLAGS = @GTKSPELL_CFLAGS@ -I$(top_builddir) INCLUDES = -I$(top_srcdir) +if USE_GTK3 +LDADD = @GTKSPELL_LIBS@ $(top_builddir)/gtkspell/libgtkspell3.la +else LDADD = @GTKSPELL_LIBS@ $(top_builddir)/gtkspell/libgtkspell.la +endif simple_SOURCES = simple.c advanced_SOURCES = advanced.c === modified file 'gtkspell/Makefile.am' --- old/gtkspell/Makefile.am 2005-09-06 13:00:45 + +++ new/gtkspell/Makefile.am 2011-07-23 21:39:04 + @@ -1,6 +1,19 @@ -lib_LTLIBRARIES=libgtkspell.la +if USE_GTK3 +VER=3 +lib_LTLIBRARIES = libgtkspell3.la +else +VER= +lib_LTLIBRARIES = libgtkspell.la +endif + AM_CFLAGS=@GTKSPELL_CFLAGS@ -DG_LOG_DOMAIN=\"gtkspell\" -DLOCALEDIR=\""$(datadir)/locale"\" libgtkspell_la_LIBADD=@GTKSPELL_LIBS@ @SPELLER_LIB@ libgtkspell_la_includedir=$(includedir)/gtkspell-2.0/gtkspell libgtkspell_la_include_HEADERS=gtkspell.h libgtkspell_la_SOURCES=gtkspell.c deprecated.c gtkspell.h + +libgtkspell3_la_LIBADD=$(libgtkspell_la_LIBADD) +libgtkspell3_la_includedir=$(libgtkspell_la_includedir) +libgtkspell3_la_include_HEADERS=$(libgtkspell_la_include_HEADERS) +libgtkspell3_la_SOURCES=$(libgtkspell_la_SOURCES) + === modified file 'gtkspell/gtkspell.c' --- old/gtkspell/gtkspell.c 2010-01-08 22:13:05 + +++ new/gtkspell/gtkspell.c 2011-07-23 21:39:04 + @@ -310,7 +310,8 @@ get_word_extents_from_mark(spell->buffer, &start, &end, spell->mark_click); oldword = gtk_text_buffer_get_text(spell->buffer, &start, &end, FALSE); - newword = gtk_label_get_text(GTK_LABEL(GTK_BIN(menuitem)->child)); + newword = +gtk_label_get_text(GTK_LABEL(gtk_bin_get_child(GTK_BIN(menuitem; if (debug) { g_print("old word: '%s'\n", oldword); === added file 'gtkspell3-2.0.pc.in' --- old/gtkspell3-2.0.pc.in 1970-01-01 00:00:00 + +++ new/gtkspell3-2.0.pc.in 2011-07-23 21:39:04 + @@ -0,0 +1,13 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: GTKSpell +Description: GTK spelling library +Version: @VERSION@ +Requires: @GTKSPELL_PACKAGES@ +Libs: -L${libdir} -lgtkspell3 +Libs.private: @SPELLER_LIB@ +Cflags: -I${includedir}/gtkspell-2.0 +
Bug#286128: libgtkspell-dev: Please package libgtkspell 3 (from cvs) in experimental
Hello guys! As far as I can see, Ubuntu made package with patch for libgtkspell for Gtk+ 3 version. I attached compressed debian folder with this patch ported from Ubuntu. @Ari: would be so kind and look whether this patch can be moved to official Debian repo? Regards, -- Hadret | Blog: blog.fchabik.com Twitter: @hadret | Identi.ca: hadret (D)PPA: hadret.rootnode.net gtkspell_2.0.16-1.1.debian.tar.xz Description: application/xz
Bug#632485: libgl1-nvidia-glx: Segmentation fault in libnvidia-glcore.so.275.09.07
Hi there! Another one here with same issue. I was trying to make it work number of times and on different approaches, no luck so far. I was getting "segmentation fault" when installed proprietary drivers debian-way and from NVIDIAs default installer, on 275 and 280 versions. The worst part is nouveau isn't working for me either and now I have to use vesa, which doesn't allow me to use high resolution (not mentioning other lacks). Oh, and BTW, I was trying installation on latest 2.6.39 kernel as well as on earlier one and on 3.0~rc5 too, so it seems not kernel related. It doesn't look like that drivers are guilty too, I guess there's something wrong with Xserver itself, maybe with communication with drivers, but I have no experience and enough knowledge to figure it out. Regards, -- Hadret | Blog: blog.fchabik.com Twitter: @hadret | Identi.ca: hadret (D)PPA: hadret.rootnode.net -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#599658: Status of gtk2-engines-equinox packaging?
On Thu, May 5, 2011 at 03:51, Maia Kozheva wrote: > Greetings, Hadret! > What's the status of your Debian ITP for gtk2-engines-equinox? Are you going > to > upload a package? > I maintain that package in Ubuntu, and I wouldn't mind preparing an upload for > Debian too. If you are willing to do so, feel free to take over the ITP (: Regards, -- Hadret | Blog: blog.fchabik.com Twitter: @hadret | Identi.ca: hadret (D)PPA: hadret.rootnode.net -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#560806: ITP: launchy -- Launchy: The Open Source Keystroke
Hello! Does anyone is actually interested in packaging this one? Regards, -- Hadret | Blog: blog.fchabik.com Twitter: @hadret | Identi.ca: hadret (D)PPA: hadret.rootnode.net -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#599691: equinox-themes-extra -- extra themes for gtk2 equinox engine
Package: wnpp Severity: wishlist Package name: equinox-themes-extra Version: 1.30.2 Upstream Author: Matthieu James URL: http://gnome-look.org/content/show.php?content=121881 License: GPL-2+ Programming Lang: Description: extra themes for gtk2 equinox engine Equinox is a heavily modified version of the beautiful gtk2 aurora engine. This package includes themes for the equinox engine and themes for metacity window manager. . Themes: - Equinox Ambient - Equinox Radient - Equinox Variance - Equinox Variance Glass -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#599689: ITP: equinox-themes -- themes for gtk2 equinox engine
Package: wnpp Severity: wishlist Package name: equinox-themes Version: 1.30.2 Upstream Author: Matthieu James URL: http://gnome-look.org/content/show.php?content=121881 License: GPL-2+ Programming Lang: Description: themes for gtk2 equinox engine Equinox is a heavily modified version of the beautiful gtk2 aurora engine. This package includes themes for the equinox engine and themes for metacity window manager. Themes: - Equinox - Equinox Classic - Equinox Classic Glass - Equinox Evolution - Equinox Evolution Light - Equinox Evolution Rounded - Equinox Evolution Squared - Equinox Glass - Equinox Light - Equinox Light Glass - Equinox Wide -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#599658: ITP: gtk2-engines-equinox -- aurora-based gtk+-2.0 theme engine
Package: gtk2-engines-equinox Version: 1.30.2 Upstream Author: Matthieu James URL: http://gnome-look.org/content/show.php?content=121881 License: GPL-2+ Programming Lang: C Description: aurora-based gtk+-2.0 theme engine Equinox is a heavily modified version of the beautiful gtk2 aurora engine. It features smooth gradients or glassy effects, subtle shadows, rounded widgets and provides lots of parameters. . This package includes the Equinox engine. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#553698: gwibber 2.x, testing feedback
> - I wonder, can't this be automated for the user? I believe quite some > people unfamiliar with (desktop)couch will it that nail. Is that a bug > / missing configuration generality in couchdb by any means? I was rather wondering if there's really need to use couchdb? You can read here [1], that there's option to use SQLite backend, I guess it would better solution. Personally I disliked couchdb for all of these problems I had when I as trying to build gwibber package earlier... Anybody else haven't got "View" in menu and tray icon? [1] - http://gwibber.com/blog/2010/04/introducing-gwibber-2-30/ -- Hadret | 433E270B | IRC: hadret Blog: hadret.com | Twitter: @hadret -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573040: ITP: pino - a twitter client
On Wed, May 12, 2010 at 07:47, Cristian Greco wrote: > Hi Julien and Hadret, > > I'm interested in packaging pino-twitter for Debian, would you accept my > co-maintenance work? > > I've already contacted troorl (upstream author), providing him with a (huge) > patch which introduces an alternative build system based on cmake. The changes > will be probably included in a few and released with the new version. > > I took a look at Julien's packaging work and it seems quite good. It could be > a starting point for introducing pino 0.2.9 in Debian. > > Thanks, > -- > Cristian Greco > GPG key ID: 0xCF4D32E4 (old: 0x0C095825) Hello! (: Well, it's fine with me. Julien, if you please, take over the ITP -- there's no need to have three of us to work on one application. Your package is better and Cristian wrote wonderful patch, which will make it easier for Pino to come to official Debian repository. Regards, -- Hadret | 433E270B | IRC: hadret Blog: hadret.com | Twitter: @hadret -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573040: ITP: pino - a twitter client
On Sat, Mar 20, 2010 at 07:40, Julien Valroff wrote: > Hi, Hello (: > Le mardi 09 mars 2010 à 20:16 +0100, Julien Valroff a écrit : > Do you have any news about this? Troorl won't change from waf to any other system, which is bad information. My mentor, Kartik Mistry, wrote to me, that including waf in upstream is fine, but: "Fine as hack. What if there is security issue in waf. Pino upstream need to do extra work to fix it rather than focusing on Pino. We therefore also don't encourage to use embed other sources. (You can check what recently happened with expat security problems)." > Are you still interested in packaging pino? I'd love to co-maintain it, but still have to learn many things, so, I guess, I need some time. If you are ready, and I believe you are, please re-sign this ITP to you (: Regards, Filip Chabik -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573040: ITP: pino - a twitter client
On Tue, Mar 9, 2010 at 18:43, Julien Valroff wrote: > Actually, my lack of knowledge in Vala *will* be a problem sooner or > later. Hence, if you know Vala, I would be happy and co-maintain this > package with you. Unfortunately I don't know Vala too ): > What about working in the collab-maint git repo (if you have an Alioth > account, just ask to be part of the group)? I never did collab-maint and I haven't got Alioth account. I'm very new to all of this stuff, but it sounds great (: > We have some minor differences in our packages: > * Why build-dep on apt-utils? > * I have switched to 3.0 (quilt) package format > * Why not use machine readable copyright file? I guess apt-utils was relic of Troorls package on which my package was based on. My mentor haven't look on my package yet because of waf is going to be removed from Debian and it's a bit problematic, cause Pino depends on it (theoretically when it provides waf in upstream there shouldn't be any problem, but it's only theoretically). I already wrote an e-mail to Troorl and if my understanding is good, there shouldn't be any problem with packaging Pino as long as upstream is going to provide waf (: > I'll push my changes in the next hour or so, you can also check my > packages. I certainly will! (: Regards, Hadret -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573040: ITP: pino - a twitter client
On Tue, Mar 9, 2010 at 18:09, Julien Valroff wrote: > I wanted to fill this ITP but you were quicker ;) > I have already worked on packaging Pino for Debian, you can find both > binaries and sources at: > http://packages.kirya.net/debian/pool/main/p/pino/ > I have no knowledge at all in Vala, hence might not be the best > (co-)maintainer for Pino. However, I would be glad to help you if > needed. I can't see any problem, really. If you want to, you can take over ITP and package Pino for Debian yourself. How about that? (: If answer for this is "yes", than you can always count on me with packaging it; If answer is "no, not really, dude", than I'll be more than happy to co-maintain this package with you (: > I am currently working on updating the package to the new 2.1 release. I already did this update, check it out at mentors.d.n: http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=pino With best wishes, Hadret -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573040: ITP: pino - a twitter client
Package: pino Version: 0.2.1-1 Upstream Author: troorl URL: http://pino-app.appspot.com/ License: LGPL-3 Section: gnome Programming Lang: Vala Description: Pino is Twitter client for Linux desktop. It's simple and fast. Pino is written in Vala language and compiled to the native binary code.