Merged & Updated

This commit is contained in:
not_anonymous 2017-04-15 19:37:14 -06:00
parent 32d1c0254f
commit ce5f8dce8b
3 changed files with 73 additions and 20 deletions

View File

@ -1,21 +1,22 @@
pkgbase = chirp-hg
pkgdesc = GUI tool for programming ham radios, built from hg repo
pkgver = r2802+.c386ef4dc431+
pkgdesc = GUI tool for programming Ham Radios - HG/Complete version
pkgver = 20170415
pkgrel = 1
url = http://chirp.danplanet.com/
install = chirp.install
arch = any
license = GPL
license = GPL3
makedepends = mercurial
depends = python2-lxml
depends = python2-pyserial
depends = desktop-file-utils
depends = pygtk
depends = curl
depends = hamradio-menus
provides = chirp
conflicts = chirp
conflicts = chirp-daily
source = chirp-hg::hg+http://d-rats.com/hg/chirp.hg
options = !emptydirs
source = chirp::hg+http://d-rats.com/hg/chirp.hg
md5sums = SKIP
sha256sums = SKIP
pkgname = chirp-hg

View File

@ -1,29 +1,58 @@
# Maintainer: David Thurstenson thurstylark@gmail.com
# Co-Maintainer: David Thurstenson thurstylark@gmail.com
# Co-Maintainer: not_anonymous <nmlibertarian@gmail.com>
# Contributor: Erez Raviv (erezraviv@gmail.com)
# Contributor: Mathew Hiles (matthew.hiles@gmail.com)
# Contributor: Nicholas Tryon (KC2YTG) <dhraak at gmail dot com>
pkgname=chirp-hg
pkgver=r2802+.c386ef4dc431+
_pkgname=chirp
pkgver=20170415
pkgrel=1
pkgdesc="GUI tool for programming ham radios, built from hg repo"
pkgdesc="GUI tool for programming Ham Radios - HG/Complete version"
arch=('any')
url="http://chirp.danplanet.com/"
license=('GPL')
depends=('python2-lxml' 'python2-pyserial' 'desktop-file-utils' 'pygtk' 'curl')
license=('GPL3')
depends=('python2-lxml' 'python2-pyserial' 'pygtk' 'hamradio-menus')
makedepends=('mercurial')
options=('!emptydirs')
provides=('chirp')
conflicts=('chirp' 'chirp-daily')
source=('chirp-hg::hg+http://d-rats.com/hg/chirp.hg')
noextract=()
md5sums=('SKIP')
conflicts=('chirp-daily')
install=$_pkgname.install
source=("$_pkgname::hg+http://d-rats.com/hg/$_pkgname.hg")
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(hg identify -n)" "$(hg identify -i)"
cd $srcdir/$_pkgname
date +%Y%m%d
}
prepare() {
sed -i 's|/usr/sbin|/usr/bin|' $srcdir/$pkgname/setup.py
cd $srcdir/$_pkgname
sed -i -e 's|/usr/sbin|/usr/bin|g' setup.py
sed -i 's:python:python2:' chirpc
date +%Y%m%d > build/version
export VERSION=$(cat build/version)
sed -i -e 's/^CHIRP_VERSION.*$/CHIRP_VERSION=\"'$VERSION'-arch-dev\"/' chirp/__init__.py
}
build() {
cd $srcdir/$_pkgname
python2 setup.py build
}
package() {
cd "$srcdir/$pkgname"
cd $srcdir/$_pkgname
python2 setup.py install --root="$pkgdir/" --optimize=1
install -m755 chirpc $pkgdir/usr/bin
rm -rf $pkgdir/usr/share/doc/$_pkgname/COPYING
install -m644 README.chirpc $pkgdir/usr/share/doc/$_pkgname
install -m644 README.rpttool $pkgdir/usr/share/doc/$_pkgname
}
md5sums=('SKIP')
sha256sums=('SKIP')

23
chirp.install Normal file
View File

@ -0,0 +1,23 @@
post_install() {
cat <<EOT
================================================================================
In order to access your radio, you may need to adjust permissions on the serial
device. (Note: device names may vary.)
eg.
chown USER /dev/ttyUSB0
or
chmod o+rw /dev/ttyUSB0
Alternatively, in order to let non-privileged users access the serial device on
their next login, you can add them to the group that owns it.
eg.
gpasswd --add USER GROUP
================================================================================
EOT
}
post_upgrade() {
post_install
}