-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version bump: v0.2.5. PyPI: update setup.py metadata. Debian: added -…
…-yes option for debmake
- Loading branch information
Showing
5 changed files
with
19 additions
and
12 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,15 +1,15 @@ | ||
# Maintainer: Bumsik Kim <[email protected]> | ||
_pkgname_camelcase=VirtScreen | ||
pkgname=virtscreen | ||
pkgver=0.2.4 | ||
pkgver=0.2.5 | ||
pkgrel=1 | ||
pkgdesc="Make your iPad/tablet/computer as a secondary monitor on Linux" | ||
arch=("i686" "x86_64") | ||
url="https://github.com/kbumsik/VirtScreen" | ||
license=('GPL') | ||
groups=() | ||
depends=('xorg-xrandr' 'x11vnc' 'python-pyqt5' 'python-quamash-git' 'python-netifaces') | ||
makedepends=('python-pip') | ||
depends=('xorg-xrandr' 'x11vnc' 'python-pyqt5' 'qt5-quickcontrols2' 'python-quamash-git' 'python-netifaces') | ||
makedepends=('python-pip' 'perl') | ||
optdepends=( | ||
'arandr: for display settings option' | ||
) | ||
|
@@ -24,9 +24,17 @@ source=(src::git+https://github.com/kbumsik/$_pkgname_camelcase.git#tag=$pkgver) | |
noextract=() | ||
md5sums=('SKIP') | ||
|
||
prepare() { | ||
cd $srcdir/src | ||
# Delete PyQt5 from install_requires because python-pyqt5 does not have PyPI metadata. | ||
# See https://bugs.archlinux.org/task/58887 | ||
perl -pi -e "s/\'PyQt5>=\d+\.\d+\.\d+\',//" \ | ||
setup.py | ||
} | ||
|
||
package() { | ||
cd $srcdir/src | ||
PIP_CONFIG_FILE=/dev/null /usr/bin/pip install --isolated --root="$pkgdir" --ignore-installed --no-deps . | ||
PIP_CONFIG_FILE=/dev/null /usr/bin/pip install --isolated --root="$pkgdir" --ignore-installed --ignore-requires-python --no-deps . | ||
# These are already installed by setup.py | ||
# install -Dm644 "data/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop" | ||
# install -Dm644 "data/icon.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" | ||
|
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,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
PKGVER=0.2.4 | ||
PKGVER=0.2.5 | ||
# Required for debmake | ||
DEBEMAIL="[email protected]" | ||
DEBFULLNAME="Bumsik Kim" | ||
|
@@ -18,7 +18,7 @@ mv $PKGVER.tar.gz virtscreen-$PKGVER.tar.gz | |
cp $ROOT/package/debian/Makefile \ | ||
$ROOT/package/debian/virtscreen-$PKGVER/Makefile | ||
cd $ROOT/package/debian/virtscreen-$PKGVER | ||
debmake -b':sh' | ||
debmake --yes -b':sh' | ||
|
||
# copy files to build | ||
# debmake files | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"x11vncVersion": "0.9.15", | ||
"theme_color": 8, | ||
"virt": { | ||
|
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 @@ | ||
{ | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"x11vncOptions": { | ||
"-ncache": { | ||
"value": "-ncache", | ||
|