svn-buildpackage with bz2?
Hi, I have an error with svn-buildpackage with a package in bz2 format. It searches with .tar.gz, though mobyle_1.5.0+dfsg.orig.tar.bz2 is in tarballs dir: Orig tarball not found (expected /home/osallou/DEBIAN-MED/mobyle/tarballs/mobyle_1.5+dfsg.orig.tar.gz) Would am i missing? Thanks Olivier -- gpg key id: 4096R/326D8438 (keyring.debian.org) Key fingerprint = 5FB4 6F83 D3B9 5204 6335 D26D 78DC 68DB 326D 8438 -- To UNSUBSCRIBE, email to debian-med-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/51221036.4080...@irisa.fr
Re: svn-buildpackage with bz2?
Forget it, it was a version issue Olivier Le 2/18/13 12:27 PM, Olivier Sallou a écrit : > Hi, > I have an error with svn-buildpackage with a package in bz2 format. > It searches with .tar.gz, though mobyle_1.5.0+dfsg.orig.tar.bz2 is in > tarballs dir: > > Orig tarball not found (expected > /home/osallou/DEBIAN-MED/mobyle/tarballs/mobyle_1.5+dfsg.orig.tar.gz) > > Would am i missing? > > Thanks > > Olivier > -- Olivier Sallou IRISA / University of Rennes 1 Campus de Beaulieu, 35000 RENNES - FRANCE Tel: 02.99.84.71.95 gpg key id: 4096R/326D8438 (keyring.debian.org) Key fingerprint = 5FB4 6F83 D3B9 5204 6335 D26D 78DC 68DB 326D 8438 -- To UNSUBSCRIBE, email to debian-med-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/512212f6.8070...@irisa.fr
[fis-gtm] git repo created
Hello Yaroslav, Following the instructions that Andreas pointed to, I created a GIT repo on alioth for fis-gtm. When I try to debcheckout, I hit an error. --- 12:41pm [shaha@shaha:/home/shaha/debmed/testbuild] >debcheckout --git-track='*' git+ssh://git.debian.org/git/debian-med/fis-gtm.git declared git repository at git+ssh://git.debian.org/git/debian-med/fis-gtm.git git clone git+ssh://git.debian.org/git/debian-med/fis-gtm.git fis-gtm ... Cloning into 'fis-gtm'... remote: Counting objects: 3115, done. remote: Compressing objects: 100% (2005/2005), done. remote: Total 3115 (delta 1103), reused 3111 (delta 1103) Receiving objects: 100% (3115/3115), 4.74 MiB | 446 KiB/s, done. Resolving deltas: 100% (1103/1103), done. Branch pristine-tar set up to track remote branch pristine-tar from origin. Branch upstream set up to track remote branch upstream from origin. Use of uninitialized value $srcpkg in substitution (s///) at /usr/bin/debcheckout line 822. --- I found a thread with a similar error, http://lists.debian.org/debian-med/2012/10/msg00057.html, but I did push all my changes up with git push --all --set-upstream. For instance: --- 12:42pm [shaha@shaha:/home/shaha/debmed/fis-gtm-6.0.001] >git push --all --set-upstream Branch master set up to track remote branch master from origin. Branch pristine-tar set up to track remote branch pristine-tar from origin. Branch upstream set up to track remote branch upstream from origin. Everything up-to-date --- I can debcheckout from the repo on my machine. But when I try to use git-buildpackage, it complains about "cp: cannot stat `/var/cache/pbuilder/base.cow': No such file or directory". I guess I'm missing some setup. If so, is there a quick start guide? Otherwise, what doc do I need to read? thanks, Amul _ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you.
Re: [fis-gtm] git repo created
Hi Amul, FWIW: The command $ git clone git+ssh://git.debian.org/git/debian-med/fis-gtm.git fis-gtm seems to be working fine for me. I get: Cloning into 'fis-gtm'... The authenticity of host 'git.debian.org (217.196.43.140)' can't be established. RSA key fingerprint is 8c:c0:b8:9f:0a:79:ee:1c:77:c4:b8:a1:70:55:b7:31. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'git.debian.org' (RSA) to the list of known hosts. remote: Counting objects: 3115, done. remote: Compressing objects: 100% (2005/2005), done. remote: Total 3115 (delta 1103), reused 3111 (delta 1103) Receiving objects: 100% (3115/3115), 4.74 MiB | 1.02 MiB/s, done. Resolving deltas: 100% (1103/1103), done. I did the cloning in a directory : /tmp/tmp2 I'm not sure it that matters (or should matter). Luis - On Mon, Feb 18, 2013 at 1:03 PM, Amul Shah wrote: > Hello Yaroslav, > Following the instructions that Andreas pointed to, I created a GIT repo > on alioth for fis-gtm. When I try to debcheckout, I hit an error. > > > --- > 12:41pm [shaha@shaha:/home/shaha/debmed/testbuild] >debcheckout > --git-track='*' git+ssh://git.debian.org/git/debian-med/fis-gtm.git > declared git repository at git+ssh:// > git.debian.org/git/debian-med/fis-gtm.git > git clone git+ssh://git.debian.org/git/debian-med/fis-gtm.git fis-gtm ... > Cloning into 'fis-gtm'... > remote: Counting objects: 3115, done. > remote: Compressing objects: 100% (2005/2005), done. > remote: Total 3115 (delta 1103), reused 3111 (delta 1103) > Receiving objects: 100% (3115/3115), 4.74 MiB | 446 KiB/s, done. > Resolving deltas: 100% (1103/1103), done. > Branch pristine-tar set up to track remote branch pristine-tar from origin. > Branch upstream set up to track remote branch upstream from origin. > Use of uninitialized value $srcpkg in substitution (s///) at > /usr/bin/debcheckout line 822. > > --- > > I found a thread with a similar error, > http://lists.debian.org/debian-med/2012/10/msg00057.html, but I did push > all my changes up with git push --all --set-upstream. For instance: > > --- > 12:42pm [shaha@shaha:/home/shaha/debmed/fis-gtm-6.0.001] >git push --all > --set-upstream > Branch master set up to track remote branch master from origin. > Branch pristine-tar set up to track remote branch pristine-tar from origin. > Branch upstream set up to track remote branch upstream from origin. > Everything up-to-date > > --- > > I can debcheckout from the repo on my machine. But when I try to use > git-buildpackage, it complains about "cp: cannot stat > `/var/cache/pbuilder/base.cow': No such file or directory". I guess I'm > missing some setup. If so, is there a quick start guide? Otherwise, what > doc do I need to read? > > thanks, > Amul > _ > The information contained in this message is proprietary and/or > confidential. If you are not the intended recipient, please: (i) delete the > message and all copies; (ii) do not disclose, distribute or use the message > in any manner; and (iii) notify the sender immediately. In addition, please > be aware that any message addressed to our domain is subject to archiving > and review by persons other than the intended recipient. Thank you. >
hunspell-en-med packaging
Hi, As communicated before, I am working on packaging `hunspell-en-med'. Even though the packaging is done, I think something is missing because I can't get it to work with OpenOffice. Can anyone who has experience with packaging dictionaries take a look at it and let me know what is missing? The packaging is here: http://anonscm.debian.org/gitweb/?p=debian-med/hunspell-en-med.git;a=summary Thanks! PS: I will get in touch with the dictionaries packaging team also, but I decided to ask here first because their mailing list seems to have low activity. -- Sukhbir -- To UNSUBSCRIBE, email to debian-med-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130218194713.ga6...@gmail.com
Re: [fis-gtm] git repo created
Hi Amul, On Mon, Feb 18, 2013 at 01:03:51PM -0500, Amul Shah wrote: > ... > Use of uninitialized value $srcpkg in substitution (s///) at > /usr/bin/debcheckout line 822. I get exactly the same in *any* Git repository I'm checking out and I guess there exist a perfectly reasonable explanation for this but because there is no harm at all I tend to ignore this. > I can debcheckout from the repo on my machine. But when I try to use > git-buildpackage, it complains about "cp: cannot stat > `/var/cache/pbuilder/base.cow': No such file or directory". I guess > I'm missing some setup. If so, is there a quick start guide? > Otherwise, what doc do I need to read? I guess this is because of a missing pbuilder initialisation. What happens if you simply try pdebuild ? Git-buildpackage is calling pbuilder and this should make working first before git-buildpackage. Kind regards Andreas. -- http://fam-tille.de -- To UNSUBSCRIBE, email to debian-med-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130218202145.gi10...@an3as.eu
Re: [fis-gtm] git repo created
Hi again, I have done some slight changes to make sure that all data was taken over from SVN and removed the SVN directory droping a README.status file there about the svn to git migration. Please check the commit logs. Kind regards Andreas. -- http://fam-tille.de -- To UNSUBSCRIBE, email to debian-med-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130218204559.gj10...@an3as.eu
Re: [fis-gtm] git repo created
Hi Andreas, Thanks for the help. I checked the logs. The changes look fine. I removed the *.ex files. Amul On 02/18/2013 03:45 PM, Andreas Tille wrote: Hi again, I have done some slight changes to make sure that all data was taken over from SVN and removed the SVN directory droping a README.status file there about the svn to git migration. Please check the commit logs. Kind regards Andreas. _ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. -- To UNSUBSCRIBE, email to debian-med-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/5122a753.4060...@fisglobal.com