From 1c92dba620eba8f40a18e231cfae186e96793cc1 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 5 May 2024 19:17:57 +0200 Subject: [PATCH] Remove debian/. Debian-related changes no longer happen in master. Instead, a dedicated branch will be created whose commits may only modify files below debian/. Whenever a new release is cut from the master branch, the master branch will be merged into the debian branch and debian/changelog will be updated accordingly. Suggested-by: Andreas Metzler --- debian/changelog | 40 --------------------------------- debian/control | 37 ------------------------------ debian/copyright | 21 ----------------- debian/rules | 18 --------------- debian/source/format | 1 - debian/tfortune.install | 2 -- debian/tfortunes.install | 1 - debian/upstream/signing-key.asc | 39 -------------------------------- debian/watch | 5 ----- 9 files changed, 164 deletions(-) delete mode 100644 debian/changelog delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100755 debian/rules delete mode 100644 debian/source/format delete mode 100644 debian/tfortune.install delete mode 100644 debian/tfortunes.install delete mode 100644 debian/upstream/signing-key.asc delete mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index aecfdc6..0000000 --- a/debian/changelog +++ /dev/null @@ -1,40 +0,0 @@ -tfortune (1.0.1-3) unstable; urgency=low - - * Improved error diagnostics - * Switch from git:// and http:// to https:// - * Fix lintian warnings - - -- Andre Noll Wed, 24 Apr 2024 18:00:05 +0200 - -tfortune (1.0.1-2) unstable; urgency=medium - - [ Helmut Grohne ] - * Fix FTCBFS: (Closes: #1032160) - + Also ask for generating config.h.in, which otherwise goes missing in - cross builds. - + Pass --build and --host to configure as we cannot use dh_auto_configure. - + Also export cross tools for make. - - [ Andre Noll ] - * Remove hard-coded dependency on liblopsub1. (Closes: #1068608) - - -- Andre Noll Sun, 21 Apr 2024 15:52:20 +0200 - -tfortune (1.0.1-1) unstable; urgency=low - - * No changes relative to 1.0.0-2. - - -- Andre Noll Thu, 05 Sep 2019 12:21:38 +0200 - -tfortune (1.0.0-2) unstable; urgency=low - - * Fallback to system-wide epigram directory. - * New data package: "tfortunes" which contains ~200 epigrams. - - -- Andre Noll Tue, 18 Jun 2019 18:33:25 +0100 - -tfortune (1.0.0-1) unstable; urgency=low - - * Initial Release. Closes: #929467 - - -- Andre Noll Mon, 20 May 2019 16:47:31 +0100 diff --git a/debian/control b/debian/control deleted file mode 100644 index 120e727..0000000 --- a/debian/control +++ /dev/null @@ -1,37 +0,0 @@ -Source: tfortune -Section: games -Priority: optional -Maintainer: Andre Noll -Build-Depends: m4, flex, bison, debhelper (>= 13), debhelper-compat (=13), autoconf, liblopsub-dev -Standards-Version: 4.6.2 -Homepage: https://people.tuebingen.mpg.de/maan/tfortune/ -Vcs-Browser: https://git.tuebingen.mpg.de/tfortune.git -Vcs-Git: https://git.tuebingen.mpg.de/tfortune/ -Rules-Requires-Root: no - -Package: tfortune -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} -Recommends: tfortunes -Description: Fortune Cookies with Tags - Like fortune(6), tfortune is a Unix command line utility which prints - a random epigram. Epigrams are stored as plain text files, but they - must be annotated with tags to make full use of the features which - tfortune offers over other implementations. - . - Tfortune has a built-in matching language for epigrams. User-supplied - tag expressions define subsets of admissible epigrams. If a tag - expression is given, epigrams are picked from the admissible subset - only. - -Package: tfortunes -Architecture: all -Multi-Arch: foreign -Depends: tfortune, ${misc:Depends} -Description: Data files for tfortune - This provides a small set of tagged epigrams for tfortune. These are - only used if no personal epigrams are found in the per-user epigram - directory. - . - All epigrams are in English language and are considered - non-offensive. They were mostly selected from public mailing lists. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 558b00b..0000000 --- a/debian/copyright +++ /dev/null @@ -1,21 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Source: https://people.tuebingen.mpg.de/maan/tfortune/ - -Files: * -License: GPL-3 -Copyright: 2018-2019 Andre Noll - -Files: epigrams/* -Copyright: none -License: public-domain - -License: GPL-3 - The code of this package is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public License, - version 3. On Debian GNU systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-3'. - -License: public-domain - All epigrams provided by the tfortunes package are believed to be - in the public domain. Please notify the author if there is an epigram - which is not. diff --git a/debian/rules b/debian/rules deleted file mode 100755 index a360dc7..0000000 --- a/debian/rules +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/make -f - -export DEB_BUILD_MAINT_OPTIONS = hardening=+all - -include /usr/share/dpkg/architecture.mk -DPKG_EXPORT_BUILDTOOLS=1 -include /usr/share/dpkg/buildtools.mk - -%: - dh "$@" - -# plain dh_auto_configure uses options which configure does not understand -override_dh_auto_configure: - ./configure --prefix=/usr --bindir=/usr/games \ - --datadir=/usr/share/games --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) -# needed because dh_autoreconf overwrites our configure wrapper -override_dh_autoreconf: - $(MAKE) config.h.in configure.sh diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 163aaf8..0000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/debian/tfortune.install b/debian/tfortune.install deleted file mode 100644 index d26b408..0000000 --- a/debian/tfortune.install +++ /dev/null @@ -1,2 +0,0 @@ -debian/tmp/usr/share/man/* -debian/tmp/usr/games/* diff --git a/debian/tfortunes.install b/debian/tfortunes.install deleted file mode 100644 index 9c397e4..0000000 --- a/debian/tfortunes.install +++ /dev/null @@ -1 +0,0 @@ -debian/tmp/usr/share/games/tfortunes/* diff --git a/debian/upstream/signing-key.asc b/debian/upstream/signing-key.asc deleted file mode 100644 index 662fe7b..0000000 --- a/debian/upstream/signing-key.asc +++ /dev/null @@ -1,39 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -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 -AKCO0h1mPhmUGIBgcCsk6XIVg4uNbA== -=6OYZ ------END PGP PUBLIC KEY BLOCK----- diff --git a/debian/watch b/debian/watch deleted file mode 100644 index 26d3e81..0000000 --- a/debian/watch +++ /dev/null @@ -1,5 +0,0 @@ -version=4 -opts="mode=git, gitmode=full, pgpmode=gittag" \ - https://git.tuebingen.mpg.de/tfortune/ \ - refs/tags/v@ANY_VERSION@ - -- 2.39.2