Tue Aug 25 13:45:53 2020 UTC ()
ham/chirp: Update to 20200807 (switching to daily builds)

Upstream does not have release notes (or releases).

chirp now tracks upstreams "chirp-daily" pseudoreleases, labeled by
date.  The package remains "chirp"; upstream only calls it chirp-daily
due to some GNU/Linux packaging issues.

This is a huge update as 0.4.1 is from many years ago.


(gdt)
diff -r1.1 -r1.2 pkgsrc/ham/chirp/DESCR
diff -r1.21 -r1.22 pkgsrc/ham/chirp/Makefile
diff -r1.3 -r1.4 pkgsrc/ham/chirp/PLIST
diff -r1.3 -r1.4 pkgsrc/ham/chirp/distinfo
diff -r1.1 -r1.2 pkgsrc/ham/chirp/patches/patch-chirp_platform.py
diff -r1.1 -r1.2 pkgsrc/ham/chirp/patches/patch-setup.py

cvs diff -r1.1 -r1.2 pkgsrc/ham/chirp/DESCR (expand / switch to unified diff)

--- pkgsrc/ham/chirp/DESCR 2014/07/21 07:57:21 1.1
+++ pkgsrc/ham/chirp/DESCR 2020/08/25 13:45:52 1.2
@@ -1,3 +1,6 @@ @@ -1,3 +1,6 @@
1CHIRP is a free, open-source tool for programming your amateur 1CHIRP is a free, open-source tool for programming your amateur radio.
2radio. It supports a large number of manufacturers and models, as well 2It supports a large number of manufacturers and models, as well as
3as provides a way to interface with multiple data sources and formats. 3provides a way to interface with multiple data sources and formats.
 4
 5This package provides the stable version preferred by upstream,
 6sometimes called "chirp-daily" in other contexts.

cvs diff -r1.21 -r1.22 pkgsrc/ham/chirp/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/chirp/Makefile 2020/08/17 20:19:12 1.21
+++ pkgsrc/ham/chirp/Makefile 2020/08/25 13:45:52 1.22
@@ -1,42 +1,53 @@ @@ -1,42 +1,53 @@
1# $NetBSD: Makefile,v 1.21 2020/08/17 20:19:12 leot Exp $ 1# $NetBSD: Makefile,v 1.22 2020/08/25 13:45:52 gdt Exp $
2 2
3DISTNAME= chirp-0.4.1 3# Chirp does not have what would normally called releasees. They have
4PKGREVISION= 14 4# "daily builds" which are like releases except that:
 5# they are called chirp-daily instead of chirp
 6# they have YYYYMMDD version numbers
 7# they don't have the usual release testing
 8# Upstream says
 9# they will not go back to regular version numbers
 10# the preferred name is chirp, not chirp-daily
 11# via
 12# https://chirp.danplanet.com/issues/8067
 13# https://chirp.danplanet.com/news/15
 14PKGVERSION= 20200807
 15PKGNAME= chirp-${PKGVERSION}
 16DISTNAME= chirp-daily-${PKGVERSION_NOREV}
5CATEGORIES= ham 17CATEGORIES= ham
6MASTER_SITES= https://chirp.danplanet.com/download/${PKGVERSION}/ 18MASTER_SITES= https://trac.chirp.danplanet.com/chirp_daily/daily-${PKGVERSION_NOREV}/
7 19
8MAINTAINER= dbj@NetBSD.org 20MAINTAINER= dbj@NetBSD.org
9HOMEPAGE= https://chirp.danplanet.com/projects/chirp/wiki/Home 21HOMEPAGE= https://chirp.danplanet.com/projects/chirp/wiki/Home
10COMMENT= Tool for programming Amateur Radio HTs 22COMMENT= Tool for programming Amateur Radio HTs
11LICENSE= gnu-gpl-v3 23LICENSE= gnu-gpl-v3
12 24
13USE_LANGUAGES= #none 25USE_LANGUAGES= #none
14REPLACE_PYTHON= *.py chirp/*.py chirpui/*.py 26REPLACE_PYTHON= *.py chirp/*.py chirp/ui/*.py
15 27
16DEPENDS+= ${PYPKGPREFIX}-serial>=2.7:../../comms/py-serial 28DEPENDS+= ${PYPKGPREFIX}-serial>=2.7:../../comms/py-serial
 29DEPENDS+= ${PYPKGPREFIX}-future>=0.18.0:../../devel/py-future
17 30
18PYTHON_VERSIONS_ACCEPTED= 27 # py-gtk2 31PYTHON_VERSIONS_ACCEPTED= 27 # py-gtk2
19 32
20.include "../../mk/bsd.prefs.mk" 33.include "../../mk/bsd.prefs.mk"
21 34
22SUBST_CLASSES+= fix-manpaths 35SUBST_CLASSES+= fix-manpaths
23SUBST_STAGE.fix-manpaths= pre-configure 36SUBST_STAGE.fix-manpaths= pre-configure
24SUBST_MESSAGE.fix-manpaths= Fixing man paths 37SUBST_MESSAGE.fix-manpaths= Fixing man paths
25SUBST_FILES.fix-manpaths= setup.py 38SUBST_FILES.fix-manpaths= setup.py
26SUBST_SED.fix-manpaths= -e 's,share/man/man1,${PKGMANDIR}/man1,g' 39SUBST_SED.fix-manpaths= -e 's,share/man/man1,${PKGMANDIR}/man1,g'
27 40
28SUBST_CLASSES+= fix-sharepaths 41SUBST_CLASSES+= fix-sharepaths
29SUBST_STAGE.fix-sharepaths= pre-configure 42SUBST_STAGE.fix-sharepaths= pre-configure
30SUBST_MESSAGE.fix-sharepaths= Fixing /usr/share paths 43SUBST_MESSAGE.fix-sharepaths= Fixing /usr/share paths
31SUBST_FILES.fix-sharepaths= chirpw 44SUBST_FILES.fix-sharepaths= chirp/platform.py
32SUBST_FILES.fix-sharepaths+= chirp/generic_xml.py 
33SUBST_FILES.fix-sharepaths+= chirpui/mainapp.py 
34SUBST_SED.fix-sharepaths= -e 's,/usr/share,${PREFIX}/share,g' 45SUBST_SED.fix-sharepaths= -e 's,/usr/share,${PREFIX}/share,g'
35 46
36.include "../../sysutils/desktop-file-utils/desktopdb.mk" 47.include "../../sysutils/desktop-file-utils/desktopdb.mk"
37 48
38.include "../../lang/python/distutils.mk" 49.include "../../lang/python/distutils.mk"
39.include "../../lang/python/application.mk" 50.include "../../lang/python/application.mk"
40.include "../../textproc/py-libxml2/buildlink3.mk" 51.include "../../textproc/py-libxml2/buildlink3.mk"
41.include "../../x11/py-gtk2/buildlink3.mk" 52.include "../../x11/py-gtk2/buildlink3.mk"
42.include "../../mk/bsd.pkg.mk" 53.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/ham/chirp/PLIST (expand / switch to unified diff)

--- pkgsrc/ham/chirp/PLIST 2020/08/25 13:42:15 1.3
+++ pkgsrc/ham/chirp/PLIST 2020/08/25 13:45:52 1.4
@@ -1,354 +1,579 @@ @@ -1,354 +1,579 @@
1@comment $NetBSD: PLIST,v 1.3 2020/08/25 13:42:15 gdt Exp $ 1@comment $NetBSD: PLIST,v 1.4 2020/08/25 13:45:52 gdt Exp $
2@pkgdir share/chirp/images 2@pkgdir share/chirp/images
3bin/chirpw 3bin/chirpw
4${PYSITELIB}/${EGG_FILE} 4bin/rpttool
 5${PYSITELIB}/chirp-daily_${PKGVERSION}-py${PYVERSSUFFIX}.egg-info
5${PYSITELIB}/chirp/__init__.py 6${PYSITELIB}/chirp/__init__.py
6${PYSITELIB}/chirp/__init__.pyc 7${PYSITELIB}/chirp/__init__.pyc
7${PYSITELIB}/chirp/__init__.pyo 8${PYSITELIB}/chirp/__init__.pyo
8${PYSITELIB}/chirp/alinco.py 
9${PYSITELIB}/chirp/alinco.pyc 
10${PYSITELIB}/chirp/alinco.pyo 
11${PYSITELIB}/chirp/anytone.py 
12${PYSITELIB}/chirp/anytone.pyc 
13${PYSITELIB}/chirp/anytone.pyo 
14${PYSITELIB}/chirp/bandplan.py 9${PYSITELIB}/chirp/bandplan.py
15${PYSITELIB}/chirp/bandplan.pyc 10${PYSITELIB}/chirp/bandplan.pyc
16${PYSITELIB}/chirp/bandplan.pyo 11${PYSITELIB}/chirp/bandplan.pyo
17${PYSITELIB}/chirp/bandplan_au.py 12${PYSITELIB}/chirp/bandplan_au.py
18${PYSITELIB}/chirp/bandplan_au.pyc 13${PYSITELIB}/chirp/bandplan_au.pyc
19${PYSITELIB}/chirp/bandplan_au.pyo 14${PYSITELIB}/chirp/bandplan_au.pyo
20${PYSITELIB}/chirp/bandplan_iaru_r1.py 15${PYSITELIB}/chirp/bandplan_iaru_r1.py
21${PYSITELIB}/chirp/bandplan_iaru_r1.pyc 16${PYSITELIB}/chirp/bandplan_iaru_r1.pyc
22${PYSITELIB}/chirp/bandplan_iaru_r1.pyo 17${PYSITELIB}/chirp/bandplan_iaru_r1.pyo
23${PYSITELIB}/chirp/bandplan_iaru_r2.py 18${PYSITELIB}/chirp/bandplan_iaru_r2.py
24${PYSITELIB}/chirp/bandplan_iaru_r2.pyc 19${PYSITELIB}/chirp/bandplan_iaru_r2.pyc
25${PYSITELIB}/chirp/bandplan_iaru_r2.pyo 20${PYSITELIB}/chirp/bandplan_iaru_r2.pyo
26${PYSITELIB}/chirp/bandplan_iaru_r3.py 21${PYSITELIB}/chirp/bandplan_iaru_r3.py
27${PYSITELIB}/chirp/bandplan_iaru_r3.pyc 22${PYSITELIB}/chirp/bandplan_iaru_r3.pyc
28${PYSITELIB}/chirp/bandplan_iaru_r3.pyo 23${PYSITELIB}/chirp/bandplan_iaru_r3.pyo
29${PYSITELIB}/chirp/bandplan_na.py 24${PYSITELIB}/chirp/bandplan_na.py
30${PYSITELIB}/chirp/bandplan_na.pyc 25${PYSITELIB}/chirp/bandplan_na.pyc
31${PYSITELIB}/chirp/bandplan_na.pyo 26${PYSITELIB}/chirp/bandplan_na.pyo
32${PYSITELIB}/chirp/baofeng_uv3r.py 
33${PYSITELIB}/chirp/baofeng_uv3r.pyc 
34${PYSITELIB}/chirp/baofeng_uv3r.pyo 
35${PYSITELIB}/chirp/bitwise.py 27${PYSITELIB}/chirp/bitwise.py
36${PYSITELIB}/chirp/bitwise.pyc 28${PYSITELIB}/chirp/bitwise.pyc
37${PYSITELIB}/chirp/bitwise.pyo 29${PYSITELIB}/chirp/bitwise.pyo
38${PYSITELIB}/chirp/bitwise_grammar.py 30${PYSITELIB}/chirp/bitwise_grammar.py
39${PYSITELIB}/chirp/bitwise_grammar.pyc 31${PYSITELIB}/chirp/bitwise_grammar.pyc
40${PYSITELIB}/chirp/bitwise_grammar.pyo 32${PYSITELIB}/chirp/bitwise_grammar.pyo
41${PYSITELIB}/chirp/bjuv55.py 
42${PYSITELIB}/chirp/bjuv55.pyc 
43${PYSITELIB}/chirp/bjuv55.pyo 
44${PYSITELIB}/chirp/chirp_common.py 33${PYSITELIB}/chirp/chirp_common.py
45${PYSITELIB}/chirp/chirp_common.pyc 34${PYSITELIB}/chirp/chirp_common.pyc
46${PYSITELIB}/chirp/chirp_common.pyo 35${PYSITELIB}/chirp/chirp_common.pyo
47${PYSITELIB}/chirp/detect.py 36${PYSITELIB}/chirp/detect.py
48${PYSITELIB}/chirp/detect.pyc 37${PYSITELIB}/chirp/detect.pyc
49${PYSITELIB}/chirp/detect.pyo 38${PYSITELIB}/chirp/detect.pyo
50${PYSITELIB}/chirp/directory.py 39${PYSITELIB}/chirp/directory.py
51${PYSITELIB}/chirp/directory.pyc 40${PYSITELIB}/chirp/directory.pyc
52${PYSITELIB}/chirp/directory.pyo 41${PYSITELIB}/chirp/directory.pyo
 42${PYSITELIB}/chirp/dmrmarc.py
 43${PYSITELIB}/chirp/dmrmarc.pyc
 44${PYSITELIB}/chirp/dmrmarc.pyo
 45${PYSITELIB}/chirp/drivers/__init__.py
 46${PYSITELIB}/chirp/drivers/__init__.pyc
 47${PYSITELIB}/chirp/drivers/__init__.pyo
 48${PYSITELIB}/chirp/drivers/alinco.py
 49${PYSITELIB}/chirp/drivers/alinco.pyc
 50${PYSITELIB}/chirp/drivers/alinco.pyo
 51${PYSITELIB}/chirp/drivers/anytone.py
 52${PYSITELIB}/chirp/drivers/anytone.pyc
 53${PYSITELIB}/chirp/drivers/anytone.pyo
 54${PYSITELIB}/chirp/drivers/anytone778uv.py
 55${PYSITELIB}/chirp/drivers/anytone778uv.pyc
 56${PYSITELIB}/chirp/drivers/anytone778uv.pyo
 57${PYSITELIB}/chirp/drivers/anytone_ht.py
 58${PYSITELIB}/chirp/drivers/anytone_ht.pyc
 59${PYSITELIB}/chirp/drivers/anytone_ht.pyo
 60${PYSITELIB}/chirp/drivers/ap510.py
 61${PYSITELIB}/chirp/drivers/ap510.pyc
 62${PYSITELIB}/chirp/drivers/ap510.pyo
 63${PYSITELIB}/chirp/drivers/baofeng_common.py
 64${PYSITELIB}/chirp/drivers/baofeng_common.pyc
 65${PYSITELIB}/chirp/drivers/baofeng_common.pyo
 66${PYSITELIB}/chirp/drivers/baofeng_uv3r.py
 67${PYSITELIB}/chirp/drivers/baofeng_uv3r.pyc
 68${PYSITELIB}/chirp/drivers/baofeng_uv3r.pyo
 69${PYSITELIB}/chirp/drivers/baofeng_wp970i.py
 70${PYSITELIB}/chirp/drivers/baofeng_wp970i.pyc
 71${PYSITELIB}/chirp/drivers/baofeng_wp970i.pyo
 72${PYSITELIB}/chirp/drivers/bf-t1.py
 73${PYSITELIB}/chirp/drivers/bf-t1.pyc
 74${PYSITELIB}/chirp/drivers/bf-t1.pyo
 75${PYSITELIB}/chirp/drivers/bj9900.py
 76${PYSITELIB}/chirp/drivers/bj9900.pyc
 77${PYSITELIB}/chirp/drivers/bj9900.pyo
 78${PYSITELIB}/chirp/drivers/bjuv55.py
 79${PYSITELIB}/chirp/drivers/bjuv55.pyc
 80${PYSITELIB}/chirp/drivers/bjuv55.pyo
 81${PYSITELIB}/chirp/drivers/boblov_x3plus.py
 82${PYSITELIB}/chirp/drivers/boblov_x3plus.pyc
 83${PYSITELIB}/chirp/drivers/boblov_x3plus.pyo
 84${PYSITELIB}/chirp/drivers/btech.py
 85${PYSITELIB}/chirp/drivers/btech.pyc
 86${PYSITELIB}/chirp/drivers/btech.pyo
 87${PYSITELIB}/chirp/drivers/fd268.py
 88${PYSITELIB}/chirp/drivers/fd268.pyc
 89${PYSITELIB}/chirp/drivers/fd268.pyo
 90${PYSITELIB}/chirp/drivers/ft1500m.py
 91${PYSITELIB}/chirp/drivers/ft1500m.pyc
 92${PYSITELIB}/chirp/drivers/ft1500m.pyo
 93${PYSITELIB}/chirp/drivers/ft1802.py
 94${PYSITELIB}/chirp/drivers/ft1802.pyc
 95${PYSITELIB}/chirp/drivers/ft1802.pyo
 96${PYSITELIB}/chirp/drivers/ft1d.py
 97${PYSITELIB}/chirp/drivers/ft1d.pyc
 98${PYSITELIB}/chirp/drivers/ft1d.pyo
 99${PYSITELIB}/chirp/drivers/ft2800.py
 100${PYSITELIB}/chirp/drivers/ft2800.pyc
 101${PYSITELIB}/chirp/drivers/ft2800.pyo
 102${PYSITELIB}/chirp/drivers/ft2900.py
 103${PYSITELIB}/chirp/drivers/ft2900.pyc
 104${PYSITELIB}/chirp/drivers/ft2900.pyo
 105${PYSITELIB}/chirp/drivers/ft2d.py
 106${PYSITELIB}/chirp/drivers/ft2d.pyc
 107${PYSITELIB}/chirp/drivers/ft2d.pyo
 108${PYSITELIB}/chirp/drivers/ft4.py
 109${PYSITELIB}/chirp/drivers/ft4.pyc
 110${PYSITELIB}/chirp/drivers/ft4.pyo
 111${PYSITELIB}/chirp/drivers/ft450d.py
 112${PYSITELIB}/chirp/drivers/ft450d.pyc
 113${PYSITELIB}/chirp/drivers/ft450d.pyo
 114${PYSITELIB}/chirp/drivers/ft50.py
 115${PYSITELIB}/chirp/drivers/ft50.pyc
 116${PYSITELIB}/chirp/drivers/ft50.pyo
 117${PYSITELIB}/chirp/drivers/ft60.py
 118${PYSITELIB}/chirp/drivers/ft60.pyc
 119${PYSITELIB}/chirp/drivers/ft60.pyo
 120${PYSITELIB}/chirp/drivers/ft70.py
 121${PYSITELIB}/chirp/drivers/ft70.pyc
 122${PYSITELIB}/chirp/drivers/ft70.pyo
 123${PYSITELIB}/chirp/drivers/ft7100.py
 124${PYSITELIB}/chirp/drivers/ft7100.pyc
 125${PYSITELIB}/chirp/drivers/ft7100.pyo
 126${PYSITELIB}/chirp/drivers/ft7800.py
 127${PYSITELIB}/chirp/drivers/ft7800.pyc
 128${PYSITELIB}/chirp/drivers/ft7800.pyo
 129${PYSITELIB}/chirp/drivers/ft8100.py
 130${PYSITELIB}/chirp/drivers/ft8100.pyc
 131${PYSITELIB}/chirp/drivers/ft8100.pyo
 132${PYSITELIB}/chirp/drivers/ft817.py
 133${PYSITELIB}/chirp/drivers/ft817.pyc
 134${PYSITELIB}/chirp/drivers/ft817.pyo
 135${PYSITELIB}/chirp/drivers/ft818.py
 136${PYSITELIB}/chirp/drivers/ft818.pyc
 137${PYSITELIB}/chirp/drivers/ft818.pyo
 138${PYSITELIB}/chirp/drivers/ft857.py
 139${PYSITELIB}/chirp/drivers/ft857.pyc
 140${PYSITELIB}/chirp/drivers/ft857.pyo
 141${PYSITELIB}/chirp/drivers/ft90.py
 142${PYSITELIB}/chirp/drivers/ft90.pyc
 143${PYSITELIB}/chirp/drivers/ft90.pyo
 144${PYSITELIB}/chirp/drivers/ftm3200d.py
 145${PYSITELIB}/chirp/drivers/ftm3200d.pyc
 146${PYSITELIB}/chirp/drivers/ftm3200d.pyo
 147${PYSITELIB}/chirp/drivers/ftm350.py
 148${PYSITELIB}/chirp/drivers/ftm350.pyc
 149${PYSITELIB}/chirp/drivers/ftm350.pyo
 150${PYSITELIB}/chirp/drivers/ftm7250d.py
 151${PYSITELIB}/chirp/drivers/ftm7250d.pyc
 152${PYSITELIB}/chirp/drivers/ftm7250d.pyo
 153${PYSITELIB}/chirp/drivers/ga510.py
 154${PYSITELIB}/chirp/drivers/ga510.pyc
 155${PYSITELIB}/chirp/drivers/ga510.pyo
 156${PYSITELIB}/chirp/drivers/generic_csv.py
 157${PYSITELIB}/chirp/drivers/generic_csv.pyc
 158${PYSITELIB}/chirp/drivers/generic_csv.pyo
 159${PYSITELIB}/chirp/drivers/generic_tpe.py
 160${PYSITELIB}/chirp/drivers/generic_tpe.pyc
 161${PYSITELIB}/chirp/drivers/generic_tpe.pyo
 162${PYSITELIB}/chirp/drivers/generic_xml.py
 163${PYSITELIB}/chirp/drivers/generic_xml.pyc
 164${PYSITELIB}/chirp/drivers/generic_xml.pyo
 165${PYSITELIB}/chirp/drivers/gmrsuv1.py
 166${PYSITELIB}/chirp/drivers/gmrsuv1.pyc
 167${PYSITELIB}/chirp/drivers/gmrsuv1.pyo
 168${PYSITELIB}/chirp/drivers/h777.py
 169${PYSITELIB}/chirp/drivers/h777.pyc
 170${PYSITELIB}/chirp/drivers/h777.pyo
 171${PYSITELIB}/chirp/drivers/hobbypcb.py
 172${PYSITELIB}/chirp/drivers/hobbypcb.pyc
 173${PYSITELIB}/chirp/drivers/hobbypcb.pyo
 174${PYSITELIB}/chirp/drivers/ic208.py
 175${PYSITELIB}/chirp/drivers/ic208.pyc
 176${PYSITELIB}/chirp/drivers/ic208.pyo
 177${PYSITELIB}/chirp/drivers/ic2100.py
 178${PYSITELIB}/chirp/drivers/ic2100.pyc
 179${PYSITELIB}/chirp/drivers/ic2100.pyo
 180${PYSITELIB}/chirp/drivers/ic2200.py
 181${PYSITELIB}/chirp/drivers/ic2200.pyc
 182${PYSITELIB}/chirp/drivers/ic2200.pyo
 183${PYSITELIB}/chirp/drivers/ic2300.py
 184${PYSITELIB}/chirp/drivers/ic2300.pyc
 185${PYSITELIB}/chirp/drivers/ic2300.pyo
 186${PYSITELIB}/chirp/drivers/ic2720.py
 187${PYSITELIB}/chirp/drivers/ic2720.pyc
 188${PYSITELIB}/chirp/drivers/ic2720.pyo
 189${PYSITELIB}/chirp/drivers/ic2730.py
 190${PYSITELIB}/chirp/drivers/ic2730.pyc
 191${PYSITELIB}/chirp/drivers/ic2730.pyo
 192${PYSITELIB}/chirp/drivers/ic2820.py
 193${PYSITELIB}/chirp/drivers/ic2820.pyc
 194${PYSITELIB}/chirp/drivers/ic2820.pyo
 195${PYSITELIB}/chirp/drivers/ic9x.py
 196${PYSITELIB}/chirp/drivers/ic9x.pyc
 197${PYSITELIB}/chirp/drivers/ic9x.pyo
 198${PYSITELIB}/chirp/drivers/ic9x_icf.py
 199${PYSITELIB}/chirp/drivers/ic9x_icf.pyc
 200${PYSITELIB}/chirp/drivers/ic9x_icf.pyo
 201${PYSITELIB}/chirp/drivers/ic9x_icf_ll.py
 202${PYSITELIB}/chirp/drivers/ic9x_icf_ll.pyc
 203${PYSITELIB}/chirp/drivers/ic9x_icf_ll.pyo
 204${PYSITELIB}/chirp/drivers/ic9x_ll.py
 205${PYSITELIB}/chirp/drivers/ic9x_ll.pyc
 206${PYSITELIB}/chirp/drivers/ic9x_ll.pyo
 207${PYSITELIB}/chirp/drivers/icf.py
 208${PYSITELIB}/chirp/drivers/icf.pyc
 209${PYSITELIB}/chirp/drivers/icf.pyo
 210${PYSITELIB}/chirp/drivers/icomciv.py
 211${PYSITELIB}/chirp/drivers/icomciv.pyc
 212${PYSITELIB}/chirp/drivers/icomciv.pyo
 213${PYSITELIB}/chirp/drivers/icp7.py
 214${PYSITELIB}/chirp/drivers/icp7.pyc
 215${PYSITELIB}/chirp/drivers/icp7.pyo
 216${PYSITELIB}/chirp/drivers/icq7.py
 217${PYSITELIB}/chirp/drivers/icq7.pyc
 218${PYSITELIB}/chirp/drivers/icq7.pyo
 219${PYSITELIB}/chirp/drivers/ict70.py
 220${PYSITELIB}/chirp/drivers/ict70.pyc
 221${PYSITELIB}/chirp/drivers/ict70.pyo
 222${PYSITELIB}/chirp/drivers/ict7h.py
 223${PYSITELIB}/chirp/drivers/ict7h.pyc
 224${PYSITELIB}/chirp/drivers/ict7h.pyo
 225${PYSITELIB}/chirp/drivers/ict8.py
 226${PYSITELIB}/chirp/drivers/ict8.pyc
 227${PYSITELIB}/chirp/drivers/ict8.pyo
 228${PYSITELIB}/chirp/drivers/icv86.py
 229${PYSITELIB}/chirp/drivers/icv86.pyc
 230${PYSITELIB}/chirp/drivers/icv86.pyo
 231${PYSITELIB}/chirp/drivers/icw32.py
 232${PYSITELIB}/chirp/drivers/icw32.pyc
 233${PYSITELIB}/chirp/drivers/icw32.pyo
 234${PYSITELIB}/chirp/drivers/icx8x.py
 235${PYSITELIB}/chirp/drivers/icx8x.pyc
 236${PYSITELIB}/chirp/drivers/icx8x.pyo
 237${PYSITELIB}/chirp/drivers/icx8x_ll.py
 238${PYSITELIB}/chirp/drivers/icx8x_ll.pyc
 239${PYSITELIB}/chirp/drivers/icx8x_ll.pyo
 240${PYSITELIB}/chirp/drivers/icx90.py
 241${PYSITELIB}/chirp/drivers/icx90.pyc
 242${PYSITELIB}/chirp/drivers/icx90.pyo
 243${PYSITELIB}/chirp/drivers/id31.py
 244${PYSITELIB}/chirp/drivers/id31.pyc
 245${PYSITELIB}/chirp/drivers/id31.pyo
 246${PYSITELIB}/chirp/drivers/id51.py
 247${PYSITELIB}/chirp/drivers/id51.pyc
 248${PYSITELIB}/chirp/drivers/id51.pyo
 249${PYSITELIB}/chirp/drivers/id51plus.py
 250${PYSITELIB}/chirp/drivers/id51plus.pyc
 251${PYSITELIB}/chirp/drivers/id51plus.pyo
 252${PYSITELIB}/chirp/drivers/id800.py
 253${PYSITELIB}/chirp/drivers/id800.pyc
 254${PYSITELIB}/chirp/drivers/id800.pyo
 255${PYSITELIB}/chirp/drivers/id880.py
 256${PYSITELIB}/chirp/drivers/id880.pyc
 257${PYSITELIB}/chirp/drivers/id880.pyo
 258${PYSITELIB}/chirp/drivers/idrp.py
 259${PYSITELIB}/chirp/drivers/idrp.pyc
 260${PYSITELIB}/chirp/drivers/idrp.pyo
 261${PYSITELIB}/chirp/drivers/kenwood_hmk.py
 262${PYSITELIB}/chirp/drivers/kenwood_hmk.pyc
 263${PYSITELIB}/chirp/drivers/kenwood_hmk.pyo
 264${PYSITELIB}/chirp/drivers/kenwood_itm.py
 265${PYSITELIB}/chirp/drivers/kenwood_itm.pyc
 266${PYSITELIB}/chirp/drivers/kenwood_itm.pyo
 267${PYSITELIB}/chirp/drivers/kenwood_live.py
 268${PYSITELIB}/chirp/drivers/kenwood_live.pyc
 269${PYSITELIB}/chirp/drivers/kenwood_live.pyo
 270${PYSITELIB}/chirp/drivers/kguv8d.py
 271${PYSITELIB}/chirp/drivers/kguv8d.pyc
 272${PYSITELIB}/chirp/drivers/kguv8d.pyo
 273${PYSITELIB}/chirp/drivers/kguv8dplus.py
 274${PYSITELIB}/chirp/drivers/kguv8dplus.pyc
 275${PYSITELIB}/chirp/drivers/kguv8dplus.pyo
 276${PYSITELIB}/chirp/drivers/kguv8e.py
 277${PYSITELIB}/chirp/drivers/kguv8e.pyc
 278${PYSITELIB}/chirp/drivers/kguv8e.pyo
 279${PYSITELIB}/chirp/drivers/kguv9dplus.py
 280${PYSITELIB}/chirp/drivers/kguv9dplus.pyc
 281${PYSITELIB}/chirp/drivers/kguv9dplus.pyo
 282${PYSITELIB}/chirp/drivers/kyd.py
 283${PYSITELIB}/chirp/drivers/kyd.pyc
 284${PYSITELIB}/chirp/drivers/kyd.pyo
 285${PYSITELIB}/chirp/drivers/kyd_IP620.py
 286${PYSITELIB}/chirp/drivers/kyd_IP620.pyc
 287${PYSITELIB}/chirp/drivers/kyd_IP620.pyo
 288${PYSITELIB}/chirp/drivers/leixen.py
 289${PYSITELIB}/chirp/drivers/leixen.pyc
 290${PYSITELIB}/chirp/drivers/leixen.pyo
 291${PYSITELIB}/chirp/drivers/lt725uv.py
 292${PYSITELIB}/chirp/drivers/lt725uv.pyc
 293${PYSITELIB}/chirp/drivers/lt725uv.pyo
 294${PYSITELIB}/chirp/drivers/mursv1.py
 295${PYSITELIB}/chirp/drivers/mursv1.pyc
 296${PYSITELIB}/chirp/drivers/mursv1.pyo
 297${PYSITELIB}/chirp/drivers/puxing.py
 298${PYSITELIB}/chirp/drivers/puxing.pyc
 299${PYSITELIB}/chirp/drivers/puxing.pyo
 300${PYSITELIB}/chirp/drivers/puxing_px888k.py
 301${PYSITELIB}/chirp/drivers/puxing_px888k.pyc
 302${PYSITELIB}/chirp/drivers/puxing_px888k.pyo
 303${PYSITELIB}/chirp/drivers/radioddity_r2.py
 304${PYSITELIB}/chirp/drivers/radioddity_r2.pyc
 305${PYSITELIB}/chirp/drivers/radioddity_r2.pyo
 306${PYSITELIB}/chirp/drivers/radtel_t18.py
 307${PYSITELIB}/chirp/drivers/radtel_t18.pyc
 308${PYSITELIB}/chirp/drivers/radtel_t18.pyo
 309${PYSITELIB}/chirp/drivers/repeaterbook.py
 310${PYSITELIB}/chirp/drivers/repeaterbook.pyc
 311${PYSITELIB}/chirp/drivers/repeaterbook.pyo
 312${PYSITELIB}/chirp/drivers/retevis_rt1.py
 313${PYSITELIB}/chirp/drivers/retevis_rt1.pyc
 314${PYSITELIB}/chirp/drivers/retevis_rt1.pyo
 315${PYSITELIB}/chirp/drivers/retevis_rt21.py
 316${PYSITELIB}/chirp/drivers/retevis_rt21.pyc
 317${PYSITELIB}/chirp/drivers/retevis_rt21.pyo
 318${PYSITELIB}/chirp/drivers/retevis_rt22.py
 319${PYSITELIB}/chirp/drivers/retevis_rt22.pyc
 320${PYSITELIB}/chirp/drivers/retevis_rt22.pyo
 321${PYSITELIB}/chirp/drivers/retevis_rt23.py
 322${PYSITELIB}/chirp/drivers/retevis_rt23.pyc
 323${PYSITELIB}/chirp/drivers/retevis_rt23.pyo
 324${PYSITELIB}/chirp/drivers/retevis_rt26.py
 325${PYSITELIB}/chirp/drivers/retevis_rt26.pyc
 326${PYSITELIB}/chirp/drivers/retevis_rt26.pyo
 327${PYSITELIB}/chirp/drivers/rfinder.py
 328${PYSITELIB}/chirp/drivers/rfinder.pyc
 329${PYSITELIB}/chirp/drivers/rfinder.pyo
 330${PYSITELIB}/chirp/drivers/rh5r_v2.py
 331${PYSITELIB}/chirp/drivers/rh5r_v2.pyc
 332${PYSITELIB}/chirp/drivers/rh5r_v2.pyo
 333${PYSITELIB}/chirp/drivers/tdxone_tdq8a.py
 334${PYSITELIB}/chirp/drivers/tdxone_tdq8a.pyc
 335${PYSITELIB}/chirp/drivers/tdxone_tdq8a.pyo
 336${PYSITELIB}/chirp/drivers/template.py
 337${PYSITELIB}/chirp/drivers/template.pyc
 338${PYSITELIB}/chirp/drivers/template.pyo
 339${PYSITELIB}/chirp/drivers/th350.py
 340${PYSITELIB}/chirp/drivers/th350.pyc
 341${PYSITELIB}/chirp/drivers/th350.pyo
 342${PYSITELIB}/chirp/drivers/th7800.py
 343${PYSITELIB}/chirp/drivers/th7800.pyc
 344${PYSITELIB}/chirp/drivers/th7800.pyo
 345${PYSITELIB}/chirp/drivers/th9000.py
 346${PYSITELIB}/chirp/drivers/th9000.pyc
 347${PYSITELIB}/chirp/drivers/th9000.pyo
 348${PYSITELIB}/chirp/drivers/th9800.py
 349${PYSITELIB}/chirp/drivers/th9800.pyc
 350${PYSITELIB}/chirp/drivers/th9800.pyo
 351${PYSITELIB}/chirp/drivers/th_uv3r.py
 352${PYSITELIB}/chirp/drivers/th_uv3r.pyc
 353${PYSITELIB}/chirp/drivers/th_uv3r.pyo
 354${PYSITELIB}/chirp/drivers/th_uv3r25.py
 355${PYSITELIB}/chirp/drivers/th_uv3r25.pyc
 356${PYSITELIB}/chirp/drivers/th_uv3r25.pyo
 357${PYSITELIB}/chirp/drivers/th_uv8000.py
 358${PYSITELIB}/chirp/drivers/th_uv8000.pyc
 359${PYSITELIB}/chirp/drivers/th_uv8000.pyo
 360${PYSITELIB}/chirp/drivers/th_uvf8d.py
 361${PYSITELIB}/chirp/drivers/th_uvf8d.pyc
 362${PYSITELIB}/chirp/drivers/th_uvf8d.pyo
 363${PYSITELIB}/chirp/drivers/thd72.py
 364${PYSITELIB}/chirp/drivers/thd72.pyc
 365${PYSITELIB}/chirp/drivers/thd72.pyo
 366${PYSITELIB}/chirp/drivers/thuv1f.py
 367${PYSITELIB}/chirp/drivers/thuv1f.pyc
 368${PYSITELIB}/chirp/drivers/thuv1f.pyo
 369${PYSITELIB}/chirp/drivers/tk270.py
 370${PYSITELIB}/chirp/drivers/tk270.pyc
 371${PYSITELIB}/chirp/drivers/tk270.pyo
 372${PYSITELIB}/chirp/drivers/tk760.py
 373${PYSITELIB}/chirp/drivers/tk760.pyc
 374${PYSITELIB}/chirp/drivers/tk760.pyo
 375${PYSITELIB}/chirp/drivers/tk760g.py
 376${PYSITELIB}/chirp/drivers/tk760g.pyc
 377${PYSITELIB}/chirp/drivers/tk760g.pyo
 378${PYSITELIB}/chirp/drivers/tk8102.py
 379${PYSITELIB}/chirp/drivers/tk8102.pyc
 380${PYSITELIB}/chirp/drivers/tk8102.pyo
 381${PYSITELIB}/chirp/drivers/tk8180.py
 382${PYSITELIB}/chirp/drivers/tk8180.pyc
 383${PYSITELIB}/chirp/drivers/tk8180.pyo
 384${PYSITELIB}/chirp/drivers/tmd710.py
 385${PYSITELIB}/chirp/drivers/tmd710.pyc
 386${PYSITELIB}/chirp/drivers/tmd710.pyo
 387${PYSITELIB}/chirp/drivers/tmv71.py
 388${PYSITELIB}/chirp/drivers/tmv71.pyc
 389${PYSITELIB}/chirp/drivers/tmv71.pyo
 390${PYSITELIB}/chirp/drivers/tmv71_ll.py
 391${PYSITELIB}/chirp/drivers/tmv71_ll.pyc
 392${PYSITELIB}/chirp/drivers/tmv71_ll.pyo
 393${PYSITELIB}/chirp/drivers/ts2000.py
 394${PYSITELIB}/chirp/drivers/ts2000.pyc
 395${PYSITELIB}/chirp/drivers/ts2000.pyo
 396${PYSITELIB}/chirp/drivers/ts480.py
 397${PYSITELIB}/chirp/drivers/ts480.pyc
 398${PYSITELIB}/chirp/drivers/ts480.pyo
 399${PYSITELIB}/chirp/drivers/ts590.py
 400${PYSITELIB}/chirp/drivers/ts590.pyc
 401${PYSITELIB}/chirp/drivers/ts590.pyo
 402${PYSITELIB}/chirp/drivers/ts850.py
 403${PYSITELIB}/chirp/drivers/ts850.pyc
 404${PYSITELIB}/chirp/drivers/ts850.pyo
 405${PYSITELIB}/chirp/drivers/uv5r.py
 406${PYSITELIB}/chirp/drivers/uv5r.pyc
 407${PYSITELIB}/chirp/drivers/uv5r.pyo
 408${PYSITELIB}/chirp/drivers/uv5x3.py
 409${PYSITELIB}/chirp/drivers/uv5x3.pyc
 410${PYSITELIB}/chirp/drivers/uv5x3.pyo
 411${PYSITELIB}/chirp/drivers/uv6r.py
 412${PYSITELIB}/chirp/drivers/uv6r.pyc
 413${PYSITELIB}/chirp/drivers/uv6r.pyo
 414${PYSITELIB}/chirp/drivers/uvb5.py
 415${PYSITELIB}/chirp/drivers/uvb5.pyc
 416${PYSITELIB}/chirp/drivers/uvb5.pyo
 417${PYSITELIB}/chirp/drivers/vgc.py
 418${PYSITELIB}/chirp/drivers/vgc.pyc
 419${PYSITELIB}/chirp/drivers/vgc.pyo
 420${PYSITELIB}/chirp/drivers/vx170.py
 421${PYSITELIB}/chirp/drivers/vx170.pyc
 422${PYSITELIB}/chirp/drivers/vx170.pyo
 423${PYSITELIB}/chirp/drivers/vx2.py
 424${PYSITELIB}/chirp/drivers/vx2.pyc
 425${PYSITELIB}/chirp/drivers/vx2.pyo
 426${PYSITELIB}/chirp/drivers/vx3.py
 427${PYSITELIB}/chirp/drivers/vx3.pyc
 428${PYSITELIB}/chirp/drivers/vx3.pyo
 429${PYSITELIB}/chirp/drivers/vx5.py
 430${PYSITELIB}/chirp/drivers/vx5.pyc
 431${PYSITELIB}/chirp/drivers/vx5.pyo
 432${PYSITELIB}/chirp/drivers/vx510.py
 433${PYSITELIB}/chirp/drivers/vx510.pyc
 434${PYSITELIB}/chirp/drivers/vx510.pyo
 435${PYSITELIB}/chirp/drivers/vx6.py
 436${PYSITELIB}/chirp/drivers/vx6.pyc
 437${PYSITELIB}/chirp/drivers/vx6.pyo
 438${PYSITELIB}/chirp/drivers/vx7.py
 439${PYSITELIB}/chirp/drivers/vx7.pyc
 440${PYSITELIB}/chirp/drivers/vx7.pyo
 441${PYSITELIB}/chirp/drivers/vx8.py
 442${PYSITELIB}/chirp/drivers/vx8.pyc
 443${PYSITELIB}/chirp/drivers/vx8.pyo
 444${PYSITELIB}/chirp/drivers/vxa700.py
 445${PYSITELIB}/chirp/drivers/vxa700.pyc
 446${PYSITELIB}/chirp/drivers/vxa700.pyo
 447${PYSITELIB}/chirp/drivers/wouxun.py
 448${PYSITELIB}/chirp/drivers/wouxun.pyc
 449${PYSITELIB}/chirp/drivers/wouxun.pyo
 450${PYSITELIB}/chirp/drivers/wouxun_common.py
 451${PYSITELIB}/chirp/drivers/wouxun_common.pyc
 452${PYSITELIB}/chirp/drivers/wouxun_common.pyo
 453${PYSITELIB}/chirp/drivers/yaesu_clone.py
 454${PYSITELIB}/chirp/drivers/yaesu_clone.pyc
 455${PYSITELIB}/chirp/drivers/yaesu_clone.pyo
53${PYSITELIB}/chirp/elib_intl.py 456${PYSITELIB}/chirp/elib_intl.py
54${PYSITELIB}/chirp/elib_intl.pyc 457${PYSITELIB}/chirp/elib_intl.pyc
55${PYSITELIB}/chirp/elib_intl.pyo 458${PYSITELIB}/chirp/elib_intl.pyo
56${PYSITELIB}/chirp/errors.py 459${PYSITELIB}/chirp/errors.py
57${PYSITELIB}/chirp/errors.pyc 460${PYSITELIB}/chirp/errors.pyc
58${PYSITELIB}/chirp/errors.pyo 461${PYSITELIB}/chirp/errors.pyo
59${PYSITELIB}/chirp/ft1802.py 
60${PYSITELIB}/chirp/ft1802.pyc 
61${PYSITELIB}/chirp/ft1802.pyo 
62${PYSITELIB}/chirp/ft2800.py 
63${PYSITELIB}/chirp/ft2800.pyc 
64${PYSITELIB}/chirp/ft2800.pyo 
65${PYSITELIB}/chirp/ft50.py 
66${PYSITELIB}/chirp/ft50.pyc 
67${PYSITELIB}/chirp/ft50.pyo 
68${PYSITELIB}/chirp/ft50_ll.py 
69${PYSITELIB}/chirp/ft50_ll.pyc 
70${PYSITELIB}/chirp/ft50_ll.pyo 
71${PYSITELIB}/chirp/ft60.py 
72${PYSITELIB}/chirp/ft60.pyc 
73${PYSITELIB}/chirp/ft60.pyo 
74${PYSITELIB}/chirp/ft7800.py 
75${PYSITELIB}/chirp/ft7800.pyc 
76${PYSITELIB}/chirp/ft7800.pyo 
77${PYSITELIB}/chirp/ft817.py 
78${PYSITELIB}/chirp/ft817.pyc 
79${PYSITELIB}/chirp/ft817.pyo 
80${PYSITELIB}/chirp/ft857.py 
81${PYSITELIB}/chirp/ft857.pyc 
82${PYSITELIB}/chirp/ft857.pyo 
83${PYSITELIB}/chirp/ft90.py 
84${PYSITELIB}/chirp/ft90.pyc 
85${PYSITELIB}/chirp/ft90.pyo 
86${PYSITELIB}/chirp/ftm350.py 
87${PYSITELIB}/chirp/ftm350.pyc 
88${PYSITELIB}/chirp/ftm350.pyo 
89${PYSITELIB}/chirp/generic_csv.py 
90${PYSITELIB}/chirp/generic_csv.pyc 
91${PYSITELIB}/chirp/generic_csv.pyo 
92${PYSITELIB}/chirp/generic_tpe.py 
93${PYSITELIB}/chirp/generic_tpe.pyc 
94${PYSITELIB}/chirp/generic_tpe.pyo 
95${PYSITELIB}/chirp/generic_xml.py 
96${PYSITELIB}/chirp/generic_xml.pyc 
97${PYSITELIB}/chirp/generic_xml.pyo 
98${PYSITELIB}/chirp/h777.py 
99${PYSITELIB}/chirp/h777.pyc 
100${PYSITELIB}/chirp/h777.pyo 
101${PYSITELIB}/chirp/ic208.py 
102${PYSITELIB}/chirp/ic208.pyc 
103${PYSITELIB}/chirp/ic208.pyo 
104${PYSITELIB}/chirp/ic2100.py 
105${PYSITELIB}/chirp/ic2100.pyc 
106${PYSITELIB}/chirp/ic2100.pyo 
107${PYSITELIB}/chirp/ic2200.py 
108${PYSITELIB}/chirp/ic2200.pyc 
109${PYSITELIB}/chirp/ic2200.pyo 
110${PYSITELIB}/chirp/ic2720.py 
111${PYSITELIB}/chirp/ic2720.pyc 
112${PYSITELIB}/chirp/ic2720.pyo 
113${PYSITELIB}/chirp/ic2820.py 
114${PYSITELIB}/chirp/ic2820.pyc 
115${PYSITELIB}/chirp/ic2820.pyo 
116${PYSITELIB}/chirp/ic9x.py 
117${PYSITELIB}/chirp/ic9x.pyc 
118${PYSITELIB}/chirp/ic9x.pyo 
119${PYSITELIB}/chirp/ic9x_icf.py 
120${PYSITELIB}/chirp/ic9x_icf.pyc 
121${PYSITELIB}/chirp/ic9x_icf.pyo 
122${PYSITELIB}/chirp/ic9x_icf_ll.py 
123${PYSITELIB}/chirp/ic9x_icf_ll.pyc 
124${PYSITELIB}/chirp/ic9x_icf_ll.pyo 
125${PYSITELIB}/chirp/ic9x_ll.py 
126${PYSITELIB}/chirp/ic9x_ll.pyc 
127${PYSITELIB}/chirp/ic9x_ll.pyo 
128${PYSITELIB}/chirp/icf.py 
129${PYSITELIB}/chirp/icf.pyc 
130${PYSITELIB}/chirp/icf.pyo 
131${PYSITELIB}/chirp/icomciv.py 
132${PYSITELIB}/chirp/icomciv.pyc 
133${PYSITELIB}/chirp/icomciv.pyo 
134${PYSITELIB}/chirp/icq7.py 
135${PYSITELIB}/chirp/icq7.pyc 
136${PYSITELIB}/chirp/icq7.pyo 
137${PYSITELIB}/chirp/ict70.py 
138${PYSITELIB}/chirp/ict70.pyc 
139${PYSITELIB}/chirp/ict70.pyo 
140${PYSITELIB}/chirp/ict7h.py 
141${PYSITELIB}/chirp/ict7h.pyc 
142${PYSITELIB}/chirp/ict7h.pyo 
143${PYSITELIB}/chirp/ict8.py 
144${PYSITELIB}/chirp/ict8.pyc 
145${PYSITELIB}/chirp/ict8.pyo 
146${PYSITELIB}/chirp/icw32.py 
147${PYSITELIB}/chirp/icw32.pyc 
148${PYSITELIB}/chirp/icw32.pyo 
149${PYSITELIB}/chirp/icx8x.py 
150${PYSITELIB}/chirp/icx8x.pyc 
151${PYSITELIB}/chirp/icx8x.pyo 
152${PYSITELIB}/chirp/icx8x_ll.py 
153${PYSITELIB}/chirp/icx8x_ll.pyc 
154${PYSITELIB}/chirp/icx8x_ll.pyo 
155${PYSITELIB}/chirp/id31.py 
156${PYSITELIB}/chirp/id31.pyc 
157${PYSITELIB}/chirp/id31.pyo 
158${PYSITELIB}/chirp/id51.py 
159${PYSITELIB}/chirp/id51.pyc 
160${PYSITELIB}/chirp/id51.pyo 
161${PYSITELIB}/chirp/id800.py 
162${PYSITELIB}/chirp/id800.pyc 
163${PYSITELIB}/chirp/id800.pyo 
164${PYSITELIB}/chirp/id880.py 
165${PYSITELIB}/chirp/id880.pyc 
166${PYSITELIB}/chirp/id880.pyo 
167${PYSITELIB}/chirp/idrp.py 
168${PYSITELIB}/chirp/idrp.pyc 
169${PYSITELIB}/chirp/idrp.pyo 
170${PYSITELIB}/chirp/import_logic.py 462${PYSITELIB}/chirp/import_logic.py
171${PYSITELIB}/chirp/import_logic.pyc 463${PYSITELIB}/chirp/import_logic.pyc
172${PYSITELIB}/chirp/import_logic.pyo 464${PYSITELIB}/chirp/import_logic.pyo
173${PYSITELIB}/chirp/kenwood_hmk.py 465${PYSITELIB}/chirp/logger.py
174${PYSITELIB}/chirp/kenwood_hmk.pyc 466${PYSITELIB}/chirp/logger.pyc
175${PYSITELIB}/chirp/kenwood_hmk.pyo 467${PYSITELIB}/chirp/logger.pyo
176${PYSITELIB}/chirp/kenwood_itm.py 
177${PYSITELIB}/chirp/kenwood_itm.pyc 
178${PYSITELIB}/chirp/kenwood_itm.pyo 
179${PYSITELIB}/chirp/kenwood_live.py 
180${PYSITELIB}/chirp/kenwood_live.pyc 
181${PYSITELIB}/chirp/kenwood_live.pyo 
182${PYSITELIB}/chirp/memmap.py 468${PYSITELIB}/chirp/memmap.py
183${PYSITELIB}/chirp/memmap.pyc 469${PYSITELIB}/chirp/memmap.pyc
184${PYSITELIB}/chirp/memmap.pyo 470${PYSITELIB}/chirp/memmap.pyo
185${PYSITELIB}/chirp/platform.py 471${PYSITELIB}/chirp/platform.py
186${PYSITELIB}/chirp/platform.pyc 472${PYSITELIB}/chirp/platform.pyc
187${PYSITELIB}/chirp/platform.pyo 473${PYSITELIB}/chirp/platform.pyo
188${PYSITELIB}/chirp/puxing.py 
189${PYSITELIB}/chirp/puxing.pyc 
190${PYSITELIB}/chirp/puxing.pyo 
191${PYSITELIB}/chirp/pyPEG.py 474${PYSITELIB}/chirp/pyPEG.py
192${PYSITELIB}/chirp/pyPEG.pyc 475${PYSITELIB}/chirp/pyPEG.pyc
193${PYSITELIB}/chirp/pyPEG.pyo 476${PYSITELIB}/chirp/pyPEG.pyo
194${PYSITELIB}/chirp/radioreference.py 477${PYSITELIB}/chirp/radioreference.py
195${PYSITELIB}/chirp/radioreference.pyc 478${PYSITELIB}/chirp/radioreference.pyc
196${PYSITELIB}/chirp/radioreference.pyo 479${PYSITELIB}/chirp/radioreference.pyo
197${PYSITELIB}/chirp/rfinder.py 
198${PYSITELIB}/chirp/rfinder.pyc 
199${PYSITELIB}/chirp/rfinder.pyo 
200${PYSITELIB}/chirp/settings.py 480${PYSITELIB}/chirp/settings.py
201${PYSITELIB}/chirp/settings.pyc 481${PYSITELIB}/chirp/settings.pyc
202${PYSITELIB}/chirp/settings.pyo 482${PYSITELIB}/chirp/settings.pyo
203${PYSITELIB}/chirp/template.py 483${PYSITELIB}/chirp/ui/__init__.py
204${PYSITELIB}/chirp/template.pyc 484${PYSITELIB}/chirp/ui/__init__.pyc
205${PYSITELIB}/chirp/template.pyo 485${PYSITELIB}/chirp/ui/__init__.pyo
206${PYSITELIB}/chirp/th_uv3r.py 486${PYSITELIB}/chirp/ui/bandplans.py
207${PYSITELIB}/chirp/th_uv3r.pyc 487${PYSITELIB}/chirp/ui/bandplans.pyc
208${PYSITELIB}/chirp/th_uv3r.pyo 488${PYSITELIB}/chirp/ui/bandplans.pyo
209${PYSITELIB}/chirp/th_uvf8d.py 489${PYSITELIB}/chirp/ui/bankedit.py
210${PYSITELIB}/chirp/th_uvf8d.pyc 490${PYSITELIB}/chirp/ui/bankedit.pyc
211${PYSITELIB}/chirp/th_uvf8d.pyo 491${PYSITELIB}/chirp/ui/bankedit.pyo
212${PYSITELIB}/chirp/thd72.py 492${PYSITELIB}/chirp/ui/clone.py
213${PYSITELIB}/chirp/thd72.pyc 493${PYSITELIB}/chirp/ui/clone.pyc
214${PYSITELIB}/chirp/thd72.pyo 494${PYSITELIB}/chirp/ui/clone.pyo
215${PYSITELIB}/chirp/thuv1f.py 495${PYSITELIB}/chirp/ui/cloneprog.py
216${PYSITELIB}/chirp/thuv1f.pyc 496${PYSITELIB}/chirp/ui/cloneprog.pyc
217${PYSITELIB}/chirp/thuv1f.pyo 497${PYSITELIB}/chirp/ui/cloneprog.pyo
218${PYSITELIB}/chirp/tk8102.py 498${PYSITELIB}/chirp/ui/common.py
219${PYSITELIB}/chirp/tk8102.pyc 499${PYSITELIB}/chirp/ui/common.pyc
220${PYSITELIB}/chirp/tk8102.pyo 500${PYSITELIB}/chirp/ui/common.pyo
221${PYSITELIB}/chirp/tmv71.py 501${PYSITELIB}/chirp/ui/config.py
222${PYSITELIB}/chirp/tmv71.pyc 502${PYSITELIB}/chirp/ui/config.pyc
223${PYSITELIB}/chirp/tmv71.pyo 503${PYSITELIB}/chirp/ui/config.pyo
224${PYSITELIB}/chirp/tmv71_ll.py 504${PYSITELIB}/chirp/ui/dstaredit.py
225${PYSITELIB}/chirp/tmv71_ll.pyc 505${PYSITELIB}/chirp/ui/dstaredit.pyc
226${PYSITELIB}/chirp/tmv71_ll.pyo 506${PYSITELIB}/chirp/ui/dstaredit.pyo
 507${PYSITELIB}/chirp/ui/editorset.py
 508${PYSITELIB}/chirp/ui/editorset.pyc
 509${PYSITELIB}/chirp/ui/editorset.pyo
 510${PYSITELIB}/chirp/ui/fips.py
 511${PYSITELIB}/chirp/ui/fips.pyc
 512${PYSITELIB}/chirp/ui/fips.pyo
 513${PYSITELIB}/chirp/ui/importdialog.py
 514${PYSITELIB}/chirp/ui/importdialog.pyc
 515${PYSITELIB}/chirp/ui/importdialog.pyo
 516${PYSITELIB}/chirp/ui/inputdialog.py
 517${PYSITELIB}/chirp/ui/inputdialog.pyc
 518${PYSITELIB}/chirp/ui/inputdialog.pyo
 519${PYSITELIB}/chirp/ui/mainapp.py
 520${PYSITELIB}/chirp/ui/mainapp.pyc
 521${PYSITELIB}/chirp/ui/mainapp.pyo
 522${PYSITELIB}/chirp/ui/memdetail.py
 523${PYSITELIB}/chirp/ui/memdetail.pyc
 524${PYSITELIB}/chirp/ui/memdetail.pyo
 525${PYSITELIB}/chirp/ui/memedit.py
 526${PYSITELIB}/chirp/ui/memedit.pyc
 527${PYSITELIB}/chirp/ui/memedit.pyo
 528${PYSITELIB}/chirp/ui/miscwidgets.py
 529${PYSITELIB}/chirp/ui/miscwidgets.pyc
 530${PYSITELIB}/chirp/ui/miscwidgets.pyo
 531${PYSITELIB}/chirp/ui/radiobrowser.py
 532${PYSITELIB}/chirp/ui/radiobrowser.pyc
 533${PYSITELIB}/chirp/ui/radiobrowser.pyo
 534${PYSITELIB}/chirp/ui/reporting.py
 535${PYSITELIB}/chirp/ui/reporting.pyc
 536${PYSITELIB}/chirp/ui/reporting.pyo
 537${PYSITELIB}/chirp/ui/settingsedit.py
 538${PYSITELIB}/chirp/ui/settingsedit.pyc
 539${PYSITELIB}/chirp/ui/settingsedit.pyo
 540${PYSITELIB}/chirp/ui/shiftdialog.py
 541${PYSITELIB}/chirp/ui/shiftdialog.pyc
 542${PYSITELIB}/chirp/ui/shiftdialog.pyo
227${PYSITELIB}/chirp/util.py 543${PYSITELIB}/chirp/util.py
228${PYSITELIB}/chirp/util.pyc 544${PYSITELIB}/chirp/util.pyc
229${PYSITELIB}/chirp/util.pyo 545${PYSITELIB}/chirp/util.pyo
230${PYSITELIB}/chirp/uv5r.py 
231${PYSITELIB}/chirp/uv5r.pyc 
232${PYSITELIB}/chirp/uv5r.pyo 
233${PYSITELIB}/chirp/uvb5.py 
234${PYSITELIB}/chirp/uvb5.pyc 
235${PYSITELIB}/chirp/uvb5.pyo 
236${PYSITELIB}/chirp/vx2.py 
237${PYSITELIB}/chirp/vx2.pyc 
238${PYSITELIB}/chirp/vx2.pyo 
239${PYSITELIB}/chirp/vx3.py 
240${PYSITELIB}/chirp/vx3.pyc 
241${PYSITELIB}/chirp/vx3.pyo 
242${PYSITELIB}/chirp/vx5.py 
243${PYSITELIB}/chirp/vx5.pyc 
244${PYSITELIB}/chirp/vx5.pyo 
245${PYSITELIB}/chirp/vx510.py 
246${PYSITELIB}/chirp/vx510.pyc 
247${PYSITELIB}/chirp/vx510.pyo 
248${PYSITELIB}/chirp/vx6.py 
249${PYSITELIB}/chirp/vx6.pyc 
250${PYSITELIB}/chirp/vx6.pyo 
251${PYSITELIB}/chirp/vx7.py 
252${PYSITELIB}/chirp/vx7.pyc 
253${PYSITELIB}/chirp/vx7.pyo 
254${PYSITELIB}/chirp/vx8.py 
255${PYSITELIB}/chirp/vx8.pyc 
256${PYSITELIB}/chirp/vx8.pyo 
257${PYSITELIB}/chirp/vxa700.py 
258${PYSITELIB}/chirp/vxa700.pyc 
259${PYSITELIB}/chirp/vxa700.pyo 
260${PYSITELIB}/chirp/wouxun.py 
261${PYSITELIB}/chirp/wouxun.pyc 
262${PYSITELIB}/chirp/wouxun.pyo 
263${PYSITELIB}/chirp/wouxun_common.py 
264${PYSITELIB}/chirp/wouxun_common.pyc 
265${PYSITELIB}/chirp/wouxun_common.pyo 
266${PYSITELIB}/chirp/xml_ll.py 546${PYSITELIB}/chirp/xml_ll.py
267${PYSITELIB}/chirp/xml_ll.pyc 547${PYSITELIB}/chirp/xml_ll.pyc
268${PYSITELIB}/chirp/xml_ll.pyo 548${PYSITELIB}/chirp/xml_ll.pyo
269${PYSITELIB}/chirp/yaesu_clone.py 
270${PYSITELIB}/chirp/yaesu_clone.pyc 
271${PYSITELIB}/chirp/yaesu_clone.pyo 
272${PYSITELIB}/chirpui/__init__.py 
273${PYSITELIB}/chirpui/__init__.pyc 
274${PYSITELIB}/chirpui/__init__.pyo 
275${PYSITELIB}/chirpui/bandplans.py 
276${PYSITELIB}/chirpui/bandplans.pyc 
277${PYSITELIB}/chirpui/bandplans.pyo 
278${PYSITELIB}/chirpui/bankedit.py 
279${PYSITELIB}/chirpui/bankedit.pyc 
280${PYSITELIB}/chirpui/bankedit.pyo 
281${PYSITELIB}/chirpui/clone.py 
282${PYSITELIB}/chirpui/clone.pyc 
283${PYSITELIB}/chirpui/clone.pyo 
284${PYSITELIB}/chirpui/cloneprog.py 
285${PYSITELIB}/chirpui/cloneprog.pyc 
286${PYSITELIB}/chirpui/cloneprog.pyo 
287${PYSITELIB}/chirpui/common.py 
288${PYSITELIB}/chirpui/common.pyc 
289${PYSITELIB}/chirpui/common.pyo 
290${PYSITELIB}/chirpui/config.py 
291${PYSITELIB}/chirpui/config.pyc 
292${PYSITELIB}/chirpui/config.pyo 
293${PYSITELIB}/chirpui/dstaredit.py 
294${PYSITELIB}/chirpui/dstaredit.pyc 
295${PYSITELIB}/chirpui/dstaredit.pyo 
296${PYSITELIB}/chirpui/editorset.py 
297${PYSITELIB}/chirpui/editorset.pyc 
298${PYSITELIB}/chirpui/editorset.pyo 
299${PYSITELIB}/chirpui/fips.py 
300${PYSITELIB}/chirpui/fips.pyc 
301${PYSITELIB}/chirpui/fips.pyo 
302${PYSITELIB}/chirpui/importdialog.py 
303${PYSITELIB}/chirpui/importdialog.pyc 
304${PYSITELIB}/chirpui/importdialog.pyo 
305${PYSITELIB}/chirpui/inputdialog.py 
306${PYSITELIB}/chirpui/inputdialog.pyc 
307${PYSITELIB}/chirpui/inputdialog.pyo 
308${PYSITELIB}/chirpui/mainapp.py 
309${PYSITELIB}/chirpui/mainapp.pyc 
310${PYSITELIB}/chirpui/mainapp.pyo 
311${PYSITELIB}/chirpui/memdetail.py 
312${PYSITELIB}/chirpui/memdetail.pyc 
313${PYSITELIB}/chirpui/memdetail.pyo 
314${PYSITELIB}/chirpui/memedit.py 
315${PYSITELIB}/chirpui/memedit.pyc 
316${PYSITELIB}/chirpui/memedit.pyo 
317${PYSITELIB}/chirpui/miscwidgets.py 
318${PYSITELIB}/chirpui/miscwidgets.pyc 
319${PYSITELIB}/chirpui/miscwidgets.pyo 
320${PYSITELIB}/chirpui/radiobrowser.py 
321${PYSITELIB}/chirpui/radiobrowser.pyc 
322${PYSITELIB}/chirpui/radiobrowser.pyo 
323${PYSITELIB}/chirpui/reporting.py 
324${PYSITELIB}/chirpui/reporting.pyc 
325${PYSITELIB}/chirpui/reporting.pyo 
326${PYSITELIB}/chirpui/settingsedit.py 
327${PYSITELIB}/chirpui/settingsedit.pyc 
328${PYSITELIB}/chirpui/settingsedit.pyo 
329${PYSITELIB}/chirpui/shiftdialog.py 
330${PYSITELIB}/chirpui/shiftdialog.pyc 
331${PYSITELIB}/chirpui/shiftdialog.pyo 
332man/man1/chirpw.1 549man/man1/chirpw.1
333share/applications/chirp.desktop 550share/applications/chirp.desktop
334share/chirp/chirp.xsd 551share/chirp/chirp.xsd
335share/chirp/chirp_banks.xsd 552share/chirp/chirp_banks.xsd
336share/chirp/chirp_memory.xsd 553share/chirp/chirp_memory.xsd
337share/chirp/locale/de/LC_MESSAGES/CHIRP.mo 554share/chirp/locale/de/LC_MESSAGES/CHIRP.mo
338share/chirp/locale/en_US/LC_MESSAGES/CHIRP.mo 555share/chirp/locale/en_US/LC_MESSAGES/CHIRP.mo
 556share/chirp/locale/es_ES/LC_MESSAGES/CHIRP.mo
 557share/chirp/locale/fr/LC_MESSAGES/CHIRP.mo
339share/chirp/locale/hu/LC_MESSAGES/CHIRP.mo 558share/chirp/locale/hu/LC_MESSAGES/CHIRP.mo
340share/chirp/locale/it/LC_MESSAGES/CHIRP.mo 559share/chirp/locale/it/LC_MESSAGES/CHIRP.mo
341share/chirp/locale/nl/LC_MESSAGES/CHIRP.mo 560share/chirp/locale/nl/LC_MESSAGES/CHIRP.mo
342share/chirp/locale/pl/LC_MESSAGES/CHIRP.mo 561share/chirp/locale/pl/LC_MESSAGES/CHIRP.mo
343share/chirp/locale/pt_BR/LC_MESSAGES/CHIRP.mo 562share/chirp/locale/pt_BR/LC_MESSAGES/CHIRP.mo
344share/chirp/locale/ru/LC_MESSAGES/CHIRP.mo 563share/chirp/locale/ru/LC_MESSAGES/CHIRP.mo
 564share/chirp/locale/uk_UA/LC_MESSAGES/CHIRP.mo
 565share/chirp/stock_configs/DE Freenet Frequencies.csv
345share/chirp/stock_configs/EU LPD and PMR Channels.csv 566share/chirp/stock_configs/EU LPD and PMR Channels.csv
346share/chirp/stock_configs/Marine VHF Channels.csv 567share/chirp/stock_configs/FR Marine VHF Channels.csv
 568share/chirp/stock_configs/KDR444.csv
347share/chirp/stock_configs/NOAA Weather Alert.csv 569share/chirp/stock_configs/NOAA Weather Alert.csv
 570share/chirp/stock_configs/UK Business Radio Simple Light Frequencies.csv
348share/chirp/stock_configs/US 60 meter channels (Center).csv 571share/chirp/stock_configs/US 60 meter channels (Center).csv
349share/chirp/stock_configs/US 60 meter channels (Dial).csv 572share/chirp/stock_configs/US 60 meter channels (Dial).csv
 573share/chirp/stock_configs/US CA Railroad Channels.csv
350share/chirp/stock_configs/US Calling Frequencies.csv 574share/chirp/stock_configs/US Calling Frequencies.csv
351share/chirp/stock_configs/US FRS and GMRS Channels.csv 575share/chirp/stock_configs/US FRS and GMRS Channels.csv
352share/chirp/stock_configs/US MURS Channels.csv 576share/chirp/stock_configs/US MURS Channels.csv
 577share/chirp/stock_configs/US Marine VHF Channels.csv
353share/doc/chirp/COPYING 578share/doc/chirp/COPYING
354share/pixmaps/chirp.png 579share/pixmaps/chirp.png

cvs diff -r1.3 -r1.4 pkgsrc/ham/chirp/distinfo (expand / switch to unified diff)

--- pkgsrc/ham/chirp/distinfo 2015/11/02 23:57:22 1.3
+++ pkgsrc/ham/chirp/distinfo 2020/08/25 13:45:52 1.4
@@ -1,9 +1,9 @@ @@ -1,9 +1,9 @@
1$NetBSD: distinfo,v 1.3 2015/11/02 23:57:22 agc Exp $ 1$NetBSD: distinfo,v 1.4 2020/08/25 13:45:52 gdt Exp $
2 2
3SHA1 (chirp-0.4.1.tar.gz) = d42ce971bc1d77a6934e813774f418b9b3a4479f 3SHA1 (chirp-daily-20200807.tar.gz) = f263bb2d8050ff4ecacbf713adfc50e240b1b9a7
4RMD160 (chirp-0.4.1.tar.gz) = 5cbd3aefeba9e4feabfbef0952aa63837dd29c02 4RMD160 (chirp-daily-20200807.tar.gz) = 67dc773cf63324c5a4fcd8235b86107d0f117006
5SHA512 (chirp-0.4.1.tar.gz) = 13f36e96bb1608a41605cedd2fa3dfb46efc37e97437d09b75a0dd9ff10bb85c32ef3190d8db3fdb0360de8b85470588492df3ca5b3e2ecbdb813f3f11a9cc57 5SHA512 (chirp-daily-20200807.tar.gz) = 28d5ca132930d5525f24e7899fc370fbdbe9ce22b81fdbc7fee58afdd60a099b4ebcbd42963e92569d011c98eaa556225b018ab1d2d862b3a1a22362f0647325
6Size (chirp-0.4.1.tar.gz) = 416851 bytes 6Size (chirp-daily-20200807.tar.gz) = 933776 bytes
7SHA1 (patch-chirp_platform.py) = 724fb28f38582c5b1e3b6666bc15a128800cab8c 7SHA1 (patch-chirp_platform.py) = f8c0f7ffb0fa08b2b3a591a9ccdf4efca7838646
8SHA1 (patch-chirpui_mainapp.py) = 0a9953fb55d92b612d440b63431cb6e6a0bfa563 8SHA1 (patch-chirp_ui_mainapp.py) = 4e201ed531a34800687fa1dcaa18c8406c22d925
9SHA1 (patch-setup.py) = e42a85a66ce21d6745202d182e41771915c58c5f 9SHA1 (patch-setup.py) = 28302403b4cd397b9654aeead4ab7910164312c2

cvs diff -r1.1 -r1.2 pkgsrc/ham/chirp/patches/patch-chirp_platform.py (expand / switch to unified diff)

--- pkgsrc/ham/chirp/patches/patch-chirp_platform.py 2014/07/21 07:57:21 1.1
+++ pkgsrc/ham/chirp/patches/patch-chirp_platform.py 2020/08/25 13:45:53 1.2
@@ -1,22 +1,23 @@ @@ -1,22 +1,23 @@
1$NetBSD: patch-chirp_platform.py,v 1.1 2014/07/21 07:57:21 dbj Exp $ 1$NetBSD: patch-chirp_platform.py,v 1.2 2020/08/25 13:45:53 gdt Exp $
 2
2This software contains darwin specific tweaks which do not apply to pkgsrc 3This software contains darwin specific tweaks which do not apply to pkgsrc
3 4
4--- chirp/platform.py.orig 2014-04-29 03:55:43.000000000 +0000 5--- chirp/platform.py.orig 2017-10-12 18:01:04.000000000 +1100
5+++ chirp/platform.py 6+++ chirp/platform.py 2020-07-03 15:33:43.225703607 +1000
6@@ -249,16 +249,6 @@ class UnixPlatform(Platform): 7@@ -283,16 +283,6 @@
7  8
8 Platform.__init__(self, basepath) 9 Platform.__init__(self, basepath)
9  10
10- # This is a hack that needs to be properly fixed by importing the 11- # This is a hack that needs to be properly fixed by importing the
11- # latest changes to this module from d-rats. In the interest of 12- # latest changes to this module from d-rats. In the interest of
12- # time, however, I'll throw it here 13- # time, however, I'll throw it here
13- if sys.platform == "darwin": 14- if sys.platform == "darwin":
14- if not os.environ.has_key("DISPLAY"): 15- if "DISPLAY" not in os.environ:
15- print "Forcing DISPLAY for MacOS" 16- LOG.info("Forcing DISPLAY for MacOS")
16- os.environ["DISPLAY"] = ":0" 17- os.environ["DISPLAY"] = ":0"
17- 18-
18- os.environ["PANGO_RC_FILE"] = "../Resources/etc/pango/pangorc" 19- os.environ["PANGO_RC_FILE"] = "../Resources/etc/pango/pangorc"
19- 20-
20 def default_dir(self): 21 def default_dir(self):
21 return os.path.abspath(os.getenv("HOME")) 22 return os.path.abspath(os.getenv("HOME"))
22  23

cvs diff -r1.1 -r1.2 pkgsrc/ham/chirp/patches/patch-setup.py (expand / switch to unified diff)

--- pkgsrc/ham/chirp/patches/patch-setup.py 2014/07/21 07:57:21 1.1
+++ pkgsrc/ham/chirp/patches/patch-setup.py 2020/08/25 13:45:53 1.2
@@ -1,16 +1,17 @@ @@ -1,16 +1,17 @@
1$NetBSD: patch-setup.py,v 1.1 2014/07/21 07:57:21 dbj Exp $ 1$NetBSD: patch-setup.py,v 1.2 2020/08/25 13:45:53 gdt Exp $
 2
2This software contains darwin specific tweaks which do not apply to pkgsrc 3This software contains darwin specific tweaks which do not apply to pkgsrc
3 4
4--- setup.py.orig 2012-12-24 08:00:57.000000000 +0000 5--- setup.py.orig 2020-07-03 15:51:11.931206711 +1000
5+++ setup.py 6+++ setup.py 2020-07-03 15:51:24.114023817 +1000
6@@ -141,9 +141,7 @@ def nuke_manifest(*files): 7@@ -150,9 +150,7 @@
7 print >>f, fn 
8 f.close() 8 f.close()
9  9
 10
10-if sys.platform == "darwin": 11-if sys.platform == "darwin":
11- macos_build() 12- macos_build()
12-elif sys.platform == "win32": 13-elif sys.platform == "win32":
13+if sys.platform == "win32": 14+if sys.platform == "win32":
14 win32_build() 15 win32_build()
15 else: 16 else:
16 if os.path.exists("rpttool"): 17 default_build()