summaryrefslogtreecommitdiff
path: root/basics.mdwn
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-10-01 17:16:02 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-10-01 17:16:02 -0300
commit4e6889fd697787fc0df7980aefca94e60efe2b94 (patch)
tree7116f07c2de883013d706017eb136ffb530a3e5b /basics.mdwn
parent13184e44b526b67445a15c804c71f143f494ced7 (diff)
downloaddebian-4e6889fd697787fc0df7980aefca94e60efe2b94.tar.gz
debian-4e6889fd697787fc0df7980aefca94e60efe2b94.tar.bz2
Change markdown extension to .md
Diffstat (limited to 'basics.mdwn')
-rw-r--r--basics.mdwn92
1 files changed, 0 insertions, 92 deletions
diff --git a/basics.mdwn b/basics.mdwn
deleted file mode 100644
index 2230118..0000000
--- a/basics.mdwn
+++ /dev/null
@@ -1,92 +0,0 @@
-Basic packaging
-===============
-
-Configuration files
--------------------
-
-All the commands in this guide assumes that you're using [these configuration files](https://git.fluxo.info/?p=rhatto/dotfiles/debian.git;a=summary).
-
-Starting a new package
-----------------------
-
-We use the `packages/` folder from this repo to store sources:
-
- mkdir package/$package
- cd package/$package
-
-Getting the debianized source
------------------------------
-
-Using `dget`:
-
- dget $remote_dsc
- cd $package*
-
-Using `apt-get`:
-
- apt-get source package
-
-Checking the source
--------------------
-
-See `checking.md`.
-
-Extracting the source
----------------------
-
-If needed, do this after your successfully verified the sources:
-
- dpkg-source -x *.dsc
-
-Getting dependencies
---------------------
-
-To get:
-
- apt-get build-dep package
-
-To remove:
-
- hydractl remove-dep package
-
-Creating the `debian/` structure
---------------------------------
-
-If the package wasn't debianized, proceed with
-
- if [ ! -d "debian" ]; then
- dh_make -p ${package}_${version} --createorig
- fi
-
-Simple build
-------------
-
- dch -i
- dpkg-buildpackage -rfakeroot -sa -k$KEY_ID
-
-Creating a new debian source
-----------------------------
-
- cd ..
- dpkg-source -b $package*
- debsign $package*.dsc
-
-Building and signing
---------------------
-
-To generate signatures, remove `-uc` and `-us` from `dpkg-buildpackage` (see
-[Complete build](http://www.debian.org/doc/maint-guide/ch-build.pt-br.html#s-completebuild)):
-
- dpkg-buildpackage -rfakeroot
-
-To sign using an specific key:
-
- dpkg-buildpackage -rfakeroot -kKEY_ID
-
-WNPP
-----
-
-Before packaging anything, have a look at:
-
-* [WNPP](http://wnpp.debian.net).
-* [Debian Git](http://anonscm.debian.org/gitweb/).