gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] trunk r7026: gnomestuff etc


From: Carl Hansen
Subject: [Gsrc-commit] trunk r7026: gnomestuff etc
Date: Fri, 8 May 2020 20:41:46 -0400 (EDT)
User-agent: Bazaar (2.7.0dev1)

------------------------------------------------------------
revno: 7026
revision-id: carl@aurora-20200509004133-x8qslccp1s2rm7pr
parent: carl@aurora-20200508150744-7uqnrwf27nb6kgjh
committer: carl <carl@aurora>
branch nick: trunk
timestamp: Fri 2020-05-08 17:41:33 -0700
message:
  gnomestuff etc
modified:
  doc/texinfo.tex                texinfo.tex-20190530181338-ltiwe8dnocveg3er-1
  pkg/freedesktop/pulseaudio/Makefile 
makefile-20160617013746-7ygosxqw3lxxvo7f-1308
  pkg/freedesktop/pulseaudio/sha256sums 
sha256sums-20160617013746-7ygosxqw3lxxvo7f-1312
  pkg/gnome/accerciser/Makefile  makefile-20160617013746-7ygosxqw3lxxvo7f-273
  pkg/gnome/four-in-a-row/Makefile makefile-20160617013746-7ygosxqw3lxxvo7f-463
  pkg/gnome/gnome-2048/Makefile  makefile-20181106065955-htaq248v85ax3pte-3
  pkg/gnome/gnome-klotski/Makefile makefile-20160617013746-7ygosxqw3lxxvo7f-682
  pkg/gnome/gnome-mahjongg/Makefile makefile-20160617013746-7ygosxqw3lxxvo7f-692
=== modified file 'doc/texinfo.tex'
--- a/doc/texinfo.tex   2020-05-05 16:40:12 +0000
+++ b/doc/texinfo.tex   2020-05-09 00:41:33 +0000
@@ -3,9 +3,9 @@
 % Load plain if necessary, i.e., if running under initex.
 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
 %
-\def\texinfoversion{2020-05-05.16}
+\def\texinfoversion{2020-05-07.17}
 %
-% Copyright 1985, 1986, 1988, 1990-2019 Free Software Foundation, Inc.
+% Copyright 1985, 1986, 1988, 1990-2020 Free Software Foundation, Inc.
 %
 % This texinfo.tex file is free software: you can redistribute it and/or
 % modify it under the terms of the GNU General Public License as
@@ -1430,7 +1430,13 @@
       % subentries, which we calculated on our first read of the .toc above.
       %
       % We use the node names as the destinations.
+      %
+      % Currently we prefix the section name with the section number
+      % for chapter and appendix headings only in order to avoid too much 
+      % horizontal space being required in the PDF viewer.
       \def\numchapentry##1##2##3##4{%
+        \dopdfoutline{##2 ##1}{count-\expnumber{chap##2}}{##3}{##4}}%
+      \def\unnchapentry##1##2##3##4{%
         \dopdfoutline{##1}{count-\expnumber{chap##2}}{##3}{##4}}%
       \def\numsecentry##1##2##3##4{%
         \dopdfoutline{##1}{count-\expnumber{sec##2}}{##3}{##4}}%
@@ -1672,9 +1678,13 @@
       % Therefore, we read toc only once.
       %
       % We use node names as destinations.
+      %
+      % Currently we prefix the section name with the section number
+      % for chapter and appendix headings only in order to avoid too much 
+      % horizontal space being required in the PDF viewer.
       \def\partentry##1##2##3##4{}% ignore parts in the outlines
       \def\numchapentry##1##2##3##4{%
-        \dopdfoutline{##1}{1}{##3}{##4}}%
+        \dopdfoutline{##2 ##1}{1}{##3}{##4}}%
       \def\numsecentry##1##2##3##4{%
         \dopdfoutline{##1}{2}{##3}{##4}}%
       \def\numsubsecentry##1##2##3##4{%
@@ -1686,7 +1696,8 @@
       \let\appsecentry\numsecentry%
       \let\appsubsecentry\numsubsecentry%
       \let\appsubsubsecentry\numsubsubsecentry%
-      \let\unnchapentry\numchapentry%
+      \def\unnchapentry##1##2##3##4{%
+        \dopdfoutline{##1}{1}{##3}{##4}}%
       \let\unnsecentry\numsecentry%
       \let\unnsubsecentry\numsubsecentry%
       \let\unnsubsubsecentry\numsubsubsecentry%
@@ -3512,7 +3523,7 @@
 
 % @pounds{} is a sterling sign, which Knuth put in the CM italic font.
 %
-\def\pounds{{\it\$}}
+\def\pounds{\ifmonospace{\ecfont\char"BF}\else{\it\$}\fi}
 
 % @euro{} comes from a separate font, depending on the current style.
 % We use the free feym* fonts from the eurosym package by Henrik
@@ -3667,19 +3678,11 @@
 % only change font for tt for correct kerning and to avoid using
 % \ecfont unless necessary.
 \def\quotedblleft{%
-  \ifx\curfontstyle\ttstylename
-    {\ecfont\char"10}%
-  \else
-    {\char"5C}%
-  \fi
+  \ifmonospace{\ecfont\char"10}\else{\char"5C}\fi
 }
 
 \def\quotedblright{%
-  \ifx\curfontstyle\ttstylename
-    {\ecfont\char"11}%
-  \else
-    {\char`\"}%
-  \fi
+  \ifmonospace{\ecfont\char"11}\else{\char`\"}\fi
 }
 
 
@@ -7463,13 +7466,9 @@
 \newdimen\tabw \setbox0=\hbox{\tt\space} \tabw=8\wd0 % tab amount
 %
 % We typeset each line of the verbatim in an \hbox, so we can handle
-% tabs.  The \global is in case the verbatim line starts with an accent,
-% or some other command that starts with a begin-group.  Otherwise, the
-% entire \verbbox would disappear at the corresponding end-group, before
-% it is typeset.  Meanwhile, we can't have nested verbatim commands
-% (can we?), so the \global won't be overwriting itself.
+% tabs.
 \newbox\verbbox
-\def\starttabbox{\global\setbox\verbbox=\hbox\bgroup}
+\def\starttabbox{\setbox\verbbox=\hbox\bgroup}
 %
 \begingroup
   \catcode`\^^I=\active
@@ -7480,7 +7479,8 @@
       \divide\dimen\verbbox by\tabw
       \multiply\dimen\verbbox by\tabw % compute previous multiple of \tabw
       \advance\dimen\verbbox by\tabw  % advance to next multiple of \tabw
-      \wd\verbbox=\dimen\verbbox \box\verbbox \starttabbox
+      \wd\verbbox=\dimen\verbbox
+      \leavevmode\box\verbbox \starttabbox
     }%
   }
 \endgroup
@@ -7490,9 +7490,7 @@
   \let\nonarrowing = t%
   \nonfillstart
   \tt % easiest (and conventionally used) font for verbatim
-  % The \leavevmode here is for blank lines.  Otherwise, we would
-  % never \starttabbox and the \egroup would end verbatim mode.
-  \def\par{\leavevmode\egroup\box\verbbox\endgraf}%
+  \def\par{\egroup\box\verbbox\endgraf\starttabbox}%
   \tabexpand
   \setupmarkupstyle{verbatim}%
   % Respect line breaks,
@@ -7500,7 +7498,6 @@
   % make each space count.
   % Must do in this order:
   \obeylines \uncatcodespecials \sepspaces
-  \everypar{\starttabbox}%
 }
 
 % Do the @verb magic: verbatim text is quoted by unique
@@ -7535,9 +7532,12 @@
   % ignore everything up to the first ^^M, that's the newline at the end
   % of the @verbatim input line itself.  Otherwise we get an extra blank
   % line in the output.
-  \xdef\doverbatim#1^^M#2@end verbatim{#2\noexpand\end\gobble verbatim}%
+  \xdef\doverbatim#1^^M#2@end verbatim{%
+    \starttabbox#2\egroup\noexpand\end\gobble verbatim}%
   % We really want {...\end verbatim} in the body of the macro, but
   % without the active space; thus we have to use \xdef and \gobble.
+  % The \egroup ends the \verbbox started at the end of the last line in
+  % the block.
 \endgroup
 %
 \envdef\verbatim{%

=== modified file 'pkg/freedesktop/pulseaudio/Makefile'
--- a/pkg/freedesktop/pulseaudio/Makefile       2019-07-10 21:22:18 +0000
+++ b/pkg/freedesktop/pulseaudio/Makefile       2020-05-09 00:41:33 +0000
@@ -1,4 +1,4 @@
-# Copyright © 2016, 2017, 2018, 2019 Carl Hansen <address@hidden>
+# Copyright © 2016, 2017, 2018, 2019, 2020 Carl Hansen <address@hidden>
 #
 # This file is part of GSRC, the GNU Source Release Collection.
 # http://www.gnu.org/software/gsrc
@@ -21,7 +21,7 @@
 
 NAME =    pulseaudio
 GARNAME = pulseaudio
-GARVERSION = 12.99.1
+GARVERSION = 13.0
 HOME_URL = https://www.freedesktop.org/wiki/Software/PulseAudio/
 DESCRIPTION = pulseaudio
 define BLURB

=== modified file 'pkg/freedesktop/pulseaudio/sha256sums'
--- a/pkg/freedesktop/pulseaudio/sha256sums     2019-07-10 21:22:18 +0000
+++ b/pkg/freedesktop/pulseaudio/sha256sums     2020-05-09 00:41:33 +0000
@@ -1,1 +1,1 @@
-1001206668f099cce03985b5ae39707aefaae04e9078a273c7c505d51153be31  
download/pulseaudio-12.99.1.tar.xz
+961b23ca1acfd28f2bc87414c27bb40e12436efcf2158d29721b1e89f3f28057  
download/pulseaudio-13.0.tar.xz

=== modified file 'pkg/gnome/accerciser/Makefile'
--- a/pkg/gnome/accerciser/Makefile     2020-04-30 18:05:45 +0000
+++ b/pkg/gnome/accerciser/Makefile     2020-05-09 00:41:33 +0000
@@ -39,7 +39,7 @@
 DISTFILES = $(DISTNAME).tar.xz  $(DISTNAME).sha256sum
 SIGFILES =
 
-BUILDDEPS =
+BUILDDEPS = 
 LIBDEPS =
 
 ######################################################################

=== modified file 'pkg/gnome/four-in-a-row/Makefile'
--- a/pkg/gnome/four-in-a-row/Makefile  2020-04-30 18:05:45 +0000
+++ b/pkg/gnome/four-in-a-row/Makefile  2020-05-09 00:41:33 +0000
@@ -44,6 +44,6 @@
 
 ######################################################################
 
-include ../../../gar/gar.lib/auto.mk
+include ../../../gar/gar.lib/mesonninja.mk
 include config.mk
 

=== modified file 'pkg/gnome/gnome-2048/Makefile'
--- a/pkg/gnome/gnome-2048/Makefile     2020-04-30 18:05:45 +0000
+++ b/pkg/gnome/gnome-2048/Makefile     2020-05-09 00:41:33 +0000
@@ -43,6 +43,6 @@
 
 ######################################################################
 
-include ../../../gar/gar.lib/auto.mk
+include ../../../gar/gar.lib/mesonninja.mk
 include config.mk
 

=== modified file 'pkg/gnome/gnome-klotski/Makefile'
--- a/pkg/gnome/gnome-klotski/Makefile  2020-04-30 18:05:45 +0000
+++ b/pkg/gnome/gnome-klotski/Makefile  2020-05-09 00:41:33 +0000
@@ -1,4 +1,3 @@
-
 # Copyright © 2016,2018 Carl Hansen <address@hidden>
 #
 # This file is part of GSRC, the GNU Source Release Collection.
@@ -44,6 +43,6 @@
 
 ######################################################################
 
-include ../../../gar/gar.lib/auto.mk
+include ../../../gar/gar.lib/mesonninja.mk
 include config.mk
 

=== modified file 'pkg/gnome/gnome-mahjongg/Makefile'
--- a/pkg/gnome/gnome-mahjongg/Makefile 2020-04-30 18:05:45 +0000
+++ b/pkg/gnome/gnome-mahjongg/Makefile 2020-05-09 00:41:33 +0000
@@ -44,6 +44,6 @@
 
 ######################################################################
 
-include ../../../gar/gar.lib/auto.mk
+include ../../../gar/gar.lib/mesonninja.mk
 include config.mk
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]