summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-08-24 20:17:14 +0000
committerKarl Berry <karl@freefriends.org>2023-08-24 20:17:14 +0000
commit8991b6b1f01a41d76e5f1fabd21bf5a77b310ff5 (patch)
tree9f407df58dc203abec901b078f907f3147e423fd
parent4f80192f5a054e0eac6c29ea83f20b65daf35901 (diff)
dviasm (24aug23)
git-svn-id: svn://tug.org/texlive/trunk@68043 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/dviasm/dviasm.py11
-rw-r--r--Master/texmf-dist/doc/latex/dviasm/README2
-rw-r--r--Master/texmf-dist/doc/man/man1/dviasm.12
-rw-r--r--Master/texmf-dist/doc/man/man1/dviasm.man1.pdfbin25357 -> 25361 bytes
-rwxr-xr-xMaster/texmf-dist/scripts/dviasm/dviasm.py11
5 files changed, 12 insertions, 14 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/dviasm/dviasm.py b/Build/source/texk/texlive/linked_scripts/dviasm/dviasm.py
index 4a60f874d54..046306035aa 100755
--- a/Build/source/texk/texlive/linked_scripts/dviasm/dviasm.py
+++ b/Build/source/texk/texlive/linked_scripts/dviasm/dviasm.py
@@ -6,7 +6,7 @@
# Copyright (C) 2007-2008 by Jin-Hwan Cho <chofchof@ktug.or.kr>
# Copyright (C) 2011-2017 by Khaled Hosny <khaledhosny@eglug.org>
# Copyright (C) 2019 by Arthur Reutenauer <arthur@reutenauer.eu>
-# Copyright (C) 2019-2022 by Hironobu Yamashita <h.y.acetaminophen@gmail.com>
+# Copyright (C) 2019-2023 by Hironobu Yamashita <h.y.acetaminophen@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
import sys, os.path
from optparse import OptionParser
@@ -315,8 +315,7 @@ class DVI(object):
id = GetByte(fp)
if not ValidID(id):
warning("ID byte is %d; use the default %d!" % (id, DVI_ID))
- else:
- self.id = id
+ self.id = id
numerator = SignedQuad(fp)
if numerator <= 0:
warning('numerator is %d; use the default 25400000!' % numerator)
@@ -1169,13 +1168,13 @@ def ProcessOptions():
DVIasm is a Python script to support changing or creating DVI files
via disassembling into text, editing, and then reassembling into
binary format. It is fully documented at
- http://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf
+ https://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf
http://ajt.ktug.kr/assets/2008/5/1/0201cho.pdf
Please report bugs to
https://github.com/aminophen/dviasm"""
- version = """This is %prog-20220918
+ version = """This is %prog-20230823
Copyright (C) 2007-2008 by Jin-Hwan Cho <chofchof@ktug.or.kr>
Copyright (C) 2011-2017 by Khaled Hosny <khaledhosny@eglug.org>
diff --git a/Master/texmf-dist/doc/latex/dviasm/README b/Master/texmf-dist/doc/latex/dviasm/README
index 94440ada62a..c9f2482d4d2 100644
--- a/Master/texmf-dist/doc/latex/dviasm/README
+++ b/Master/texmf-dist/doc/latex/dviasm/README
@@ -12,7 +12,7 @@ https://github.com/aminophen/dviasm
It is fully documented at
-http://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf (TUGboat)
+https://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf (TUGboat)
http://ajt.ktug.kr/assets/2008/5/1/0201cho.pdf (Asian Journal of TeX)
Previous maintainer of DVIasm: Khaled Hosny
diff --git a/Master/texmf-dist/doc/man/man1/dviasm.1 b/Master/texmf-dist/doc/man/man1/dviasm.1
index e5f67116ccc..3e2f2af3015 100644
--- a/Master/texmf-dist/doc/man/man1/dviasm.1
+++ b/Master/texmf-dist/doc/man/man1/dviasm.1
@@ -105,7 +105,7 @@ This option would be useful for example when using CJK package.
Documentation of
.B DVIasm
by the original author Jin-Hwan Cho is published as:
- http://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf (TUGboat)
+ https://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf (TUGboat)
http://ajt.ktug.kr/assets/2008/5/1/0201cho.pdf (Asian Journal of TeX)
.SH AUTHORS
The first version was written in Python 2 by Jin-Hwan Cho in 2007.
diff --git a/Master/texmf-dist/doc/man/man1/dviasm.man1.pdf b/Master/texmf-dist/doc/man/man1/dviasm.man1.pdf
index 0ac4e8d37d5..df9680f5a3b 100644
--- a/Master/texmf-dist/doc/man/man1/dviasm.man1.pdf
+++ b/Master/texmf-dist/doc/man/man1/dviasm.man1.pdf
Binary files differ
diff --git a/Master/texmf-dist/scripts/dviasm/dviasm.py b/Master/texmf-dist/scripts/dviasm/dviasm.py
index 4a60f874d54..046306035aa 100755
--- a/Master/texmf-dist/scripts/dviasm/dviasm.py
+++ b/Master/texmf-dist/scripts/dviasm/dviasm.py
@@ -6,7 +6,7 @@
# Copyright (C) 2007-2008 by Jin-Hwan Cho <chofchof@ktug.or.kr>
# Copyright (C) 2011-2017 by Khaled Hosny <khaledhosny@eglug.org>
# Copyright (C) 2019 by Arthur Reutenauer <arthur@reutenauer.eu>
-# Copyright (C) 2019-2022 by Hironobu Yamashita <h.y.acetaminophen@gmail.com>
+# Copyright (C) 2019-2023 by Hironobu Yamashita <h.y.acetaminophen@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
import sys, os.path
from optparse import OptionParser
@@ -315,8 +315,7 @@ class DVI(object):
id = GetByte(fp)
if not ValidID(id):
warning("ID byte is %d; use the default %d!" % (id, DVI_ID))
- else:
- self.id = id
+ self.id = id
numerator = SignedQuad(fp)
if numerator <= 0:
warning('numerator is %d; use the default 25400000!' % numerator)
@@ -1169,13 +1168,13 @@ def ProcessOptions():
DVIasm is a Python script to support changing or creating DVI files
via disassembling into text, editing, and then reassembling into
binary format. It is fully documented at
- http://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf
+ https://tug.org/TUGboat/Articles/tb28-2/tb89cho.pdf
http://ajt.ktug.kr/assets/2008/5/1/0201cho.pdf
Please report bugs to
https://github.com/aminophen/dviasm"""
- version = """This is %prog-20220918
+ version = """This is %prog-20230823
Copyright (C) 2007-2008 by Jin-Hwan Cho <chofchof@ktug.or.kr>
Copyright (C) 2011-2017 by Khaled Hosny <khaledhosny@eglug.org>