Bug#603529: RFP: scala2.8 -- The Scala programming language (version 2.8)
Package: wnpp Severity: wishlist * Package name: scala2.8 Version : 2.8.1 Upstream Author : Martin Odersky * URL : http://www.scala-lang.org/ * License : BSD-like Programming Lang: Java/Scala Description : The Scala programming language (version 2.8) Scala is a Java-compatible programming language with many modern language features. It is Java-compatible in that Scala and Java classes can directly reference each other and subclass each other with no glue code needed. It includes modern language features such as closures, pattern-matching, parametric types, and virtual type members. . This package includes the various tools used to develop code written in Scala. It includes a compiler (scalac), an interpreter and script runner (scala), the offline compiler (fsc), and source-scanning documentation generator (scaladoc). -- END DESCRIPTION -- This is version 2.8 of the Scala programming language. It is different from Scala 2.7.7 currently in the Debian archive (packaged simply as "scala"). The extent of the differences is roughly similar to the differences between Ruby 1.8 vs Ruby 1.9, or the different versions of python currently in the archive. Therefore, scala 2.8 should be packaged separately from Scala 2.7 so that both can coexist. Scala 2.8 is definitely binary-incompatible with Scala 2.7.7 (in fact, all of the Scala 2.7.x releases were mutually binary-incompatible), and breaks backward-compatiblity at the source level as well (though many programs will need few or no changes). Scala 2.8.x is intended to remain binary-compatible and source-compatible throughout the lifetime of the 2.8.x series. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20101115002412.29081.41042.report...@localhost.localdomain
Bug#556010: RFH: link-grammar -- Carnegie Mellon University's link grammar parser for English
Package: wnpp Severity: normal I either need help with this package to have a DD who can sponsor uploads on a regular basis or I'll be forced to put link-grammar up for adoption, becuase lacking a sponsor I haven't gotten a new version into the archive in ages. (Despite the fact that I've been keeping it fairly up to date on git.debian.org.) The package is maintained in git at git://git.debian.org/collab-maint/link-grammar.git (browsable at http://git.debian.org/?p=collab-maint/link-grammar.git) The package description is: In Selator, D. and Temperly, D. "Parsing English with a Link Grammar" (1991), the authors defined a new formal grammatical system called a "link grammar". A sequence of words is in the language of a link grammar if there is a way to draw "links" between words in such a way that the local requirements of each word are satisfied, the links do not cross, and the words form a connected graph. The authors encoded English grammar into such a system, and wrote this program to parse English using this grammar. . link-grammar can be used for linguistic parsing for information retrieval or extraction from natural language documents. It can also be used as a grammar checker. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#434794: ITP: assogiate -- an editor for the GNOME file types database
On Wed, Aug 06, 2008 at 03:43:14PM +0200, Vincent Legout wrote: > Hi, > > If Ken doesn't want to work on this bug anymore, I would like to. > I have already packaged it for Ubuntu, I would like to do the same for > Debian. By all means. Here's a patch that adds support for editing application associations (the real reason why I want to use assogiate in the first place.) Take a look at the packaging I've done so far at http://lingcog.iit.edu/~bloom/assogiate/, maybe you can use other stuff like the .desktop file that puts assogiate in the gnome control center. --Ken -- Ken (Chanoch) Bloom. PhD candidate. Linguistic Cognition Laboratory. Department of Computer Science. Illinois Institute of Technology. http://www.iit.edu/~kbloom1/ diff -uNr assogiate-0.2.1.orig/configure.ac assogiate-0.2.1.ken/configure.ac --- assogiate-0.2.1.orig/configure.ac 2007-06-12 14:01:53.0 -0500 +++ assogiate-0.2.1.ken/configure.ac 2007-06-24 15:31:54.0 -0500 @@ -29,6 +29,7 @@ gtkmm-2.4 >= 2.6.0 libxml++-2.6 gnome-vfsmm-2.6 + eel-2.0 ]) PKG_CHECK_EXISTS([libxml++-2.6 >= 2.14.0], diff -uNr assogiate-0.2.1.orig/src/main.cc assogiate-0.2.1.ken/src/main.cc --- assogiate-0.2.1.orig/src/main.cc 2007-06-03 13:30:26.0 -0500 +++ assogiate-0.2.1.ken/src/main.cc 2007-06-24 11:03:29.0 -0500 @@ -77,7 +77,11 @@ #endif Gtk::Main kit(argc, argv, context); - std::locale::global(std::locale(std::setlocale(LC_ALL, NULL))); + try{ + std::locale::global(std::locale(std::setlocale(LC_ALL, NULL))); + }catch(std::runtime_error const & e){ + std::locale::global(std::locale::classic()); + } gtk_window_set_default_icon_name("assogiate"); // unwrapped Gtk::AboutDialog::set_email_hook(sigc::ptr_fun(&activate_email)); Gtk::AboutDialog::set_url_hook(sigc::ptr_fun(&activate_url)); diff -uNr assogiate-0.2.1.orig/src/type-dialog.cc assogiate-0.2.1.ken/src/type-dialog.cc --- assogiate-0.2.1.orig/src/type-dialog.cc 2007-06-11 23:19:56.0 -0500 +++ assogiate-0.2.1.ken/src/type-dialog.cc 2007-06-24 15:37:34.0 -0500 @@ -33,6 +33,9 @@ #include #include #include +extern "C"{ +#include +} /**/ namespace assoGiate { @@ -241,6 +244,10 @@ m_xml_view.signal_remove().connect(sigc::mem_fun (*this, &TypeDialog::on_xml_changed)); m_notebook.append_page(m_xml_view, _("XML elements")); + +m_mime_application_view = Glib::wrap( + eel_mime_application_chooser_new("",initial_type->get_full_name().c_str())); + m_notebook.append_page(*m_mime_application_view, _("Open With")); vbox->pack_start(m_buttons, false, false); @@ -266,6 +273,7 @@ delete m_category_widget; delete m_target_type; delete m_fixed_type; + delete m_mime_application_view; } ustring diff -uNr assogiate-0.2.1.orig/src/type-dialog.hh assogiate-0.2.1.ken/src/type-dialog.hh --- assogiate-0.2.1.orig/src/type-dialog.hh 2007-06-11 23:19:56.0 -0500 +++ assogiate-0.2.1.ken/src/type-dialog.hh 2007-06-24 11:15:06.0 -0500 @@ -120,6 +120,7 @@ RefPtr m_xml_store; EditableListView m_alias_view, m_superclass_view, m_glob_view, m_magic_view, m_xml_view; + Gtk::Widget* m_mime_application_view; }; /* class TypeDialog */ signature.asc Description: Digital signature
Bug#434794: ITP: assogiate -- an editor for the GNOME file types database
Package: wnpp Severity: wishlist Owner: Ken Bloom <[EMAIL PROTECTED]> * Package name: assogiate Version : 0.2.1 Upstream Author : Kevin Daughtridge <[EMAIL PROTECTED]> * URL : http://www.kdau.com/projects/assogiate/ * License : GPL Programming Lang: C++ Description : an editor for the GNOME file types database assoGiate is an editor of the file types database for GNOME. It allows users to modify the detection and display of file types. I have patched this version with a component from libeel to allow users to set the preferred application use to open a document. I am in need of a sponsor, packages are at http://lingcog.iit.edu/~bloom/assogiate/ (I've pbuildered them already, and I'll fix the one last lintian warning as soon as I have a bug number for this ITP.) --Ken -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.20-1-amd64 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#382568: RFP: classpath-generics -- Experimental Java 5 runtime libraries
Package: wnpp Severity: wishlist GNU classpath is a free replacement for Sun's proprietary java class libraries. classpath-generics is an experimental branch with support for all the new 1.5 language features such as generics and enumerations. ECJ, JamVM, IKVM and Cacao are known to support the generics release. Homepage: http://www.gnu.org/software/classpath/ -- Ken Bloom. PhD candidate. Linguistic Cognition Laboratory. Department of Computer Science. Illinois Institute of Technology. http://www.iit.edu/~kbloom1/ signature.asc Description: Digital signature
Bug#350231: libsocket++ license
Please try contacting the upstream and asking him whether he can change the license to something more standard like BSD, GPL, or LGPL. It seems from the project news page that they would like their licence to be interpreted to allow modification http://www.linuxhacker.at/socketxx/news --Ken Bloom -- I usually have a GPG digital signature included as an attachment. See http://www.gnupg.org/ for info about these digital signatures. signature.asc Description: Digital signature
Bug#337277: ITP: link-grammar -- Carnegie Mellon University's link grammar parser
Ken Bloom wrote: > Package: wnpp > Severity: wishlist > Owner: Ken Bloom <[EMAIL PROTECTED]> > > > * Package name: link-grammar > Version : 4.1b > Upstream Author : Daniel Sleator <[EMAIL PROTECTED]> > Davy Temperley <[EMAIL PROTECTED]> > John Lafferty <[EMAIL PROTECTED]> > * URL : http://www.link.cs.cmu.edu/link/index.html > * License : BSD > Description : Carnegie Mellon University's link grammar parser for > English > > In Selator, D. and Temperly, D. "Parsing English with a Link Grammar" > (1991), the authors defined a new formal grammatical system called a > "link grammar". A sequence of words is in the language of a link > grammar if there is a way to draw "links" between words in such a way > that the local requirements of each word are satisfied, the links do > not cross, and the words form a connected graph. The authors encoded > English grammar into such a system, and wrote this program to parse > English using this grammar. > . > This package can be used for linguistic parsing for information > retrieval or extraction from natural language documents. Abiword also > uses it as a grammar checker. > > *** end description *** > > I am not a DD, and I will need a sponsor to upload this package. > I am a graduate student in the Lingusitic Cognition Laboratory in the > Computer Science Department at Illinois Institute of Technology, and > as such this package is useful to me. If anyone who sees this is > interested in sponsoring my uploads, please email me. > > --Ken Bloom Packages for i386 and amd64 and sources are now available at http://lingcog.iit.edu/~bloom/link-grammar/ --Ken Bloom -- I usually have a GPG digital signature included as an attachment. See http://www.gnupg.org/ for info about these digital signatures. signature.asc Description: OpenPGP digital signature
Bug#337277: ITP: link-grammar -- Carnegie Mellon University's link grammar parser
Package: wnpp Severity: wishlist Owner: Ken Bloom <[EMAIL PROTECTED]> * Package name: link-grammar Version : 4.1b Upstream Author : Daniel Sleator <[EMAIL PROTECTED]> Davy Temperley <[EMAIL PROTECTED]> John Lafferty <[EMAIL PROTECTED]> * URL : http://www.link.cs.cmu.edu/link/index.html * License : BSD Description : Carnegie Mellon University's link grammar parser for English In Selator, D. and Temperly, D. "Parsing English with a Link Grammar" (1991), the authors defined a new formal grammatical system called a "link grammar". A sequence of words is in the language of a link grammar if there is a way to draw "links" between words in such a way that the local requirements of each word are satisfied, the links do not cross, and the words form a connected graph. The authors encoded English grammar into such a system, and wrote this program to parse English using this grammar. . This package can be used for linguistic parsing for information retrieval or extraction from natural language documents. Abiword also uses it as a grammar checker. *** end description *** I am not a DD, and I will need a sponsor to upload this package. I am a graduate student in the Lingusitic Cognition Laboratory in the Computer Science Department at Illinois Institute of Technology, and as such this package is useful to me. If anyone who sees this is interested in sponsoring my uploads, please email me. --Ken Bloom -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12-1-686 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]