Adding debian version 1.0.0-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
70c11d34fc
commit
f8c1d7df47
6 changed files with 94 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -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
|
23
debian/control
vendored
Normal file
23
debian/control
vendored
Normal file
|
@ -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.
|
52
debian/copyright
vendored
Normal file
52
debian/copyright
vendored
Normal file
|
@ -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.
|
10
debian/rules
vendored
Executable file
10
debian/rules
vendored
Executable file
|
@ -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
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
3
debian/watch
vendored
Normal file
3
debian/watch
vendored
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue