NEW changes in oldproposedupdates
Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_amd64.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_alpha.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_arm.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_armel.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_hppa.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_i386.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_ia64.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_mips.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_mipsel.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_powerpc.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_s390.changes ACCEPT Processing changes file: bind9_9.6.ESV.R4+dfsg-0+lenny3_sparc.changes ACCEPT -- To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1qedne-0007vb...@franck.debian.org
NEW changes in proposedupdates
Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_amd64.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_armel.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_i386.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_ia64.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_kfreebsd-amd64.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_kfreebsd-i386.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_mips.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_mipsel.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_powerpc.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_s390.changes ACCEPT Processing changes file: bind9_9.7.3.dfsg-1~squeeze3_sparc.changes ACCEPT -- To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1qednc-0007uz...@franck.debian.org
Bug#631007: pu: package arcboot/0.3.14+squeeze0
Hi Adam, thanks for your feedback! On Sat, Jul 02, 2011 at 04:11:39PM +0100, Adam D. Barratt wrote: > Hi, > > On Sun, 2011-06-19 at 19:18 +0200, Guido Günther wrote: > > netinstall of MIPS IP22 is currently broken (#630424). This is due to > > two bugs in tip22: a wrong load address and a discard entry in the > > linker script. I've prepared 0.3.14+squeeze0 to fix this issue (diff > > attached). O.k. to upload to stable for the 6.0.3 release? > > Apologies for the slight delay in getting back to you, and thanks for > working on this. Having reviewed the diff, I have a few comments and > queries. > > - The current stable version of arcboot is 0.3.13, so I'd expect this > update to be 0.3.1_3_+squeeze1 or similar. > > - Why does __ARCSBOOT_VERSION__ jump to 0.3.13? This is generated during build time. We should exclude this file from the package but I didn't want to make any unnecessary changes. > > - Please drop this change: > > + * [d2741a1] overrides: remove ./ from paths to catch up with ftp-master > +changes O.k, reverted. > > ftp-master's lintian checks are only applied to uploads to unstable and > experimental, so the old override paths aren't a problem; also, packages > in stable are expected to pass a check from lintian in stable, not > necessarily from another release. > > - Why was the "$(PRINT_LOADADDR)" makefile target dropped? It's not needed and unused and was part of the same commit. Will the chroots on the autobuilders be updated to the latest arcboot before building d-i? Dann raised that issue: http://lists.debian.org/debian-mips/2011/07/msg0.html Find a new diff attached. Cheers, -- Guido > > > In order to fix #630424 we also need to rebuild d-i on mips. > > There's usually (well, frequently) a d-i rebuild on all architectures > for a point release in any case, if only to pull in a new kernel so that > new installs don't have to fetch it from security during the install. > > Regards, > > Adam > diff --git a/Makefile b/Makefile index 4bfb897..28c35ef 100644 --- a/Makefile +++ b/Makefile @@ -11,24 +11,26 @@ ifeq ($(SUBARCH),IP22) KERNELADDR=0x88002000 MAXLOADSIZE=0x170 LOADADDR=0x88802000 +TIP_LOADADDR=0x89702000 OUTPUTFORMAT=ecoff-bigmips endif ifeq ($(SUBARCH),IP32) KERNELADDR=0x80004000 MAXLOADSIZE=0x140 LOADADDR=0x81404000 +TIP_LOADADDR=$(LOADADDR) OUTPUTFORMAT=elf32-tradbigmips endif # these contain subarch independent files SUBARCH_INDEP_DIRS= \ - arclib \ - tip22 + arclib # these contain subarch dependent files SUBARCH_DIRS= \ common \ - ext2load + ext2load\ + tip22 define indep-tgt $(foreach sd,$(SUBARCH_INDEP_DIRS),$(1)-subarch-indep-$(sd)) @@ -63,7 +65,13 @@ $(call dep-tgt,clean) endef define submake -@$(MAKE) -C $(1) SUBARCH=$(SUBARCH) LOADADDR=$(LOADADDR) MAXLOADSIZE=$(MAXLOADSIZE) KERNELADDR=$(KERNELADDR) OUTPUTFORMAT=$(OUTPUTFORMAT) $(2) +@$(MAKE) -C $(1) SUBARCH=$(SUBARCH) \ + LOADADDR=$(LOADADDR) \ + TIP_LOADADDR=$(TIP_LOADADDR) \ + MAXLOADSIZE=$(MAXLOADSIZE) \ + KERNELADDR=$(KERNELADDR) \ + OUTPUTFORMAT=$(OUTPUTFORMAT) \ + $(2) endef diff --git a/common/version.h b/common/version.h index 8a2150f..bb8207f 100644 --- a/common/version.h +++ b/common/version.h @@ -1 +1 @@ -#define __ARCSBOOT_VERSION__ "0.3.9.1" +#define __ARCSBOOT_VERSION__ "0.3.13" diff --git a/debian/changelog b/debian/changelog index 8983afd..0796e96 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +arcboot (0.3.14+squeeze0) stable; urgency=low + + * This upload fix the netinstall on IP22 and IP32 + * [5e61c13] Drop .gnu.att section mapped add VMA 0 + * [01c99b5] Move the tip22 image to 0x89702000 on IP22 as described in +#452798. Thanks to Edwin Kwan for analyzing this. + * [399eff1] Fix address substitution for IP32 it was being handled as IP22 +in tip22 + * [acd5d82] Cleanup all subarches + + -- Guido Günther Thu, 16 Jun 2011 23:38:40 +0200 + arcboot (0.3.13) unstable; urgency=low [ Florian Lohoff ] diff --git a/debian/rules b/debian/rules index e003fda..b8747b8 100755 --- a/debian/rules +++ b/debian/rules @@ -44,10 +44,11 @@ clean: dh_testdir rm -f build-stamp configure-stamp - # Add here commands to clean up after the build process. - $(MAKE) clean + $(MAKE) SUBARCH=IP32 clean + $(MAKE) SUBARCH=IP22 clean rm -f arcboot.ip22 arcboot.ip32 + dh_clean install: build @@ -63,7 +64,8 @@ install: build # install tip22 into debian/tip22 $(MAKE) PREFIX=${PREFIX_TIP22} BINDIR=${BIN_TIP22} LIBDIR=${LIB_TIP22} -C arclib install - $(MAKE) PREFIX=${PREFIX_TIP22} BINDIR=${BIN_TIP22} LIBDIR=${LIB_TIP22} -C tip22 install + $(MAKE) SUBARCH=IP22 PREFIX=${PREFIX_TIP22} BINDIR=${BIN_TIP22} LIBDIR=${LIB_TIP22} -C tip22 install + $(MAKE) SUBARCH=IP32 PREFIX=${PREFIX_TIP22} BINDIR=${BIN_TIP22} LIBDIR=${LIB_TIP22} -C tip22 install # Install linti
Processed: unblock 622134 with 622582
Processing commands for cont...@bugs.debian.org: > # Not in testing, therefore not blocking transition - my bad > unblock 622134 with 622582 Bug #622134 [release.debian.org] transition: openssl 1.0.0 Was blocked by: 622010 622068 620893 622053 621987 622034 622025 621974 622144 616291 620998 621402 613369 622016 622004 622140 622582 621994 621395 622074 615697 622054 622019 622008 622141 621105 618087 622049 623253 621509 622076 622027 622011 622065 622032 622154 622018 622014 620777 622072 622069 620581 622012 622070 621884 Removed blocking bug(s) of 622134: 622582 > thanks Stopping processing here. Please contact me if you need assistance. -- 622134: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622134 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.130996226431444.transcr...@bugs.debian.org
Processed: not NMU'ing: anon-proxy: FTBFS on kfreebsd-*: undefined reference to symbol, 'pthread_join@@GLIBC_2.3'
Processing commands for cont...@bugs.debian.org: > # This package is currently not rebuildable due to #632671 > block 622582 by 632671 Bug #622582 [src:anon-proxy] anon-proxy: FTBFS on kfreebsd-*: undefined reference to symbol 'pthread_join@@GLIBC_2.3' Was not blocked by any bugs. Added blocking bug(s) of 622582: 632671 > noowner 622582 Bug #622582 [src:anon-proxy] anon-proxy: FTBFS on kfreebsd-*: undefined reference to symbol 'pthread_join@@GLIBC_2.3' Removed annotation that Bug was owned by Niels Thykier . > # This bug stalls the openssl transition > block 622134 by 622582 Bug #622134 [release.debian.org] transition: openssl 1.0.0 Was blocked by: 622010 622068 621987 622053 620893 622144 621974 622025 622034 621402 620998 616291 613369 622016 622004 622140 621395 621994 622074 615697 622054 622019 622008 622141 621105 618087 622049 623253 621509 622076 622027 622065 622032 622011 622154 622018 622014 620777 622072 622069 622070 622012 620581 621884 Added blocking bug(s) of 622134: 622582 > thanks Stopping processing here. Please contact me if you need assistance. -- 622134: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622134 622582: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622582 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.130996153828956.transcr...@bugs.debian.org
PanHellenic General Union of Greek Products of Innovation
PanHellenic General Union of Greek Products of Innovation (P.G.E.E.P) - The PanHellenic General Union of Greek Products of Innovation (P.G.E.E.P.) is organizing two major events in the current year: 1. Greek Inventions & Innovative ideas: Demos & Presentations – Athens, 18-29 July, 2011 In the ten days of the event, more than 50 Greek presenters will address 20 minute-long demonstrations of their inventions and/or applicable innovative ideas in the following areas of expertise: Energy, Electrics, Electronics, Mechanics, Pharmaceutics/Health, Cosmetology, Information technology, Sound & Image, Robotics, Modelism, Arts & Crafts. Each presentation will aim to inform, promote, expose to criticism and attract the investing interest of the spectators. For all those interested to attend, interpreters will be available upon request. For more information please contact: T+30 211-77-04-701, M+30 690-64-41-850. 2. International Exhibition of Inventions & Innovative Ideas – Athens, 3-6 November, 2011 For four days, 360 exhibitors from around the world will take over 6.200m2 to receive 30.000 visitors and potential investors of their Inventions and Applicable Innovative Ideas in the sectors of: Energy, Electrics, Electronics, Mechanics, Pharmaceutics/Health, Cosmetology, Information technology, Sound & Image, Robotics, Modelism, Arts & Crafts. Please contact us for more information if you are interested in participating as: an independent exhibitor, a group of exhibitors promoting your country’s inventions and/or Innovative Ideas, an individual/organization/company etc. in search of investment opportunities, a sponsor, a group or individual visitor of the exhibition or if you just want to find out more about the success of last year’s organization and the details of the coming one. For all those interested to participate and/or attend, interpreters will be available upon request. For more information please contact: T+30 211-77-04-701, M+30 690-64-41-850. The Union’s official site (www.pgeep.gr) will be available in the English language within a calendar month.
Re: Updated Debian 6.0: 6.0.2 released
On Wed, 6 Jul 2011 11:27:03 +0100, Jonathan Wiltshire wrote: I didn't notice at the time, but reading now on LWN it sticks out a mile: On Sat, Jun 25, 2011 at 06:02:44PM +0200, Joey Schulze wrote: The Debian Project http://www.debian.org/ Updated Debian 6.0: 6.0.2 released pr...@debian.org June 25th, 2011 http://www.debian.org/News/2011/20110625 Updated Debian 6.0: 6.0.1 released The Debian project is pleased to announce the first update of its stable distribution Debian 6.0 (codename "Squeeze"). This update mainly adds Looks like the boilerplate wasn't altered for this point release? It was updated in the draft version which we produced for the press team. The draft is prepared in WML ready for deployment to the website, but I'm not sure how the mail version of the announcement is generated from that; I'm guessing there's a manual step involved where the previous e-mail announcement was used as a template. I've CCed the press team in case there's anything SRM can do to help, e.g. generate the mail version directly. Regards, Adam -- To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/40ec53e5b5f060a9d7b571184f47a...@adsl.funky-badger.org
Re: Updated Debian 6.0: 6.0.2 released
I didn't notice at the time, but reading now on LWN it sticks out a mile: On Sat, Jun 25, 2011 at 06:02:44PM +0200, Joey Schulze wrote: > > The Debian Projecthttp://www.debian.org/ > Updated Debian 6.0: 6.0.2 released pr...@debian.org > June 25th, 2011 http://www.debian.org/News/2011/20110625 > > > Updated Debian 6.0: 6.0.1 released > > The Debian project is pleased to announce the first update of its stable > distribution Debian 6.0 (codename "Squeeze"). This update mainly adds Looks like the boilerplate wasn't altered for this point release? -- Jonathan Wiltshire j...@debian.org Debian Developer http://people.debian.org/~jmw 4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC 74C3 5394 479D D352 4C51 -- To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20110706102703.ga7...@lupin.home.powdarrmonkey.net
Re: Hints for ghc needed?
Hi, Am Dienstag, den 05.07.2011, 18:45 +0100 schrieb Adam D. Barratt: > On Tue, 2011-07-05 at 18:31 +0200, Joachim Breitner wrote: > > may I kindly ping about this issue? To my knowledge, all the packages > > mentioned here > > http://release.debian.org/migration/testing.pl?package=ghc have been > > binNMUed to be able to transition together with ghc-7.0.3-2. > > I've added a hint for tonight's britney run; let's see. thanks, that did the trick. Greetings, Joachim -- Joachim "nomeata" Breitner Debian Developer nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata signature.asc Description: This is a digitally signed message part
Bug#632819: transition: libsysactivity
Package: release.debian.org Severity: normal User: release.debian@packages.debian.org Usertags: transition -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi, Upstream of libsysactivity broke API/ABI in 0.6 (which is yet to be uploaded). To my knowledge there is only one reverse dependency in the archive, sentinella, which should be compatible with the new API/ABI (local x86 binNMU implies it, but I have not tried all archs). I figured I could use this minor transition to try working with ben. :) ~Niels - -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.39-2-686-pae (SMP w/2 CPU cores) Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAEBCAAGBQJOFA8IAAoJEAVLu599gGRCZj4P/3VI0W72V2l8u6+BOQxpf4Y+ oie4CLQlfdjqNjHDVEsH4RhenjSciFdctHu2Cm1s1GWYsn2h7sSOSr0vEyVLxjoe TH7/Xm/JKddisRLCwqgrzkcUZPR3x4h5YQNZfIn99KipdVrtYc6SQQto7uRai1of 5/d/HW5m3x+x7oSMYk9zb5VpBaZYtrvohzgnXSPtCV9ebqlqmoe5UNhUPkvBW+hu /jdZeCAIM4XDTU25T8S3ivNUIDKGOGZl8JeYhxgdQcxgT5/A7pBSsz8ruk9rMX3Y 2sG5TyuLt65DeiTEa4BQVRUksVnIbnLFqty+EhDSnyj0I8Hl14FmUVrwGMBhOy4u qkif49Y4XCs3CiFT9TB/kg85ducOBpt24OfufE5Txh05Rb/k74XZfCMqECagoV+p YiXyyk50IXUDcLYOjryS1llkVb+TUwrzVvH48Nc4pAm1WBJwzS5xWXil0x7qiKlI 0SGfB4iM7b9QfitQpgN25N6v1y5zY4UhrD5nb5RofdNJ+N9rnHR9ADvcaI9TKiUR YcqSV7do1g1ISSxZwA0rNSyGLNyL3bpkYJ24pvAcL5MR/MVaSDj4NuchT/VYIa+C RHgzJwj6huVk1vVheh4+071jeyCbz0cStJpAOjkNP+KnDOTHwvDrM+DnPkK3E6bb hErBF+jP1r3qllmv6lfe =b5tO -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20110706073020.4780.99495.report...@getsu.thykier.net
Bug#632766: marked as done (nmu: ocaml-lastfm_0.3.0-1)
Your message dated Wed, 6 Jul 2011 06:53:18 + with message-id and subject line Done has caused the Debian Bug report #632766, regarding nmu: ocaml-lastfm_0.3.0-1 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 632766: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632766 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: release.debian.org Severity: normal User: release.debian@packages.debian.org Usertags: binnmu Hi! Ocaml-lastfm needs to be rebuilt against the newest xmlplaylist. nmu ocaml-lastfm_0.3.0-1 . ALL . -m "Rebuild against ocaml-xmlplaylist 0.1.3-1" -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.39-2-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF8, LC_CTYPE=fr_FR.UTF8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash --- End Message --- --- Begin Message --- Just uploaded a new package fixing other minor things.. --- End Message ---
Bug#632468: nmu: udav_0.6.3-2
Hi all On Mon, Jul 04, 2011 at 11:25:33AM +0200, Salvatore Bonaccorso wrote: > Hi all > > On Sat, Jul 02, 2011 at 07:53:09PM +0300, Dimitrios Eftaxiopoulos wrote: > > Στις Σαβ 02 Ιουλ 2011 18:41:18 Salvatore Bonaccorso γράψατε: > > Hello Salvatore, > > > > > I'm cc'ing Dimitrios if he has an idea on this. mathgl should be in a > > > much stable shape now as it was previously. > > > > After the last nmu's by Steve Langasek, mathgl should build much more > > smoothly > > on all architectures. > > > > > Dimitrios do you have some > > > insights on possible ABI break inbetween 1.10 -> 1.11? > > > > Sorry, I don't know. > > I now got down with snapshot.d.o packages, and indeed udav starts > fine until 1.10.2.1-2 but with 1.11.0.1-1, udav has the first time > > udav: Symbol `mgls_base_cmd' has different size in shared object, consider > re-linking > > So did indeed mathgl broke it's ABI there and needed to bump the > soname? Julien, or someone else from the release team, could you add a removal-hint for udav 0.6.3-2 in wheezy as it is due to this completly non-functional (without rebuild) currently in testing? udav 0.7.1.2 is now in unstable, except on kfreebsd-amd64 due the binutils problems [1]. [1] http://bugs.debian.org/632671 Regards Salvatore signature.asc Description: Digital signature