Hello,

Here is a diff to update games/wordsearch to 2.1.

Regards,

Pat

--
Pat Jensen, CCIE #53452
diff --git a/Makefile b/Makefile
index dccd1642806..08a6fc7cf20 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 # $OpenBSD: Makefile,v 1.3 2021/11/02 00:01:14 sthen Exp $
 
-V =            2.0
+V =            2.1
 COMMENT =      classic word search game that you can play in your terminal
 DISTNAME =     wordsearch-${V}
 REVISION =     1
diff --git a/distinfo b/distinfo
index 7e94f7fc4db..313f1eb4285 100644
--- a/distinfo
+++ b/distinfo
@@ -1,2 +1,2 @@
-SHA256 (wordsearch-2.0.tar.gz) = CpADRJuBQu3ng7ILyZeB/rtzRmeHgS3c9O2/IiP3W/M=
-SIZE (wordsearch-2.0.tar.gz) = 12109
+SHA256 (wordsearch-2.1.tar.gz) = SBo0Lz03rMv/CSAODQYNVhR+IQZIp3If58ZrBrGTEHc=
+SIZE (wordsearch-2.1.tar.gz) = 14175
diff --git a/patches/patch-wordsearch b/patches/patch-wordsearch
deleted file mode 100644
index 99c81336dcb..00000000000
--- a/patches/patch-wordsearch
+++ /dev/null
@@ -1,19 +0,0 @@
-$OpenBSD: patch-wordsearch,v 1.1 2021/10/16 11:36:04 bcallah Exp $
-
-Fix spurious startup error.
-
-Index: wordsearch
---- wordsearch.orig
-+++ wordsearch
-@@ -290,7 +290,10 @@ def Main(window):
-   CompletedList = []
- 
-   # Initialize curses
--  curses.curs_set(2)
-+  try:
-+    curses.curs_set(2)
-+  except:
-+    pass
- 
-   # Theme picker
-   if (theme == "green"):
diff --git a/pkg/PLIST b/pkg/PLIST
index 10404969a5c..ed00d955c74 100644
--- a/pkg/PLIST
+++ b/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $OpenBSD: PLIST,v 1.1.1.1 2021/10/15 14:12:09 bcallah Exp $
+@comment $OpenBSD: PLIST,v$
 bin/wordsearch
 @man man/man6/wordsearch.6
 share/doc/wordsearch/
@@ -10,6 +10,7 @@ share/wordsearch/animals.txt
 share/wordsearch/apocalypse.txt
 share/wordsearch/baseball.txt
 share/wordsearch/bbq.txt
+share/wordsearch/bread.txt
 share/wordsearch/camping.txt
 share/wordsearch/candy.txt
 share/wordsearch/cars.txt
@@ -27,7 +28,9 @@ share/wordsearch/dogs.txt
 share/wordsearch/edm.txt
 share/wordsearch/email.txt
 share/wordsearch/engines.txt
+share/wordsearch/fair.txt
 share/wordsearch/fall.txt
+share/wordsearch/farms.txt
 share/wordsearch/fish.txt
 share/wordsearch/fitness.txt
 share/wordsearch/football.txt
@@ -40,6 +43,9 @@ share/wordsearch/hockey.txt
 share/wordsearch/household.txt
 share/wordsearch/instruments.txt
 share/wordsearch/internet.txt
+share/wordsearch/magic.txt
+share/wordsearch/math.txt
+share/wordsearch/military.txt
 share/wordsearch/mobile.txt
 share/wordsearch/movies.txt
 share/wordsearch/nationalparks.txt
@@ -48,24 +54,35 @@ share/wordsearch/nuts.txt
 share/wordsearch/oldtimes.txt
 share/wordsearch/pasta.txt
 share/wordsearch/photography.txt
+share/wordsearch/pizza.txt
 share/wordsearch/places.txt
 share/wordsearch/planets.txt
+share/wordsearch/sanfrancisco.txt
+share/wordsearch/school.txt
 share/wordsearch/science.txt
 share/wordsearch/scifi.txt
+share/wordsearch/shapes.txt
+share/wordsearch/sleep.txt
+share/wordsearch/snacks.txt
 share/wordsearch/sodas.txt
 share/wordsearch/space.txt
 share/wordsearch/spices.txt
 share/wordsearch/spring.txt
 share/wordsearch/states.txt
+share/wordsearch/stpatricks.txt
 share/wordsearch/strings.txt
 share/wordsearch/summer.txt
 share/wordsearch/superpowers.txt
 share/wordsearch/technology.txt
 share/wordsearch/tennis.txt
+share/wordsearch/thanksgiving.txt
+share/wordsearch/themepark.txt
 share/wordsearch/trains.txt
 share/wordsearch/travel.txt
 share/wordsearch/trees.txt
 share/wordsearch/unix.txt
+share/wordsearch/vegas.txt
+share/wordsearch/weather.txt
 share/wordsearch/wine.txt
 share/wordsearch/winter.txt
 share/wordsearch/work.txt

Reply via email to