Now it's enforced that each sr has to have a bug/feature number mapped, see
http://wiki.meego.com/Release_Engineering/Process#Package_quality_expectations_for_submissions_into_.2A:Testing_projects

Peter


> -----Original Message-----
> From: [email protected]
> [mailto:[email protected]] On Behalf Of Priya Vijayan
> Sent: Tuesday, November 09, 2010 2:46 AM
> To: [email protected]
> Subject: [meego-commits] 9277: Changes to Trunk:Testing/xorg-x11-drv-mtev
> 
> Hi,
> I have made the following changes to xorg-x11-drv-mtev in project
> Trunk:Testing. Please review and accept ASAP.
> 
> Thank You,
> Priya Vijayan
> 
> [This message was auto-generated]
> 
> ---
> 
> Request #9277:
> 
>   submit:
> home:priya:branches:Trunk:Testing/xorg-x11-drv-mtev(r2)(cleanup) ->
> Trunk:Testing/xorg-x11-drv-mtev
> 
> 
> Message:
>     Update to latest gitorious snapshot 0.1.10~20101108, supports 
> orientation options
> 
> State:   new          2010-11-08T10:46:05 priya
> Comment: None
> 
> 
> 
> changes files:
> --------------
> --- xorg-x11-drv-mtev.changes
> +++ xorg-x11-drv-mtev.changes
> @@ -1 +1,4 @@
> -* Thu Aug 19 2010 Priya Vijayan <[email protected]> - 0.1.8~2010819
> +* Mon Nov 08 2010 Priya Vijayan <[email protected]> -
> 0.1.10~20101108
> +- Update to latest gitorious snapshot 0.1.10~20101108, supports orientation
> options
> +
> +* Thu Aug 19 2010 Priya Vijayan <[email protected]> - 0.1.8~20101908
> 
> old:
> ----
>   xorg-x11-drv-mtev-0.1.8~2010819.tar.bz2
> 
> new:
> ----
>   xorg-x11-drv-mtev-0.1.10~20101108.tar.bz2
> 
> spec files:
> -----------
> --- xorg-x11-drv-mtev.spec
> +++ xorg-x11-drv-mtev.spec
> @@ -1,18 +1,18 @@
>  #
> -# Do not Edit! Generated by:
> -# spectacle version 0.18
> +# Do NOT Edit the Auto-generated Part!
> +# Generated by: spectacle version 0.20
>  #
>  # >> macros
>  # << macros
> 
>  Name:       xorg-x11-drv-mtev
>  Summary:    Xserver-xorg mtev driver
> -Version:    0.1.8~2010819
> +Version:    0.1.10~20101108
>  Release:    0
>  Group:      System/X Hardware Support
>  License:    GPLv2
>  URL:        http://gitorious.org/xorg-next/xf86-input-mtev
> -Source0:    xorg-x11-drv-mtev-0.1.8~2010819.tar.bz2
> +Source0:    xorg-x11-drv-mtev-0.1.10~20101108.tar.bz2
>  Source100:  xorg-x11-drv-mtev.yaml
>  Requires:   xorg-x11-server-Xorg
>  BuildRequires:  pkgconfig(xorg-server)
> 
> other changes:
> --------------
> 
> ++++++ xorg-x11-drv-mtev-0.1.8~2010819.tar.bz2 ->
> xorg-x11-drv-mtev-0.1.10~20101108.tar.bz2
> --- Makefile
> +++ Makefile
> @@ -28,6 +28,8 @@
>  .PHONY: all clean
>  .PRECIOUS: obj/%.o
> 
> +VERSION=$(shell cat debian/changelog | head -n 1 | sed -e 
> 's/.*(\(.*\)).*/\1/g')
> +
>  all: $(OBJS) $(TLIB) $(TOBJ)
>  # $(TBIN)
> 
> @@ -50,6 +52,21 @@
>  clean:
>       rm -rf bin obj
> 
> +spec: xf86-input-mtev.yaml
> +     specify xf86-input-mtev.yaml
> +
> +dist: spec
> +     git archive --format=tar --prefix=xf86-input-mtev-$(VERSION)/
> maemo/$(VERSION)-1 | gzip >xf86-input-mtev-$(VERSION).tar.gz
> +
> +rpm: dist
> +#    cp xf86-input-mtev-$(VERSION).tar.gz rpm/SOURCES/
> +#    rpmbuild -v -bb --clean xf86-input-mtev.spec
> +
> +# doesnt work :(
> +     sudo build --repository
> http://repo.meego.com/MeeGo/releases/1.0.1/core/repos/ia32/packages
> --arch i686 xf86-input-mtev.spec
> +
> +#http://repo.meego.com/MeeGo/releases/1.0.1/core/repos/ia32/os/ --arch
> i686 xf86-input-mtev.spec
> +
>  distclean: clean
>       rm -rf debian/*.log debian/files
> 
> --- debian/changelog
> +++ debian/changelog
> @@ -1,3 +1,15 @@
> +xserver-xorg-input-mtev (0.1.10) unstable; urgency=low
> +
> +  * Dummy version bump to get messed up and released tags in sync :(
> +
> + -- Mika Kuoppala <[email protected]>  Wed, 15 Sep 2010 14:22:53
> +0300
> +
> +xserver-xorg-input-mtev (0.1.9) unstable; urgency=low
> +
> +  * Removed depracated xallocs
> +
> + -- Mika Kuoppala <[email protected]>  Wed, 15 Sep 2010 14:17:58
> +0300
> +
>  xserver-xorg-input-mtev (0.1.8) unstable; urgency=low
> 
>    * Fixes: NB#167575 If kernel driver does't expose minor width,
> --- src/multitouch.c
> +++ src/multitouch.c
> @@ -341,7 +341,7 @@
>       InputInfoPtr local = xf86AllocateInput(drv, 0);
>       if (!local)
>               goto error;
> -     mt = xcalloc(1, sizeof(struct mtev_mtouch));
> +     mt = calloc(1, sizeof(struct mtev_mtouch));
>       if (!mt)
>               goto error;
> 
> @@ -367,7 +367,7 @@
> 
>  static void uninit(InputDriverPtr drv, InputInfoPtr local, int flags)
>  {
> -     xfree(local->private);
> +     free(local->private);
>       local->private = NULL;
>       xf86DeleteInput(local, 0);
>  }
> @@ -390,7 +390,7 @@
>       .xf86version = XORG_VERSION_CURRENT,
>       .majorversion = 0,
>       .minorversion = 1,
> -     .patchlevel = 8,
> +     .patchlevel = 10,
>       .abiclass = ABI_CLASS_XINPUT,
>       .abiversion = ABI_XINPUT_VERSION,
>       .moduleclass = MOD_CLASS_XINPUT,
> --- xf86-input-mtev.yaml
> +++ xf86-input-mtev.yaml
> +Name: xf86-input-mtev
> +Summary: Multitouch input driver for Xserver
> +Version: 0.1.10
> +Release: 1
> +Group: System/X Hardware Support
> +License: GPLv2
> +URL: http://gitorious.org/xorg-next/xf86-input-mtev
> +Description: |
> +    - xf86-input-mtev - This package is a multitouch Xorg input driver
> +    supporting MultiTouch protocol
> +
> +Sources:
> +    - "%{name}-%{version}.tar.gz"
> +
> +PkgConfigBR:
> +    - xorg-server
> +    - xkbfile
> +    - xproto
> +    - inputproto
> +    - xrandr
> +    - randrproto
> +    - xextproto
> +
> +Configure: none
> +
> +Files:
> +    - "%{_bindir}/*"
> 
> ++++++ xorg-x11-drv-mtev.yaml
> --- xorg-x11-drv-mtev.yaml
> +++ xorg-x11-drv-mtev.yaml
> @@ -1,13 +1,13 @@
>  Name: xorg-x11-drv-mtev
>  Summary: Xserver-xorg mtev driver
> -Version: 0.1.8~2010819
> +Version: 0.1.10~20101108
>  Release: 0
>  Group: System/X Hardware Support
>  License: GPLv2
>  Description: This is a xserver-xorg input driver for devices supporting Linux
> Multi-Touch protocol
>  URL: http://gitorious.org/xorg-next/xf86-input-mtev
>  Sources:
> -    - xorg-x11-drv-mtev-0.1.8~2010819.tar.bz2
> +    - xorg-x11-drv-mtev-0.1.10~20101108.tar.bz2
>  Requires:
>      - xorg-x11-server-Xorg
>  PkgConfigBR:
> 
> _______________________________________________
> MeeGo-commits mailing list
> [email protected]
> http://lists.meego.com/listinfo/meego-commits
_______________________________________________
MeeGo-packaging mailing list
[email protected]
http://lists.meego.com/listinfo/meego-packaging

Reply via email to