1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
#!/bin/sh
set -e
#set -x
if [ "${1}" = "-u" ] && [ -n "${2}" ] ; then
ORIG_URL="${2}"
shift
shift
fi
if [ -z "${1}" ] ; then
echo "This tool creates a template Debian package out of a PyPi package name."
echo "Once this script has run, make sure it did what you expected, then use"
echo "the newly created source package as a template. Make sure you correct"
echo "the debian/copyright file before publishing any package."
echo "Usage: ${0} package-name"
exit 1
fi
PKG_NAME=${1}
# Calculate the package name based on the command line argument
LOWER_PKG_NAME=`echo ${PKG_NAME} | awk '{print tolower($0)}'`
LOWER_PKG_NAME=`echo ${LOWER_PKG_NAME} | sed 's/_/-/g'`
if echo ${LOWER_PKG_NAME} | grep -q '^python-' ; then
DEB_PKG_NAME=${LOWER_PKG_NAME}
else
DEB_PKG_NAME=python-${LOWER_PKG_NAME}
fi
echo "===> Package name will be ${DEB_PKG_NAME}"
if ! [ -e ${PKG_NAME}.json ] ; then
wget https://pypi.org/pypi/${PKG_NAME}/json -O ${PKG_NAME}.json
fi
PY3_PKG_NAME=python3-$(echo ${DEB_PKG_NAME} | sed 's/python-//g')
# Get the info from .json using jq
VERSION_STRING=$(cat ${PKG_NAME}.json | jq --raw-output '. | .info.version')
SHORT_DESC=$(cat ${PKG_NAME}.json | jq --raw-output '. | .info.summary')
UP_MAINT_NAME=$(cat ${PKG_NAME}.json | jq --raw-output '. | .info.author')
AUTHOR_EMAIL=$(cat ${PKG_NAME}.json | jq --raw-output '. | .info.author_email')
HOMEPAGE=$(cat ${PKG_NAME}.json | jq --raw-output '. | .info.home_page')
FIRST_LETTER=$(echo ${PKG_NAME} | awk '{print substr($0,1,1)}')
if [ -e ${DEB_PKG_NAME}_${VERSION_STRING}.orig.tar.xz ] ; then
ORIG=${DEB_PKG_NAME}_${VERSION_STRING}.orig.tar.xz
else
ORIG=${DEB_PKG_NAME}_${VERSION_STRING}.orig.tar.gz
fi
if [ ! -e ${ORIG} ] ; then
echo "===> Downloading ${ORIG} file"
if [ -z "${ORIG_URL}" ] ; then
if [ $(cat ${PKG_NAME}.json | jq --raw-output '. | .urls[0].packagetype') = "sdist" ] ; then
ORIG_URL=$(cat ${PKG_NAME}.json | jq --raw-output '. | .urls[0].url')
else
if [ $(cat ${PKG_NAME}.json | jq --raw-output '. | .urls[1].packagetype') = "sdist" ] ; then
ORIG_URL=$(cat ${PKG_NAME}.json | jq --raw-output '. | .urls[1].url')
else
echo "First and 2nd URL aren't sdist, please manually download..."
exit 1
fi
fi
fi
wget -nv "${ORIG_URL}" -O ${ORIG}
fi
echo "===> Extracting ${ORIG}"
if ! [ -e ${DEB_PKG_NAME}-${VERSION_STRING} ] ; then
tar -xf ${ORIG}
if ! [ ${PKG_NAME}-${VERSION_STRING} = ${DEB_PKG_NAME}-${VERSION_STRING} ] ; then
# The sed is in case there's a package called package_name with underscore, in which
# case we want to replace that by dash
mv $(echo ${PKG_NAME} | sed 's#_#*#g' | sed 's#-#*#g')-${VERSION_STRING} ${DEB_PKG_NAME}-${VERSION_STRING}
fi
fi
if [ -z "${HOMEPAGE}" ] || [ "${HOMEPAGE}" = "null" ] ; then
echo -n "Could not find homepage URL. Please enter it: "
read HOMEPAGE
fi
echo "===> Package info:
Upstream version: ${VERSION_STRING}
Author: ${UP_MAINT_NAME}
Homepage: ${HOMEPAGE}"
echo "===> Cloning package:"
if ! [ -d ${DEB_PKG_NAME} ] ; then
git clone ${HOMEPAGE} ${DEB_PKG_NAME}
fi
echo "===> Getting info"
echo "For which team should this be packaged?"
echo "1 - OpenStack team"
echo "2 - Python team"
echo "3 - Home Assistant team"
echo -n "Enter 1, 2 or 3: "
read TEAM_NUM
case ${TEAM_NUM} in
1)
TEAM=openstack
MAINTAINER_FIELD="Debian OpenStack <team+openstack@tracker.debian.org>"
VCS_URL_START=https://salsa.debian.org/openstack-team/libs
;;
2)
TEAM=python
MAINTAINER_FIELD="Debian Python Team <team+python@tracker.debian.org>"
VCS_URL_START=https://salsa.debian.org/python-team/packages
;;
3)
TEAM=homeassistant
MAINTAINER_FIELD="Home Assistant Team <team+homeassistant@tracker.debian.org>"
VCS_URL_START=https://salsa.debian.org/homeassistant-team/deps
;;
*)
echo "Try again, bye bye..."
exit 1
;;
esac
echo "===> Checking for license:"
if [ -e ${DEB_PKG_NAME}/LICENSE ] ; then
LICENSE_FILE=${DEB_PKG_NAME}/LICENSE
fi
if [ -e ${DEB_PKG_NAME}/LICENSE.md ] ; then
LICENSE_FILE=${DEB_PKG_NAME}/LICENSE.md
fi
if [ -e "${LICENSE_FILE}" ] ; then
if grep -q "Apache Software License 2.0" ${LICENSE_FILE} ; then
LICENSE_TYPE=1
fi
if grep -q "Permission is hereby granted, free of charge" ${LICENSE_FILE} ; then
LICENSE_TYPE=3
fi
fi
if [ -z "${LICENSE_TYPE}" ] ; then
echo "What is the license of this package?"
echo "1 - Apache-2.0"
echo "2 - BSD-2-clause"
echo "3 - Expat"
echo "4 - GPL-2+"
echo "5 - LGPL-2.1"
echo "6 - Other"
echo -n "Enter 1, 2, 3, 4, 5 or 6: "
read LICENSE_TYPE
fi
case ${LICENSE_TYPE} in
1)
LICENSE_TITLE="Apache-2.0"
LICENSE_TEXT=" Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an \"AS IS\" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian-based systems the full text of the Apache version 2.0 license
can be found in /usr/share/common-licenses/Apache-2.0.
"
;;
2)
LICENSE_TITLE="BSD-2-clause"
LICENSE_TEXT=""
;;
3)
LICENSE_TITLE="Expat"
LICENSE_TEXT=" 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.
"
;;
4)
LICENSE_TITLE="GPL-2+"
LICENSE_TEXT=" 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; either version 2 of the License, or (at your option) any later
version.
.
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, write to the Free Software Foundation, Inc., 51 Franklin
St, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU General Public License v2
(GPL) can be found in /usr/share/common-licenses/GPL-2.
"
;;
5)
LICENSE_TITLE="LGPL-2.1"
LICENSE_TEXT=" 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 2 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 St, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU Lesser General Public License
(LGPL) may be found in /usr/share/common-licenses/LGPL-2.1.
"
;;
6)
LICENSE_TITLE="TODO"
LICENSE_TEXT=" TODO"
;;
*)
echo "Unknown entry: bye bye..."
exit 1
;;
esac
echo "===> Creating debian folder for ${DEB_PKG_NAME}"
if [ ! -d ${DEB_PKG_NAME}-${VERSION_STRING}/debian/source ] ; then
mkdir -p ${DEB_PKG_NAME}-${VERSION_STRING}/debian/source
fi
cd ${DEB_PKG_NAME}-${VERSION_STRING}
echo "===> Searching for sphinx doc folder"
if [ -e doc ] ; then
DOC_FOLDER=doc
elif [ -e docs ] ; then
DOC_FOLDER=docs
fi
if [ -n "${DOC_FOLDER}" ] ; then
CONFPY_FILE=`find ${DOC_FOLDER} -name 'conf.py'`
if [ -r "${CONFPY_FILE}" ] ; then
DOC_FOLDER=`dirname ${CONFPY_FILE}`
SPHINX_BUILD_DEP=", python3-sphinx"
RULES_WITH=",sphinxdoc"
SUGGEST_DOC="
Suggests: ${DEB_PKG_NAME}-doc"
else
DOC_FOLDER=
SPHINX_BUILD_DEP=""
RULES_WITH=""
SUGGEST_DOC=""
fi
fi
echo "===> Checking for PBR and fixing accordingly"
# If the package uses PBR, then we need openstack-pkg-tools
if grep -q "setup_requires=\['pbr'\]" ${DEB_PKG_NAME}-${VERSION_STRING}/setup.py ; then
OSTACK_PKG_T_CTRL=", openstack-pkg-tools"
# We need a mandatory include...
# ... and the export OSLO_PACKAGE_VERSION=$(VERSION)
OSTACK_PKG_T_RULES="include /usr/share/openstack-pkg-tools/pkgos.make
export OSLO_PACKAGE_VERSION=\$(VERSION)"
else
# Otherwise, we just include it non-mandatorily, so that
# we can use ./debian/rules gen-orig-xz
OSTACK_PKG_T_CTRL=""
OSTACK_PKG_T_RULES="include /usr/share/openstack-pkg-tools/pkgos.make"
fi
echo "===> Creating debian/control"
echo "Source: ${DEB_PKG_NAME}
Section: python
Priority: optional
Maintainer: ${MAINTAINER_FIELD}
Uploaders:
Thomas Goirand <zigo@debian.org>,
Build-Depends:
debhelper-compat (= 11),
dh-python,
pybuild-plugin-pyproject,
openstack-pkg-tools,
python3-setuptools,
python3-all${SPHINX_BUILD_DEP}${OSTACK_PKG_T_CTRL}
Build-Depends-Indep:
python3-pytest,
Standards-Version: 4.6.1
Vcs-Browser: ${VCS_URL_START}/${DEB_PKG_NAME}
Vcs-Git: ${VCS_URL_START}/${DEB_PKG_NAME}.git
Homepage: ${HOMEPAGE}
Package: ${PY3_PKG_NAME}
Architecture: all
Depends: \${python3:Depends}, \${misc:Depends}${SUGGEST_DOC}
Description: ${SHORT_DESC}
This package provides
.
This package
" >debian/control
if [ -n "${DOC_FOLDER}" ] ; then
echo "Package: python-"$(echo ${LOWER_PKG_NAME} | sed s/python-//)"-doc
Section: doc
Architecture: all
Depends: \${misc:Depends}, \${sphinxdoc:Depends}
Description: ${SHORT_DESC} - doc
- REPLACE ME -
.
This package contains the documentation.
" >>debian/control
echo "Document: ${DEB_PKG_NAME}-doc
Title: ${PKG_NAME} Documentation
Author: N/A
Abstract: Sphinx documentation for ${PKG_NAME}
Section: Programming/Python
Format: HTML
Index: /usr/share/doc/python-${LOWER_PKG_NAME}-doc/html/index.html
Files: /usr/share/doc/python-${LOWER_PKG_NAME}-doc/html/*" >debian/python-${LOWER_PKG_NAME}-doc.doc-base
fi
EDITOR=touch dch --create --package ${DEB_PKG_NAME} --distribution unstable --urgency medium -v ${VERSION_STRING}-1
rm +1
echo "===> Creating debian/copyright"
if [ -n "${AUTHOR_EMAIL}" ] ; then
UP_MAINT_AND_EMAIL="${UP_MAINT_NAME} <${AUTHOR_EMAIL}>"
else
UP_MAINT_AND_EMAIL=${UP_MAINT_NAME}
fi
echo "Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: ${PKG_NAME}
Source: ${HOMEPAGE}
Files: *
Copyright: (c) 2024, ${UP_MAINT_AND_EMAIL}
License: ${LICENSE_TITLE}
Files: debian/*
Copyright: (c) 2024, Thomas Goirand <zigo@debian.org>
License: ${LICENSE_TITLE}
License: ${LICENSE_TITLE}
${LICENSE_TEXT}
" >debian/copyright
echo "===> Creating debian/rules"
if [ -n "${DOC_FOLDER}" ] ; then
SPHINX_BUILD_RULES="override_dh_sphinxdoc:
ifeq (,\$(findstring nodoc, \$(DEB_BUILD_OPTIONS)))
PYTHONPATH=. python3 -m sphinx -b html ${DOC_FOLDER} debian/python-"$(echo ${LOWER_PKG_NAME} | sed s/python-//)"-doc/usr/share/doc/python-"$(echo ${LOWER_PKG_NAME} | sed s/python-//)"-doc/html
dh_sphinxdoc
endif
"
else
SPHINX_BUILD_RULES=""
fi
if [ -e .testr.conf ] || [ -e .stestr.conf ] ; then
UNIT_TEST_RULES="override_dh_auto_test:
ifeq (,\$(findstring nocheck, \$(DEB_BUILD_OPTIONS)))
pkgos-dh_auto_test --no-py2
endif
"
else
UNIT_TEST_RULES="
ifeq (,\$(findstring nocheck, \$(DEB_BUILD_OPTIONS)))
set -e ; for pyvers in \$(PYTHON3S); do \\
python\$\$pyvers setup.py test ; \\
done
endif
"
fi
echo "#!/usr/bin/make -f
UPSTREAM_GIT := ${HOMEPAGE}.git
${OSTACK_PKG_T_RULES}
%:
dh \$@ --buildsystem=pybuild --with python3${RULES_WITH}
${SPHINX_BUILD_RULES}
" >debian/rules
chmod +x debian/rules
#echo "/usr" >debian/python3-${LOWER_PKG_NAME}.install
echo "===> Creating debian/watch and debian/source"
if echo ${HOMEPAGE} | grep -q github.com ; then
echo "version=4
opts=\"dversionmangle=auto,mode=git,uversionmangle=s/\.0rc/~rc/;s/\.0b1/~b1/;s/\.0b2/~b2/;s/\.0b3/~b3/\" \
${HOMEPAGE} refs/tags/(\d[brc\d\.]+)
" >debian/watch
else
echo "version=3
opts=uversionmangle=s/(rc|a|b|c)/~\$1/ \\
https://pypi.debian.net/${PKG_NAME}/${PKG_NAME}-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
" >debian/watch
fi
echo "3.0 (quilt)" >debian/source/format
echo 'extend-diff-ignore = "^[^/]*[.]egg-info/"' >debian/source/options
echo "===> Adding pybuild-autopkgtest in debian/tests"
mkdir -p debian/tests
echo "Test-Command: pybuild-autopkgtest
Depends: @, @builddeps@, pybuild-plugin-autopkgtest
Restrictions: allow-stderr, skippable,
Features: test-name=pybuild-autopkgtest
" >debian/tests/control
echo "===> Attempting to configure the Debian repo"
cd ../${DEB_PKG_NAME}
if git show v${VERSION_STRING} >/dev/null 2>/dev/null; then
git tag ${VERSION_STRING} v${VERSION_STRING}
fi
if ! git show ${VERSION_STRING} >/dev/null 2>/dev/null ; then
echo "Cannot find upstream tag: exiting."
exit 1
fi
git reset --hard ${VERSION_STRING}
GIT_CUR_BRANCH=$(git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/')
git checkout -b debian/unstable
git branch -D ${GIT_CUR_BRANCH}
cp -axuf ../${DEB_PKG_NAME}-${VERSION_STRING}/debian .
git add debian
wrap-and-sort -bastk
echo "===> Regenerating orig tarball"
rm -f ../*.orig.tar.*
./debian/rules gen-orig-xz
echo "===> Outputing reportbug template"
echo "* Package name : ${DEB_PKG_NAME}
Version : ${VERSION_STRING}
Upstream Author : ${UP_MAINT_AND_EMAIL}
* URL : ${HOMEPAGE}
* License : ${LICENSE_TITLE}
Programming Lang: Python
Description : ${SHORT_DESC}
"
|