LeoIannacone / npm2deb

tool to help debianize Node.js modules
GNU General Public License v3.0
46 stars 34 forks source link

run gbp import-dsc --pristine-tar by default #64

Closed pravi closed 4 years ago

pravi commented 7 years ago

Currently we have to manually import the dsc file to git. It would be nice if this step was automated by npm2deb.

simevo commented 6 years ago

this is what I do:

npm2deb create xxx
cd xxx
gbp import-dsc --author-is-committer --pristine-tar `find . | grep "dsc$"`
cd node-xxx
git tag -d debian/x.y.x-1
git commit --amend -m 'debian directory as generated by npm2deb'
cd ..
mv node-xxx ..
cd ..
rm -rf xxx
shanavas786 commented 4 years ago

Closed by #149