debian/0000755000000000000000000000000011641613371007171 5ustar debian/changelog0000644000000000000000000000464711641612143011052 0ustar gems (1.1.1-2) unstable; urgency=low * Added 01-syslog_format_string.patch (Closes: #643381), thanks to Didier Raboud for reporting. * Updated Standards-Version: 3.9.2 -- Maximiliano Curia Sat, 01 Oct 2011 09:47:28 -0300 gems (1.1.1-1) unstable; urgency=low * New upstream release. * Added mode in open call, thanks to: Alfonso Cepeda Caballos (Closes: #559644) * Modified watch file. (Closes: #550796) * Changed maintainer email address. * Added new Homepage field. * Updated Standards-Version: 3.8.3 -- Maximiliano Curia Sun, 06 Dec 2009 14:54:57 -0300 gems (1.1-4) unstable; urgency=low * Fixed the Makefile so that it doesn't strip by default. (patches/nostrip.patch) (Closes: #436967) * Converted a source change to simple-patchsys. (patches/oldfix.patch) * Updated compat, Standards Version and debhelper dependencies. * Changed myself from Uploader to Maintainer. -- Maximiliano Curia Tue, 14 Aug 2007 23:19:01 -0300 gems (1.1-3) unstable; urgency=high * Fix watch file (perhaps...). * Use generic (but unofficial) buildinfo cdbs snippet. * Set urgency=high to hopefully get this into sarge in time (the changes are small but valuable). -- Jonas Smedegaard Thu, 4 Nov 2004 01:55:52 +0100 gems (1.1-2) unstable; urgency=low * First official release for Debian. * Sponsored upload (done by "adopting" the package - I hereby accept Maximiliano taking over the package again as soon as he becomes Debian developer). * Repackaged using pristine source. * Tightened debian/copyright: + Add intro with upstream name and "Debian GNU systems". + Add location of upstream source. + Copy copyright and licensing info verbatim (from common/common.h). * Corrected speling error in long description. * Dropped conflicting and replacing non-existing package gemsd. -- Jonas Smedegaard Sat, 25 Sep 2004 11:06:42 +0200 gems (1.1-1) unstable; urgency=low * New release. -- Maximiliano Curia Fri, 24 Sep 2004 20:37:19 -0300 gems (1.0.20040929-1) unstable; urgency=low * New CVS update. * Lintian cleanups. -- Maximiliano Curia Sun, 19 Sep 2004 00:59:50 -0300 gems (1.0-1) unstable; urgency=low * Initial Release. -- Diego Essaya Thu, 4 Mar 2004 19:57:33 -0300 debian/source/0000755000000000000000000000000011641613242010466 5ustar debian/source/format0000644000000000000000000000001411641613242011674 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000020711306767510010224 0ustar # watch control file for uscan version=3 http://gforge.lug.fi.uba.ar/frs/?group_id=10 \ /frs/download\.php/\d+/gems-([\d\.]*)\.tar\.gz debian/rules0000755000000000000000000000037511641612570010256 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/makefile.mk DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(DEB_DESTDIR) PREFIX=/usr MANPATH=$(DEB_DESTDIR)/usr/share/man common-install-arch:: dh_buildinfo debian/compat0000644000000000000000000000000211306763755010401 0ustar 5 debian/copyright0000644000000000000000000000234611306770447011137 0ustar This is gems, packaged for Debian GNU systems. Upstream authors: Diego Essaya and Emiliano Castagnari . Upstream source: http://gforge.lug.fi.uba.ar/projects/gemsd/ Copyright and licensing info: * Copyright (C) 2003, 2004 Diego Essaya, Emiliano Castagnari * * gems is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * gems is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA On Debian Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. The Debian packaging is (C) 2009, Maximiliano Curia and is licensed under the GPL, see above. debian/patches/0000755000000000000000000000000011641613450010616 5ustar debian/patches/series0000644000000000000000000000003011641613371012026 0ustar 01-syslog_format_string debian/patches/01-syslog_format_string0000644000000000000000000000076111641613450015241 0ustar Index: gems-1.1.1/server/source/log.c =================================================================== --- gems-1.1.1.orig/server/source/log.c 2011-10-01 10:18:05.000000000 -0300 +++ gems-1.1.1/server/source/log.c 2011-10-01 10:35:19.000000000 -0300 @@ -132,7 +132,7 @@ if (logdest == G_LOG_SYSLOG) /* use syslog */ { - syslog(mesg_log[errno].priority, string); + syslog(mesg_log[errno].priority, "%s", string); } else if (logdest != G_LOG_NOLOG) /* log to stderr or a file: */ { debian/docs0000644000000000000000000000001511306763755010052 0ustar doc/Protocol debian/control0000644000000000000000000000155211641612510010571 0ustar Source: gems Section: misc Priority: optional Maintainer: Maximiliano Curia Build-Depends: cdbs, debhelper (>= 5), dh-buildinfo Homepage: http://gforge.lug.fi.uba.ar/projects/gemsd/ Standards-Version: 3.9.2 Package: gems Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Shows a console session in several terminals The gems system is a client/server application that allows one to show a single console session in different computers or terminals in real time. It can also be used to transmit any other kind of data to more than one computer at the same time, via a network connection. . It was designed as an educational tool for teachers that have to show in a computer lab how to do certain things with the console. Using the gems system, each student can observe in his/her own terminal everything the teacher does.