Remove pysol, which is dead upstream. For your solitaire fix, use the
pysolfc package, which is a fork of pysol.
This commit is contained in:
parent
c3d9578169
commit
6c92349608
7 changed files with 4 additions and 86 deletions
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: CHANGES-2008,v 1.3033 2008/11/16 07:17:09 snj Exp $
|
||||
$NetBSD: CHANGES-2008,v 1.3034 2008/11/16 07:23:51 snj Exp $
|
||||
|
||||
Changes to the packages collection and infrastructure in 2008:
|
||||
|
||||
|
@ -5075,3 +5075,4 @@ Changes to the packages collection and infrastructure in 2008:
|
|||
Updated security/gnutls to 2.6.2 [wiz 2008-11-15]
|
||||
Updated x11/fltk to 1.1.9nb1 [dsainty 2008-11-16]
|
||||
Added games/pysolfc version 1.1 [snj 2008-11-16]
|
||||
Removed games/pysol [snj 2008-11-16]
|
||||
|
|
3
doc/TODO
3
doc/TODO
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: TODO,v 1.7697 2008/11/16 01:34:25 snj Exp $
|
||||
$NetBSD: TODO,v 1.7698 2008/11/16 07:23:51 snj Exp $
|
||||
|
||||
Suggested new packages
|
||||
======================
|
||||
|
@ -1033,7 +1033,6 @@ Suggested package updates
|
|||
o py-yaml-3.06
|
||||
o py-zconfig-2.3.1
|
||||
o pygopherd-2.0.13
|
||||
o pysol-4.82
|
||||
o python26-2.6.0
|
||||
o qDecoder-8.0
|
||||
o qbrew-0.3.9
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.311 2008/11/16 07:17:09 snj Exp $
|
||||
# $NetBSD: Makefile,v 1.312 2008/11/16 07:23:51 snj Exp $
|
||||
#
|
||||
|
||||
COMMENT= Games
|
||||
|
@ -185,7 +185,6 @@ SUBDIR+= polyglot
|
|||
SUBDIR+= powermanga
|
||||
SUBDIR+= powwow
|
||||
SUBDIR+= prboom
|
||||
SUBDIR+= pysol
|
||||
SUBDIR+= pysolfc
|
||||
SUBDIR+= pytraffic
|
||||
SUBDIR+= qnetwalk
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
============================================================================
|
||||
PySol - a Python Solitaire Game
|
||||
============================================================================
|
||||
|
||||
Highlights:
|
||||
-----------
|
||||
- based upon an extensible solitaire engine
|
||||
- currently supports 4 different games - expect more to come
|
||||
- includes my all time favorite "Gypsy"
|
||||
- very nice look and feel
|
||||
- unlimited undo & redo
|
||||
- load & save games
|
||||
- player statistics
|
||||
- computer gives hints and plays demo games
|
||||
- integrated help system
|
||||
- PySol is portable across X, Windows and MacOS
|
||||
|
||||
I'm awaiting your suggestions and bug reports :-)
|
||||
|
||||
Have fun,
|
||||
Markus
|
|
@ -1,49 +0,0 @@
|
|||
# $NetBSD: Makefile,v 1.28 2008/04/25 20:39:09 joerg Exp $
|
||||
#
|
||||
|
||||
DISTNAME= pysol-4.81
|
||||
PKGREVISION= 3
|
||||
CATEGORIES= games python
|
||||
MASTER_SITES= http://www.pysol.org/download/pysol/
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${CARDSETS}${EXTRACT_SUFX}
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://www.pysol.org/
|
||||
COMMENT= Solitaire game, written in Python
|
||||
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
||||
NO_BUILD= yes
|
||||
PLIST_SRC= ${WRKDIR}/PLIST.src
|
||||
|
||||
PYTHON_VERSIONS_ACCEPTED= 21 15
|
||||
|
||||
CARDSETS= pysol-cardsets-4.40
|
||||
|
||||
INSTALLATION_DIRS= bin ${PKGMANDIR}/man6
|
||||
|
||||
do-install:
|
||||
${SED} -e "s|@pkgdatadir@|${PREFIX}/share/pysol|" \
|
||||
-e "s|python|${PYTHONBIN}|" \
|
||||
< ${WRKSRC}/pysol > ${DESTDIR}${PREFIX}/bin/pysol
|
||||
${CHMOD} +x ${DESTDIR}${PREFIX}/bin/pysol
|
||||
${INSTALL_DATA} ${WRKSRC}/pysol.6 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man6
|
||||
@${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/pysol
|
||||
(cd ${WRKSRC}/data; tar cf - *) | \
|
||||
(cd ${DESTDIR}${PREFIX}/share/pysol; tar xf -)
|
||||
(cd ${WRKDIR}/${CARDSETS}/data; tar cf - *) | \
|
||||
(cd ${DESTDIR}${PREFIX}/share/pysol; tar xf -)
|
||||
|
||||
post-install:
|
||||
@${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
|
||||
@(cd ${DESTDIR}${PREFIX}; \
|
||||
${FIND} share/pysol \( -type f -or -type l \) -print | \
|
||||
${SORT} >> ${PLIST_SRC}; \
|
||||
for DIR in `${FIND} share/pysol -type d -print | ${SORT} -r`; do \
|
||||
${ECHO} "@dirrm $$DIR" >> ${PLIST_SRC}; \
|
||||
done)
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../x11/py-Tk/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
|
@ -1,3 +0,0 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:55:02 zuntum Exp $
|
||||
bin/pysol
|
||||
man/man6/pysol.6
|
|
@ -1,8 +0,0 @@
|
|||
$NetBSD: distinfo,v 1.5 2005/02/23 23:12:01 agc Exp $
|
||||
|
||||
SHA1 (pysol-4.81.tar.bz2) = 91b441fa25e18c7fcfaae1ad9aac23962524c94c
|
||||
RMD160 (pysol-4.81.tar.bz2) = b69cd35f4b6347307e510bb9cd2b2fe03a122bdb
|
||||
Size (pysol-4.81.tar.bz2) = 3379257 bytes
|
||||
SHA1 (pysol-cardsets-4.40.tar.bz2) = a8cbb2bb559d05883277e1d1b8f774784b968dfe
|
||||
RMD160 (pysol-cardsets-4.40.tar.bz2) = 6bc56ad23f59e0cbd40c493b11ec040533a9741b
|
||||
Size (pysol-cardsets-4.40.tar.bz2) = 17260953 bytes
|
Loading…
Reference in a new issue