summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--debian/compat2
-rw-r--r--debian/control6
-rw-r--r--shopno.csv2
-rwxr-xr-xvalidate-csv-data5
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
diff --git a/shopno.csv b/shopno.csv
index 3fd5f2a..ae653ef 100644
--- a/shopno.csv
+++ b/shopno.csv
@@ -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.