diff options
author | 2023-09-11 15:36:07 +0600 | |
---|---|---|
committer | 2023-09-11 15:37:06 +0600 | |
commit | 4db795c01f8d8b9ace74152d085e57f5faa3951c (patch) | |
tree | bc5b2b8225ff679d486a300d2cb29b26794a4dde | |
parent | 95f4ac3b93577904db02b4ddc74434cb07b59521 (diff) | |
download | distro-info-data-shopno-4db795c01f8d8b9ace74152d085e57f5faa3951c.tar.gz distro-info-data-shopno-4db795c01f8d8b9ace74152d085e57f5faa3951c.zip |
python: Drop eol build-depends
Signed-off-by: Mubashshir <ahm@jadupc.com>
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 2 | ||||
-rw-r--r-- | debian/control | 6 | ||||
-rw-r--r-- | shopno.csv | 2 | ||||
-rwxr-xr-x | validate-csv-data | 5 |
5 files changed, 15 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index 90f6238..5936137 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +distro-info-data-shopno (0.2) shopno; urgency=medium + + * python: Drop eol build-depends + + -- Mubashshir <ahm@jadupc.com> Mon, 11 Sep 2023 15:36:52 +0600 + distro-info-data-shopno (0.1) shopno; urgency=medium * Add Shopno OS 4 Shopno. diff --git a/debian/compat b/debian/compat index ec63514..f599e28 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/debian/control b/debian/control index 41d2f60..4cc0003 100644 --- a/debian/control +++ b/debian/control @@ -3,10 +3,10 @@ Section: devel Priority: optional Maintainer: Mubashshir <ahm@jadupc.com> Uploaders: FA Saikat <fahim.saikat@jadupc.com> -Build-Depends: debhelper (>= 9), python +Build-Depends: debhelper (>= 10), python3 Standards-Version: 4.1.4 -Vcs-Git: git://builder.jadupc.com/git/pkgs/distro-info-data-shopno -Vcs-Browser: https://builder.jadupc.com/git/pkgs/distro-info-data-shopno +Vcs-Git: git://dev.jadupc.com/pkgs/distro-info-data-shopno +Vcs-Browser: https://dev.jadupc.com/pkgs/distro-info-data-shopno Rules-Requires-Root: no Package: distro-info-data-shopno @@ -1,2 +1,2 @@ version,codename,series,created,release,eol -4,Shopno,shopno,2023-01-01 +4,Shopno,shopno,2023-01-01,, diff --git a/validate-csv-data b/validate-csv-data index 397b2c4..3e9e79e 100755 --- a/validate-csv-data +++ b/validate-csv-data @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Copyright (C) 2012, Benjamin Drung <bdrung@debian.org> # @@ -55,6 +55,9 @@ def error(filename, line, message, *args): """Prints an error message""" print >> sys.stderr, "%s:%i: %s." % (filename, line, message % args) +if not 'xrange' in globals(): + xrange = range + def validate(filename, distro): """Validates a given CSV file. |