# HG changeset patch # User markus schnalke # Date 1393274337 -3600 # Node ID cd9bcd5e9027d539c5a4049644c0c6aed905c0c0 # Parent 36792474cd26a7f8010adec6a2b100334b0c9710 rm debian/; updated README diff -r 36792474cd26 -r cd9bcd5e9027 README --- a/README Mon Feb 24 21:34:09 2014 +0100 +++ b/README Mon Feb 24 21:38:57 2014 +0100 @@ -1,17 +1,19 @@ -bday +bday -- birthday and anniversary reminder -(c) 2007,2014 markus schnalke -(c) 1994-1999 Andy Mortimer - -bday is a stripped down version of birthday by Andy Mortimer. -So most of the code is by Andy. Please honor his work. - +Given a list of the dates of birthdays and anniversaries, works out and +displays a list of those which will come up in the next couple of +weeks. Bday is a stripped down version of birthday by Andy Mortimer. Birthday was downloaded from: http://users.zetnet.co.uk/mortia/source/birthday-1.5.tar.gz Upstream Author of Birthday: Andy Mortimer +Bday can be downloaded from: + http://hg.marmaro.de/bday + +(c) 2007,2014 markus schnalke +(c) 1994-1999 Andy Mortimer This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -25,6 +27,3 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . - -On Debian systems, a copy of the GNU General Public License is -available in /usr/share/common-licenses/. diff -r 36792474cd26 -r cd9bcd5e9027 debian/changelog --- a/debian/changelog Mon Feb 24 21:34:09 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -bday (0.1-3) unstable; urgency=low - - * added source package - * now package for kfreebsd-i386 - - -- markus schnalke Thu, 14 Feb 2008 18:05:44 +0100 - - -bday (0.1-2) unstable; urgency=low - - * better content in debian/ - - -- markus schnalke Wed, 19 Dec 2007 01:37:59 +0100 - - -bday (0.1-1) unstable; urgency=low - - * Initial debian package - - -- markus schnalke Mon, 17 Dec 2007 09:59:02 +0100 diff -r 36792474cd26 -r cd9bcd5e9027 debian/compat --- a/debian/compat Mon Feb 24 21:34:09 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -5 diff -r 36792474cd26 -r cd9bcd5e9027 debian/control --- a/debian/control Mon Feb 24 21:34:09 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -Source: bday -Section: misc -Priority: extra -Maintainer: markus schnalke -Build-Depends: debhelper (>= 5) -Standards-Version: 3.7.2 - -Package: bday -Architecture: i386 kfreebsd-i386 -Depends: ${shlibs:Depends}, ${misc:Depends}, libc6-dev -Description: birthday and event reminder - Given a list of the dates of various different events, works out and - displays a list of those which will come up in the next couple of - weeks. This was originally designed for birthdays, but can equally be - used for reminders about yearly events. - . - bday is heavily based upon birthday by Andy Mortimer. - . - Website: http://prog.marmaro.de diff -r 36792474cd26 -r cd9bcd5e9027 debian/copyright --- a/debian/copyright Mon Feb 24 21:34:09 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,15 +0,0 @@ -This package was debianized by markus schnalke on -Wed, 19 Dec 2007 01:37:19 +0100 - -It was downloaded from http://prog.marmaro.de - -Upstream Author: markus schnalke - -This software is copyright (c) 2007 markus schnalke, 1994-1999 Andy Mortimer. -(Andy Mortimer is the author of birthday, which is the base for bday.) - -You are free to distribute this software under the terms of -the GNU General Public License either version 2 of the License, -or (at your option) any later version. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL-2'. diff -r 36792474cd26 -r cd9bcd5e9027 debian/docs --- a/debian/docs Mon Feb 24 21:34:09 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -COPYRIGHT -COPYING -TODO diff -r 36792474cd26 -r cd9bcd5e9027 debian/rules --- a/debian/rules Mon Feb 24 21:34:09 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,81 +0,0 @@ -#!/usr/bin/make -f -# Sample debian/rules that uses debhelper. -# GNU copyright 1997 to 1999 by Joey Hess. - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# This is the debhelper compatibility version to use. -#export DH_COMPAT=4 - -CFLAGS = -g -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) -CFLAGS += -O0 -else -CFLAGS += -O2 -endif - -build: build-stamp -build-stamp: - dh_testdir - - # Add here commands to compile the package. - $(MAKE) build - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - -$(MAKE) clean - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/gentoo. - $(MAKE) install DESTDIR=$(CURDIR)/debian/bday - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot -# dh_installdebconf - dh_installdocs - dh_installexamples examples/* -# dh_installmenu -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron - dh_installman -# dh_installinfo -# dh_undocumented - dh_installchangelogs ChangeLog - dh_link - dh_strip - dh_compress - dh_fixperms -# dh_makeshlibs - dh_installdeb -# dh_perl - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install