[wiki] [sites] and yet another cleanup || anselm

From: <hg_AT_suckless.org>
Date: Thu, 9 Feb 2012 21:28:08 +0100 (CET)

changeset: 834:23541a1a0c88
tag: tip
user: anselm_AT_garbe.us
date: Thu Feb 09 21:28:12 2012 +0100
files: suckless.org/bugs.md suckless.org/hacking.md suckless.org/patches.md
description:
and yet another cleanup


diff -r ee6e4366406a -r 23541a1a0c88 suckless.org/bugs.md
--- a/suckless.org/bugs.md Thu Feb 09 21:26:12 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
_AT_@ -1,27 +0,0 @@
-BUGS
-====
-
-Debugging
----------
-If you find any crashes, please send a full backtrace to the dedicated mailing list.
-You can create backtraces with `gdb`:
-
-Before starting a program, you may have to allow core file creation. It is
-recommended that you put this in your profile:
-
- $ ulimit -c unlimited
-
-Then start the program as usual.
-
-After the program crashes, do the following:
-
- $ gdb --quiet `which program` /path/to/core
- gdb> bt full
-
-If you encounter freezes (no crash at all) of the program, you can debug as follows:
-
- $ gdb --quiet `which program` --attach `pgrep -o program`
- gdb> bt full
-
-Send the output of that command to the mailing list along with the output of
-`program -v`! Thank you!
diff -r ee6e4366406a -r 23541a1a0c88 suckless.org/hacking.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/suckless.org/hacking.md Thu Feb 09 21:28:12 2012 +0100
_AT_@ -0,0 +1,57 @@
+Hacking
+=======
+
+Debugging
+---------
+If you find any crashes, please send a full backtrace to the dedicated mailing list.
+You can create backtraces with `gdb`:
+
+Before starting a program, you may have to allow core file creation. It is
+recommended that you put this in your profile:
+
+ $ ulimit -c unlimited
+
+Then start the program as usual.
+
+After the program crashes, do the following:
+
+ $ gdb --quiet `which program` /path/to/core
+ gdb> bt full
+
+If you encounter freezes (no crash at all) of the program, you can debug as follows:
+
+ $ gdb --quiet `which program` --attach `pgrep -o program`
+ gdb> bt full
+
+Send the output of that command to the mailing list along with the output of
+`program -v`! Thank you!
+
+
+Patches
+-------
+
+diff generation
+---------------
+For mercurial users:
+
+ cd program-directory
+ hg diff > program-X.Y-yourpatchname.diff
+
+For tarballs:
+
+ cd modified-program-directory/..
+ diff -up original-program-directory modified-program-directory > program-X.Y-yourpatchname.diff
+
+where `X.Y` is a dwm tag name or version number.
+
+patch program
+-------------
+For mercurial users:
+
+ cd program-directory
+ hg patch path/to/patch.diff
+
+For tarballs:
+
+ cd program-directory
+ patch -p1 < path/to/patch.diff
diff -r ee6e4366406a -r 23541a1a0c88 suckless.org/patches.md
--- a/suckless.org/patches.md Thu Feb 09 21:26:12 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
_AT_@ -1,28 +0,0 @@
-PATCHES
-=======
-
-diff generation
----------------
-For mercurial users:
-
- cd program-directory
- hg diff > program-X.Y-yourpatchname.diff
-
-For tarballs:
-
- cd modified-program-directory/..
- diff -up original-program-directory modified-program-directory > program-X.Y-yourpatchname.diff
-
-where `X.Y` is a dwm tag name or version number.
-
-patch program
--------------
-For mercurial users:
-
- cd program-directory
- hg patch path/to/patch.diff
-
-For tarballs:
-
- cd program-directory
- patch -p1 < path/to/patch.diff
Received on Thu Feb 09 2012 - 21:28:08 CET

This archive was generated by hypermail 2.3.0 : Thu Sep 13 2012 - 19:32:01 CEST