[issue1054967] bdist_deb - Debian packager

2010-10-25 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> rejected stage: -> committed/rejected versions: +3rd party -Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.3 ___ Python tracker

[issue1054967] bdist_deb - Debian packager

2010-05-07 Thread Tarek Ziadé
Tarek Ziadé added the comment: Please don't. I've closed this bug because the bdist_deb command is currently managed by the stdeb project and it's fine like htis. Distutils2 will not have specialized linux bdist_* command like this one, because it is best to keep it in a separate project that

[issue1054967] bdist_deb - Debian packager

2010-05-07 Thread Éric Araujo
Éric Araujo added the comment: We forgot to reopen the bug. -- status: closed -> open ___ Python tracker ___ ___ Python-bugs-list m

[issue1054967] bdist_deb - Debian packager

2010-05-03 Thread Andrew Straw
Andrew Straw added the comment: I have moved the recent discussion on stdeb to a thread on the distutils-sig. -- ___ Python tracker ___ ___

[issue1054967] bdist_deb - Debian packager

2010-04-30 Thread Piotr Ożarowski
Changes by Piotr Ożarowski : -- nosy: +piotr ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Éric, sorry about missing that accent. /me needs a bigger font. :) RE: python-debian modernization. We'd have to check with the authors to see what version of Python they need to remain compatible with. If it's 2.6, then I'm all for modernizing. I'm not

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Éric Araujo
Éric Araujo added the comment: Barry, IIUC you want the “debian” command to create a debian source package, which can be converted to debian binary package(s), checked and uploaded with standard tools. Perfect. Andrew, I am uncomfortable with stdeb. (Trying to express respectful constructive cr

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Eric, you're right, "native" isn't exactly what I was getting at. I want the debian/ directory created right next to the setup.py, as I've described in some follow ups. As far as what you see in setupdebian, this is just preliminary experiments using test-

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Éric Araujo
Éric Araujo added the comment: tree and turns it into a source package that can be uploaded. What I'm looking for is something that can take a non-Debianized source tree and turn it into a native package, essentially by pre-filling a debian/ directory like dh_make does, but including additional

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Manual moving/copying is what I want to avoid. I'd be totally happy with not reinventing the wheel if you think this would be easy to add to stdeb! Specifically: just create debian/ in place and do not build package. I have a few other minor suggestions, t

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Andrew Straw
Andrew Straw added the comment: I see. So is copying the debian/ directory into its desired location a possibility for you, either manually or via a new distutils commands that shares 99% of its code with sdist_dsc? It doesn't seem like enough of a difference to start a new project.

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Hi Andrew, I want debian/ to be created in . (aka, cwd, the directory containing setup.py), not in ./deb_dist/package-version -- ___ Python tracker __

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Andrew Straw
Andrew Straw added the comment: Barry, I'm sorry I still don't understand what you think is the essential distinction. A debian source package (.dsc, .orig.tar.gz, and .diff.gz files) is simply made from a (patched) source directory, including the debian/ directory, and an upstream tarball. T

[issue1054967] bdist_deb - Debian packager

2010-04-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Hi Andrew, Yes, I've played with sdist_dsc, and it's nice in that it takes a non-Debianized source tree and turns it into a source package that can be uploaded. What I'm looking for is something that can take a non-Debianized source tree and turn it into a

[issue1054967] bdist_deb - Debian packager

2010-04-28 Thread Andrew Straw
Andrew Straw added the comment: Barry, stdeb does much of what you're describing. (Try the "python setup.py sdist_dsc" command.) I'm not particularly pleased with the stdeb codebase as it stands, but it does work reasonably well, and I'd like to see progress in this domain, but I'm afraid I

[issue1054967] bdist_deb - Debian packager

2010-04-28 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I'm not so sure about sdist_debian for the command I'm thinking about because it doesn't actually build a distribution. It just creates a 'debian' directory so I think I like just 'debian' as the name of the command. But thanks for the feedback; time to wr

[issue1054967] bdist_deb - Debian packager

2010-04-27 Thread Éric Araujo
Éric Araujo added the comment: Hello Thanks for clarifying your point. Note that I had quickly tested dh_make in a near-empty directory before posting, and the only question I got asked was the type of the package (library, many libraries, program, etc). But I’ve just realized that I have two

[issue1054967] bdist_deb - Debian packager

2010-04-27 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: That's essentially what I want, except I want to feed dh_make some better defaults based on metadata that already lives in setup.py. -- ___ Python tracker

[issue1054967] bdist_deb - Debian packager

2010-04-27 Thread Éric Araujo
Éric Araujo added the comment: Why not use Debian’s dh_make? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue1054967] bdist_deb - Debian packager

2010-04-27 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: There are really two aspects of this patch. At the moment, I'm less interested in bdist_deb than I am in the 'debianize' (i.e. dh_make) functionality. I think 'python setup.py debianize' (or whatever) would be a nice way to jump start a debian/ directory f

[issue1054967] bdist_deb - Debian packager

2010-04-27 Thread Éric Araujo
Éric Araujo added the comment: Hello There has been a number of discussions about bdist_deb, and some code too. I don’t have links handy, unfortunately, but I remember a conclusion that was: Don’t. Debian packages are best made by Debian tools, which go to great lengths to comply with Debi

[issue1054967] bdist_deb - Debian packager

2010-04-27 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: astraw: I've been playing with stdeb. I think it's a nice implementation of bdist_deb, but it doesn't seem to include the dh_make/debianize functionality of this patch. Is that the case or have I missed something? -- nosy: +barry _

[issue1054967] bdist_deb - Debian packager

2009-12-30 Thread Andrew Straw
Andrew Straw added the comment: As of stdeb 0.5.0, the setuptools dependency has been removed. Now stdeb requires only plain distutils. -- ___ Python tracker ___ _

[issue1054967] bdist_deb - Debian packager

2009-10-26 Thread Tarek Ziadé
Tarek Ziadé added the comment: I am closing this issue, since stdeb implements this command now. Also, I'd love to add it in the distutils documentation, but there's one issue. Andrew, do you think you could have a plain distutils version of this command ? Setuptools changes the Command and

[issue1054967] bdist_deb - Debian packager

2009-10-04 Thread Andrew Straw
Andrew Straw added the comment: stdeb ( http://github.com/astraw/stdeb ) now includes a bdist_deb distutils command. -- ___ Python tracker ___

[issue1054967] bdist_deb - Debian packager

2009-05-04 Thread Lukas Lueg
Lukas Lueg added the comment: Thanks for your efforts. I don't think you are stepping on anyone's toes when picking up an issue that was unsolved for almost 5 years :-) Please post patches to this bug for review/comments/help/whatever -- ___ Python

[issue1054967] bdist_deb - Debian packager

2009-05-02 Thread Paul Hummer
Paul Hummer added the comment: I've been doing a review of this patch for the last few hours. There are a few issues that need to be taken care of in order for it to move forward, and I'm currently working on them, in this order: 1. Update the patch to the most recent svn. The most current

[issue1054967] bdist_deb - Debian packager

2009-04-07 Thread Tony Meyer
Changes by Tony Meyer : -- nosy: +anadelonbrin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue1054967] bdist_deb - Debian packager

2009-02-23 Thread Lukas Lueg
Lukas Lueg added the comment: Count me in -- nosy: +ebfe ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue1054967] bdist_deb - Debian packager

2009-02-17 Thread Tarek Ziadé
Tarek Ziadé added the comment: Sean, I am re-opening this issue, to study the inclusion of a bdist_deb command for 2.7/3.1, since there's some interest in the community. I have taken the assigment since it was rejected, but let me know if you want me to assign back to you of course. -

[issue1054967] bdist_deb - Debian packager

2009-01-20 Thread Akira Kitada
Changes by Akira Kitada : ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/pytho