Bug#788794: ITP: python-suds-jurko -- lightweight SOAP client (Jurko's fork)
Package: wnpp Severity: wishlist Owner: Thomas Goirand * Package name: python-suds-jurko Version : 0.6 Upstream Author : Jurko Gospodnetic * URL : https://bitbucket.org/jurko/suds * License : LGPL Programming Lang: Python Description : lightweight SOAP client (Jurko's fork) Based on the original 'suds' project by Jeff Ortel dot com) hosted at http://fedorahosted.org/suds. . Suds is a lightweight SOAP-based web service client for Python. Note from future maintainer: the OpenStack project decided to switch from Suds to suds-jurko, as Suds is unmaintained. So suds-jurko becomes the new thing to use now for OpenStack. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20150615065527.26013.92490.report...@buzig2.mirantis.com
Bug#395573: visit: changing back from ITP to RFP
On 13/06/2015 14:58, Francesco Poli wrote: > On Thu, 11 Jun 2015 12:13:41 +0100 Alastair McKinstry wrote: > >> Hi >> >> Sorry about the delay , the git repo is at: >> >> git://git.debian.org/git/debian-science/packages/visit.git/ > Thanks a lot, I've just cloned it. > > I see that there's very recent activity on the repository. > Does this mean that you are back to work on visit packaging?!? > That would be really really great news, and should perhaps be publicly > announced with a new RFP→ITP bug conversion... :-) > I really hope you can confirm this. Yes. I plan to get visit into Stretch, as it is a requirement for the UV-CDAT analysis package, which is one of my main goals for stretch. The main blocker for jessie was VTK6, which I think is (nearly?) resolved. Visit depends on VTK6 > Thanks for your time. > Bye. > > > P.S.: You replied to me privately: is there any special reason? I think > that the URI for the git repository should be disclosed to the public > on the RFP bug log... Could you please reply to the bug address, or, > alternatively, authorize me to forward your reply there? > Thanks! It was not meant to be private, so i've CC'd the bug address. regards Alastair -- Alastair McKinstry, , , https://diaspora.sceal.ie/u/amckinstry Misentropy: doubting that the Universe is becoming more disordered. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557e6f9f.8010...@sceal.ie
Processed: Bug#788719 marked as pending
Processing commands for cont...@bugs.debian.org: > tag 788719 pending Bug #788719 [wnpp] RFP: libmatemixer -- Mixer library for MATE Desktop Added tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 788719: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788719 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/handler.s.c.143435071119709.transcr...@bugs.debian.org
Processed: ITP: genesisplusgx -- Genesis/Mega Drive, Sega/Mega CD, Master System, Game Gear and SG-1000 emulator
Processing commands for cont...@bugs.debian.org: > retitle 787580 ITP: genesisplusgx -- Genesis/Mega Drive, Sega/Mega CD, Master > System, Game Gear and SG-1000 emulator Bug #787580 [wnpp] ITP: Genesis Plus GX -- Genesis/Mega Drive, Sega/Mega CD, Master System, Game Gear and SG-1000 emulator Changed Bug title to 'ITP: genesisplusgx -- Genesis/Mega Drive, Sega/Mega CD, Master System, Game Gear and SG-1000 emulator' from 'ITP: Genesis Plus GX -- Genesis/Mega Drive, Sega/Mega CD, Master System, Game Gear and SG-1000 emulator' > End of message, stopping processing here. Please contact me if you need assistance. -- 787580: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787580 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/handler.s.c.14343190102651.transcr...@bugs.debian.org
Bug#784317: marked as done (ITP: python-configargparse -- replacement for argparse allowing options to also be set via config files and/or environment variables)
Your message dated Sun, 14 Jun 2015 21:54:38 + with message-id <20150614215438.gb23...@master.debian.org> and subject line ITP: python-configargparse has caused the Debian Bug report #784317, regarding ITP: python-configargparse -- replacement for argparse allowing options to also be set via config files and/or environment variables to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 784317: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784317 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Sebastien Delafond * Package name: python-configargparse Version : 0.9.3 Upstream Author : Zorro * URL : https://github.com/zorro3/ConfigArgParse * License : MIT Programming Lang: Python Description : replacement for argparse allowing options to also be set via config files and/or environment variables Applications with more than a handful of user-settable options are best configured through a combination of command line args, config files, hard-coded defaults, and in some cases, environment variables. . Python’s command line parsing modules like argparse have very limited support for config files and environment variables, so this module extends argparse to add these features. . Features: . - command-line, config file, env var, and default settings can now be defined, documented, and parsed in one go using a single API (the order of precedence is: command line args > environment variables > config file values > defaults) - config files can have .ini or .yaml style syntax (eg. key=value or key: value) - user can specify a config file path using regular command line syntax (eg. -c config.txt) rather than the argparse-style @config.txt - all argparse functionality is fully supported, so this module can serve as a drop-in replacement for argparse - env vars and config file keys & syntax are automatically documented in the help message - print_values() can be used to log values and their sources (eg. command line, env var, config file, or default) for improved reproducibility - lite-weight (simple API, no dependencies on 3rd-party libraries), - extensible (the following methods can be over-ridden to change config file and environment variable parsing: parse_config_file, get_possible_config_keys, convert_setting_to_command_line_arg) - unittested using the tests that came with argparse, and using tox to test python versions >= 2.7 --- End Message --- --- Begin Message --- Already in Debian, see 787319.--- End Message ---
Bug#787517: marked as done (O: wwwoffle)
Your message dated Sun, 14 Jun 2015 21:51:41 + with message-id <20150614215141.ga23...@master.debian.org> and subject line O: wwwoffle has caused the Debian Bug report #787517, regarding O: wwwoffle to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 787517: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787517 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: normal Wwwoffle has been removed from stable some time ago already, and I should have orphaned it around that time as well. Please remove me as the maintainer; currently that only generates a steady stream of spam via wwwof...@packages.debian.org :-( If I should do this differently please inform me, but I can't really discover how this particular situation should be handled (i.e. package no longer in stable or old-stable, but still having a maintainer listed). thanks, Paul Slootman --- End Message --- --- Begin Message --- This software is no longer in Debian, so no O-bug needed.--- End Message ---
Bug#788778: ITP: golang-google-cloud -- Google Cloud Platform APIs
Package: wnpp Severity: wishlist Owner: Michael Stapelberg * Package name: golang-google-cloud Version : 0.0~git20150613-1 Upstream Author : Google Inc. * URL : http://google.golang.org/cloud * License : Apache-2.0 Programming Lang: Go Description : Google Cloud Platform APIs Package cloud contains Google Cloud Platform APIs related types and common functions. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20150614214502.E656B6059C6@x200
Bug#536075: Latest version
The latest verion is from 2011, however the request for packaging is still valid for upgrading and improving dictionaries -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557def35.4060...@users.sourceforge.net
Bug#686447: [Pkg-zfsonlinux-devel] Summary of ZFS on Linux for Debian
On Sat, Jun 13, 2015 at 1:58 AM, Turbo Fredriksson wrote: > On Jun 12, 2015, at 7:00 PM, Aron Xu wrote: > >> After the upload, we tried to talk with Debian installer team on how >> to maintain an out-of-tree kernel module for the installer but >> unfortunately it's not feasible at the moment. > > Just want to chip in with my two cent here and clarify parts of this. > > > What this actually means is that getting ZoL into Debian GNU/Linux > won't be much of a problem. We just need to wait for the bureaucracy > to do it's work. We might have to modify the packages we already have > in smaller ways to fully adhere to the Debian GNU/Linux packaging > policies etc, but we'll get it in "eventually". Hopefully "soon". > The use of "bureaucracy" is quite overly speaking, for the whole long time we've spent too much time on waiting a legal advice on how to proceed, and the current blocking factor is my time and blame should go to me. Well I promise to do the upload ASAP. > > The Debian GNU/Linux installer team feel that having out-of-tree modules > is to much of a hassle and can/will lead to maintenance problems - keeping > this in sync. > > Technically, I somewhat agree with them, but the feeling from the > pkg-zfsonlinux team is that we might be able to do that. The keyword > here is unfortunately "might"… We're all very busy people, and if we're > out of touch for a short time, their worries will be fulfilled. > I think we should (and probably have to) honor the decision of the installer team, Debian people are mostly (if not all) volunteers, and the project itself does not hire anyone. Not having ZFS available as root filesystem is something not optimal but it's still good to have it officially all in all. > > Now, ALL is not lost. I have done some experimentation with using > zfs-fuse in the installer to create and mount the filesystem(s), and > then use ZoL and the dkms process in the resulting install. > > Tests have shown that this is very possible, but it will need more > work and quite a lot of more testing to be fully stable and something > that we, as a distribution, can offer to our users. > zfs-fuse is not supported anymore, and it could be removed from Debian someday, so this could not be the best way to go. I talked with the Debian maintainer of zfs-fuse years ago and he proposed to remove it after we get this native implementation land in the archive. I will sync with him after we got this accepted and see if we want to use zfs-fuse for installer. > > We could also ignore all this and not offer ZFS as an install option, > and require users to install on some other filesystem, and then install > ZFS once the system reboots into the new install. > > This is very likely to be the first step, once ZoL have been fully > accepted into the FTP archives. > > > A third, highly theoretical solution, might be to offer downloadable > kernel modules outside the Debian GNU/Linux distribution, much like > many graphical drivers etc (adobe reader is one such I think) is > provided. > This is the quickest solution IMHO, :) Cheers, Aron -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/CAMr=8w6z6BJxKzqKudDR3SHgN=_giV3qRRsCq7m=shqz3uy...@mail.gmail.com
Bug#686447: [Pkg-zfsonlinux-devel] Summary of ZFS on Linux for Debian
On Jun 12, 2015, at 7:00 PM, Aron Xu wrote: > After the upload, we tried to talk with Debian installer team on how > to maintain an out-of-tree kernel module for the installer but > unfortunately it's not feasible at the moment. Just want to chip in with my two cent here and clarify parts of this. What this actually means is that getting ZoL into Debian GNU/Linux won't be much of a problem. We just need to wait for the bureaucracy to do it's work. We might have to modify the packages we already have in smaller ways to fully adhere to the Debian GNU/Linux packaging policies etc, but we'll get it in "eventually". Hopefully "soon". The problem is the "out-of-tree modules" part. This means, outside of the Linux kernel source tree. Because of the CDDL license, we'll NEVER going to be able to include it in the kernel (unless someone spends _a lot_ of time to do a clean-room reimplementation of ZFS in GPL). This means that getting ZoL in the installer images of Debian GNU/Linux will be almost impossible. ZoL is available in two parts - the user land (the zfs and zpool commands for example) and the kernel modules. These are usually built on the host from dkms packages (which is the ZoL source code and special rules to be able to build it safely and easy). These require a complete build environment (compiler, linker, kernel headers or the full kernel source etc etc). The installer is simply not big enough for a complete build environment, which is why we won't be able to provide ZFS as an install option. The Debian GNU/Linux installer team feel that having out-of-tree modules is to much of a hassle and can/will lead to maintenance problems - keeping this in sync. Technically, I somewhat agree with them, but the feeling from the pkg-zfsonlinux team is that we might be able to do that. The keyword here is unfortunately "might"… We're all very busy people, and if we're out of touch for a short time, their worries will be fulfilled. Now, ALL is not lost. I have done some experimentation with using zfs-fuse in the installer to create and mount the filesystem(s), and then use ZoL and the dkms process in the resulting install. Tests have shown that this is very possible, but it will need more work and quite a lot of more testing to be fully stable and something that we, as a distribution, can offer to our users. We could also ignore all this and not offer ZFS as an install option, and require users to install on some other filesystem, and then install ZFS once the system reboots into the new install. This is very likely to be the first step, once ZoL have been fully accepted into the FTP archives. A third, highly theoretical solution, might be to offer downloadable kernel modules outside the Debian GNU/Linux distribution, much like many graphical drivers etc (adobe reader is one such I think) is provided. -- Turbo Fredriksson tu...@bayour.com -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/6df1e39c-3143-4cba-ae32-56365a853...@bayour.com
Bug#686447: [Pkg-zfsonlinux-devel] Summary of ZFS on Linux for Debian
[Cutting down FTP team and DPL from CC] It was agreed that FTP team would review the package as other packages once it shows up in the NEW queue, and spl-linux was updated to 0.6.4.1 recently. After the upload, we tried to talk with Debian installer team on how to maintain an out-of-tree kernel module for the installer but unfortunately it's not feasible at the moment. Apart from the discussion, my hands are too filled by other stuff to proceed with src:zfs-linux without udeb so it's still not in the queue yet. Cheers, Aron On Fri, Jun 12, 2015 at 2:51 PM, Petter Reinholdtsen wrote: > > Hi. What is the current status for getting ZFS on Linux into Debian? > any news since the last message 2014-12-02? > > -- > Happy hacking > Petter Reinholdtsen > > ___ > Pkg-zfsonlinux-devel mailing list > pkg-zfsonlinux-de...@lists.alioth.debian.org > http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-zfsonlinux-devel -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/CAMr=8w4=_kNxpYOgO=spcml6-6jxwxbgje9-+skcp2wkka5...@mail.gmail.com
Bug#686447: [Pkg-zfsonlinux-devel] Summary of ZFS on Linux for Debian
Hi. What is the current status for getting ZFS on Linux into Debian? any news since the last message 2014-12-02? -- Happy hacking Petter Reinholdtsen -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/2flsi9xfmhw@diskless.uio.no
Bug#788765: ITP: golang-golang-x-oauth2 -- make OAuth2 authorized and authenticated HTTP requests
Package: wnpp Severity: wishlist Owner: Michael Stapelberg * Package name: golang-golang-x-oauth2 Version : 0.0~git20150527-1 Upstream Author : The oauth2 authors * URL : http://golang.org/x/oauth2 * License : BSD-3-clause Programming Lang: Go Description : make OAuth2 authorized and authenticated HTTP requests Package oauth2 provides support for making OAuth2 authorized and authenticated HTTP requests. It can additionally grant authorization with Bearer JWT. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20150614204009.D467E60EFEC@x200
Bug#649623: Other url
Url is now https://github.com/rougier/freetype-py/ and package 0.4.1 should be packaged. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557de41c.6080...@users.sourceforge.net
Bug#700425: Newer version to package
Meanwhle version 5.1 is out and that one needs to be packaged instead of 2.4.2. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557de28d.1000...@users.sourceforge.net
Bug#698767: See also
Please, see also: - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698769 - https://bugs.launchpad.net/ubuntu/+bug/1182543 - https://bugs.launchpad.net/ubuntu/+bug/1182558 -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557dde5d.2050...@users.sourceforge.net
Bug#698769: See also
Please, see also: - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698767 - https://bugs.launchpad.net/ubuntu/+bug/1182543 - https://bugs.launchpad.net/ubuntu/+bug/1182558 -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557dde37.5020...@users.sourceforge.net
Bug#771112: ITP: chemps2 -- spin-adapted DMRG for ab initio quantum chemistry
Git repository migrated to http://anonscm.debian.org/cgit/debichem/packages/chemps2.git/ in response to the questions and remarks in http://lists.alioth.debian.org/pipermail/debichem-devel/2015-June/005954.html http://lists.alioth.debian.org/pipermail/debichem-devel/2015-June/005963.html
Bug#768532: marked as done (ITA: debmirror)
Your message dated Sun, 14 Jun 2015 19:19:07 + with message-id and subject line Bug#768532: fixed in debmirror 1:2.18 has caused the Debian Bug report #768532, regarding ITA: debmirror to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 768532: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768532 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: normal Needs new maintainer (debian & upstream). -- see shy jo signature.asc Description: Digital signature --- End Message --- --- Begin Message --- Source: debmirror Source-Version: 1:2.18 We believe that the bug you reported is fixed in the latest version of debmirror, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 768...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Thaddeus H. Black (supplier of updated debmirror package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 13 Jun 2015 00:00:00 - Source: debmirror Binary: debmirror Architecture: source all Version: 1:2.18 Distribution: unstable Urgency: low Maintainer: Thaddeus H. Black Changed-By: Thaddeus H. Black Description: debmirror - Debian partial mirror script, with ftp and package pool support Closes: 375381 576577 619363 628779 768532 787760 Changes: debmirror (1:2.18) unstable; urgency=low . * New maintainer, on a trial basis. We'll see how it goes. Thanks, Joey, for four years recently filling the gap; and earlier, for giving us the software in the first place. Joerg, Goswin, your work is appreciated (see? it continues to be used). Frans, we still miss you. Closes: #768532 * Somewhat refactored the code that distinguishes between download methods. * Implemented the option --method=file, which -- besides being useful in its own right -- may also make testing and debugging easier. * In the unpacked source, implemented "make -C test", which builds a small, mock Debian archive against which one can test and debug the program. Closes: #787760 * Applied Kees Cook's patch to add a retry cycle for rsync connection failures, implementing the cycle optionally via the new, experimental --retry-rsync-packages option. Closes: #576577 * Per Joey's advice, did not apply patch 619363 regarding the --ignore-missing-release option. Closes: #619363 * Appreciated patch 628779 to work around an out-of-sync parent mirror, but did not apply it. Joey explains why in the bug log. Closes: #628779 * Noted per Goswin's advice that the Debian archive ceased to ship uncompressed Packages files about 2006. Whatever trouble debmirror might once have had with the 2006 transition is ancient history now, so if a bug remains thereto, it probably affects no one and won't be fixed. Closes: #375381 * Did not yet fix bug #652138. However, refactored the code that downloads Contents files, with the intent to make this bug easier later to fix. * In the debmirror script, as a matter of the new maintainer's preference, expanded all leading tabs as spaces. Checksums-Sha1: c05ef8ace16928a7e5c23f68fd0db34ee9f8fbcf 1497 debmirror_2.18.dsc 20206aa6cf3da3e8f29ae5cbedb6545a366c8e78 59877 debmirror_2.18.tar.gz 077072e0774258b34a24b4dedac7c57dec8992f9 51754 debmirror_2.18_all.deb Checksums-Sha256: b3b080cd20d452d80a78110e98a747fe690388a8d547c43496f32d2285d73069 1497 debmirror_2.18.dsc 63b06e3d31832bcd1f08688c716e580805def7ef5b033b8d4b12105e165c79bd 59877 debmirror_2.18.tar.gz f75f67a5fde67e42c6210419625f523bb79be5584bf349b069697a67eebe442b 51754 debmirror_2.18_all.deb Files: a3bef0160e0a63af8c5b1cc7515b4ad6 1497 net extra debmirror_2.18.dsc 94f5e28d702622b96fb96d3ac683634a 59877 net extra debmirror_2.18.tar.gz fccac66efd67346c4740f9e8979d4fa7 51754 net extra debmirror_2.18_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCAAGBQJVfdFrAAoJEHBjJkMthSK8TqMQAOobJmqHQQ9Xt4D+XqPH0ysU qUbuZyy6n1NQT+rGJ+q4JrT8uC2Q3/eFMnejhNwUHIRq9SZZQdH6J/6CXCzwkA0R 79ATCrC4CRYZt6ijb0B6TLzgFCukb2tgogrhUbx8x4vVUnVvVmr5EE/DEB/k7/N9 9jFttTRnmYB
Bug#750837: marked as done (ITP: moarvm -- virtual machine for Rakudo Perl 6 and NQP)
Your message dated Sun, 14 Jun 2015 19:00:20 + with message-id and subject line Bug#750837: fixed in moarvm 2015.03-1 has caused the Debian Bug report #750837, regarding ITP: moarvm -- virtual machine for Rakudo Perl 6 and NQP to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 750837: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750837 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Owner: Daniel Dehennin Severity: wishlist * Package name: moarvm Version : 2014.05 Upstream Author : Jonathan Worthington * URL or Web page : http://moarvm.org * License : Artistic-2.0 Description : virtual machine for Rakudo Perl 6 and NQP Short for “Metamodel On A Runtime”, MoarVM is a virtual machine built especially for Rakudo Perl 6 and the NQP Compiler Toolchain. The goal is to provides nqp and rakudo with this second backend and let the user choose which one she prefers using alternatives. I manage to build the moarvm binary and its libmoar packages in AMD64 and i386 schroots. I manually build the NQP 2014.05 in a schroot using my moarvm deb and the nqp test suite pass: All tests successful. Files=90, Tests=3260, 19 wallclock secs ( 0.46 usr 0.07 sys + 18.08 cusr 1.20 csys = 19.81 CPU) Result: PASS You can find the first draft of packaging on my git repository[1]. Regards. Footnotes: [1] http://git.baby-gnu.net/gitweb/?p=moarvm.git;a=shortlog;h=refs/heads/feature/first-packaging-try -- Daniel Dehennin Récupérer ma clef GPG: gpg --recv-keys 0xCC1E9E5B7A6FE2DF Fingerprint: 3E69 014E 5C23 50E8 9ED6 2AAD CC1E 9E5B 7A6F E2DF signature.asc Description: PGP signature --- End Message --- --- Begin Message --- Source: moarvm Source-Version: 2015.03-1 We believe that the bug you reported is fixed in the latest version of moarvm, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 750...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Daniel Dehennin (supplier of updated moarvm package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sat, 14 Mar 2015 21:50:28 +0100 Source: moarvm Binary: moarvm moarvm-dbg Architecture: source amd64 Version: 2015.03-1 Distribution: unstable Urgency: medium Maintainer: Daniel Dehennin Changed-By: Daniel Dehennin Description: moarvm - virtual machine for Rakudo Perl 6 and NQP moarvm-dbg - virtual machine for Rakudo Perl 6 and NQP - debug symbols Closes: 750837 Changes: moarvm (2015.03-1) unstable; urgency=medium . * Initial release (Closes: #750837) Checksums-Sha1: 6affe9a1c15e6e3693319f35890c4c4d6793f50d 1918 moarvm_2015.03-1.dsc 3ecfca4adcd0765b3c6a8ea1ce507b1aa724afa4 3071511 moarvm_2015.03.orig.tar.gz 6ffd27114c99dd187ef6fd61372f8b2227933fd9 8128 moarvm_2015.03-1.debian.tar.xz 660990d4b142100fe46990c12203a86a5abc7ec8 634466 moarvm_2015.03-1_amd64.deb e9c703961a597b8f2e77c1696241ca3011f96528 2418176 moarvm-dbg_2015.03-1_amd64.deb Checksums-Sha256: 4531ebe79e63203909f3db29d0cce390fa15525d01640041360b71e223d68d28 1918 moarvm_2015.03-1.dsc fc4bfae9a004c9f266c53881ae375955daeb84936b9055ae486194e06caec4a0 3071511 moarvm_2015.03.orig.tar.gz 6b695a3a24f8598be55a63e3332431fee5703f392b33223aa0e36493f9942b47 8128 moarvm_2015.03-1.debian.tar.xz fdc75e82f6fc790fe9bc65811afdcfba6fe65d179309f0d61dfeff821469a592 634466 moarvm_2015.03-1_amd64.deb 16b69c46d64689e85be782ca3fb332f9a65f709c07790ba01a747e80e17e8544 2418176 moarvm-dbg_2015.03-1_amd64.deb Files: 059c8aca6c7bb674c08199198a5d8ec8 1918 interpreters optional moarvm_2015.03-1.dsc 95e50dee9eeddab544d1ef4f21f26ac2 3071511 interpreters optional moarvm_2015.03.orig.tar.gz 4948c98386f1d395f2c266f887fdd40f 8128 interpreters optional moarvm_2015.03-1.debian.tar.xz 320d2889e79011d642aafa5f30d02bb7 634466 interpreters optional moarvm_2015.03-1_amd64.deb 753086b493e5e1a503eb142586e14988 2418176 debug extra moarvm-dbg_2015.03-1_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBAgAGBQJVHSgsAAoJEMMfT9lJqytsF70QAIM+W76w03X46GXBYDdmcjy8 sAoJdZ9UY/qntkVNJVOMp39pvmbKJ37jjig0KY02qrj88eioDroFbX6HkVvRmj3R R7HuwqJzWZm7Y3U2Lxr+jntedolG
Processed: Re: Bug#576998: marked as done (RFP: etherpad-lite -- web based collaborative real-time editor)
Processing commands for cont...@bugs.debian.org: > reopen 771668 Bug #771668 {Done: Andrei POPESCU } [wnpp] RFP: etherpad-lite -- web based collaborative real-time editor Bug #576998 {Done: Andrei POPESCU } [wnpp] RFP: etherpad-lite -- web based collaborative real-time editor Bug reopened Ignoring request to alter fixed versions of bug #771668 to the same values previously set Ignoring request to alter fixed versions of bug #576998 to the same values previously set > thanks Stopping processing here. Please contact me if you need assistance. -- 576998: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576998 771668: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771668 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/handler.s.c.14343056122390.transcr...@bugs.debian.org
Bug#771668: marked as done (RFP: etherpad-lite -- web based collaborative real-time editor)
Your message dated Sun, 14 Jun 2015 20:59:38 +0300 with message-id <20150614175938.GA1432@jessie64.nuvreauspam> and subject line Re: Bug#771668: RFP: etherpad -- edit documents collaboratively in real-time in your browser has caused the Debian Bug report #771668, regarding RFP: etherpad-lite -- web based collaborative real-time editor to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 771668: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771668 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: etherpad Severity: RFP See also and link to https://bugs.launchpad.net/ubuntu/+bug/1397373 description: Etherpad allows you to edit documents collaboratively in real-time, much like a live multi-player editor that runs in your browser. Write articles, press releases, to-do lists, etc. together with your friends, fellow students or colleagues, all working on the same document at the same time. url: http://etherpad.org license: Apache License (AL) 2.0 (Please let me know if I am using the correct format for RFP because my previous requests were added additional control tags.) --- End Message --- --- Begin Message --- On Du, 14 iun 15, 18:35:49, Pander wrote: > On 12/01/2014 01:27 PM, Andrei POPESCU wrote: > > Control: reassign -1 wnpp > > Control: severity -1 wishlist > > > > On Lu, 01 dec 14, 13:05:32, Pander wrote: > >> Package: etherpad > > > > Is this the same as > > > > #576998 ITP: etherpad-lite -- web based collaborative real-time editor > > > > ? > > Yes, sorry. Bug#771668 can be closed as a duplicate. Done, but don't hesitate to do that yourself if needed. Kind regards, Andrei -- If you can't explain it simply, you don't understand it well enough. (Albert Einstein) http://nuvreauspam.ro/gpg-transition.txt signature.asc Description: Digital signature --- End Message ---
Bug#576998: marked as done (RFP: etherpad-lite -- web based collaborative real-time editor)
Your message dated Sun, 14 Jun 2015 20:59:38 +0300 with message-id <20150614175938.GA1432@jessie64.nuvreauspam> and subject line Re: Bug#771668: RFP: etherpad -- edit documents collaboratively in real-time in your browser has caused the Debian Bug report #771668, regarding RFP: etherpad-lite -- web based collaborative real-time editor to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 771668: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771668 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Per Andersson * Package name: etherpad Version : 1.1.3 Upstream Author : Google Inc, Pita, Peter Martischka, RedHog, Egil Möller * URL : http://etherpad.org/ * License : Apache Software License 2.0 Programming Lang: Scala, JavaScript Description : web based collaborative real-time editor Etherpad is a web based collaborative real-time editor which allows up to 16 users to edit a text document simultaneously. Any changes are instantly reflected on all users screens. --- End Message --- --- Begin Message --- On Du, 14 iun 15, 18:35:49, Pander wrote: > On 12/01/2014 01:27 PM, Andrei POPESCU wrote: > > Control: reassign -1 wnpp > > Control: severity -1 wishlist > > > > On Lu, 01 dec 14, 13:05:32, Pander wrote: > >> Package: etherpad > > > > Is this the same as > > > > #576998 ITP: etherpad-lite -- web based collaborative real-time editor > > > > ? > > Yes, sorry. Bug#771668 can be closed as a duplicate. Done, but don't hesitate to do that yourself if needed. Kind regards, Andrei -- If you can't explain it simply, you don't understand it well enough. (Albert Einstein) http://nuvreauspam.ro/gpg-transition.txt signature.asc Description: Digital signature --- End Message ---
Bug#780155: ITP: baculum -- Baculum WebGUI tool for Bacula Community program
Hello, I think that I fixed most of warnings from Lintian output on Baculum. During build the source package I am receiving only this one: W: baculum source: package-needs-versioned-debhelper-build-depends 9 During build binary package I have seen 12 warnings on which I do not have influence because they come from PHP framework files. I do not know what more could I do. Full Baculum sources including debian/ meta files are in Git repository here: http://www.bacula.org/git/cgit.cgi/bacula/tree/gui/baculum?h=Branch-7.0 Best regards. Marcin Haba On 16.03.2015 20:02, Marcin Haba wrote: > Hello, > > I am working on Debian meta files for Baculum. As I said, I let know > about current progress. > > Today I built new packages from git snapshot. My current changes are here: > > https://launchpad.net/~ganiuszka/+archive/ubuntu/baculum/+packages > > I am moving forward, but I guess that there is still something to do. > > Please let me know if are needed some additional information about Baculum. > > Best regards. > Marcin Haba > > > On 13.03.2015 04:10, Marcin Haba wrote: >> Hello, >> >> I am working on adjusting Baculum files to Debian requirements. >> >> I am preparing project for Debian Jessie. Here you can see current state >> of sources: >> >> https://launchpad.net/~ganiuszka/+archive/ubuntu/baculum/+files/baculum_7.0%2Bgit20150208ppa1~jessie1.tar.xz >> >> On Jessie environment I have following warnings from Lintian (with my >> comments): >> >> W: baculum source: package-needs-versioned-debhelper-build-depends 9 >> >> I need to read more about this dependency. >> >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/3rdParty/FirePHPCore/LICENSE >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/3rdParty/Markdown/License.text >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/3rdParty/Parsedown/LICENSE.txt >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/3rdParty/ReCaptcha/LICENSE >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/3rdParty/SafeHtml/license.txt >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/3rdParty/TinyMCE/license.txt >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/I18N/core/data/license.txt >> >> All files from directory /framework/ are PRADO Framework files. I would >> avoid a lot of framework modifications if they are not really needed. In >> reasonable cases I am able to change something in framework and add >> patch(es). I this case they are licenses files, trivial issue, I think. >> >> As I wrote previous, I have never added new packages to distribution. I >> rely on your opinions and advises. >> >> W: baculum: embedded-javascript-library >> usr/share/baculum/htdocs/framework/Web/Javascripts/source/prototype-1.7/prototype.js >> please use libjs-prototype >> >> PRADO Framework contains integrated Prototype.js library. It could be a >> bit painful change, because of nested integration Prototype.js with >> framework, but I am able to change it. >> >> W: baculum: embedded-javascript-library >> usr/share/baculum/htdocs/framework/Web/Javascripts/source/scriptaculous-1.9.0/scriptaculous.js >> please use libjs-scriptaculous >> >> The same thing like with Prototype.js, Scriptaculous.js is internal tool >> from framework. Possible to change. >> >> W: baculum: extra-license-file >> usr/share/baculum/htdocs/framework/Web/Javascripts/source/tinymce-405/license.txt >> >> Next license file. TinyMCE Editor from framework is not used at all by >> Baculum. All TinyMCE implementation as module to framework could be removed. >> >> W: baculum: embedded-javascript-library >> usr/share/baculum/htdocs/framework/Web/Javascripts/source/tinymce-405/plugins/compat3x/tiny_mce_popup.js >> please use tinymce2? >> >> To remove as above. >> >> W: baculum: duplicate-font-file >> usr/share/baculum/htdocs/framework/Web/UI/WebControls/assets/verase.ttf >> also in ttf-bitstream-vera >> >> Next framework element - TrueType font. >> = >> >> That are all warnings that Lintian shown. >> >> From other things, I moved location of Baculum scripts from /var/www to >> /usr/share/baculum/htdocs/, because Lintian indicated me that it is not >> good choice. >> >> BTW: I noticed that Lintian from Jessie is more restrictive than that >> from Ubuntu. >> >> I will back when I have something new. >> >> Best regards. >> Marcin Haba >> -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557dbe7a.5070...@bacula.pl
Bug#788743: ITP: golang-github-jacobsa-ogletest -- unit testing framework for Go
Package: wnpp Severity: wishlist Owner: Michael Stapelberg * Package name: golang-github-jacobsa-ogletest Version : 0.0~git20150610-1 Upstream Author : Aaron Jacobs * URL : https://github.com/jacobsa/ogletest * License : Apache-2.0 Programming Lang: Go Description : unit testing framework for Go ogletest is a unit testing framework for Go with the following features: . * An extensive and extensible set of matchers for expressing expectations. * Automatic failure messages; no need to say t.Errorf("Expected %v, got %v"...). * Clean, readable output that tells you exactly what you need to know. * Built-in support for mocking through the oglemock package. * Style and semantics similar to Google Test and Google JS Test. . It integrates with Go's built-in testing package, so it works with the go test command, and even with other types of test within your package. Unlike the testing package which offers only basic capabilities for signalling failures, it offers ways to express expectations and get nice failure messages automatically. This is a dependency of gcsfuse, a fuse file system for Google Cloud Storage. -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20150614174320.8C5B860CF81@x200
Bug#733060: ITP: svxlink -- voice services system for ham radio use
Felix and Iain, I see a new upload - I'll take a look Colin -- Colin Tuckley | +44(0)1223 830814 | PGP/GnuPG Key Id Debian Developer | +44(0)7799 143369 | 0x38C9D903 -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557da896.1030...@debian.org
Bug#788719: RFP: libmatemixer -- Mixer library for MATE Desktop
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Package: wnpp Severity: wishlist * Package name: libmatemixer Version : 1.10.0 Upstream Author : Michal Ratajsky * URL : https://github.com/mate-desktop/libmatemixer Programming Lang: C Description : Mixer library for MATE Desktop This package contains the shared libraries. . This package will be maintained by the Debian MATE Packaging Team. -BEGIN PGP SIGNATURE- Version: GnuPG v2 iQEcBAEBCAAGBQJVfYgAAAoJEGaW2W7vxiDhlJYH/2HZMsYfKAm/Sms8MPMzbmOX 2ar3g1lnQtzlJ3g48726cjNztRxBiu6pXyq4Og/ADxCFXD8EjqW3viJOrjXLfJkJ 0gUC8NMVsqD7be0torQ/QG5BEJ9pjPqm6vupaVeQFkfyNbSPStKb7Z87HR/vZrXD WLoQr556lTFaBBORAsQnJvFn9aoj/rJWmCNAUSdMazpZyuum+xPIZzXYyIqNvNwd be7T1MW0PmiMJjkp/Wo92v9oBzcSOUi0Ro4RiDIRy9fOlZ43pAgdAJIsVEck34uU SLzDART++rjfgD7FuJIHUiT8YEL9CEiPPtFJ+z+CKyORpBxP1RLgb4PfUcAW6+g= =8PUp -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/557d8800.90...@gnugr.org
Bug#785558: marked as done (ITP: ruby-encryptor -- Wrapper for the standard ruby OpenSSL library)
Your message dated Sun, 14 Jun 2015 12:02:11 + with message-id and subject line Bug#785558: fixed in ruby-encryptor 1.3.0-1 has caused the Debian Bug report #785558, regarding ITP: ruby-encryptor -- Wrapper for the standard ruby OpenSSL library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 785558: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785558 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Balasankar C * Package name: ruby-encryptor Version : 1.3.0 Upstream Author : Sean Huber * URL : https://github.com/attr-encrypted/encryptor * License : Expat Programming Lang: Ruby Description : Wrapper for the standard ruby OpenSSL library --- End Message --- --- Begin Message --- Source: ruby-encryptor Source-Version: 1.3.0-1 We believe that the bug you reported is fixed in the latest version of ruby-encryptor, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 785...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Balasankar C (supplier of updated ruby-encryptor package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 17 May 2015 23:11:24 +0530 Source: ruby-encryptor Binary: ruby-encryptor Architecture: source all Version: 1.3.0-1 Distribution: unstable Urgency: medium Maintainer: Debian Ruby Extras Maintainers Changed-By: Balasankar C Description: ruby-encryptor - wrapper for the standard Ruby OpenSSL library Closes: 785558 Changes: ruby-encryptor (1.3.0-1) unstable; urgency=medium . * Initial release (Closes: #785558) Checksums-Sha1: ae9492738683820632c576ce509f044579477311 1740 ruby-encryptor_1.3.0-1.dsc f07cb9459b997524cb73465b0dd20905f0c2e4fa 6416 ruby-encryptor_1.3.0.orig.tar.gz 5a31a8b48dd71fa2aaad0ed1bf58d3e8f651191a 2800 ruby-encryptor_1.3.0-1.debian.tar.xz 871b23d0d31cc9437c2aa05fdeb5a133fbb40b1a 5444 ruby-encryptor_1.3.0-1_all.deb Checksums-Sha256: 88d1ee7ec035c00012b6a59d6601a8dd97ae13059dd1e4b5c21d00187980a35f 1740 ruby-encryptor_1.3.0-1.dsc c1e682c411cbf615dce70a191211f72ace423678dcf183de5a70d8c64afc2087 6416 ruby-encryptor_1.3.0.orig.tar.gz c91ab8d17292e7a8ae20a907a0f02ff501948c8a0ac3d25a30e68aed46ed27b2 2800 ruby-encryptor_1.3.0-1.debian.tar.xz dec149314e96387e42fe3f47b6804ac57052b273ad6604cfaa50ba167562ae4a 5444 ruby-encryptor_1.3.0-1_all.deb Files: d09882c7069120a77f92315ed81ff74b 1740 ruby optional ruby-encryptor_1.3.0-1.dsc bbec9b259c84881ec5ed9437eb91ca3e 6416 ruby optional ruby-encryptor_1.3.0.orig.tar.gz f305c420f78c4d6d318666c745aadaa8 2800 ruby optional ruby-encryptor_1.3.0-1.debian.tar.xz 0ced1948f2909962f0ef98f37e21e088 5444 ruby optional ruby-encryptor_1.3.0-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQEcBAEBCAAGBQJVfJGXAAoJEImvgrc5zSF64qMIAJNuWCrj+o1p3PbSlS/EIO5/ 8kpgZv2qQJT01mO8irvfPBxzHfaMKPgLD/qe2Nz89a3CJheZ+Iqbi9QxXCnp9zbW MolTAjtjTwWRr00VLzECBKVPuGrUFcGTfnPjRHpX9vx1aYJ1ShXElaof21sHhyOo hDV7h7+Bhv3eHGX1TKNbV5v5Q60V/1xMCc9rcCV3kYhD15vMJFjX+TcLL9aKbJaY uyUijuq9G0TsybIOUJUfA2m/e4Cm9DHgXMoxXTASikUSJinrnOhyJWkgpZVFBJRo kzCyKoMFJ7uKSzd4oGtfD0RD415n9C5MmzQMckxoxMbCRlMFr0uSMIkalH6c5Kc= =lTKp -END PGP SIGNATURE End Message ---
Bug#784539: marked as done (ITP: python-matplotlib-venn -- plotting area-proportional two- and three-way Venn diagrams in matplotlib)
Your message dated Sun, 14 Jun 2015 12:02:08 + with message-id and subject line Bug#784539: fixed in python-matplotlib-venn 0.11-1 has caused the Debian Bug report #784539, regarding ITP: python-matplotlib-venn -- plotting area-proportional two- and three-way Venn diagrams in matplotlib to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 784539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784539 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Andreas Tille * Package name: python-matplotlib-venn Version : 0.11 Upstream Author : Konstantin Tretyakov * URL : https://pypi.python.org/pypi/matplotlib-venn * License : MIT Programming Lang: Python Description : plotting area-proportional two- and three-way Venn diagrams in matplotlib Matplotlib is a pure Python plotting library designed to bring publication quality plotting to Python with a syntax familiar to Matlab users. All of the plotting commands in the pylab interface can be accessed either via a functional interface familiar to Matlab users or an object oriented interface familiar to Python users. . This module provides routines for plotting area-weighted two- and three-circle venn diagrams. Remark: This package is maintained by the Debian Med team as a precondition for some Debian Med target (MicrobeGPS). The code is at Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/python-mathplotlib-venn/trunk/ --- End Message --- --- Begin Message --- Source: python-matplotlib-venn Source-Version: 0.11-1 We believe that the bug you reported is fixed in the latest version of python-matplotlib-venn, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 784...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Andreas Tille (supplier of updated python-matplotlib-venn package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Wed, 06 May 2015 15:14:39 +0200 Source: python-matplotlib-venn Binary: python-matplotlib-venn python3-matplotlib-venn Architecture: source all Version: 0.11-1 Distribution: unstable Urgency: medium Maintainer: Debian Med Packaging Team Changed-By: Andreas Tille Description: python-matplotlib-venn - plotting area-proportional two- and three-way Venn diagrams in ma python3-matplotlib-venn - plotting area-proportional two- and three-way Venn diagrams in ma Closes: 784539 Changes: python-matplotlib-venn (0.11-1) unstable; urgency=medium . * Initial Release (Closes: #784539) Checksums-Sha1: c3ac630fda7e033d1574aa1aa1788f4334853d36 2398 python-matplotlib-venn_0.11-1.dsc 24cd444b064d5997e701beb26edf0ff1b1055186 28880 python-matplotlib-venn_0.11.orig.tar.gz 0714d171b810b6cdff4a4ef12f915c2ae66d855c 2296 python-matplotlib-venn_0.11-1.debian.tar.xz 82f8d6160d7f4ddd90b8b55536af4990c34d5c7b 27802 python-matplotlib-venn_0.11-1_all.deb e0e296fbe64b7032e68ad080e8590596f6034862 27976 python3-matplotlib-venn_0.11-1_all.deb Checksums-Sha256: 44b876ac57171b010e298407570a643f7b294fec6d22ffba1f9f78ca16a4567f 2398 python-matplotlib-venn_0.11-1.dsc c6800569d4f21f258216921e10cf62fd305196ef78bca04c3aef3d2c70f5f034 28880 python-matplotlib-venn_0.11.orig.tar.gz ad6d0f6f29f0ed7f40cdc3fe12b5e3069d8d360ebff1fb86d17d42f73064f0a5 2296 python-matplotlib-venn_0.11-1.debian.tar.xz 915828c59887eae2a7da1ac432ea6cc9b131547369c8c0dcbedb9aa95dd9e7c2 27802 python-matplotlib-venn_0.11-1_all.deb 60d3fd3c56c31c0a2a43697d76994dc287dadf9dcceb630087a85927582e654d 27976 python3-matplotlib-venn_0.11-1_all.deb Files: edc8b24c24488590c230eb44a3813fad 2398 python optional python-matplotlib-venn_0.11-1.dsc e7574eafa37de8162da36b4078bd57ca 28880 python optional python-matplotlib-venn_0.11.orig.tar.gz d312dae91963c3a7440668056e2a004f 2296 python optional python-matplotlib-venn_0.11-1.debian.tar.xz 1c5831feff0d8f4438a487fbb3237b40 27802 python optional python-matplotlib-venn_0.11-1_all.deb f6c1dd5c78229ed6ea28a3b8e3cecfd0 27976 python optional python3-matplotlib-venn_0.11-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCAAGBQJVS3
Bug#785534: marked as done (ITP: goobook -- access your Google contacts from command-line or mutt)
Your message dated Sun, 14 Jun 2015 12:02:05 + with message-id and subject line Bug#785534: fixed in goobook 1.9-1 has caused the Debian Bug report #785534, regarding ITP: goobook -- access your Google contacts from command-line or mutt to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 785534: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785534 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Ilias Tsitsimpis * Package name: goobook Version : 1.6 Upstream Author : Christer Sjöholm * URL : https://pypi.python.org/pypi/goobook * License : GPL-3.0+ Programming Lang: Python Description : access your Google contacts from command-line or mutt goobook can be used to access your Google contacts from the command-line and from MUAs such as Mutt. It can be used from Mutt the same way as abook. I plan to maintain this package myself but I will need a sponsor. signature.asc Description: Digital signature --- End Message --- --- Begin Message --- Source: goobook Source-Version: 1.9-1 We believe that the bug you reported is fixed in the latest version of goobook, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 785...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Ilias Tsitsimpis (supplier of updated goobook package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 04 Jun 2015 19:49:26 +0300 Source: goobook Binary: goobook Architecture: source all Version: 1.9-1 Distribution: unstable Urgency: low Maintainer: Ilias Tsitsimpis Changed-By: Ilias Tsitsimpis Description: goobook- command-line interface to Google contacts Closes: 785534 Changes: goobook (1.9-1) unstable; urgency=low . * Initial release (Closes: #785534) * Add upstream patch that fixes manpage. Document the changes made to the authentication system in version 1.7. * Add upstream patch that fixes version requirements. Relax the version requirements for oauth2client and httplib2 packages. Checksums-Sha1: 5b30aeb3361c762a2e9bd52b64a284e9c2d97004 1816 goobook_1.9-1.dsc 95e7d65931668823ba4072721273698437026bdb 29274 goobook_1.9.orig.tar.gz 1666485fad1d6bc0df9179ae4ef5540cc010960a 3820 goobook_1.9-1.debian.tar.xz 2fe12666580b4850fd930d4fff49ef892a539626 20932 goobook_1.9-1_all.deb Checksums-Sha256: d7a3ae43b07c67992778475aacdcaa0a1e39bd5cd7a74fcce8355e8b1324873b 1816 goobook_1.9-1.dsc 311cb344d285e8af36dcd4546d3bd499939140287a12b2d509ea6f2535c2b50b 29274 goobook_1.9.orig.tar.gz 1cca5e85017e55a3686710d9f3c53e4d772ebd05ba6d24a1e0e74b1d3a94e121 3820 goobook_1.9-1.debian.tar.xz 1431fe9b56ef476edbacfbff9129df38768fdb124cfab558b26b4f29514c5dc4 20932 goobook_1.9-1_all.deb Files: 3eec6d31616ff264ef97f36ef1c30e99 1816 mail optional goobook_1.9-1.dsc 41f2246336ea713591e7d912d9d05193 29274 mail optional goobook_1.9.orig.tar.gz e385e2a0ca6b2339905f553416a68402 3820 mail optional goobook_1.9-1.debian.tar.xz 71f8750d6941d196fdf454b40da2fec1 20932 mail optional goobook_1.9-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCAAGBQJVd/q5AAoJEHLTQsHpUUMGop0QAKGHq5/bEzxl79Luz+yAxIfe hKzAZ0KB6DpdmjGFtzklbQVWOvb0oWPGxymmEIWIWc/aBH8wvMGaN+28omy8wOrH oNx+wQiqtFd4JaettSlUgm+k397/dvNB666Z3ymzjjBrz4QOc2OrVT0tZXtfcX4M RbUTfsb60G150EQYtrZ8Vsk5FEp8LLPyYdGU8BPJW6DW39wOtXVA9HjH8KJuDKgZ n/XZ5OtMnO8yTiitiv9zpCqHFImitxDUAWeY5WgZA9xqan5Lj3r3pEMZzyAaeQrI ZP/IBcBcaYeLm2NI26Is0xVzi89YCMesHr89YQjL/s4BayClulUE5yn6Pf8qcUKd GoNGjLVDANQrRiXGEzd2HnoCgO5i/W2dcWfOoE+UQLz0+ce1tOth392Ah9mNmssT hIdDAxS7YiNCsY4pHT+cHrJmmMllchiAtIJaK0RgLeBdRrK7nqOZXMyAnEUH4epf DKnWwT8mqh/x7Wlubp3sRnP1itC/d04+GYeRuIe8XTgWTemiTn32LvBgGswc8t6p cOo6u0/zDcvLIbxDXeJPjjg90msDU6XYx6byFiL2tMCd8c2OflNkaaTKm/pNp9nT f3Qxo17mued/Tiv0Y2DBTnZiLOixMzDI0WQaEsmzWXfKrBarGpX4si/Y83oUQs4+ 5dNmMc4yE3PpruF8Jkyj =b60S -END PGP SIGNATURE End Message ---
Bug#788625: marked as done (ITP: golang-github-jacobsa-reqtrace -- simple request tracing)
Your message dated Sun, 14 Jun 2015 12:02:04 + with message-id and subject line Bug#788625: fixed in golang-github-jacobsa-reqtrace 0.0~git20150505-1 has caused the Debian Bug report #788625, regarding ITP: golang-github-jacobsa-reqtrace -- simple request tracing to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 788625: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788625 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Michael Stapelberg * Package name: golang-github-jacobsa-reqtrace Version : 0.0~git20150505-1 Upstream Author : Aaron Jacobs * URL : https://github.com/jacobsa/reqtrace * License : Apache-2.0 Programming Lang: Go Description : simple request tracing reqtrace is a package for simple request tracing. It requires nothing of its user except: . * They must use golang.org/x/net/context. * They must add a single line to each function they want to be visible in traces. . In particular, reqtrace is console-based and doesn't require an HTTP server. . Warning: This package is still barebones and in its early days. I reserve the right to make backwards-incompatible changes to its API. But if it's useful to you in your current form, have at it. This is a dependency of gcsfuse, a fuse file system for Google Cloud Storage. --- End Message --- --- Begin Message --- Source: golang-github-jacobsa-reqtrace Source-Version: 0.0~git20150505-1 We believe that the bug you reported is fixed in the latest version of golang-github-jacobsa-reqtrace, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 788...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Michael Stapelberg (supplier of updated golang-github-jacobsa-reqtrace package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sat, 13 Jun 2015 15:32:35 +0200 Source: golang-github-jacobsa-reqtrace Binary: golang-github-jacobsa-reqtrace-dev Architecture: source all Version: 0.0~git20150505-1 Distribution: unstable Urgency: medium Maintainer: pkg-go Changed-By: Michael Stapelberg Description: golang-github-jacobsa-reqtrace-dev - simple request tracing Closes: 788625 Changes: golang-github-jacobsa-reqtrace (0.0~git20150505-1) unstable; urgency=medium . * Initial release (Closes: #788625) Checksums-Sha1: 6e1f6a3bdde5261f047d137a82d25f5e1e0eb3a4 2301 golang-github-jacobsa-reqtrace_0.0~git20150505-1.dsc 80ff67d253a171b5cbbb1452dcb9098572b1dbac 7250 golang-github-jacobsa-reqtrace_0.0~git20150505.orig.tar.bz2 8c24a9d35f421367b8c99434281c3de96a400b40 1720 golang-github-jacobsa-reqtrace_0.0~git20150505-1.debian.tar.xz 2e73e155037b73170c565b1e5a2c4e64ac6adae7 4778 golang-github-jacobsa-reqtrace-dev_0.0~git20150505-1_all.deb Checksums-Sha256: 6440eea431bfec1de917c9197f0a4a3686b6476186ed34d2393734c015c8072a 2301 golang-github-jacobsa-reqtrace_0.0~git20150505-1.dsc 3aa6039ed2116e1fa4736cf7de555f4825b3d8ac4172f4a816c7772f3e190029 7250 golang-github-jacobsa-reqtrace_0.0~git20150505.orig.tar.bz2 65eb40d1265590ba0600df7fcfe83e9c4896509a2d495ba995eec8b9c33bd7d4 1720 golang-github-jacobsa-reqtrace_0.0~git20150505-1.debian.tar.xz 418929779c04cdd3490d9290930ba22146c3d5c04d9e320f884e5efcf221ca75 4778 golang-github-jacobsa-reqtrace-dev_0.0~git20150505-1_all.deb Files: 354d3c293a4108bf63e209fbdee35046 2301 devel extra golang-github-jacobsa-reqtrace_0.0~git20150505-1.dsc b635bc6e46fd6d6d6d9d098b6d77d5a4 7250 devel extra golang-github-jacobsa-reqtrace_0.0~git20150505.orig.tar.bz2 e997886f8c09da74567b4c7a9db78df0 1720 devel extra golang-github-jacobsa-reqtrace_0.0~git20150505-1.debian.tar.xz fcbe86fa14a829607400aa3a7ef47e10 4778 devel extra golang-github-jacobsa-reqtrace-dev_0.0~git20150505-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJVfDZcAAoJEE5xYO1KyO4dC+sP/RP7AixCVmW9ebx7OeEIXYCZ kuRqYms+LT3EAlbK3PZuG0Tn65VFyHZemeg6mMNwXxiiXYdj1PlTYiDP1OjGu088 G5FM51X9/bcmHqhB+fr8TfhAckDSZIRB3LPRRKwjIzbioN11t3HIZG63DjRlHg9w yQeQ5X8a9j3PLqSsCfX4gEVvnHTGAJ31QYGhiCRg0bAWH9UQKHj6A3TLNOWevlGg ei89Uc6IMtNAcJ/rGcBJdUHf+8rlnbjVgQu70qqesyu8nhb
Bug#740164: marked as done (ITP: vagrant-lxc -- Linux Containers provider for Vagrant)
Your message dated Sun, 14 Jun 2015 12:02:12 + with message-id and subject line Bug#740164: fixed in vagrant-lxc 1.1.0-1 has caused the Debian Bug report #740164, regarding ITP: vagrant-lxc -- Linux Containers provider for Vagrant to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 740164: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740164 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Antonio Terceiro * Package name: vagrant-lxc Version : 0.8.0- Upstream Author : Fábio Rehm * URL : https://github.com/fgrehm/vagrant-lxc * License : MIT Programming Lang: Ruby Description : Linux Containers provider for Vagrant This package adds support using Vagrant with Linux Containers. The entire Vagrant workflow is exactly the same, except with vagrant-lxc it will use lxc containers instead of VirtualBox VMs. -- Antonio Terceiro signature.asc Description: Digital signature --- End Message --- --- Begin Message --- Source: vagrant-lxc Source-Version: 1.1.0-1 We believe that the bug you reported is fixed in the latest version of vagrant-lxc, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 740...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Antonio Terceiro (supplier of updated vagrant-lxc package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Wed, 27 May 2015 14:37:41 -0300 Source: vagrant-lxc Binary: vagrant-lxc Architecture: source all Version: 1.1.0-1 Distribution: unstable Urgency: medium Maintainer: Debian Ruby Extras Maintainers Changed-By: Antonio Terceiro Description: vagrant-lxc - Linux Containers provider for Vagrant Closes: 740164 Changes: vagrant-lxc (1.1.0-1) unstable; urgency=medium . * Initial release (Closes: #740164) * Read-extra-files-from-usr-share.patch: read scripts/ templates/ and locales/ from where they are installed in the Debian package. * Fix-shebang-in-sudoers-template.patch: use /usr/bin/ruby Checksums-Sha1: 66730600325ac15c86e2e99f6995cff6d209d645 2035 vagrant-lxc_1.1.0-1.dsc 10eb773c78522468c211ed3140979af8710785c0 45447 vagrant-lxc_1.1.0.orig.tar.gz 25be86c954059538ccfc4922bb8fcb9cd6ada316 3716 vagrant-lxc_1.1.0-1.debian.tar.xz 39cf3aaffb2db32867494ed19cc1547219f75cb5 34940 vagrant-lxc_1.1.0-1_all.deb Checksums-Sha256: 6c238a4c108d599dac76bcf1853f056164955f58f608920d94944663f3e35937 2035 vagrant-lxc_1.1.0-1.dsc 366cf0987d6625cd2108e98c6cba5e1d0d9cdbee5dfc46feb8a58366c89f223c 45447 vagrant-lxc_1.1.0.orig.tar.gz b5adce4a7c207bdb79185e1cf483d1b31c1921bc7567682f29e2e20fe686e8ab 3716 vagrant-lxc_1.1.0-1.debian.tar.xz ab86617bb5ddbd1183ee1de7176ca5e7878357e2b13a614901f42cf17a5945ac 34940 vagrant-lxc_1.1.0-1_all.deb Files: e2754ccc3730026132630c62077c4e6c 2035 ruby optional vagrant-lxc_1.1.0-1.dsc 97ee9fa540870d7a0425929f9ea86e4e 45447 ruby optional vagrant-lxc_1.1.0.orig.tar.gz ac25a31019a97779df9bbf77b73b1d70 3716 ruby optional vagrant-lxc_1.1.0-1.debian.tar.xz 57ee686143c3927656ed3d114f39ddc6 34940 ruby optional vagrant-lxc_1.1.0-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCAAGBQJVfLInAAoJEPwNsbvNRgve3FAP/jnbSNkBuNjXR8/v+SltDhjc SnJXMKPEbq0/NDkFNUWV/UWzq4cDtiLV8jaD5PB3NqHEzdJw+ICOaYB6C1FB0o4b 475mBe3K5wG8n8Q7Fd9pV2KJiE+Gd4MUaRvjLqFFdzCjZRDQLob86rWIR8ax9r4D HtWwglDfiRI7onUhFJyUCLnX4uoruJoRfwvKwpPjRCNTq8yO5FdpdobuaMdpeVLJ Zksf8tnDh3ZERir722ryZQSLAJDOjZIcSYJ6Mi0do2EeQiGvbnkx71JWCclUdl0d v5I4KQAMGEz3W99k8tbowS1zITpB8SIsBQnLyV6qaBOu/M7qj42WlpE6xzsOtskr oDoO/r5Qh9wAy2VxCOJhvhFmU+9Ov2I0iHyEPo2zAq11fyez8iJ701KTgrUi3kK3 pWAPhMhh5YV9qmG/Gis+NRMF/f22RSFsKPw/h46aEQjYStP5YLavfU19royi+y+9 e90meISUeUgptnEcLefyHGYB13RBVeJ1Hgp2LwLmuAqhhnzlm+OyIwTbikMnFFmH MgwMC6e2o0xL2tQNWcbTe9PNE7KfmvAh81ZwXBoujGdp2A9ouFwO7x5v4hHBexui bU4BuflPLHeXrf5JHlBhze1IWw2ovnoRkyGD89hvJkCnvI/lTcAPDrRxR8qb6yA8 rUKKM1cjS5Nt2dlpSDRW =vwTh -END PGP SIGNATURE End Message ---
Bug#756009: marked as done (ITP: pypuppetdb -- interface to the PuppetDB REST API)
Your message dated Sun, 14 Jun 2015 12:02:08 + with message-id and subject line Bug#756009: fixed in pypuppetdb 0.1.1+git080614-1 has caused the Debian Bug report #756009, regarding ITP: pypuppetdb -- interface to the PuppetDB REST API to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 756009: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756009 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Owner: Jonas Genannt Severity: wishlist * Package name: python-pypuppetdb Version : 0.1.1 Upstream Author : Daniele Sluijters * URL : https://github.com/nedap/pypuppetdb * License : Apache Programming Lang: python Description : interface to the PuppetDB REST API This library provides a Python interface to the PuppetDB REST API. It's a thin wrapper around the PuppetDB REST API providing some convinience functions and objects to request and hold data from PuppetDB. Package will be maintained by Puppet PKG Group, this library is needed for puppetboard #754796 --- End Message --- --- Begin Message --- Source: pypuppetdb Source-Version: 0.1.1+git080614-1 We believe that the bug you reported is fixed in the latest version of pypuppetdb, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 756...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Jonas Genannt (supplier of updated pypuppetdb package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 04 Jun 2015 12:43:48 +0200 Source: pypuppetdb Binary: python-pypuppetdb python3-pypuppetdb Architecture: source all Version: 0.1.1+git080614-1 Distribution: unstable Urgency: low Maintainer: Debian Python Modules Team Changed-By: Jonas Genannt Description: python-pypuppetdb - interface to the PuppetDB REST API python3-pypuppetdb - interface to the PuppetDB REST API (Python 3) Closes: 756009 Changes: pypuppetdb (0.1.1+git080614-1) unstable; urgency=low . * Initial release. (Closes: #756009) Checksums-Sha1: 9297fa7a70cfb7ad4a0ce93e59a3666aa7654ff1 2392 pypuppetdb_0.1.1+git080614-1.dsc 20a9661e348568e94d51f7bc9539ada9f585592e 29601 pypuppetdb_0.1.1+git080614.orig.tar.gz 157843dd54d44c2bc36760c2376e3726232b6815 1756 pypuppetdb_0.1.1+git080614-1.debian.tar.xz 4ee2775a987c6212f189548bd81401808d788693 21094 python-pypuppetdb_0.1.1+git080614-1_all.deb b8828ca401d436244d3028aa81d206291cd9 21182 python3-pypuppetdb_0.1.1+git080614-1_all.deb Checksums-Sha256: 205febffa580778409978f5fe8cefec069a3e64707e4c1bdc1059d7234372d51 2392 pypuppetdb_0.1.1+git080614-1.dsc 529e038cefc1a275facdbfedf561cc57814a2cef24f2e528f4dad258697963c4 29601 pypuppetdb_0.1.1+git080614.orig.tar.gz 02ba5198725fa9a75ff7ad266870273af8917fc60a867bed010f0f151707a87e 1756 pypuppetdb_0.1.1+git080614-1.debian.tar.xz c38279dcea79b401cb76a6c7b1f28819c9ccb03b49be45de001e0d0eedc77d57 21094 python-pypuppetdb_0.1.1+git080614-1_all.deb 112df1ae6f4b8d93c575f79e3ae57ebd2d9ee137a9083086db24111bdeecb67e 21182 python3-pypuppetdb_0.1.1+git080614-1_all.deb Files: 351c7fe3c57f6dd3af13d90735a872d8 2392 python optional pypuppetdb_0.1.1+git080614-1.dsc 92f401aa5962867769ddb60637426c05 29601 python optional pypuppetdb_0.1.1+git080614.orig.tar.gz 1de48a0dcd271c78fe902bb0ebd2d783 1756 python optional pypuppetdb_0.1.1+git080614-1.debian.tar.xz 0e2da229556066ce315e3f4aa4b8425d 21094 python optional python-pypuppetdb_0.1.1+git080614-1_all.deb 0c75da9d370085a1bd97d0bd084f00d0 21182 python optional python3-pypuppetdb_0.1.1+git080614-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAEBCAAGBQJVcCykAAoJEPBM7/YBbP/QYPEP/2omtaMg8hO8uacB3Ri5zU3z 6O15AXnjE7Lj6K6pjCcNWMiU7rLzljDQQvGhCvdvb5LknGGoKvahQlx1rBYCMa4J rkj2T7Kb9Zqpj1F0KDB7sBJ0Cg13kOKuw4Ocdjm2wzvhnYZq+1SavMYmmSl/My0W RfS7va8vsH8Ww2o0VMrYkAEoJnkXwQ61uOVrsUh2pgVwfmLRlbtSNV8YA3eXFSj+ yMrmAlaY7ABFgsCstCtw7AckR6B2Fj6d9ww4pKi158V/oZzInO7BckyFtAzAzOrz ZNypb9T+sYuKOQfK3xgDg/b9qScIhM1lRr6R9xj1paSBP9MzwrJBQj6ras9nSTyJ Ie6MFPQNx2CAyS7ADYkkKNapqPAe3IZRWCri/CGakV1IVMYwl9emJLcixOdw2xsD 9mF0vYLK3oETQ+k5mOt2GmD7mQIjc5vDsYd+tSDGSvfB3z/nRxJD6FKxcEsfiLZO NARZHiNi8JCdlmZqwfR+M
Bug#785604: marked as done (ITP: python-pyorick -- Python module to execute Yorick code)
Your message dated Sun, 14 Jun 2015 12:02:10 + with message-id and subject line Bug#785604: fixed in python-pyorick 1.4-1 has caused the Debian Bug report #785604, regarding ITP: python-pyorick -- Python module to execute Yorick code to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 785604: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785604 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist X-Debbugs-CC: debian-scie...@lists.debian.org, debian-pyt...@lists.debian.org * Package name : python-pyorick Version : 1.4 Upstream Author : Dave Munro * URL : https://github.com/dhmunro/pyorick * License : BSD 2-Clause Description : The pyorick package starts yorick as a subprocess and provides an interface between python and yorick interpreted code. Features: + exec or eval arbitrary yorick code strings + get or set yorick variables + call yorick functions or subroutines with python arguments + get or set slices of large yorick arrays + terminal mode to interact with yorick by keyboard through python Most of the data is exchanged via binary pipes between the two interpreters. Yorick runs in a request-reply mode. Python prints anything yorick sends to stdout or stderr except prompts. The package yorick-yutils contains an interface (pyk.i) which allows the reverse: controlling Python from Yorick. The pyk.i approach however suffers from severe limitations (most notably, all data are sent via textual representations). The yorick-svipc and python(3)-svipc packages allow exchanging data between the two interpreters using shared memory. While not as straightforward to use as this package, the shared memory approach may avoid data duplication and can be used together with this package. The package will be hosted under the Debian Science umbrella, like the rest of the Yorick stack. Kind regards, Thibaut. --- End Message --- --- Begin Message --- Source: python-pyorick Source-Version: 1.4-1 We believe that the bug you reported is fixed in the latest version of python-pyorick, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 785...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Thibaut Paumard (supplier of updated python-pyorick package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 19 May 2015 14:22:22 +0200 Source: python-pyorick Binary: python-pyorick python3-pyorick Architecture: source all Version: 1.4-1 Distribution: unstable Urgency: low Maintainer: Debian Science Maintainers Changed-By: Thibaut Paumard Description: python-pyorick - Python 2 module to execute Yorick code python3-pyorick - Python 3 module to execute Yorick code Closes: 785604 Changes: python-pyorick (1.4-1) unstable; urgency=low . * Initial revision (Closes: 785604) Checksums-Sha1: d1b1ef3181471d235140524ba39fb33d3268930a 2199 python-pyorick_1.4-1.dsc bf02cd68774aac5ef45edad5a793a8c1f1b57c70 39702 python-pyorick_1.4.orig.tar.gz d7f03815f8461fd4b2500ec9b652e1fdc8ec2d1c 2264 python-pyorick_1.4-1.debian.tar.xz 91b043ac938699ede03336e696fd9a2b7c1eca11 36940 python-pyorick_1.4-1_all.deb ecff4cba6939ed5b4504ae2f5d5aadd7db0b2351 37022 python3-pyorick_1.4-1_all.deb Checksums-Sha256: e3e86ec1be9344cc9d54e467a00112daf2bb0673c2eac0521928627fa9a86d0f 2199 python-pyorick_1.4-1.dsc a03167e874a45201ce479b7153fd9447981418c53d175931e01cf874cdcf4f72 39702 python-pyorick_1.4.orig.tar.gz 9dd5eaa6164cd42e2762afaf1d0e2ba8a709dd134a04927ce8c662b2efee734f 2264 python-pyorick_1.4-1.debian.tar.xz a06d74e7aac343fdc3e6907d2bcc576b28d80d2503e8e571c08d2464d74f5d70 36940 python-pyorick_1.4-1_all.deb d2807e3200baae215df76cfeb4585eb42974c3f582f7a90dbb67d11e7bd3f56e 37022 python3-pyorick_1.4-1_all.deb Files: 5d8a988051bb50f4ae785398d01220c1 2199 python extra python-pyorick_1.4-1.dsc 6b40c9d7d5ef1907b73666ff0a2e2f10 39702 python extra python-pyorick_1.4.orig.tar.gz 3aea7aea040ff2f0d33d7e2305c30fef 2264 python extra python-pyorick_1.4-1.debian.tar.xz 82753aab36c6bcee3f01cb29f34ef315 36940 python extra
Bug#719811: marked as done (ITP: python-phply -- PHP parser written in Python using PLY)
Your message dated Sun, 14 Jun 2015 12:02:09 + with message-id and subject line Bug#719811: fixed in python-phply 0.9.1~alpha-1 has caused the Debian Bug report #719811, regarding ITP: python-phply -- PHP parser written in Python using PLY to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 719811: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=719811 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist * Package name: phply Version : 2-Pre-Alpha Upstream Author : Dave Benjamin * URL : https://github.com/ramen/phply * License : BSD Programming Lang: Python Description : PHP parser written in Python using PLY Phply is a parser for the PHP programming language written using PLY, a Lex/YACC-style parser generator toolkit for Python. --- End Message --- --- Begin Message --- Source: python-phply Source-Version: 0.9.1~alpha-1 We believe that the bug you reported is fixed in the latest version of python-phply, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 719...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Gianfranco Costamagna (supplier of updated python-phply package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 16 Feb 2015 18:42:22 +0100 Source: python-phply Binary: python-phply python3-phply Architecture: source all Version: 0.9.1~alpha-1 Distribution: unstable Urgency: low Maintainer: Debian Python Modules Team Changed-By: Gianfranco Costamagna Description: python-phply - PHP parser written in Python using PLY python3-phply - PHP parser written in Python 3 using PLY Closes: 719811 Changes: python-phply (0.9.1~alpha-1) unstable; urgency=low . * Initial release (Closes: #719811). Checksums-Sha1: 9f8924fded5bdcf06b85ef710882002f990d3237 2215 python-phply_0.9.1~alpha-1.dsc d487ab732ec02b425ef93f635f8afdb59a2d13b5 30640 python-phply_0.9.1~alpha.orig.tar.gz ce89c07badd7155f0b42c0da4d126cda3b36f24a 4108 python-phply_0.9.1~alpha-1.debian.tar.xz 733b16e2b5eb21c6d745da2004de8c68b5e09d55 24098 python-phply_0.9.1~alpha-1_all.deb 9f42b989eda7078f3c5aabd8d186ce1b678fec63 23362 python3-phply_0.9.1~alpha-1_all.deb Checksums-Sha256: faf9371c4295bff365f5f1330f4370e6b6513465cb00aebc92709ec7803c8468 2215 python-phply_0.9.1~alpha-1.dsc 6afe997a3b0ab3dbc2d5d8769d9c9e10d1fd9812e416d2deaf6ba56fd2565ed8 30640 python-phply_0.9.1~alpha.orig.tar.gz 302a58ccd91e3655de28300ac71cb340fbbfe8b159a98863b8e17a4425fa3871 4108 python-phply_0.9.1~alpha-1.debian.tar.xz 5ce5b9ff6a6f2b2b0ff6762785ef0397db87096f2d1b9516b91cce8f4e6e8666 24098 python-phply_0.9.1~alpha-1_all.deb 38bc320275b37e92843cbd50c8020479112cb448646aade8bf4ed1226abe32b7 23362 python3-phply_0.9.1~alpha-1_all.deb Files: 1a8d1df4af45fc341f35340bf7a2ba50 2215 python optional python-phply_0.9.1~alpha-1.dsc f336ab9d35bd9c0f0a50ede3252b12ba 30640 python optional python-phply_0.9.1~alpha.orig.tar.gz 63f0e2fb0f738149dff96935de3559a0 4108 python optional python-phply_0.9.1~alpha-1.debian.tar.xz 5adff65e3582adea5c5c7bf04eb548a2 24098 python optional python-phply_0.9.1~alpha-1_all.deb 98444590c44e659d4b953468761387b3 23362 python optional python3-phply_0.9.1~alpha-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v2 iQIcBAEBCAAGBQJVXKDiAAoJEAFx4YKK4JNFxEkQAITBSjwQsvqoGyzoaFczOd9v w/Vv6jsop0oCHw6prvM9ilcd3n4Y64My00EpZ8ykMvxCvxJqCLsUb8K5w0wcFJUb LpLUzJquTg1P1HZE96XpO/GVDc2ZeTe6ZV4BsdWYSrUsVcHZPZptQeZgLc4loWyY EckMH/2IV1/vIwFQzfkjN+EeCbewI2dNWmW3AZtxauePKJM95TfMJ/ifswDs6JlW VR2UwLV2Tiw78hsqLDOlmHKCdLXoXIThNLSRNYzmQhi0nMux39FGh1KIqNFTErAd pN0CdP9FTkWZZnesTnLpTjWFzvVAyaS6WukGjE9xC92/EOnM3yyrK96uwC4fFsL0 EbWehbEKeoE1pZ9USyt9mlrCk7ffEYGxXAcVD2JYwvDIo0Tl53JGyZwXdxDbthlV mqhINS2H41Rg08m/BMKpkxNAu9fCezJ1PkVRoPcfXP9j9L/DkACzoUsbwT0GtLlZ fdCfhKQgb/065TbEwH49ZyrfjP+LPsp7XMdD3tf1DafRbhLKdRFBeM9b/pREPyZx X7OSnzeB+NWjYZw63FWlVMiSM/x13pQ0tLBLNLdmaGJgziuJOOqXGIEyUmbrnzqM 6LgJTkPVxUcQOEGjmtHF1iN9dhn/jZstA/gb+2vw4FHxfc5mDlyeUFISG9J0bI4I 5tx1uIKQT6DOknOiMG5I =kCqd -END PGP SIGNATURE End Message ---
Bug#719694: marked as done (ITP: gumbo-parser -- A pure-C HTML5 parser)
Your message dated Sun, 14 Jun 2015 12:02:05 + with message-id and subject line Bug#719694: fixed in gumbo-parser 0.9.2+dfsg-1 has caused the Debian Bug report #719694, regarding ITP: gumbo-parser -- A pure-C HTML5 parser to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 719694: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=719694 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Onur Aslan * Package name: libgumbo Version : 0.9.0 Upstream Author : Jonathan Tang * URL : https://github.com/google/gumbo-parser * License : Apache 2.0 Programming Lang: C Description : A pure-C HTML5 parser Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. It's designed to serve as a building block for other tools and libraries such as linters, validators, templating languages, and refactoring and analysis tools. --- End Message --- --- Begin Message --- Source: gumbo-parser Source-Version: 0.9.2+dfsg-1 We believe that the bug you reported is fixed in the latest version of gumbo-parser, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 719...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Onur Aslan (supplier of updated gumbo-parser package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 26 Jan 2015 14:59:42 +0200 Source: gumbo-parser Binary: libgumbo-dev libgumbo1 python-gumbo python3-gumbo Architecture: source amd64 all Version: 0.9.2+dfsg-1 Distribution: unstable Urgency: low Maintainer: Onur Aslan Changed-By: Onur Aslan Description: libgumbo-dev - pure-C HTML5 parser development files libgumbo1 - pure-C HTML5 parser python-gumbo - pure-C HTML5 parser Python bindings python3-gumbo - pure-C HTML5 parser Python 3 bindings Closes: 719694 Changes: gumbo-parser (0.9.2+dfsg-1) unstable; urgency=low . * Initial release (Closes: #719694) Checksums-Sha1: 00da39d30a177ed508b5dc58fe9a788d76eb33ca 1844 gumbo-parser_0.9.2+dfsg-1.dsc 33135babad1bc485f2c221eca993248ef3231811 282284 gumbo-parser_0.9.2+dfsg.orig.tar.gz 3a7e13199fe649ad304c66693046cbed25c2bdbc 4564 gumbo-parser_0.9.2+dfsg-1.debian.tar.xz cc60a872d7d9f89c61b9dc67a26bfc94418dadc4 213344 libgumbo-dev_0.9.2+dfsg-1_amd64.deb 4a3ed11cad8157176bfd73190556879690e62613 103180 libgumbo1_0.9.2+dfsg-1_amd64.deb bfb5e26293ec06f48dc135ed76331673656a4769 14362 python-gumbo_0.9.2+dfsg-1_all.deb e1806113ca8f93018746c3d11c3a0caa35728e47 14434 python3-gumbo_0.9.2+dfsg-1_all.deb Checksums-Sha256: ac45fceff2b3825a33aa75eebe210dcacd32b2251ad7d15aa3ee14594353b387 1844 gumbo-parser_0.9.2+dfsg-1.dsc 8070e5e2fd91db34826744303ea04b2b2d3cee5583627b00b929f4810c99848a 282284 gumbo-parser_0.9.2+dfsg.orig.tar.gz 6177a02c6757f8d053c07523b17b83565336d3e0343153640375530a2d793449 4564 gumbo-parser_0.9.2+dfsg-1.debian.tar.xz ddc5cd5f679f361294aa97539b5e53955299bfd47b2b4331aaacacd61e2a0e3c 213344 libgumbo-dev_0.9.2+dfsg-1_amd64.deb 8fff778b996ac92b4522330ae68c25ca2638f4b3182040a3f612d946b9243cee 103180 libgumbo1_0.9.2+dfsg-1_amd64.deb 0140ecbe05a1686d0faa67e0d567829fc54ea94cb4b899fbe8807b44e9ac3a7e 14362 python-gumbo_0.9.2+dfsg-1_all.deb 9a1f3f6410518437eb8c2f2f553f2cb8fb8608ec803b75aa6344a244074260fb 14434 python3-gumbo_0.9.2+dfsg-1_all.deb Files: e079eec00a475be86a63a173df676ef3 1844 libs optional gumbo-parser_0.9.2+dfsg-1.dsc 43b131ba368a33dc107e7cf00d3895a4 282284 libs optional gumbo-parser_0.9.2+dfsg.orig.tar.gz d602277c252eeb6c403c5d86577e1cd0 4564 libs optional gumbo-parser_0.9.2+dfsg-1.debian.tar.xz 52e511eae921998cf0706409aa1b9d89 213344 libdevel optional libgumbo-dev_0.9.2+dfsg-1_amd64.deb 3608f42c793e68a56b08b0182f7cc7c1 103180 libs optional libgumbo1_0.9.2+dfsg-1_amd64.deb 408b7110ac6f13d6fdbabd2b0da2c87d 14362 python optional python-gumbo_0.9.2+dfsg-1_all.deb eee792a4629a263af2572796c497bdaf 14434 python optional python3-gumbo_0.9.2+dfsg-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQEcBAEBCAAGBQJUxlXfAAoJEImvgrc5zSF68isH/2WezYO/dWztxR5G7LAZmw6R I4lvfsGx+AQSwnA
Bug#762966: marked as done (ITP: libgom -- Gom provides an object mapper from)
Your message dated Sun, 14 Jun 2015 12:02:06 + with message-id and subject line Bug#762966: fixed in libgom 0.2.1-1 has caused the Debian Bug report #762966, regarding ITP: libgom -- Gom provides an object mapper from to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 762966: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=762966 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist * Package name: gom-1.0 Version : 0.2.1 Upstream Author : Christian Hergert * URL : https://git.gnome.org/browse/gom/ * License : LGPL Programming Lang: C Description : Gom provides an object mapper from GObjects to SQLite. It helps you write applications that need to store structured data as well as make complex queries upon that data. Gom manages all the plumbing. It helps you perform database upgrades. It helps you build search queries. Gom has lazy collections, and you can fetch things asynchronously. Yes, it has many-to-many tables too. Apps that depend on Gom: - github.com/codito/gnome-shell-pomodoro - github.com/chergert/catch-glib --- End Message --- --- Begin Message --- Source: libgom Source-Version: 0.2.1-1 We believe that the bug you reported is fixed in the latest version of libgom, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 762...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Joseph Herlant (supplier of updated libgom package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 11 Oct 2014 12:01:04 +0200 Source: libgom Binary: libgom-1.0-0 libgom-1.0-0-dbg libgom-1.0-dev libgom-1.0-common libgom-1.0-doc gir1.2-gom-1.0 Architecture: source amd64 all Version: 0.2.1-1 Distribution: unstable Urgency: low Maintainer: Debian GNOME Maintainers Changed-By: Joseph Herlant Description: gir1.2-gom-1.0 - GObject introspection data for libgom libgom-1.0-0 - Object mapper from GObjects to SQLite libgom-1.0-0-dbg - libgom debugging symbols libgom-1.0-common - libgom architecture-independent files libgom-1.0-dev - libgom development files libgom-1.0-doc - libgom API documentation Closes: 762966 Changes: libgom (0.2.1-1) unstable; urgency=low . * Initial release (Closes: #762966) Checksums-Sha1: 1ff205a0a5f7c227847e82fa3faabcff3722c71b 2030 libgom_0.2.1-1.dsc 27357835540e3ae67451c957bb7b6a98083d52a9 363856 libgom_0.2.1.orig.tar.xz 94640ff312219d42847ebec4228a225a6fd5e1ea 4088 libgom_0.2.1-1.debian.tar.xz 570b0f06503251180c04cd992e5769b2a0cf743c 64786 libgom-1.0-0_0.2.1-1_amd64.deb acf85d71003c24038ee1c7ac9276409a74ca89f5 134564 libgom-1.0-0-dbg_0.2.1-1_amd64.deb b429776cb3c1f3d55c53aadbf729a8b1c80a1719 75648 libgom-1.0-dev_0.2.1-1_amd64.deb c2d7193de2f054bb8f099cedc1b53dae1eb48fb4 36878 libgom-1.0-common_0.2.1-1_all.deb abec31b0b0d47d7a8fa2b5122fa831ff2fb4263c 51136 libgom-1.0-doc_0.2.1-1_all.deb e20bcc1873a6e5560121095350faa7d8767c6799 34148 gir1.2-gom-1.0_0.2.1-1_amd64.deb Checksums-Sha256: 9c8f66363b0d68c7df60a5e995247e2b084d41d1d9865892e6fa7cf08d94ee5f 2030 libgom_0.2.1-1.dsc 07a0481312c9d737c1843943b3af031d64415d51997f246c431f4fa2afd4d23b 363856 libgom_0.2.1.orig.tar.xz b3706c36d08356858faf3060f59842cc06cb33439170428a060a5c167102052c 4088 libgom_0.2.1-1.debian.tar.xz 8670c546cf0a8440311b627955c0145ceaf93aa9d839d262cd0e675d22b7efca 64786 libgom-1.0-0_0.2.1-1_amd64.deb 9529cab7df8b0de1a2916348c3b1e48744516dec583c84c98a9b5db4c631b9f2 134564 libgom-1.0-0-dbg_0.2.1-1_amd64.deb 46530137abf3cf03f65bc6609cc744238c22c0b17d53424c27f938a376cbf700 75648 libgom-1.0-dev_0.2.1-1_amd64.deb a25b292e460592babd6ac6c2e07252db983522b4a0be063ad5e791fac7a479a5 36878 libgom-1.0-common_0.2.1-1_all.deb 1810f5f5ef210320f8a79644e40fd8437a9d5583be329fdb91ad8950dc547ea3 51136 libgom-1.0-doc_0.2.1-1_all.deb 833b07449f68aa1332795921ebdcb9cb2105318f393abb9072b1a8ea6f49068f 34148 gir1.2-gom-1.0_0.2.1-1_amd64.deb Files: 2853edb2371e3f283c167f21011c8798 2030 libs optional libgom_0.2.1-1.dsc 97a9a260c4fe0ac57568122f53fab13d 363856 libs optional libgom_0.2.1.orig.tar.xz 33bd414e51a1ae95aa58cb0dbb23 4088 libs optiona
Bug#775192: marked as done (ITP: mininet -- process-based network emulator)
Your message dated Sun, 14 Jun 2015 12:02:07 + with message-id and subject line Bug#775192: fixed in mininet 2.2.0-1 has caused the Debian Bug report #775192, regarding ITP: mininet -- process-based network emulator to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 775192: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775192 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Tomasz Buchert * Package name: mininet Version : 2.2.0 Upstream Author : Bob Lantz et al. * URL : http://mininet.org/ * License : BSD-like (mininet-license) Programming Lang: Python Description : process-based network emulator Mininet is a network emulator which uses lightweight virtualization to create virtual networks for rapid prototyping of Software-Defined Network (SDN) designs using OpenFlow. The package will be maintained by me and D. Dwornikowski (more details in the incoming RFS). Cheers, Tomasz --- End Message --- --- Begin Message --- Source: mininet Source-Version: 2.2.0-1 We believe that the bug you reported is fixed in the latest version of mininet, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 775...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Tomasz Buchert (supplier of updated mininet package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Mon, 12 Jan 2015 11:45:31 +0100 Source: mininet Binary: mininet Architecture: source amd64 Version: 2.2.0-1 Distribution: unstable Urgency: medium Maintainer: Dariusz Dwornikowski Changed-By: Tomasz Buchert Description: mininet- process-based network emulator Closes: 775192 Changes: mininet (2.2.0-1) unstable; urgency=medium . * Initial release (Closes: #775192) Checksums-Sha1: 391d04464c3a04fa8220c554d24c0140e989dae7 1939 mininet_2.2.0-1.dsc ed10095b42c329592ce6de6be1f24fa83b6ed9b3 217384 mininet_2.2.0.orig.tar.gz 2493d41e40f7a6381336acf173972ab75e3bf1bc 2756 mininet_2.2.0-1.debian.tar.xz 61f3714dfac6f89422afafd93292ea7274c0eddb 173552 mininet_2.2.0-1_amd64.deb Checksums-Sha256: 8b9086c3af7b45da861a50221a2ea0e1729a023b79386b92aa05c1b27210468a 1939 mininet_2.2.0-1.dsc f8c921ec1e8591242893472ed4e89cbaa77300f2e7ee21a03d672c11d64e4e36 217384 mininet_2.2.0.orig.tar.gz 91a2fd9725057be72ca444b688b71784694aecca5a978011e01fc7b198df9cc2 2756 mininet_2.2.0-1.debian.tar.xz c72be961642f6c2692c43ccc124fd0b5b2da07e7062e12add0f12444ce39faeb 173552 mininet_2.2.0-1_amd64.deb Files: ad5922cf5fad48342f31a9b535fa440b 1939 net optional mininet_2.2.0-1.dsc 36193ffdb7f358077f6192cb62a1a188 217384 net optional mininet_2.2.0.orig.tar.gz 5c1936db46ef3f5fd58dedfd5ab64290 2756 net optional mininet_2.2.0-1.debian.tar.xz a1a9ce4ed637e8d2803ff2f58a333154 173552 net optional mininet_2.2.0-1_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJVfLpWAAoJEJ+5JicksX0p7EIP/11r9PiCnUbXcHRbWXC7Jz1z /83wc3XNvevVCtI3EKxDoi940wCob7n+yHNtzGhkP+jf2tBqATPX7+LOeXsn34U5 vqV3NvM7Ywf3+nT7phTyN61XBMFCLgjtytf9Y5vAalA5a7+Yf2rR3tvsZ7Q34gCI 3LxArFeGeM/Ow8FfF3a6dGMzygE9onvIpc4YJt9Flk9UlRDewmaqdbtjblFWgCRd fk8RnsQOCsCyNjTxI6JHNF2OdwAkiTWL2lTFPAM8y1zotkGTJ/9cJg0rpUADWlp2 VQhOkoBsSdJXYRVLWSbVl7Rz1B5I/RCiSzT6icAI3SfWWg3Y5cVnS70ycy62+4VT JvD82VoenTwMpAw84sOjJ13bMw20kVtEsRxFPejrBuq6Z0brc80KAHKXW3VLXAJn DmoSckENE28FXUKtct7z4x78Kmux3i0vsJWog7OMu0duvAwPp8+DTE6pwEGxsOjq sHBVkYvmoeERsoVIQqaJFNSIUW0Me5hixi1TTG6L+cNkPeWjEfHEqYIwNzLCUhNh e9qdu2QBs8/rQJAqw3q7s3QuCbDO4xk36DKfOj0OUFHv40jHNkRWreTXKkN+SrRg FOxP5O07wLtrdGtSFa4thfgqCSFv2TObljCUoaPNeVBW6U2U2BjbpWlmIqDSAjRX zBpfYuS2XKHFErOZ/MMU =ZKdG -END PGP SIGNATURE End Message ---
Processed: wxmaxima: block ITA 744706 by RFS 782738
Processing commands for cont...@bugs.debian.org: > block 744706 by 782738 Bug #744706 [wnpp] ITA: wxmaxima -- GUI for the computer algebra system Maxima 744706 was blocked by: 745964 744706 was not blocking any bugs. Added blocking bug(s) of 744706: 782738 > stop Stopping processing here. Please contact me if you need assistance. -- 744706: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744706 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/handler.s.c.14342662631069.transcr...@bugs.debian.org
Processed: syncterm: block ITP 739035 by RFS 777651
Processing commands for cont...@bugs.debian.org: > block 739035 by 777651 Bug #739035 [wnpp] ITP: syncterm -- SyncTerm is the Synchronet Terminal 739035 was blocked by: 751352 739035 was not blocking any bugs. Added blocking bug(s) of 739035: 777651 > stop Stopping processing here. Please contact me if you need assistance. -- 739035: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739035 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/handler.s.c.14342662631071.transcr...@bugs.debian.org
Processed: ITA: wxmaxima -- GUI for the computer algebra system Maxima
Processing commands for cont...@bugs.debian.org: > owner 744706 Gunter Königsmann Bug #744706 [wnpp] ITA: wxmaxima -- GUI for the computer algebra system Maxima Owner changed from Eliad Bagherzadegan to Gunter Königsmann . > stop Stopping processing here. Please contact me if you need assistance. -- 744706: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744706 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/handler.s.c.143426543429976.transcr...@bugs.debian.org