]> git.madduck.net Git - debian/graphs/package-cycle.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

adding misc stuff
authormadduck <madduck@d3a7e407-1618-0410-b472-f1f387cadc13>
Tue, 11 Jul 2006 23:30:35 +0000 (23:30 +0000)
committermadduck <madduck@d3a7e407-1618-0410-b472-f1f387cadc13>
Tue, 11 Jul 2006 23:30:35 +0000 (23:30 +0000)
git-svn-id: svn+ssh://svn.madduck.net/srv/svn/svn.madduck.net/debian/misc/graphs/package-cycle@27 d3a7e407-1618-0410-b472-f1f387cadc13

ABOUT [new file with mode: 0644]
Makefile [new file with mode: 0644]
en/package-cycle.dia [new file with mode: 0644]

diff --git a/ABOUT b/ABOUT
new file mode 100644 (file)
index 0000000..cbd7ecc
--- /dev/null
+++ b/ABOUT
@@ -0,0 +1,24 @@
+Life-cycle of a Debian package
+==============================
+
+(c) 2005 Martin F. Krafft
+  based on work (c) 2004 by Kevin Mark,
+  with help by Sven Müller and Martin Schulze
+
+Released under the Artistic License
+
+This chart was put together mainly for inclusion in my forthcoming book:
+
+  http://debianbook.info
+
+I hope that it will also appear on http://packages.debian.org, or in the
+developer's reference.
+
+If you have comments or suggestions, I would love to hear them.
+
+The official URL is http://people.debian.org/~madduck/graphs/package-cycle/
+
+Thanks go to Goswin Brederlow, Bernhard Link, and Kenshi Muto, as well as the
+author and contributors of the original work (see above).
+
+ -- martin f. krafft <madduck@debian.org>  Sat, 12 Feb 2005 16:03:17 +0100
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..366e1ee
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,36 @@
+BASES = en/package-cycle
+EXTS = eps png ps pdf
+FILES = $(foreach ext,$(EXTS),$(foreach base,$(BASES),$(base).$(ext)))
+
+.PHONY: all
+all: $(FILES)
+
+.PRECIOUS: %.eps
+%.eps: %.dia
+       dia -t eps $<
+       chmod 644 $@
+
+.PRECIOUS: %.png
+%.png: %.eps
+       convert $< $@
+       chmod 644 $@
+
+.PRECIOUS: %.ps
+%.ps: %.eps
+       convert $< $@
+       chmod 644 $@
+
+.PRECIOUS: %.pdf
+%.pdf: %.ps
+       ps2pdf $< $@
+       chmod 644 $@
+
+.PHONY: clean
+clean:
+       rm -f $(FILES)
+
+.PHONY: upload
+upload:
+       $(MAKE) -s all
+       chmod -R a+rX $(CURDIR)
+       rsync -Pva --delete $(CURDIR)/ people.debian.org:public_html/graphs/package-cycle
diff --git a/en/package-cycle.dia b/en/package-cycle.dia
new file mode 100644 (file)
index 0000000..7d49ece
Binary files /dev/null and b/en/package-cycle.dia differ