mirror of
https://github.com/openwrt/packages.git
synced 2025-07-05 12:23:08 +00:00
This renames the source package to python-pyodbc to match other Python packages. This also updates the unixodbc dependency to libodbc, updates the package title and description, and adds a test.sh script for the packages feed CI. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
6 lines
75 B
Bash
6 lines
75 B
Bash
#!/bin/sh
|
|
|
|
[ "$1" = python3-pyodbc ] || exit 0
|
|
|
|
python3 -c 'import pyodbc'
|