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
|
hurd (20100827-1) UNRELEASED; urgency=low
[ Samuel Thibault ]
* New upstream 20100827 snapshot.
- debian/patches/dir_acces_fix.patch: Remove patch, merged upstream.
- debian/patches/exec_fix.patch: Likewise.
- debian/patches/libdiskfs-rename.patch: Likewise.
- debian/patches/libpthread_mutex_owner.patch: Likewise.
- debian/patches/libpthread_recursive_mutex_initializer.patch: Likewise.
- debian/patches/libpthread_setcancel.patch: Likewise.
- debian/patches/pfinet-gcc-4.3-fix.patch: Likewise.
- debian/patches/procfs.patch: Likewise.
- debian/patches/ext2fs_large_stores.patch: Resync.
- debian/patches/libpthread_procfs.patch: New patch, to enable libpthread
and procfs build.
* debian/rules: Really put debugging symbols into the hurd-dbg package.
* debian/patches/hurd_console_startup.patch: Add -d current_vcs to enable
/dev/cons/vcs by default.
* debian/copyright: Reference /usr/share/common-licenses/GPL-2 instead of
just GPL.
* debian/hurd.dirs: Add /etc/sysctl.d.
* debian/control (hurd-udeb): Add Provides: *-modules.
* debian/patches/diskfs_no_inherit_dir_group.patch: Fix documentation too.
* debian/control:
- Drop duplicate priority and section fields.
- Add ${misc:Depends}.
- Add dpkg (>= 1.15.4) | install-info dependency.
- Drop -1 from gnumach-dev dependency.
- Bump Standards-Version to 3.8.4 (no change needed).
* debian/local/runsystem.gnu: New runsystem file for the d-i case, incomplete
for now.
* debian/hurd-udeb.install: Remove getty, runttys, /etc/ttys ftpcp, ftpdir,
ftpfs, hostmux, usermux, nfs, isofs.static, rpctrace, gcore, forks. Install
local/runsystem.gnu in /libexec, install ext2fs.static in /boot
* debian/rules: Do not ship *_pic.a, as mklibs breaks them.
* debian/patches/proxy-defpager.diff: New patch to fix proxying defpager.
* debian/patches/ext2fs_large_stores.patch: Apply Alioth fix #312328 from
Fredrik Hammar to fix random startup crash (Closes: Bug#576519).
* debian/patches/procfs.patch: Fix swap size printout.
* debian/hurd-udeb.install: remove reboot and halt (will be provided by
busybox), remove crash and password (not useful), add procfs, remove rc.
* debian/local/runsystem.gnu: Integrate jkoenig d-i changes, rename to
debian/local/runsystem.
* debian/hurd.links: Add symlink to /usr/src/unifont.bdf from the unifont
package to /usr/share/hurd/vga-system.bdf so the console can pick it up
when installed.
* debian/source/options: Set compression to bzip2.
* debian/control: Update Vcs fields to point to the new git repositories.
* debian/patches/console_ignore_bdf_err.patch: New patch to ignore erroneous
number of glyphs in bdf files.
* debian/rules: Remove debian/ChangeLog generation.
* debian/local/runsystem: Pass -g option to the console to maximize glyph
usage for chinese.
* debian/hurd.lintian-overrides: New overrides to announce which servers are
supposed to be statically linked, accept hurd to be essential, and accept
some setuid binaries.
* debian/hurd-udeb.lintian-overrides: New overrides to validate
hurd-i386-specific paths.
* debian/hurd-dev.lintian-overrides: New overrides to allow libstore_* not
being stripped (they wouldn't work, else).
* debian/local/runsystem: Export kernel parameters into environment, like
Linux does.
* debian/control: Use Package-Type instead of XC-Package-Type.
* debian/rules: Switch to gcc-4.4 (Closes: Bug#594285).
[ Guillem Jover ]
* Update make-new-tarball.sh to exclude git instead of CVS paths.
* Refresh patches with -pab to allow migration to source format 3.0 (quilt).
* Switch to source format “3.0 (quilt)”:
- Remove quilt from Build-Depends.
- Remove patchsys-quilt.mk include from debian/rules.
[ Michael Banck ]
* debian/control (Uploaders): Removed Marcus Brinkmann. (Closes: #503564)
[ Jeremie Koenig ]
* debian/control: Build-Depend on libparted-dev.
* debian/local/partman/commit.d/40hurd_reload-partitions: New file for
hurd-udeb, make partman restart the partition translators after the
partition table has been changed.
* debian/hurd-udeb.install: Install file above.
* debian/local/runsystem (hurd-udeb): Start mach-defpager.
* debian/hurd-udeb.dirs: Include /servers.
* Sort out the way device and server nodes are created:
- debian/patches/makedev_keep_options.patch: Introduces the -k and -K
options to MAKEDEV, respectively to keep active translators running or
leave existing files alone completely.
- debian/patches/makedev_parted_store.patch: MAKEDEV -p will use parted
instead of device stores for disk partitions.
- debian/local/setup-translators: New script installed in /usr/lib/hurd,
uses MAKEDEV's new options to create all the necessary device and
server nodes.
- debian/local/runsystem (hurd-udeb): Uses setup-translators in "minimal
mode" to prepare the initrd when the installer is started. Parted
stores are used to avoid problems when reloading the partition table.
- debian/hurd.postinst: Uses setup-translators to create missing nodes on
upgrades (on initial installs, debootstrap will use the
setup-translators script from the installed hurd package to setup the
devices and servers itself).
* debian/local/finish-install.d/51hurd_config-target-network: copy the
/servers/socket/2 translator settings into the target system.
* debian/hurd-udeb.links: Include the unifont.bdf link in hurd-udeb too.
-- Samuel Thibault <sthibault@debian.org> Fri, 27 Aug 2010 13:12:12 +0200
hurd (20090404-2) unstable; urgency=low
* debian/patches/libpthread_no_recursive_mutex_initializer.patch: Remove
unused patch.
* debian/patches/procfs.patch: Fix a couple of memory leaks, fix swap size
report.
* debian/control: Add missing comma in Build-Depends.
* debian/patches/pfinet-gcc-4.3-fix.patch: Cherry-pick upstream patch to fix
build with gcc-4.3
* debian/rules: Set CC to gcc-4.3 instead of gcc-4.2.
* debian/control: Build-Depend on gcc-4.3 instead of gcc-4.2.
(Closes: Bug#533782)
* debian/control: Add Provides: hurd to the hurd-udeb package, to meet
dependencies.
* debian/rules: Add --add-udeb="hurd-udeb" option to dh_makeshlibs
invocation for the hurd package, to fix udeb dependency generation.
* debian/patches/MAKEDEV.patch: New patch to use bash for MAKEDEV.
(Closes: Bug#548587)
* debian/patches/libdiskfs-rename.patch: New patch to fix ext2fs hang on
renaming directory to something/.
-- Samuel Thibault <sthibault@debian.org> Sun, 11 Oct 2009 04:38:02 +0200
hurd (20090404-1) unstable; urgency=low
[ Michael Banck ]
* New snapshot from CVS.
+ debian/patches/diskfs_lookup_error_fix.patch: Removed, applied upstream.
+ debian/patches/libpthread_mutex-no-include.patch: Likewise.
+ debian/patches/libpthread_pthreadtypes_h.patch: Likewise.
+ debian/patches/libpthread_spin-lock-inline.patch: Likewise.
+ debian/patches/lock-memory-clobber.patch: Likewise.
+ debian/patches/pflocal-port-leak.patch: Likewise.
+ debian/patches/libpthread_pthreadexit-safety.patch: Removed, no longer
needed.
+ debian/patches/libpthread_tls.patch: Refreshed.
* Change packaging to no tarball-in-tarball and quilt.
+ debian/control (Build-Depends): Added quilt.
+ debian/rules (DEB_TAR_SRCDIR): Removed.
+ debian/rules (tarball.mk) No longer include it.
+ debian/rules (simple-patchsys.mk) Replaced with ...
+ debian/rules (patchsys-quilt.mk) ... this.
+ debian/patches/series: New file.
+ debian/rules (build/hurd): Replace build-tree with $(DEB_SRCDIR).
+ debian/rules (install/hurd): Likewise.
+ debian/hurd-doc.docs: Adjust paths.
* debian/hurd.postinst: Install ps alternatives link in /bin, not
/usr/bin.
* debian/hurd.postinst: Install /proc as passive translator only.
* debian/patches/uptime_w_path_fix.patch: New patch, run /usr/bin/w instead
of /bin/w.
* debian/rules: Install fakeroot, uptime and vmstat into /usr/bin, not /bin.
* debian/rules (binary-predeb/hurd): Adjust paths.
* debian/hurd.install: Likewise.
* debian/hurd-udeb.install: Likewise.
* debian/hurd.dirs: Added /usr/bin.
* debian/hurd.postinst: Update accordingly.
* debian/patches/libpthread_mutex_owner.patch: New patch, fix a hang in
libpthread, by Neal Walfield.
[ Samuel Thibault ]
* debian/patches/thread-throttle.patch: Remove patch, makes ext2fs hang on
big syncs.
* debian/control (Build-Depends): Bump libc0.3-dev to (>= 2.9).
* debian/patches/stat_round.patch: New temporary patch, fixes symlink issues
with tar.
* debian/patches/dir_acces_fix.patch: New patch, fixes ext2fs crashes.
* debian/patches/libports_stability.patch: New patch to keep the old
behavior of libports.
* debian/patches/libpthread_fix.patch: New patch from Thomas Schwinge to fix
libpthread.
* debian/patches/libpthread_setcancel.patch: New patch to fix configuration
of octave3.0.
* debian/patches/extern_inline_fix.patch: New patch from Marc Dequène to
fix extern inline declarations.
* debian/patches/exec_fix.patch: New patch to fix random hang of exec.
* debian/patches/libpthread_recursive_mutex_initializer.patch: New patch
to fix the recursive mutex initializers usage in libraries not linking
against libpthread.
* debian/control: Now using Standards-Version 3.8.2 (no changes needed).
* debian/control: Add myself to uploaders.
[ Guillem Jover ]
* Change hurd-dbg section to debug.
-- Samuel Thibault <sthibault@debian.org> Sun, 28 Jun 2009 22:19:07 +0000
hurd (20080607-6) unstable; urgency=low
* debian/rules (install/hurd): Move away ps, uptime, vmstat and w in order
to have them handled by update-alternatives.
* debian/hurd.install: Update accordingly.
* debian/hurd-udev.install: Likewise.
* debian/rules (SUID_PROGRAMS): Likewise.
* debian/hurd.postinst: Run update-alternatives for ps, uptime, vmstat and
w.
* debian/hurd.postinst: Setup /proc if it hasn't been already.
-- Michael Banck <mbanck@debian.org> Fri, 12 Sep 2008 22:58:08 +0200
hurd (20080607-5) unstable; urgency=low
* debian/patches/procfs.patch: New patch, implements a /proc translator, by
Madhusudan C.S., taken from a CVS branch.
-- Michael Banck <mbanck@debian.org> Tue, 02 Sep 2008 00:24:36 +0200
hurd (20080607-4) unstable; urgency=low
[ Samuel Thibault ]
* debian/patches/pflocal-port-leak.patch: New patch to fix port leaks in
pflocal which was making tcl-related builds hang.
* debian/patches/lock-memory-clobber.patch: New patch to fix lock safety.
* debian/patches/libpthread_mutex-no-include.patch: New patch to drop
useless (and problematic) inclusion from mutex.h.
* debian/patches/libpthread_spin-lock-inline.patch: New patch to split off
inlines from spin-lock.h into spin-lock-inline.h to avoid including too
many headers from pthreadtypes.h (fixes glibc 2.7-13 compilation).
* debian/patches/libpthread_pthreadtypes_h.patch: Remove comma at end of
enumeration.
* debian/patches/diskfs_lookup_error_fix.patch: New patch to fix deadlock in
lookup error conditions.
-- Michael Banck <mbanck@debian.org> Fri, 29 Aug 2008 22:53:20 +0200
hurd (20080607-3) unstable; urgency=low
[ Samuel Thibault ]
* debian/patches/libpthread_pthreadtypes_h.patch: fix patch into really
installing <pthread/pthreadtypes.h>.
-- Michael Banck <mbanck@debian.org> Sat, 12 Jul 2008 02:23:21 +0200
hurd (20080607-2) unstable; urgency=low
[ Samuel Thibault ]
* debian/patches/libpthread_pthreadtypes_h.patch: New patch to get pthread
types into <pthread/pthreadtypes.h>, which <bits/pthreadtypes.h> will be
able to include.
* debian/patches/libpthread_stubs.patch: Fix build.
* debian/patches/libpthread_pthreadexit-safety.patch: New patch to fix a
race during thread exit. Fixes e.g. libatomic-ops' testsuite, and
probably also a lot of others'.
-- Michael Banck <mbanck@debian.org> Fri, 11 Jul 2008 15:33:27 +0200
hurd (20080607-1) unstable; urgency=low
* New snapshot from CVS.
+ debian/patches/ext2fs_large_stores.patch: Removed copyright year
changes.
+ debian/patches/libpthread_getattr.patch: Removed, applied upstream.
+ debian/patches/libpthread_inline.patch: Likewise.
+ debian/patches/mmx.patch: Likewise.
+ debian/patches/libpthread_stubs.patch: Updated, one hunk got applied
upstream.
* debian/rules (CC): New variable, set to gcc-4.2.
* debian/control (Build-Depends): Added gcc-4.2.
-- Michael Banck <mbanck@debian.org> Wed, 11 Jun 2008 01:02:01 +0200
hurd (20071119-2) unstable; urgency=low
[ Michael Banck ]
* debian/local/menu.lst: Add some comments.
* debian/patches/libpthread_getattr.patch: New patch, implements
pthread_getattr_np, taken from CVS.
[ Guillem Jover ]
* debian/copyright: Update FSF address.
* debian/control: Use binary:Version and source:Version instead of
deprecated Source-Version substvar.
* debian/changelog: Fix Neal's mail address in ancient entry.
* debian/control: Line-wrap Build-Depends and Uploaders fields.
* debian/control: Now using Standards-Version 3.7.3 (no changes needed).
* debian/control: Move packages from base Section to admin.
* debian/control: Add Homepage field.
* debian/control: Add Vcs-Browser and Vcs-Svn fields.
[ Samuel Thibault]
* debian/patches/mmx.patch: New patch to align the stack of created
threads.
* debian/patches/thread-throttle.patch: New patch, add a fix for ext2fs to
keep the superblock in memory so as to avoid a thread creation dead lock.
* debian/patches/libpthread_stubs.diff: New patch, add generation of
<gnu/stubs-pthread.h> to advertise libpthread stubs.
-- Michael Banck <mbanck@debian.org> Sun, 18 May 2008 20:22:32 +0200
hurd (20071119-1) unstable; urgency=low
* New snapshot from CVS.
+ Includes a port of Linux' IPv6 support by Stefan Siegl.
(Closes: #274156)
+ debian/patches/glibc_stat_updates.patch: Removed, applied upstream.
+ debian/patches/libpthread_no-inline.patch: Likewise.
+ debian/patches/pfinet_-fno-strict-aliasing.patch: Likewise.
+ debian/patches/servers.boot-update.patch: Likewise.
+ debian/patches/siocgifhwaddr.patch: Likewise.
+ debian/patches/pfinet_dhcp.patch: Rediffed.
+ debian/patches/pflocal.patch: Likewise.
[ Samuel Thibault ]
* debian/local/soundcard.h: Add _PATCHKEY definition.
* debian/patches/libpthread_tls.patch: New patch, replaces
debian/patches/libpthread_tls_transitional.patch.
* debian/patches/libpthread_inline.patch: New patch to fix extern inlines
with gcc 4.3.
[ Michael Banck ]
* debian/patches/runsystem_setup_pflocal.patch: New patch, sets up
pflocal during bootup if this has not been done before (in the install
case).
* debian/hurd.dirs: Added servers/socket.
* debian/patches/init_try_runsystem.gnu.patch: New patch, try
/libexec/runsystem.gnu as well if /libexec/runsystem is not
available.
* debian/patches/tmp_exec_startup.patch: New patch, try to attach the
exec server to /tmp/exec if /servers/exec is not yet available.
* debian/patches/diskfs_no_inherit_dir_group.patch: Update with better
patch by Thomas Schwinge.
* debian/patches/pfinet_dhcp.patch: Updated with new patch by Christian
Dietrich and Stefan Siegl.
* debian/local/menu.lst: New file.
* debian/hurd.examples: Ship it.
-- Michael Banck <mbanck@debian.org> Tue, 08 Jan 2008 01:10:07 +0100
hurd (20070606-3) unstable; urgency=low
[ Michael Banck ]
* debian/patches/patches/servers.boot-update.patch: New patch, updates
the servers.boot script to use the currently used Grub module lines.
* debian/rules (install/hurd::): Install release/servers.boot into /boot.
* debian/patches/pfinet_-fno-strict-aliasing.patch: New patch, adding
-fno-strict-aliasing to pfinet's CFLAGS to fix compilation with gcc-4.2,
taken from CVS.
* debian/hurd.dirs: Added /boot.
[ Samuel Thibault ]
* debian/patches/patches/libpthread_no-inline.patch: New patch, removes
extern inlines to fix g++ and gettext FTBFS, by Samuel Thibault.
-- Michael Banck <mbanck@debian.org> Thu, 9 Aug 2007 17:08:01 +0200
hurd (20070606-2) unstable; urgency=low
* debian/patches/libpthread_tls_transitional.patch: New patch,
implements TLS for libpthread, by Samuel Thibault.
* debian/patches/libpthread_weak_inline.patch: Removed.
-- Michael Banck <mbanck@debian.org> Sun, 22 Jul 2007 23:45:39 +0200
hurd (20070606-1) unstable; urgency=low
* New snapshot from CVS.
+ Includes a patch to make pthread_* function aliases strong.
(Closes: #407208)
+ debian/patches/console_ioperms.patch: Removed, fixed upstream.
+ debian/patches/no-debian-dir.patch: Removed, applied upstream.
* debian/local/soundcard.h: Updated by Samuel Thibault.
* debian/control (Build-Depends): Added libc0.3-dev (>= 2.5-5).
* debian/copyright: Clarify that the package is maintained by the
Debian GNU Hurd maintainers and no longer by upstream.
* debian/control (Build-Depends): Bumped gnumach-dev version to
2:1.3.99.dfsg.cvs20070526-1.
* debian/control (hurd/Depends): Bumped gnumach version to
2:1.3.99.dfsg.cvs20070526-1.
-- Michael Banck <mbanck@debian.org> Wed, 6 Jun 2007 18:54:37 +0200
hurd (20060825-2) unstable; urgency=low
* Rebuilt against gnumach_1:20060826.dfsg.1-1.
* debian/control (hurd/Depends): Bump versioned dependency of gnumach
to 1:20060826.dfsg.1-1.
* debian/control (Build-Depends): Added versioned Build-Depends on
gnumach-dev 1:20060826.dfsg.1-1.
* debian/control (Build-Depends-Indep): Moved texi2html to ...
* debian/control (Build-Depends): ... here.
-- Michael Banck <mbanck@debian.org> Wed, 30 Aug 2006 00:17:15 +0200
hurd (20060825-1) unstable; urgency=low
* New snapshot from CVS.
* debian/patches/beta_make.patch: Removed, fixed upstream.
* debian/patches/ext2fs_large_stores.patch: Resynced.
* debian/patches/pfinet_dhcp.patch: Likewise.
* debian/patches/ftpfs_fix.patch: Removed, applied upstream.
* debian/patches/gcc-4.0_fixes.patch: Likewise.
* debian/patches/libpthread_need_clockid_t.patch: Likewise.
* debian/patches/libstore_attribute.patch: Likewise.
* debian/patches/magic_port_leak.patch: Likewise.
* debian/patches/pfinet_packet_filter.diff: Likewise.
* debian/patches/semaphore_restrict_fix.patch: Likewise.
* debian/rules (build/hurd::): Assemble all upstream ChangeLogs to one
big ChangeLog.
* debian/rules (DEB_INSTALL_CHANGELOGS_ALL): New variable, install it.
* debian/patches/no_shm_makedev.diff: Renamed to ...
* debian/patches/makedev.diff: ... this.
* debian/patches/console_utf-8.patch: New patch, setting the Hurd
console to UTF-8 by default. (Closes: #348260)
-- Michael Banck <mbanck@debian.org> Sat, 26 Aug 2006 01:00:41 +0200
hurd (20050513-8) unstable; urgency=low
* debian/patches/pfinet_packet_filter: New patch, adding support for
gathering incoming packets, taken from CVS.
* debian/hurd.install: Install hurd.msgids into /usr/share/msgids.
* debian/hurd.dirs: Added /usr/share/msgids.
* debian/patches/sysvshm.patch: Removed, it was causing deadlocks.
-- Michael Banck <mbanck@debian.org> Fri, 4 Aug 2006 15:54:09 +0200
hurd (20050513-7) unstable; urgency=low
* debian/patches/diskfs_no_inherit_dir_group.patch: New patch,
enabling SysV style behaviour (i.e. adopt the user's gid, not the
one from the parent directory) for group permissions of newly
created files by default.
* debian/rules (install/hurd::): Install motd.UTF8 into /etc.
* debian/patches/install-msgids.diff: New patch, install RPC message
IDs in $(datadir)/msgids, by Alfred M. Szmidt.
* debian/hurd.postinst: Create symlinks for /dev/kbd and /dev/mouse to
/dev/cons/{kbd,mouse} if not present already. (Closes: #355002)
* debian/patches/no_shm_makedev.diff: New patch, skip /dev/shm device
when generating the standard devices.
* debian/hurd.postinst: Create /dev/shm directory if not present
already.
* debian/patches/ext2fs_large_stores.patch: Include <hurd/pager.h>
rather than "../libpager/pager.h" and add pager to libdiskfs'
HURDLIBS.
* local/soundcard.h: New file by Samuel Thibault.
* debian/rules (install/hurd-dev::) New rule, install soundcard.h
in debian/tmp/include/sys.
-- Michael Banck <mbanck@debian.org> Tue, 25 Apr 2006 19:30:33 +0200
hurd (20050513-6) unstable; urgency=low
* debian/patches/console_ioperms.patch: New patch by Samuel Thibault.
* debian/control (hurd): Add versioned Depends on gnumach 1:20050801-3.
* debian/patches/beta_make.patch: New patch, support newer make.
-- Michael Banck <mbanck@debian.org> Thu, 12 Jan 2006 02:42:36 +0100
hurd (20050513-5) unstable; urgency=low
* debian/patches/thread-throttle.patch: New patch by Sergio Lopez.
* debian/patches/gcc-4.0_fixes.patch: New patch by Thomas Schwinge.
* debian/patches/libstore_attribute.patch: New patch by Roland
McGrath, taken from CVS.
* debian/rules (CC): Removed.
* debian/control (Build-Depends): Removed gcc-3.3.
* debian/patches/libpthread_weak_inline.patch: New patch by Neal
Walfield.
-- Michael Banck <mbanck@debian.org> Sun, 11 Dec 2005 13:31:11 +0100
hurd (20050513-4) unstable; urgency=low
* debian/rules (DEB_CONFIGURE_USER_FLAGS): Build iso9660fs.static
as well.
* debian/hurd-udeb.install: Added iso9660fs.static.
* debian/patches/hurd_console_startup.patch: New patch, adding
support for starting the Hurd console on bootup.
* debian/hurd.dirs: Added `etc/default'.
* debian/hurd-console.default: New file.
* debian/rules (install/hurd::) Install it into debian/hurd/etc/default.
* debian/hurd.postinst: Removed creation of user `login'.
* debian/NEWS: Mention the possibility of starting the Hurd console
on bootup.
* debian/patches/magic_port_leak.patch: New patch by Marcus
Brinkmann, taken from CVS.
* debian/patches/ftpfs_fix.patch: New patch by Samuel Thibault.
* debian/patches/sysvshm.patch: New patch by Marcus Brinkmann.
* debian/patches/libpager_update_seqno.patch: New patch by Sergio Lopez.
* debian/patches/semaphore_restrict_fix.patch: New patch by Samuel
Thibault. (Closes: #320121)
* debian/control (Build-Depends): Added gcc-3.3.
* debian/rules (CC): New variable, set to gcc-3.3.
-- Michael Banck <mbanck@debian.org> Sun, 28 Aug 2005 14:45:55 +0200
hurd (20050513-3) unstable; urgency=low
* debian/control (hurd-doc): Fix description to indicate the manual
is included in HTML and not PostScript format. (Closes: #309748)
* debian/control (hurd-dev): Provide/Replace/Conflict libsem-dev.
* debian/control (Build-Depends): Version dependency on debhelper to
>= 4.2.
* debian/control (hurd-udeb): New package.
* debian/hurd-udeb.install: New file.
* debian/patches/libpthread_need_clockid_t.patch: Updated from CVS.
-- Michael Banck <mbanck@debian.org> Thu, 9 Jun 2005 01:40:31 +0200
hurd (20050513-2) unstable; urgency=low
* debian/patches/libpthread_need_clockid_t.patch: New patch by Neal
Walfield.
* debian/patches/pflocal.patch: New patch by Neal Walfield.
-- Michael Banck <mbanck@debian.org> Tue, 17 May 2005 18:37:08 +0200
hurd (20050513-1) unstable; urgency=low
* New snapshot from CVS.
+ Contains a POSIX semaphore implementation by Neal Walfield.
+ Contains more libpthread fixes for test suites by Neal Walfield.
* debian/hurd.postinst: Handle /bin/fakeroot-hurd by alternatives.
-- Michael Banck <mbanck@debian.org> Sun, 15 May 2005 13:00:12 +0200
hurd (20050507-1) unstable; urgency=low
* New snapshot from CVS.
+ Contains libpthread fixes for various test suites by Neal
Walfield.
* debian/changelog (20050119-3): Added overlooked Closes: tag.
* debian/control (hurd-dbg/Priority:) Set to extra as requested by
the ftp-masters.
* debian/patches/isofs_boot.patch: Removed, applied upstream.
* debian/patches/libpthread_linker_script.patch: Likewise.
-- Michael Banck <mbanck@debian.org> Sat, 7 May 2005 15:28:51 +0200
hurd (20050119-3) unstable; urgency=low
* debian/control (hurd-dbg): New package.
* debian/rules (DEB_DH_STRIP_ARGS): Add support for hurd-dbg.
* debian/hurd-dbg.dirs: New file.
* debian/control (hurd-doc): New package. (Closes: #264858)
(Build-Depends-Indep): Added texi2html.
* debian/rules (build/hurd::): Generate html version of the manual.
* debian/hurd-doc.info: New file.
* debian/hurd-doc.docs: New file.
-- Michael Banck <mbanck@debian.org> Fri, 15 Apr 2005 23:03:34 +0200
hurd (20050119-2) unstable; urgency=low
[ Michael Banck ]
* debian/hurd-dev.install: Install development libraries into /lib,
not /usr/lib.
* debian/hurd.install: Install Hurd console drivers into
/usr/lib/hurd/console, not /lib/hurd/console.
* debian/copyright: Clarify that the FSF is the copyright holder.
* debian/copyright: Update download location to Savannah's GNU Hurd
project page.
-- Michael Banck <mbanck@debian.org> Mon, 4 Apr 2005 12:08:40 +0200
hurd (20050119-1) unstable; urgency=low
* New snapshot from CVS.
+ Contains libpthread header fixes by Neal Walfield and
Pietro Ferrari. (Closes: #184344)
+ Contains console repeaters by Marco Gerards.
+ Contains mount argp fixes. (Closes: #151407)
[ Michael Banck]
* debian/patches/exec.patch: Removed, no longer needed.
* debian/patches/mouse.patch: Likewise.
* debian/patches/console_repeater.patch: Removed, applied upstream.
* debian/patches/libcons_repeater.patch: Likewise.
* debian/patches/netfs_io_select.patch: Likewise.
* debian/patches/netfs_nonblock.patch: Likewise.
* debian/patches-contrib/kbd.patch: Removed, no longer needed.
* debian/patches/libpthread_linker_script.patch: New patch. Install
libpthread.a linker script correctly. (Closes: #291307)
* debian/rules (install/hurd::): Rename /bin/fakeroot to
/bin/fakeroot-hurd.
* debian/control (hurd): Removed fakeroot from Provides:, Replaces:
and Conflicts:. (Closes: #293511)
* debian/hurd.install: Install debian/tmp/bin/fakeroot-hurd instead
of debian/tmp/bin/fakeroot.
* NEWS: New file. Explain the console-client command line interface
changes.
* debian/patches/siocgifhwaddr.patch: New patch by Marco Gerards.
* debian/patches/isofs_boot.patch: New patch by Alfred M. Szmidt.
-- Michael Banck <mbanck@debian.org> Wed, 23 Feb 2005 20:52:07 +0100
hurd (20040508-6) unstable; urgency=low
[ Michael Banck ]
* debian/patches/pfinet_dhcp.patch: New patch by Marco Gerards.
-- Michael Banck <mbanck@debian.org> Sat, 15 Jan 2005 21:04:33 +0100
hurd (20040508-5) unstable; urgency=low
[ Michael Banck ]
* debian/patches-contrib/ext2fs_20040930.diff: Moved to ...
* debian/patches/ext2fs_large_stores.diff: ... here, updated from
Ognyan Kulev's 20041111 version. Set DISK_CACHE_BLOCKS to
65536 in ext2fs.h.
-- Michael Banck <mbanck@debian.org> Sun, 12 Dec 2004 17:54:32 +0100
hurd (20040508-4) unstable; urgency=low
[ Michael Banck ]
* debian/changelog: Added back 20040301-1 entry which got lost.
* debian/hurd.install: Do not install /sbin/fsck. (Closes: #272655)
* debian/patches/rc.patch: Updated to use e2fsprog's /sbin/fsck
command-line options. Make sure the root file system is read-only
during the fsck run, and update it to be writable again if fsck
succeeds. (Closes: #273508)
* debian/patches-contrib/ext2fs_20040930.diff: New file. Just put it
in debian/patches and recompile the package to get (experimental)
support for ext2 files systems larger than 2GB.
* debian/control (Maintainer): Changed Maintainer address.
[ Guillem Jover ]
* debian/hurd.postinst:
- Move /bin/login suid root chmod to debian/rules.
- Set suid bit to other binaries (/bin/ps, /bin/ids, /bin/w).
(Closes: #273507)
Thanks Ognyan Kulev <ogi@fmi.uni-sofia.bg>.
-- Michael Banck <mbanck@debian.org> Thu, 7 Oct 2004 20:11:38 +0200
hurd (20040508-3) unstable; urgency=low
* debian/local/rc: Removed.
* debian/patches/rc.patch: New file. (Closes: #254147)
* debian/hurd.install: Install tmp/libexec/rc.
* debian/patches/console_switch3.patch: Removed.
* debian/patches/console_repeater.patch: New patch by Marco Gerards.
* debian/patches/libcons_repeater.patch: New patch by Marco Gerards.
* debian/patches/netfs_io_select.patch: New patch by Marco Gerards.
* debian/patches/netfs_nonblock.patch: New patch by Marco Gerards.
* Rebuilt against glibc_2.3.2.ds1-16.
* debian/hurd.postinst: Make sure /bin/login is suid. (Closes: #251863)
* debian/control (Uploaders): Added myself.
* debian/hurd.postinst: Only create the tty devices if they do not
exist already. (Closes: #268347)
-- Michael Banck <mbanck@debian.org> Thu, 9 Sep 2004 22:32:07 +0200
hurd (20040508-2) unstable; urgency=low
* Fix typo in postinst. (Closes: #253662)
Thanks to Michael Banck.
* Support /usr tree in startup scripts (Closes: #229572)
Thanks to Guillem Jover
-- Jeff Bailey <jbailey@raspberryginger.com> Fri, 11 Jun 2004 11:17:26 -0400
hurd (20040508-1) unstable; urgency=low
* New snapshot from CVS.
* Switch packaging to cdbs
* Do not provide /boot/serverboot or /boot/servers.boot
* Update policy to 3.6.1.0
* Do not provide update-rc.d, use the one from sysvinit instead
(Closes: #246813) - Thanks to Robert Millan
* Do not provide /sbin/fsck, use the one from e2fsprogs instead
Thanks to Robert Millan
-- Jeff Bailey <jbailey@raspberryginger.com> Sat, 8 May 2004 16:55:18 -0400
hurd (20040301-1) unstable; urgency=low
* New snapshot from CVS.
kbd, mouse as usual. exec/exec.c PT_GNU_STACK work-around.
Provide example entries for new console in config/ttys.
* debian/rules: Do not call autoconf.
* debian/control: Remove build dependency autoconf.
-- Marcus Brinkmann <brinkmd@debian.org> Mon, 1 Mar 2004 01:36:23 +0200
hurd (20021118-1) unstable; urgency=low
* New snapshot from CVS.
kbd, mouse as usual, with bug fixes from David Walter.
Change terminal type to mach-color.
-- Marcus Brinkmann <brinkmd@debian.org> Tue, 18 Nov 2002 21:32:22 +0200
hurd (20021011-1) unstable; urgency=low
* New snapshot from CVS.
kbd, mouse as usual.
Build libpthread.
debian/control: Add libncursesw5-dev as build-dependency.
debian/shlibs: Add libpthread
debian/control: Add myself as an uploader.
-- Neal H. Walfield <neal@debian.org> Fri, 11 Oct 2002 21:42:21 -0400
hurd (20020918-1) unstable; urgency=low
* New snapshot from CVS.
kbd, mouse as usual.
Change terminal type to mach-color.
-- Marcus Brinkmann <brinkmd@debian.org> Tue, 18 Sep 2002 23:13:06 +0200
hurd (20020804-1) unstable; urgency=low
* New snapshot from CVS.
kbd, mouse as usual.
Change terminal type to mach-color.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 4 Aug 2002 20:46:28 +0200
hurd (20020523-1) unstable; urgency=low
* New snapshot from CVS.
kbd, mouse as usual.
Change terminal type to mach-color.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 23 May 2002 15:29:40 +0200
hurd (20020418-1) unstable; urgency=low
* New snapshot from CVS.
kbd, mouse as usual.
Change terminal type to mach-color.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 18 Apr 2002 15:22:39 +0200
hurd (20011105-1) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual (well, the intention was there :).
Change terminal type to mach-color.
Compiled with -O2 rather than -O3.
-- Marcus Brinkmann <brinkmd@debian.org> Mon, 5 Nov 2001 00:00:26 +0100
hurd (20011016-1) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
Compiled with -O2 rather than -O3.
-- Marcus Brinkmann <brinkmd@debian.org> Tue, 16 Oct 2001 19:43:21 +0200
hurd (20011013-1) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
Compiled with -O2 rather than -O3.
* debian/rules: Change way how to find executables by Kevin Kreamer.
* debian/control: Add `file' to build dependencies by Kevin Kreamer.
-- Marcus Brinkmann <brinkmd@debian.org> Sat, 13 Oct 2001 01:05:30 +0200
hurd (20010817-2) unstable; urgency=low
* Include a copy of update-rc.d, moved from dpkg to init providing
package.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 2 Sep 2001 19:40:00 +0200
hurd (20010817-1) unstable; urgency=low
* New snapshot from CVS, closes: #105476, #39894.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
Compiled with -O2 rather than -O3.
-- Marcus Brinkmann <brinkmd@debian.org> Fri, 17 Aug 2001 22:16:01 +0200
hurd (20010718-1) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
Compiled with -O2 rather than -O3.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 18 Jul 2001 21:43:52 +0200
hurd (20010608) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
Compiled with -O2 rather than -O3.
-- Marcus Brinkmann <brinkmd@debian.org> Fri, 8 Jun 2001 23:02:47 +0200
hurd (20010527) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
-- Marcus Brinkmann <brinkmd@debian.org> Sat, 27 May 2001 01:34:21 +0200
hurd (20010426) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
storeio hack to prevent double activation.
-- Marcus Brinkmann <brinkmd@debian.org> Fri, 27 Apr 2001 00:09:56 +0200
hurd (20010311) unstable; urgency=low
* New snapshot from CVS.
* Additional patches:
kbd, mouse as usual.
Change terminal type to mach-color.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 11 Mar 2001 22:45:21 +0100
hurd (20010111) unstable; urgency=low
* New snapshot from CVS, containing lots of small bug fixes, and:
+ Together with gnumach 1.2-9, you can access large stores with
storeinfo, storeread (because libstore uses the new interface in
gnumach, and off64_t internally).
+ pfinet contains support for network ioctls. The corresponding
changes in the glibc library are not available in Debian yet, though.
* streamdev is renamed to streamio.
-- Marcus Brinkmann <brinkmd@debian.org> Fri, 12 Jan 2001 00:06:41 +0100
hurd (20001204) unstable; urgency=low
* New snapshot from CVS, with a couple of bug fixes:
pfinet: Don't leak references.
ext2fs, ufs: Avoid a dn_set_?time vs sync thread race.
Corretly deny too long filenames.
nfsd: Fix a couple of memory leaks.
* Additional patchs:
libdiskfs: Don't crash when symlink target is the empty string.
streamdev, kbd, mouse: New translators for X and klog device.
-- Marcus Brinkmann <brinkmd@debian.org> Mon, 4 Dec 2000 15:18:39 +0100
hurd (20001127) unstable; urgency=low
* New snapshot from CVS, really fixes isofs now.
-- Marcus Brinkmann <brinkmd@debian.org> Mon, 27 Nov 2000 21:07:03 +0100
hurd (20001126) unstable; urgency=low
* New snapshot from CVS, closes: #68417, #69281, #68626
* Fix in 20001030 closes: #72319
* debian/control: Add build dependencies, closes: #75734
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 26 Nov 2000 05:53:19 +0100
hurd (20001030) unstable; urgency=low
* New snapshot from CVS.
* Still contains all the goodies, streadev, kbd, mouse. Now opening
kbd, mouse more than once doesn't crash them (thanks Erik Verbruggen
<ejv@cs.kun.nl>)
* sutils/MAKEDEV.sh: kmsg is really klog.
-- Marcus Brinkmann <brinkmd@debian.org> Tue, 30 Oct 2000 18:02:29 +0200
hurd (20000921) unstable; urgency=low
* New snapshot from CVS
* Add streamdev by OKUJI Yoshinori
(source: ftp://alpha.gnu.org/contrib/okuji/hurd/streamdev-19990920.tar.gz)
* Add kbd and mouse by UCHIYAMA Yasushi <uch@nop.or.jp>.
* sutils/MAKEDEV.sh: Add kbd and kmsg. No sense to add mouse, as you need
to configure it (see /hurd/mouse --help).
-- Marcus Brinkmann <brinkmd@debian.org> Sat, 23 Sep 2000 04:27:58 +0200
hurd (20000803) unstable; urgency=low
* New snapshot from CVS.
* isofs: Patch to fix symlink handling.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 3 Aug 2000 21:09:44 +0200
hurd (20000726) unstable; urgency=low
* New snapshot from CVS.
* Fixes the infamous zero hole bug (actually both of them).
-- Marcus Brinkmann <brinkmd@debian.org> Wed, 26 Jul 2000 02:24:06 +0200
hurd (20000703) unstable; urgency=low
* New snapshot from CVS.
* exec/hashexec.c (check_hashbang: Fix off by one error in line 178.
Patch by Kalle Olavi Niemital.
-- Marcus Brinkmann <bug-hurd@gnu.org> Mon, 3 Jul 2000 00:44:47 +0200
hurd (20000130) unstable; urgency=low
* New snapshot from CVS. Closes: Bug#54282, Bug#40302, Bug#56076.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 30 Jan 2000 14:55:39 +0100
hurd (19991209) unstable; urgency=low
* New snapshot from CVS.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 9 Dec 1999 23:43:23 +0100
hurd (19991022) unstable; urgency=low
* New snapshot from CVS.
* libdiskfs/init-startup.c: Disable periodic syncing before shutting down.
This fixes the fs-unclean-on-reboot bug!
-- Marcus Brinkmann <brinkmd@debian.org> Fri, 22 Oct 1999 21:32:02 +0200
hurd (19991004) unstable; urgency=high
* New snapshot from CVS.
term: Realize bogus devices.
ext2fs: Important bug fixes!
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 3 Oct 1999 18:01:17 +0200
hurd (19990923) unstable; urgency=low
* New snapshot from CVS.
MAKEDEV: pty created with mode 0666.
Implements pathconf for libdiskfs and libnetfs.
Various bug fixes.
* Development package now includes pic libraries.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 19 Sep 1999 19:29:00 +0200
hurd (19990907) unstable; urgency=low
* New snapshot from CVS.
* gzip /boot/serverboot to /boot/serverboot.gz
-- Marcus Brinkmann <brinkmd@debian.org> Mon, 23 Aug 1999 15:12:10 +0200
hurd (19990725) unstable; urgency=low
* New snapshot from CVS.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 25 Jul 1999 16:16:03 +0200
hurd (19990714) unstable; urgency=low
* New snapshot from CVS.
* debian/rules: etc/motd is in base-files, do not include it.
* Activate split-init.
-- Marcus Brinkmann <brinkmd@debian.org> Wed, 14 Jul 1999 16:38:00 +0200
hurd (19990616) unstable; urgency=low
* New snapshot from CVS.
* Now contains info and ps documentation.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 17 Jun 1999 17:35:54 +0200
hurd (19990524) unstable; urgency=low
* New snapshot from CVS.
-- Marcus Brinkmann <brinkmd@debian.org> Mon, 24 May 1999 15:09:45 +0200
hurd (19990523) unstable; urgency=low
* New snapshot from CVS, fixes: #38062, #37670, #37878, #37944.
-- Marcus Brinkmann <brinkmd@debian.org> Mon, 24 May 1999 01:08:26 +0200
hurd (19990517fixed) unstable; urgency=low
* debian/shlibs: corrected.
* exec/hashexec.c: Applied patch by Roland to make it work.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 17 May 1999 00:25:11 +0200
hurd (19990517) unstable; urgency=low
* New snapshot from CVS.
* Add shlibs file.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 16 May 1999 15:28:09 +0200
hurd (19990425-1) unstable; urgency=low
* Put shared library symlinks into the hurd-dev package.
* Clarify instructions in provided servers.boot.
* libfshelp/fetch-root.c: De-patched a change by tb which produced
strange errors.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 29 Apr 1999 22:47:51 +0200
hurd (19990212-2) unstable; urgency=low
* debian/control: Added Depends line for Hurd.
* Update docs to reflect new group maintainership.
* debian/copyright: Hurd libraries are *not* under the LGPL, so add a
clarifying note.
* Put static libraries and header files into /usr/lib and /usr/include
for people without the /usr symlink.
-- Gordon Matzigkeit <bug-hurd@gnu.org> Wed, 17 Feb 1999 15:40:44 -0600
hurd (19990212-1) unstable; urgency=low
* New upstream version from CVS.
* Deleted old libthreads... there's no going back now.
-- Gordon Matzigkeit <gord@debian.org> Fri, 12 Feb 1999 03:25:55 -0600
hurd (19981204-1) unstable; urgency=low
* New upstream release, supposed to work with glibc 2.0.106.
* Commented out use of old libthreads.
-- Marcus Brinkmann <brinkmd@debian.org> Sun, 20 Dec 1998 04:24:40 +0100
hurd (19980915-2) unstable; urgency=low
* exec/hashexec.c: Applied patch by Thomas Bushnell to fix make.
-- Marcus Brinkmann <brinkmd@debian.org> Fri, 6 Nov 1998 23:10:11 +0100
hurd (19980915-1) unstable; urgency=low
* New upstream release.
* debian/rules: Strip all binaries.
* debian/TODO: New file.
-- Marcus Brinkmann <brinkmd@debian.org> Thu, 8 Oct 1998 03:34:40 +0200
hurd (19980716-2) unstable; urgency=low
* Reverted libthreads to provide threadsafe malloc, as we use older
version of glibc2 for now.
* Do not remove size 0 files in 'rules clean', because hurd depends on
them.
* Do not build profiling libraries.
-- Marcus Brinkmann <brinkmd@debian.org> Tue, 4 Aug 1998 21:58:55 +0200
hurd (19980716-1) unstable; urgency=low
* Initial Version.
-- Marcus Brinkmann <brinkmd@debian.org> Tue, 4 Aug 1998 21:58:55 +0200
|