main-guide: dquilt: completion
Hello List: In the section 3 of the main-guide, `set up quilt', the tool dquilt is set up as an alias in ~/.bashrc (to be frank, I avoid `alias' in general): is there a simple way to make dquilt inherits the quilt completion stuff ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f1a1b33.20...@rezozer.net
upstream changelog in XML format
Hello List: I am working on the bibtool package. The changelog of the upstream package is in XML format and is named `Changes.xml'. Right now, I manage it by adding an override in the debian/rules file: override_dh_installchangelogs: dh_installchangelogs --keep Changes.xml Nevertheless, nothing is really done, in particular `Changes.xml' is not converted in text. I put the `--keep' option because I suspect that this kind of changelog file is a well know format in some `field' (even if I can not figure out which `field'). Is there a better way to deal with this `Changes.xml' ? I guess that I can add some stuff in the makefile to convert it in text format: do specific tools exist to convert this kind of changelog in text format ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f1cf97b.9000...@rezozer.net
Re: upstream changelog in XML format
Thanks for your reply: On 23/01/12 19:54, Samuel Bronson wrote: On Mon, Jan 23, 2012 at 1:08 AM, Jerome BENOIT wrote: Hello List: I am working on the bibtool package. The changelog of the upstream package is in XML format and is named `Changes.xml'. Right now, I manage it by adding an override in the debian/rules file: override_dh_installchangelogs: dh_installchangelogs --keep Changes.xml Nevertheless, nothing is really done, in particular `Changes.xml' is not converted in text. I put the `--keep' option because I suspect that this kind of changelog file is a well know format in some `field' (even if I can not figure out which `field'). Hmm. According to policy (section 12.7 of version 3.9.2.0): , | If an upstream changelog is available, it should be accessible as | `/usr/share/doc//changelog.gz' in plain text. If the | upstream changelog is distributed in HTML, it should be made available | in that form as `/usr/share/doc//changelog.html.gz' and a | plain text `changelog.gz' should be generated from it using, for | example, `lynx -dump -nolist'. If the upstream changelog files do not | already conform to this naming convention, then this may be achieved | either by renaming the files, or by adding a symbolic link, at the | maintainer's discretion.[1] ` This would seem to imply that you shouldn't be installing a file named "changelog.gz" containing anything other than (gzipped) plain text. I think that, if you install it, you should probably install it as "Changes.xml.gz". The --keep option link `Changes.xml.gz' to `changelog.gz': I am agree that it is not perfect, but at least lintian does not complain. Is there a better way to deal with this `Changes.xml' ? I guess that I can add some stuff in the makefile to convert it in text format: do specific tools exist to convert this kind of changelog in text format ? If I were you, I'd ask upstream about that I have just sent a couple of questions about it to the upstream maintainer. , or (since a quick google shows that this is a TeX-related program) ask about it on <http://tex.stackexchange.com> (a Q&A site about TeX with loads of extremely helpful people on it). The Q&A are about [La]TeX. BibTool is mainly a tool to manipulate BibTeX databases, and as such it is not directly related to [La]TeX. Then, I'd pass the (html or plaintext) output of any such tool to dh_installchangelogs, rather than passing Changes.xml. I will do that if there is an unambigous way to convert it: what is really needed is it schema, which should be in its header. Thanks, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f1e043f.2050...@rezozer.net
Re: upstream changelog in XML format
Hi ! On 24/01/12 02:57, Samuel Bronson wrote: On Mon, Jan 23, 2012 at 8:07 PM, Jerome BENOIT wrote: Thanks for your reply: You're quite welcome. On 23/01/12 19:54, Samuel Bronson wrote: On Mon, Jan 23, 2012 at 1:08 AM, Jerome BENOIT wrote: Is there a better way to deal with this `Changes.xml' ? I guess that I can add some stuff in the makefile to convert it in text format: do specific tools exist to convert this kind of changelog in text format ? If I were you, I'd ask upstream about that I have just sent a couple of questions about it to the upstream maintainer. Good. His answer is that his XML phase is over: in the next coming upstream version the Changes file will be in LaTeX format with provide tools to convert it in HTML format. I had a look on it in the CVS repository: I will be able to manage it. So, for now, I will let the set up as is and fix this part of the story when the new upstream is available (what it may happen soon according to the upstream maintainer. , or (since a quick google shows that this is a TeX-related program) ask about it on <http://tex.stackexchange.com>(a Q&A site about TeX with loads of extremely helpful people on it). The Q&A are about [La]TeX. BibTool is mainly a tool to manipulate BibTeX databases, and as such it is not directly related to [La]TeX. Eh, they aren't terribly picky: any part of a TeX system is considered fair game there, including just about everything on CTAN. The worst that is likely to happen is that nobody will answer; they aren't likely to close it as off-topic. Thanks, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f1edcf5.10...@rezozer.net
Re: upstream changelog in XML format
Hi ! On 24/01/12 10:30, Rupert Swarbrick wrote: Jerome BENOIT writes: Is there a better way to deal with this `Changes.xml' ? I guess that I can add some stuff in the makefile to convert it in text format: do specific tools exist to convert this kind of changelog in text format ? If I were you, I'd ask upstream about that I have just sent a couple of questions about it to the upstream maintainer. If the upstream maintainer is slow to reply, you could always write some simple xsl to convert this to a text changelog format. I've just scanned through the file and it looks simple enough... Not sure if this is "too hands on" for what a packager should be doing though. Also, presumably upstream has some xsl tools for parsing this, otherwise they wouldn't be forcing themselves to write so many angle brackets! :-) Indeed, this xml file is quite human readable. On the other hand, the upstream maintainer replied within a day, and he claimed that the new upstream version will be released soon with Changes written in LaTeX: so I hurry up to package my stuff in view to send him patches. Thanks, Jerome Rupert -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f1f6a51.4000...@rezozer.net
dput interferences
Hello List: Yesterday I upload my package with dput at http://mentors.debian.net : the uploading worked fine, and mentors.debian.net sent me a email. But it appeared that the URL of my package, http://mentors.debian.net/package/bibtool , is somehow wrong as there is some kind of interference: the announced `Uploader' is not me and I am not the one who sent the previous packages. The associated dsc file is fine: http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.53-1.dsc On the other hand, the ``Template for an RFS'' is wrong too: http://mentors.debian.net/package/rfs/bibtool I submitted the issue to supp...@mentors.debian.net , but I have not yet received any answer. So I feel stuck: is there a way to fix this issue ? despite it, can I begin to look for a sponsor ? Thanks, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f203895.8080...@rezozer.net
Re: dput interferences
Hello List: I have just tried to re-upload my package, but without success: I get the message: Package has already been uploaded to debexpo on mentors.debian.net Nothing more to do for bibtool_2.53-1_amd64.changes I guess that something has to be reset. Jerome On 25/01/12 22:11, Arno Töll wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 25.01.2012 18:15, Jerome BENOIT wrote: So I feel stuck: is there a way to fix this issue ? despite it, can I begin to look for a sponsor ? I just fixed that. Please re-upload your package and you will be the owner of it. Of course this does not prevent you to look for sponsors nonetheless. - -- with kind regards, Arno Töll IRC: daemonkeeper on Freenode/OFTC GnuPG Key-ID: 0x9D80F36D -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJPIG/0AAoJEMcrUe6dgPNt/Y8QALDcruQIwqphhft0SrADX+bH 4W2ZdPSTwnbvplhY75rA1Zk9Woj4rVMGdXF/ivv2zPS3tFgJR+eFSMi+c0AccCna 9wLNgzGL5sbh+RK+ON7tCxGujCh0Zg9AdjiEUZwFiPZ8bGpcsibi8jzaoVXMDLEI 0buBYKzUPn4ylsGqc/iqFczKXDbvHsTNJw+N25ecCW2tVp6/2wl9N9rIFVNLscW5 CeAVFicjGqekVrx/sbAEKHAT1OfEa2a0vM7pyBJwBPXGx5JsqSJKbhmdhZfSV809 juQlREdbnPSIhELb7ILFJkd1tEsKMn2FkZ7t2utr/cdkpSOpVu91ej+v2wpw1QMJ CRJRJWCvuBWYhj3NwowbpNCfEV0Yc/Z+jkBiZrjIKkMaux2RuGrBwHKOMvahKvWd XmcD8d3WR7DzhhY6zM9qhS6k7XiSROE0SIBT2gUc6J7TH2qA37gP6TgOlxM3kpNC DKNAHkss2VY+g/T9moFErv6HOtVlwbMWhJytgXtuXM/kjjfc11uB02+sIITJ4Aad hpHHYq9JJIFiryMNc32OzIB3Qn4pZyL2b2pBTRjfQWqZ9yJF5cjVXYZJi1hPOIqQ XN+VRJnEgvNpLm5fyMkT40kyExg4oZrY983tZIUtCihhQe533Gy9cxFDbGPtX/Ai KsjV4jT51my/6LmBQBTt =eZR5 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f208076.7000...@rezozer.net
Re: dput interferences
Thanks for the prompt reply: the re-upload finally succeeded. Now I will step forward: find a sponsor. Jerome On 25/01/12 23:23, Arno Töll wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 25.01.2012 23:21, Jerome BENOIT wrote: Package has already been uploaded to debexpo on mentors.debian.net Nothing more to do for bibtool_2.53-1_amd64.changes Remove the .upload file or pass -f to dput. That's a local error. - -- with kind regards, Arno Töll IRC: daemonkeeper on Freenode/OFTC GnuPG Key-ID: 0x9D80F36D -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJPIIDrAAoJEMcrUe6dgPNt49AP/2lWc2MCInSrkcoSUCtsIFjf RhwRYDEnFuAFOeYrne8Cm6jV7onk29KRWRSo+BTHlP685M6MGn+g0NMLRMqekym4 SnmXbvThomvrXjksw8eeok0nqpUBVTeqO3tZwHxVJOlzj2v8+isAbU+WW2XfxWrl RjfVd0qejKSksMKBnEXqGwu3080nVT1JQAhb7uZ/90vSoyMZ4u5iUrM7sqhOWXEH kcjkYfAWZMcCR5DnSNhfwm8gIEHhYTZzk+SQBoN+q7Z6KziKlu7u+j8pTTopqsbW if1/DU3zeQ7WxLjn8ZFX1dloXcX6gznIB6tv8NivgWAh3KgzcSYsZys5/+K6t+H9 yUXA1LkMGsgpc5KzbabO/o5reWoWI3Q5uYdtuUsmFsdJBrMK/+oGmVZSboaTA2BJ +fvdSd0yatnP5oILPAYdssBGOulZzldFK6DFCqpxnLHxjw1M6hKDd4NMkl9ywKol wd/pE9qSzZlQvigAb75UJk8MOzqzizlgO69ihlU6vBURdfBi9J9Ez0ypJKYyWuUx R/w6h6xqrdVBkN0CWGkJ9Z2uEPeDzxXHgwCK3nebsJD8HzSq5XtvdWpZmpjTwx// QQps3yc5MCWZcjqqx1AbD9TvQ+82LuwPIgU2ceydGfev6hrzQuwOJeRul9hVEmxX wmJjlSXXXQCqG3NLy7og =fLag -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f2083f5.6090...@rezozer.net
RFS: bibtool
Dear mentors, dear TeX maintainers: I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.53-1 Upstream Author :Gerd Neugebauer * URL :http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool for BibTeX database manipulation To access further information about this package, please visit the following URL: http://mentors.debian.net/package/bibtool Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.53-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f208a04.1020...@rezozer.net
Re: RFS: bibtool
Hello: Thanks for your comments. On 26/01/12 11:31, Etienne Millon wrote: Hello, I had a quick look at your package. d/changelog: * New upstream version. * Several bugfixes in the upstream version (Closes: #535581). You can probably merge those two ones (New upstream version (Closes: #535581)). done d/changelog: * Close "crossref field does not force ordering" bug since this behaviour is a feature according to the upstream maintainer: comments were saved in README.Debian (Closes: #291134). * Close "Probably surplus warning message" bug because this behviour is actually managed according to the upstream maintainer: comments were saved in README.Debian (Closes: #187255). I think that it's better not to unclutter README.Debian with this information. Just send it to the BTS at the address nnn-done@b.d.o (don't forget the version pseudoheader) is probably enough. The added comments in README.Debian were removed, and the debian/changelog was modified accordingly. Otherwise, which legitimacy I have to send to the BTS. d/rules: The top comments are useless, you can remove them. done d/TODO should be removed too. done: I will keep it on my box. The debian/copyright was corrected as well: lintian failed to detect non ASCII chars. Have a nice day ! I have just uploaded the revisited version. Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f213587.4090...@rezozer.net
Re: RFS: bibtool
Hello: On 26/01/12 12:52, Etienne Millon wrote: * Alexander Reichle-Schmehl [120126 12:27]: Please don't do that, as that doesn't really describe what change satisfies the bug to be closed. Better is: * New upstream version. * Change handling of nockenwellen to solve problem with Aussenspiegeln (Closes: #123456) I agree, that's even better ! So I modified accordingly: the revisited version has been uploaded. Thanks. Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f214b3f.3000...@rezozer.net
Re: RFS: bibtool
On 26/01/12 16:23, Adam Borowski wrote: On Thu, Jan 26, 2012 at 12:14:15PM +0100, Jerome BENOIT wrote: The debian/copyright was corrected as well: lintian failed to detect non ASCII chars. Because they're perfectly fine. You're not supposed to mangle the names of copyright holders, etc. It should use UTF-8. I somehow can't seem to find a policy paragraph specifying this (an omission?), but at least common sense specifies that :p Here it was not fine because it was the `Source' field: I guess that I made a copy/paste mistake at one stage. Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f21718c.4030...@rezozer.net
sponsorship-requests
Hello List: where can we grab the source of the sponsorship-requests Debian package ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f26ea94.8090...@rezozer.net
RFS: bibtool (orphaned)
Dear mentors, I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.53-1 Upstream Author : Gerd Neugebauer * URL : http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool for BibTeX database manipulation To access further information about this package, please visit the following URL: http://mentors.debian.net/package/bibtool Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.53-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f274e90.7020...@rezozer.net
Bug#658204: RFS: bibtool -- tool for BibTeX database manipulation
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.53-1 Upstream Author : Gerd Neugebauer * URL : http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool for BibTeX database manipulation To access further information about this package, please visit the following URL: http://mentors.debian.net/package/bibtool Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.53-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120131234303.10159.38281.report...@nen.dnsalias.org
creating an orig.tar.gz from a CVS
Hello List: what is the best Debian way to create a package orig.tar.gz from a CVS ? Thanks in advance. Best, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f2ace53.7030...@rezozer.net
Re: creating an orig.tar.gz from a CVS
Hello List: Let assume that the make target dist is not implemented :-) Cheers, Jerome On 02/02/12 19:14, Björn Esser wrote: Hello! Checkout from CVS. Run ./configure or equal. Run 'make tar' or 'make package' or 'make rpm' or 'make dist' or whatever the corresponding target in makefile is named. Then rename the produced tar.gz / bz2 to orig.tar.gz / bz2 Cheers, Björn. 2012/2/2 Jerome BENOIT: Hello List: what is the best Debian way to create a package orig.tar.gz from a CVS ? Thanks in advance. Best, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f2ace53.7030...@rezozer.net -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f2ae71e.6050...@rezozer.net
Re: creating an orig.tar.gz from a CVS
In short, I have to do it by hand. Jerome On 02/02/12 20:51, Thibaut Paumard wrote: Le 02/02/12 18:56, Jerome BENOIT a écrit : Hello List: what is the best Debian way to create a package orig.tar.gz from a CVS ? Thanks in advance. Best, Jerome cvs export -d module ... tar cvf - | gzip -9> package_version.orig.tar.gz -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f2b0386.9050...@rezozer.net
Re: Work-needing packages report for Feb 3, 2012
Hello Lists: May I add that there are also packages waiting for a sponsor for uploading ? Cheers, Jerome On 03/02/12 01:26, w...@debian.org wrote: The following is a listing of packages for which help has been requested through the WNPP (Work-Needing and Prospective Packages) system in the last week. Total number of orphaned packages: 395 (new: 1) Total number of packages offered up for adoption: 150 (new: 0) Total number of packages requested help for: 59 (new: 0) Please refer to http://www.debian.org/devel/wnpp/ for more information. The following packages have been orphaned: prelink (#657967), orphaned 3 days ago Description: ELF prelinking utility to speed up dynamic linking Reverse Depends: prelink Installations reported by Popcon: 1895 394 older packages have been omitted from this listing, see http://www.debian.org/devel/wnpp/orphaned for a complete list. No new packages have been given up for adoption, but a total of 150 packages are awaiting adoption. See http://www.debian.org/devel/wnpp/rfa_bypackage for a complete list. For the following packages help is requested: apache2 (#646208), requested 103 days ago Description: Apache HTTP Server Reverse Depends: aegis-web apache2 apache2-dbg apache2-mpm-event apache2-mpm-itk apache2-mpm-prefork apache2-mpm-worker apache2-prefork-dev apache2-suexec apache2-suexec-custom (178 more omitted) Installations reported by Popcon: 60734 apt-xapian-index (#567955), requested 731 days ago Description: maintenance tools for a Xapian index of Debian packages Reverse Depends: adept ept-cache fuss-launcher packagesearch Installations reported by Popcon: 51120 asymptote (#517342), requested 1070 days ago Description: script-based vector graphics language inspired by MetaPost Installations reported by Popcon: 2993 athcool (#278442), requested 2655 days ago Description: Enable powersaving mode for Athlon/Duron processors Installations reported by Popcon: 96 balsa (#642906), requested 130 days ago Description: An e-mail client for GNOME Reverse Depends: balsa-dbg debreaper Installations reported by Popcon: 272 bastille (#592137), requested 544 days ago Description: Security hardening tool Installations reported by Popcon: 252 boinc (#511243), requested 1120 days ago Description: BOINC distributed computing Reverse Depends: boinc boinc-amd-opencl boinc-app-milkyway boinc-app-seti boinc-dbg boinc-nvidia-cuda Installations reported by Popcon: 1868 cardstories (#624100), requested 283 days ago Description: Find out a card using a sentence made up by another player Installations reported by Popcon: 5 chromium-browser (#583826), requested 613 days ago Description: Chromium browser Reverse Depends: chromium chromium-browser chromium-browser-dbg chromium-browser-inspector chromium-browser-l10n chromium-dbg chromium-l10n mozplugger Installations reported by Popcon: 9876 cryptsetup (#600777), requested 470 days ago Description: configures encrypted block devices Reverse Depends: cryptsetup cryptsetup-udeb libcryptsetup-dev libguestfs0 libpam-mount ltsp-client mandos-client partman-crypto-dm rescue-mode systemd Installations reported by Popcon: 7390 cvs (#354176), requested 2170 days ago Description: Concurrent Versions System Reverse Depends: cvs-autoreleasedeb cvs-buildpackage cvs2cl cvs2html cvschangelogbuilder cvsconnect cvsd cvsps cvsservice cvssuck (8 more omitted) Installations reported by Popcon: 17682 dctrl-tools (#448284), requested 1559 days ago Description: Command-line tools to process Debian package information Reverse Depends: aptfs debian-goodies debtree dlocate haskell-devscripts javahelper libsbuild-perl linux-patch-debianlogo postgresql-server-dev-all simple-cdd (1 more omitted) Installations reported by Popcon: 14892 debtags (#567954), requested 731 days ago Description: Enables support for package tags Reverse Depends: goplay packagesearch Installations reported by Popcon: 2578 doc-central (#566364), requested 740 days ago Description: web-based documentation browser Installations reported by Popcon: 217 dpkg (#282283), requested 2629 days ago Description: dselect: a user tool to manage Debian packages Reverse Depends: a2ps acct ace-gperf acl2-doc ada-reference-manual-info adacontrol advi advi-examples alien alqalam (709 more omitted) Installations reported by Popcon:
Re: creating an orig.tar.gz from a CVS
Hello List: Thanks Xavier for the trick. After getting information from the upstream maintainer, it appears that the CVS have a dedicated Makefile to build the upstream package. Of course, this Makefile is not distributed within the upstream package, as other part of the CVS tree: the package is full of makefile mostly written by hand (meaning not generated with automake) that are meant to run on different OS. In short, it is a little messy and the debian/rules trick can not be applied here because the CVS tree source includes the package, but is not the package. Never mind, this certainly part of the job of the Debian maintainer to rationalise as far as possible the upstream package in view to apply the dh machinery. Cheers, Jerome On 06/02/12 15:00, Xavier Grave wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le 02/02/2012 22:43, Jerome BENOIT a écrit : In short, I have to do it by hand. You can still add a target in your debian/rules file to avoid doing it too many times :). See [1] for explanation for example about get-orig-source target. xavier [1] 4.9 in http://www.debian.org/doc/debian-policy/ch-source.html -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJPL9zqAAoJEG3iFwasTcfat/MP/A/EdEYe83zuisWheJa5Okgr kriYeGuNMTPjVpyNrpA6EqY/6OL+SV54i2p+7EzuJDSU7jtalG9+PMvP5uD4AmM/ h0ds2sMsM6BASBysmjJ15g0/gTPLewRKZEQ4xcdV6sOtw1jXfk+vPe4tV8z9v4gf v1SvGB/LPFAJrRDgCi32ZeWKPG9G6pmCC/NJir4DCT3IO2yq30dn7ep3Oz9bcHba pvVDn6ZlUZ74s4/8XZz/xmOGX3ScuTX0/k3BtPBa9pEtle/Hws/waz6C7F66ULMa mr+FARrCyLAHvr01lGYxC8/yxms++yq7blBpktQFkJwmrFh5Mp6L25bw/EPDaTtz KaSXXVjcf2vUbNV9w0NKq2KGj+zQ1Qk0bOVvsKXjJ/t62zBdrlGF73qhbHDCHJlu v63kggr4roqax61ISCddS6kZ6KBKTZ/REroVCq+drNHCziouNK8lFqvzAPjCdR1m lklStiu3GbJ+7mVBRqY0yMr5uyNAEeneOFhFbjCMJwg4gNwkR7xV4Q5Eseyy5ACG eEVfn/JXfJ0pziefBLNf3/Rn6Cxjh2itIYhjD/6QS4R84YxYPCYOrQDxZHbY6r+T EicWbkpt60JJggKwhqBoKdkcvbR+ngCowcYJYF4gkm83UVIgGgfIshj8/Ndd0X5f OCbVp4BpXUDPs73xskWg =WdQp -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f2ff110.9040...@rezozer.net
Re: why does debian packaging think ITP is still open?
Hello List: what is the status of an orphaned package but that is waiting for an sponsor to be uploaded ? Thanks, Jerome On 07/02/12 16:59, Paul Elliott wrote: If I look at my package thru debian packaging: http://packages.qa.debian.org/libs/libswe.html It thinks my ITP #635672 is still open. However the changelog file contains a entry like this: . libswe (1.77.00.0001-1) unstable; urgency=low * Initial release (Closes: #635672)<635672 is the bug number of your ITP> * done dh_make much configuring remains to be done. * remove emacsen-* ... Why does packaging not see this? Have I made a mistake? -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f3155c9.1000...@rezozer.net
sponsorship-requests and orphaned status
Hello List: I understand that it can take some time to get a package sponsored. Nevertheless, when the involved package is orphaned, it would be a good idea to change its status to reflect the fact it is indeed orphaned, but also on the way to be adopted: a kind of limbo status. Thanks. hth, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f31dde4.60...@rezozer.net
sponsorship-requests and status
Hello List: I understand that it can take some time to get a package sponsored. Nevertheless, when the involved package is orphaned, it would be a good idea to change its status to reflect the fact it is indeed orphaned, but also on the way to be adopted: a kind of limbo status. Thanks. hth, Jerome -- Jerome BENOIT jgmbenoit-at+rezozer*dot_net -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f31ddb3.3040...@rezozer.net
Re: sponsorship-requests and orphaned status
Hello List: On 08/02/12 03:42, Michael Gilbert wrote: Nevertheless, when the involved package is orphaned, it would be a good idea to change its status to reflect the fact it is indeed orphaned, but also on the way to be adopted: a kind of limbo status. Do you mean something like: http://www.debian.org/devel/wnpp/orphaned_byage Anyone can adopt an orphaned package. Just put some work into it and send a bug to sponsorship-requests. I did, but my package has not been yet sponsored: somehow `my' package has been already adopted, but it is still orphaned: something marking this kind of temporary situation should exist, and you be good for Debian and the adopter. Cheers, Jerome Best wishes, Mike -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f31eeb8.2040...@rezozer.net
Re: sponsorship-requests and orphaned status
Hi ! On 08/02/12 05:04, Dean Evans wrote: On Wed, 08 Feb 2012 04:40:40 +0100 Jerome BENOIT wrote: Hello List: On 08/02/12 03:42, Michael Gilbert wrote: Nevertheless, when the involved package is orphaned, it would be a good idea to change its status to reflect the fact it is indeed orphaned, but also on the way to be adopted: a kind of limbo status. Do you mean something like: http://www.debian.org/devel/wnpp/orphaned_byage Anyone can adopt an orphaned package. Just put some work into it and send a bug to sponsorship-requests. I did, but my package has not been yet sponsored: somehow `my' package has been already adopted, but it is still orphaned: something marking this kind of temporary situation should exist, and you be good for Debian and the adopter. Cheers, Jerome You should use the existing wnpp bug report #525921 to state your intention to adopt instead of creating a new one. Please add a note to #525921 that you are intending to adopt the package, retitle it from O: to ITA: as described here [0][1] and you can also set your self as the owner of the bug report as well if you like. [0] http://www.debian.org/Bugs/server-control [1] http://www.debian.org/devel/wnpp/ done You should also add [ITA] to the subject line of your RFS bug report as well, as described here [2]. I will for the next intend. For this one, is there a way to add [ITA] ? Thanks in advance, Jerome [2] http://wiki.debian.org/Mentors/BTS Hopefully you will find a sponsor soon. Thanks, Dean -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f320496.4060...@rezozer.net
Re: creating an orig.tar.gz from a CVS
Hello List On 06/02/12 15:00, Xavier Grave wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le 02/02/2012 22:43, Jerome BENOIT a écrit : In short, I have to do it by hand. You can still add a target in your debian/rules file to avoid doing it too many times :). See [1] for explanation for example about get-orig-source target. I read it a again, and it could useful for an other package: does someone know Debian packages using get-orig-source in d/rules ? Thanks in advance, Jerome xavier [1] 4.9 in http://www.debian.org/doc/debian-policy/ch-source.html -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJPL9zqAAoJEG3iFwasTcfat/MP/A/EdEYe83zuisWheJa5Okgr kriYeGuNMTPjVpyNrpA6EqY/6OL+SV54i2p+7EzuJDSU7jtalG9+PMvP5uD4AmM/ h0ds2sMsM6BASBysmjJ15g0/gTPLewRKZEQ4xcdV6sOtw1jXfk+vPe4tV8z9v4gf v1SvGB/LPFAJrRDgCi32ZeWKPG9G6pmCC/NJir4DCT3IO2yq30dn7ep3Oz9bcHba pvVDn6ZlUZ74s4/8XZz/xmOGX3ScuTX0/k3BtPBa9pEtle/Hws/waz6C7F66ULMa mr+FARrCyLAHvr01lGYxC8/yxms++yq7blBpktQFkJwmrFh5Mp6L25bw/EPDaTtz KaSXXVjcf2vUbNV9w0NKq2KGj+zQ1Qk0bOVvsKXjJ/t62zBdrlGF73qhbHDCHJlu v63kggr4roqax61ISCddS6kZ6KBKTZ/REroVCq+drNHCziouNK8lFqvzAPjCdR1m lklStiu3GbJ+7mVBRqY0yMr5uyNAEeneOFhFbjCMJwg4gNwkR7xV4Q5Eseyy5ACG eEVfn/JXfJ0pziefBLNf3/Rn6Cxjh2itIYhjD/6QS4R84YxYPCYOrQDxZHbY6r+T EicWbkpt60JJggKwhqBoKdkcvbR+ngCowcYJYF4gkm83UVIgGgfIshj8/Ndd0X5f OCbVp4BpXUDPs73xskWg =WdQp -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f33264d.1090...@rezozer.net
Bug#659207: RFS: tth [ITA] -- TeX/LaTeX to HTML converter
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "tth". * Package name: tth Version : 4.03-1 Upstream Author : Ian Hutchinson * URL : http://sourceforge.net/projects/tth/ * License : GPL-2+ Section : tex It builds those binary packages: tth - TeX/LaTeX to HTML converter tth-common - Scripts common to tth and ttm ttm - TeX/LaTeX to MathML converter To access further information about this package, please visit the following URL: http://mentors.debian.net/package/tth Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/t/tth/tth_4.03-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120209060710.20487.2343.report...@nen.dnsalias.org
RFS: tth [ITA,] [upstream, zeroth] -- TeX/LaTeX to HTML converter
Dear mentors, dear TeX maintainers: I am looking for a sponsor for my package "tth". * Package name: tth Version : 4.03-1 Upstream Author : Ian Hutchinson * URL : http://sourceforge.net/projects/tth/ * License : GPL-2+ Section : tex It builds those binary packages: tth - TeX/LaTeX to HTML converter tth-common - Scripts common to tth and ttm ttm - TeX/LaTeX to MathML converter To access further information about this package, please visit the following URL: http://mentors.debian.net/package/tth Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/t/tth/tth_4.03-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f33d938.8000...@rezozer.net
upstream changelog in LaTeX format
Hello List: The upstream changelog of my package is in LaTeX format: as the LaTeX is rough enough to be translated to HTML format by TtH, I will put the HTML translation within the package. Given that, what I am supposed to do with the LaTeX changelog source ? May I put it within the package as well ? What about its PDF version ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f360d10.1030...@rezozer.net
Re: upstream changelog in LaTeX format
Hello List: On 11/02/12 22:56, Don Armstrong wrote: On Sat, 11 Feb 2012, Jerome BENOIT wrote: The upstream changelog of my package is in LaTeX format: as the LaTeX is rough enough to be translated to HTML format by TtH, I will put the HTML translation within the package. Given that, what I am supposed to do with the LaTeX changelog source ? May I put it within the package as well ? What about its PDF version ? You should at the very least include the LaTeX source in the source package (hopefully upstream already does this). Of course. During the build process, build a text-only version (using catdvi FE) I tried catdvi to compare against the combination (html2text * tth): the text output produced by catdvi is really worth, so I will use the combination (html2text * tth). , and optionally include the PDF if that is helpful in addition. I will because the Config.tex plays a lot with font types. Thanks, Jerome Don Armstrong -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f385900.8020...@rezozer.net
how to manage d/changelog for updated but not yet sponsored package
Hello List: I am on the edge to put on m.d.n an updated version of one of my not yet sponsored packages: since between the two versions the upstream maintainer kindly integrated some patches that I submitted to him as Debian patches, I want to keep trace of it in the d/changelog by keeping my first version entry and adding a second entry. Can I do that ? Will it confuse some Debian robots ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f385be6.20...@rezozer.net
pbuilder: howto unset CONFIG_SITE
Hello List: I am beginning to play with pbuilder by following th maint-guide: right now my p[ersonal ]building is polluted by my CONFIG_SITE: what is the best way to discard it from the pbuilder machinery ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f39cdb7.3090...@rezozer.net
Re: pbuilder: howto unset CONFIG_SITE
Hello Again: It appears that CONFIG_SITE is used by dpkg-builpackage: the issue can be easily overcome by using debuild instead as debuild unset CONFIG_SITE. Can pbuilder use debuild instead of dpkg-builpackage ? Thanks, Jerome On 14/02/12 03:57, Jerome BENOIT wrote: Hello List: I am beginning to play with pbuilder by following th maint-guide: right now my p[ersonal ]building is polluted by my CONFIG_SITE: what is the best way to discard it from the pbuilder machinery ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f39e019.5020...@rezozer.net
Re: pbuilder: howto unset CONFIG_SITE
Hi: On 14/02/12 05:16, Jerome BENOIT wrote: Hello Again: It appears that CONFIG_SITE is used by dpkg-builpackage: the issue can be easily overcome by using debuild instead as debuild unset CONFIG_SITE. Can pbuilder use debuild instead of dpkg-builpackage ? This is a silly question as pbuilder is an alternative to debuild. So, in fact, as debuild, pbuilder may sanitize the environment. Sorry for the noise, Jerome Thanks, Jerome On 14/02/12 03:57, Jerome BENOIT wrote: Hello List: I am beginning to play with pbuilder by following th maint-guide: right now my p[ersonal ]building is polluted by my CONFIG_SITE: what is the best way to discard it from the pbuilder machinery ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f39ef6e.70...@rezozer.net
Bug#658204: RFS: bibtool -- tool for BibTeX database manipulation
Hello Benoit: Thanks for the look. On 15/02/12 12:05, Benoît Knecht wrote: Hi Jerome, Jerome Benoit wrote: I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.53-1 Upstream Author : Gerd Neugebauer * URL : http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool for BibTeX database manipulation I took a look at your package, here are a few comments: - debian/preinst has a comment saying it should be removed post-etch; now seems like it'd be a good time. - lintian gives a few warnings: P: bibtool source: source-contains-cvs-control-dir regex-0.12/doc/CVS P: bibtool source: source-contains-cvs-control-dir regex-0.12/CVS P: bibtool source: unversioned-copyright-format-uri http://dep.debian.net/deps/dep5 I tried to fix the warnings emitted by lintian, but the lintian on my boxdoes not report the one above: how can I reproduce this report. You may want to get in touch with upstream about that. I got in touch with the upstream maintainer a few week ago to report thisissue and to submit patches: the upstream maintainer kindly cleaned up the source of the coming version and he integrated all the patches except a cosmetic one. Since then, I have kept in touch with him to fix issues in the coming version. Also, ideally regex shouldn't be embedded in the source. I asked to the upstream maintainer to get ride of it: as he want to keep it: may I follow his wish for the coming package of the coming version ? or not ? - I'm not sure why you're closing bugs #291134 and #187255 in the changelog; they're not fixed by this upload in particular, they're just not considered bugs. I think you should close these bugs manually and remove those two entries from the changelog. I am agree: I just closed them the wrong way. I am working on it: the two entries were removed; I am now the owner of the bugs; I am on my way to close bugs #291134 and #187255. The second entry ("Features have been either"...) doesn't seem very useful; either give a brief summary of the changed features, or remove the entry entirely. The first entry ("New upstream version") essentially suggests that there are new or extended features, and users should know to check the upstream changelog already. (Actually, looking into it, there isn't even an entry for 2.53 in Changes.xml.) The entry was removed entirely. In the coming version, the changes are a reported in the LaTeX file `Changes.tex' which is up-to-date. In the coming package of the coming version, `Changes.xml' is replaced by `Changes.tex'. The `Changes.tex' LaTeX source is converted into HTLM format, then into a TXT format readable by human; it is also composed in PDF format as the upstream author play withfonts to comment changes. - In debian/copyright, you list yourself as the sole copyright holder for the files under debian/*, but you didn't do the packaging from scratch. What about the copyright of the previous maintainers? But I put a comment that mention them in the Comment entry: apparently isnot enough. I have just added Copyright entries for the two previous maintainers. - In the bibtool(1) man page, the FILES section states "none" and the DIAGNOSTICS section "many"; I think both sections should simply be removed. In the SEE ALSO section, the BibTool Manual is referred to as bibtool.tex, but this file isn't installed on Debian; instead, it should refer to bibtool.pdf.gz installed in /usr/share/doc/bibtool. Also, in the .TH header in bibtool.1, something more useful than "local" (like a date for instance) should be used. I am working on it. - Have you forwarded your patches for inclusion upstream? I forwarded my patches and the previous patches to the upstream maintainer: he kindly integrated all of them except a cosmetic one --- see the second answer above. I hope this helps. Cheers, Thanks, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f3bc12b.3030...@rezozer.net
Bug#658204: RFS: bibtool -- tool for BibTeX database manipulation
On 15/02/12 19:34, Benoît Knecht wrote: Guido van Steen wrote: I tried to fix the warnings emitted by lintian, but the lintian on my boxdoes not report the one above: how can I reproduce this report. Use the Lintian version in backports (or in Sid). Do not use the version in Stable. It is not updated. Yes, and run it with '-IE --pedantic' to get all the warnings. I did not played with enough option: this issue is solved. -- Jerome BENOIT jgmbenoit-at+rezozer*dot_net -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f3c634a.7030...@rezozer.net
repacking howto
Hello List: Is the following howto http://pkg-perl.alioth.debian.org/howto/repacking.html still relevant ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f3f0e25.2040...@rezozer.net
compressing .debian.tar in xz format automatically
Hello List: I would like to compress my .debian.tar tarballs with xz : is there a way to set up that for debuild and pbuilder ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f4073d9.3050...@rezozer.net
Bug#658204: RFS: bibtool -- tool for BibTeX database manipulation
Hello: I have just upload a revisited version of my package that addresses the below points when applicable. Please find below quick answers to the points. On 15/02/12 12:05, Benoît Knecht wrote: Hi Jerome, Jerome Benoit wrote: I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.53-1 Upstream Author : Gerd Neugebauer * URL : http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool for BibTeX database manipulation I took a look at your package, here are a few comments: - debian/preinst has a comment saying it should be removed post-etch; now seems like it'd be a good time. It was wiped out. - lintian gives a few warnings: P: bibtool source: source-contains-cvs-control-dir regex-0.12/doc/CVS P: bibtool source: source-contains-cvs-control-dir regex-0.12/CVS P: bibtool source: unversioned-copyright-format-uri http://dep.debian.net/deps/dep5 Using the relevant lintian options I could observed those warnings, and I fixed them (thanks to the upstream maintainer). You may want to get in touch with upstream about that. Also, ideally regex shouldn't be embedded in the source. I am considering to build a Debian Source to get ride of more useless material from a Debian perspective. - I'm not sure why you're closing bugs #291134 and #187255 in the changelog; they're not fixed by this upload in particular, they're just not considered bugs. I think you should close these bugs manually and remove those two entries from the changelog. Those bugs were closed are non bugs. The second entry ("Features have been either"...) doesn't seem very useful; either give a brief summary of the changed features, or remove the entry entirely. The first entry ("New upstream version") essentially suggests that there are new or extended features, and users should know to check the upstream changelog already. I am agree: I clean up this part. (Actually, looking into it, there isn't even an entry for 2.53 in Changes.xml.) - In debian/copyright, you list yourself as the sole copyright holder for the files under debian/*, but you didn't do the packaging from scratch. What about the copyright of the previous maintainers? fixed ! - In the bibtool(1) man page, the FILES section states "none" and the DIAGNOSTICS section "many"; I think both sections should simply be removed. In the SEE ALSO section, the BibTool Manual is referred to as bibtool.tex, but this file isn't installed on Debian; instead, it should refer to bibtool.pdf.gz installed in /usr/share/doc/bibtool. Also, in the .TH header in bibtool.1, something more useful than "local" (like a date for instance) should be used. I took the opportunity to update the bibtool.1 man page and to submit it to the upstream maintainer who kindly integrated it modulo minor changes. - Have you forwarded your patches for inclusion upstream? I got in touch with the upstream maintainer a few week ago to report issues and to submit patches: the upstream maintainer kindly cleaned up the source of the coming version and he integrated all the patches except a cosmetic one. Since then, I have kept in touch with him to fix more issues in the coming version. I hope this helps. It helped. Cheers, Thanks, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f407c79.5010...@rezozer.net
RFS: bibtool [ITA, upstream, second] - tool to manipulate BibTeX files
Dear mentors, dear TeX maintainers: I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.54+cvs20120219-1 Upstream Author :Gerd Neugebauer * URL :http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License :GPL-1+ Section : tex It builds those binary packages: bibtool- tool to manipulate BibTeX files To access further information about this package, please visit the following URL: http://mentors.debian.net/package/bibtool Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.54+cvs20120219-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f407f64.2050...@rezozer.net
Re: compressing .debian.tar in xz format automatically
Thanks for the prompt reply. On 19/02/12 05:09, Paul Wise wrote: On Sun, Feb 19, 2012 at 12:00 PM, Jerome BENOIT wrote: I would like to compress my .debian.tar tarballs with xz : is there a way to set up that for debuild and pbuilder ? There usually isn't any reason to do that since debian/ is usually very small anyway. If you really want to do that, the dpkg-source manual page documents a --compression=xz option. -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f408676.70...@rezozer.net
Re: RFS: bibtool [ITA, upstream, second] - tool to manipulate BibTeX files
Thank you very much for your upload ! Best regards, Jerome On 20/02/12 03:29, Norbert Preining wrote: On So, 19 Feb 2012, Jerome BENOIT wrote: http://mentors.debian.net/package/bibtool Thanks, checked, cowbuild, lintian-ed, install-tested, uploaded. Best wishes Norbert Norbert Preiningpreining@{jaist.ac.jp, logic.at, debian.org} JAIST, Japan TeX Live& Debian Developer DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 ESHER (n.) One of those push tapes installed in public washrooms enabling the user to wash their trousers without actually getting into the basin. The most powerful esher of recent years was 'damped down' by Red Adair after an incredible sixty-eight days' fight in Manchester's Piccadilly Station. --- Douglas Adams, The Meaning of Liff -- Jerome BENOIT jgmbenoit-at+rezozer*dot_net -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f41d958.70...@rezozer.net
versioning trouble
Hello List: Three days ago I uploaded for sponsoring my package with version 2.54+cvs20120219 which obviously cvs version. Meanwhile, more precisely yesterday, the upstream maintainer finally released version 2.54, so now I plan to upload an upstream version of my package with version 2.54. But, according to `dch', version 2.54 is less than 2.54+cvs20120219: how can I can manage it ? May I force version 2.54 ? may I use some work around here ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f443add.90...@rezozer.net
Re: versioning trouble
Thanks for the prompt reply. On 22/02/12 02:34, Paul Wise wrote: On Wed, Feb 22, 2012 at 8:46 AM, Jerome BENOIT wrote: Three days ago I uploaded for sponsoring my package with version 2.54+cvs20120219 which obviously cvs version. You should have used 2.54~cvs20120219 instead, since that sorts before 2.54 (note the special ~ character). My mistake: I will keep it in mind for next cvs based packages. Meanwhile, more precisely yesterday, the upstream maintainer finally released version 2.54, so now I plan to upload an upstream version of my package with version 2.54. But, according to `dch', version 2.54 is less than 2.54+cvs20120219: how can I can manage it ? May I force version 2.54 ? may I use some work around here ? If the package has not yet been uploaded to Debian, it was. just edit the changelog with your favourite text editor and change 2.54+cvs20120219 to 2.54 then update the packaging if needed. I will work around it by creating a Debian source package, 2.54+ds is greater than 2.54+cvs20120219: it planed to do so sooner or later, so I do it right now. Cheers, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f44480b.3020...@rezozer.net
Re: versioning trouble
On 22/02/12 02:41, Jakub Wilk wrote: * Jerome BENOIT , 2012-02-22, 01:46: Three days ago I uploaded for sponsoring my package with version 2.54+cvs20120219 which obviously cvs version. Meanwhile, more precisely yesterday, the upstream maintainer finally released version 2.54, so now I plan to upload an upstream version of my package with version 2.54. But, according to `dch', version 2.54 is less than 2.54+cvs20120219: This is correct. You should have used "~" instead of "+", because: 2.54~cvs20120219 << 2.54 << 2.54+cvs20120219 my mistake: I should understand this part of the story before how can I can manage it ? May I force version 2.54 ? may I use some work around here ? It would have been slightly easier for us if you said whether or not the package with such bad version has been uploaded to the archive, or at least mentioned the package name. I will assume that we're talking about bibtool, which has been already uploaded to unstable. hence my request. You cannot use a lower version than the existing one. dak would reject such upload. The options you have are: 1) Use an epoch. However, once use epoch, you have to carry it forever. 2) Invent a version that is bigger than 2.54+cvs20120219, e.g: - "2.54+cvssucks" or - "2.54+really" or - "2.54.". 2.54+ds 3) Instead of uploading 2.54, upload a CVS snapshot with a version number like "2.54+cvs20120212". 4) Wait until upstream releases 2.55. bibtool is maintained, but the upstream version period is of order of half year: this option is not reasonnable. 5) Build a Debian Sourced package: 2.54+ds So I got my lesson. Thanks, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f4449a8.3040...@rezozer.net
Re: versioning trouble
Thanks for the precision: versionning with cvs really confused me. On 22/02/12 05:43, Bartosz Feński wrote: W dniu 22.02.2012 02:42, Jerome BENOIT pisze: Thanks for the prompt reply. On 22/02/12 02:34, Paul Wise wrote: On Wed, Feb 22, 2012 at 8:46 AM, Jerome BENOIT wrote: Three days ago I uploaded for sponsoring my package with version 2.54+cvs20120219 which obviously cvs version. You should have used 2.54~cvs20120219 instead, since that sorts before 2.54 (note the special ~ character). My mistake: I will keep it in mind for next cvs based packages. For future uploads in your scenario another correct approach would be 2.53+cvs20120219, since it's really 2.53 + some changes from CVS dated 20120219. The tilde (~) character is useful if an upstream released alpha/beta/release-candidate. Then you can upload 2.70~beta1 for example and when there's final 2.70 version then 2.70-1 is still newer than this beta. Meanwhile, more precisely yesterday, the upstream maintainer finally released version 2.54, so now I plan to upload an upstream version of my package with version 2.54. But, according to `dch', version 2.54 is less than 2.54+cvs20120219: how can I can manage it ? May I force version 2.54 ? may I use some work around here ? If the package has not yet been uploaded to Debian, it was. just edit the changelog with your favourite text editor and change 2.54+cvs20120219 to 2.54 then update the packaging if needed. I will work around it by creating a Debian source package, 2.54+ds is greater than 2.54+cvs20120219: it planed to do so sooner or later, so I do it right now. Cheers, Jerome Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f448385.7010...@rezozer.net
debian/rules default
Hello List: What should be the default target for debian/rules ? Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f481722.30...@rezozer.net
Bug#661213: RFS: bibtool/2.54 (new upstream release) -- tool for BibTeX database manipulation
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.54+ds-1 Upstream Author : Gerd Neugebauer * URL : http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool to manipulate BibTeX files To access further information about this package, please visit the following URL: http://mentors.debian.net/package/bibtool Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.54+ds-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120225034449.15761.55176.report...@nen.dnsalias.org
RFS: bibtool/2.54 (new upstream release) -- tool for BibTeX database manipulation
Dear Mentors, dear TeX Maintainers, I am looking for a sponsor for my package "bibtool". * Package name: bibtool Version : 2.54+ds-1 Upstream Author : Gerd Neugebauer * URL : http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool to manipulate BibTeX files To access further information about this package, please visit the following URL: http://mentors.debian.net/package/bibtool Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.54+ds-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f485acb.8070...@rezozer.net
Re: RFS: bibtool/2.54 (new upstream release) -- tool for BibTeX database manipulation
Hello Thanks for your prompt reply: Please let me upload a revisited version: may I send you an email when the new version will be uploaded ? Thanks, Jerome On 25/02/12 05:21, Norbert Preining wrote: Hi Jerome, On Sa, 25 Feb 2012, Jerome BENOIT wrote: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.54+ds-1.dsc Comments: texdoc does still not find the bibtool.pdf, you have to run mktexlsr /usr/share/texmf (and make sure that mktexlsr is installed) or better run dh_installtex changelog: +bibtool (2.54+ds-1) unstable; urgency=low + ... + * Repack the source to gain some substantial weight by wiping out the +third-party old library regex-0.12 source, which is unnecessary as Debian +use regex from glibc, and material meant for non UN*X systems. Did you mean "loose" some substantial weight??? gain is increase. copyright: see above, plus: and material material meant doulbe "material" I would be glad if someone uploaded this package for me. Should I upload it like it is or do you want to provide a new -1 version? I am fine with both. Best wishes Norbert Norbert Preiningpreining@{jaist.ac.jp, logic.at, debian.org} JAIST, Japan TeX Live& Debian Developer DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 CRAIL (n. mineral) Crail is a common kind of rock or gravel found widely across the British Isles. Each individual stone (due to an as yet undiscovered gravitational property) is charged with 'negative buoyancy'. This means that no matter how much crail you remove from the garden, more of it will rise to the surface. Crail is much employed by the Royal Navy for making the paperweights and ashtrays used inside submarines. --- Douglas Adams, The Meaning of Liff -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f4865e6.8050...@rezozer.net
Re: RFS: bibtool/2.54 (new upstream release) -- tool for BibTeX database manipulation
Hi ! I have just uploaded a revisited version: 0] the typo were fixed; 1] now the texdoc can find bibtool.pdf Thanks, Jerome On 25/02/12 05:45, Norbert Preining wrote: On Sa, 25 Feb 2012, Jerome BENOIT wrote: may I send you an email when the new version will be uploaded ? Sure. Best wishes Norbert Norbert Preiningpreining@{jaist.ac.jp, logic.at, debian.org} JAIST, Japan TeX Live& Debian Developer DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 AHENNY (adj.) The way people stand when examining other people's bookshelves. --- Douglas Adams, The Meaning of Liff -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f4890fa.8080...@rezozer.net
RFS: tth/4.03+ds-1 [ITA] [upstream, first] -- TeX/LaTeX to HTML converter
Dear mentors, dear TeX maintainers: I am looking for a sponsor for my package "tth". * Package name: tth Version : 4.03+ds-1 Upstream Author : Ian Hutchinson * URL :http://hutchinson.belmont.ma.us/tth/ * License : GPL-2+ Section : tex It builds those binary packages: tth - TeX/LaTeX to HTML converter tth-common - Scripts common to tth and ttm ttm - TeX/LaTeX to MathML converter To access further information about this package, please visit the following URL: http://mentors.debian.net/package/tth Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/t/tth/tth_4.03+ds-1.dsc I would be glad if someone uploaded this package for me. Kind regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4f4adf5f.6080...@rezozer.net
Bug#663015: RFS: bibtool/2.54+ds-2 -- tool to manipulate BibTeX files
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "bibtool" * Package name: bibtool Version : 2.54+ds-2 Upstream Author : Gerd Neugebauer * URL : http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html * License : GPL-1+ Section : tex It builds those binary packages: bibtool- tool to manipulate BibTeX files To access further information about this package, please visit the following URL: http://mentors.debian.net/package/bibtool Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/b/bibtool/bibtool_2.54+ds-2.dsc More information about hello can be obtained from http://www.example.com. Changes since the last upload: * Bump debhelper build-dep to >= 9. * Bump Standards Version to 3.9.3. * Hardened. * Fix a typo in debian/control Description. Regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120308003026.1430.5605.report...@nen.dnsalias.org
Bug#663532: RFS: tth/4.03+ds-2 -- TeX/LaTeX to HTML converter
Package: sponsorship-requests Severity: normal Dearr Mentors: I am looking for a sponsor for my package "tth" * Package name: tth Version : 4.03+ds-2 Upstream Author : Ian Hutchinson * URL : http://sourceforge.net/projects/tth/ * License : GPL-2+ Section : tex It builds those binary packages: tth - TeX/LaTeX to HTML converter tth-common - auxiliary softwares for TtH and TtM ttm - TeX/LaTeX to MathML converter To access further information about this package, please visit the following URL: http://mentors.debian.net/package/tth Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/t/tth/tth_4.03+ds-2.dsc Changes since the last upload: * Bump debhelper build-dep to >= 9. * Bump Standards Version to 3.9.3. * Hardened. * Gather debian samples into debian/samples. Best regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120312012723.7134.65208.report...@nen.dnsalias.org
Re: Found neglected package
Hello: do you have a name ? Jerome On 05/07/12 21:59, Martin Eberhard Schauer wrote: Hi, can I orphan a package that obviously lacks maintainer interest (11 open bugs, 2 RC-NMUs in 2012, latest maintainer mail in June 2007, 8 bugs since then)? BTW: He is still active and looking for sponsors. Cheers, Martin -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4ff5f455.8070...@rezozer.net
upstream changelog at website only
Hello List: I am package a library from scratch. The upstream source package contains no changelog file, but the library website provides matter to extract one for it. I guess that I may have to extract the changelog file from the website: may I forget it ? is there any tool to do so ? Any hint is welcome. Best wishes, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/50051e24.9040...@rezozer.net
Re: upstream changelog at website only
Hi ! On 17/07/12 10:24, Simon Chopin wrote: Quoting Jerome BENOIT (2012-07-17 10:11:16) Hello List: Hi, I am package a library from scratch. The upstream source package contains no changelog file, but the library website provides matter to extract one for it. I guess that I may have to extract the changelog file from the website: may I forget it ? is there any tool to do so ? Any hint is welcome. A debian source package should be self-contained, which means that it should not rely on any resource outside of the source itself and its build-dependencies. If you'd download something off the internet, it would mean that rebuilding your package with the same system would not necessarily produce the same outcoming binary packages. Plus, there are buildds without Internet access. I'd contact upstream to see whether they would include the changelog in the tarball from the next release on, but in the mean time just don't worry about it, I don't think any potential sponsor will hold that against you. I have already contacted the upstream maintainer. I will ask him to include a changelog. Thanks, Jerome Cheers, Simon -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/500526fd.7020...@rezozer.net
Bug#681968: RFS: scscp-imcce/0.6.4+ds-1 [ITP] -- IMCCE SCSCP C Library
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "scscp-imcce" * Package name: scscp-imcce Version : 0.6.4+ds-1 Upstream Author : Mickael Gastineau * URL : http://www.imcce.fr/trip/scscp/ * License : CeCILL v2.0 Section : math It builds those binary packages: libscscp0 - IMCCE SCSCP C Library -- library package libscscp0-dev - IMCCE SCSCP C Library -- development package libscscp-doc - IMCCE SCSCP C Library -- reference manual libscscp0-dbg - IMCCE SCSCP C Library -- debug symbols package To access further information about this package, please visit the following URL: http://mentors.debian.net/package/scscp-imcce Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/s/scscp-imcce/scscp-imcce_0.6.4+ds-1.dsc SCSCP stands for Symbolic Computation Software Composibility Protocol. This protocol is developed by the European project SCIEnce - Symbolic Computation Infrastructure for Europe: http://www.symbolic-computing.org/ This C/C++ library, which is developed by the French Institute of Celestial Mechanics and Ephemeridesis Calculus (IMCCE) consists of an implementation of the SCSCP protocol. It provides an Application Programming Interface (API) to develop client and server applications to communicate with systems that support the SCSCP protocol, mainly Computer Algebra Systems (CAS). More information about scscsp-imcce can be obtained from http://www.imcce.fr/trip/scscp First upload. Regards, Jerome BENOIT -- System Information: Debian Release: Wheezy* APT prefers testing APT policy: (990, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.21-amd64-mbp62 (SMP w/4 CPU cores) Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120718084031.28297.88846.report...@nen.dnsalias.org
Bug#681968: RFS: scscp-imcce/0.6.4+ds-1 [ITP] -- IMCCE SCSCP C Library
Dear Mentors: On 18/07/12 11:22, Thibaut Paumard wrote: Le 18/07/12 10:40, Jerome Benoit a écrit : Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "scscp-imcce" [...] SCSCP stands for Symbolic Computation Software Composibility Protocol. This protocol is developed by the European project SCIEnce - Symbolic Computation Infrastructure for Europe: http://www.symbolic-computing.org/ Dear Jérôme, What about putting your package under collaborative maintenance in by the Debian Science Team? I am on my way to do so. See: http://debian-science.alioth.debian.org/debian-science-policy.html It may then be easier for you to find a sponsor within the team. I can help you with that (setting up a git repository on alioth and all) I will have an attentive look before asking. but I can't sponsor you (yet). Regards, Thibaut. Sincerely, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/50081603.5060...@rezozer.net
Re: Bug#681968: RFS: scscp-imcce/0.6.4+ds-1 [ITP] -- IMCCE SCSCP C Library
Hello: On 19/07/12 16:13, Jerome BENOIT wrote: Dear Mentors: On 18/07/12 11:22, Thibaut Paumard wrote: Le 18/07/12 10:40, Jerome Benoit a écrit : Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "scscp-imcce" [...] SCSCP stands for Symbolic Computation Software Composibility Protocol. This protocol is developed by the European project SCIEnce - Symbolic Computation Infrastructure for Europe: http://www.symbolic-computing.org/ Dear Jérôme, What about putting your package under collaborative maintenance in by the Debian Science Team? I am on my way to do so. See: http://debian-science.alioth.debian.org/debian-science-policy.html It may then be easier for you to find a sponsor within the team. I can help you with that (setting up a git repository on alioth and all) I will have an attentive look before asking. I have an account at Debian-Science. But I am confused now because it is not clear what is the next step. (The document seems very terse.) Any hint to step further is welcome. Sincerely, Jerome but I can't sponsor you (yet). Regards, Thibaut. Sincerely, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/500a94ad.50...@rezozer.net
Bug#681968: RFS: scscp-imcce/0.6.4+ds-1 [ITP] -- IMCCE SCSCP C Library
Dear Mentors: On 19/07/12 16:13, Jerome BENOIT wrote: Dear Mentors: On 18/07/12 11:22, Thibaut Paumard wrote: Le 18/07/12 10:40, Jerome Benoit a écrit : Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "scscp-imcce" [...] SCSCP stands for Symbolic Computation Software Composibility Protocol. This protocol is developed by the European project SCIEnce - Symbolic Computation Infrastructure for Europe: http://www.symbolic-computing.org/ Dear Jérôme, What about putting your package under collaborative maintenance in by the Debian Science Team? I am on my way to do so. Done ! See: http://debian-science.alioth.debian.org/debian-science-policy.html It may then be easier for you to find a sponsor within the team. I can help you with that (setting up a git repository on alioth and all) I will have an attentive look before asking. but I can't sponsor you (yet). Regards, Thibaut. Sincerely, Jerome Sincerely, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/5012122c.2060...@rezozer.net
Re: Bug#685042: ITP: libpam-ssh -- Authenticate using SSH keys
Hello: On 16/08/12 11:29, Thomas Goirand wrote: On 08/16/2012 09:01 AM, Jerome Benoit wrote: Package: wnpp Severity: wishlist Owner: Jerome Benoit * Package name: libpam-ssh Version : 1.97 Upstream Author : Akorty Rosenauer * URL : http://pam-ssh.sourceforge.net/ * License : BSD Programming Lang: C Description : Authenticate using SSH keys This PAM module provides single sign-on behavior for SSH. The user types an SSH passphrase when logging in and is authenticated if the passphrase successfully decrypts the user's SSH private key. In the PAM session phase, an ssh-agent process is started and keys are added. For the entire session, the user can SSH to other hosts that accept key authentication without typing any passwords. As much as I can see, the package is still in Debian (though removed from Wheezy). You shouldn't open an ITP for a package that is already in the archive. If your intention is to adopt the package, then you should follow the MIA process, have the package orphaned, then rename the orphaned bug as ITA (Intention To Adopt) adopt it by uploading new versions. And for that, there's no need for an ITP. The situation is ambiguous as I posted before in the debian-de...@lists.debian.org list: the package is not orphaned, was removed but it is still present. There is a void here, and it is why I asked on the list: it was suggested to make an ITP since it was removed. It appears that the Maintainer has retired from Debian. According to him, his Debian packages are orphaned, and he has no more access to his Debian account. Thanks for your intention to adopt this package, Cheers, Best wishes, Jerome Thomas Goirand (zigo) -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/502d002f.9060...@rezozer.net
Re: Bug#685042: ITP: libpam-ssh -- Authenticate using SSH keys
Hello: On 16/08/12 08:40, Neil Williams wrote: On Thu, 16 Aug 2012 03:01:33 +0200 Jerome Benoit wrote: Package: wnpp Severity: wishlist Owner: Jerome Benoit * Package name: libpam-ssh Version : 1.97 Upstream Author : Akorty Rosenauer * URL : http://pam-ssh.sourceforge.net/ * License : BSD Programming Lang: C Description : Authenticate using SSH keys This PAM module provides single sign-on behavior for SSH. The user types an SSH passphrase when logging in and is authenticated if the passphrase successfully decrypts the user's SSH private key. In the PAM session phase, an ssh-agent process is started and keys are added. For the entire session, the user can SSH to other hosts that accept key authentication without typing any passwords. Is this about using removable media to store the SSH private key to login to machines which only have the public key? NO ! That would be useful (but isn't that covered by existing PAM support?) Is this some form of hot-desking support? If not, why is this better than a user having a different password for login and for the SSH key? Why tie login to one of my SSH private keys? Let say that I used it to launch ssh-agent when I login (from console or desktop). The homepage doesn't make this clear, it sounds like the module just maps the user login via a graphical desktop manager to a particular SSH key the private key for which has to live on the system behind the login anyway. What's the point? I am agree that the descriptions on the homepage and within the Debian package are confusing: I will try to improve this part as well. Thanks, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/502d02fa.8020...@rezozer.net
Re: Bug#685042: ITP: libpam-ssh -- Authenticate using SSH keys
Hello: On 16/08/12 17:31, Antti-Juhani Kaijanaho wrote: On Thu, Aug 16, 2012 at 04:14:07PM +0200, Jerome BENOIT wrote: The situation is ambiguous as I posted before in the debian-de...@lists.debian.org list: the package is not orphaned, was removed but it is still present. There is no ambiguity. The package is present in unstable and thus is not "removed" in the sense that word is commonly used without qualifiers. (The proper way to describe what happened to the package is "removed from testing" - a release engineering action that doesn't imply any change in a package's maintainership.) There is a void here, and it is why I asked on the list: it was suggested to make an ITP since it was removed. An ITP is inappropriate so long as the package is present in unstable or experimental. According to its PTS ( http://packages.qa.debian.org/libp/libpam-ssh.html ): [2011-12-03] libpam-ssh REMOVED from testing (Britney) [2011-12-02] Removed 1.92-14 from unstable (Alexander Reichle-Schmehl) So I guess it must be considered as removed. It appears that the Maintainer has retired from Debian. In that case, the package likely is available for salvaging (that is, for taking over maintainership without going throug a period of formal ITA or O period). Best wishes, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/502d1446.50...@rezozer.net
pam-auth-update: how to write a pam-configs profile
Hello: I am pacakging a pam module, libpam-ssh to name it, and I would like to update its pam profile. In particular, I want its session mode to run after pam_tmpdir: how can it be done ? Formally I would place it in a Session-PostFinal field as pam_tmpdir is placed in the Session-Final field. Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/5036ddd1.2060...@rezozer.net
dh machinery and module how to export only given symbol
Hello: I have to build a module that exports only symbol with a given prefix: in the pre-dh debian/rules , something as CFLAGS="$(cflags) -Wl,--version-script,debian/.version" was use. I cannot figure out how to proceed within the dh machinery. Any hint is welcome. Thanks in advance, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/50381eb0.5070...@rezozer.net
Bug#685836: RFS: libpam-ssh/1.97+ds-1 [ITP] [UPSTREAM] [RESOLVED] [REINTRODUCTION]
Package: sponsorship-requests Severity: normal Dear Mentors, I am looking for a sponsor for my package "libpam-ssh" * Package name: libpam-ssh Version : 1.97+ds-1 Upstream Author : Wolfgang Rosenauer * URL : http://sourceforge.net/projects/pam-ssh * License : BSD Section : admin It builds those binary packages: libpam-ssh - Authenticate using SSH keys To access further information about this package, please visit the following URL: http://mentors.debian.net/package/libpam-ssh Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/libp/libpam-ssh/libpam-ssh_1.97+ds-1.dsc More information about hello can be obtained from http://pam-ssh.sourceforge.net/ Changes since the last upload: * Reintroduction release. (Closes: #685042, #664177) * New maintainer. * New upstream version. * Bump debhelper build-dep to >= 9. * Bump Standards Version to 3.9.3. * Rewrite debian/rules: - use dh sequencer with autoreconf support - hardened - mult-arch support. * Convert debian/copyright to DEP-5 format. * Revisit debian/control. * Add repack support: - add a dedicated debian/repack script - add repack support in debian/watch - add the optional get-orig-source target in debian/rules to get the currently packaged upstream tarball and to repack it. * Add a default target in debian/rules which basically queries package status with uscan; output in DEHS format. * Update OpenSSH embedded code. * Add ECDSA keys support. * Now files in $HOME/.ssh/login-keys.d with .disabled or .frozen as suffix are ignored. * Now TMPDIR and TMP are honoured when ssh-agent is spawned (implemented with libpam-tmpdir package in mind). * Revisit README.Debian and pam_ssh manpage to reflect changes. * Minor fixes and enhancements, thanks to Peter Marschall. Best wishes, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120825022416.32181.60517.report...@nen.dnsalias.org
Bug#685836: RFS: libpam-ssh/1.97+ds-1 reintroduction
On 25/08/12 08:14, Bart Martens wrote: On Sat, Aug 25, 2012 at 08:00:02AM +0200, Jerome BENOIT wrote: On 25/08/12 07:06, Bart Martens wrote: Is your goal to add this package to wheezy ? The package at mentors uploaded there on 2012-08-25 01:46 appears to have more minimal differences with 1.92-14. My primary goal is get it back: I guess it is too late to get it back for Wheezy, but I hope it will be fine for Jessie. Should I have done an intermediate packaging ? At least Dirk Heinrichs and Jan Christoph Uhde seem to want it back in wheezy. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664177 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685614 Can I do something about it right now ? Jerome Regards, Bart Martens -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503871a2.50...@rezozer.net
Bug#685836: RFS: libpam-ssh/1.97+ds-1 reintroduction
Hi Bart: I am agree this packaging bring a lot new material, but only on surface: the main new material is due to OpenSSH embedded code update, what was necessary to support the new ECDSA keys provided now by OpenSSH. My primary goal is get it back: I guess it is too late to get it back for Wheezy, but I hope it will be fine for Jessie. Should I have done an intermediate packaging ? Regards,] Jerome On 25/08/12 07:06, Bart Martens wrote: Hi Jerome, Is your goal to add this package to wheezy ? The package at mentors uploaded there on 2012-08-25 01:46 appears to have more minimal differences with 1.92-14. Regards, Bart Martens -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503869e2.8000...@rezozer.net
Re: dh machinery and module how to export only given symbol
Thanks for your quick reply: Meanwhile, I realized that I can modify the Makefile.am itself. Best wishes, Jerome On 25/08/12 07:39, Raphael Hertzog wrote: Hi, On Sat, 25 Aug 2012, Jerome BENOIT wrote: Hello: I have to build a module that exports only symbol with a given prefix: in the pre-dh debian/rules , something as CFLAGS="$(cflags) -Wl,--version-script,debian/.version" was use. I cannot figure out how to proceed within the dh machinery. With debhelper in compat 9 mode, it will set the various variables by using dpkg-buildflags. Thus you can use the facilities of dpkg-buildflags to extend such variables. See man dpkg-buildflags. export DEB_CFLAGS_MAINT_APPEND=... This is the recommended way nowadays. But in truth, setting and exporting variables should just work since dh will not overwrite existing environment variables. Cheers, -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/50386a64.4080...@rezozer.net
Bug#685836: RFS: libpam-ssh/1.97+ds-1 reintroduction
On 25/08/12 09:10, Ansgar Burchardt wrote: Bart Martens writes: You could, if you want that, create a package with version 1.92-15 based on version 1.92-14, and ask debian-release to add it to wheezy. It's very unlikely the release team will still accept a new package in wheezy at this stage. You could however provide a backport later. Let give it a try as a minimal change should be quickly doable: how may I proceed ? Jerome Ansgar -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/5038ed15.7090...@rezozer.net
Bug#685836: RFS: libpam-ssh/1.97+ds-1 reintroduction
Hello: On 25/08/12 17:19, Jerome BENOIT wrote: On 25/08/12 09:10, Ansgar Burchardt wrote: Bart Martens writes: You could, if you want that, create a package with version 1.92-15 based on version 1.92-14, and ask debian-release to add it to wheezy. It's very unlikely the release team will still accept a new package in wheezy at this stage. You could however provide a backport later. Let give it a try as a minimal change should be quickly doable: how may I proceed ? My minimally changed package libpam-ssh is ready: must I upload it to mentors.debian.net ? Jerome Jerome Ansgar -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503bb9e1.4080...@rezozer.net
Bug#686042: RFS: libpam-ssh/1.92-15 [ITP] [REINTRODUCTION] [MINIMAL CHANGE]
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "libpam-ssh" * Package name: libpam-ssh Version : 1.92-15 Upstream Author : Wolfgang Rosenauer * URL : http://sourceforge.net/projects/pam-ssh * License : BSD Section : admin It builds those binary packages: libpam-ssh - Authenticate using SSH keys To access further information about this package, please visit the following URL: http://mentors.debian.net/package/libpam-ssh Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/libp/libpam-ssh/libpam-ssh_1.92-15.dsc More information about hello can be obtained from http://pam-ssh.sourceforge.net/ . This is an intermediate package with minimal changes, mainly Debian changes, in view to reintroduce it into Wheezy. Changes since the last upload: * Reintroduction release. (Closes: #685042, #664177) * New upstream version. * Bump debhelper build-dep to >= 9. * Bump Standards Version to 3.9.3. * Rewrite debian/rules: - use dh sequencer with autoreconf support - hardened - mult-arch support. * Revisit debian/control. * Minor fixes. Best regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120827235621.445.17706.report...@nen.dnsalias.org
Bug#686046: RFS: scscp-imcce/0.7.0+ds-1 [ITP] -- IMCCE SCSCP C Library
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "scscp-imcce" * Package name: scscp-imcce Version : 0.7.0+ds-1 Upstream Author : Mickael Gastineau * URL : http://www.imcce.fr/trip/scscp/ * License : CeCILL v2.0 Section : math It builds those binary packages: libscscp-doc - IMCCE SCSCP C Library -- reference manual libscscp0 - IMCCE SCSCP C Library -- library package libscscp0-dbg - IMCCE SCSCP C Library -- debug symbols package libscscp0-dev - IMCCE SCSCP C Library -- development package To access further information about this package, please visit the following URL: http://mentors.debian.net/package/scscp-imcce Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/s/scscp-imcce/scscp-imcce_0.7.0+ds-1.dsc More information about scscp can be obtained from http://www.imcce.fr/trip/scscp/ First upload. Best wishes, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120828010308.8306.78631.report...@nen.dnsalias.org
Bug#686042: RFS: libpam-ssh/1.92-15 [ITP] [REINTRODUCTION] [MINIMAL CHANGE]
Hello: Yes, put this intermediate package to get libpam-ssh back to Wheezy. I really do think it is a minimal difference package as I only touched slightly the Debian part (mainly the debian/rule which was rendered minimal by using a pure dh approach) but not the source itself (except a couple of warning fixes): it is just a Debian update. Jerome On 28/08/12 07:22, Bart Martens wrote: Hi Jerome, Is your goal to add this package to wheezy ? The package at mentors uploaded there on 2012-08-27 23:55 appears to have more than minimal differences with 1.92-14. Regards, Bart Martens -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503c576d.50...@rezozer.net
Bug#686042: RFS: libpam-ssh/1.92-15 [ITP] [REINTRODUCTION] [MINIMAL CHANGE]
Hello Again: On 28/08/12 07:30, Jerome BENOIT wrote: Hello: Yes, put this intermediate package to get libpam-ssh back to Wheezy. I really do think it is a minimal difference package as I only touched slightly the Debian part (mainly the debian/rule which was rendered minimal by using a pure dh approach) but not the source itself (except a couple of warning fixes): it is just a Debian update. I have just realized that I wrongly put in the debian/changelog that the package underlies the `New upstream version': this false. I have just uploaded a new package that correct this stupid mistake. Best regards, Jerome Jerome On 28/08/12 07:22, Bart Martens wrote: Hi Jerome, Is your goal to add this package to wheezy ? The package at mentors uploaded there on 2012-08-27 23:55 appears to have more than minimal differences with 1.92-14. Regards, Bart Martens -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503c61db.5070...@rezozer.net
Re: Bug#686042: RFS: libpam-ssh/1.92-15 [ITP] [REINTRODUCTION] [MINIMAL CHANGE]
Hi Again: On 28/08/12 07:30, Jerome BENOIT wrote: Hello: Yes, put this intermediate package to get libpam-ssh back to Wheezy. I really do think it is a minimal difference package as I only touched slightly the Debian part (mainly the debian/rule which was rendered minimal by using a pure dh approach) but not the source itself (except a couple of warning fixes): it is just a Debian update. I have just realized that I wrongly put in the debian/changelog that the package underlies the `New upstrem version': this false. I uploaded a new version that correct this stupid mistake. Best regards, Jerome Jerome On 28/08/12 07:22, Bart Martens wrote: Hi Jerome, Is your goal to add this package to wheezy ? The package at mentors uploaded there on 2012-08-27 23:55 appears to have more than minimal differences with 1.92-14. Regards, Bart Martens -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503c601a.9090...@rezozer.net
Bug#686070: RFS: libpam-ssh/1.92-15 [ITP] [REINTRODUCTION] [RC RESOLVED]
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "libpam-ssh" * Package name: libpam-ssh Version : 1.92-15 Upstream Author : Wolfgang Rosenauer * URL : http://sourceforge.net/projects/pam-ssh * License : BSD Section : admin It builds those binary packages: libpam-ssh - Authenticate using SSH keys To access further information about this package, please visit the following URL: http://mentors.debian.net/package/libpam-ssh Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/libp/libpam-ssh/libpam-ssh_1.92-15.dsc More information about libpam-ssh can be obtained from http://pam-ssh.sourceforge.net/ . This is an intermediate package with minimal changes, mainly Debian changes, in view to reintroduce it into Wheezy. Changes since the last upload: * Reintroduction release. (Closes: #685042, #664177) * New maintainer. * Fix rebuild issue caused by libtool. (Closes: #634577) * debian/rules sligtly clean up. Best regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120828083822.17507.97611.report...@nen.dnsalias.org
Bug#686070: RFS: libpam-ssh/1.92-15 [REINTRODUCTION]
Hi: On 28/08/12 18:01, Bart Martens wrote: On Tue, Aug 28, 2012 at 06:42:41AM +, Bart Martens wrote: On Tue, Aug 28, 2012 at 05:22:45AM +, Bart Martens wrote: Hi Jerome, Is your goal to add this package to wheezy ? The package at mentors uploaded there on 2012-08-27 23:55 appears to have more than minimal differences with 1.92-14. I have the same comment for the package uploaded to mentors on 2012-08-28 06:11. Same comment for the one uploaded on 2012-08-28 08:26. So, what do you call a minimal change version ? Regards, Jerome Regards, Bart Martens -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503d0a22.4010...@rezozer.net
Bug#686070: RFS: libpam-ssh/1.92-15 [REINTRODUCTION]
Hi: On 28/08/12 20:28, Bart Martens wrote: On Tue, Aug 28, 2012 at 08:12:50PM +0200, Jerome BENOIT wrote: On 28/08/12 18:01, Bart Martens wrote: On Tue, Aug 28, 2012 at 06:42:41AM +, Bart Martens wrote: On Tue, Aug 28, 2012 at 05:22:45AM +, Bart Martens wrote: Hi Jerome, Is your goal to add this package to wheezy ? The package at mentors uploaded there on 2012-08-27 23:55 appears to have more than minimal differences with 1.92-14. I have the same comment for the package uploaded to mentors on 2012-08-28 06:11. Same comment for the one uploaded on 2012-08-28 08:26. So, what do you call a minimal change version ? In this case I would start from the package in stable and only add changes that conform to the freeze policy : http://release.debian.org/wheezy/freeze_policy.html I have just upload a new package that tries to stick to the above `Freeze Policy'. It is explicitly explained in the debian/changelog . I hope it will be fine. Regards, Jerome Regards, Bart Martens -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/503d1995.1060...@rezozer.net
Bug#686046: Fwd: RFS: scscp-imcce/0.7.0+ds-1 [ITP] -- IMCCE SCSCP C Library
Hello: Thanks a lot for your review. On 18/09/12 09:56, olivier.sal...@codeless.fr wrote: Hi, I cloned git repository to build the package. Here are my first comments. I gonna continue to have a look to the package. I used the get-orig-source target to download source package. It fails with git-buildpackage (see below). I am not surprised that git-buildpacakge fails because I have not played with it: I will revisit my stuff accordingly soon. Your clean target remove files that are inconsistent with the source tarball. After a clean, you should get same content than source. idem It seems you regenerate the pdf in doc. This is not mandatory if you provide the source (what you do). The texinfo source has to be patched to satisfied some Debian policy point: the regeneration of the PDF doc is so mandatory here. So either you build the pdf but must be able to go back to "source" status after a clean, either you remove the pdf from the source tarball, either you do not regenerate the pdf. The PDF is removed from the tarball and must be generated: I have to clean up my clean target. In debian/copyright, copyright should be Mickael Gastineau AND IMCCE-CNRS. Header files specifiy the IMCCE-CNRS affiliation. my mistake. osallou@debiansid:~/DEBIAN-SCIENCE/scscp-imcce$ git-buildpackage dh clean --with autoreconf dh_testdir debian/rules override_dh_auto_clean make[1]: Entering directory `/home/osallou/DEBIAN-SCIENCE/scscp-imcce' rm -rf doc/stamp-vti doc/version.texi doc/scscp.info dh_auto_clean make[1]: Leaving directory `/home/osallou/DEBIAN-SCIENCE/scscp-imcce' dh_autoreconf_clean dh_clean gbp:error: You have uncommitted changes in your source tree: gbp:error: # On branch debian # Changed but not updated: # (use "git add/rm..." to update what will be committed) # (use "git checkout --..." to discard changes in working directory) # #deleted:doc/scscp.info #deleted:doc/stamp-vti #deleted:doc/version.texi # no changes added to commit (use "git add" and/or "git commit -a") gbp:error: Use --git-ignore-new to ignore. I will work on the part soon. Best wishes, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/505843fd.1020...@rezozer.net
Bug#686070: libpam-ssh/1.92-15
Hello, On 31/10/12 14:12, Thibaut Paumard wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 package sponsorship-requests user sponsorship-reque...@packages.debian.org usertags 686070 for-wheezy thanks Le 30/10/2012 21:21, Michael Gilbert a écrit : control: retitle -1 RFS: libpam-ssh/1.92-15 [ITP] [REINTRODUCTION] Unfortunately this package was removed from unstable, so it won't be considered for upload until after wheezy unfreezes. Removing RC since as a NEW package the RC categorization does not apply. Best wishes, Mike Hi, Mike, I don't agree: this package *is* a valid candidate for an unblock, as is every package already in Squeeze. Jerome, seeking pre-approval from the release team would help your case. I have just filled a bug report in this sense to release.debian.org : #691988 Since Jerome explicitly said he was targeting wheezy, I'm setting the corresponding usertag. Regards, Thibaut. Best wishes, Jerome -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBCAAGBQJQkSOXAAoJEJOUU0jg3ChAp6YQAKcc5IvNISt4NHr6661QNZ31 YVsRwxo1QvJeaHqnzjfjamFL/GhWybHMwGbxDYkVzr9HF4Z9XqDkEHRXV2M/I9zx 1kqxpToz8PJz4yk8V3QtHUOgWUnu5W0wZPKYdZOvBpFaO5474tBWCmhhhrgga0G/ PArnu8shH1OjOJsO5gt3PO6pqVPyP0OtCT+jnOfwkZhgf3vIeZ5iXQNZrdwUsCPH vkAlLb99tqb+pOS1shbs5D7EoZ7mJzlgqoNGVgQV+5B2go9wAvBSN/D3aghyse8H wdPVuKGDqg8VesFC3cnmHYahFwJ2QmHGqSx1alPsCQdUVHXcGMHkzyaFg+WXm/vX cMP0JGQ7IUeeUe1gYrFzw66sSjvbXWyNdKvViciJwWSAzSl2cJOBb0RRlq7xcNE3 Kn6s2RQzbdUt10/cOBXgzK/Z57IKS5Xs3UIqz89raMBlcZ5jTXg0AHcvumHK9k+3 B98z6ln1eBao4bISqE6f1/+EH3tL0QAVk51Vcqqjrsdai4EKJWp6Ro+nrfxWw+zg W3vYp59KnSNDMM8irf9tZIkCDmhAlRY2wVLya8AaG1Xf+0E0L9UGcrFwhlr3aIEz I7RxtzpJoNvthFge992yQcmW773/3ixFVCfY8BYScpK8oi7hbtcUEOGHHJOXBTsX RhPXXu/rhVZ/0kCwvhV5 =x0ZV -END PGP SIGNATURE- -- Jerome BENOIT jgmbenoit-at+rezozer*dot_net -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/5091b0e4.6070...@rezozer.net
Bug#686070: libpam-ssh/1.92-15
Hello: On 31/10/12 14:36, Thibaut Paumard wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 package sponsorship-requests user sponsorship-reque...@packages.debian.org usertags 686070 - not-fit-for-wheezy thanks I'm removing the not-fit-for-wheezy tag since Thomas claims to have improved on that matter. It still have the tag `not-fit-for-wheezy'. I don't have time to check the package right now. Do you have the intention to sponsor it ? Best wishes, Jerome Regards, Thibaut. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBCAAGBQJQkSlUAAoJEJOUU0jg3ChAjuIP/jT956v97Pie/byOMly/r2q+ YhvnLzi7jwUmRTT8eC2ZWzhoNVqQia2eAmfJsx3zbnhQ4WKqq5TPwctOWkEtqBl1 D0HZxFIO3rQkxr1QktoSVfSOTnUm4SG0sPy4gG69vBfRFO74FR4b/oV6ISMVlA+D EgijLmbuJIjyLsQNBlwEcWfx/55AkUCGDT6ql1PPfzzGBctJTn+CgybPGEHrw91Q VizFUIRVyOq+pAhTGMxh4bRyzat55KXyAwjg2Ucbq/xcLKF1BKys31ZEErm4D0LA wZ1PgZbsg/REaqWMvRsB+2TA8upUFp1GIDVxNsy623cGEy60bMZPRnsn4++Wm3ov gqlG/PqWDSc+9GgltjTq/kE7xvNWh9UKagNvpNWx3R/0Zg5beVnKvUXJKzmsACwE EjQM2N2BSra4sf07OQ5UIGDphdxOl+1PCyCV6vpy4ZLgGRPvUMSvOLht3ZZBRrAH BkIR2LcHevVB25WMRWwZWULO095hKQF8lXxzUTJW6yRsWELPNYcjYN9/jx0Irl0+ ei7kkQM2ulz0ADEJjO2QGdQuwfPbzRjufWM3Mh/q5pnvY2q2j789xGIHo+fPtRjR 23Z0QnjKwAJ6N+/IqcOlfbzbY8ePxcwS+v0hR3Llmp6tpzxj59pfe/eW4iLGyAq5 H1gZR4SCVLQ1hsf7V160 =zbuq -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/5093e7b2.5030...@rezozer.net
Bug#702946: RFS: firehol/1.296-1 [ITA] -- easy to use but powerful iptables stateful firewall [new upstream version]
Package: sponsorship-requests Severity: normal Dear mentors, I am looking for a sponsor for my package "firehol" * Package name: firehol Version : 1.296-1 Upstream Author : Costa Tsaousis * URL : http://firehol.sf.net * License : GPL-2+ Section : net It builds those binary packages: firehol - easy to use but powerful iptables stateful firewall To access further information about this package, please visit the following URL: http://mentors.debian.net/package/firehol Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/f/firehol/firehol_1.296-1.dsc More information about hello can be obtained from http://firehol.sourceforge.net/ . Changes since the last upload: New upstream version Regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130313091152.7220.15889.report...@nen.dnsalias.org
Bug#705094: RFS: sanewall/0.9.9+ds-1 [ITP] -- easy to use but powerful iptables stateful firewall
Package: sponsorship-requests Severity: wishlist Dear mentors, I am looking for a sponsor for my package "sanewall" * Package name: sanewall Version : 0.9.9+ds-1 Upstream Author : Phil Whineray * URL : http://www.sanewall.org/ * License : GPL-2+ Section : net It builds those binary packages: sanewall - easy to use but powerful iptables stateful firewall -- program sanewall-doc - easy to use but powerful iptables stateful firewall -- reference To access further information about this package, please visit the following URL: http://mentors.debian.net/package/sanewall Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/s/sanewall/sanewall_0.9.9+ds-1.dsc More information about hello can be obtained from http://www.example.com. Comments: Sanewall is a fork of stalled FireHOL. Regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130410071005.11698.33905.report...@nen.dnsalias.org
Re: Bug#696899: can anybody sponsor an ITP for premake4 ?
On 17/04/13 10:56, Boris Pek wrote: Hi, 1. repackaging the orig.tar.gz without src/host/lua-5.1.4, adding a suffix to the version e.g. +dfsg1 (so we end up with premake4_4.3+dfsg1.orig.tar.gz) A suffix +dfsg is used in another meaning. Maybe use +ds or +repack instead? +ds for Debian Source For how to repack, you may have a look to one of my packages: bibtool or/and tth hth, Jerome Best wishes, Boris -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/516e68ee.9050...@rezozer.net
Re: doc-base and gzipped PDF files
Hello, On 08/07/13 17:01, Torquil Macdonald Sørensen wrote: > Hi! > > While working on the new mpich package, I am experiencing some problems > related to doc-base and gzipped PDF files. There are three such files, but > I'll focus on one of them to explain the problem. > > The mpich-doc package contains /usr/share/doc/install.pdf.gz, which is an > installation guide. In the package source, I have a file > debian/mpich-doc.doc-base.install, which contains the text: > > ** > Document: mpich-install-guide > Title: MPICH Installer's Guide > Author: Pavan Balaji et. al. > Abstract: Describes how to obtain and install MPICH. > Section: Programming/C > > Format: PDF > Files: /usr/share/doc/mpich-doc/install.pdf.gz > * > > This seems to work well during installation of the package, with no error > messages. When mpich-doc is installed, I can access the file by running > dhelp, going to the appropriate section, and clicking on the correct link. > Firefox will then ask me what do do with the *.pdf.gz file, and I ask it to > open it with evince, which works fine. > > But here comes the problem: When I uninstall mpich-doc, I get the following > error message: > > > Invalid format PDF for mpich-install-guide (MPICH Installer's Guide) > ** > > Does the doc-base system not support gzipped PDF files? In the doc-base > documentation, I see several other examples of gzipped files, e.g. *.ps.gz, > *.dvi.gz, *.info.gz, *.txt.gz and *.sgml.gz. > Are you working with dh tools suite? If yes, have you tried to let them to manage the compression part ? > Best regards > Torquil Sørensen Best wishes, Jerome > > -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/51dad66e.5030...@rezozer.net
Re: doc-base and gzipped PDF files
Hello Again, On 08/07/13 17:34, Torquil Macdonald Sørensen wrote: > On 08/07/13 17:10, Jerome BENOIT wrote: >> Hello, >> >> On 08/07/13 17:01, Torquil Macdonald Sørensen wrote: >>> Hi! >>> >>> While working on the new mpich package, I am experiencing some problems >>> related to doc-base and gzipped PDF files. There are three such files, but >>> I'll focus on one of them to explain the problem. >>> >>> The mpich-doc package contains /usr/share/doc/install.pdf.gz, which is an >>> installation guide. In the package source, I have a file >>> debian/mpich-doc.doc-base.install, which contains the text: >>> >>> ** >>> Document: mpich-install-guide >>> Title: MPICH Installer's Guide >>> Author: Pavan Balaji et. al. >>> Abstract: Describes how to obtain and install MPICH. >>> Section: Programming/C >>> >>> Format: PDF >>> Files: /usr/share/doc/mpich-doc/install.pdf.gz >>> * >>> >>> This seems to work well during installation of the package, with no error >>> messages. When mpich-doc is installed, I can access the file by running >>> dhelp, going to the appropriate section, and clicking on the correct link. >>> Firefox will then ask me what do do with the *.pdf.gz file, and I ask it to >>> open it with evince, which works fine. >>> >>> But here comes the problem: When I uninstall mpich-doc, I get the following >>> error message: >>> >>> >>> Invalid format PDF for mpich-install-guide (MPICH Installer's Guide) >>> ** >>> >>> Does the doc-base system not support gzipped PDF files? In the doc-base >>> documentation, I see several other examples of gzipped files, e.g. *.ps.gz, >>> *.dvi.gz, *.info.gz, *.txt.gz and *.sgml.gz. >>> >> Are you working with dh tools suite? >> >> If yes, have you tried to let them to manage the compression part ? > > Yes, I'm using the dh tools. I'm not manually doing anything to those files > debian/rules, so I guess those files are compressed automatically by > dh_compress, which I can see is being run near the end of the package build > procedure: > > . > . > . > make[1]: Leaving directory `/home/tmac/src/debian/mpich/mpich' >dh_installexamples -O--parallel >dh_installman -O--parallel >dh_perl -O--parallel >dh_link -O--parallel >dh_compress -O--parallel >dh_fixperms -O--parallel >dh_strip -O--parallel >dh_makeshlibs -O--parallel >dh_shlibdeps -O--parallel > . > . > . > > - Torquil > I would give a try with debian/mpich-doc.doc-base.install renamed debian/mpich-doc.doc-base (namaley without the .install extension). Otherwise I would give a try with the following entry in debian/mpich-doc.doc-base Files: /usr/share/doc/mpich-doc/install.pdf Note that one can force dh_compress not to compress through the exclude option: override_dh_compress: dh_compress --exclude=install.pdf You may try this approach in last resort. Finally, I suggest to give a less generic name to the `install.pdf' file, something as `mpich-install.pdf'. Jerome > -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/51dae4da.5050...@rezozer.net
Bug#725227: RFS: mpfrc++/0~20130902-1 [ITP #723839]
Package: sponsorship-requests Severity: wishlist Dear mentors, I am looking for a sponsor for my package "mpfrc++" * Package name: mpfrc++ Version : 0~20130902-1 Upstream Author : Pavel Holoborodko * URL : http://www.holoborodko.com/pavel/mpfr * License : GPL2+ or BSD-3-clause Section : math It builds those binary packages: libmpfrc++-dev - C++ wrapper for the GNU MPFR C library To access further information about this package, please visit the following URL: http://mentors.debian.net/package/mpfrc++ Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/main/m/mpfrc++/mpfrc++_0~20130902-1.dsc More information about MPFR C++ can be obtained from http://www.holoborodko.com/pavel/mpfr . Note that this package is needed by the already present libboost*-dev packages as the header file /usr/include/boost/math/bindings/mpreal.hpp include mpreal.h, namely the C++ wrapper provided by MPFR C++. Regards, Jerome BENOIT -- System Information: Debian Release: Wheezy* APT prefers wheezy APT policy: (990, 'wheezy'), (990, 'stable-updates'), (990, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.10.5-amd64-mbp62 (SMP w/4 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20131003023216.22621.62004.report...@nen.dnsalias.org
Re: debian/watch: Version based on file timestamp
Hello, On 16/10/13 17:27, Peter Pentchev wrote: > On Wed, Oct 16, 2013 at 02:44:50PM +0200, Patrick Matthäi wrote: >> Hi, >> >> for the geoip-database package I would like to add a watch file. The >> problem is: there are no real releases, so I am manualy monitoring >> the required files. >> >> Is it possible to get the upstream version of the remote file based >> on it's modified tag? e.g.: >> http://geolite.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip >> >> The required format is: MMDD > > I don't think it's possible to do it using just uscan. > > What would be possible is for you - or somebody else - to write some > kind of a redirector and host it somewhere; the redirector would fetch > upstream's webpage and return an HTML page containing a "link" to a > file with the timestamp in the name. It is possible that the same > redirector would have to implement the other part of the functionality - > upon a request for the file with the timestamp in the name, it would > fetch the real file from upstream and serve it as, well, the file with > the timestamp in the name. It might be prudent to also implement some > kind of local caching to prevent resource exhaustion DoS problems on too > many almost-simultaneous requests. > > It doesn't sound too hard; if nobody else steps up, I may try to write > something like this. An other possibility is to write to the upstream maintainer to ask for a versioned source tarball from his/her side. hth, Jerome > > G'luck, > Peter > -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/525eb742.1000...@rezozer.net
Bug#730623: RFS: nauty/25r6+ds-1 [ITA] -- library for graph automorphisms
Package: sponsorship-requests Severity: normal Dearr mentors, I am looking for a sponsor for my package "nauty" * Package name: nauty Version : 2.5r6+ds-1 Upstream Author : Brendan McKay Adolfo Piperno * URL : http://pallini.di.uniroma1.it * License : ad hoc Section : non-free/math It builds those binary packages: libnauty2 - library for graph automorphisms -- library package libnauty2-dbg - library for graph automorphisms -- debug symbols package libnauty2-dev - library for graph automorphisms -- development package nauty - library for graph automorphisms -- interface and tools nauty-doc - library for graph automorphisms -- user guide To access further information about this package, please visit the following URL: http://mentors.debian.net/package/nauty Alternatively, one can download the package with dget using this command: dget -x http://mentors.debian.net/debian/pool/non-free/n/nauty/nauty_2.5r6+ds-1.dsc More information about hello can be obtained from http://www.example.com. Changes since the last upload: nauty (2.5r6+ds-1) unstable; urgency=low * New upstream version. * New maintainer (Closes: #725407). * Debianization: - debian/copyright: - refresh; - bump format to DEP-5 . - debian/control: - introduce the debug symbols package libnauty-dbg; - gather documentations (user guide and technical notes) into the dedicated package nauty-doc; - Description fields, refresh; - debhelper build-dep, bump to >= 9; - Standards Version, bump to 3.9.4; - Vcs-* headers, canonicalize. - debian/patches/ patches: - autotoolize from scratch to permit a full dh integration (Closes: #727929); - prepend nauty- to the name of the nauty tools; - bump format to DEP-3. - debian/watch, update; - debian/repack, repack script to clean up and gain weight; - debian/rules: - fully integrate dh; - get-orig-source uscan based target which downloads the currently packaged upstream tarball and repacks it; - default target which basically queries package status with uscan -- output in DEHS format; - debian/ man pages, now generated on fly by help2man through the autotools machinery. - debian/*: - propagate SONAME `current version' index change due to new ABI; - introduce `version script' files to consolidate the ABI; - explicit multi-arch support. * Gather headers into a dedicated folder named after the package. * Provide a library for each nauty `variant' wrt upstream source tarball. * Provide pkg-config support (only for the nauty `automatic variant'). * Provide an ad hoc script to build (and clean) the upstream source examples. * Minor fixes, enhancements and full autotools support have been submitted to the upstream maintainers. -- Jerome Benoit Tue, 26 Nov 2013 20:27:57 + Regards, Jerome BENOIT -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20131127095223.10043.95443.report...@nen.dnsalias.org
Bug#826066: RFS: gmp-ecm/7.0.1+ds-1 [RC] -- factor integers using the Elliptic Curve Method
Package: sponsorship-requests Severity: serious Justification: fails to build from source (but built successfully in the past) Dear Sponsors, I am looking for sponsorship for the package gmp-ecm, a mathematical suite to factor integers. This very package brings a new micro upstream release that fixes FTBFS issues on some exotic machines. Thanks in advance, Jerome -- System Information: Debian Release: Jessie* APT prefers stable APT policy: (990, 'stable'), (500, 'stable-updates') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.7-ckt20-0001-mbp62 (SMP w/4 CPU cores) Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: sysvinit (via /sbin/init)
Bug#826312: RFS: mpfi/1.5.1+ds-4 [RC] -- multiple precision floating-point interval computation library
Package: sponsorship-requests Severity: normal Dear Sponsors, I am looking for sponsorship for the package mpfi, a mathematical C libray. This very release fix a RC transition issue as reported by piupart. Thanks in advance, Jerome -- System Information: Debian Release: Jessie* APT prefers stable APT policy: (990, 'stable'), (500, 'stable-updates') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.7-ckt20-0001-mbp62 (SMP w/4 CPU cores) Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: sysvinit (via /sbin/init)
ITA for an abandoned package: evolver case
Hello All, since a while I [0] have wanted to update the [surface] evolver package [1,2] because I used it a few years ego [and because I may use it a gain sooner or later]: I try to contact several times the current maintainer in view to get the package officially orphaned before any ITA submission. So far, I got no feed back. The package is clearly abandoned. Is there any Debian authority that have the permission to orphan it ? If not, what can be done ? Thanks, Jerome [0] https://qa.debian.org/developer.php?login=calculus%40rezozer.net&buildd=1 [1] https://packages.qa.debian.org/e/evolver.html [2] http://facstaff.susqu.edu/brakke/evolver/evolver.html
Re: ITA for an abandoned package: evolver case
Hi, On 08/06/16 09:51, Gianfranco Costamagna wrote: > Hi, > > > >> i am maintaining many packages, which were maintained by Adam >> originally. But all of them are team-maintained (Debian Science), >> and this one is not. >> >> AFAIK Adam is not active in Debian last several years. From my >> point of view, it will not be too offensive, if evolver will be >> moved under the roof of Debian Science and you can be added as an >> uploader of this package. But we need a confirmation from Adam or >> MIA-team, I think. > > > last activity is around 2012 according to db.d.o >> Another option for the time being is that you are preparing a new >> upload, file a bug against evolver ("new version...") and the >> package will be NMUed after some time. > > > I second this option, together with the move on debian-science of the > package. > > in the meanwhile, according to quantz, the MIA process started some > time ago (on 2016-05-24), so I guess you can start proposing patches > and open bugs, May I fill an ITA or something to signify that someone to working the [surface] evolver package ? and then somebody will sponsor the work (after some > reasonable time), together with a move to science team. > > > thanks! Cheers, Jerome > > Gianfranco > > > 2016-06-07 23:42 GMT+02:00 Jerome BENOIT > : >> Hello All, >> >> since a while I [0] have wanted to update the [surface] evolver >> package [1,2] because I used it a few years ego [and because I may >> use it a gain sooner or later]: I try to contact several times the >> current maintainer in view to get the package officially orphaned >> before any ITA submission. So far, I got no feed back. The package >> is clearly abandoned. Is there any Debian authority that have the >> permission to orphan it ? If not, what can be done ? >> >> Thanks, Jerome >> >> [0] >> https://qa.debian.org/developer.php?login=calculus%40rezozer.net&buildd=1 >> >> [1] https://packages.qa.debian.org/e/evolver.html >> [2] http://facstaff.susqu.edu/brakke/evolver/evolver.html >> >> -- debian-science-maintainers mailing list >> debian-science-maintain...@lists.alioth.debian.org >> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers
Re: ITA for an abandoned package: evolver case
Thanks for the reply. On 08/06/16 10:40, Gianfranco Costamagna wrote: > Hi, > >> May I fill an ITA or something to signify that someone to working > >> the [surface] evolver package ? > > A bug with patches should be enough, ITA means somebody orphaning the package > and only the maintainer/MIA team can do it. > > But a bug with patches and you proposing the maintainership is something > that might be appreciated by the community Right now the package rocks. But the upstream version is (very) old, and the Debian package material clearly needs some refreshment. Is a patch really appropriate here ? May I rather wait for clear orphaning instead ? Jerome > > G. >
how to build packages with a specific complier ?
Dear Forum: It appears that some tests fail for one of my package (gmp-ecm) on one architecture (s390x): after some investigation, it appears that it is a compiler issue: building with gcc-6 (instead of gcc-5) causes no issue. So now I want to impose the gcc-6 to d/rules ? What is the best way to do so ? Thanks in advance, Jerome
Bug#827383: RFS: gmp-ecm/7.0.1+ds-2 [RC] -- Factor integers using the Elliptic Curve Method
Package: sponsorship-requests Severity: serious Justification: fails to build from source (but built successfully in the past) Dear Sponsors, I am looking for sponsorship for the Debian package gmp-ecm [1], a mathematical package. This release mainly works around an unisolated gcc-5 issue for arch s390x which caused a FTBFS. Thanks in advance, Jerome [1] https://packages.qa.debian.org/g/gmp-ecm.html -- System Information: Debian Release: Jessie* APT prefers stable APT policy: (990, 'stable'), (500, 'stable-updates') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.7-ckt20-0001-mbp62 (SMP w/4 CPU cores) Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: sysvinit (via /sbin/init)
Bug#827383: RFS: gmp-ecm/7.0.1+ds-2 [RC] -- Factor integers using the Elliptic Curve Method
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hello Eric, On 15/06/16 20:57, Eric Heintzmann wrote: > > > Le 15/06/2016 à 16:41, Jerome Benoit a écrit : >> Package: sponsorship-requests >> Severity: serious >> Justification: fails to build from source (but built successfully in the >> past) >> >> Dear Sponsors, >> >> I am looking for sponsorship for the Debian package gmp-ecm [1], a >> mathematical package. >> This release mainly works around an unisolated gcc-5 issue for arch >> s390x which caused >> a FTBFS. >> > How did you fixed this issue ? > I would like to use you solution on gnustep-base. The lazy way. As it works well with gcc-6, the package is built with gcc-6 (only on s390x arch). See the git repository at Alitoh (and certainly sooner, the source material at Debian Sources). Cheers, Jerome > > Thanks > Eric > - -- Jerome BENOIT | calculus+at-rezozer^dot*net https://qa.debian.org/developer.php?login=calcu...@rezozer.net AE28 AE15 710D FF1D 87E5 A762 3F92 19A6 7F36 C68B -BEGIN PGP SIGNATURE- iQQcBAEBCgAGBQJXYcS4AAoJED+SGaZ/NsaL+REgAKrsZK6Smn/g3Aewm3To1/n1 4FPZ2MaJG1vZs5bT155s8j1tpvtz7rJHLrAsIWQ6STXiXXJrIj/hzYaHRdoH8EBY 9z3y6TYfps4ebG8TI802IFgrT25yQkuuvX9B1PO3Yh4OyZxme/fNj+wd5gcryiZu ue5Z5iHva4yX7ZtFhucrzv3NkYJS7CLWTdPXZLemDx1n9FwHwgGH9npAacTpyrwg wyg8bn0OQGScH6a1CcwuWQHDU36HC6LaL/FsfTrtBZ1QoDfkiQLMok5TXVql657X VQ0SHsl/rcx4PJ8RbT3Y5ea4gKCQzNbW/k9005u4JhU+cYv+/Ak6Kd8eOjsxurf3 PjNIaFStno36NIr69F2lHa1QVTAVNAoV1CmzPeAjYfX0xe37GNSYSbGGL4LydLVj jSg4xb+bwoFo9JPQTtrLH4FU89cedtWmvUZQQi4GbdOVmV/nmbc5CVmux6l/unES UKmZohYwW+L/06kbg9h+wQFQp+UWXhfWiWudaKEHIphymlaVqPk84CNJCyUHQ7dv Re5KmFIzkK9F8ZzxAqJ47i4DZksN2q4TAOwv6o+qIUynRTXK4k1Bge38tc8ElBJk tj9GJ3FzCF/W4ZrWdogvjb0NbLEUoI7lP44ULMVD9KMPi4jZv7b7VwJRzQyUXySs Ess8bwIMjTxX6R4N1Kcm5MgRJX9YaUH7VYIuspKz8eJwrkMGNjqVr98gyPRUOaFC c0WE0yid+RSRnakf1iCGsaBQrhlI3IvyY4/z2g7z+oZgb2Ot41vYQwoG2J9POOvB OCJMJ2OSlkHk21MCk797FQUDEArW4XmcQGYN6CHYzjDaf8ZaNmyYcrBx6h3KKHSS xgSUBFTizpJZsu2NF94/Jzdz1oMJMgQIwc+giT7L3NfkI9yB0TH4JHYl5hxxudAv 2U3hTzDsRjq0o1hypp6BN3BsPfUAYKtWt11+dOk2+biLIaBnizupupYsiCbsuSAl CXEgfgWtR3f/oAyQlrNbyyDnqIcUymHjXrZnXDmSlXXZfta/oTbbEHUEf4plr6h1 tcuyo45MvhyL01gAvakZwkYmWGl48yQWnI/OzGCyHpvDEfoXw9CDGFfKJy4XI3jx HyEG5b40/uJtzQodUE9ut2OsV8bB+7e4jBpOtamwBiQpRSqJJSmPXao2eq93s+cp wws3hCMXCe40VDNflzVaRZimDX+CoRbuuSf1i+wadPT1HHIEMBeHVaOBliARq0nu iBSIWonbcjR1DIcZhJccuCNBnBrdkGBs309YWUN5pAc5+iLyhnpxZ1AyahDbPy2b /rV0sw3RjAfqX3585+FN23UxswZDMg/Bd9dD2lPBT7zbAX8B16nrZcGCMiHNhok= =zYxV -END PGP SIGNATURE-
Re: how to build packages with a specific complier ?
On 15/06/16 20:54, Eric Heintzmann wrote: > How can we debug with upstream, without any access to a 390x machine ? You can ask for an access to Debian Porter machine: https://db.debian.org/machines.cgi https://dsa.debian.org/doc/schroot/ But I am afraid that the hard part is to isolate the compiler issue: for me, it was solve somewhere between gcc-5 and gcc-6. hth, Jerome