File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -138,20 +138,14 @@ $(DIST_ZIP): $(PY_SOURCES) $(SUBDIRS)
138
138
$(DIST_WHEEL ) : $(PY_SOURCES ) $(SUBDIRS )
139
139
$(PYTHON ) $(PYFLAGS ) setup.py bdist_wheel --universal
140
140
141
- $(DIST_DEB ) : $(PY_SOURCES ) $(SUBDIRS ) $(DEB_SOURCES )
142
- # build the binary package in the parent directory then rename it to
143
- # project_version.orig.tar.gz
144
- $(PYTHON ) $(PYFLAGS ) setup.py sdist --dist-dir=../
145
- rename -f ' s/$(NAME)-(.*)\.tar\.gz/$(NAME)_$$1\.orig\.tar\.gz/' ../*
141
+ $(DIST_DEB ) : $(PY_SOURCES ) $(SUBDIRS ) $(DEB_SOURCES ) $(DIST_TAR )
142
+ cp $(DIST_TAR ) ../$(NAME ) _$(VER ) .orig.tar.gz
146
143
debuild -b
147
144
mkdir -p dist/
148
145
for f in $( DIST_DEB) ; do cp ../$$ {f## */} dist/; done
149
146
150
- $(DIST_DSC ) : $(PY_SOURCES ) $(SUBDIRS ) $(DEB_SOURCES )
151
- # build the source package in the parent directory then rename it to
152
- # project_version.orig.tar.gz
153
- $(PYTHON ) $(PYFLAGS ) setup.py sdist --dist-dir=../
154
- rename -f ' s/$(NAME)-(.*)\.tar\.gz/$(NAME)_$$1\.orig\.tar\.gz/' ../*
147
+ $(DIST_DSC ) : $(PY_SOURCES ) $(SUBDIRS ) $(DEB_SOURCES ) $(DIST_TAR )
148
+ cp $(DIST_TAR ) ../$(NAME ) _$(VER ) .orig.tar.gz
155
149
debuild -S
156
150
mkdir -p dist/
157
151
for f in $( DIST_DSC) ; do cp ../$$ {f## */} dist/; done
You can’t perform that action at this time.
0 commit comments