tags 368761 -pending
severity 368761 important
retitle 368761 please add kfreebsd-amd64 amd armel into packages.debian.org
Hi,
please, could you consider also adding armel ?
Its repository is now also on ftp.gnuab.org,
number of available packages raises, see
http://unstable.buildd.net/buildd/armel_stats
Enclosed please find proposed patch against current CVS.
Many thanks
Petr
Index: config.sh
===================================================================
RCS file: /cvs/webwml/packages/config.sh,v
retrieving revision 1.25
diff -u -r1.25 config.sh
--- config.sh 9 Apr 2007 10:22:38 -0000 1.25
+++ config.sh 11 May 2007 11:10:50 -0000
@@ -39,7 +39,7 @@
arch_oldstable="alpha amd64 arm hppa i386 ia64 m68k mips mipsel powerpc s390
sparc"
arch_stable="alpha amd64 arm hppa i386 ia64 mips mipsel powerpc s390 sparc"
arch_testing="${arch_oldstable}"
-arch_unstable="${arch_oldstable} hurd-i386 kfreebsd-i386"
+arch_unstable="${arch_oldstable} armel hurd-i386 kfreebsd-amd64 kfreebsd-i386"
arch_experimental="${arch_unstable}"
arch_testing_proposed_updates="${arch_testing}"
arch_stable_proposed_updates="${arch_stable}"
Index: cgi-bin/download.pl
===================================================================
RCS file: /cvs/webwml/packages/cgi-bin/download.pl,v
retrieving revision 1.37
diff -u -r1.37 download.pl
--- cgi-bin/download.pl 27 Apr 2007 18:58:43 -0000 1.37
+++ cgi-bin/download.pl 11 May 2007 11:10:51 -0000
@@ -175,6 +175,8 @@
s390 => 'IBM S/390',
"hurd-i386" => 'Hurd (i386)',
amd64 => 'AMD64',
+ armel => 'EABI ARM',
+ "kfreebsd-amd64" => 'GNU/kFreeBSD (amd64)',
"kfreebsd-i386" => 'GNU/kFreeBSD (i386)'
);
@@ -259,7 +261,7 @@
current information.</p>
END
-} elsif ($arch eq 'kfreebsd-i386') {
+} elsif (($arch eq 'kfreebsd-i386') or ($arch eq 'kfreebsd-amd64') or ($arch
eq 'armel')) {
print_links( "North America", $file, @kfreebsd_north_american_sites );
print_links( "Europe", $file, @kfreebsd_european_sites );
Index: cgi-bin/search_packages.pl
===================================================================
RCS file: /cvs/webwml/packages/cgi-bin/search_packages.pl,v
retrieving revision 1.41
diff -u -r1.41 search_packages.pl
--- cgi-bin/search_packages.pl 8 Apr 2007 20:56:30 -0000 1.41
+++ cgi-bin/search_packages.pl 11 May 2007 11:10:55 -0000
@@ -36,8 +36,8 @@
my @DISTS = @SUITES;
my @SECTIONS = qw( main contrib non-free );
my @ARCHIVES = qw( us security installer );
-my @ARCHITECTURES = qw( alpha amd64 arm hppa hurd-i386 i386 ia64
- kfreebsd-i386 m68k mips mipsel powerpc s390 sparc );
+my @ARCHITECTURES = qw( alpha amd64 arm armel hppa hurd-i386 i386 ia64
+ kfreebsd-amd64 kfreebsd-i386 m68k mips mipsel powerpc
s390 sparc );
$ENV{PATH} = "/bin:/usr/bin";
Index: cron/100syncarchive
===================================================================
RCS file: /cvs/webwml/packages/cron/100syncarchive,v
retrieving revision 1.5
diff -u -r1.5 100syncarchive
--- cron/100syncarchive 6 Apr 2007 11:17:53 -0000 1.5
+++ cron/100syncarchive 11 May 2007 11:10:55 -0000
@@ -16,6 +16,8 @@
for arch in `eval echo $foo`
do
test ! "$arch" = "kfreebsd-i386" || continue
+ test ! "$arch" = "kfreebsd-amd64" || continue
+ test ! "$arch" = "armel" || continue
for part in ${parts}
do
test -d us/${dist}/${part}/binary-${arch} || mkdir -p
us/${dist}/${part}/binary-${arch}
@@ -40,6 +42,8 @@
for arch in `eval echo $foo`
do
test ! "$arch" = "kfreebsd-i386" || continue
+ test ! "$arch" = "kfreebsd-amd64" || continue
+ test ! "$arch" = "armel" || continue
for part in ${parts}
do
test -d us/${dist}/${part}/binary-${arch} || mkdir -p
us/${dist}/${part}/binary-${arch}
Index: cron/100syncarchive_kfreebsd
===================================================================
RCS file: /cvs/webwml/packages/cron/100syncarchive_kfreebsd,v
retrieving revision 1.2
diff -u -r1.2 100syncarchive_kfreebsd
--- cron/100syncarchive_kfreebsd 17 Jan 2006 21:20:26 -0000 1.2
+++ cron/100syncarchive_kfreebsd 11 May 2007 11:10:55 -0000
@@ -7,8 +7,8 @@
# Main archive
#
-arch=kfreebsd-i386
-
+for arch in kfreebsd-i386 kfreebsd-amd64 armel
+do
for dist in unstable experimental
do
for part in ${parts} main/debian-installer
@@ -20,4 +20,5 @@
wget -q -N
${kfreebsd_ftpsite}/dists/${dist}/Contents-${arch}.gz)
done
done
+done