This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from ltworf/fix_setup
Switch to setuptools and other fixes
- Loading branch information
Showing
6 changed files
with
32 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,10 @@ relational (3.1-1) unstable; urgency=low | |
* New upstream release | ||
* Fix debian/watch | ||
* Switch distutils to setuptools | ||
* Improved clean in the upstream makefile | ||
* Bump Standards-Version: 4.6.2 | ||
|
||
-- Salvo 'LtWorf' Tomaselli <[email protected]> Son, 20 Sep 2020 21:40:29 +0200 | ||
-- Salvo 'LtWorf' Tomaselli <[email protected]> Sat, 07 Oct 2023 09:16:09 +0200 | ||
|
||
relational (3.0-1) unstable; urgency=low | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Priority: optional | |
Maintainer: Salvo 'LtWorf' Tomaselli <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), debhelper (>= 13), python3, dh-python, python3-xtermcolor, pyqt5-dev-tools, | ||
python3-setuptools, python3-typedload | ||
Standards-Version: 4.5.0 | ||
Standards-Version: 4.6.2 | ||
X-Python3-Version: >= 3.8 | ||
Homepage: https://ltworf.github.io/relational/ | ||
Rules-Requires-Root: no | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ SHELL=sh -e | |
dh $@ --with python3 | ||
|
||
clean: | ||
rm -rf build *.egg-info | ||
dh $@ | ||
|
||
override_dh_auto_install: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Relational | ||
# Copyright (C) 2008-2020 Salvo "LtWorf" Tomaselli | ||
# Copyright (C) 2008-2023 Salvo "LtWorf" Tomaselli | ||
# | ||
# Relational is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -16,7 +16,7 @@ | |
# | ||
# author Salvo "LtWorf" Tomaselli <[email protected]> | ||
|
||
from distutils.core import setup | ||
from setuptools import setup | ||
|
||
def c_setup(name): | ||
setup( | ||
|