This repository has been archived by the owner on Sep 17, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #9 from ltworf/debpackaging
Debian packaging
- Loading branch information
Showing
6 changed files
with
23 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
1.1 | ||
* Proper packaging | ||
|
||
1.0 | ||
* Initial release |
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 @@ | ||
vasttrafik-cli (1.0-1) unstable; urgency=low | ||
vasttrafik-cli (1.1-1) unstable; urgency=low | ||
|
||
* Initial release. (Closes: #904135) | ||
|
||
-- Salvo 'LtWorf' Tomaselli <[email protected]> Fri, 20 Jul 2018 10:43:25 +0200 | ||
-- Salvo 'LtWorf' Tomaselli <[email protected]> Mon, 18 Oct 2021 14:58:53 +0200 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,17 +2,24 @@ Source: vasttrafik-cli | |
Section: utils | ||
Priority: optional | ||
Maintainer: Salvo 'LtWorf' Tomaselli <[email protected]> | ||
Build-Depends: debhelper (>= 11), python3, dh-python, python3-distutils, | ||
python3-typedload | ||
Standards-Version: 4.1.5 | ||
X-Python3-Version: >= 3.6 | ||
Build-Depends: | ||
debhelper-compat (= 13), | ||
dh-sequence-python3 | ||
Standards-Version: 4.6.0 | ||
Vcs-Browser: https://github.com/ltworf/vasttrafik-cli | ||
Vcs-Git: https://github.com/ltworf/vasttrafik-cli.git | ||
Homepage: https://github.com/ltworf/vasttrafik-cli | ||
Rules-Requires-Root: no | ||
|
||
Package: vasttrafik-cli | ||
Architecture: all | ||
Depends: ${misc:Depends}, ${python3:Depends}, python3-typedload, | ||
python3-xtermcolor, python3-configobj | ||
Description: Public transport client, for the Västra Götaland county | ||
Depends: | ||
${misc:Depends}, | ||
${python3:Depends}, | ||
python3-typedload, | ||
python3-xtermcolor, | ||
python3-configobj | ||
Description: Public transport client, for Göteborg and the Västra Götaland county | ||
Västtrafik is the agency for public transport in Västra Götaland (Sweden). | ||
. | ||
This package provies a CLI to access their API and plan trips or see the | ||
|
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,4 +1,4 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ --with python3 | ||
dh $@ |
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,4 @@ | ||
version=3 | ||
version=4 | ||
|
||
opts="pgpsigurlmangle=s/$/.asc/" \ | ||
https://github.com/ltworf/vasttrafik-cli/releases \ | ||
/download/(?:\d[\d.]*)/@PACKAGE@_(\d[\d.]*)(?:\.orig)?@ARCHIVE_EXT@ | ||
opts=pgpmode=auto \ | ||
https://github.com/ltworf/vasttrafik-cli/tags (?:.*?/)?v?@ANY_VERSION@@ARCHIVE_EXT@ |