diff options
author | Daniel Baumann <daniel@debian.org> | 2024-12-12 12:31:54 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-12-12 12:31:54 +0100 |
commit | 7f7b35d716a291d53be36932b0bb62eba44c892b (patch) | |
tree | b960f17697252e867c03570204169a6ed2f36488 | |
parent | Adding upstream version 1.0.0. (diff) | |
download | python-feedgen-7f7b35d716a291d53be36932b0bb62eba44c892b.tar.xz python-feedgen-7f7b35d716a291d53be36932b0bb62eba44c892b.zip |
Adding debian version 1.0.0-1.debian/1.0.0-1
Signed-off-by: Daniel Baumann <daniel@debian.org>
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 23 | ||||
-rw-r--r-- | debian/copyright | 52 | ||||
-rwxr-xr-x | debian/rules | 10 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/watch | 3 |
6 files changed, 94 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..18db603 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-feedgen (1.0.0-1) unstable; urgency=medium + + * Initial upload to sid (depends of ablog). + + -- Daniel Baumann <daniel@debian.org> Thu, 12 Dec 2024 12:18:31 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..7871c10 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: python-feedgen +Section: python +Priority: optional +Maintainer: Daniel Baumann <daniel@debian.org> +Build-Depends: + debhelper-compat (= 13), + dh-sequence-python3, + python3-all, + python3-lxml <!nocheck>, + python3-setuptools, +Rules-Requires-Root: no +Standards-Version: 4.7.0 +Homepage: https://github.com/lkiesow/python-feedgen + +Package: python3-feedgen +Section: python +Architecture: all +Depends: + ${misc:Depends}, + ${python3:Depends}, +Description: generate ATOM and RSS feeds (Python) + This Python module can be used to generate web feeds in both ATOM and RSS + format. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..6d44ad7 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,52 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: python-feedgen +Upstream-Contact: https://github.com/lkiesow/python-feedgen/issues +Source: https://github.com/lkiesow/python-feedgen/tags + +Files: * +Copyright: 2017-2023 Lars Kiesow <lkiesow@uos.de> +License: BSD-2-clause or LGPL-3+ + +Files: debian/* +Copyright: 2024 Daniel Baumann <daniel.baumann@progress-linux.org> +License: BSD-2-Clause or LGPL-3+ + +License: BSD-2-Clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + . + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License: LGPL-3+ + 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 3 of the License, or (at your option) any later version. + . + This library 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 + Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + . + The complete text of the GNU Lesser General Public License + can be found in /usr/share/common-licenses/LGPL-3 file. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9f2af81 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=feedgen + +%: + dh ${@} --buildsystem=pybuild + +execute_after_dh_auto_clean: + # help pybuild + rm -rf *.egg-info diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..699e33e --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=4 +opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/feedgen-$1\.tar\.gz/ \ +https://github.com/lkiesow/python-feedgen/tags .*/v?(\d\S+)\.tar\.gz |