First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 178635
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Mobile Phone Developers <mobile-phone@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Chris Bainbridge (RETIRED) <chrb@gentoo.org>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
gammu-1.12.0:20070623-145425.log elog file for gammu 1.12.0 text/plain Steffen 'j0inty' Stollfuß 2007-06-23 15:17 0000 10.37 KB Details
gammu-1.12.0.ebuild gammu 1.12.0 ebuild file text/plain Steffen 'j0inty' Stollfuß 2007-06-23 15:18 0000 1.40 KB Details
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 178635 depends on: Show dependency tree
Show dependency graph
Bug 178635 blocks: 176188 184203
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)







View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2007-05-15 13:51 0000
All current versions of gammu are broken on 2.6.21 (see
http://blog.cihar.com/archives/2007/04/24/kernel_2_6_21_hits_gammu/). Please 
bump to latest stable 1.11.0 and remove old versions (or set DEPEND on kernel
<2.6.21). Renaming ebuild 1.10.0 and removing src_unpack is enough to version
bump (patches appear to be already applied upstream).

------- Comment #1 From Alin Năstac 2007-05-15 14:42:05 0000 -------
If you use this package, please become its maintainer.
I only maintain it because no one else seem interested.

------- Comment #2 From Chris Bainbridge (RETIRED) 2007-05-15 15:41:55 0000 -------
Sorry, I don't want to maintain it, but I can fix this bug if you want?

------- Comment #3 From Alin Năstac 2007-05-15 16:51:54 0000 -------
Damn. I was hoped you will take gammu and friends under your wing :(.

The new version is now in cvs. I had to patch it though (it had 2 bugs revealed
by the compiler's warnings). 

I will nag the arch teams when the one month probation period will end.

------- Comment #4 From Daniel Drake 2007-06-16 14:46:26 0000 -------
I'll be asking arches to mark 2.6.21 stable within the next few days, would be
great if this issue could be fixed before that time.

------- Comment #5 From Alin Năstac 2007-06-16 20:16:49 0000 -------
Arches, please mark following ebuilds as stable:
  app-mobilephone/gammu-1.11.0
  dev-python/python-gammu-0.20
  app-mobilephone/wammu-0.20 (this one don't even have ~ia64)

------- Comment #6 From Raúl Porcel 2007-06-17 11:01:13 0000 -------
ia64 keyword dropped, i don't have the hardware to test and nobody has.

------- Comment #7 From Christian Faulhammer 2007-06-19 06:50:19 0000 -------
x86 stable, works fine

------- Comment #8 From Steffen 'j0inty' Stollfuß 2007-06-23 15:17:02 0000 -------
Created an attachment (id=122898) [edit]
elog file for gammu 1.12.0

------- Comment #9 From Steffen 'j0inty' Stollfuß 2007-06-23 15:18:45 0000 -------
Created an attachment (id=122899) [edit]
gammu 1.12.0 ebuild file

------- Comment #10 From Steffen 'j0inty' Stollfuß 2007-06-23 15:25:36 0000 -------
Hy Alin,

I would overtake the packages wammu and gammu. But I need an introduction how
to create the ebuild file.

I had tried to create the new ebuild file for version 1.12.0 based on the
ebuild file for the lastet version in the portage. But I got always an linker
error.
So I have attached the both files where you can analyze the error.

Can you please help me to maintance these both packages.

regards
j0inty

------- Comment #11 From Steffen 'j0inty' Stollfuß 2007-06-23 15:50:41 0000 -------
(From update of attachment 122899 [edit])
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/gammu/gammu-1.12.0.ebuild,v
1.5 2007/06/23 15:22:20 j0inty Exp $
inherit eutils

DESCRIPTION="a fork of the gnokii project, a tool to handle your cellular
phone"
HOMEPAGE="http://www.gammu.org"
SRC_URI="ftp://dl.cihar.com/gammu/releases/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug bluetooth irda mysql postgres nls nokiaphones"

RDEPEND="bluetooth? ( net-wireless/bluez-libs )
        mysql? ( virtual/mysql )
        postgres? ( dev-db/postgresql )"
DEPEND="${RDEPEND}
        irda? ( virtual/os-headers )
        sys-devel/autoconf-wrapper
        dev-util/pkgconfig
        dev-util/cmake"

src_unpack() {
        unpack ${A}
}

src_compile() {
        local myconf=""
        use debug && myconf="${myconf} -DCMAKE_BUILD_TYPE=\"Debug\""
        use bluetooth || myconf="${myconf} -DWITH_Bluez=OFF"
        use mysql && myconf="${myconf} -DMYSQL_CROSS_PATH=/usr/lib/mysql/"
        use postgres && myconf="${myconf} -DPOSTGRES_CROSS_PATH=/usr/lib/pgsql"
        use nls && myconf="${myconf} -DGETTEXT_CROSS_PATH=/usr/lib/gettext/"
        use irda || myconf="${myconf} -DWITH_IrDA=OFF"

        ## EXPERIMENTAL USE FLAG
        #use nokiaphones || myconf="${myconf} -DWITH_NOKIA_SUPPORT=OFF"

# Create and change to the build directory. (@see INSTALL file)
        mkdir build 
        cd build
# Call cmake
        cmake .. \
                -DCMAKE_INSTALL_PREFIX=/usr \
                -DENABLE_SHARED=ON \
                ${myconf} || die "configure failed"

        emake || die "make failed"
}

src_install () {
        make DESTDIR="${D}" install || die "install failed"
        mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${P}"
}

------- Comment #12 From Alin Năstac 2007-07-01 11:00:44 0000 -------
(In reply to comment #11)

Please don't hijack unrelated bugs. The bump has been fixed, as requested in
bug 183323. 

------- Comment #13 From Lars Weiler (RETIRED) 2007-07-01 15:40:13 0000 -------
app-mobilephone/gammu-1.11.0 stable on ppc.

dev-python/python-gammu and app-mobilephone/wammu don't have a stable ppc
keyword yet.  As long as no user requests it, we keep it in testing.  So, ppc
done.

------- Comment #14 From Kyle Tirak 2007-07-20 16:43:10 0000 -------
This bug's been open for a while now and appears to be blocking the marking of
kernel 2.6.21-r4 stable on amd64. Is there an issue with it on amd64?

------- Comment #15 From Chris Bainbridge (RETIRED) 2007-07-20 18:17:29 0000 -------
Yes.

------- Comment #16 From Chris Bainbridge (RETIRED) 2007-07-20 18:18:48 0000 -------
To clarify - yes, this bug affects amd64. As to why it hasn't been fixed -
maybe no amd64 testers have a gammu compatible phone? Maybe nobody has the
time?

------- Comment #17 From Christoph Mende 2007-08-01 00:02:10 0000 -------
amd64 stable

First Last Prev Next    No search results available      Search page      Enter new bug