summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2009-05-19 12:01:42 +0200
committerThomas Schwinge <tschwinge@gnu.org>2009-05-19 12:01:42 +0200
commitad1fd23413b674e84fd6d850000a8f6d79a94b07 (patch)
treef228fa24cc86e1e559621a0957c76d2921d2fbbe /hurd
parenta956d8791ffe383fe6fe356fd1035cabe76d4bdd (diff)
Other open porting issues.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/running/debian/porting.mdwn10
-rw-r--r--hurd/running/debian/porting/adduser.mdwn26
-rw-r--r--hurd/running/debian/porting/git-core-2.mdwn46
-rw-r--r--hurd/running/debian/porting/git-core.mdwn25
-rw-r--r--hurd/running/debian/porting/libdbd-sqlite3-perl.mdwn26
-rw-r--r--hurd/running/debian/porting/pth.mdwn15
-rw-r--r--hurd/running/debian/porting/runit.mdwn17
-rw-r--r--hurd/running/debian/porting/socat.mdwn13
8 files changed, 7 insertions, 171 deletions
diff --git a/hurd/running/debian/porting.mdwn b/hurd/running/debian/porting.mdwn
index debe206b..3d25b4b9 100644
--- a/hurd/running/debian/porting.mdwn
+++ b/hurd/running/debian/porting.mdwn
@@ -33,10 +33,14 @@ guidelines.
There is also further information available about [[hurd/porting]].
+[[!map pages="tagged(open_issue_porting) and !tagged(fixed_in_debian) and
+!open_issues and !*/discussion"
+show=title]]
+
[[!inline
-pages="(hurd/running/debian/porting/* or tagged(open_issue_porting)) and
-!tagged(fixed_in_debian) and !*/discussion"
+pages="tagged(open_issue_porting) and !tagged(fixed_in_debian) and
+!*/discussion"
show=0
feeds=no
actions=yes
-rootpage="hurd/running/debian/porting" postformtext="Add a new item titled:"]]
+rootpage="open_issues" postformtext="Add a new item titled:"]]
diff --git a/hurd/running/debian/porting/adduser.mdwn b/hurd/running/debian/porting/adduser.mdwn
deleted file mode 100644
index 72ed6dbf..00000000
--- a/hurd/running/debian/porting/adduser.mdwn
+++ /dev/null
@@ -1,26 +0,0 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-`adduser` does work as expected, but what are these error messages?
-
- $ sudo adduser foo
- Adding user `foo' ...
- Adding new group `foo' (1002) ...
- posix_spawn() error=1073741826
- posix_spawn() error=1073741826
- posix_spawn() error=1073741826
- Adding new user `foo' (1002) with group `foo' ...
- posix_spawn() error=1073741826
- posix_spawn() error=1073741826
- posix_spawn() error=1073741826
- posix_spawn() error=1073741826
- Creating home directory `/home/foo' ...
- Copying files from `/etc/skel' ...
- [...]
diff --git a/hurd/running/debian/porting/git-core-2.mdwn b/hurd/running/debian/porting/git-core-2.mdwn
deleted file mode 100644
index 837608f5..00000000
--- a/hurd/running/debian/porting/git-core-2.mdwn
+++ /dev/null
@@ -1,46 +0,0 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-On the otherwise-idle flubber:
-
- $ git clone git://sources.redhat.com/git/glibc.git
- Initialized empty Git repository in /media/data/home/tschwinge/tmp/glibc/glibc/.git/
- remote: Generating pack...
- remote: Done counting 380933 objects.
- remote: Deltifying 380933 objects...
- remote: 100% (380933/380933) done
- remote: Total 380933 (delta 294166), reused 380686 (delta 294002)
- Receiving objects: 100% (380933/380933), 70.31 MiB | 27 KiB/s, done.
- Resolving deltas: 100% (294166/294166), done.
- error: git-checkout-index: unable to create file iconvdata/ibm1122.c (Interrupted system call)
- error: git-checkout-index: unable to create file localedata/charmaps/IBM862 (Interrupted system call)
- Checking out files: 100% (10676/10676), done.
- $ git status
- # On branch master
- # Changed but not updated:
- # (use "git add <file>..." to update what will be committed)
- #
- # modified: iconvdata/ibm1122.c
- # modified: localedata/charmaps/IBM862
- #
- no changes added to commit (use "git add" and/or "git commit -a")
- $ ls -l iconvdata/ibm1122.c localedata/charmaps/IBM862
- -rw-r--r-- 1 tschwinge tschwinge 0 2008-12-15 15:49 iconvdata/ibm1122.c
- -rw-r--r-- 1 tschwinge tschwinge 0 2008-12-15 15:49 localedata/charmaps/IBM862
-
-So these files are indeed of zero-length in the checked-out tree. Is this
-git's fault or something else's?
-
-Fixing this situation is easy enough:
-
- $ git checkout -- iconvdata/ibm1122.c localedata/charmaps/IBM862
- $ git status
- # On branch master
- nothing to commit (working directory clean)
diff --git a/hurd/running/debian/porting/git-core.mdwn b/hurd/running/debian/porting/git-core.mdwn
deleted file mode 100644
index 9e26d273..00000000
--- a/hurd/running/debian/porting/git-core.mdwn
+++ /dev/null
@@ -1,25 +0,0 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-Depends on [[libdbd-sqlite3-perl]].
-
-Does build, but has test-suite problems (only where libdbd-sqlite3-perl is
-involved, it seems):
-
- [...]
- DBD::SQLite::db table_info failed: database is locked(5) at dbdimp.c line 271 at /media/data/home/tschwinge/tmp/git-core/git-core-1.5.6.5/t/../
- git-cvsserver line 2783, <STDIN> line 17.
- Can't call method "fetchall_hashref" on an undefined value at /media/data/home/tschwinge/tmp/git-core/git-core-1.5.6.5/t/../git-cvsserver line
- 2783, <STDIN> line 17.
- [...]
-
-Stopping the test-stuite (`C-c`), doing a `touch build-arch-stamp`, followed by
-re-running `dpkg-buildpackage` with `-nc` will yield an installable `deb`
-package.
diff --git a/hurd/running/debian/porting/libdbd-sqlite3-perl.mdwn b/hurd/running/debian/porting/libdbd-sqlite3-perl.mdwn
deleted file mode 100644
index 2e6e7134..00000000
--- a/hurd/running/debian/porting/libdbd-sqlite3-perl.mdwn
+++ /dev/null
@@ -1,26 +0,0 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-Does build, but has test-suite problems:
-
- t/02cr_table............ok 1/4DBD::SQLite::db do failed: database is locked(5) at dbdimp.c line 271 at t/02cr_table.t line 10.
- DBD::SQLite::db prepare failed: database is locked(5) at dbdimp.c line 271 at t/02cr_table.t line 11.
- Can't call method "execute" on an undefined value at t/02cr_table.t line 12.
- t/02cr_table............dubious
- Test returned status 118 (wstat 30208, 0x7600)
- DIED. FAILED tests 2-4
- Failed 3/4 tests, 25.00% okay
- t/03insert..............ok 1/11DBD::SQLite::db do failed: database is locked(5) at dbdimp.c line 271 at t/03insert.t line 6.
- # Failed test 2 in t/03insert.t at line 6
- [...]
-
-Stopping the test-stuite (`C-c`), doing a `touch build-stamp`, followed by
-re-running `dpkg-buildpackage` with `-nc` will yield an installable `deb`
-package.
diff --git a/hurd/running/debian/porting/pth.mdwn b/hurd/running/debian/porting/pth.mdwn
deleted file mode 100644
index 8ddabb24..00000000
--- a/hurd/running/debian/porting/pth.mdwn
+++ /dev/null
@@ -1,15 +0,0 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
- <azeem> seems pth still doesn't work
- <bddebian> Doesn't build or doesn't work?
- <azeem> both
- <azeem> some configure test keep grinding the CPU, same for the test suite
- <azeem> which apparently runs pth_init() and never returns
diff --git a/hurd/running/debian/porting/runit.mdwn b/hurd/running/debian/porting/runit.mdwn
deleted file mode 100644
index 865c3b17..00000000
--- a/hurd/running/debian/porting/runit.mdwn
+++ /dev/null
@@ -1,17 +0,0 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-The `runit` package doesn't work, even its test suite doesn't finish.
-
-[[Thomas_Schwinge|tschwinge]] once was having a look at that, but this very
-report is just from his memory, and his memory is dim... The problem *might*
-either be a time stamping issue (which might be fixed by now) or it *might* be
-the `select` call failing issue we're seeing from time to time. Or something
-else.
diff --git a/hurd/running/debian/porting/socat.mdwn b/hurd/running/debian/porting/socat.mdwn
deleted file mode 100644
index 280e75e1..00000000
--- a/hurd/running/debian/porting/socat.mdwn
+++ /dev/null
@@ -1,13 +0,0 @@
-[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-`socat` needs porting. Some work has already been done in 2007, see
-<http://www.dest-unreach.org/socat/contrib/socat-hurd.html> or contact
-[[Thomas_Schwinge|tschwinge]].