summaryrefslogtreecommitdiff
path: root/building.mdwn
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-11-06 11:28:46 -0200
committerSilvio Rhatto <rhatto@riseup.net>2015-11-06 11:28:46 -0200
commitca70cd72c314f0945f8e52408bfd71dd9eac9225 (patch)
treee99efe6861f8765632c7767cc3e4d8cea21b5cb5 /building.mdwn
parent2fe5868931634968c6387e626baeb27075ecfc77 (diff)
downloaddebian-ca70cd72c314f0945f8e52408bfd71dd9eac9225.tar.gz
debian-ca70cd72c314f0945f8e52408bfd71dd9eac9225.tar.bz2
Index
Diffstat (limited to 'building.mdwn')
-rw-r--r--building.mdwn40
1 files changed, 40 insertions, 0 deletions
diff --git a/building.mdwn b/building.mdwn
new file mode 100644
index 0000000..9f6d8db
--- /dev/null
+++ b/building.mdwn
@@ -0,0 +1,40 @@
+Building
+========
+
+Standard build
+--------------
+
+ DIST=wheezy sudo -E cowbuilder --build $package*.dsc
+
+Signing
+-------
+
+To sign both the `.dsc` and the `.changes` files:
+
+ debsign $package*.changes
+
+Uploading
+---------
+
+Simply run
+
+ dupload *changes
+
+This assumes a `~/.dupload.conf` like the following:
+
+ package config;
+ $default_host = "myremote";
+
+ $cfg{'myremote'} = {
+ fqdn => "myremote.example.org",
+ login => "user",
+ method => "scpb",
+ incoming => "/var/reprepro/incoming/",
+ # The dinstall on ftp-master sends emails itself
+ #dinstall_runs => 1,
+ };
+
+It's also important that:
+
+ 1. The host remote port is correctly defined at your `~/.ssh/config`.
+ 2. The user is in the `reprepro` group in the server.