File: ChangeLog.1

package info (click to toggle)
tla-buildpackage 0.9.14
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 392 kB
  • ctags: 46
  • sloc: python: 738; sh: 62; makefile: 50
file content (1067 lines) | stat: -rw-r--r-- 25,486 bytes parent folder | download | duplicates (6)
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
# do not edit -- automatically generated by arch changelog
# arch-tag: automatic-ChangeLog--jgoerzen@complete.org--projects/tla-buildpackage--head--1.0
#

2004-12-10 21:47:15 GMT	John Goerzen <jgoerzen@complete.org>	patch-62

    Summary:
      Minor doc update
    Revision:
      tla-buildpackage--head--1.0--patch-62


    modified files:
     ChangeLog debian/changelog docs/chapters/intro.sgml


2004-12-10 21:45:47 GMT	John Goerzen <jgoerzen@complete.org>	patch-61

    Summary:
      Fixed an import error case
    Revision:
      tla-buildpackage--head--1.0--patch-61


    modified files:
     ChangeLog debian/changelog tbppy/tbpimport.py


2004-04-21 19:04:42 GMT	John Goerzen <jgoerzen@complete.org>	patch-60

    Summary:
      Added xpdf-utils to build-dep-indep.
    Revision:
      tla-buildpackage--head--1.0--patch-60


    modified files:
     ChangeLog debian/changelog debian/control


2004-04-05 13:15:45 GMT	John Goerzen <jgoerzen@complete.org>	patch-59

    Summary:
      Removed extra 'with' in descrption.
    Revision:
      tla-buildpackage--head--1.0--patch-59


    modified files:
     ChangeLog debian/control


2004-03-03 03:26:34 GMT	John Goerzen <jgoerzen@complete.org>	patch-58

    Summary:
      Fixed several bugs
    Revision:
      tla-buildpackage--head--1.0--patch-58

    tla-buildpackage (0.9.6) unstable; urgency=low
    
      * Fixed a follow-up bug that was introduced in 0.9.5.  This makes
          multiline fields work.  Closes: #222912.
            * Ignore .arch-inventory files.  Closes: #228464.
              * Fixed an error in the tbp-importdsc manpage.  Closes: #222925.
    

    modified files:
     ChangeLog debian/changelog docs/mansgml/tbp-importorig.sgml
     tbppy/tbpimport.py tla-buildpackage


2004-02-27 15:23:48 GMT	John Goerzen <jgoerzen@complete.org>	patch-57

    Summary:
      Noted new documentation system
    Revision:
      tla-buildpackage--head--1.0--patch-57


    new files:
     docs/SConstruct

    removed files:
     docs/Makefile

    modified files:
     ChangeLog debian/changelog debian/control debian/rules


2004-02-26 22:44:58 GMT	John Goerzen <jgoerzen@complete.org>	patch-56

    Summary:
      Fixed problem with parsing some .dsc files
    Revision:
      tla-buildpackage--head--1.0--patch-56

      * Minor bugfix to properly handle multi-line fields with text on the
          first line.
    

    modified files:
     ChangeLog debian/changelog tbppy/tbpimport.py


2003-12-16 22:38:14 GMT	John Goerzen <jgoerzen@complete.org>	patch-55

    Summary:
      Fixes to build scripts
    Revision:
      tla-buildpackage--head--1.0--patch-55

      * Update build-depend to tla-load-dirs 1.0.11 -- ensuring that
        tla-buildpackage users get the tla "candidate" bugfix in that version.
      * Build-depend on debhelper 4.1.80 or later so that the tla ChangeLog can be
        included in the .deb.  Modify dh_installchangelogs to include it as
        "upstream" log.
    

    modified files:
     ChangeLog debian/changelog debian/control debian/rules


2003-10-22 21:06:20 GMT	John Goerzen <jgoerzen@complete.org>	patch-54

    Summary:
      Noted new location of configs in tla repo
    Revision:
      tla-buildpackage--head--1.0--patch-54

    Noted new location of configs in tla repo
    

    modified files:
     ChangeLog docs/mansgml/com.author.sgml


2003-10-22 19:00:43 GMT	John Goerzen <jgoerzen@complete.org>	patch-53

    Summary:
      Documented tla 1.1 support
    Revision:
      tla-buildpackage--head--1.0--patch-53

    Documented tla 1.1 support
    

    modified files:
     ChangeLog debian/changelog docs/chapters/intro.sgml


2003-10-22 18:58:08 GMT	John Goerzen <jgoerzen@complete.org>	patch-52

    Summary:
      Bumped dep to next version
    Revision:
      tla-buildpackage--head--1.0--patch-52

    Bumped dep to next version
    

    modified files:
     ChangeLog debian/control


2003-10-22 18:48:49 GMT	John Goerzen <jgoerzen@complete.org>	patch-51

    Summary:
      Fixed missing import
    Revision:
      tla-buildpackage--head--1.0--patch-51

    Fixed missing import
    

    modified files:
     ChangeLog tbppy/tbpimport.py


2003-10-22 18:40:44 GMT	John Goerzen <jgoerzen@complete.org>	patch-50

    Summary:
      Coded tla 1.1 compatibility
    Revision:
      tla-buildpackage--head--1.0--patch-50

    Coded tla 1.1 compatibility
    

    modified files:
     ChangeLog debian/changelog debian/control tbp-initarchive
     tbppy/configs.py tbppy/tbpimport.py


2003-10-22 03:53:21 GMT	John Goerzen <jgoerzen@complete.org>	patch-49

    Summary:
      Added logic to ignore error from tla replay during import of dsc.
    Revision:
      tla-buildpackage--head--1.0--patch-49

    Added logic to ignore error from tla replay during import of dsc.
    

    modified files:
     ./ChangeLog ./debian/changelog ./tbppy/tbpimport.py


2003-10-22 01:02:56 GMT	John Goerzen <jgoerzen@complete.org>	patch-48

    Summary:
      Now generate and document latest files for configs.
    Revision:
      tla-buildpackage--head--1.0--patch-48

    Now generate and document latest files for configs.
    

    modified files:
     ./ChangeLog ./debian/changelog ./docs/chapters/regular.sgml
     ./tbp-markdeb ./tbppy/configs.py ./tbppy/tbpimport.py


2003-10-22 00:35:56 GMT	John Goerzen <jgoerzen@complete.org>	patch-47

    Summary:
      Fixed spelling of Suite
    Revision:
      tla-buildpackage--head--1.0--patch-47

    Fixed spelling of Suite
    

    modified files:
     ./ChangeLog ./debian/control


2003-10-21 21:23:36 GMT	John Goerzen <jgoerzen@complete.org>	patch-46

    Summary:
      Extended the description
    Revision:
      tla-buildpackage--head--1.0--patch-46

    Extended the description
    

    modified files:
     ./ChangeLog ./debian/control


2003-10-21 21:10:13 GMT	John Goerzen <jgoerzen@complete.org>	patch-45

    Summary:
      Noted closure of wnpp bug.
    Revision:
      tla-buildpackage--head--1.0--patch-45

    Noted closure of wnpp bug.
    

    modified files:
     ./ChangeLog ./debian/changelog


2003-10-21 21:07:25 GMT	John Goerzen <jgoerzen@complete.org>	patch-44

    Summary:
      Fixed some Lintian errors
    Revision:
      tla-buildpackage--head--1.0--patch-44

    Fixed some Lintian errors
    

    modified files:
     ./ChangeLog ./debian/control ./docs/Makefile ./docs/tbp.sgml


2003-10-21 21:04:22 GMT	John Goerzen <jgoerzen@complete.org>	patch-43

    Summary:
      Docs updated some more
    Revision:
      tla-buildpackage--head--1.0--patch-43

    Docs updated some more
    

    new files:
     ./docs/man.tbp-markdeb.sgml ./docs/mansgml/tbp-markdeb.sgml

    modified files:
     ./ChangeLog ./debian/rules ./docs/Makefile
     ./docs/chapters/regular.sgml ./docs/mansgml/manmac.ent
     ./docs/tbp.sgml


2003-10-21 20:25:07 GMT	John Goerzen <jgoerzen@complete.org>	patch-42

    Summary:
      Much work on docs; fixed up manpages, added new info, etc.
    Revision:
      tla-buildpackage--head--1.0--patch-42

    Much work on docs; fixed up manpages, added new info, etc.
    

    new files:
     ./docs/chapters/regular.sgml

    modified files:
     ./ChangeLog ./debian/control ./docs/Makefile
     ./docs/chapters/chapmac.ent ./docs/chapters/intro.sgml
     ./docs/mansgml/com.seealso.sgml ./docs/mansgml/manmac.ent
     ./docs/mansgml/tla-buildpackage.sgml ./docs/tbp.sgml


2003-10-21 03:53:30 GMT	John Goerzen <jgoerzen@complete.org>	patch-41

    Summary:
      Documented tbp-importorig
    Revision:
      tla-buildpackage--head--1.0--patch-41

    Documented tbp-importorig
    

    new files:
     ./docs/man.tbp-importorig.sgml
     ./docs/mansgml/tbp-importorig.sgml

    modified files:
     ./ChangeLog ./docs/chapters/import.sgml
     ./docs/mansgml/manmac.ent ./docs/tbp.sgml


2003-10-21 03:41:24 GMT	John Goerzen <jgoerzen@complete.org>	patch-40

    Summary:
      Finished writing about tbp-importdsc
    Revision:
      tla-buildpackage--head--1.0--patch-40

    Finished writing about tbp-importdsc
    

    new files:
     ./docs/mansgml/copyright.sgml

    modified files:
     ./ChangeLog ./docs/chapters/chapmac.ent
     ./docs/chapters/import.sgml ./docs/chapters/intro.sgml
     ./docs/mansgml/com.copyright.sgml ./docs/mansgml/manmac.ent
     ./docs/mansgml/tbp-importdsc.sgml ./docs/tbp.sgml


2003-10-18 02:40:26 GMT	John Goerzen <jgoerzen@complete.org>	patch-39

    Summary:
      More work on docs
    Revision:
      tla-buildpackage--head--1.0--patch-39

    More work on docs
    

    new files:
     ./TODO ./docs/man.tbp-importdsc.sgml
     ./docs/mansgml/tbp-importdsc.sgml

    modified files:
     ./ChangeLog ./docs/Makefile ./docs/chapters/import.sgml
     ./docs/mansgml/manmac.ent ./tbp-importdsc


2003-10-16 21:58:52 GMT	John Goerzen <jgoerzen@complete.org>	patch-38

    Summary:
      Added missing command
    Revision:
      tla-buildpackage--head--1.0--patch-38

    Added missing command
    

    modified files:
     ./ChangeLog ./docs/mansgml/com.author.sgml


2003-10-16 17:44:30 GMT	John Goerzen <jgoerzen@complete.org>	patch-37

    Summary:
      Started on new chapter
    Revision:
      tla-buildpackage--head--1.0--patch-37

    Started on new chapter
    

    new files:
     ./docs/chapters/import.sgml

    modified files:
     ./ChangeLog ./docs/Makefile ./docs/chapters/chapmac.ent
     ./docs/chapters/getstart.sgml ./docs/tbp.sgml


2003-10-16 16:28:06 GMT	John Goerzen <jgoerzen@complete.org>	patch-36

    Summary:
      Making more progress on docs
    Revision:
      tla-buildpackage--head--1.0--patch-36

    Making more progress on docs
    

    new files:
     ./docs/chapters/getstart.sgml

    modified files:
     ./ChangeLog ./docs/chapters/chapmac.ent
     ./docs/chapters/intro.sgml ./docs/mansgml/manmac.ent
     ./docs/mansgml/tbp-initarchive.sgml
     ./docs/mansgml/tla-buildpackage.sgml ./docs/tbp.sgml
     ./tbppy/extcmd.py


2003-10-16 15:40:37 GMT	John Goerzen <jgoerzen@complete.org>	patch-35

    Summary:
      Fixed up formatting of manpages in PS output; added index
    Revision:
      tla-buildpackage--head--1.0--patch-35

    Fixed up formatting of manpages in PS output; added index
    

    modified files:
     ./ChangeLog ./docs/Makefile ./docs/chapters/intro.sgml
     ./docs/man.tbp-initarchive.sgml ./docs/tbp.sgml


2003-10-16 15:31:11 GMT	John Goerzen <jgoerzen@complete.org>	patch-34

    Summary:
      Adjust docs for multiple manpages
    Revision:
      tla-buildpackage--head--1.0--patch-34

    Adjust docs for multiple manpages
    

    new files:
     ./docs/man.tbp-initarchive.sgml
     ./docs/mansgml/tbp-initarchive.sgml

    modified files:
     ./ChangeLog ./docs/Makefile ./docs/man.tla-buildpackage.sgml
     ./docs/mansgml/manmac.ent ./docs/mansgml/tla-buildpackage.sgml
     ./docs/tbp.sgml


2003-10-16 15:25:54 GMT	John Goerzen <jgoerzen@complete.org>	patch-33

    Summary:
      Integrated docs into .deb
    Revision:
      tla-buildpackage--head--1.0--patch-33

    Modified build system to install the .ps, HTML, and manpages into the .deb.

    modified files:
     ./ChangeLog ./debian/docs ./debian/rules
     ./docs/chapters/intro.sgml ./docs/tbp.sgml


2003-10-16 14:56:13 GMT	John Goerzen <jgoerzen@complete.org>	patch-32

    Summary:
      Added tbp-markdeb
    Revision:
      tla-buildpackage--head--1.0--patch-32

    Added tbp-markdeb.  Adjusted build scripts and docs "see also" to take note
    of it.  Moved some code from tla-buildpackage to tbpconfig.py to be able to
    share the code with tbp-markdeb.

    new files:
     ./tbp-markdeb

    modified files:
     ./ChangeLog ./docs/mansgml/com.seealso.sgml ./setup.py
     ./tbppy/configs.py ./tbppy/tbpconfig.py ./tla-buildpackage


2003-10-16 14:35:02 GMT	John Goerzen <jgoerzen@complete.org>	patch-31

    Summary:
      Bugfixes after initial testing to tla-buildpackage
    Revision:
      tla-buildpackage--head--1.0--patch-31

    Bugfixes after initial testing to tla-buildpackage
    

    modified files:
     ./ChangeLog ./tla-buildpackage


2003-10-16 14:26:36 GMT	John Goerzen <jgoerzen@complete.org>	patch-30

    Summary:
      Relaxed dependencies slightly
    Revision:
      tla-buildpackage--head--1.0--patch-30

    Relaxed dependencies slightly
    

    modified files:
     ./ChangeLog ./debian/control


2003-10-16 14:25:19 GMT	John Goerzen <jgoerzen@complete.org>	patch-29

    Summary:
      Updated build system
    Revision:
      tla-buildpackage--head--1.0--patch-29

    Updated build system
    

    new files:
     ./setup.py

    modified files:
     ./ChangeLog ./debian/rules ./docs/chapters/intro.sgml


2003-10-16 14:23:31 GMT	John Goerzen <jgoerzen@complete.org>	patch-28

    Summary:
      Converted tla-buildpackage to Python
    Revision:
      tla-buildpackage--head--1.0--patch-28

    Converted tla-buildpackage to Python
    

    modified files:
     ./ChangeLog ./tla-buildpackage


2003-10-16 14:03:08 GMT	John Goerzen <jgoerzen@complete.org>	patch-27

    Summary:
      Started work on the chapters
    Revision:
      tla-buildpackage--head--1.0--patch-27

    Started work on the chapters
    

    new files:
     ./docs/chapters/chapmac.ent ./docs/chapters/intro.sgml

    modified files:
     ./ChangeLog ./docs/tbp.sgml


2003-10-16 13:37:01 GMT	John Goerzen <jgoerzen@complete.org>	patch-26

    Summary:
      More work on the docs
    Revision:
      tla-buildpackage--head--1.0--patch-26

    More work on the docs
    

    new files:
     ./docs/mansgml/com.seealso.sgml

    modified files:
     ./ChangeLog ./debian/control ./docs/mansgml/manmac.ent
     ./docs/mansgml/tla-buildpackage.sgml


2003-10-16 03:34:48 GMT	John Goerzen <jgoerzen@complete.org>	patch-25

    Summary:
      Further manual refinements
    Revision:
      tla-buildpackage--head--1.0--patch-25

    Further manual refinements
    

    new files:
     ./docs/chapters/.arch-ids/=id ./docs/mansgml/com.files.sgml

    modified files:
     ./ChangeLog ./docs/Makefile ./docs/mansgml/manmac.ent
     ./docs/mansgml/tla-buildpackage.sgml

    new directories:
     ./docs/chapters ./docs/chapters/.arch-ids


2003-10-16 03:25:33 GMT	John Goerzen <jgoerzen@complete.org>	patch-24

    Summary:
      Started work drafting common sections for manpages
    Revision:
      tla-buildpackage--head--1.0--patch-24

    Started work drafting common sections for manpages
    

    new files:
     ./docs/mansgml/com.author.sgml
     ./docs/mansgml/com.copyright.sgml
     ./docs/mansgml/com.environment.sgml

    modified files:
     ./ChangeLog ./docs/mansgml/manmac.ent
     ./docs/mansgml/tla-buildpackage.sgml


2003-10-16 03:06:17 GMT	John Goerzen <jgoerzen@complete.org>	patch-23

    Summary:
      Added beginnings of documentation
    Revision:
      tla-buildpackage--head--1.0--patch-23

    Added beginnings of documentation
    

    new files:
     ./docs/Makefile ./docs/local.dsl
     ./docs/man.tla-buildpackage.sgml ./docs/mansgml/.arch-ids/=id
     ./docs/mansgml/manmac.ent ./docs/mansgml/tla-buildpackage.sgml
     ./docs/printlocal.dsl ./docs/tbp.sgml

    modified files:
     ./ChangeLog

    new directories:
     ./docs/mansgml ./docs/mansgml/.arch-ids


2003-10-15 23:38:41 GMT	John Goerzen <jgoerzen@complete.org>	patch-22

    Summary:
      Added docs dir
    Revision:
      tla-buildpackage--head--1.0--patch-22

    Added docs dir
    

    new files:
     ./docs/.arch-ids/=id

    modified files:
     ./ChangeLog

    new directories:
     ./docs ./docs/.arch-ids


2003-10-15 23:36:10 GMT	John Goerzen <jgoerzen@complete.org>	patch-21

    Summary:
      More fixes for tla 1.0
    Revision:
      tla-buildpackage--head--1.0--patch-21

    Downgraded this thing to work with tla 1.0

    modified files:
     ./ChangeLog ./debian/control ./tbp-initarchive
     ./tbppy/configs.py ./tbppy/tbpimport.py


2003-10-15 21:58:23 GMT	John Goerzen <jgoerzen@complete.org>	patch-20

    Summary:
      Start of work trying to make it compatible with tla 1.0
    Revision:
      tla-buildpackage--head--1.0--patch-20

    Start of work trying to make it compatible with tla 1.0
    

    modified files:
     ./ChangeLog ./tbp-initarchive ./tbppy/configs.py
     ./tbppy/tbpimport.py


2003-10-15 20:21:32 GMT	John Goerzen <jgoerzen@complete.org>	patch-19

    Summary:
      Make sure to print commands run in qrun
    Revision:
      tla-buildpackage--head--1.0--patch-19


    modified files:
     ChangeLog tbppy/extcmd.py


2003-10-15 20:03:01 GMT	John Goerzen <jgoerzen@complete.org>	patch-18

    Summary:
      Small bugfix
    Revision:
      tla-buildpackage--head--1.0--patch-18


    modified files:
     ChangeLog tbppy/tbpimport.py


2003-10-15 19:56:55 GMT	John Goerzen <jgoerzen@complete.org>	patch-17

    Summary:
      Alter importation of Debian diffs to merge new upstream
    Revision:
      tla-buildpackage--head--1.0--patch-17

    While the algorithm in the code now does work (check out upstream, change
    tree to Debian, then apply Debian changes), the Debian files all get deleted
    and the re-added on each merge.  This is because the explicit tags have to
    be re-generated, so tla doesn't recognize it as the same file.
    
    So, a new algorithm will be to:
    
    1. check out Debian tree
    
    2. if it does not already include the right upstream:
       a. star-merge the upstream
       b. delete any orig/rej files left around and otherwise ignore conflicts
    
    3. tla_load_dir the Debian tree over it, effectively masking conflict
       problems
    
    This is a first attempt at that implementation.

    modified files:
     ChangeLog tbppy/tbpimport.py


2003-10-15 19:05:55 GMT	John Goerzen <jgoerzen@complete.org>	patch-16

    Summary:
      Bugfixes on Debian import
    Revision:
      tla-buildpackage--head--1.0--patch-16


    modified files:
     ChangeLog tbppy/configs.py tbppy/tbpimport.py


2003-10-15 16:34:12 GMT	John Goerzen <jgoerzen@complete.org>	patch-15

    Summary:
      Starting on .dsc import
    Revision:
      tla-buildpackage--head--1.0--patch-15


    new files:
     tbp-importdsc

    modified files:
     ChangeLog tbppy/tbpimport.py


2003-10-15 16:03:46 GMT	John Goerzen <jgoerzen@complete.org>	patch-14

    Summary:
      Bugfixes for upstream import
    Revision:
      tla-buildpackage--head--1.0--patch-14

    I can now state that upstream import works with both a tar file and a
    directory.

    modified files:
     ChangeLog tbppy/configs.py tbppy/extcmd.py tbppy/tbpimport.py
     tbppy/tla.py


2003-10-15 15:35:21 GMT	John Goerzen <jgoerzen@complete.org>	patch-13

    Summary:
      Progress on importing, some code rearranging
    Revision:
      tla-buildpackage--head--1.0--patch-13

    Renamed import.py -> tbpimport.py account import is a Python keyword
    
    Added some generic config handling code to configs.py and moved that code
    out of tbpimport.py
    
    Added tbp-importorig script
    
    Genericized some other import code
    
    Added tar.gz import code

    new files:
     tbp-importorig tbppy/configs.py

    modified files:
     ChangeLog tbppy/tbpimport.py

    renamed files:
     tbppy/import.py
       ==> tbppy/tbpimport.py


2003-10-15 03:05:08 GMT	John Goerzen <jgoerzen@complete.org>	patch-12

    Summary:
      More work on orig import
    Revision:
      tla-buildpackage--head--1.0--patch-12


    modified files:
     ChangeLog tbppy/extcmd.py tbppy/import.py tbppy/tbpconfig.py

    renamed files:
     tbp-initrepos
       ==> tbp-initarchive


2003-10-14 21:54:02 GMT	John Goerzen <jgoerzen@complete.org>	patch-11

    Summary:
      Checkpointing import development
    Revision:
      tla-buildpackage--head--1.0--patch-11

    Partway done with import orig.  Need to do some more work on it yet.

    new files:
     tbppy/import.py tbppy/tbpconfig.py

    modified files:
     ChangeLog tbppy/tla.py tbppy/versions.py


2003-10-14 20:10:35 GMT	John Goerzen <jgoerzen@complete.org>	patch-10

    Summary:
      Pythonization
    Revision:
      tla-buildpackage--head--1.0--patch-10

    Rewrote tbp-initrepos in Python.
    
    Added Python support modules in preparation for Pythonizing the rest.

    new files:
     tbppy/tla.py

    modified files:
     ChangeLog tbp-initrepos tbppy/extcmd.py tla-buildpackage


2003-10-14 19:42:54 GMT	John Goerzen <jgoerzen@complete.org>	patch-9

    Summary:
      Added Python infrastructure
    Revision:
      tla-buildpackage--head--1.0--patch-9

    Added some code in Python to get things going.

    new files:
     tbppy/.arch-ids/=id tbppy/__init__.py tbppy/extcmd.py
     tbppy/versions.py

    modified files:
     ChangeLog

    new directories:
     tbppy tbppy/.arch-ids


2003-10-14 18:23:11 GMT	John Goerzen <jgoerzen@complete.org>	patch-8

    Summary:
      Added tbp-initrepos
    Revision:
      tla-buildpackage--head--1.0--patch-8


    new files:
     tbp-initrepos

    modified files:
     ChangeLog


2003-10-11 19:23:34 GMT	John Goerzen <jgoerzen@complete.org>	patch-7

    Summary:
      Cleaned up files in debian/
    Revision:
      tla-buildpackage--head--1.0--patch-7


    removed files:
     debian/.arch-ids/README.Debian.id debian/.arch-ids/README.id
     debian/.arch-ids/conffiles.ex.id debian/.arch-ids/cron.d.ex.id
     debian/.arch-ids/emacsen-install.ex.id
     debian/.arch-ids/emacsen-remove.ex.id
     debian/.arch-ids/emacsen-startup.ex.id
     debian/.arch-ids/init.d.ex.id debian/.arch-ids/manpage.1.ex.id
     debian/.arch-ids/manpage.sgml.ex.id
     debian/.arch-ids/menu.ex.id debian/.arch-ids/postinst.ex.id
     debian/.arch-ids/postrm.ex.id debian/.arch-ids/preinst.ex.id
     debian/.arch-ids/prerm.ex.id
     debian/.arch-ids/tla-buildpackage-default.ex.id
     debian/.arch-ids/tla-buildpackage.doc-base.EX.id
     debian/.arch-ids/watch.ex.id debian/README
     debian/README.Debian debian/conffiles.ex debian/cron.d.ex
     debian/emacsen-install.ex debian/emacsen-remove.ex
     debian/emacsen-startup.ex debian/init.d.ex debian/manpage.1.ex
     debian/manpage.sgml.ex debian/menu.ex debian/postinst.ex
     debian/postrm.ex debian/preinst.ex debian/prerm.ex
     debian/tla-buildpackage-default.ex
     debian/tla-buildpackage.doc-base.EX debian/watch.ex

    modified files:
     ChangeLog debian/control debian/rules


2003-10-11 16:28:23 GMT	John Goerzen <jgoerzen@complete.org>	patch-6

    Summary:
      Added files from dh_make
    Revision:
      tla-buildpackage--head--1.0--patch-6


    new files:
     debian/.arch-ids/=id debian/.arch-ids/README.Debian.id
     debian/.arch-ids/README.id debian/.arch-ids/changelog.id
     debian/.arch-ids/compat.id debian/.arch-ids/conffiles.ex.id
     debian/.arch-ids/control.id debian/.arch-ids/copyright.id
     debian/.arch-ids/cron.d.ex.id debian/.arch-ids/dirs.id
     debian/.arch-ids/docs.id
     debian/.arch-ids/emacsen-install.ex.id
     debian/.arch-ids/emacsen-remove.ex.id
     debian/.arch-ids/emacsen-startup.ex.id
     debian/.arch-ids/init.d.ex.id debian/.arch-ids/manpage.1.ex.id
     debian/.arch-ids/manpage.sgml.ex.id
     debian/.arch-ids/menu.ex.id debian/.arch-ids/postinst.ex.id
     debian/.arch-ids/postrm.ex.id debian/.arch-ids/preinst.ex.id
     debian/.arch-ids/prerm.ex.id debian/.arch-ids/rules.id
     debian/.arch-ids/tla-buildpackage-default.ex.id
     debian/.arch-ids/tla-buildpackage.doc-base.EX.id
     debian/.arch-ids/watch.ex.id debian/README
     debian/README.Debian debian/changelog debian/compat
     debian/conffiles.ex debian/control debian/copyright
     debian/cron.d.ex debian/dirs debian/docs
     debian/emacsen-install.ex debian/emacsen-remove.ex
     debian/emacsen-startup.ex debian/init.d.ex debian/manpage.1.ex
     debian/manpage.sgml.ex debian/menu.ex debian/postinst.ex
     debian/postrm.ex debian/preinst.ex debian/prerm.ex
     debian/rules debian/tla-buildpackage-default.ex
     debian/tla-buildpackage.doc-base.EX debian/watch.ex

    modified files:
     ChangeLog

    new directories:
     debian debian/.arch-ids


2003-10-11 16:24:33 GMT	John Goerzen <jgoerzen@complete.org>	patch-5

    Summary:
      Misc cleanups
    Revision:
      tla-buildpackage--head--1.0--patch-5


    modified files:
     ChangeLog tla-buildpackage


2003-10-11 03:51:50 GMT	John Goerzen <jgoerzen@complete.org>	patch-4

    Summary:
      Confirmed working now
    Revision:
      tla-buildpackage--head--1.0--patch-4


    modified files:
     ChangeLog tla-buildpackage


2003-10-10 21:55:04 GMT	John Goerzen <jgoerzen@complete.org>	patch-3

    Summary:
      Ready to test
    Revision:
      tla-buildpackage--head--1.0--patch-3


    new files:
     ChangeLog

    modified files:
     tla-buildpackage


2003-10-10 21:23:44 GMT	John Goerzen <jgoerzen@complete.org>	patch-2

    Summary:
      Added some basic utility functions
    Revision:
      tla-buildpackage--head--1.0--patch-2


    new files:
     tla-buildpackage


2003-10-10 20:41:35 GMT	John Goerzen <jgoerzen@complete.org>	patch-1

    Summary:
      Initial setup
    Revision:
      tla-buildpackage--head--1.0--patch-1


    new files:
     COPYING COPYRIGHT

    modified files:
     {arch}/=tagging-method


2003-10-10 20:40:06 GMT	John Goerzen <jgoerzen@complete.org>	base-0

    Summary:
      initial import
    Revision:
      tla-buildpackage--head--1.0--base-0

    
    (automatically generated log message)