Adding debian version 20241201-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
485e3244ed
commit
9c8ce610a0
11 changed files with 250 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
dokuwiki-templates-extra (20241201-1) unstable; urgency=low
|
||||
|
||||
* Initial upload to sid.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Thu, 12 Dec 2024 19:12:55 +0100
|
27
debian/control
vendored
Normal file
27
debian/control
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
Source: dokuwiki-templates-extra
|
||||
Section: web
|
||||
Priority: optional
|
||||
Maintainer: Daniel Baumann <daniel@debian.org>
|
||||
Build-Depends:
|
||||
debhelper-compat (= 13),
|
||||
python3-docutils,
|
||||
Rules-Requires-Root: no
|
||||
Standards-Version: 4.7.0
|
||||
|
||||
Package: dokuwiki-templates-extra
|
||||
Section: web
|
||||
Architecture: all
|
||||
Depends:
|
||||
dokuwiki (>= ${dokuwiki:Depends:low}~),
|
||||
dokuwiki (<< ${dokuwiki:Depends:high}~),
|
||||
${misc:Depends},
|
||||
Enhances:
|
||||
dokuwiki,
|
||||
Provides:
|
||||
dokuwiki-template-ad-hominem (= 2024-10-07),
|
||||
Description: Conglomeration package of DokuWiki templates
|
||||
The dokuwiki-templates-extra contains the following templates for
|
||||
DokuWiki:
|
||||
.
|
||||
* ad-hominem:
|
||||
Simple and lightweight, but modernized version of the default template
|
31
debian/copyright
vendored
Normal file
31
debian/copyright
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name:
|
||||
dokuwiki-template-ad-hominem
|
||||
Upstream-Contact:
|
||||
dokuwiki-template-ad-hominem: https://github.com/saschaleib/dokuwiki-template-ad-hominem/issues
|
||||
Source:
|
||||
dokuwiki-template-ad-hominem: https://github.com/saschaleib/dokuwiki-template-ad-hominem/tags
|
||||
|
||||
Files: *
|
||||
Copyright: 2024 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
License: GPL-2
|
||||
|
||||
Files: templates/*/ad-hominem/*
|
||||
Copyright: 2021-2024 Sascha Leib <ad@hominem.info>
|
||||
License: GPL-2
|
||||
|
||||
License: GPL-2
|
||||
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
|
||||
the Free Software Foundation, version 2 of the License.
|
||||
.
|
||||
This program is distributed in the hope that it 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
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
.
|
||||
The complete text of the GNU General Public License
|
||||
can be found in /usr/share/common-licenses/GPL-2 file.
|
15
debian/dokuwiki-templates-extra.config
vendored
Executable file
15
debian/dokuwiki-templates-extra.config
vendored
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
TEMPLATES="$(cd /usr/share/dokuwiki/templates-extra && ls -d */ | sed -e 's|/$|,|g')"
|
||||
db_subst dokuwiki-templates/templates choices $(echo ${TEMPLATES} | sed -e 's|,$||')
|
||||
|
||||
db_fset dokuwiki-templates/templates seen false
|
||||
|
||||
db_input high dokuwiki-templates/templates || true
|
||||
db_go
|
||||
|
||||
db_stop
|
65
debian/dokuwiki-templates-extra.postinst
vendored
Executable file
65
debian/dokuwiki-templates-extra.postinst
vendored
Executable file
|
@ -0,0 +1,65 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
case "${1}" in
|
||||
configure)
|
||||
db_get dokuwiki-templates/templates
|
||||
TEMPLATES="${RET:-none}"
|
||||
|
||||
db_stop
|
||||
|
||||
# Handling templates
|
||||
DIRECTORIES="$(cd /usr/share/dokuwiki/templates-extra && ls -d */ | sed -e 's|/$||g')"
|
||||
|
||||
case "${TEMPLATES}" in
|
||||
all)
|
||||
TEMPLATES="${DIRECTORIES}"
|
||||
;;
|
||||
|
||||
none)
|
||||
TEMPLATES=""
|
||||
;;
|
||||
|
||||
*)
|
||||
TEMPLATES="$(echo ${TEMPLATES} | sed -e 's|,| |g')"
|
||||
;;
|
||||
esac
|
||||
|
||||
# Disabling all templates
|
||||
for TEMPLATE in ${DIRECTORIES}
|
||||
do
|
||||
if [ -L "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}" ]
|
||||
then
|
||||
if [ "$(dirname $(readlink /var/lib/dokuwiki/lib/tpl/"${TEMPLATE}"))" = "/usr/share/dokuwiki/templates-extra" ]
|
||||
then
|
||||
rm -f "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# Enabling selected templates
|
||||
for TEMPLATE in ${TEMPLATES}
|
||||
do
|
||||
if [ -e "/usr/share/dokuwiki/templates-extra/${TEMPLATE}" ]
|
||||
then
|
||||
ln -s "/usr/share/dokuwiki/templates-extra/${TEMPLATE}" "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}"
|
||||
fi
|
||||
done
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`${1}'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
34
debian/dokuwiki-templates-extra.prerm
vendored
Executable file
34
debian/dokuwiki-templates-extra.prerm
vendored
Executable file
|
@ -0,0 +1,34 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
case "${1}" in
|
||||
remove|upgrade|deconfigure)
|
||||
DIRECTORIES="$(cd /usr/share/dokuwiki/templates-extra && ls -d */ | sed -e 's|/$||g')"
|
||||
|
||||
# Removing all templates
|
||||
for TEMPLATE in ${DIRECTORIES}
|
||||
do
|
||||
if [ -L "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}" ]
|
||||
then
|
||||
if [ "$(dirname $(readlink /var/lib/dokuwiki/lib/tpl/"${TEMPLATE}"))" = "/usr/share/dokuwiki/templates-extra" ]
|
||||
then
|
||||
rm -f "/var/lib/dokuwiki/lib/tpl/${TEMPLATE}"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
;;
|
||||
|
||||
failed-upgrade)
|
||||
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "prerm called with unknown argument \`${1}'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
10
debian/dokuwiki-templates-extra.templates
vendored
Normal file
10
debian/dokuwiki-templates-extra.templates
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
Template: dokuwiki/title
|
||||
Type: title
|
||||
_Description: DokuWiki: Setup
|
||||
|
||||
Template: dokuwiki-templates/templates
|
||||
Type: multiselect
|
||||
Choices: ${choices}
|
||||
Default:
|
||||
_Description: Enable dokuwiki templates
|
||||
Select the templates that you would like to enable:
|
1
debian/po/POTFILES.in
vendored
Normal file
1
debian/po/POTFILES.in
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
[type: gettext/rfc822deb] dokuwiki-templates-extra.templates
|
36
debian/po/templates.pot
vendored
Normal file
36
debian/po/templates.pot
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the dokuwiki-templates-extra package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: dokuwiki-templates-extra\n"
|
||||
"Report-Msgid-Bugs-To: dokuwiki-templates-extra@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2024-12-12 19:48+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. Type: title
|
||||
#. Description
|
||||
#: ../dokuwiki-templates-extra.templates:1001
|
||||
msgid "DokuWiki: Setup"
|
||||
msgstr ""
|
||||
|
||||
#. Type: multiselect
|
||||
#. Description
|
||||
#: ../dokuwiki-templates-extra.templates:2001
|
||||
msgid "Enable dokuwiki templates"
|
||||
msgstr ""
|
||||
|
||||
#. Type: multiselect
|
||||
#. Description
|
||||
#: ../dokuwiki-templates-extra.templates:2001
|
||||
msgid "Select the templates that you would like to enable:"
|
||||
msgstr ""
|
25
debian/rules
vendored
Executable file
25
debian/rules
vendored
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
TEMPLATES_VERSION = 55
|
||||
|
||||
DOKUWIKI_DEPENDS_LOW = 2024-02-06
|
||||
DOKUWIKI_DEPENDS_HIGH = 2026
|
||||
|
||||
%:
|
||||
dh ${@}
|
||||
|
||||
execute_after_dh_auto_clean:
|
||||
rm -f templates/current
|
||||
|
||||
execute_before_dh_auto_build:
|
||||
ln -s $(TEMPLATES_VERSION) templates/current
|
||||
|
||||
execute_after_dh_auto_install:
|
||||
# removing unused files
|
||||
rm -f debian/dokuwiki-templates-extra/usr/share/doc/*/CHANGELOG.txt
|
||||
rm -f debian/dokuwiki-templates-extra/usr/share/doc/*/LICENSE.txt
|
||||
|
||||
override_dh_gencontrol:
|
||||
dh_gencontrol -- \
|
||||
-Vdokuwiki:Depends:low="$(DOKUWIKI_DEPENDS_LOW)" \
|
||||
-Vdokuwiki:Depends:high="$(DOKUWIKI_DEPENDS_HIGH)"
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
Loading…
Add table
Reference in a new issue