[med-svn] [Git][med-team/medicalterms][upstream] New upstream version 20230905

Tobias Quathamer (@toddy) gitlab at salsa.debian.org
Tue Sep 5 13:07:17 BST 2023



Tobias Quathamer pushed to branch upstream at Debian Med / medicalterms


Commits:
ec78692c by Dr. Tobias Quathamer at 2023-09-05T13:57:08+02:00
New upstream version 20230905
- - - - -


24 changed files:

- CHANGELOG.md
- Makefile.am
- Makefile.in
- README-medicalterms.md
- README.md
- bin/Makefile.am
- bin/Makefile.in
- bin/convert_to_igerman98
- bin/find_dups
- bin/get_words
- bin/sort_file
- configure
- configure.ac
- dicts/Makefile.am
- dicts/Makefile.in
- dicts/abkuerzungen-x-de_all-medicalterms.txt
- dicts/adjektive-de_all-medicalterms.txt
- dicts/ergaenzungen-xx-de_all-medicalterms.txt
- dicts/medizin-a-de_all-medicalterms.txt
- dicts/medizin-n-de_all-medicalterms.txt
- dicts/medizin-xx-de_all-medicalterms.txt
- dicts/namen-x-de_all-medicalterms.txt
- dicts/verben-de_all-medicalterms.txt
- dicts/wirkstoffe-x-de_all-medicalterms.txt


Changes:

=====================================
CHANGELOG.md
=====================================
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
 
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
 
+## [20230905]
+### Changed
+* Move project from github.com to codeberg.org
+* Use UTF-8 for hunspell dictionary
+* Update copyright years
+
+
 ## [20220425]
 ### Changed
 * Use HTTPS URLs where available
@@ -169,18 +176,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
 * Initial release of the package
 
 
-[20220425]: https://github.com/toddy15/medicalterms/compare/v20160103...v20220425
-[20160103]: https://github.com/toddy15/medicalterms/compare/v20110608...v20160103
-[20110608]: https://github.com/toddy15/medicalterms/compare/v20100204...v20110608
-[20100204]: https://github.com/toddy15/medicalterms/compare/v20091008...v20100204
-[20091008]: https://github.com/toddy15/medicalterms/compare/v20090825...v20091008
-[20090825]: https://github.com/toddy15/medicalterms/compare/v20090216...v20090825
-[20090216]: https://github.com/toddy15/medicalterms/compare/v20080712...v20090216
-[20080712]: https://github.com/toddy15/medicalterms/compare/v20080620...v20080712
-[20080620]: https://github.com/toddy15/medicalterms/compare/v20080515...v20080620
-[20080515]: https://github.com/toddy15/medicalterms/compare/v20080327...v20080515
-[20080327]: https://github.com/toddy15/medicalterms/compare/v20080229...v20080327
-[20080229]: https://github.com/toddy15/medicalterms/compare/v20051025...v20080229
-[20051025]: https://github.com/toddy15/medicalterms/compare/v20050703...v20051025
-[20050703]: https://github.com/toddy15/medicalterms/compare/v20050510...v20050703
-[20050510]: https://github.com/toddy15/medicalterms/releases/tag/v20050510
+[20230905]: https://codeberg.org/toddy/medicalterms/compare/v20220425...v20230905
+[20220425]: https://codeberg.org/toddy/medicalterms/compare/v20160103...v20220425
+[20160103]: https://codeberg.org/toddy/medicalterms/compare/v20110608...v20160103
+[20110608]: https://codeberg.org/toddy/medicalterms/compare/v20100204...v20110608
+[20100204]: https://codeberg.org/toddy/medicalterms/compare/v20091008...v20100204
+[20091008]: https://codeberg.org/toddy/medicalterms/compare/v20090825...v20091008
+[20090825]: https://codeberg.org/toddy/medicalterms/compare/v20090216...v20090825
+[20090216]: https://codeberg.org/toddy/medicalterms/compare/v20080712...v20090216
+[20080712]: https://codeberg.org/toddy/medicalterms/compare/v20080620...v20080712
+[20080620]: https://codeberg.org/toddy/medicalterms/compare/v20080515...v20080620
+[20080515]: https://codeberg.org/toddy/medicalterms/compare/v20080327...v20080515
+[20080327]: https://codeberg.org/toddy/medicalterms/compare/v20080229...v20080327
+[20080229]: https://codeberg.org/toddy/medicalterms/compare/v20051025...v20080229
+[20051025]: https://codeberg.org/toddy/medicalterms/compare/v20050703...v20051025
+[20050703]: https://codeberg.org/toddy/medicalterms/compare/v20050510...v20050703
+[20050510]: https://codeberg.org/toddy/medicalterms/releases/tag/v20050510


=====================================
Makefile.am
=====================================
@@ -1,7 +1,7 @@
 # The Makefile for medicalterms
 ## Process this file with automake to produce Makefile.in
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #
@@ -82,7 +82,6 @@ de_med.dic: $(PLAIN_LISTS) $(COMPOUND_LISTS)
 	$(SORT) -u > $@.compound.lower.tmp
 # Create list for all words
 	cat $@.plain.tmp $@.compound.tmp $@.compound.lower.tmp | \
-	$(ASPELL) conv UTF-8 ISO-8859-1 | \
 	LANG=de_DE LC_ALL=de_DE $(SORT) -u > $@.tmp
 	wc -l < $@.tmp > $@
 	cat $@.tmp >> $@


=====================================
Makefile.in
=====================================
@@ -16,7 +16,7 @@
 
 # The Makefile for medicalterms
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #
@@ -820,7 +820,6 @@ de_med.dic: $(PLAIN_LISTS) $(COMPOUND_LISTS)
 	$(SORT) -u > $@.compound.lower.tmp
 # Create list for all words
 	cat $@.plain.tmp $@.compound.tmp $@.compound.lower.tmp | \
-	$(ASPELL) conv UTF-8 ISO-8859-1 | \
 	LANG=de_DE LC_ALL=de_DE $(SORT) -u > $@.tmp
 	wc -l < $@.tmp > $@
 	cat $@.tmp >> $@


=====================================
README-medicalterms.md
=====================================
@@ -12,7 +12,7 @@ unter der GNU GPL, Version 3 oder später.
 
 Fehlermeldungen und Ergänzungswünsche können unter folgender
 Adresse eingereicht werden:
-<https://github.com/toddy15/medicalterms/issues>
+<https://codeberg.org/toddy/medicalterms>
 
 Autor des Grundwörterbuchs:
 Bjoern Jacke <bjoern at j3e.de>


=====================================
README.md
=====================================
@@ -1,6 +1,6 @@
 # medicalterms
 
-![License](https://img.shields.io/github/license/toddy15/medicalterms)
+![License](https://img.shields.io/badge/License-GPL--3.0--or--later-blue)
 
 The goal of this package is to create specialized dictionaries for medical
 terms used in various languages. Those dictionaries can be used easily with
@@ -8,7 +8,7 @@ hunspell, an advanced spellchecker.
 
 As of now, German is the only supported language. If you'd like to contribute
 to the development of the package medicalterms, please contact me. You can
-find the latest version on [GitHub](https://github.com/toddy15/medicalterms).
+find the latest version on [Codeberg](https://codeberg.org/toddy/medicalterms).
 
 The dictionary supports old and new spelling variants. Currently, however,
 only the new variant is generated for hunspell. There's currently no
@@ -36,9 +36,9 @@ Please note that this requires hunspell 1.2.2 or later.
 
 ## Access to the source code repository
 
-This project is hosted on GitHub:
+This project is hosted on Codeberg:
 
-https://github.com/toddy15/medicalterms
+https://codeberg.org/toddy/medicalterms
 
 Patches and pull requests are welcome!
 


=====================================
bin/Makefile.am
=====================================
@@ -1,7 +1,7 @@
 # Makefile for the bin subdirectory
 ## Process this file with automake to produce Makefile.in
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
bin/Makefile.in
=====================================
@@ -16,7 +16,7 @@
 
 # Makefile for the bin subdirectory
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
bin/convert_to_igerman98
=====================================
@@ -3,7 +3,7 @@
 # Script for changing all umlauts in dictionary words from the specified
 # files
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #
@@ -30,7 +30,7 @@ sub version
 {
 	my $filename = substr($0, rindex($0, "/") + 1);
 	print "$filename version 0.1\n";
-	print "Copyright © 2005-2022 Dr. Tobias Quathamer <toddy\@debian.org>\n";
+	print "Copyright © 2005-2023 Dr. Tobias Quathamer <toddy\@debian.org>\n";
 }
 
 sub usage


=====================================
bin/find_dups
=====================================
@@ -3,7 +3,7 @@
 # Script for finding duplicate words in the specified
 # files, stripping the GNU license comment at the beginning
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #
@@ -30,7 +30,7 @@ sub version
 {
 	my $filename = substr($0, rindex($0, "/") + 1);
 	print "$filename version 0.1\n";
-	print "Copyright © 2005-2022 Dr. Tobias Quathamer <toddy\@debian.org>\n";
+	print "Copyright © 2005-2023 Dr. Tobias Quathamer <toddy\@debian.org>\n";
 }
 
 sub usage


=====================================
bin/get_words
=====================================
@@ -3,7 +3,7 @@
 # Script for extracting all dictionary words from the specified
 # files, stripping the GNU license comment at the beginning
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #
@@ -30,7 +30,7 @@ sub version
 {
 	my $filename = substr($0, rindex($0, "/") + 1);
 	print "$filename version 0.1\n";
-	print "Copyright © 2005-2022 Dr. Tobias Quathamer <toddy\@debian.org>\n";
+	print "Copyright © 2005-2023 Dr. Tobias Quathamer <toddy\@debian.org>\n";
 }
 
 sub usage


=====================================
bin/sort_file
=====================================
@@ -3,7 +3,7 @@
 # Script for sorting all dictionary words in the specified file,
 # without messing with the GNU license comment at the beginning
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #
@@ -34,7 +34,7 @@ sub version
 {
 	my $filename = substr($0, rindex($0, "/") + 1);
 	print "$filename version 0.1\n";
-	print "Copyright © 2005-2022 Dr. Tobias Quathamer <toddy\@debian.org>\n";
+	print "Copyright © 2005-2023 Dr. Tobias Quathamer <toddy\@debian.org>\n";
 }
 
 sub usage


=====================================
configure
=====================================
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.71 for medicalterms 20220425.
+# Generated by GNU Autoconf 2.71 for medicalterms 20230905.
 #
 #
 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
@@ -607,8 +607,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='medicalterms'
 PACKAGE_TARNAME='medicalterms'
-PACKAGE_VERSION='20220425'
-PACKAGE_STRING='medicalterms 20220425'
+PACKAGE_VERSION='20230905'
+PACKAGE_STRING='medicalterms 20230905'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1246,7 +1246,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures medicalterms 20220425 to adapt to many kinds of systems.
+\`configure' configures medicalterms 20230905 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1313,7 +1313,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of medicalterms 20220425:";;
+     short | recursive ) echo "Configuration of medicalterms 20230905:";;
    esac
   cat <<\_ACEOF
 
@@ -1391,7 +1391,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-medicalterms configure 20220425
+medicalterms configure 20230905
 generated by GNU Autoconf 2.71
 
 Copyright (C) 2021 Free Software Foundation, Inc.
@@ -1428,7 +1428,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by medicalterms $as_me 20220425, which was
+It was created by medicalterms $as_me 20230905, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   $ $0$ac_configure_args_raw
@@ -2404,7 +2404,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='medicalterms'
- VERSION='20220425'
+ VERSION='20230905'
 
 
 printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -3231,7 +3231,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by medicalterms $as_me 20220425, which was
+This file was extended by medicalterms $as_me 20230905, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3286,7 +3286,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config='$ac_cs_config_escaped'
 ac_cs_version="\\
-medicalterms config.status 20220425
+medicalterms config.status 20230905
 configured by $0, generated by GNU Autoconf 2.71,
   with options \\"\$ac_cs_config\\"
 


=====================================
configure.ac
=====================================
@@ -1,7 +1,7 @@
 # Some configure options for medicalterms
 # Process this file with autoconf to produce a configure script.
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #
@@ -19,7 +19,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #
 
-AC_INIT(medicalterms, 20220425)
+AC_INIT(medicalterms, 20230905)
 AM_MAINTAINER_MODE
 AM_INIT_AUTOMAKE([foreign])
 


=====================================
dicts/Makefile.am
=====================================
@@ -1,7 +1,7 @@
 # Makefile for the dicts subdirectory
 ## Process this file with automake to produce Makefile.in
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/Makefile.in
=====================================
@@ -16,7 +16,7 @@
 
 # Makefile for the dicts subdirectory
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/abkuerzungen-x-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists medical abbreviations in German
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/adjektive-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists medical adjectives in German
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/ergaenzungen-xx-de_all-medicalterms.txt
=====================================
@@ -5,7 +5,7 @@
 # If Björn decides to add these suffixes to his igerman98 files, I'll
 # remove the corresponding entries from this file.
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/medizin-a-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists medical terms in German, old spelling
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/medizin-n-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists medical terms in German, new spelling
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/medizin-xx-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists medical terms (only nouns) in German
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/namen-x-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists names which are also medical terms in German
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/verben-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists medical verbs in German
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #


=====================================
dicts/wirkstoffe-x-de_all-medicalterms.txt
=====================================
@@ -1,6 +1,6 @@
 # This file lists the generic names of drugs in German
 #
-# Copyright © 2005-2022 Dr. Tobias Quathamer <toddy at debian.org>
+# Copyright © 2005-2023 Dr. Tobias Quathamer <toddy at debian.org>
 #
 # This file is part of Medicalterms.
 #



View it on GitLab: https://salsa.debian.org/med-team/medicalterms/-/commit/ec78692cdd512d1c7a9558600d2e9a1f3f563269

-- 
View it on GitLab: https://salsa.debian.org/med-team/medicalterms/-/commit/ec78692cdd512d1c7a9558600d2e9a1f3f563269
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20230905/33c88ab8/attachment-0001.htm>


More information about the debian-med-commit mailing list