Import Debian changes 0.4-ok1
entrypoints (0.4-ok1) nile; urgency=medium * Build for openKylin.
This commit is contained in:
parent
1f0bcc225b
commit
1c903b5a60
|
@ -0,0 +1,5 @@
|
|||
entrypoints (0.4-ok1) nile; urgency=medium
|
||||
|
||||
* Build for openKylin.
|
||||
|
||||
-- openKylinBot <openKylinBot@openkylin.top> Wed, 08 May 2024 09:35:41 +0800
|
|
@ -0,0 +1,22 @@
|
|||
Source: entrypoints
|
||||
Maintainer: openKylin Developers <packaging@lists.openkylin.top>
|
||||
Uploaders: Julien Puydt <jpuydt@debian.org>
|
||||
Section: python
|
||||
Priority: optional
|
||||
Standards-Version: 4.6.1
|
||||
Homepage: https://github.com/takluyver/entrypoints
|
||||
Build-Depends: debhelper-compat (= 13),
|
||||
dh-python, flit, pybuild-plugin-pyproject,
|
||||
python3-all, python3-pytest
|
||||
Vcs-Git: https://salsa.debian.org/python-team/packages/entrypoints.git
|
||||
Vcs-Browser: https://salsa.debian.org/python-team/packages/entrypoints
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: python3-entrypoints
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${python3:Depends}
|
||||
Description: Discover and load entry points from installed packages (Python 3)
|
||||
This module contains functions to find and load entry points
|
||||
in installed packages.
|
||||
.
|
||||
This package installs the library for Python 3.
|
|
@ -0,0 +1,29 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: entrypoints
|
||||
|
||||
Files: *
|
||||
Copyright: 2015 Thomas Kluyver <thomas@kluyver.me.uk> and contributors
|
||||
License: Expat
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2015-2018 Julien Puydt <jpuydt@debian.org>
|
||||
License: Expat
|
||||
|
||||
License: Expat
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -0,0 +1,7 @@
|
|||
Metadata-Version: 1.1
|
||||
Name: entrypoints
|
||||
Version: @VERSION@
|
||||
Summary: Discover and load entry points from installed packages
|
||||
Author: Thomas Kluyver
|
||||
Author-email: thomas@kluyver.me.uk
|
||||
Classifier: License :: OSI Approved :: MIT License
|
|
@ -0,0 +1,4 @@
|
|||
[DEFAULT]
|
||||
pristine-tar = True
|
||||
debian-branch = debian/master
|
||||
upstream-branch = upstream
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
include /usr/share/dpkg/pkg-info.mk
|
||||
|
||||
#export DH_VERBOSE=1
|
||||
export PYBUILD_NAME=entrypoints
|
||||
|
||||
%:
|
||||
dh $@ --with python3 --buildsystem=pybuild
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
|
@ -0,0 +1,2 @@
|
|||
Tests: upstreamtestsuite3
|
||||
Depends: python3-all, python3-pytest, @
|
|
@ -0,0 +1,12 @@
|
|||
#!/bin/sh
|
||||
set -efu
|
||||
|
||||
pys="$(py3versions -s 2> /dev/null)"
|
||||
|
||||
cp -a tests "$AUTOPKGTEST_TMP"
|
||||
cd "$AUTOPKGTEST_TMP"
|
||||
|
||||
for py in $pys; do
|
||||
echo "=== $py ==="
|
||||
$py -m pytest -v tests
|
||||
done
|
|
@ -0,0 +1,4 @@
|
|||
Bug-Database: https://github.com/takluyver/entrypoints/issues
|
||||
Bug-Submit: https://github.com/takluyver/entrypoints/issues/new
|
||||
Repository: https://github.com/takluyver/entrypoints.git
|
||||
Repository-Browse: https://github.com/takluyver/entrypoints
|
|
@ -0,0 +1,3 @@
|
|||
version=4
|
||||
opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
|
||||
https://github.com/takluyver/entrypoints/tags .*/(.*)\.tar\.gz
|
Loading…
Reference in New Issue