-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
2194 lines (1465 loc) · 73.3 KB
/
ChangeLog
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
2011-07-27 Fatih Aşıcı <fatih@pardus.org.tr>
* pisi 2.4_rc1
This is the first release candidate for the upcoming 2.4.x releases.
This release fixes a regression introduced in beta2 and fixes a cosmetic
issue in the output of index command.
I think Pisi is quite ready for a stable release. Therefore, this may be
the last release before 2.4.
2011-07-27 Fatih Aşıcı <fatih@pardus.org.tr>
* index: Print CR character at the end
Otherwise, error messages are not displayed correctly. Still needs some
tweaks for error/warning strings.
2011-07-27 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Add a comment for the dict variable
Also move the creation of Files object down and use itervalues() instead
of iteritems().
2011-07-27 Fatih Aşıcı <fatih@pardus.org.tr>
* Revert "build: Remove redundant dict variable"
This variable prevents writing duplicate entries to files.xml.
2011-07-22 Fatih Aşıcı <fatih@pardus.org.tr>
* MANIFEST: Add pisi.xml.in to the tarball
2011-07-22 Fatih Aşıcı <fatih@pardus.org.tr>
* pisi 2.4_beta2
This is the second beta for the upcoming 2.4.x releases. This release
includes enhancements, important bug fixes, and translation updates.
Notable changes (see ChangeLog file for details):
- Support for 7-zip source archives
- Refactored check command
- Revised cli messages
- Switch from pygettext to xgettext
2011-07-14 Fatih Aşıcı <fatih@pardus.org.tr>
* archive: Handle possible conflicts if upper directories cannot be created
Installation fails when overriding a file with a directory. With this
change, Pisi will remove the old files before creating the upper
directories.
2011-06-22 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Remove redundant dict variable
2011-06-22 Fatih Aşıcı <fatih@pardus.org.tr>
* autoxml: Remove redundant check
2011-06-22 Fatih Aşıcı <fatih@pardus.org.tr>
* autoxml: Check values against NoneType
The expression "value" is also False when the value equals zero. This
prevents the presence of the tags with a value of zero.
Fixes the bug reported at http://bugs.pardus.org.tr/18467.
2011-06-17 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2011-06-17 Fatih Aşıcı <fatih@pardus.org.tr>
* deletecache: Append dots to the info text for consistency
2011-06-17 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
Fixes the bug reported at http://bugs.pardus.org.tr/18427.
2011-06-17 Fatih Aşıcı <fatih@pardus.org.tr>
* cli/check: Fix usage string to show an example of -c option
2011-06-17 Fatih Aşıcı <fatih@pardus.org.tr>
* cli/check: Style fixes
2011-06-15 Fatih Aşıcı <fatih@pardus.org.tr>
* addrepo: Handle all pisi errors occurred when updating the new repo
Fixes the bug reported at http://bugs.pardus.org.tr/18309.
2011-06-13 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n/tr: Add missing space
2011-06-13 Ozan Çağlayan <ozan@pardus.org.tr>
* cli: Pretty print pisi search output
Slightly modified version of patch provided by Anıl Özbek
Fixes the bug reported at http://bugs.pardus.org.tr/17719.
2011-06-13 Ozan Çağlayan <ozan@pardus.org.tr>
* sourcedb: whitespace cleanup, update copyright date
2011-06-13 Ozan Çağlayan <ozan@pardus.org.tr>
* db: whitespace cleanup, update copyright date
2011-06-13 Ozan Çağlayan <ozan@pardus.org.tr>
* api: Generate some information about delete_cache
Fixes the bug reported at http://bugs.pardus.org.tr/18310.
2011-06-09 Ozan Çağlayan <ozan@pardus.org.tr>
* graph: only replace allowed characters which are -,+,_
2011-06-09 Ozan Çağlayan <ozan@pardus.org.tr>
* graph: Use list comprehension for value sanitizing which is ~2x faster
2011-06-08 Metin Akdere <metin@pardus.org.tr>
* archive: Fix typo in recently added Archive7Zip class
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* Drop old readme
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* upgrade: Use flatten_list() which is ~9x faster than sum() construct
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* rng: Add CCPL-Attribution-ShareAlike-NonCommercial-3.0
See http://bugs.pardus.org.tr/17792.
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* l10n: Update messages
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* archive: Add support for 7-Zip source archives
Dynamically check the unpacker and gracefully inform the user
about the missing utility.
Fixes the bug reported at http://bugs.pardus.org.tr/3870.
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* util: add search_executable() to find search for an executable in PATH
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* util: remove unused copy_dir() too
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* graph: Rename concat() to flatten_list()
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* util: Rename concat() to flatten_list() and optimize it
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* util: Drop old, unused, weird shortcut functions
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* l10n: Update messages
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* check: Print a warning if some files can't be read
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* Update TR translations
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* l10n: Update messages
2011-06-08 Ozan Çağlayan <ozan@pardus.org.tr>
* check: Refactor and improve whole check command
Warn about denied accesses (pb#18308)
Fix bad formatting issues
Fixes the bug reported at http://bugs.pardus.org.tr/18308.
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* index: Use ctx.ui.info() instead of plain print
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* build: Mark the errors with the source package name to give more info
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* index: Heal multithreading related output problems
index rewinds the line without writing \n which garbles the
output when an exception is caught.
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* index: Remove obfuscated and outdated comments
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* Revert r37178 "cli: Add verbose and noln parameters to error() and status()"
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* util: Don't pass the file name in the exception
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* cli: Add verbose and noln parameters to error() and status()
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* tree-wide: Don't use weird asterisks at line beginnings
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* util: Raise FilePermissionDeniedError if the file cannot be
read by the current user.
Whitespace, variable name cleanups
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* cli: Suppress info about output directory
The output directory will already be printed during the final
step of package building.
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* build: Prune another useless warning
This line is always printed, it doesn't actually warn the user about
an anomaly.
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* operations/build: Clean-up outputs
Prune always printed lines about component stuff,
Dump build helper information only during build() to not pollute index output
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* index: Print package names on the same line during source indexing
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* index: Add missing i18n() calls around strings
2011-06-07 Ozan Çağlayan <ozan@pardus.org.tr>
* operations/build: Add missing i18n() calls around strings
2011-06-01 Onur Küçük <onur@pardus.org.tr>
* actionsapi: Fix typo in shelltools documentation
2011-05-31 Metin Akdere <metin@pardus.org.tr>
* l10n: Update messages
2011-05-31 Metin Akdere <metin@pardus.org.tr>
* l10n: Remove deprecated pygettext module
As we switched to xgettext, scripts/pygettext file is redundant.
2011-05-31 Metin Akdere <metin@pardus.org.tr>
* l10n: Switch from pygettext to xgettext
Also add pisi.xml mimetype file. Remove scripts/update-po.sh file.
2011-05-30 H. İbrahim Güngör <ibrahim@pardus.org.tr>
* l10n: Revert nl.po since it is the yali translation actually.
2011-05-30 Fatih Aşıcı <fatih@pardus.org.tr>
* pisi 2.4_beta1
This is the first beta for the upcoming 2.4.x releases. This release
includes enhancements, important bug fixes, and translation updates.
The most notable change is the parallelization of index module. This
reduces the time spent when indexing large repositories. Another
important change is the fix for failure when a directory in a package
becomes a symlink.
There are also behavioural changes introduced in this release:
* delta: If all files in a package have changed, delta is not created
unless requested explicitly.
* build: Additional source files are now copied before applying
patches.
* cli: add-repo command now fails when a repo name/uri is not given.
2011-05-30 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2011-05-30 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n/it: Do not break the line in translation
2011-05-27 Gökçen Eraslan <gokcen@pardus.org.tr>
* index: Do not traverse hidden directories during index.
2011-05-24 Ozan Çağlayan <ozan@pardus.org.tr>
* patches: Drop useless hunk
2011-05-24 Ozan Çağlayan <ozan@pardus.org.tr>
* build: Put source additional files before applying patches.
This way, we can apply a patch on top of an additional
source file.
2011-05-23 Ozan Çağlayan <ozan@pardus.org.tr>
* rng: Add AVASYSPL license for Epson scanner stuff
2011-05-23 Gökçen Eraslan <gokcen@pardus.org.tr>
* index: Make sure that pool is safely closed and joined.
Make sure we call close and join methods of Pool object
properly in any case. This fixes hundreds of processes
appeard in buildfarm.
2011-05-13 Gökçen Eraslan <gokcen@pardus.org.tr>
* index: Parallelize indexing procedure using Python's multiprocessing module.
Create a pool of worker processes to make indexing in a parallel fashion.
Normally, all metadata parsing and SHA1 calculation process are done
sequentially per package.
This commits distributes all package-based parsing, SHA1 calculation process
to worker processes to make it faster in multiprocessor/multicore systems.
2011-05-11 Ozan Çağlayan <ozan@pardus.org.tr>
* scripts/pisi-sandbox: Update dates, versions
2011-05-07 Gökçen Eraslan <gokcen@pardus.org.tr>
* rng: Add ZPLv2.0 license to RNG.
2011-04-27 Mehmet Emre Atasever <memre@pardus.org.tr>
* revert <ExcludeArch> regex support, add armv7l to the <ExcludeArch> values
2011-04-27 Mehmet Emre Atasever <memre@pardus.org.tr>
* pisi should manage <ExcludeArch> tags with regex
2011-04-12 Ozan Çağlayan <ozan@pardus.org.tr>
* l10n: Update messages
2011-04-12 Ozan Çağlayan <ozan@pardus.org.tr>
* operations/build: Fix CCache name to reflect upstream name ccache (pb#17713)
Use ccache instead of CCache which doesn't reflect upstream name
Fixes the bug reported at http://bugs.pardus.org.tr/17713.
2011-04-12 Ozan Çağlayan <ozan@pardus.org.tr>
* cli/listavailable: Fix inconsistent coloring (pb#17716)
Simplify code to fix the wrong coloring behaviour of pisi list-available
command.
Reported by: Anıl Özbek
See http://bugs.pardus.org.tr/17716.
2011-04-05 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2011-04-05 Fatih Aşıcı <fatih@pardus.org.tr>
* cli/addrepo: Make name and URI parameters mandatory
Previously it was adding a default repo if those parameters were not
given.
Fixes the bug reported at http://bugs.pardus.org.tr/15196.
2011-04-04 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2011-04-04 Fatih Aşıcı <fatih@pardus.org.tr>
* cli/info: Format the info output of source packages
Thanks to Anıl Özbek for his patch.
Fixes the bug reported at http://bugs.pardus.org.tr/17595.
2011-04-04 Fatih Aşıcı <fatih@pardus.org.tr>
* specfile: Show licenses in package info
A modified version of the patch provided by Anıl Özbek.
Fixes the bug reported at http://bugs.pardus.org.tr/17596.
2011-04-04 Fatih Aşıcı <fatih@pardus.org.tr>
* delta: Reduce code duplication
2011-04-03 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2011-04-03 Fatih Aşıcı <fatih@pardus.org.tr>
* delta: Change the way in previous commit
No need to use an exception. Comparing the size of changed files and the
new files is enough.
2011-04-03 Fatih Aşıcı <fatih@pardus.org.tr>
* delta: Do not create delta if all files are different
2011-04-03 Fatih Aşıcı <fatih@pardus.org.tr>
* delta: Minor refactoring in find_delta
Use better variable names and reduce lambda usage.
2011-03-31 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Check max_count value
2011-03-31 Fatih Aşıcı <fatih@pardus.org.tr>
* archive: Fix failure when a directory is changed with a symlink
2011-03-30 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Fix copy/paste error
2011-03-29 Fatih Aşıcı <fatih@pardus.org.tr>
* rng: Add FDL-1.3 to the list of licenses
Fixes the bug reported at http://bugs.pardus.org.tr/17528.
2011-03-26 Gökçen Eraslan <gokcen@pardus.org.tr>
* index: Fix usage of remove_suffix.
2011-03-25 Fatih Aşıcı <fatih@pardus.org.tr>
* pisi 2.4_alpha4
This is the forth alpha for the upcoming 2.4.x releases. This release
introduces two features as well as bug fixes and translation updates.
The first feature which is added in this release is an API addition for
use in buildfarm. With a new method, it is now possible to determine
the old packages that will be used to create delta packages from.
"Build flags" is another feature introduced in this release. Build flags
can be used to enable/disable some operations/packages at build time.
Currently, two flags are accepted: noDebug and noDelta.
2011-03-25 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update Turkish translations
2011-03-25 Fatih Aşıcı <fatih@pardus.org.tr>
* dtd,rng: Accept BuildFlags tag inside Package tags
2011-03-25 Fatih Aşıcı <fatih@pardus.org.tr>
* build,specfile: Implement support for build flags
Currently, it supports two flags: noDebug, noDelta.
The usage is simple:
<Package>
...
<BuildFlags>
<Flag>noDebug</Flag>
<Flag>noDelta</Flag>
</BuildFlags>
...
</Package>
noDebug flag is used to disable building of a debug package for this
package tag.
noDelta flag is used to disable building of delta packages
automatically. It doesn't change the behaviour of "pisi delta" command.
2011-03-23 Fatih Aşıcı <fatih@pardus.org.tr>
* index: Ignore debug packages of obsoleted packages
2011-03-23 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2011-03-23 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Add a method to determine delta packages to be created
This will be used by buildfarm. It accepts release numbers to create
delta packages for stable distribution releases. If the release number
is not given, it searches the binary package dirs for old packages and
creates delta packages. max_count can be specified to limit numbers of
delta packages.
It is possible to override search paths via search_paths parameter.
release and max_count parameters cannot be used at the same time.
This commit also removes the max_delta_count option from config file
since it is useless and confusing.
2011-02-28 H. İbrahim Güngör <ibrahim@pardus.org.tr>
* l10n: Revert the latest Italian translation which breaks pisi.
2011-02-27 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Fail if a path does not start with a slash
2011-02-27 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Do not allow duplicate path values in spec file
2011-02-27 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2011-02-23 Fatih Aşıcı <fatih@pardus.org.tr>
* installdb: Parse directory names correctly
parse_package_name cannot parse directory names like "zlib-32bit".
Implement a function to split names.
Bumped cache version to force update.
2011-02-22 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Reload actions script for each build type
So we can use get.buildTYPE() outside the functions in actions.py.
2011-02-21 Fatih Aşıcı <fatih@pardus.org.tr>
* pisi 2.4_alpha3
This is the third alpha for the upcoming 2.4.x releases. This release
introduces a new feature for building source packages with different
configurations using the same actions.py. This is achieved with
BuildType tags specified between Package tags.
It is also possible to write build dependencies inside Package tags with
this release. This is needed since additional build dependencies could
be needed for different build types.
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build,config: Add a new config option to ignore build types
Contains a comma-separated list of build type strings. Example:
ignored_build_types = 32bit,pae
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Remove redundant check in previous commit
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Iterate over Package tags to gather all build deps
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* specfile: Accept BuildDependencies inside Package tags
It will be used for build dependencies specific to a build type.
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Colorize unpack message
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Add support for build types
With build types, it is possible to use the same actions.py
for re-building the package with different options. In actions.py
scripts, get.buildTYPE() function can be used to get the current
build type.
A BuildType tag must be specified inside the Package tag of the related
binary package.
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* specfile: Accept BuildType tag inside Package tags
It is not functional at this time.
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* sourcearchive: Pass target dirs to unpack methods
This changes the internal API to make working with
multiple work dirs possible.
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Check build dependencies for unpack too
"patch" utility is needed to unpack since we apply patches
here.
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Cosmetic change
Yes, I don't like big "if" blocks.
2011-02-20 Fatih Aşıcı <fatih@pardus.org.tr>
* build: More simplifications
2011-02-19 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Minor simplifications
2011-02-07 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: Don't fail if listnewconfig is not available
listnewconfig is not available on 2.6.35. Call it in a try/except
to avoid failing.
2011-01-31 Fatih Aşıcı <fatih@pardus.org.tr>
* pisi 2.4_alpha2
This is the second alpha for the upcoming 2.4.x releases. This
release contains various fixes, actionsapi improvements, translation
updates, and a new feature to generate reverse dependency graph with
graph command.
2011-01-31 Fatih Aşıcı <fatih@pardus.org.tr>
* fetcher: Add a timeout parameter to Fetcher.test()
2011-01-28 Ozan Çağlayan <ozan@pardus.org.tr>
* specfile: Create Dependency objects for each package in a
component dependency
This should fix the usage of Component dependencies. I'm
now testing.
2011-01-28 Ozan Çağlayan <ozan@pardus.org.tr>
* specfile: Component dependencies are base strings
2011-01-28 Ozan Çağlayan <ozan@pardus.org.tr>
* specfile: Fix typo: get_component() is a function.
2011-01-27 Fatih Aşıcı <fatih@pardus.org.tr>
* fetcher: Add a method to test connection using urlopen
2011-01-27 Fatih Aşıcı <fatih@pardus.org.tr>
* fetcher: Add a default value for destionation directory
2011-01-21 Gökçen Eraslan <gokcen@pardus.org.tr>
* l10n: Fix Hu translation
Fixes the bug reported at http://bugs.pardus.org.tr/16353.
2011-01-05 Ozan Çağlayan <ozan@pardus.org.tr>
* comariface: Fix a case where names are not validated
When name="xx-yy" is given explicitly in a <COMAR> tag, current
code was not replacing the dash with an underscore causing D-Bus
errors.
This commit fixes this.
2011-01-05 Ozan Çağlayan <ozan@pardus.org.tr>
* comariface: safe_script_name is a better name
2010-12-28 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: Rework versioning stuff. I think it's okay now
2010-12-28 Ozan Çağlayan <ozan@pardus.org.tr>
* patches: update non-root build patch
2010-12-27 Ozan Çağlayan <ozan@pardus.org.tr>
* patches: Add patch to support non-root building
* if config.tmp_dir is not writeable defaults to /tmp/pisi-$USER
* if /var/cache/pisi/archives is not writeable defaults to /tmp/pisi-$USER
* Move chowning additional files into postinstall
* Assume that group == owner if no group is given for AdditionalFiles
BUGS:
All files extracted under work_dir and installed under install_dir
has owner:group == uid:gid of the user which builds the package.
TEST:
Build a package with your regular user and install it
EXPECTED RESULTS:
You shouldn't have any exceptions but the files installed on your
system will have the same ownership as your user ;)
2010-12-27 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: This is changed to listnewconfig by upstream
2010-12-24 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: Install Module.symvers and System.map under lib/modules too
2010-12-23 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: More fixes and cleanup
Avoid calling depmod
Call nonint_oldconfig to check the configuration
Call dumpVersion from here instead of actions.py
2010-12-22 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: More fixes
2010-12-21 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: Don't install kernel sources, it's useless
2010-12-21 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: Use upstream ways to not install the firmwares
2010-12-21 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: Rework EXTRAVERSION stuff
2010-12-18 H. İbrahim Güngör <ibrahim@pardus.org.tr>
* l10n: Revert back to r34041 since non-latin characters in ru.po seems broken.
2010-12-18 H. İbrahim Güngör <ibrahim@pardus.org.tr>
* l10n: Revert last commit
2010-12-14 Fatih Aşıcı <fatih@pardus.org.tr>
* emerge: Fix package installation
This is broken since the API change in Builder class.
2010-12-14 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Let build function return Builder object
2010-12-13 Bahadır Kandemir <bahadir@pardus.org.tr>
* file: Don't overwrite file when using with local filesystem
2010-12-10 Bahadır Kandemir <bahadir@pardus.org.tr>
* file: Fix not checking sha1sum
2010-12-10 Bahadır Kandemir <bahadir@pardus.org.tr>
* file: Fixed not keeping original filename
2010-12-09 Bahadır Kandemir <bahadir@pardus.org.tr>
* fetcher: Check integrity of files before saving to disk.
Fetcher will check integrity of files using sha1sum file
(and later with digital signatures) before saving them to
their original locations.
2010-12-02 Ozan Çağlayan <ozan@pardus.org.tr>
* util: Use -i instead of redirection
GNU patch accepts -i to pass the patch file. Use that instead of
redirection.
2010-11-25 Ozan Çağlayan <ozan@pardus.org.tr>
* build: Warn if a patch file is empty
GNU patch does not detect empty patch files so print
a warning for empty patches before unpacking the source.
2010-11-24 Ozan Çağlayan <ozan@pardus.org.tr>
* index: Remove faulty and unused name() method
distribution class doesn't have any members called name and
repositoryname.
2010-11-11 Fatih Aşıcı <fatih@pardus.org.tr>
* history: Fix split error
2010-11-11 Fatih Aşıcı <fatih@pardus.org.tr>
* history: Ugly fix for the regression caused by filename changes
Since we didn't store distribution and architecture info in history
database, takeback was not able to guess old package names.
2010-11-03 Fatih Aşıcı <fatih@pardus.org.tr>
* api: Regenerate caches even if a repo-update fails
2010-11-03 Fatih Aşıcı <fatih@pardus.org.tr>
* comariface: Code style fixes
2010-10-27 Bahadır Kandemir <bahadir@pardus.org.tr>
* scripts: Check certificate validity and trustworthiness.
pisign utility embeds certificate into Zip files and validates them
before checking signature. It also looks into a trust_dir database
to see if certificates are trusted or not. Check README for examples.
2010-10-27 Fatih Aşıcı <fatih@pardus.org.tr>
* check: Normalize symlink targets before calculating their sums
Fixes the bug reported at http://bugs.pardus.org.tr/14906.
2010-10-25 Fatih Aşıcı <fatih@pardus.org.tr>
* tree-wide: Make some error messages translatable
2010-10-25 Bahadır Kandemir <bahadir@pardus.org.tr>
* scripts: Package signing tool verifies using certificate.
Package signing tool verifies signed data using certificate instead
of public key. It also verifies certificate, warns if it's self
signed, fails if it's invalid.
2010-10-25 Bahadır Kandemir <bahadir@pardus.org.tr>
* scripts: Various improvements in pisign.py
- Get passphrase with getpass
- Don't extract public key from certificate
- Support signing/verifying multiple files at once
2010-10-24 Erdem Bayer <ebayer@bayer.gen.tr>
* cli/graph: Add option to generate reverse dependency graph
2010-10-19 Fatih Aşıcı <fatih@pardus.org.tr>
* tree-wide: Remove redundant setlocale's
This commit also fixes the confirm method to repeat asking until
a valid input is given.
2010-10-18 Fatih Aşıcı <fatih@pardus.org.tr>
* rng: Update for type attribute in Archive tag
It is now optional and accepts more types.
2010-10-14 Fatih Aşıcı <fatih@pardus.org.tr>
* specfile: Thinko fix
packageAnyDependencies is an array of AnyDependency objects, not
Dependency!
2010-10-13 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Fix fuzzy messages in Turkish translations
2010-10-13 Fatih Aşıcı <fatih@pardus.org.tr>
* l10n: Update messages
2010-10-13 Fatih Aşıcı <fatih@pardus.org.tr>
* tree-wide: Do not pass variables to the gettext function
2010-10-13 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Little improvements on info messages
2010-10-13 Fatih Arslan < farslan@pardus.org.tr>
* actionsapi/texlivemodules: Add exception for None values of "patterns"
Every format file has some keywords that are passed to the appropriate
application during the build stage. However some of thes keywords, such
as "patterns" may have Null values (do not exist) or have empty string.
Thus, we add here an exception for Null values of "patterns". If no
"patterns" keyword exist, than we create a new one with the parameter '-'
This parameter is default and is adviced from the TexLive developers itself.
2010-10-11 Fatih Aşıcı <fatih@pardus.org.tr>
* pisi 2.4_alpha1
This is the first alpha for the upcoming 2.3.x releases. This
release adds lots of new features. The most significant ones are
the changes in the package format.
2010-10-11 Fatih Aşıcı <fatih@pardus.org.tr>
* db: Bump cache version
2010-10-11 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Case fix
2010-10-11 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Update state file after building all packages
2010-10-11 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Remove useless info message
Pisi fails when orphaned files found. No need to print this
message for successful builds.
2010-10-11 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Tweak info messages
2010-10-09 Onur Küçük <onur@pardus.org.tr>
* actionsapi/pisitools: Fix documentation of dolib
2010-10-08 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Return an empty list instead of None
Also remove a debug line.
2010-10-08 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Hold a dictionary for delta package lists
2010-10-08 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Hold a seperate list for new debug packages
2010-10-08 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Create delta packages after build if max_delta_count > 0
build_packages does not return a value any more. Code is really hacky
but works.
2010-10-07 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Search old packages in {compiled,debug}_packages_dir too
This is similar to the behaviour before the build number removal except
that it does not search recursively.
2010-10-07 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Do not print error/warning counts if they equal to zero
2010-10-07 Fatih Aşıcı <fatih@pardus.org.tr>
* util: Add function to generate a filename from the package info given
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* specfile: Ignore build numbers
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* history: Remove buildno-related stuff
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* packagedb: Ignore build numbers in old formats
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* installdb: Remove buildno-related stuff
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* installdb,cli/listinstalled: Thinko fix
The build host should be an empty string for old packages.
"pisi li -b ''" now returns old packages, too.
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* cli/listinstalled: Replace --without-buildno with --with-build-host
This renamed parameter is used to filter packages by their build host.
e.g. pisi li -b localhost
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Hold an identifier for the host the package is built on
This can be changed using build_host option in pisi.conf. The
default value is "localhost". This can be used to distinguish
buildfarm packages and the packages built by the user.
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* tree-wide: Remove --ignore-build-no options
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* atomicops: Remove build number checks
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* api: Remove the code related to build numbers
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* config: Remove buildno option
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* tree-wide: Fix get_delta() usage
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* index: Add support for new filename format of delta packages
Also store release numbers instead of build numbers.
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* util: Fix returned value
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Change filename format of delta packages
The new format is:
<name>-<source release>-<target release>-<distribution id>-<architecture>.delta.pisi
e.g. pisi-179-180-p11-x86_64.pisi
Release numbers are used instead of build numbers.
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* util: Add support for parsing the upcoming delta package name format
This also adds utility functions to split fields of new filename format.
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Change filename format of packages
The new format is:
<name>-<version>-<release>-<distribution id>-<architecture>.pisi
e.g. pisi-2.3.2-180-p11-x86_64.pisi
We will not use build numbers any more. This commit removes some of the code
related to build numbers. New pisi will not deal with build numbers.
Before the stable release, all buildno-related code will be removed.
It is now possible to use digits after a dash character (e.g. polkit-qt-1).
Distribution id is a short string to represent the distribution release
(e.g. p11 for Pardus 2011).
Architecture strings cannot start with a digit. This is needed to
distinguish old and new packages.
2010-10-06 Fatih Aşıcı <fatih@pardus.org.tr>
* util: Add support for parsing the upcoming package name format
2010-10-01 Fatih Aşıcı <fatih@pardus.org.tr>
* tests: Replace the path with __file__ in testCanAccessFile
Otherwise, the result of the test is dependent on the installed
packages.
2010-10-01 Fatih Aşıcı <fatih@pardus.org.tr>
* config: Just ignore if we can't create the directory
2010-09-28 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Call pkg_src_dir() to get WorkDir path
No need to keep a member for source directory.
2010-09-28 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Search WorkDir after unpacking sources
2010-09-28 Fatih Aşıcı <fatih@pardus.org.tr>
* install: Do not calculate the sum of cached file twice
2010-09-27 Ozan Çağlayan <ozan@pardus.org.tr>
* actionsapi/kerneltools: Refactor
2010-09-26 Fatih Aşıcı <fatih@pardus.org.tr>
* config: Create directories if we have write access
Also rename util.check_dir to util.ensure_dirs.
Fixes the bug reported at http://bugs.pardus.org.tr/14000.
2010-09-26 Fatih Aşıcı <fatih@pardus.org.tr>
* cli/build: If spec file is not given, fallback to ./pspec.xml
2010-09-26 Fatih Aşıcı <fatih@pardus.org.tr>
* installdb: Real fix when Package tag is missing
2010-09-26 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Try WorkDir="." for archives with type "binary"
2010-09-26 Fatih Aşıcı <fatih@pardus.org.tr>
* build: Fail if user-defined WorkDir does not exist
2010-09-26 Fatih Aşıcı <fatih@pardus.org.tr>
* index: Add --compression-types option