Debian Bug report logs -
#666795
libapache2-mod-geoip: sourceful transition towards Apache 2.4
Reported by: arno@debian.org
Date: Sun, 1 Apr 2012 21:24:29 UTC
Severity: important
Tags: patch, upstream
Fixed in version libapache2-mod-geoip/1.2.8-1
Done: Prach Pongpanich <prachpub@gmail.com>
Bug is archived. No further changes may be made.
Toggle useless messages
Report forwarded
to Nigel Jones <dev@nigelj.com>:
Bug#666795; Package libapache2-mod-geoip.
(Sun, 01 Apr 2012 21:24:32 GMT) (full text, mbox, link).
Acknowledgement sent
to arno@debian.org:
New Bug report received and forwarded. Copy sent to Nigel Jones <dev@nigelj.com>.
(Sun, 01 Apr 2012 21:24:32 GMT) (full text, mbox, link).
Message #5 received at maintonly@bugs.debian.org (full text, mbox, reply):
Package: libapache2-mod-geoip
Severity: important
User: debian-apache@lists.debian.org
Usertags: apache24transition
Dear maintainer,
your package libapache2-mod-geoip is provding an Apache2 web server module.
We're upgrading Apache to the new upstream version 2.4 [1] (tracked
as transition bug #661958). This requires all modules to be rebuilt
due to ABI changes. Thus, you need to rebuild and reupload your
Apache2 module package in a version compatible to our new package
available in experimental [2]. Please note it is not enough to
simply rebuild the module - it needs some adaptions in the module
package metadata. We have written packaging guidelines for our
reverse dependencies [3]. Please read it carefully, it should be able
to answer most of your questions. Do also look at dh_apache2
(available through the dh-apache2 package) which can simplify
packaging Apache2 modules. In short, we want to highlight these
changes you need to be aware of.
* APIs changed for some cases [3]. Chances are your module needs some
adaptions, please get in touch with upstream or us if you need help
to port your module to Apache 2.4.
* MPM packages are gone. You cannot depend or conflict with a
particular MPM anymore. If your module does not work with a
particular module, make sure to make it abort with an error if
loaded together with an incompatible MPM. You can use our
apache2-maintscript-helper [4] to switch to the MPM of your choice
in your maintainer scripts.
* Do not build-depend on apache2-threaded-dev or apache2-prefork-dev
anymore. Just like MPMs are gone, are our MPM -dev packages as
well. All modules need to simply build-depend on apache2-dev.
* Do NOT depend on apache2, apache2-common or any other real apache2
package in your binary module package. Depend on our virtual
apache2-api-20120211 package only!
* Do NOT call a2enmod/a2dismod in your maintainer scripts. Use our
apache2-maintscript-helper [3] instead. This is required to get a
uniform and stateful handling of all Apache2 modules.
You can look at our Apache 2.4 packaging hints [5] for hands-on
tutorials. Please note: This bug is filed as "important" for now. As
the time goes by we plan make it a release critical severity. In the
consequences your module either needs an update or is going to be
removed from Wheezy. For the time being please tag the bug as pending
as soon as you have a package ready. We strongly recommend that at
least maintainers of complex module packages make an upload to
experimental as well. Of course, uploading simple modules to
experimental is welcome, too.
[1] https://lists.debian.org/debian-devel-announce/2012/03/msg00013.html
[2] http://packages.debian.org/search?keywords=apache2&searchon=sourcenames&exact=1&suite=all§ion=all
[3] http://anonscm.debian.org/gitweb/?p=pkg-apache/apache2.git;a=blob;f=debian/PACKAGING;hb=next
[4] http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html
[5] http://wiki.debian.org/Apache/PackagingFor24
Added tag(s) upstream.
Request was from Arno Töll <arno@debian.org>
to control@bugs.debian.org.
(Sun, 22 Apr 2012 23:51:04 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Nigel Jones <dev@nigelj.com>:
Bug#666795; Package libapache2-mod-geoip.
(Sat, 05 May 2012 12:31:02 GMT) (full text, mbox, link).
Acknowledgement sent
to arno@debian.org:
Extra info received and forwarded to list. Copy sent to Nigel Jones <dev@nigelj.com>.
(Sat, 05 May 2012 12:31:10 GMT) (full text, mbox, link).
Message #12 received at 666795@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
tags 666795 '+upstream'
thanks
Dear maintainer,
this is a follow-up message to your Apache 2.4 transition bug for
package libapache2-mod-geoip. We are approaching an upload of the web server to
Debian's Unstable repository as soon as the release team acknowledges
the upload. Along that upload we are planning to raise the importance of
this bug to a release-critical severity.
Please port your packages now to Apache 2.4. Below you can find a
test-rebuild for your package for the 2.4 version of the Apache web
server. Please note, even if the rebuild was successful, you still need
to make changes in the Debian specific part of your package.
The rebuild below was made by using a specially prepared build
environment where these conditions where met:
* We had apache2 and apache2-dev preinstalled
* We provided a void apache2-threaded-dev and apache2-prefork-dev
package to satisfy build-dependencies of your existing package (but
this WILL NOT be the case in a real upload of the apache2 source
package)
* We prepared apxs to unconditionally inject
-Werror=implicit-function-declaration to gcc to make sure we can spot
the use of removed API calls (e.g. missing signatures for ap_*
functions). Note, this might also cause false positives in some cases.
These are the outcome criterias we defined:
* VERIFIED-OK: The package rebuilt and linked successfully using the
Apache 2.4 development headers. It still needs adapting to Debian
package changes
* VERIFIED-FAIL: The package does not rebuild successufully using the
Apache 2.4 development headers. It may need some porting in the
upstream code base
* BYHAND: We may rebuild your package another time with manual
interception. Not clear outcome could be determined out of the build
log
This is the outcome we determined:
outcome: VERIFIED-FAIL
comment: needs porting ap_add_common_vars()/conn_rec->remote_ip
You will find a full build log attached below.
Here are some hints about porting problems. See [1] for a comprehensive
overview:
error: 'conn_rec' has no member named 'remote_ip'
These fields have been renamed in order to distinguish between
the client IP address of the connection and the useragent IP
address of the request. Porting is trivial, in most cases
changing the pointer from conn_rec->remote_ip to
request_rec->useragent_ip is enough
error: implicit declaration of function 'ap_requires'
error: implicit declaration of function 'ap_default_type'
These functions were removed along the 2.2 authnz API. It needs
a non-trivial API redesign.
error: implicit declaration of function 'ap_get_server_version'
Use ap_get_server_banner()
error: format not a string literal and no format arguments [-Werror=format-security]
Apache2 modules are being built with hardening build flags now
in order to satisfy the "hardening release goal" [2]. A trivial
fix comes over that problem.
[1] http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html
[2] http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags
[libapache2-mod-geoip_1.2.7-1-amd64-20120504-0312.gz (application/octet-stream, attachment)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Nigel Jones <dev@nigelj.com>:
Bug#666795; Package libapache2-mod-geoip.
(Sun, 06 May 2012 14:45:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Arno Töll <arno@debian.org>:
Extra info received and forwarded to list. Copy sent to Nigel Jones <dev@nigelj.com>.
(Sun, 06 May 2012 14:45:08 GMT) (full text, mbox, link).
Message #17 received at 666795@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
tags 666829 + patch
thanks
Hello maintainer,
you will find attached below a patch porting your module to Apache2 2.4.
Please test it and consider its inclusion. Note, I hardly tried more
than compiling and loading the module. I didn't test it in detail.
--
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D
[geoip.patch (text/x-diff, attachment)]
[signature.asc (application/pgp-signature, attachment)]
Added tag(s) patch.
Request was from Arno Töll <arno@debian.org>
to control@bugs.debian.org.
(Sun, 06 May 2012 14:45:44 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Nigel Jones <dev@nigelj.com>:
Bug#666795; Package libapache2-mod-geoip.
(Fri, 18 May 2012 05:06:08 GMT) (full text, mbox, link).
Acknowledgement sent
to Stefan Fritsch <sf@debian.org>:
Extra info received and forwarded to list. Copy sent to Nigel Jones <dev@nigelj.com>.
(Fri, 18 May 2012 05:06:08 GMT) (full text, mbox, link).
Message #24 received at 666795@bugs.debian.org (full text, mbox, reply):
Hi,
we have decided to postpone the transition to apache2 2.4. The main blocker is that mod_perl needs a major new upstream release which very likely won't be ready in time for Wheezy and we don't want to release Wheezy without mod_perl.
The transition will probably happen shortly after the release of Wheezy. We are sorry for any inconvenience this may have caused.
Cheers,
Stefan
Reply sent
to Prach Pongpanich <prachpub@gmail.com>:
You have taken responsibility.
(Thu, 14 Mar 2013 00:06:03 GMT) (full text, mbox, link).
Notification sent
to arno@debian.org:
Bug acknowledged by developer.
(Thu, 14 Mar 2013 00:06:03 GMT) (full text, mbox, link).
Message #29 received at 666795-close@bugs.debian.org (full text, mbox, reply):
Source: libapache2-mod-geoip
Source-Version: 1.2.8-1
We believe that the bug you reported is fixed in the latest version of
libapache2-mod-geoip, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 666795@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Prach Pongpanich <prachpub@gmail.com> (supplier of updated libapache2-mod-geoip package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Mon, 13 Mar 2013 10:42:30 +0700
Source: libapache2-mod-geoip
Binary: libapache2-mod-geoip
Architecture: source amd64
Version: 1.2.8-1
Distribution: experimental
Urgency: low
Maintainer: Prach Pongpanich <prachpub@gmail.com>
Changed-By: Prach Pongpanich <prachpub@gmail.com>
Description:
libapache2-mod-geoip - GeoIP support for apache2
Closes: 666795 670999
Changes:
libapache2-mod-geoip (1.2.8-1) experimental; urgency=low
.
* New maintainer. (Closes: #670999)
* New upstream release. (Closes: #666795)
- Support Apache 2.4
* Adapt "sourceful transition towards Apache 2.4" patch from Arno Töll
- Replace apache2-threaded-dev with apache2-dev in Build-Depends
- Drop apache2.2-common in Depends
- Drop libapache2-mod-geoip.{install,postinst,postrm}
- Add debian/apache2 file
* Update copyright file to version 1.0 format
* Bump debhelper compat to level 9
- Convert debian/rules to debhelper-7 style
- Use dh $@ --with apache2 in d/rules
- Remove package prefix libapache2-mod-geoip.{docs,dirs,examples},
it is useless when build a single binary package
* Add get-orig-source in debian/rules and README.source thanks to Arno Töll
* Update debian/watch and explain why doesn't work
* Add Vcs-* fields in debian/control
* Bump to Standards-Version 3.9.4, no changes needed
Checksums-Sha1:
6cce15410a9efc9516a6ff5f569038b9161ab504 1852 libapache2-mod-geoip_1.2.8-1.dsc
c1ebff3bddb44bf63c88225575d873dae6742ba9 14493 libapache2-mod-geoip_1.2.8.orig.tar.gz
271a416033ccaa9579c22c823190d8dfe5b35c9f 4611 libapache2-mod-geoip_1.2.8-1.debian.tar.gz
8973749542d3494d7f6e3655aedf162fccf6723d 20934 libapache2-mod-geoip_1.2.8-1_amd64.deb
Checksums-Sha256:
2b4de0906bc9e26259f7d0ca25aee5398c7dd072c03aa34b18778fe4f7d719d1 1852 libapache2-mod-geoip_1.2.8-1.dsc
88b0db740c55ef520ea89e5604fc25dfb4a62bf467c80e24d7826d426d0c207a 14493 libapache2-mod-geoip_1.2.8.orig.tar.gz
aa70558d254808387070c7a32b44066fb465d4d1e3c542f243b6e46297b844e9 4611 libapache2-mod-geoip_1.2.8-1.debian.tar.gz
6c7a6e4f9f9316ecee7a18d59190ad041058679f5d189da2265ca32e243a3a09 20934 libapache2-mod-geoip_1.2.8-1_amd64.deb
Files:
fa16bb20044489d7660c5c9bef5223de 1852 httpd optional libapache2-mod-geoip_1.2.8-1.dsc
adab5ca32be41980155e07c8c8bcfc87 14493 httpd optional libapache2-mod-geoip_1.2.8.orig.tar.gz
9d30765240fe31163fda218cbf9d9c0d 4611 httpd optional libapache2-mod-geoip_1.2.8-1.debian.tar.gz
61a3c4a038ce997663723a6a817a3c84 20934 httpd optional libapache2-mod-geoip_1.2.8-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAEBAgAGBQJRQQ9kAAoJEMcrUe6dgPNtQGwQALDfxv1QXygJkIc9hEKnhnT+
Aw8uwVD7VPiwWXMLmD95T8OS3/tw+tXjVtHKPQa0pc7UVg4Ap8UySSDxplHtqV6t
FDx1MOArlFQcozhnroc2o+eS3OHhDcav0IywFvQnb76as53DE9ELwoei2/7j2kL0
0GUhhBpCvlKZi9md1mVP2vHt82PEmNI+Sb/SP7N6GNdiDKFThobs24oVoy6Swf6j
65OyUf4Y7cLdjLHkgheMIXhgDV+6sAXTHjYhHLQjwQkMIB+1ctPxD8QtPOW046Rx
teSvhLkIMRoabkbWFIL2YHEF1+XlHcn8kRB+/qKxo0TS5aTrwDIIwrplZLfYaNpd
sJOrHjD/t3VGa75r/lk1zI0S7wWhc43oXtSDJMFV9Pq9nTcHBtR5fTBpnluj4V1P
+RBzoVp0ITHq7LIXQDoQ0lFQDXN03/1dVgGgcMm0B9bp1dHlwG76lX1XbBuO7iCe
FQdBh3/fToUxzkguwD5O7gkouW3nD7EpepWEfmvhBZn8lKDni26p8bLxC6oUHnS+
l+mOrnM/6MRH/dzYGTalp/eU0shV2l8EKvTelV3bF9B0YoUsOqqYAvYSrpHDu9C1
Cl4E8j0splnePIf7Updh2kRKsyPwSmeBYSrhuAC6A1xLG/5BDOLoU1qZzrIIjk4B
2tzRsyCGAZC16EKxO1Ip
=Fmx6
-----END PGP SIGNATURE-----
Information forwarded
to Prach Pongpanich <prachpub@gmail.com>:
Bug#666795; Package libapache2-mod-geoip.
(Thu, 23 May 2013 11:15:17 GMT) (full text, mbox, link).
Acknowledgement sent
to Arno Töll <arno@debian.org>:
Extra info received and forwarded to maintainer. Copy sent to Prach Pongpanich <prachpub@gmail.com>.
(Thu, 23 May 2013 11:15:17 GMT) (full text, mbox, link).
Message #34 received at 666795-maintonly@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Hello fellow maintainers,
we are ready to upload Apache2 2.4 to Debian Sid now. This means the
transition is effectively starting now, and going to break your modules.
We have scheduled the upload for May 30, 2013 BEFORE the 19:52 UTC
dinstall on ftp-master.
To minimize the breakage to our Sid users, we'd ask all of you having a
transitioned package ready in Experimental, to make an upload to Sid
AFTER the 13:52 UTC dinstall, and BEFORE 19:52 UTC [1].
Let us know if you need a sponsor, or our help to upload your packages
in that time window. Please note, you could also use the DELAYED queue
to make timed upload [2].
[1] http://ftp-master.debian.org/#dinstall
[2] http://ftp-master.debian.org/deferred.html
--
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D
[signature.asc (application/pgp-signature, attachment)]
Information stored
:
Bug#666795; Package libapache2-mod-geoip.
(Fri, 24 May 2013 03:15:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Prach Pongpanich <prachpub@gmail.com>:
Extra info received and filed, but not forwarded.
You requested that the message be sent to the package maintainer(s)
but either the Bug report is not associated with any package (probably
because of a missing Package pseudo-header field in the original Bug
report), or the package(s) specified do not have any maintainer(s).
Your message has *not* been sent to any package maintainers; it has
merely been filed in the Bug tracking system. If you require assistance
please contact owner@bugs.debian.org quoting the Bug number 666795.
(Fri, 24 May 2013 03:15:04 GMT) (full text, mbox, link).
Message #39 received at 666795-maintonly@bugs.debian.org (full text, mbox, reply):
On Thu, May 23, 2013 at 6:13 PM, Arno Töll <arno@debian.org> wrote:
> Hello fellow maintainers,
>
> we are ready to upload Apache2 2.4 to Debian Sid now. This means the
> transition is effectively starting now, and going to break your modules.
>
>
> We have scheduled the upload for May 30, 2013 BEFORE the 19:52 UTC
> dinstall on ftp-master.
>
> To minimize the breakage to our Sid users, we'd ask all of you having a
> transitioned package ready in Experimental, to make an upload to Sid
> AFTER the 13:52 UTC dinstall, and BEFORE 19:52 UTC [1].
>
>
> Let us know if you need a sponsor, or our help to upload your packages
> in that time window. Please note, you could also use the DELAYED queue
> to make timed upload [2].
Hi,
RFS libapache2-mod-geoip:
dget -x http://mentors.debian.net/debian/pool/main/liba/libapache2-mod-geoip/libapache2-mod-geoip_1.2.8-2.dsc
libapache2-mod-geoip (1.2.8-2) unstable; urgency=low
* Upload to unstable
* Add Vcs-* fields (forgot in previous upload)
Regrads,
Prach Pongpanich
Information forwarded
to Prach Pongpanich <prachpub@gmail.com>:
Bug#666795; Package libapache2-mod-geoip.
(Fri, 24 May 2013 11:21:18 GMT) (full text, mbox, link).
Acknowledgement sent
to Arno Töll <arno@debian.org>:
Extra info received and forwarded to maintainer. Copy sent to Prach Pongpanich <prachpub@gmail.com>.
(Fri, 24 May 2013 11:21:18 GMT) (full text, mbox, link).
Message #44 received at 666795-maintonly@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
On 24.05.2013 05:12, Prach Pongpanich wrote:
> RFS libapache2-mod-geoip:
Can you write that to #707024 or remember me again that day, so that I
don't forget?
--
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D
[signature.asc (application/pgp-signature, attachment)]
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Fri, 30 Aug 2013 07:41:23 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Sun Jul 2 00:51:56 2023;
Machine Name:
bembo
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.