Processed: block 789055 with 814680
Processing commands for cont...@bugs.debian.org: > block 789055 with 814680 Bug #789055 [wnpp] ITP: stp -- simple theorem prover SMT solver 789055 was not blocked by any bugs. 789055 was not blocking any bugs. Added blocking bug(s) of 789055: 814680 > thanks Stopping processing here. Please contact me if you need assistance. -- 789055: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789055 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#815859: ITP: seq-el -- sequence manipulation functions for Emacs Lisp
Package: wnpp Severity: wishlist Owner: Sean Whitton * Package name: seq-el Version : 1.11 Upstream Author : Nicolas Petton * URL : https://elpa.gnu.org/packages/seq.html * License : GPL-3 Programming Lang: Emacs Lisp Description : sequence manipulation functions for Emacs Lisp seq.el provides sequence-manipulation functions for Emacs Lisp that complement basic functions provided by subr.el. I am packaging seq.el as a dependency of flycheck, another ITP of mine. -- Sean Whitton signature.asc Description: PGP signature
Bug#815856: ITP: apertium-fra -- Apertium single language data for French
Package: wnpp Severity: wishlist Owner: Kartik Mistry * Package name: apertium-fra Version : 1.0.0~r65786 Upstream Author : Francis M. Tyers , Kevin Brubeck Unhammer , sabertooth-...@users.sourceforge.net * URL : http://apertium.org/ * License : GPL-3+ Programming Lang: Description : Apertium single language data for French Data package providing Apertium language resources for French - why is this package useful/relevant? is it a dependency for another package? do you use it? if there are other packages providing similar functionality, how does it compare? A: Dependency for new apertium-fra-cat (formerly apertium-fr-ca) - how do you plan to maintain it? inside a packaging team (check list at https://wiki.debian.org/Teams)? are you looking for co-maintainers? do you need a sponsor? A: Under debian-science. -- Kartik Mistry | IRC: kart_ {0x1f1f, kartikm}.wordpress.com signature.asc Description: PGP signature
Bug#815855: ITP: apertium-cat -- Apertium single language data for Catalan
Package: wnpp Severity: wishlist Owner: Kartik Mistry * Package name: apertium-cat Version : 1.0.0~r65787 Upstream Author : Francis M. Tyers , Kevin Brubeck Unhammer , Juan Pablo Martínez Cortés , Xavivars * URL : http://apertium.org/ * License : GPL-3+ Programming Lang: Description : Apertium single language data for Catalan Data package providing Apertium language resources for Catalan - why is this package useful/relevant? is it a dependency for another package? do you use it? if there are other packages providing similar functionality, how does it compare? A: Dependency for new apertium-fra-cat (formerly apertium-fr-ca) - how do you plan to maintain it? inside a packaging team (check list at https://wiki.debian.org/Teams)? are you looking for co-maintainers? do you need a sponsor? A: Under debian-science. -- Kartik Mistry | IRC: kart_ {0x1f1f, kartikm}.wordpress.com signature.asc Description: PGP signature
Bug#815849: ITP: tpm2-tools -- TPM (Trusted Platform Module) 2.0 tools
Package: wnpp Severity: wishlist Owner: "Mathieu Trudel-Lapierre" * Package name: tpm2-tools Version : 1.0 Upstream Author : Gang Wei * URL : https://github.com/01org/tpm2.0-tools * License : BSD Programming Lang: C, C++ Description : TPM (Trusted Platform Module) 2.0 tools This package includes tools to use for interacting with TPM chips for various purposes, such as for attestation, key management, encryption or signing. Since there seems to be a growing number of TPM-related packages in Debian it may be useful to combine efforts in a team.
Bug#815846: ITP: tpm2-tss -- TPM (Trusted Platform Module) 2.0 Software Stack
Package: wnpp Severity: wishlist Owner: "Mathieu Trudel-Lapierre" * Package name: tpm2-tss Version : 0.9.8 Upstream Author : Will Arthur * URL : https://github.com/01org/TPM2.0-TSS * License : MIT/BSD Programming Lang: C, C++ Description : TPM (Trusted Platform Module) 2.0 Software Stack TPM2.0-TSS is a software stack comprising a few layers: - Feature API (FAPI) - Enhanced System API (ESAPI) - System API (SAPI) - TPM Command Transmission Interface (TCTI) - Trusted Access Broker/Resource Manager (TAB/RM) These are used to interface with TPM chips to provide specific cryptographic services to the system in a secure manner. TPM2.0-TSS is a requirement (for tss2 and tcti) for tpm2-tools (TPM2.0-tools), for which I will file another ITP. It may be relevant here to merge efforts for maintaining TPM tools in a team, there has been lots of work by pollux in maintaining the trousers stack for which this project seeks to be an improvement / evolution.
Bug#815675: ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space
[ forwarded from debian-devel to have this included in the ITP ] From: Jakub Wilk Subject: Re: Bug#815675: ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space Newsgroups: gmane.linux.debian.devel.general To: debian-de...@lists.debian.org Date: Wed, 24 Feb 2016 23:26:11 +0100 * Brian May , 2016-02-25, 08:14: >I haven't seen the code myself, however one of the comments was: > > "just having whitespace in the destination directory will lead to a > crash, set -e is not used, and errors are redirected to /dev/null" > >This sounds to me like a recipe for security problems. I wouldn't worry about whitespace in destination directory. If the attacker can control were backups go, we have a bigger problem... But the bug density of this code is astounding: >ARCHIVE=$BACKUPHOME/$SERVER-backup-`date +%d-%m-%Y`.tar.gz Eww, little-endian dates. https://xkcd.com/1179/ ># create BACKUPHOME if not exists >mkdir -p $BACKUPHOME No umask set anywhere in this script, so in default setup the directory (and later, the backup files) will be created readable to anyone. >dpkg --get-selections| awk -F' ' '{print $1}' > $PKGLIST >RETVAL=$? >if [[ $RETVAL != 0 ]]; then >echo "Issue while performing dpkg --get-selections of > $SERVER" | mail -s "Issue while performing dpkg get selections of > $SERVER" $ADMINEMAIL Contrary to what the error message suggests, this catches only errors from awk, not from dpkg. >tar --preserve-permissions -z -c -f $ARCHIVE \ >--exclude=/var/lib/mysql/data \ >--exclude=$BACKUPHOME/$SERVER-backup* \ >--exclude=/var/log \ >--exclude=/var/cache/apt/archives \ >$EXCLUDES \ >/etc /var /home /opt /usr/local/bin > /dev/null 2>&1 What about /srv? Errors are hidden and ignored. ># remove old archive on the FTP > lftp -e "set ftp:ssl-allow no; Not only this program lets the backups be sent over unencrypted channel, but it even disables opportunistic TLS. >rm -f $SERVER-backup-`date -d "-$RETENTION day" +%d-%m-%Y`.tar.bz2;exit" -u >$FTPUSER,$FTPPASS $FTPSERVER > /dev/null 2>&1 This removal feature seems to work correctly only if you run backups every day, and never close to midnight. Wait, no, it doesn't work at all: the script creates .tar.gz, but then it tries to delete .tar.bz2. [Gratitude for the review would be best expressed by requesting removal of this package from the archive.] -- Jakub Wilk
Bug#815837: armci-mpi -- ARMCI-compatible implemntation using MPI RMA
Package: wnpp Severity: wishlist Owner: Debian Science Team * Package name: armci-mpi Version : 0.0 Upstream Author : The ARMCI-MPI Team at Argonne National Laboratory * URL : https://wiki.mpich.org/armci-mpi/index.php/Main_Page * License : OpenMPI license Programming Lang: C Description : ARMCI-compatible implementation using MPI RMA ARMCI-MPI is a completely rewritten implementation of the (Global Arrays) ARMCI one-sided communication interface that uses MPI RMA (remote memory access) for one-sided communication. . ARMCI-MPI is nearly feature-complete with respect to ARMCI as provided in Global Arrays. As of Global Arrays 5.2, ARMCI-MPI can be easily configured to work with Global Arrays and all the valid tests pass. . This package includes the MPI-3 branch of ARMCI-MPI (mpi3rma branch).
Bug#815675: ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space
Nikolaus Rath writes: > Alright. In your opinion, what should be the standard for getting > something packaged into Debian? Just because something does not get included in Debian, doesn't stop you from packaging it and distributing it outside Debian. In fact, in this case, it has certain advantages. You can release a new version whenever you want. You can require user's to have the latest version to get support. Debian is not stuck trying to support a legacy version in stable until LTS support ends. The security team is not stuck trying to patch security vulnerabilities in an obsolete version that the upstream maintainer lost interest in years ago. etc. I haven't seen the code myself, however one of the comments was: "just having whitespace in the destination directory will lead to a crash, set -e is not used, and errors are redirected to /dev/null" This sounds to me like a recipe for security problems. -- Brian May
Bug#774744: ITP: obs -- Open Broadcast Software
Hi Carl oOn 2015-12-15 00:29:08, Carl Fürstenberg wrote: > Back in February, I got som IRL issues, and frankly forgot about this; I've > no issue with having it under the multimedia team umbrella; I've uploaded > the code I made back then to https://github.com/azatoth/obs-studio and > rebased it only latest release; feel free to move it to DMT:s git repo if > you want to use this base. Thanks for all your work on this. I've rebased your debian/ changes on top of 0.13.2 at https://anonscm.debian.org/cgit/pkg-multimedia/obs-studio.git/. I'll upload it in the next couple of days. Cheers -- Sebastian Ramacher signature.asc Description: PGP signature
Processed: your mail
Processing commands for cont...@bugs.debian.org: > block 813073 by 814456 Bug #813073 [wnpp] ITP: pam-ufpidentity -- UFP Identity PAM module Bug #813074 [wnpp] ITP: identity4c -- UFP Identity C library 813073 was not blocked by any bugs. 813073 was not blocking any bugs. Added blocking bug(s) of 813073: 812728 and 814456 813074 was not blocked by any bugs. 813074 was not blocking any bugs. Added blocking bug(s) of 813074: 812728 and 814456 > Thanks Stopping processing here. Please contact me if you need assistance. -- 813073: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813073 813074: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813074 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#815763: marked as done (ITP: libfilezilla -- build high-performing platform-independent programs)
Your message dated Wed, 24 Feb 2016 18:02:43 + with message-id and subject line Bug#815763: fixed in libfilezilla 0.4.0.1-1 has caused the Debian Bug report #815763, regarding ITP: libfilezilla -- build high-performing platform-independent programs 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.) -- 815763: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815763 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist * Package name : libfilezilla Version : 0.4.0.1 Upstream Author : Tim Kosse * URL : https://lib.filezilla-project.org/ * License : GPL-2+ Description: build high-performing platform-independent programs (development) Free, open source C++ library, offering some basic functionality to build high-performing, platform-independent programs. Some of the highlights include: . - A typesafe, multi-threaded event system that's very simple to use yet extremely efficient - Timers for periodic events - A datetime class that not only tracks timestamp but also their accuracy, which simplifies dealing with timestamps originating from different sources - Simple process handling for spawning child processes with redirected I/O . This package contains the development files for the library. --- End Message --- --- Begin Message --- Source: libfilezilla Source-Version: 0.4.0.1-1 We believe that the bug you reported is fixed in the latest version of libfilezilla, 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 815...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Adrien Cunin (supplier of updated libfilezilla 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, 17 Feb 2016 16:04:03 +0100 Source: libfilezilla Binary: libfilezilla-dev libfilezilla0 Architecture: source amd64 Version: 0.4.0.1-1 Distribution: unstable Urgency: low Maintainer: Adrien Cunin Changed-By: Adrien Cunin Description: libfilezilla-dev - build high-performing platform-independent programs (development) libfilezilla0 - build high-performing platform-independent programs (runtime lib) Closes: 815763 Changes: libfilezilla (0.4.0.1-1) unstable; urgency=low . * Initial release (Closes: #815763) Checksums-Sha1: e96f4103a458588ec63aaaea21dd6a03f4752e84 1991 libfilezilla_0.4.0.1-1.dsc 8a1b7086bf0f5a2e33ec7098de3fa9deaa618523 373987 libfilezilla_0.4.0.1.orig.tar.bz2 b177fc6d1e1f7c51c4ccd5733a8bc8c728b69455 2000 libfilezilla_0.4.0.1-1.debian.tar.xz c20fe48c31bae2e008bfa08c33c9f68ce43c88ab 52592 libfilezilla-dev_0.4.0.1-1_amd64.deb a0e5af811af9e2dc2df7b9c56cf8c751b12d6f38 346656 libfilezilla0-dbgsym_0.4.0.1-1_amd64.deb f4bb94e371c0370fadbbcb63e6731c5f60374e02 32966 libfilezilla0_0.4.0.1-1_amd64.deb Checksums-Sha256: 8d3a1ae22248aa6af448b8ccd271d6273bf3d1785d9bff5e406c2b09cd78dd17 1991 libfilezilla_0.4.0.1-1.dsc 6003689254e9d250bcdefc1414dcc4a0d324fda3d59436a497e249b225f4b1d1 373987 libfilezilla_0.4.0.1.orig.tar.bz2 76776eacd664a338182ee62bab852cd830af31fa894d4bac5439458335d5dba4 2000 libfilezilla_0.4.0.1-1.debian.tar.xz 98aadb8edfbc2e48ba7711a6e4f2f67338883ca9ccdd1e787b0d1b7555e7b8e0 52592 libfilezilla-dev_0.4.0.1-1_amd64.deb 73590f1c1bb08b6206f1fd6b217146d56442d1a7f921955bbab93f9015a97c90 346656 libfilezilla0-dbgsym_0.4.0.1-1_amd64.deb d9aee810165e9635f868984f84c0dc41055d1040d4fcc22c91f0459b892b32d5 32966 libfilezilla0_0.4.0.1-1_amd64.deb Files: f8a12d4fddad7498c86a339a8195d3ef 1991 libs optional libfilezilla_0.4.0.1-1.dsc 5ac7c3b59079ef369ba2a8b89859c6af 373987 libs optional libfilezilla_0.4.0.1.orig.tar.bz2 4a2074ec05a96bd3031e5c34bf17bb59 2000 libs optional libfilezilla_0.4.0.1-1.debian.tar.xz 3dac413c4f0f63835d7ffe289ff42f97 52592 libdevel optional libfilezilla-dev_0.4.0.1-1_amd64.deb 6f601363f7919adad5b2e08b26269b3e 346656 debug extra libfilezilla0-dbgsym_0.4.0.1-1_amd64.deb 301f2ae8c62e71164869f8fd41b8e359 32966 libs optional libfilezilla0_0.4.0.1-1_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCAAGBQJWzY61AAoJEPNPCXROn13Zh60QAM+3ODLcZUjVSrGwDckIfURl Ni4Z61bnTLdJcrxX93gd1gMtKKApkG8iIuJm7JZpF5y8O85jjGXaARcOc+FrKm6K Tv6oYXzb20yWM+7RPDHAjGA
Processed: your mail
Processing commands for cont...@bugs.debian.org: > forcemerge 813073 813074 Bug #813073 [wnpp] ITP: pam-ufpidentity -- UFP Identity PAM module Bug #813074 [wnpp] ITP: identity4c -- UFP Identity C library 813074 was blocked by: 812728 814456 813074 was not blocking any bugs. Removed blocking bug(s) of 813074: 814456 and 812728 813074 was not blocked by any bugs. 813074 was not blocking any bugs. Removed blocking bug(s) of 813074: 812728 and 814456 Merged 813073 813074 > thanks Stopping processing here. Please contact me if you need assistance. -- 813073: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813073 813074: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813074 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#815675: ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space
On Feb 24 2016, Carl Chenet wrote: > - First please Nikolau, spare me the "I don't believe Debian developers > blablabla", this try to patronize me is offending. Don't like the script > and you think it should not be in Debian or even exist? Fine, let's > discuss about it. [..] > - I'm really aware it is a simple script, but I was not aware that the > "simple is beautiful" motto was dead. 47 lines so? You want to refuse > any program with line numbers <= bigvalue? That's a weird argument. > > - The script makes the job for me. It is simple, dead simple and suits a > usecase , my use case, and, moreover, it is a really early release. > Buggy? It's not perfect, It does not pretend to. But it will improve, as > any other free software project. Alright. In your opinion, what should be the standard for getting something packaged into Debian? I think it's hard to draw a line, but it's not hard to see that ftpbackup is on the wrong side of it. There is no minimum number of lines of code in a package, but that doesn't mean that any 47 line script needs to be packaged. There is no requirement for packages to be bug-free, but that doesn't mean that quality is not a criterion. The fact that the script does the job *for you*, and is indeed *dead simple* are actually arguments *against* packaging it. Your private script doesn't need to be in Debian, nor we need something that is dead-simple yet still extremely fragile (you will not even get a notification if some files couldn't be backed up). So please, Carl and ftpmasters, don't put this into Debian. Best, -Nikolaus -- GPG encrypted emails preferred. Key id: 0xD113FCAC3C4E599F Fingerprint: ED31 791B 2C5C 1613 AF38 8B8A D113 FCAC 3C4E 599F »Time flies like an arrow, fruit flies like a Banana.«
Bug#815817: ITP: golang-gopkg-validator.v2 -- Go package for validator library
Package: wnpp Severity: wishlist Owner: Nobuhiro Iwamatsu * Package name: golang-gopkg-validator.v2 Version : 0.0+git20160116 Upstream Author : Roberto Teixeira * URL : http://gopkg.in/validator.v2 * License : Apache 2.0 Programming Lang: Go Description : Go package for validator library Package validator implements value validations based on struct tags.
Processed: your mail
Processing commands for cont...@bugs.debian.org: > forcemerge 812728 814456 Bug #812728 [sponsorship-requests] RFS: identity4c/1.0-2 [ITP] -- UFP Identity C library Bug #814456 [sponsorship-requests] RFS: pam-ufpidentity/1.0-2 [ITP] -- UFP Identity PAM Module 813073 was blocked by: 814456 813073 was not blocking any bugs. Removed blocking bug(s) of 813073: 814456 813074 was blocked by: 812728 813074 was not blocking any bugs. Added blocking bug(s) of 813074: 814456 Removed annotation that Bug was owned by Gianfranco Costamagna . Bug #812728 [sponsorship-requests] RFS: identity4c/1.0-2 [ITP] -- UFP Identity C library Added tag(s) moreinfo. Merged 812728 814456 > thanks Stopping processing here. Please contact me if you need assistance. -- 812728: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812728 813073: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813073 813074: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813074 814456: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814456 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#815758: ITP: lektor -- A static content management system
Hi, On 02/24/2016 02:47 PM, Piotr Ożarowski wrote: >> I plan to maintain this within the DPMT team. > > Isn't PAPT more appropriate in this case? > I was thinking DPMT because it has an API that can be integrated in other apps. Is this a appropriate? My motivation to maintain this within DPMT is my my 0 knowledge of svn so if you think it cannot by included in DPMT (which seems reasonable) I ll probably maintain this in collab-maint until PAPT makes a transition to git as well :P Cheers, Orestis signature.asc Description: OpenPGP digital signature
Processed: gtranscribe: block ITP 815789 by RFS 815791
Processing commands for cont...@bugs.debian.org: > block 815789 by 815791 Bug #815789 [wnpp] ITP: gtranscribe -- simple GTK+ tool focussed on easy transcription of spoken words 815789 was not blocked by any bugs. 815789 was not blocking any bugs. Added blocking bug(s) of 815789: 815791 > stop Stopping processing here. Please contact me if you need assistance. -- 815789: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815789 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Processed: ITP: libfilezilla -- build high-performing platform-independent programs
Processing commands for cont...@bugs.debian.org: > owner 815763 Gianfranco Costamagna Bug #815763 [wnpp] ITP: libfilezilla -- build high-performing platform-independent programs Owner recorded as Gianfranco Costamagna . > stop Stopping processing here. Please contact me if you need assistance. -- 815763: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815763 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Processed: 651195
Processing commands for cont...@bugs.debian.org: > retitle 651195 ITP: squirrel -- lightweight highly attachable high-level > programming language Bug #651195 [wnpp] RFP: squirrel -- lightweight highly attachable high-level programming language Changed Bug title to 'ITP: squirrel -- lightweight highly attachable high-level programming language' from 'RFP: squirrel -- lightweight highly attachable high-level programming language' > owner 651195 ! Bug #651195 [wnpp] ITP: squirrel -- lightweight highly attachable high-level programming language Owner recorded as Fabian Wolff . > thanks Stopping processing here. Please contact me if you need assistance. -- 651195: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651195 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#815803: ITP: ruby-openstack -- OpenStack Ruby API
Package: wnpp Severity: wishlist Owner: Thomas Goirand * Package name: ruby-openstack Version : 1.1.2 Upstream Author : marios * URL : https://github.com/ruby-openstack/ruby-openstack * License : Expat Programming Lang: Ruby Description : OpenStack Ruby API This package provides Ruby Openstack Compute, Object-Store, Block Storage and Network bindings for the OpenStack API. Currently supports both v1.0 and v2.0 (keystone) auth.
Bug#815801: ITP: ruby-netaddr -- manipulating network addresses
Package: wnpp Severity: wishlist Owner: Thomas Goirand * Package name: ruby-netaddr Version : 1.5.1 Upstream Author : Dustin L. Spinhirne * URL : https://github.com/dspinhirne/netaddr * License : Apache-2.0 Programming Lang: Ruby Description : manipulating network addresses NetAddr easily handle advanced tasks such as automating the subnetting/supernetting of IP space, performing calculations on IP CIDR blocks, and other various items.
Bug#815760: (no subject)
retitle 815760 ITP: dpdk -- Data Plane Development Kit thanks Hi Christian, I'm setting the title for your ITP because you left the "Subject:" line in the message body. As I'm also not a DD, I can't help you with the sponsorship. Hope you find someone interested! Regards, Tiago. -- Tiago "Myhro" Ilieve Blog: https://blog.myhro.info/ GitHub: https://github.com/myhro LinkedIn: https://br.linkedin.com/in/myhro Montes Claros - MG, Brasil
Processed: Re: Bug#815760: (no subject)
Processing commands for cont...@bugs.debian.org: > retitle 815760 ITP: dpdk -- Data Plane Development Kit Bug #815760 [wnpp] (no subject) Changed Bug title to 'ITP: dpdk -- Data Plane Development Kit' from '(no subject)' > thanks Stopping processing here. Please contact me if you need assistance. -- 815760: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815760 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#815789: ITP: gtranscribe -- simple GTK+ tool focussed on easy transcription of spoken words
Package: wnpp Severity: wishlist Owner: Philip Rinn * Package name: gtranscribe Version : 0.3 Upstream Author : Philip Rinn * URL : https://github.com/innir/gtranscribe * License : GPL-3, LGPL-2.1 Programming Lang: Python Description : simple GTK+ tool focussed on easy transcription of spoken words gTranscribe is a simple GTK+ tool to transcribe audio files and other sources. The playback speed can be adjusted without changing the pitch of the voice. It supports spell checking and resuming at the last transcribed position.
Bug#802280: marked as done (ITP: python-django-localflavor -- Country-specific Django helpers)
Your message dated Wed, 24 Feb 2016 12:43:57 +0100 with message-id <56cd977d.9090...@oioannou.com> and subject line already uploaded has caused the Debian Bug report #802280, regarding ITP: python-django-localflavor -- Country-specific Django helpers 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.) -- 802280: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802280 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Orestis Ioannou * Package name: python-django-localflavor Version : 1.1 Upstream Author : Django Software Foundation and individual contributors * URL : https://pypi.python.org/pypi/django-localflavor * License : BSD-3 Programming Lang: Python Description : Country-specific Django helpers Django's "localflavor" packages offer additional functionality for particular countries or cultures. For example, these might include form fields for your country's postal codes, phone number formats or government ID numbers. This code used to live in Django proper -- in django.contrib.localflavor -- but was separated into a standalone package in Django 1.5 to keep the framework's core clean. For a full list of available localflavors, see http://django- localflavor.readthedocs.org/ --- End Message --- --- Begin Message --- This ITP is there by mistake. I must have filed 2 ITPs while working on django-localflavor. Cheers--- End Message ---
Bug#815763: ITP: libfilezilla -- build high-performing platform-independent programs
Package: wnpp Severity: wishlist * Package name : libfilezilla Version : 0.4.0.1 Upstream Author : Tim Kosse * URL : https://lib.filezilla-project.org/ * License : GPL-2+ Description: build high-performing platform-independent programs (development) Free, open source C++ library, offering some basic functionality to build high-performing, platform-independent programs. Some of the highlights include: . - A typesafe, multi-threaded event system that's very simple to use yet extremely efficient - Timers for periodic events - A datetime class that not only tracks timestamp but also their accuracy, which simplifies dealing with timestamps originating from different sources - Simple process handling for spawning child processes with redirected I/O . This package contains the development files for the library.
Bug#815760: (no subject)
Subject: ITP: dpdk -- Data Plane Development Kit Package: wnpp Owner: Christian Ehrhardt Severity: wishlist * Package name: dpdk Version : 2.2 Upstream Author : Thomas Monjalon * URL : http://dpdk.org/ * License : BSD (core libs), GPLv2 (kernel components) Programming Lang: C Description : Data Plane Development Kit 1. What is DPDK useful for DPDK is a set of libraries and drivers for fast packet processing. It was designed to run on any processors. The first supported CPU was Intel x86 and it is now extended to IBM Power 8, EZchip TILE-Gx and ARM. It runs mostly in Linux userland. A FreeBSD port is available for a subset of DPDK features. Main libraries - multicore framework - huge page memory - ring buffers - poll-mode drivers Usage These libraries can be used to: - receive and send packets within the minimum number of CPU cycles (usually less than 80 cycles) - develop fast packet capture algorithms (tcpdump-like) - run third-party fast path stacks Some packet processing functions have been benchmarked up to hundreds million frames per second, using 64-byte packets with a PCIe NIC. 2. Maintenance Plan I'm currently maintaining dpdk for ubuntu (launchpad.net/ubuntu/+source/dpdk) and the existing packaging should be suitable for Debian also. It'd be great to have this packaged in Debian too, so that we can share the work. I am looking for co-maintainers to help me with this. But I'm not a Debian developer, so I'd like to have a more Debian centric co-maintainer for a proper Debian expertise and opinion in all the work. I'm also no DD, so sponsors will be needed.
Bug#815758: ITP: lektor -- A static content management system
Package: wnpp Severity: wishlist Owner: Orestis Ioannou * Package name: lektor Version : 1.2 Upstream Author : Armin Ronacher * URL : http://getlektor.com/ * License : BSD-3 Programming Lang: Python Description : A static content management system A flexible static content management system for building complex and beautiful websites out of flat files for people who do not want to make a compromise between a CMS and a static blog engine. I plan to maintain this within the DPMT team.
Bug#808137: marked as done (ITP: eclipse-titan -- Eclipse Titan offers a free and open source (FOSS) compiler both for TTCN-3 and for ASN.1 (Abstract Syntax Notation One).)
Your message dated Wed, 24 Feb 2016 10:00:28 + with message-id and subject line Bug#808137: fixed in eclipse-titan 5.4.1-1 has caused the Debian Bug report #808137, regarding ITP: eclipse-titan -- Eclipse Titan offers a free and open source (FOSS) compiler both for TTCN-3 and for ASN.1 (Abstract Syntax Notation One). 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.) -- 808137: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808137 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Gergely Pilisi * Package name: eclipse-titan Version : 5.4.1 Upstream Author : Eclipse Foundation * URL : https://github.com/eclipse/titan.core * License : Eclipse Public License - v 1.0 Programming Lang: (C, C++, Flex, Bison, Expect, XML) Description : TTCN-3 is a standardized, modular language specifically designed for testing. Eclipse Titan offers a free and open source (FOSS) compiler both for TTCN-3 and for ASN.1 (Abstract Syntax Notation One). Titan is a TTCN-3 compilation and execution environment with an Eclipse-based IDE. TTCN-3 is a modular language specifically designed for testing (the acronym itself stands for Test and Test Conformance Notation), standardized by ETSI (see www.ttcn-3.org) and endorsed by ITU. The user of the tool can develop test cases, test execution logic and build the executable test suite for several platforms. Titan consists of a core part, executing in a Unix/Linux-like environment and a set of Eclipse plug-ins. Titan users would be happy if they can install Titan in an easy way using Debian package management. The developer team of Titan will provide a Debian package for every Titan release. --- End Message --- --- Begin Message --- Source: eclipse-titan Source-Version: 5.4.1-1 We believe that the bug you reported is fixed in the latest version of eclipse-titan, 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 808...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Gergely Pilisi (supplier of updated eclipse-titan 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, 23 Feb 2016 17:26:56 +0100 Source: eclipse-titan Binary: eclipse-titan Architecture: source amd64 Version: 5.4.1-1 Distribution: unstable Urgency: low Maintainer: Gergely Pilisi Changed-By: Gergely Pilisi Description: eclipse-titan - TITAN TTCN-3 toolset from the Eclipse project Closes: 808137 Changes: eclipse-titan (5.4.1-1) unstable; urgency=low . * Initial release. (Closes: #808137) Checksums-Sha1: 9322d9ef5a90a94066068d8e0c30ce6f2e677842 1825 eclipse-titan_5.4.1-1.dsc 22a2b1eaf7579cd1b0a1fb7769af0d3901c6fc6b 9102746 eclipse-titan_5.4.1.orig.tar.gz c7e49a82910c95937243790d62e1bb842efa6026 5840 eclipse-titan_5.4.1-1.debian.tar.xz 29ff5fcf8941339da03f5eda0158a5612d1a7ab5 2048952 eclipse-titan-dbgsym_5.4.1-1_amd64.deb 0bfbc7835aea9250f14ae5adfc552eaec63de5e8 10541144 eclipse-titan_5.4.1-1_amd64.deb Checksums-Sha256: 11ddaa79c095346019588a31877e7ab65604968af668a578b89ce050269911d3 1825 eclipse-titan_5.4.1-1.dsc 1af7444d8ea5d6bcd4c3e2fafde1d1ed0b19e1d02e38f96b829e51bf044e13c5 9102746 eclipse-titan_5.4.1.orig.tar.gz 0f4014bef38c7db02d4ed3e34a2b7ec60a80c1dc8df6bd5ec7cc4a62c821e1eb 5840 eclipse-titan_5.4.1-1.debian.tar.xz f1427bc34d31f47ef2c976adfbe41d25a69cb5e57219ba9ad693b8c13117613b 2048952 eclipse-titan-dbgsym_5.4.1-1_amd64.deb 052f430b72a75cb4b06cf99b06302c3ac530076d5b29f52b4eb4f944c06e1b67 10541144 eclipse-titan_5.4.1-1_amd64.deb Files: 48ab9d992312c2210586f7829d8393b1 1825 java optional eclipse-titan_5.4.1-1.dsc 2ebfe87b5faf3a505f55075fe69a9236 9102746 java optional eclipse-titan_5.4.1.orig.tar.gz 9395f8b8b81aeb1f0c587271972ed235 5840 java optional eclipse-titan_5.4.1-1.debian.tar.xz 7cf81233c3ec06748ef634a91cd81a87 2048952 debug extra eclipse-titan-dbgsym_5.4.1-1_amd64.deb 777a16a99ca740d87924ab45475c394e 10541144 java optional eclipse-titan_5.4.1-1_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCAAGBQJWzKGJAAoJEEsEP825REVAakEP/0CQfAVGb3nN5yGVW3+l7zkH gPdxrJVPI5i0KAvvWNFbR
Bug#815675: marked as done (ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space)
Your message dated Wed, 24 Feb 2016 10:00:42 + with message-id and subject line Bug#815675: fixed in ftpbackup 0.3-1 has caused the Debian Bug report #815675, regarding ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space 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.) -- 815675: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815675 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Carl Chenet * Package name: ftpbackup Version : 0.3 Upstream Author : Carl Chenet * URL : https://gitlab.com/mytux/ftpbackup * License : GPL Programming Lang: Shell Description : Script to backup your data from a Debian system to a ftp space Ftpbackup only saves a list of all the installed Debian packages, all your mysql databases in a dump and /etc, /var, /home /opt and /usr/local/bin directories to a user-specified ftp space. --- End Message --- --- Begin Message --- Source: ftpbackup Source-Version: 0.3-1 We believe that the bug you reported is fixed in the latest version of ftpbackup, 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 815...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Carl Chenet (supplier of updated ftpbackup 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: Thu, 18 Feb 2016 14:39:28 +0100 Source: ftpbackup Binary: ftpbackup Architecture: source all Version: 0.3-1 Distribution: unstable Urgency: low Maintainer: Carl Chenet Changed-By: Carl Chenet Description: ftpbackup - Script to backups your data from a Debian server to a ftp space Closes: 815675 Changes: ftpbackup (0.3-1) unstable; urgency=low . * New upstream release (Closes: #815675) Checksums-Sha1: 5c2b24b9c309a7eeda31c45d0184c741f684091e 1683 ftpbackup_0.3-1.dsc ff70ab1225cd4b93cfcf5798cdf175833c261041 15064 ftpbackup_0.3.orig.tar.gz b7ee7c06baa3e063eb3e45efe7a2c5d22478c846 1564 ftpbackup_0.3-1.debian.tar.xz a7a5ade5e1dac8a693d79705a852ee3c1722564a 4236 ftpbackup_0.3-1_all.deb Checksums-Sha256: e7bb7107a732120ecaf06949bb349982baa402f059e966738798f1c2b847b55a 1683 ftpbackup_0.3-1.dsc f864898b37f447383b580bf3b433131f058433f74076c99953587ef8c5a7f0b1 15064 ftpbackup_0.3.orig.tar.gz 6473bbda5e4d6e2339406f1c71e5086b3d078baa15592d9c01db1a02197c093e 1564 ftpbackup_0.3-1.debian.tar.xz df3860b230b3a8e007b990bd9d3ca54dfcf0a09b1cdac8cfe3ee3ab00a28ff91 4236 ftpbackup_0.3-1_all.deb Files: 0f1206f159c0b7c10d6572f78f744e80 1683 utils optional ftpbackup_0.3-1.dsc fe58202deeb40c786f8457160ff2f99e 15064 utils optional ftpbackup_0.3.orig.tar.gz 2b4fdb1b4d82f954b8121d5874aec715 1564 utils optional ftpbackup_0.3-1.debian.tar.xz 23ad898276f5a1fe57446cf17714c061 4236 utils optional ftpbackup_0.3-1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBAgAGBQJWzIQqAAoJEAJwonWM1zbisaoP/R26a5E2Xv8lvsuS81KoQreE 9Qn7cou3wnsZeo0EHC/9da26gpf76d9R9+5PYoYFHJFzXmg8b64d70ba40ue39I4 rsDlvVb5Qvr5lK8R8Hd1ey0HD1zHm6DNHtw/M6qkvmY40iw7sTAEy5pIaAXpveFA Ypjp8XYIj4Z4YkWedzidxdXn9FngkR3tIOIK/KJ+l3KbuoXe3oEW8/LGwqyX06hk 4Q2dEqiuA1+qjd5Ctm+ODIZwIjHy7UbfGSCtIS4FXjVqiaC7yjjruMqnpPwyNyh8 Uzw4FHpVDti1XZAMdURHUt0pYsbRGb3DJNNI1Rtd9xOMorcqPaqUlcmT5NKHXvdE EWSp+VLVBqsX0hIfz+jNjlqb29lR5B6FTVnV5iI3jMmHFKmeZrd1KbQaCVveK4XT xOR+2xp5FGTrhfVOUQpg+FrzkiTIoZfJOrygEqv6OxG1gx4D/c/u0mbmkFQz8J/E f3DIbHkCRAF/9BZtqcp2wWs/rBFJRrcHAZAWlC58LYVBoQLLS3XKwBkh1FS97UWa Xugf0RNpAnqygn/+cV6cswqRNG4Wy7DsBynC3dBRaFSuH/1phAnBK0Acc+bmzybF I32CcOcMAPBSzJ76uEiXvth18knFga6RR03DcI77HYRsvN83f0NqPWWDuEtlA7Fy 8nwSQZbx7ZJKeI06L9sV =WyWC -END PGP SIGNATURE End Message ---
Bug#815675: ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space
Arturo Borrero Gonzalez writes: > On 23 February 2016 at 20:52, Jose-Luis Rivas wrote: >> On 23/02/16, 08:37am, Nikolaus Rath wrote: >>> >>> I'm actually rather shocked that a Debian Developer would consider >>> letting this into the archive. Carl, I hope you just filed the ITP >>> before having looked at the program? >>> >> >> He wrote it. >> >> L6: # Copyright © 2013-2016 Carl Chenet >> > > You are all late, the package seems to be in NEW already [0]. > > I understand that the temptation to package own scripts/pet projects > is strong, I've felt it many times. > > [0] https://ftp-master.debian.org/new/ftpbackup_0.3-1.html Where I notice that it is claimed that: It was downloaded from https://github.com/chaica/twitterwatch which seems wrong to me. Cheers, Phil. -- |)| Philip Hands [+44 (0)20 8530 9560] HANDS.COM Ltd. |-| http://www.hands.com/http://ftp.uk.debian.org/ |(| Hugo-Klemm-Strasse 34, 21075 Hamburg,GERMANY signature.asc Description: PGP signature
Processed: Bug#813236 marked as pending
Processing commands for cont...@bugs.debian.org: > tag 813236 pending Bug #813236 [wnpp] ITA: debiancontributors -- Manage submissions to contributors.debian.org Added tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 813236: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813236 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#815733: RFP: twlog - ham log book program
Package: wnpp Severity: wishlist Package name : twlog Version : 3.4 Upstream Author : Ted Williams - WA0EIR URL : http://wa0eir.bcts.info License : GPL Description : twlog is a stand alone program intended to replace a paper logbook, but with additional features that allow it to interface with other programs. It can import data from twHamQTH and automatically fill in the stations call, QTH and name. It can also automatically send an eQSL to the worked station. When a call sign is put into the interface, it will search the log and display all previous QSO's with that station. twlog also provides the call in it's interface to any other programs. Currently, twpsk and twlog use this feature. -- 73 Ted W - wa0eir wa0eir.bcts.info There are 10 types of people in this world: those who understand binary, and those who don't.
Bug#813969: O: eyed
Hi, I use eyeD3 in a project and I intend to build a mantained package. Alex, will you be able to review and sponsor it ? Gaetano
Bug#815732: O: videotrans
Package: wnpp Severity: normal Hi, Due to the lack of time and interest, I'm orphaning videotrans. Cheers!