From: Alexander Barton Date: Tue, 28 Oct 2014 22:52:05 +0000 (+0100) Subject: ax-debian-devel 1 X-Git-Tag: rel-1^0 X-Git-Url: https://arthur.barton.de/gitweb/?p=ax-debian-devel.git;a=commitdiff_plain;h=13cbedb2c8734b11805630ce48f5cef1212cc71c ax-debian-devel 1 --- 13cbedb2c8734b11805630ce48f5cef1212cc71c diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..9ebacba --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Alexander Barton diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..df45dc3 --- /dev/null +++ b/COPYING @@ -0,0 +1,17 @@ +Copyright 2014 by Alexander Barton + +The files in this package are free software; you can redistribute them +and/or modify them under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2, or (at +your option) any later version. + +The files in this package are distributed in the hope that they will +be useful, but WITHOUT ANY WARRANTY; without even the implied warranty +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +with your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, +or with the Debian GNU/Linux bash source package as the file COPYING. +If not, write to the Free Software Foundation, Inc., 51 Franklin St, +Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e05f4b9 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# +# Makefile +# + +SUBDIRS = + +all-local: + equivs-build --full ax-debian-devel + +clean-local: + rm -f ax-debian-devel_*.dsc ax-debian-devel_*.tar.gz \ + ax-debian-devel_*_all.deb ax-debian-devel_*_amd64.changes + +include ./Makefile.ax diff --git a/Makefile.ax b/Makefile.ax new file mode 100644 index 0000000..180ce3c --- /dev/null +++ b/Makefile.ax @@ -0,0 +1,43 @@ +# +# ax-make: Alex' Simple Makefile System +# Copyright (c)2014 Alexander Barton (alex@barton.de) +# +# This library is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# + +AX_SILENT ?= @ + +PREFIX ?= /usr/local + +USER ?= $(shell id -un) +GROUP ?= $(shell stat --format=%G $(DESTDIR)$(PREFIX) 2>/dev/null || id -gn) + +all: all-ax all-local + +all-ax: $(ALL) $(SUBDIRS) + +clean: clean-ax clean-local + +distclean: clean-local distclean-ax distclean-local + +maintainer-clean: clean-local distclean-local maintainer-clean-ax maintainer-clean-local + +check: check-pre check-ax check-local check-post + +install: install-ax install-local + +all-ax clean-ax distclean-ax maintainer-clean-ax check-ax install-ax: + $(AX_SILENT)for subdir in $(SUBDIRS); do \ + target=`echo "$@" | sed -e 's/-ax$$//'`; \ + echo "Making \"$$target\" in \"$$subdir\" ..."; \ + $(MAKE) -C $$subdir $$target || exit 1; \ + done + +.PHONY: all clean distclean maintainer-clean check install +.PHONY: all-ax clean-ax distclean-ax maintainer-clean-ax check-ax install-ax +.PHONY: all-local clean-local distclean-local maintainer-clean-local check-local install-local +.PHONY: check-pre check-post +.PHONY: $(SUBDIRS) diff --git a/README b/README new file mode 100644 index 0000000..63ea523 --- /dev/null +++ b/README @@ -0,0 +1,9 @@ +@packagename@ + +This package pulls in some configuration files and other packages +which Alex wants to have installed on each and every Debian system +that is used for software development. + +It depends on the following other packages: + +@depends@ diff --git a/ax-debian-devel b/ax-debian-devel new file mode 100644 index 0000000..184690c --- /dev/null +++ b/ax-debian-devel @@ -0,0 +1,33 @@ +Source: ax-debian-devel +Section: misc +Priority: optional +Homepage: http://debian.barton.de/ +Standards-Version: 3.9.2 + +Package: ax-debian-devel +Maintainer: Alexander Barton +Changelog: debian/changelog +Copyright: COPYING +Readme: README +Depends: + ax-debian, + autoconf, + automake, + build-essential, + g++, + gcc, + gdb, + make, + manpages-dev, +Recommends: + devscripts, + expect, +Suggests: + clang, + tcc, +Architecture: all +Extra-Files: AUTHORS +Description: Alex' base package for Debian installations used for development + This package pulls in some configuration files and other packages + which Alex wants to have installed on each and every Debian system + that is used for software development. diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3d823ab --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +ax-debian-devel (1) testing; urgency=medium + + * Initial release. + + -- Alexander Barton Tue, 28 Oct 2014 23:17:57 +0100