mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
Do not clean files before source building
This commit is contained in:
parent
77bf02f02e
commit
349308ef01
4 changed files with 43 additions and 21 deletions
|
@ -12,7 +12,7 @@ with apt-key add. Thanks!
|
||||||
-- Callum Dickinson <gcfreak_ag20@hotmail.com> Fri, 26 Nov 2010 18:25:31 +1300
|
-- Callum Dickinson <gcfreak_ag20@hotmail.com> Fri, 26 Nov 2010 18:25:31 +1300
|
||||||
|
|
||||||
|
|
||||||
Building for Launchpad PPA
|
Signing for Launchpad PPA
|
||||||
|
|
||||||
First, follow the above instructions to generate a GnuPG key with your identity. You will need
|
First, follow the above instructions to generate a GnuPG key with your identity. You will need
|
||||||
to publish the fingerprint of that key to Ubuntu's key server.
|
to publish the fingerprint of that key to Ubuntu's key server.
|
||||||
|
@ -26,20 +26,27 @@ upload signed source packages and publish them onto your PPA.
|
||||||
IF YOU UPLOAD A PACKAGE and Launchpad does NOT send you a confirmation or rejection email, that
|
IF YOU UPLOAD A PACKAGE and Launchpad does NOT send you a confirmation or rejection email, that
|
||||||
means your key is not set up correctly with your Launchpad account.
|
means your key is not set up correctly with your Launchpad account.
|
||||||
|
|
||||||
|
|
||||||
|
Building for Launchpad PPA
|
||||||
|
|
||||||
Use these steps to prepare building a source package for Launchpad:
|
Use these steps to prepare building a source package for Launchpad:
|
||||||
|
|
||||||
-2. Highly recommend copying the assets/ folder to outside your repo folder, or else the asset
|
1. Highly recommend copying the assets/ folder to outside your repo folder, or else the asset
|
||||||
files may be included in the main source package, when you build that.
|
files may be included in the main source package, when you build that.
|
||||||
-1. cd [wherever-your-assets-folder-is]/assets/
|
2. cd [wherever-your-assets-folder-is]/assets/
|
||||||
0. debuild -T clean (optional, if you already have asset files)
|
3. debuild -T clean (optional, if you already have asset files)
|
||||||
|
|
||||||
Building the source package is a two-step process:
|
Building the source package is a two-step process:
|
||||||
|
|
||||||
1. debuild -T build (this downloads the asset files from srb2.org)
|
1. debuild -T pre-source (this downloads the asset files from srb2.org if necessary)
|
||||||
2. debuild -S -nc
|
2. debuild -S -nc
|
||||||
* Builds the source package for Launchpad, including the asset files
|
* Builds the source package for Launchpad, including the asset files
|
||||||
* -nc keeps dpkg from cleaning the assets/ folder, which would remove the files that must
|
* -nc keeps dpkg from cleaning the assets/ folder, which would remove the files that must
|
||||||
be packaged.
|
be packaged.
|
||||||
|
3. rm ./NOCLEAN
|
||||||
|
* This is a HACK file to prevent Launchpad from cleaning the asset files before building.
|
||||||
|
A copy of this file is in the source package, so we don't need it anymore and
|
||||||
|
we can delete it. If it stays in the assets/ folder, the next clean will be skipped.
|
||||||
|
|
||||||
Then follow the instructions at <https://help.launchpad.net/Packaging/PPA/Uploading> to upload
|
Then follow the instructions at <https://help.launchpad.net/Packaging/PPA/Uploading> to upload
|
||||||
to your PPA and have Launchpad build your binary deb packages.
|
to your PPA and have Launchpad build your binary deb packages.
|
||||||
|
|
|
@ -62,6 +62,13 @@ build:
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
pre-source: build
|
||||||
|
# HACK HACK HACK: Force Launchpad to not clean by creating this
|
||||||
|
# file and storing it in the source package.
|
||||||
|
# We do this so the asset files are not deleted before build
|
||||||
|
# In Launchpad, we can't download the assets from srb2.org because DNS does not work
|
||||||
|
> $(RESOURCEDIR)/NOCLEAN
|
||||||
|
|
||||||
binary-indep:
|
binary-indep:
|
||||||
# Generate install folder file
|
# Generate install folder file
|
||||||
echo $(DATADIR) > $(DIR)/debian/$(PACKAGE).install
|
echo $(DATADIR) > $(DIR)/debian/$(PACKAGE).install
|
||||||
|
@ -100,16 +107,22 @@ binary: binary-indep
|
||||||
dh_builddeb
|
dh_builddeb
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(RESOURCEDIR)/*.wad
|
if [ ! -f $(RESOURCEDIR)/NOCLEAN ]; then \
|
||||||
$(RM) $(RESOURCEDIR)/*.dta
|
$(RM) $(RESOURCEDIR)/*.wad; \
|
||||||
$(RM) $(RESOURCEDIR)/*.plr
|
$(RM) $(RESOURCEDIR)/*.dta; \
|
||||||
$(RM) $(RESOURCEDIR)/*.wpn
|
$(RM) $(RESOURCEDIR)/*.plr; \
|
||||||
$(RM) $(RESOURCEDIR)/*.srb
|
$(RM) $(RESOURCEDIR)/*.wpn; \
|
||||||
$(RM) $(RESOURCEDIR)/*.dll
|
$(RM) $(RESOURCEDIR)/*.srb; \
|
||||||
$(RM) $(RESOURCEDIR)/*.txt
|
$(RM) $(RESOURCEDIR)/*.dll; \
|
||||||
$(RM) $(DIR)/debian/tmp/*
|
$(RM) $(RESOURCEDIR)/*.txt; \
|
||||||
$(RM) $(DIR)/debian/$(PACKAGE).install
|
$(RM) $(DIR)/debian/tmp/*; \
|
||||||
$(RM) $(DIR)/debian/files
|
$(RM) $(DIR)/debian/$(PACKAGE).install; \
|
||||||
$(RM) $(DIR)/debian/source/include-binaries
|
$(RM) $(DIR)/debian/files; \
|
||||||
|
$(RM) $(DIR)/debian/source/include-binaries; \
|
||||||
|
else
|
||||||
|
echo Clean was ignored because of $(RESOURCEDIR)/NOCLEAN file. Run clean again if you need to!; \
|
||||||
|
echo Deleting $(RESOURCEDIR)/NOCLEAN...; \
|
||||||
|
$(RM) $(RESOURCEDIR)/NOCLEAN; \
|
||||||
|
fi
|
||||||
|
|
||||||
.PHONY: all clean binary binary-arch binary-indep build
|
.PHONY: all clean binary binary-arch binary-indep build
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
tar-ignore = "tmp/*"
|
tar-ignore = "tmp/*"
|
||||||
no-pre-clean
|
|
||||||
|
|
11
debian/README.Debian
vendored
11
debian/README.Debian
vendored
|
@ -11,7 +11,7 @@ and give them to your users to install with apt-key add. Thanks!
|
||||||
-- Callum Dickinson <gcfreak_ag20@hotmail.com> Fri, 26 Nov 2010 18:25:31 +1300
|
-- Callum Dickinson <gcfreak_ag20@hotmail.com> Fri, 26 Nov 2010 18:25:31 +1300
|
||||||
|
|
||||||
|
|
||||||
Building for Launchpad PPA
|
Signing for Launchpad PPA
|
||||||
|
|
||||||
First, follow the above instructions to generate a GnuPG key with your identity. You will need
|
First, follow the above instructions to generate a GnuPG key with your identity. You will need
|
||||||
to publish the fingerprint of that key to Ubuntu's key server.
|
to publish the fingerprint of that key to Ubuntu's key server.
|
||||||
|
@ -25,13 +25,16 @@ upload signed source packages and publish them onto your PPA.
|
||||||
IF YOU UPLOAD A PACKAGE and Launchpad does NOT send you a confirmation or rejection email, that
|
IF YOU UPLOAD A PACKAGE and Launchpad does NOT send you a confirmation or rejection email, that
|
||||||
means your key is not set up correctly with your Launchpad account.
|
means your key is not set up correctly with your Launchpad account.
|
||||||
|
|
||||||
|
|
||||||
|
Building for Launchpad PPA
|
||||||
|
|
||||||
Use these steps to prepare building a source package for Launchpad:
|
Use these steps to prepare building a source package for Launchpad:
|
||||||
|
|
||||||
-2. cd [srb2repo]
|
1. cd [srb2repo]
|
||||||
-1. git reset --hard; git clean -fd; git clean -fx;
|
2. git reset --hard; git clean -fd; git clean -fx;
|
||||||
* Resets your repo folder to a committed state and removes untracked files
|
* Resets your repo folder to a committed state and removes untracked files
|
||||||
* If you built srb2-data in the assets/ folder, MAKE SURE THAT FOLDER DOES NOT HAVE ASSETS,
|
* If you built srb2-data in the assets/ folder, MAKE SURE THAT FOLDER DOES NOT HAVE ASSETS,
|
||||||
OR THEY WILL BE INCLUDED IN THE MAIN SOURCE PACKAGE! (for some reason)
|
OR THEY WILL BE INCLUDED IN THE MAIN SOURCE PACKAGE!
|
||||||
|
|
||||||
Building the source package takes just one step:
|
Building the source package takes just one step:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue