1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
|
% !TEX root = BuildWithGBP.nw
\part{Plugins und Skripte}
\chapter{Java-Plugin}
<<build-gbp-java-plugin.sh>>=
#!/usr/bin/bash
# Copyright 2019-2025 Mechtilde and Michael Stehmann <mechtilde@debian.org>
# version 0.9.9
# java plugin for build-gbp.sh
# 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
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# 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, write to the Free Software
# Foundation, Inc., 31 Milk Street, #960789 Boston,
# MA 02196, USA.
<<Rules4Java>>
@
\section{Anpassungen für \texttt{Java}-Pakete}
\label{sec:JavaAdaption}
In der Datei \textit{debian/rules} (Kapitel~\ref{subsec:rules},
Seite~\pageref{subsec:rules}) werden für das Kompilieren mit \texttt{Java}
folgende Zeilen hinzugefügt:
<<Rules4Java>>=
function Rules4Java {
echo "export JAVA_TOOL_OPTIONS := -Dfile.encoding=UTF8" >>\
${GitPath}/debian/rules
echo -e "export JAVA_HOME := /usr/lib/jvm/default-java\n" >>\
${GitPath}/debian/rules
}
<<build-gbp-java-plugin>>
@
Dies bedeutet, dass:
\begin{enumerate}
\item{Immer das UTF-8 encoding genutzt wird}
\item{die Variable \textit{JAVA\_HOME} gesetzt ist.}
\end{enumerate}
% Todo mit oder ohne export beschreiben
Vom Skript wird lediglich eine Minimalkonfiguration der Datei
\textit{rules} bereitgestellt. Diese muss oft noch sinnvoll ergänzt werden.
Für das Bauen der JAVA-Pakete werden häufig folgende Optionen benötigt.
\begin{verbatim}
JMODS := /usr/lib/jvm/default-java/jmods
JAVACMD="\$JAVA\_HOME/bin/java"
\end{verbatim}
Es kommt auch vor, dass \textit{JDK\_HOME} statt \textit{JAVA\_HOME}
verwendet wird.
%Es muss ausprobiert werden, ob noch jeweils ein "export" davor gesetzt
%werden muss
% Der folgende Abschnitt muss noch dazu überprüft werden, was davon im
%Maven-Plugin untergebracht werden muss.
Diese Ergänzungen werden für die mit dem \textit{maven}-Build-System
erstellten Pakete vom \textit{Maven-Plugin} (Kapitel~\ref{chap:MavenPlugin},
Seite~\pageref{chap:MavenPlugin}) bereitgestellt.
In der Zeile mit \textit{dh \$@} können Optionen eingefügt werden.
\begin{description}
\item[-{}-with javahelper]
\item[-{}-buildsystem=maven]
\item[-{}-buildsystem=ant]
\item[-{}-buildsystem=gradle]
\end{description}
<<build-gbp-java-plugin>>=
whiptail --title "Java plugin found" \
--msgbox "build-gbp-java-plugin.sh was loaded." 15 60
echo "build-gbp-java-plugin.sh was loaded." >> ${log}
@
\chapter{Maven-Plugin}
\label{chap:MavenPlugin}
Das \texttt{Maven}-Plugin unterstützt das Bauen von \texttt{Java}-Paketen
mit dem \texttt{Java}-Build-System \textit{maven}
(Kapitel~\ref{subsec:JavaPaketMaven},
Seite~\pageref{subsec:JavaPaketMaven}).
\section{Kopf des Maven-Plugins}
Der Kopfteil des Plugins enthält Angaben zu den Urhebern und der Lizenz.
Außerdem ist vermerkt, welche \texttt{Debian}-Pakete für den Ablauf des
Programmskriptes installiert sein müssen.
<<build-gbp-maven-plugin.sh>>=
#!/usr/bin/bash
# Copyright 2019-2025 Mechtilde and Michael Stehmann <mechtilde@debian.org>
# version 0.9.9
# maven plugin for build-gbp.sh
# 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
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# 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, write to the Free Software
# Foundation, Inc., 31 Milk Street, #960789 Boston,
# MA 02196, USA.
# Dependencies: maven-debian-helper licensecheck apt-file
<<Rules4MavenDH>>
@
\section{Mitteilung}
Das Plugin-Skript teilt mit, dass es geladen wurde. Damit ist der Code
des Plugins Teil des (Haupt-)Programmskriptes.
<<MavenPlugin>>=
whiptail --title "maven plugin found" \
--msgbox "build-gbp-maven-plugin.sh was loaded." 15 60
echo "build-gbp-maven-plugin.sh was loaded." >> ${log}
# Next the function MakeMaven is executed by the main script.
# This is the end, my friend
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/MavenPluginLoaded.png}
\caption{Maven Plugin geladen}
\end{figure}
\section{Bauen mit \textit{Maven}}
\label{sec:BuildWithMaven}
Diese Funktion wird nach dem Laden des Plugins beim Bauen einer neuen
Revision von der Funktion \textit{BuildNewVersion} des
(Haupt-)Programmskriptes aufgerufen
(Kapitel~\ref{sec:RequestBuildWithMaven},
Seite~\pageref{sec:RequestBuildWithMaven}).
Die Ausführung von \textit{mh\_make} erfolgt in einer
\textit{Chroot}-Umgebung. Wenn die \textit{chroot} noch nicht existiert,
ist sie zunächst als \textit{/srv/maven-chroot} anzulegen wie in
Kapitel~\ref{sec:MoreChrootSystems}
(Seite~\pageref{sec:MoreChrootSystems}) beschrieben.
<<MakeMaven>>=
function MakeMaven {
# Called by BuildNewRevision
cd ${GitPath}
IdentifyMavenChrootPath
<<MakeMaven1>>
@
Nun wird die Funktion \textit{IdentifyMavenChrootPath} aufgerufen. Diese
Funktion prüft, ob die Variable \textit{ChrootPath} mit einem Wert
belegt ist.
<<IdentifyMavenChrootPath>>=
function IdentifyMavenChrootPath {
# Called by MakeMaven and itself
if [ -n "${ChrootPath}" ]
then
if ! whiptail --title "Maven chroot path " \
--yesno "Is ${ChrootPath}\nthe right path to\n\
maven chroot directory on the host?" \
--yes-button "Yes" \
--no-button "No" 15 60
<<IdentifyMavenChrootPath1>>
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/IdentifyMavenChrootPath.png}
\caption{Pfad zur Maven-Chroot ermitteln}
\end{figure}
Wird der korrekte Pfad zur \textit{maven-chroot} angezeigt, geht es
weiter mit der Prüfung, ob die \textit{maven-chroot} auch an diesem Ort
eingerichtet ist.
<<IdentifyMavenChrootPath1>>=
then
OldCP=${ChrootPath}
AskChrootPath
fi
else
AskChrootPath
fi
<<IdentifyMavenChrootPath2>>
@
<<AskChrootPath>>=
function AskChrootPath {
# Called by IdentifyMavenChrootPath
# This is the way from GitPath to /srv/maven-chroot
ChrootPath=$(whiptail --title "Maven chroot path" \
--inputbox "Please insert the path\nto the maven chroot directory\n\
on the host:" \
--nocancel 15 60 3>&2 2>&1 1>&3)
<<AskChrootPath1>>
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/MavenChrootPath.png}
\caption{Pfad zur Maven-Chroot angeben}
\end{figure}
<<AskChrootPath1>>=
if [ -n "${OldCP}" ]
then
ReplaceConfigLines "ChrootPath" ${ChrootPath}
else
echo "### Maven chroot path"
echo "ChrootPath="${ChrootPath} >> ${ConfigPath}${OrigName}
fi
OldCP=""
}
<<AskWorkspacePath>>
@
Ist die \textit{maven-chroot} noch nicht eingerichtet, wird sie vom
Programm-Skript im angegebenen Verzeichnis eingerichtet.
<<IdentifyMavenChrootPath2>>=
# Create Maven-Chroot if not exists
if ! [ -d ${ChrootPath} ]
then
echo "Please enter your SUDO password!"
sudo mkdir --parents ${ChrootPath}
fi
if ! [ -d ${ChrootPath}/usr ]
then
echo "Please enter your SUDO password!"
sudo /usr/sbin/debootstrap --arch amd64 sid \
${ChrootPath} http://ftp.de.debian.org/debian
echo "The maven chroot has been created." >> ${log}
fi
<<IdentifyMavenChrootPath3>>
@
Danach wird der Pfad für den Arbeitsbereich in der \textit{maven-chroot}
ermittelt.
<<IdentifyMavenChrootPath3>>=
# The workspace is /home/user
if [ -n "${Path2Workspace}" ]
then
if ! whiptail --title "Maven chroot path " \
--yesno "Is ${Path2Workspace}\nthe workspace in the maven chroot?" \
--yes-button "Yes" \
--no-button "No" 15 60 # test
<<IdentifyMavenChrootPath4>>
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/WorkspaceMavenChroot.png}
\caption{Arbeitsverzeichnis in der Maven-Chroot ermitteln}
\end{figure}
Wird die Frage nach dem Arbeitsbereich innerhalb der \textit{maven-chroot}
bejaht, wird das Arbeitsverzeichnis des Projektes in den Arbeitsbereich
der \textit{maven-chroot} kopiert (Seite~\pageref{par:MavenChrootWork}).
Sodann geht es mit der Arbeit innerhalb der \textit{maven-chroot} weiter.
<<IdentifyMavenChrootPath4>>=
then
OldP2W=${Path2Workspace}
AskWorkspacePath
fi
else
AskWorkspacePath
fi
<<IdentifyMavenChrootPath5>>
@
<<AskWorkspacePath>>=
function AskWorkspacePath {
# Called by IdentifyMavenChrootPath
# This is the way to /home/user/
Path2Workspace=$(whiptail --title "Maven chroot path" \
--inputbox "Please insert the path\nto the workspace directory:" \
--nocancel 15 60 3>&2 2>&1 1>&3)
<<AskWorkspacePath2>>
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/InsertMavenChrootWorkspace.png}
\caption{Arbeitsverzeichnis in der Maven-Chroot angeben}
\end{figure}
<<AskWorkspacePath2>>=
if [ -n "${OldP2W}" ]
then
ReplaceConfigLines "Path2Workspace" ${Path2Workspace}
else
echo "Path2Workspace="${Path2Workspace} >> ${ConfigPath}${OrigName}
fi
OldP2W=""
}
<<IdentifyMavenChrootPath>>
@
<<IdentifyMavenChrootPath5>>=
# Replace / at the end
Path2Workspace=$(echo ${Path2Workspace} | sed --expression="s/\/$//")
MavenChrootPath=${ChrootPath}${Path2Workspace}
if ! [ -d ${MavenChrootPath} ]
then
whiptail --title "Error!" \
--msgbox "${MavenChrootPath} does not exist.\n\
It will be created now." 15 60
<<IdentifyMavenChrootPath7>>
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/NonExistingMavenChroot.png}
\caption{Maven-Chroot existiert nicht}
\end{figure}
Existiert die \textit{chroot} nicht, ist sie anzulegen wie in
Kapitel~\ref{sec:MoreChrootSystems}, Seite~\pageref{sec:MoreChrootSystems}
beschrieben.
<<IdentifyMavenChrootPath7>>=
echo "Please enter your SUDO password!"
sudo mkdir --parents ${MavenChrootPath}
echo "The maven work space has been created." >> ${log}
fi
}
<<MakeMaven>>
@
\paragraph*{}
% Anchor for Label
\label{par:MavenChrootWork}
Das Arbeitsverzeichnis des Projektes wird in den Arbeitsbereich
der \textit{maven-chroot} kopiert. Hierzu werden \textit{Root}-Rechte
benötigt.
<<MakeMaven1>>=
# Copy workspace to maven chroot
echo "To copy the sources into maven-chroot you need sudo rights"
sudo cp --archive ${GitPath} ${MavenChrootPath}
# Because mh_make has to run in the directory, where pom.xml is
echo "pom.xml is here:"
find . -name 'pom.xml' -print
echo "Please switch to the Maven chroot in another terminal."
echo
echo "Use these commands:"
echo
echo "# sudo mount -o bind /proc "${ChrootPath}"/proc"
echo "# sudo mount devpts /dev/pts -t devpts"
echo
echo "sudo LANG=C chroot "${ChrootPath}" /usr/bin/bash"
echo "cd "${Path2Workspace}"/"${SourceName}
echo "try: apt install maven-debian-helper"
echo "apt update && apt upgrade"
echo "mh_make --verbose "${SourceName}
echo
echo "Then follow the questions of mh_make"
echo
echo "You can leave the chroot with 'exit'."
echo
echo "After finishing press return to go on!"
read a
#--run-tests=true --javadoc=true --verbose
#mh_make --package=${SourceName} --bin-package=${PackName} \
#--run-tests=false --javadoc=false --verbose
#if [ $? -ne 0 ]
#then
# echo "mh_make failed!"
# exit
#else
# echo "mh_make has been executed for "${PackName} >> ${log}
#fi
cp --recursive --update ${MavenChrootPath}/${SourceName}/debian \
${GitPath}
<<MakeMaven5>>
@
Beim Ablauf des Programmes \textit{mh\_make} sind folgende Fragen zu
beantworten. Dieses Programm selber in auch ein Shell-Skript.
\begin{description}
\item[Environment variable DEBLICENSE not set, using Apache-2.0 by default]
Es wird standardmäßig die Lizenz Apache-2.0 verwendet, wenn die
Umgebungsvariable \textit{DEBLICENSE} nicht gesetzt ist.
In der Variablen \textit{DEBLICENSE} wird die Lizenz für
die Dateien in \textit{debian/} hinterlegt.
% ToDo: Beschreiben, wo diese Umgebungsvariablen definiert werden.
%(eventuell) vor der Ausführung abfragen.
\item[Checking that apt-file is installed and has been configured\dots
{{[}ok{]}}] Es wird geprüft, ob das Paket \textit{apt-file} installiert ist.
Dieses Paket ist nur als \emph{empfohlen} markiert.
\item[Checking that licensecheck is installed\dots {{[}ok{]}}]
Prüfung, ob das Paket \textit{licensecheck} installiert ist.
Dieses Paket ist ebenfalls nur als \emph{empfohlen} markiert.
\item[Solving dependencies for package <PaketName>]
\item[Analysing pom.xml\dots]
\item[Resolving com.jcabi:jcabi:pom:1.21 of scope runtime\dots]
% ToDo: Angaben zum speziellen Paket verallgemeinern
\item[The parent POM cannot be found in the Maven repository for De\-bian.]
% ToDo: Angaben zum speziellen Paket verallgemeinern
Es ist der Regelfall, dass die Abhängigkeit für das Elternelement nicht
gefunden wird. Daher wird die Frage bejaht, dass dies ignoriert werden
kann. Diese Information wird dann als als \textit{--no-parent} in die
Datei \textit{<PaketName>.poms} geschrieben.
\item[Enter the upstream version for the package.] Hier wird die zu
bauende Versionsnummer des Upstream-codes abgefragt und in der Regel
mit \textit{Enter} bestätigt. Andernfalls wird die korrekte
Versionsnummer eingegeben.
\item[Version of com.jcabi:jcabi-aspects is 0.22.6]
% ToDo: Angaben zum speziellen Paket verallgemeinern
Es wird nochmal die Versionsnummer angezeigt.
\item[Choose how the version will be transformed:] Nun wird eine
Auswahl angezeigt, wie diese Versionsnummer umgewandelt werden soll.
\begin{description}
\item[0 - Replace all versions starting by 0. with 0.x] Es sollen
alle Versionsbezeichnungen ersetzt werden.
\item[(1) - Change the version to the symbolic 'debian' version]
Die Standardangabe wird mit eckigen Klammern (Hier sind es aus
satztechnischen Gründen runde Klammern) gekennzeichnet. Diese
kann mit \textit{Enter} bestätigt werden.
\item[2 - Keep the version]
\item[3 - Custom rule]
\end{description}
Andernfalls wird nun die gewünschte Ziffer eingegeben.
\item[Inform mh\_make that dependencies of type jar which may match
this library \\should be transformed into bundles automatically?
{[}Y/n{]}]
% ToDo: Angaben zum speziellen Paket verallgemeinern
Soll \textit{mh\_make} mitgeteilt
werden, dass die passenden Abhängigkeiten vom Typ \textit{jar}
in Bundles umgewandelt werden. Standardmäßig wird diese Frage bejaht.
\item[\protect{\parbox[t]{15cm}{Resolving com.jcabi:jcabi-log:jar:0.17
of scope runtime\dots
{$[$ check dependency with bundle type $]$}}}]
% ToDo: Angaben zum speziellen Paket verallgemeinern
\item[\protect{\parbox[t]{15cm}{In pom.xml: This dependency cannot
be found in the Debian Maven
repository. Ignore this dependency? com.jcabi:jcabi-log:jar:0.17
{$[$ y/N $]$}}}] Diese Meldung kommt, wenn die benötigte Abhängigkeit
nicht auf der Arbeitsmaschine installiert ist.
\begin{itemize}
\item \textgreater dpkg --search /usr/share/maven-repo/com/jcabi/jcabi-log/*/*
dpkg failed to execute successfully
\item \textgreater apt-file search /usr/share/maven-repo/com/jcabi/jcabi-log
\footnotesize
\begin{verbatim}
Found /usr/share/maven-repo/com/jcabi/jcabi-log/0.18.1/jcabi-log-0.18.1.pom
in libjcabi-log-java
Found /usr/share/maven-repo/com/jcabi/jcabi-log/0.19.0/jcabi-log-0.19.0.pom
in libjcabi-log-java
Found /usr/share/maven-repo/com/jcabi/jcabi-log/debian/jcabi-log-debian.pom
in libjcabi-log-java
\end{verbatim}
\normalsize
\item \textgreater dpkg --search /usr/share/java/jcabi-log.jar
dpkg failed to execute successfully
\item \textgreater apt-file search /usr/share/java/jcabi-log.jar
Found libjcabi-log-java
[error] Package libjcabi-log-java does not contain Maven dependency
com.jcabi:jcabi-log:jar:0.17 but there seem to be a match
If the package contains already Maven artifacts but the names don't match,
try to enter a substitution rule of the form
s/groupId/newGroupId/ s/artifactId/newArtifactId/ jar s/version/newVersion/ here:
>
\end{itemize}
\end{description}
<<MakeMaven5>>=
if [ -w debian/maven.rules ]
then
echo "#[groupId] [artifactId] [type] [version] [classifier] [scope]" \
>> debian/maven.rules
fi
ShowMaven
<<MakeMaven6>>
@
\section{Maven-Dateien bearbeiten}
\label{sec:MavenDateienBearbeiten}
Pakete, die mit \textit{Maven (mvn)} gebaut werden, benötigen dazu
weitere Dateien im Verzeichnis \textit{debian/}.
Diese werden im Folgenden aufgelistet.
Die folgenden Daten wurden in der \textit{maven-chroot} erstellt:
\begin{itemize}
\item <PackName.poms>
\item maven.cleanIgnoreRules
\item maven.properties
\item maven.rules
\item maven.ignoreRules
\item maven.publishedRules
\end{itemize}
Nun können auch diese Dateien angezeigt und editiert werden.
<<ShowMaven>>=
function ShowMaven {
# Called by DisplayDebianFiles MakeMaven
mavenl=$(ls ${GitPath}/debian/ | grep 'maven')
for element in ${mavenl[*]}
do
nano --linenumbers --mouse --softwrap debian/${element}
done
pomsl=$(ls ${GitPath}/debian/ | grep ${PackName})
for element in ${pomsl[*]}
do
nano --linenumbers --mouse --softwrap debian/${element}
done
}
<<AskChrootPath>>
@
<<MakeMaven6>>=
# Patch for mh_make bug
str4standardsversion="4.7.1"
cd ${GitPath}/debian/
less --LINE-NUMBERS control
sed --in-place --expression=\
"s/Standards-Version: 4.4.1/Standards-Version: ${str4standardsversion}/" \
control
# 'a' means append. The string after the 'a' will be appended
# to the sting before the 'a'.
sed --in-place \
--expression="/Standards-Version: ${str4standardsversion}/ \
a Rules-Requires-Root: no" \
control
sed --in-place --expression=\
"s/debhelper-compat (=12)/debhelper-compat ${str4versiondebhelpers}/" \
control
cd ${GitPath}
whiptail --title "Check debian/control" \
--msgbox "Please check the control file another time!" 15 60
less --LINE-NUMBERS ${GitPath}/debian/control
}
<<MavenPlugin>>
@
\subsection{maven.rules}
Diese Datei ist wie folgt aufgebaut:
<<maven-rules.header>>=
#[groupID] [artifactID] [type] [version] [classifier] [scope]
@
\subsection{maven.ignoreRules}
Diese Datei ist wie die Datei \textit{maven.rules} aufgebaut.
<<maven-ignoreRules.header>>=
#[groupID] [artifactID] [type] [version] [classifier] [scope]
@
Artefakte, die in der Datei \textit{maven.rules} aufgenommen werden,
sind hier gegebenenfalls zu löschen
\subsection{maven.properties}
\label{subsec:MavenProperties}
Die Datei \textit{maven.properties} kann verwendet werden, um Werte von
Variablen innerhalb der \textit{pom.xml}-Dateien zu überschreiben. Der
häufigste Anwendungsfall ist die Deaktivierung oder Aktivierung der Tests
mit \textit{maven.test.skip=true}
Weitere Optionen sind die Änderung der Quell- (\textit{maven.compiler.source=8})
bzw. Zielebene (\textit{maven.compiler.target=8}). Dabei bezieht sich der
Wert (hier: \textit{8}) auf die java-Mindestversion. Dieser Eintrag wird
besonders dann benötigt, wenn beim Kompilieren eine Meldung wie die
folgende ausgegeben wird: \textit{use -source 8 or higher to enable \dots}.
Außerdem kann hier die verwendete Dateikodierung
(\textit{project.build.sourceEncoding\-=UTF-8}) eingestellt werden.
<<maven.properties>>=
# Include here properties to pass to Maven during the build.
# For example:
# maven.test.skip=true
# project.build.sourceEncoding=UTF-8
# maven.compiler.source=8
# maven.compiler.target=8
# To skip test - missing dependencies
maven.test.skip=true
@
Häufig werden die Tests deaktiviert, um nicht zusätzliche Abhängigkeiten
paketieren zu müssen. In diesen Fällen sind diese Abhängigkeiten auch in
der Datei \textit{pom.xml} mit einem Kommentarzeichen zu versehen oder zu
entfernen.
Solche Änderungen am Upstream-Code können mit dem Programmskript
vorgenommen werden (Kapitel~\ref{chap:Aenderungen_am_Upstream_Code_vornehmen},
Seite~\pageref{chap:Aenderungen_am_Upstream_Code_vornehmen}).
\subsection{Paketname.poms}
In der Datei \textit{<Paketname>.poms} werden die Optionen zu den jeweiligen
\textit{pom.xml}-Dateien hinterlegt.
Die Datei enthält dann 2 Spalten. In der ersten Spalte steht die pom.xml
mit dem dazugehörigen Pfad und in der zweiten Spalte die dazugehörigen
Optionen, wie z.B.
\begin{verbatim}
# List of POM files for the package
# Format of this file is:
# <path to pom file> [option]*
# where option can be:
# --ignore: ignore this POM and its artifact if any
# --ignore-pom: don't install the POM. To use on POM files that are
# created temporarily for certain artifacts such as Javadoc jars.
# [mh_install, mh_installpoms]
# --no-parent: remove the <parent> tag from the POM
# --package=<package>: an alternative package to use when installing
# this POM and its artifact
# --has-package-version: to indicate that the original version of
# the POM is the same as the upstream part of the version for the
# package.
# --keep-elements=<elem1,elem2>: a list of XML elements to keep in the
# POM during a clean operation with mh_cleanpom or mh_installpom
# --artifact=<path>: path to the build artifact associated with this
# POM, it will be installed when using the command mh_install.
# [mh_install]
# --java-lib: install the jar into /usr/share/java to comply with
# Debian packaging guidelines
# --usj-name=<name>: name to use when installing the library in
# /usr/share/java
# --usj-version=<version>: version to use when installing the library
# in /usr/share/java
# --no-usj-versionless: don't install the versionless link in
# /usr/share/java
# --dest-jar=<path>: the destination for the real jar.
# It will be installed with mh_install. [mh_install]
# --classifier=<classifier>: Optional, the classifier for the jar.
# Empty by default.
# --site-xml=<location>: Optional, the location for site.xml if it
# needsto be installed.
# Empty by default. [mh_install]
#
pom.xml --no-parent --has-package-version
\end{verbatim}
Dies bedeutet, dass das <parent>-Tag beim Bauen aus der POM entfernt
wird. Die Option \textit{--has-package-version} gibt an, dass die
Originalversion der POM dieselbe sei, wie der Upstream-Teil der
Paketversion.
\subsection{README.source}
\label{subsec:MavenReadmeSource}
\begin{verbatim}
Information about jcabi-aspects
------------------------------
This package was debianized using the mh_make command
from the maven-debian-helper package.
The build system uses Maven but prevents it from downloading
anything from the Internet, making the build compliant with
the Debian policy.
\end{verbatim}
\section{\textit{debian/rules} - Ergänzungen für \texttt{Java}-Pakete mit
\textit{Maven}}
\label{sec:Rules4MavenDH}
In der Funktion \textit{Rules4MavenDH} wird die Datei \textit{debian/rules}
um die Angabe des Build-Systems ergänzt.
<<Rules4MavenDH>>=
function Rules4MavenDH {
# Called by DebianRulesTemplates
sed --in-place \
--expression="s/dh \$@/dh \$@ --buildsystem=maven/" \
${GitPath}/debian/rules
}
<<ShowMaven>>
@
\chapter{Web-Extension-Plugin}
\label{chap:WebextPlugin}
Das nachstehend dargestellte Plugin erfüllt die besonderen Anforderungen
beim Bauen von \texttt{Mozilla}-Erweiterungen als \texttt{Debian}-Pakete
(Kapitel~\ref{chap:WebextBauen}, Seite~\pageref{chap:WebextBauen}).
\section{Kopf des Webext-Plugins}
Der Kopfteil des Plugins enthält Angaben zu den Urhebern und der Lizenz.
Außerdem ist vermerkt, welche \texttt{Debian}-Pakete für den Ablauf des
Programmskriptes installiert sein müssen.
<<build-gbp-webext-plugin.sh>>=
#!/usr/bin/bash
# Copyright 2020-2025 Mechtilde and Michael Stehmann <mechtilde@debian.org>
# version 0.9.9
# webext plugin for build-gbp.sh
# 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
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# 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, write to the Free Software
# Foundation, Inc., 31 Milk Street, #960789 Boston,
# MA 02196, USA.
<<IdentifyWebextId>>
@
\section{Erstellen der \textit{webext*.*}-Dateien in \textit{debian/}}
\subsection{Ermittlung des Namens der \textit{*.xpi}-Datei}
Die zu paketierende Erweiterung muss unter dem Namen der sich aus der Bezeichnung (id) in
der Datei \textit{manifest.json} und der Endung \textit{.xpi} zusammensetzt,
abgelegt werden.
Die Bezeichnung wird daher wie folgt ermittelt.
<<IdentifyWebextId>>=
function IdentifyWebextId {
# Called by WebextRulesDH WebextInstall
if [ -z ${webextID} ] && [ -f ${GitPath}/manifest.json ]
then
webextID=$(grep '"id":' ${GitPath}/manifest.json)
webextID=$(echo ${webextID} | sed --expression='s/^\"id\": \"//')
webextID=$(echo ${webextID} | sed --expression='s/\",\s*//')
echo -e "Notice from Webext-Plugin: WebextID = "${webextID} >> ${log}
fi
if [ -z ${webextID} ]
then
webextID="PLEASE_REPLACE_WITH_ID"
whiptail --title "ID not found" \
--msgbox "Didn't find ID or manifest.json in ${GitPath}" 15 60
fi
}
<<webext-rules>>
@
\subsection{\textit{debian/rules} - Ergänzungen für \texttt{Mozilla}-AddOns}
\label{subsec:webextrules}
Bei der \textit{debian/rules}-Datei für die Webextension ist es sinnvoll,
die zu installierenden Verzeichnisse bzw. Dateien dort aufzuführen und
einer Variablen zuzuweisen.Dies erfolgt nach dem Muster
\textit{<Package>\_FILES = <List of files to include>}
Die Liste \textit{<Package>\_FILES} wird vom Plugin-Skript automatisch
erstellt. Sie ist auf Vollständigkeit und Richtigkeit zu überrpüfen. Die
auszuschließenden Dateien sind manuell einzupflegen.
Da die Anlage der Datei \textit{debian/rules} einmalig erfolgt, sind beim
Paketieren neuer Versionen die beiden Listen sorgfältig zu prüfen und
gegebenenfalls zu anzupassen.
<<webext-rules>>=
function WebextRules {
# Called by DebianRulesTemplate
# These strings will be added to str4rules
Package=$(echo ${SourceName} | tr "a-z" "A-Z")
echo -e ${Package}"_FILES = \\" >> ${GitPath}/debian/rules
PackageL=$(ls ${GitPath})
PackageA=(${PackageL})
for element in ${PackageA[*]}
do
if [ "${element}" != "debian" ]
then
echo -e ${element}" \\" >> ${GitPath}/debian/rules
fi
done
echo "\$(NULL)" >> ${GitPath}/debian/rules
<<webext-rules5>>
@
<<webext-rules5>>=
echo -e "\n Uncomment the following lines \n"
echo "if there are files to exclude and add them."
echo -e "\n# "${Package}"_FILES_EXCLUDE = \\" \
>> ${GitPath}/debian/rules
echo -e "# \$(NULL)\n" >> ${GitPath}/debian/rules
}
<<webext-rules-dh>>
@
Die folgenden Zeilen werden vom Programmskript der Variablen
\textit{str4rulesdh} hinzugefügt.
<<webext-rules-dh>>=
function WebextRulesDH {
# Called by DebianRulesTemplate
IdentifyWebextId
DHCleanStr="override_dh_clean:\n\tdh_clean\n\trm -rf debian/build\n"
DHAutoBuildIndepStr1="override_dh_auto_build-indep:"
DHAutoBuildIndepStr2="\tmkdir \$(CURDIR)/debian/build && \\"
Str3B="\tzip --recurse-paths "
DHAutoBuildIndepStr3=${Str3B}"\$(CURDIR)/debian/build/"${webextID}".xpi \\"
DHAutoBuildIndepStr4="\t \$(${Package}_FILES) \\"
DHAutoBuildIndepStr5="# \t --exclude \$(${Package}_FILES_EXCLUDE)"
DHAutoBuildIndepStr6="\tdh_auto_build\n"
echo -e ${DHCleanStr} >> ${GitPath}/debian/rules
echo -e ${DHAutoBuildIndepStr1} >> ${GitPath}/debian/rules
echo -e ${DHAutoBuildIndepStr2} >> ${GitPath}/debian/rules
echo -e ${DHAutoBuildIndepStr3} >> ${GitPath}/debian/rules
echo -e "${DHAutoBuildIndepStr4}" >> ${GitPath}/debian/rules
echo -e "${DHAutoBuildIndepStr5}" >> ${GitPath}/debian/rules
echo -e ${DHAutoBuildIndepStr6} >> ${GitPath}/debian/rules
}
<<WebextControl>>
@
\subsection{\textit{debian/control} - Ergänzungen für \texttt{Mozilla}-AddOns}
\label{subsec:WebextControl}
<<WebextControl>>=
function WebextControl {
# Called by DebianControlTemplate
# TB specific, for FF 'web'
sed --in-place \
--expression="s/Section: /Section: mail/" ${GitPath}/debian/control
# 'a' means append. The string after the 'a' will be appended
# to the sting before the 'a'.
# @X escapes the space at the beginning of the appended line.
# It will be removed later.
sed --in-place \
--expression="/Build-Depends: debhelper-compat ${str4versiondebhelpers}/ \
a @X , zip" \
${GitPath}/debian/control
# TB specific, for FF 'firefox-esr (>= 91.4)'
sed --in-place \
--expression="/Depends: \${misc:Depends}/ \
a @X , thunderbird (>= 1:128.3)" \
${GitPath}/debian/control
sed --in-place --expression="s/^@X//g" ${GitPath}/debian/control
}
<<WebextInstall>>
@
\subsection{\textit{debian/webext-*.install}}
\label{subsec:webext.install}
Für \texttt{Mozilla}-Erweiterungen ist zwingend der folgede Eintrag
erforderlich:
\begin{verbatim}
debian/build/<manifest-id>.xpi /usr/share/webext
\end{verbatim}
<<WebextInstall>>=
function WebextInstall {
# Called by DisplayDebianFiles
IdentifyWebextId
InstallStr="debian/build/"${webextID}".xpi\tusr/share/webext"
echo -e ${InstallStr} >> ${GitPath}/debian/${PackName}.install
}
<<WebextDocs>>
@
\subsection{\textit{debian/webext-*.docs}}
\label{subsec:webext.docs}
<<WebextDocs>>=
function WebextDocs {
# Called by
echo "Still empty"
}
<<WebextLinks>>
@
\subsection{\textit{debian/webext-links-tb}}
\label{subsec:webext.links-tb}
\scriptsize
\begin{verbatim}
\# Source Target
/usr/share/webext/<manifest.id>.xpi /usr/lib/thunderbird/extensions/<manifest.id>.xpi
\end{verbatim}
\normalsize
<<WebextLinks>>=
function WebextLinksTB {
# Called by DisplayDebianFiles
IdentifyWebextId
SourceStr="/usr/share/webext/"${webextID}".xpi\t"
TargetStr="/usr/lib/thunderbird/extensions/"${webextID}".xpi"
echo -e ${SourceStr}${TargetStr} >> \
${GitPath}/debian/${PackName}.links
}
<<webext-plugin-end>>
@
\subsection{Meldung: Webext-Plugin geladen}
\label{subsec:WebextPluginLoaded}
Nun kommt der Schluss dieses Webext-Plugins.
<<webext-plugin-end>>=
whiptail --title "webext plugin found" \
--msgbox "build-gbp-webext-plugin.sh was loaded." 15 60
# This is the end, my friend
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/WebextPluginFound.png}
\caption{Webext-Plugin wurde geladen}
\end{figure}
\chapter{\texttt{Python}-Plugin}
\label{chap:PythonPlugin}
Das nachstehend dargestellte Plugin erfüllt die besonderen Anforderungen
beim Bauen von \texttt{Paketen}, die in der Programmiersprache
\texttt{Python} geschreiben sind.
(Kapitel~\ref{chap:PythonBauen}, Seite~\pageref{chap:PythonBauen}).
<<build-gbp-python-plugin.sh>>=
#!/usr/bin/bash
# Copyright 2020-2025 Mechtilde and Michael Stehmann <mechtilde@debian.org>
# version 0.9.9
# python plugin for build-gbp.sh
# 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
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# 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, write to the Free Software
# Foundation, Inc., 31 Milk Street, #960789 Boston,
# MA 02196, USA.
<<python-rulesDH>>
@
\subsection{Meldung: Python-Plugin geladen}
\label{subsec:PythonPluginLoaded}
Nun kommt der Schluss dieses Plugin-Plugins. Es gibt bekannt, dass es
geladen wurde.
<<IdentifyPythonId>>=
whiptail --title "python plugin found" \
--msgbox "build-gbp-python-plugin.sh was loaded." 15 60
echo "build-gbp-python-plugin.sh was loaded." >> ${log}
<<python-plugin-end>>
@
\begin{figure}[!h]
\centering
\includegraphics[width=25em,height=30ex]{Pictures/PythonPluginFound.png}
\caption{Python-Plugin geladen}
\end{figure}
\section{Anpassungen für \texttt{Python}-Pakete}
\label{sec:PythonRules}
Hier werden die Besonderheiten für die \texttt{Python}-Paketierung in der
Datei \textit{debian/rules} abgebildet.
<<python-rules>>=
function PythonRules {
# Called by DebianRulesTemplate
# These strings will be added to str4rules
echo -e "export PYBUILD_NAME="${SourceName}"\n" >> ${GitPath}/Debian/rules
echo -e "export PYBUILD_SYSTEM=distutils\n" >> ${GitPath}/Debian/rules
}
<<python-control>>
@
<<python-rulesDH>>=
function PythonRulesDH {
# Called by DebianRulesTemplate
sed --in-place \
--expression="s/dh \$@/dh \$@ --with python3 --buildsystem=pybuild/" \
${GitPath}/debian/rules
}
<<python-rules>>
@
\section{\textit{debian/control} - Ergänzung für \texttt{Python}-Pakete}
\label{sec:PythonControl}
Hier werden die Besonderheiten für die \texttt{Python}-Paketierung in der
Datei \textit{debian/control} abgebildet.
<<python-control>>=
function PythonControl {
# Called by DebianControlTemplate
# Recent Python version
PythonVersion=$(py3versions --installed)
sed --in-place \
--expression="s/Section:/Section: python/" ${GitPath}/debian/control
sed --in-place \
--expression="/Build-Depends: debhelper-compat ${str4versiondebhelpers}/ \
a , dh-python@X , python3-all@X , python3-setuptools@X\
#X-Python3-Version: >=${PythonVersion}" ${GitPath}/debian/control
<<python-control1>>
@
Für Tests werden auch die Pakete \textit{python3-distutils} und
\textit{python3-distutils-extra} als Build-Abhängigkeit benötigt.
<<python-control1>>=
sed --in-place \
--expression="/Depends: \${misc:Depends}/ \
a @X , \${python3:Depends}" \
${GitPath}/debian/control
sed --in-place --expression="s/@X/\n/g" ${GitPath}/debian/control
}
<<IdentifyPythonId>>
@
<<python-plugin-end>>=
# This is the end, my friend
@
\chapter{Skripte}
\section{Anlage eines Projektes im Java-Team}
\label{sec:CreateJavaTeam}
Die Anlage eines Projektes im Java-Team, einschließlich der Erlangung
eines Zugangstokens\index{Zugangstoken}, welches der Variablen
\textit{SALSA\_TOKEN} im nachfolgenden Skript zuzuweisen ist, wird in
Kapitel~\ref{sec:JavaTeam} (Seite~\pageref{sec:JavaTeam}) beschrieben.
<<setup-salsa-repository>>=
#!/usr/bin/bash
#
# Setup a new Git repository on Salsa
#
# This script uses the GitLab REST API and requires an access token.
# The token is obtained from the GitLab profile page -> Access Tokens
# (https://salsa.debian.org/profile/personal_access_tokens).
# The token is in the environment variable SALSA_TOKEN
# or has to be sourced from the ~/.salsarc file and assigned
# to the SALSA_TOKEN variable:
#
# This is the Token for jollyday-java
# SALSA_TOKEN="KyuZRyWTTxfddcGcyphN"
#
set -eu
<<setup-salsa-repository3>>
@
Das Paket \textit{jq} muss auf der lokalen Maschine installiert werden.
<<setup-salsa-repository3>>=
if ! which jq >/dev/null
then
echo "You need to apt install jq" >&2
exit 1
fi
<<setup-salsa-repository5>>
@
Der Aufruf erfolgt mit der Angabe des \textit{SourceName}.
<<setup-salsa-repository5>>=
if [ -z "$1" ]; then
echo "Usage: ./setup-salsa-repository <packagename>"
exit 1;
fi
check_return_code() {
if [ $? -ne 0 ]; then
echo
echo "Something went wrong!"
exit 1
fi
}
test -n "$SALSA_TOKEN" || . ~/.salsarc
PACKAGE=$1
SALSA_URL="https://salsa.debian.org/api/v4"
SALSA_GROUP=java-team
SALSA_GROUP_ID=2588
<<setup-salsa-repository8>>
@
Nun wird das Repositorium auf \textit{salsa.debian.org} angelegt.
<<setup-salsa-repository8>>=
# ----------------------------------------------------------------------
echo "Creating the ${PACKAGE} repository..."
RESPONSE=$(curl -s "$SALSA_URL/projects?private_token=$SALSA_TOKEN" \
--data "path=$PACKAGE&namespace_id=\
$SALSA_GROUP_ID&visibility=public&issues_enabled=false&snippets_enabled=false&wiki_enable\
d=false&jobs_enabled=false&printing_merge_request_link_enabled=false")
echo $RESPONSE | jq --exit-status .id > /dev/null
check_return_code
PROJECT_ID=$(echo $RESPONSE | jq '.id')
<<setup-salsa-repository10>>
@
Nun wird das ausstehende BTS-Tag-Hook konfiguriert.
<<setup-salsa-repository10>>=
# ----------------------------------------------------------------------
echo "Configuring the BTS tag pending hook..."
TAGPENDING_URL="https://webhook.salsa.debian.org/tagpending/$PACKAGE"
curl --silent --output /dev/null -XPOST --header "PRIVATE-TOKEN: $SALSA_TOKEN" \
$SALSA_URL/projects/$PROJECT_ID/hooks \
--data "url=$TAGPENDING_URL&push_events=1&enable_ssl_verification=1"
check_return_code
# ----------------------------------------------------------------------
echo "Configuring the KGB hook..."
KGB_URL="http://kgb.debian.net:9418/webhook/?channel=debian-java\
%26network=oftc%26private=1%26use_color=1%26use_irc_notices=1%26squash_threshold=20"
curl --silent --output /dev/null -XPOST --header "PRIVATE-TOKEN: $SALSA_TOKEN" \
$SALSA_URL/projects/$PROJECT_ID/hooks \
--data "url=\
$KGB_URL&push_events=yes&issues_events=yes&\
merge_requests_events=yes&tag_push_events=\
yes¬e_events=yes&job_events=yes&pipeline_events=yes&\
wiki_events=yes&enable_ssl_verification=yes"
check_return_code
# ----------------------------------------------------------------------
echo "Configuring email notification on push..."
curl --silent --output /dev/null -XPUT --header "PRIVATE-TOKEN: $SALSA_TOKEN" \
$SALSA_URL/projects/$PROJECT_ID/services/emails-on-push \
--data "recipients=pkg-java-commits@lists.alioth.debian.org \
dispatch@tracker.debian.org"
check_return_code
# ----------------------------------------------------------------------
echo
echo "Done! The repository is located at ${SALSA_URL%/api*}/$SALSA_GROUP/$PACKAGE"
@
\section{Skript zum Extrahieren der Dokumentation im PDF- und Epub-Format}
\label{sec:CreateBook}
Dieses Skript dient dazu, lesbare Dokumente zu erstellen.
\subsection{Abhängigkeiten}
\label{subsec:BookDependencies}
Folgende Pakete müssen installiert sein, damit das Skript lauffähig ist.
\begin{itemize}
\item noweb
\item texlive
\item texlive-latex-extra
\item texlive-extra-utils
\item biber
\item texlive-lang-japanese (für die Datei ifptex.sty)
\item tidy (für das EBook)
\item texlive-lang-german - für die deutschsprachige Dokumentation
\item texlive-lang-english - für die englische Übersetzung
\item texlive-lang-french - für die französische Übersetzung
\end{itemize}
\subsection{Ablauf}
Zunächst werden mit dem Skript aus den *.nw-Dokumenten *.tex-Dokumen\-te
erzeugt.
Das folgende Skript kann mit
\begin{verbatim}
notangle -Rcreate-book.sh Part6.nw > create-book.sh &&
t=$(date +%c)
echo "#generated on $t" >> create-book.sh
chmod ugo+x create-book.sh
\end{verbatim}
aus der Datei \textit{Part6.nw} extrahiert werden.
<<create-book.sh>>=
#!/usr/bin/bash
#set -e
BasePath=$(pwd)
LANGS="en_US"
noweave -index -delay BuildWithGBP.nw > BuildWithGBP.tex # contains preamble
noweave -index -delay Title.nw > GBP-Title.tex
noweave -index -delay Part1.nw > GBP-Part1.tex
noweave -index -delay Part2.nw > GBP-Part2.tex
noweave -index -delay Part3.nw > GBP-Part3.tex
noweave -index -delay Part4.nw > GBP-Part4.tex
noweave -index -delay Part5.nw > GBP-Part5.tex
noweave -index -delay Part6.nw > GBP-Part6.tex
#noweave -filter l2h -index -html BuildWithGBP.nw | htmltoc > BuildWithGBP.html
<<create-book.sh1>>
@
Diese wird dann zu *.pdf- und *.epub-Dokumente umgewandelt. Das
Stichwortverzeichnis darf nur einmal erstellt werden und zwar nach der
ersten Ausführung von \textit{pdflatex}. Mehrfache Ausführung erzeugt
zu hohe Seitenzahlen.
<<create-book.sh1>>=
#if [ -f BuildWithGBP.aux ]
#then
#rm BuildWithGBP.aux
#fi
for ((i=4; i>0; i--))
do
echo $i
pdflatex -shell-escape BuildWithGBP.tex
# Create Index only one time
# Otherwise you get wrong page numbers
if [ i=4 ]
then
makeindex BuildWithGBP
fi
# Create Bibliography
biber BuildWithGBP
done
<<create-book.sh5>>
@
Das EPUB-Format ist ein gezipptes XHTML, angereichtert mit Metadaten.
<<create-book.sh5>>=
# tex4ebook -f mobi BuildWithGBP.tex
# tex4ebook -f epub BuildWithGBP.tex ../
if ls | grep --quiet '\.html'
then
rm *.html
fi
<<create-book.sh6>>
@
<<create-book.sh6>>=
# For the first translation
for lang in ${LANGS}
do
cd translation/${lang}/target
#sed --in-place --expression 's/^%+-.*//' GBP-Part3.tex
sed --in-place --expression ':a;N;$!ba;s/_ \n\n%/_%/' GBP-Part3.tex
<<create-book.sh7>>
@
Mit dem regülären Ausdruck werden folgende Anpassungen in der Datei
\textit{GBP-Part3.tex} vorgenommen.
% Es ist zu prüfen, wie VOR einer einmal oder mehrfach vorkommende Gruppe
% von Leerzeichen ein einfacher, gegebenenfalls weicher Zeilenumruch
% eingefügt werden kann.
% Es ist auch zu prüfen, wie dies in die Segmentierungsregen eingefügt
% werden kann
% vielleicht kann ja auch ein Script darüber laufen, dass für die
% Code-Chunks ein Absatzende Zeichen einfügt, damit \textit{OmegaT} dies
% selber korekt setzen kann.
Das \textit{\$-Zeichen} steht für das Zeilenende.
<<create-book.sh7>>=
if [ -f BuildWithGBP.aux ]
then
rm BuildWithGBP.aux
fi
for ((i=4; i>0; i--))
do
pdflatex -shell-escape ./BuildWithGBP.tex
if [ i=4 ]
then
makeindex BuildWithGBP
fi
# Create Bibliography
biber BuildWithGBP
done
cd ${BasePath}
done
# Remove auxillary *.html files which are needed for epub
#if ls | grep --quiet '\.html'
#then
# rm *.html
#fi
@
\section{Skript zum Extrahieren der Skripte}
\label{sec:CreateBuildscript}
Das folgende Skript kann mit
\begin{verbatim}
notangle -Rcreate-buildscript.sh Part6.nw > create-buildscript.sh &&
t=$(date +%c)
echo "#generated on $t" >> create-buildscript.sh
chmod ugo+x create-buildscript.sh
\end{verbatim}
aus der Datei \textit{Part6.nw} extrahiert werden.
<<build-script>>=
#!/bin/bash
set -e
scripts="
build-gbp.sh
build-gbp-java-plugin.sh
build-gbp-maven-plugin.sh
build-gbp-webext-plugin.sh
build-gbp-python-plugin.sh
"
cat Title.nw Part1.nw Part2.nw Part3.nw Part4.nw Part5.nw Part6.nw > BuildWithGBPg.nw
notangle -Rbuild-gbp.sh BuildWithGBPg.nw > build-gbp.sh &&
#t=$(date +%c)
# For building reproducible
t=$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" -R)
function build_script()
{
notangle -R"$script" BuildWithGBPg.nw > "$script"
sed --in-place \
--expression='s/This is the end, my friend[[:cntrl:]]*/This is the end, my friend/' \
"$1"
echo "#generated on $t" >> "$1"
chmod ugo+x "$1"
bash -n "$1"
}
for script in $scripts; do
build_script "$script"
done
# Remove auxillary file BuildWithGBPg.nw
rm BuildWithGBPg.nw
@
Mittels des Befehls \textit{noweave}\index{noweave} werden die
deutschsprachigen \textit{*.nw}-Dateien in
\textit{*.tex}-Dateien\index{\TeX{}-Dateien} umgewandelt.
<<CreateTexFromNW>>=
function CreateTexFromNW {
# Called by TaskSelect
# Create *.tex files from *.nw files
cd ${SRCDIR}
noweave -index -delay BuildWithGBP.nw > BuildWithGBP.tex # contains preamble
noweave -index -delay Title.nw > GBP-Title.tex
noweave -index -delay Part1.nw > GBP-Part1.tex
noweave -index -delay Part2.nw > GBP-Part2.tex
noweave -index -delay Part3.nw > GBP-Part3.tex
noweave -index -delay Part4.nw > GBP-Part4.tex
noweave -index -delay Part5.nw > GBP-Part5.tex
noweave -index -delay Part6.nw > GBP-Part6.tex
<<CreateTexFromNW1>>
@
Eine eventuell vorhandene Datei \textit{BuildWithGBP\_html.tex} wird
entfernt.
<<CreateTexFromNW1>>=
if [ -f BuildWithGBP_html.tex ]
then
rm BuildWithGBP_html.tex
fi
}
@
\section{\textit{gitlab-ci.yml} für die Salsa-CI}
\label{sec:gitlab-ci.yml}
<<gitlab-ci.yml>>=
variables:
DEPS: file make texlive noweb texlive-bibtex-extra texlive-lang-german
texlive-lang-japanese texlive-latex-extra texlive-binaries
texlive-extra-utils biber tidy texlive-lang-english
stages:
- build
- deploy
build:
stage: build
image: debian:sid
before_script:
- apt -y update
- apt -y install $DEPS
script:
- make
artifacts:
paths:
- '*.pdf'
- '*.epub'
- 'build-gbp-python-plugin.sh'
- 'build-gbp-maven-plugin.sh'
- 'build-gbp-webext-plugin.sh'
- 'build-gbp.sh'
- 'build-gbp-java-plugin.sh'
- 'translation/en_US/target/*.pdf'
pages:
stage: deploy
image: debian:sid
needs:
- build
script:
- mkdir -p public/de
- mkdir -p public/en_US
- cp *.pdf *.epub build-gbp*.sh public/
- cp *.tex public/de/
- cp translation/en_US/target/*.pdf public/en_US/
artifacts:
paths:
- public
only:
- master
@
|