You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
(12) |
Oct
|
Nov
|
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(18) |
Jul
(2) |
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <den...@us...> - 2010-08-29 19:56:49
|
Revision: 61 http://extracc.svn.sourceforge.net/extracc/?rev=61&view=rev Author: denis_arnaud Date: 2010-08-29 19:56:40 +0000 (Sun, 29 Aug 2010) Log Message: ----------- [Branch 0.5.0] Took into account the feedback from StdAir review (https://bugzilla.redhat.com/show_bug.cgi?id=614036). Modified Paths: -------------- branches/extracc/0.5.0/main/extracc.spec Modified: branches/extracc/0.5.0/main/extracc.spec =================================================================== --- branches/extracc/0.5.0/main/extracc.spec 2010-08-29 19:56:13 UTC (rev 60) +++ branches/extracc/0.5.0/main/extracc.spec 2010-08-29 19:56:40 UTC (rev 61) @@ -1,13 +1,13 @@ Name: extracc Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: CruiseControlisator for C++ library (CppUnit) unit tests Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.bz2 %{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} BuildRequires: cppunit-devel @@ -31,8 +31,10 @@ %prep %setup -q +# The INSTALL package is not relevant for RPM package users +# (e.g., see https://bugzilla.redhat.com/show_bug.cgi?id=489233#c4) +rm -f INSTALL # Fix some permissions and formats -rm -f INSTALL chmod -x AUTHORS ChangeLog COPYING NEWS README find . -type f -name '*.[hc]pp' -exec chmod 644 {} \; @@ -46,6 +48,7 @@ %if 0%{?rhel} rm -rf $RPM_BUILD_ROOT %endif + make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" # Remove unpackaged files from the buildroot @@ -57,7 +60,7 @@ # The clean section is no longer needed. # See: https://fedoraproject.org/wiki/Packaging/Guidelines#.25clean -%if 0%{?fedora} < 13 +%if 0%{?rhel} %clean rm -rf $RPM_BUILD_ROOT %endif @@ -86,7 +89,10 @@ %changelog -* Mon Aug 21 2010 Christophe Lacombe <cla...@am...> 0.5.0-2 +* Mon Aug 30 2010 Christophe Lacombe <cla...@am...> 0.5.0-3 +- Integrated comments from the StdAir package review (#614036) + +* Mon Aug 23 2010 Christophe Lacombe <cla...@am...> 0.5.0-2 - Integrated comments from the package review (#616881) * Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.5.0-1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-08-29 19:56:21
|
Revision: 60 http://extracc.svn.sourceforge.net/extracc/?rev=60&view=rev Author: denis_arnaud Date: 2010-08-29 19:56:13 +0000 (Sun, 29 Aug 2010) Log Message: ----------- [Packaging] Took into account the feedback from StdAir review (https://bugzilla.redhat.com/show_bug.cgi?id=614036). Modified Paths: -------------- trunk/extracc/extracc.spec Modified: trunk/extracc/extracc.spec =================================================================== --- trunk/extracc/extracc.spec 2010-08-21 19:29:43 UTC (rev 59) +++ trunk/extracc/extracc.spec 2010-08-29 19:56:13 UTC (rev 60) @@ -1,13 +1,13 @@ Name: extracc Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: CruiseControlisator for C++ library (CppUnit) unit tests Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.bz2 %{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} BuildRequires: cppunit-devel @@ -31,8 +31,10 @@ %prep %setup -q +# The INSTALL package is not relevant for RPM package users +# (e.g., see https://bugzilla.redhat.com/show_bug.cgi?id=489233#c4) +rm -f INSTALL # Fix some permissions and formats -rm -f INSTALL chmod -x AUTHORS ChangeLog COPYING NEWS README find . -type f -name '*.[hc]pp' -exec chmod 644 {} \; @@ -46,6 +48,7 @@ %if 0%{?rhel} rm -rf $RPM_BUILD_ROOT %endif + make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" # Remove unpackaged files from the buildroot @@ -57,7 +60,7 @@ # The clean section is no longer needed. # See: https://fedoraproject.org/wiki/Packaging/Guidelines#.25clean -%if 0%{?fedora} < 13 +%if 0%{?rhel} %clean rm -rf $RPM_BUILD_ROOT %endif @@ -86,7 +89,10 @@ %changelog -* Mon Aug 21 2010 Christophe Lacombe <cla...@am...> 0.5.0-2 +* Mon Aug 30 2010 Christophe Lacombe <cla...@am...> 0.5.0-3 +- Integrated comments from the StdAir package review (#614036) + +* Mon Aug 23 2010 Christophe Lacombe <cla...@am...> 0.5.0-2 - Integrated comments from the package review (#616881) * Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.5.0-1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-08-21 19:29:49
|
Revision: 59 http://extracc.svn.sourceforge.net/extracc/?rev=59&view=rev Author: denis_arnaud Date: 2010-08-21 19:29:43 +0000 (Sat, 21 Aug 2010) Log Message: ----------- [Doc] In the extracc-config man page, just reference the COPYING file, instead of reproducing it. Modified Paths: -------------- trunk/extracc/man/extracc-config.1 Modified: trunk/extracc/man/extracc-config.1 =================================================================== --- trunk/extracc/man/extracc-config.1 2010-08-21 19:29:30 UTC (rev 58) +++ trunk/extracc/man/extracc-config.1 2010-08-21 19:29:43 UTC (rev 59) @@ -30,8 +30,6 @@ .SH COPYRIGHT Copyright \(co 2009-2010 Denis Arnaud -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation. +See the COPYING file for more information on the (LGPLv2) license, or +directly on Internet: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-08-21 19:29:36
|
Revision: 58 http://extracc.svn.sourceforge.net/extracc/?rev=58&view=rev Author: denis_arnaud Date: 2010-08-21 19:29:30 +0000 (Sat, 21 Aug 2010) Log Message: ----------- [Branch 0.5.0] In the extracc-config man page, just reference the COPYING file, instead of reproducing it. Modified Paths: -------------- branches/extracc/0.5.0/main/man/extracc-config.1 Modified: branches/extracc/0.5.0/main/man/extracc-config.1 =================================================================== --- branches/extracc/0.5.0/main/man/extracc-config.1 2010-08-21 19:06:52 UTC (rev 57) +++ branches/extracc/0.5.0/main/man/extracc-config.1 2010-08-21 19:29:30 UTC (rev 58) @@ -30,8 +30,6 @@ .SH COPYRIGHT Copyright \(co 2009-2010 Denis Arnaud -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation. +See the COPYING file for more information on the (LGPLv2) license, or +directly on Internet: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-08-21 19:06:59
|
Revision: 57 http://extracc.svn.sourceforge.net/extracc/?rev=57&view=rev Author: denis_arnaud Date: 2010-08-21 19:06:52 +0000 (Sat, 21 Aug 2010) Log Message: ----------- [Branch 0.5.0] Integrated package review comments (https://bugzilla.redhat.com/show_bug.cgi?id=616881). Modified Paths: -------------- branches/extracc/0.5.0/main/configure.ac Added Paths: ----------- branches/extracc/0.5.0/main/extracc.spec Removed Paths: ------------- branches/extracc/0.5.0/main/extracc.spec.in Property Changed: ---------------- branches/extracc/0.5.0/main/ Property changes on: branches/extracc/0.5.0/main ___________________________________________________________________ Modified: svn:ignore - libtool configure config.log config.status autom4te.cache aclocal.m4 INSTALL Makefile.in Makefile extracc.m4 extracc.spec extracc-config extracc-*.tar.* + libtool configure config.log config.status autom4te.cache aclocal.m4 INSTALL Makefile.in Makefile extracc.m4 extracc-config extracc-*.tar.* Modified: branches/extracc/0.5.0/main/configure.ac =================================================================== --- branches/extracc/0.5.0/main/configure.ac 2010-08-21 19:06:28 UTC (rev 56) +++ branches/extracc/0.5.0/main/configure.ac 2010-08-21 19:06:52 UTC (rev 57) @@ -9,10 +9,6 @@ AM_PATH_CPPUNIT(1.10) AM_CONDITIONAL([HAVE_CPPUNIT], [test "x$CPPUNIT_LIBS" != x]) -# RPM release number -RPM_RELEASE="1" -AC_SUBST(RPM_RELEASE) - # Shared library versioning GENERIC_LIBRARY_VERSION="0:5:0" # | | | @@ -82,7 +78,6 @@ # Define configured files AC_CONFIG_FILES( Makefile - extracc.spec extracc.m4 extracc-config extracppunit/Makefile @@ -126,3 +121,4 @@ Now type 'make' to build and install $PACKAGE-$VERSION library ------------------------------------------------------------------------------ " + Copied: branches/extracc/0.5.0/main/extracc.spec (from rev 55, branches/extracc/0.5.0/main/extracc.spec.in) =================================================================== --- branches/extracc/0.5.0/main/extracc.spec (rev 0) +++ branches/extracc/0.5.0/main/extracc.spec 2010-08-21 19:06:52 UTC (rev 57) @@ -0,0 +1,103 @@ +Name: extracc +Version: 0.5.0 +Release: 2%{?dist} + +Summary: CruiseControlisator for C++ library (CppUnit) unit tests + +Group: System Environment/Libraries +License: LGPLv2+ +URL: http://sourceforge.net/projects/%{name}/ +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 +%{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} + +BuildRequires: cppunit-devel + +%description +That project aims at providing tools and code to be used in C++ projects +relying on CppUnit (http://apps.sourceforge.net/mediawiki/cppunit) and/or +Trac (http://trac.edgewall.org), to allow for easy integration with +CruiseControl (http://cruisecontrol.sourceforge.net). + +%package devel +Summary: Header files, libraries and development documentation for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +This package contains the header files, static libraries and +development documentation for %{name}. If you would like to develop +programs using %{name}, you will need to install %{name}-devel. + + +%prep +%setup -q +# Fix some permissions and formats +rm -f INSTALL +chmod -x AUTHORS ChangeLog COPYING NEWS README +find . -type f -name '*.[hc]pp' -exec chmod 644 {} \; + +%build +%configure --disable-static +make %{?_smp_mflags} + +%install +# On Fedora, the BuildRoot is automatically cleaned. Which is not the case for +# RedHat. See: https://fedoraproject.org/wiki/Packaging/Guidelines#BuildRoot_tag +%if 0%{?rhel} +rm -rf $RPM_BUILD_ROOT +%endif +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" + +# Remove unpackaged files from the buildroot +rm -rf $RPM_BUILD_ROOT%{_includedir}/%{name} +rm -f $RPM_BUILD_ROOT%{_libdir}/libextracppunit.la + +# Set the executable bit of the Python scripts +chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/tools/*.py + +# The clean section is no longer needed. +# See: https://fedoraproject.org/wiki/Packaging/Guidelines#.25clean +%if 0%{?fedora} < 13 +%clean +rm -rf $RPM_BUILD_ROOT +%endif + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING NEWS README +%{_libdir}/libextracppunit.so.* + +%files devel +%defattr(-,root,root,-) +%{_includedir}/extracppunit/ +%{_bindir}/%{name}-config +%{_libdir}/libextracppunit.so +%{_datadir}/aclocal/%{name}.m4 +%dir %{_datadir}/%{name}/ +%{_datadir}/%{name}/extracppunit/ +%{_datadir}/%{name}/build/ +%{_datadir}/%{name}/tools/ +%{_mandir}/man1/%{name}-config.1.* + + +%changelog +* Mon Aug 21 2010 Christophe Lacombe <cla...@am...> 0.5.0-2 +- Integrated comments from the package review (#616881) + +* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.5.0-1 +- Upstream integration + +* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.4.0-1 +- Upstream integration + +* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.3.0-1 +- Upstream integration + +* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.2.0-1 +- RPM release for Fedora 11 + Deleted: branches/extracc/0.5.0/main/extracc.spec.in =================================================================== --- branches/extracc/0.5.0/main/extracc.spec.in 2010-08-21 19:06:28 UTC (rev 56) +++ branches/extracc/0.5.0/main/extracc.spec.in 2010-08-21 19:06:52 UTC (rev 57) @@ -1,95 +0,0 @@ -Name: @PACKAGE@ -Version: @VERSION@ -Release: @RPM_RELEASE@%{?dist} - -Summary: CruiseControlisator for C++ library (CppUnit) unit tests - -Group: System Environment/Libraries -License: LGPLv2 -URL: http://sourceforge.net/projects/%{name}/ -Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 -%{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} - -BuildRequires: cppunit-devel >= 1.10 -#Requires: - -%description -That project aims at providing tools and code to be used in C++ projects -relying on CppUnit (http://apps.sourceforge.net/mediawiki/cppunit) and/or -Trac (http://trac.edgewall.org), to allow for easy integration with -CruiseControl (http://cruisecontrol.sourceforge.net). - -%package devel -Summary: Header files, libraries and development documentation for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: pkgconfig - -%description devel -This package contains the header files, static libraries and -development documentation for %{name}. If you would like to develop -programs using %{name}, you will need to install %{name}-devel. - - -%prep -%setup -q -# Fix some permissions and formats -rm -f INSTALL -chmod -x AUTHORS ChangeLog COPYING NEWS README -find . -type f -name '*.[hc]pp' -exec chmod 644 {} \; - -%build -%configure --disable-static -make %{?_smp_mflags} - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -# Remove unpackaged files from the buildroot -rm -rf $RPM_BUILD_ROOT%{_includedir}/%{name} -rm -f $RPM_BUILD_ROOT%{_libdir}/libextracppunit.la -# Set the executable bit of the Python scripts -chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/tools/*.py - -%clean -rm -rf $RPM_BUILD_ROOT - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - -%post devel -echo "" - -%preun devel -echo "" - -%files -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING NEWS README -%{_libdir}/libextracppunit.so.* - -%files devel -%defattr(-,root,root,-) -%{_includedir}/extracppunit/ -%{_bindir}/%{name}-config -%{_libdir}/libextracppunit.so -%{_datadir}/aclocal/%{name}.m4 -%{_datadir}/%{name}/extracppunit/ -%{_datadir}/%{name}/build/ -%{_datadir}/%{name}/tools/ -%{_mandir}/man1/%{name}-config.1.* - - -%changelog -* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.5.0-1 -- Upstream integration - -* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.4.0-1 -- Upstream integration - -* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.3.0-1 -- Upstream integration - -* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.2.0-1 -- RPM release for Fedora 11 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-08-21 19:06:34
|
Revision: 56 http://extracc.svn.sourceforge.net/extracc/?rev=56&view=rev Author: denis_arnaud Date: 2010-08-21 19:06:28 +0000 (Sat, 21 Aug 2010) Log Message: ----------- [Dev] Integrated package review comments (https://bugzilla.redhat.com/show_bug.cgi?id=616881). Modified Paths: -------------- trunk/extracc/configure.ac Added Paths: ----------- trunk/extracc/extracc.spec Removed Paths: ------------- trunk/extracc/extracc.spec.in Property Changed: ---------------- trunk/extracc/ Property changes on: trunk/extracc ___________________________________________________________________ Modified: svn:ignore - libtool configure config.log config.status autom4te.cache aclocal.m4 INSTALL Makefile.in Makefile extracc.m4 extracc.spec extracc-config extracc-*.tar.* + libtool configure config.log config.status autom4te.cache aclocal.m4 INSTALL Makefile.in Makefile extracc.m4 extracc-config extracc-*.tar.* Modified: trunk/extracc/configure.ac =================================================================== --- trunk/extracc/configure.ac 2010-08-08 15:58:20 UTC (rev 55) +++ trunk/extracc/configure.ac 2010-08-21 19:06:28 UTC (rev 56) @@ -2,19 +2,15 @@ #------------------------------------------------------------------- AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (C) 2009-2010 Christophe Lacombe <dd...@us...>]) -AC_INIT([EXTRACC],[0.5.0],[cla...@am...],[extracc]) +AC_INIT([EXTRACC],[99.99.99],[cla...@am...],[extracc]) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE AM_PATH_CPPUNIT(1.10) AM_CONDITIONAL([HAVE_CPPUNIT], [test "x$CPPUNIT_LIBS" != x]) -# RPM release number -RPM_RELEASE="1" -AC_SUBST(RPM_RELEASE) - # Shared library versioning -GENERIC_LIBRARY_VERSION="0:5:0" +GENERIC_LIBRARY_VERSION="99:99:99" # | | | # +------+ | +---+ # | | | @@ -82,7 +78,6 @@ # Define configured files AC_CONFIG_FILES( Makefile - extracc.spec extracc.m4 extracc-config extracppunit/Makefile @@ -126,3 +121,4 @@ Now type 'make' to build and install $PACKAGE-$VERSION library ------------------------------------------------------------------------------ " + Copied: trunk/extracc/extracc.spec (from rev 55, trunk/extracc/extracc.spec.in) =================================================================== --- trunk/extracc/extracc.spec (rev 0) +++ trunk/extracc/extracc.spec 2010-08-21 19:06:28 UTC (rev 56) @@ -0,0 +1,103 @@ +Name: extracc +Version: 0.5.0 +Release: 2%{?dist} + +Summary: CruiseControlisator for C++ library (CppUnit) unit tests + +Group: System Environment/Libraries +License: LGPLv2+ +URL: http://sourceforge.net/projects/%{name}/ +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 +%{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} + +BuildRequires: cppunit-devel + +%description +That project aims at providing tools and code to be used in C++ projects +relying on CppUnit (http://apps.sourceforge.net/mediawiki/cppunit) and/or +Trac (http://trac.edgewall.org), to allow for easy integration with +CruiseControl (http://cruisecontrol.sourceforge.net). + +%package devel +Summary: Header files, libraries and development documentation for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +This package contains the header files, static libraries and +development documentation for %{name}. If you would like to develop +programs using %{name}, you will need to install %{name}-devel. + + +%prep +%setup -q +# Fix some permissions and formats +rm -f INSTALL +chmod -x AUTHORS ChangeLog COPYING NEWS README +find . -type f -name '*.[hc]pp' -exec chmod 644 {} \; + +%build +%configure --disable-static +make %{?_smp_mflags} + +%install +# On Fedora, the BuildRoot is automatically cleaned. Which is not the case for +# RedHat. See: https://fedoraproject.org/wiki/Packaging/Guidelines#BuildRoot_tag +%if 0%{?rhel} +rm -rf $RPM_BUILD_ROOT +%endif +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" + +# Remove unpackaged files from the buildroot +rm -rf $RPM_BUILD_ROOT%{_includedir}/%{name} +rm -f $RPM_BUILD_ROOT%{_libdir}/libextracppunit.la + +# Set the executable bit of the Python scripts +chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/tools/*.py + +# The clean section is no longer needed. +# See: https://fedoraproject.org/wiki/Packaging/Guidelines#.25clean +%if 0%{?fedora} < 13 +%clean +rm -rf $RPM_BUILD_ROOT +%endif + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING NEWS README +%{_libdir}/libextracppunit.so.* + +%files devel +%defattr(-,root,root,-) +%{_includedir}/extracppunit/ +%{_bindir}/%{name}-config +%{_libdir}/libextracppunit.so +%{_datadir}/aclocal/%{name}.m4 +%dir %{_datadir}/%{name}/ +%{_datadir}/%{name}/extracppunit/ +%{_datadir}/%{name}/build/ +%{_datadir}/%{name}/tools/ +%{_mandir}/man1/%{name}-config.1.* + + +%changelog +* Mon Aug 21 2010 Christophe Lacombe <cla...@am...> 0.5.0-2 +- Integrated comments from the package review (#616881) + +* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.5.0-1 +- Upstream integration + +* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.4.0-1 +- Upstream integration + +* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.3.0-1 +- Upstream integration + +* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.2.0-1 +- RPM release for Fedora 11 + Deleted: trunk/extracc/extracc.spec.in =================================================================== --- trunk/extracc/extracc.spec.in 2010-08-08 15:58:20 UTC (rev 55) +++ trunk/extracc/extracc.spec.in 2010-08-21 19:06:28 UTC (rev 56) @@ -1,95 +0,0 @@ -Name: @PACKAGE@ -Version: @VERSION@ -Release: @RPM_RELEASE@%{?dist} - -Summary: CruiseControlisator for C++ library (CppUnit) unit tests - -Group: System Environment/Libraries -License: LGPLv2 -URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 -%{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} - -BuildRequires: cppunit-devel >= 1.10 - -%description -That project aims at providing tools and code to be used in C++ projects -relying on CppUnit (http://apps.sourceforge.net/mediawiki/cppunit) and/or -Trac (http://trac.edgewall.org), to allow for easy integration with -CruiseControl (http://cruisecontrol.sourceforge.net). - -%package devel -Summary: Header files, libraries and development documentation for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: pkgconfig - -%description devel -This package contains the header files, static libraries and -development documentation for %{name}. If you would like to develop -programs using %{name}, you will need to install %{name}-devel. - - -%prep -%setup -q -# Fix some permissions and formats -rm -f INSTALL -chmod -x AUTHORS ChangeLog COPYING NEWS README -find . -type f -name '*.[hc]pp' -exec chmod 644 {} \; - -%build -%configure --disable-static -make %{?_smp_mflags} - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -# Remove unpackaged files from the buildroot -rm -rf $RPM_BUILD_ROOT%{_includedir}/%{name} -rm -f $RPM_BUILD_ROOT%{_libdir}/libextracppunit.la -# Set the executable bit of the Python scripts -chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/tools/*.py - -%clean -rm -rf $RPM_BUILD_ROOT - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - -%post devel -echo "" - -%preun devel -echo "" - -%files -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING NEWS README -%{_libdir}/libextracppunit.so.* - -%files devel -%defattr(-,root,root,-) -%{_includedir}/extracppunit/ -%{_bindir}/%{name}-config -%{_libdir}/libextracppunit.so -%{_datadir}/aclocal/%{name}.m4 -%{_datadir}/%{name}/extracppunit/ -%{_datadir}/%{name}/build/ -%{_datadir}/%{name}/tools/ -%{_mandir}/man1/%{name}-config.1.* - - -%changelog -* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.5.0-1 -- Upstream integration - -* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.4.0-1 -- Upstream integration - -* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.3.0-1 -- Upstream integration - -* Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.2.0-1 -- RPM release for Fedora 11 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-08-08 15:58:26
|
Revision: 55 http://extracc.svn.sourceforge.net/extracc/?rev=55&view=rev Author: denis_arnaud Date: 2010-08-08 15:58:20 +0000 (Sun, 08 Aug 2010) Log Message: ----------- [Dev] Added explicit destructor, so as to set it virtual. Modified Paths: -------------- trunk/extracc/extracppunit/CppUnitCore.hpp trunk/extracc/extracppunit/XmlOutputterHookForCC.hpp Property Changed: ---------------- trunk/extracc/extracppunit/ Property changes on: trunk/extracc/extracppunit ___________________________________________________________________ Modified: svn:ignore - Makefile.in .deps Makefile + .libs .deps Makefile.in Makefile Modified: trunk/extracc/extracppunit/CppUnitCore.hpp =================================================================== --- trunk/extracc/extracppunit/CppUnitCore.hpp 2010-07-20 22:30:37 UTC (rev 54) +++ trunk/extracc/extracppunit/CppUnitCore.hpp 2010-08-08 15:58:20 UTC (rev 55) @@ -4,37 +4,43 @@ #include <string> // /////////////// MACROS ///////////////// -#define CPPUNIT_MAIN_WITH_CLASS(CPPUNITCORE_CLASS) \ - int main (int argc, char* argv[]) { \ - std::string xmlOutputFile(__FILE__); \ +#define CPPUNIT_MAIN_WITH_CLASS(CPPUNITCORE_CLASS) \ + int main (int argc, char* argv[]) { \ + std::string xmlOutputFile(__FILE__); \ xmlOutputFile.resize(xmlOutputFile.length()-4); \ - xmlOutputFile.append("_results.xml"); \ + xmlOutputFile.append("_results.xml"); \ return CPPUNITCORE_CLASS(xmlOutputFile.c_str()).main(argc, argv); \ } + #define CPPUNIT_MAIN_WITH_NAMESPACE(CPPUNITCORE_CLASS_NAMESPACE) CPPUNIT_MAIN_WITH_CLASS(CPPUNITCORE_CLASS_NAMESPACE::CppUnitCore) + #define CPPUNIT_MAIN() CPPUNIT_MAIN_WITH_NAMESPACE(EXTRACPPUNIT) // /////////// (END OF) MACROS ///////////// namespace EXTRACPPUNIT { - /** Class to handle CPPUnit functions. */ - class CppUnitCore { - public: - /** Constructor .*/ - CppUnitCore (const char* resultFileName); + /** Class to handle CPPUnit functions. */ + class CppUnitCore { + public: + /** Constructor .*/ + CppUnitCore (const char* resultFileName); + + /** Destructor .*/ + virtual ~CppUnitCore() {} - /** The main to use for all CPPUnit test.*/ - int main (int argc, char* argv[]); + /** The main to use for all CPPUnit test.*/ + int main (int argc, char* argv[]); - /** To parse the argument, one has just to overwrite the maincore method with args. */ - virtual int maincore(int argc, char* argv[]); + /** To parse the argument, one has just to overwrite the + maincore method with args. */ + virtual int maincore (int argc, char* argv[]); - protected: - const char* _resultFileName; + protected: + const char* _resultFileName; - /** This method should not be overwritten. */ - int maincore(); - }; + /** This method should not be overwritten. */ + int maincore(); + }; } #endif // __EXTRACC_EXTRACPPUNIT_CPPUNITCORE_HPP Modified: trunk/extracc/extracppunit/XmlOutputterHookForCC.hpp =================================================================== --- trunk/extracc/extracppunit/XmlOutputterHookForCC.hpp 2010-07-20 22:30:37 UTC (rev 54) +++ trunk/extracc/extracppunit/XmlOutputterHookForCC.hpp 2010-08-08 15:58:20 UTC (rev 55) @@ -8,25 +8,29 @@ namespace EXTRACPPUNIT { - /** Helper class to translate CPPUnit test output into something ANT can - understand (for CruiseControl). */ - class XmlOutputterHookForCC : public CppUnit::XmlOutputterHook { - public: - /** Call-back for the beginning of a document. */ - virtual void beginDocument (CppUnit::XmlDocument*); + /** Helper class to translate CPPUnit test output into something ANT can + understand (for CruiseControl). */ + class XmlOutputterHookForCC : public CppUnit::XmlOutputterHook { + public: + /** Call-back for the beginning of a document. */ + virtual void beginDocument (CppUnit::XmlDocument*); + + /** Call-back for a failed test. */ + virtual void failTestAdded (CppUnit::XmlDocument*, CppUnit::XmlElement*, + CppUnit::Test*, CppUnit::TestFailure*); - /** Call-back for a failed test. */ - virtual void failTestAdded (CppUnit::XmlDocument*, CppUnit::XmlElement*, - CppUnit::Test*, CppUnit::TestFailure*); - - /** Call-back for a successful test. */ - virtual void successfulTestAdded (CppUnit::XmlDocument*, - CppUnit::XmlElement*, CppUnit::Test*); - - /** Call-back for a new test. */ - virtual void testAdded (CppUnit::XmlDocument*, CppUnit::XmlElement*, - CppUnit::Test*); - }; + /** Call-back for a successful test. */ + virtual void successfulTestAdded (CppUnit::XmlDocument*, + CppUnit::XmlElement*, CppUnit::Test*); + + /** Call-back for a new test. */ + virtual void testAdded (CppUnit::XmlDocument*, CppUnit::XmlElement*, + CppUnit::Test*); + + public: + /** Destructor .*/ + virtual ~XmlOutputterHookForCC() {} + }; } #endif // __EXTRACC_EXTRACPPUNIT_XMLOUTPUTTERHOOKFORCC_HPP This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-07-20 22:30:44
|
Revision: 54 http://extracc.svn.sourceforge.net/extracc/?rev=54&view=rev Author: denis_arnaud Date: 2010-07-20 22:30:37 +0000 (Tue, 20 Jul 2010) Log Message: ----------- [RPM] Changed the BuildRoot, as per the new Fedora packaging guideline. Modified Paths: -------------- branches/extracc/0.5.0/main/extracc.spec.in Modified: branches/extracc/0.5.0/main/extracc.spec.in =================================================================== --- branches/extracc/0.5.0/main/extracc.spec.in 2010-07-20 22:30:35 UTC (rev 53) +++ branches/extracc/0.5.0/main/extracc.spec.in 2010-07-20 22:30:37 UTC (rev 54) @@ -8,7 +8,7 @@ License: LGPLv2 URL: http://sourceforge.net/projects/%{name}/ Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} BuildRequires: cppunit-devel >= 1.10 #Requires: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-07-20 22:30:41
|
Revision: 53 http://extracc.svn.sourceforge.net/extracc/?rev=53&view=rev Author: denis_arnaud Date: 2010-07-20 22:30:35 +0000 (Tue, 20 Jul 2010) Log Message: ----------- [RPM] Changed the BuildRoot, as per the new Fedora packaging guideline. Modified Paths: -------------- trunk/extracc/extracc.spec.in Modified: trunk/extracc/extracc.spec.in =================================================================== --- trunk/extracc/extracc.spec.in 2010-06-16 08:48:28 UTC (rev 52) +++ trunk/extracc/extracc.spec.in 2010-07-20 22:30:35 UTC (rev 53) @@ -8,10 +8,9 @@ License: LGPLv2 URL: http://sourceforge.net/projects/%{name}/ Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)} BuildRequires: cppunit-devel >= 1.10 -#Requires: %description That project aims at providing tools and code to be used in C++ projects @@ -93,3 +92,4 @@ * Mon Sep 07 2009 Denis Arnaud <den...@m4...> 0.2.0-1 - RPM release for Fedora 11 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-16 08:48:34
|
Revision: 52 http://extracc.svn.sourceforge.net/extracc/?rev=52&view=rev Author: denis_arnaud Date: 2010-06-16 08:48:28 +0000 (Wed, 16 Jun 2010) Log Message: ----------- [Packaging] Fixed a few errors in the RPM specification file. Modified Paths: -------------- branches/extracc/0.5.0/main/extracc.spec.in Modified: branches/extracc/0.5.0/main/extracc.spec.in =================================================================== --- branches/extracc/0.5.0/main/extracc.spec.in 2010-06-11 09:32:35 UTC (rev 51) +++ branches/extracc/0.5.0/main/extracc.spec.in 2010-06-16 08:48:28 UTC (rev 52) @@ -7,7 +7,7 @@ Group: System Environment/Libraries License: LGPLv2 URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cppunit-devel >= 1.10 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-11 09:32:41
|
Revision: 51 http://extracc.svn.sourceforge.net/extracc/?rev=51&view=rev Author: denis_arnaud Date: 2010-06-11 09:32:35 +0000 (Fri, 11 Jun 2010) Log Message: ----------- [Config] Fixed the RPM specification file for the source URL. Modified Paths: -------------- trunk/extracc/extracc.spec.in Modified: trunk/extracc/extracc.spec.in =================================================================== --- trunk/extracc/extracc.spec.in 2010-06-11 09:31:12 UTC (rev 50) +++ trunk/extracc/extracc.spec.in 2010-06-11 09:32:35 UTC (rev 51) @@ -7,7 +7,7 @@ Group: System Environment/Libraries License: LGPLv2 URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2/download +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cppunit-devel >= 1.10 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-11 09:31:18
|
Revision: 50 http://extracc.svn.sourceforge.net/extracc/?rev=50&view=rev Author: denis_arnaud Date: 2010-06-11 09:31:12 +0000 (Fri, 11 Jun 2010) Log Message: ----------- [Branch 0.5.0] Fixed the RPM specification file for the source URL. Modified Paths: -------------- branches/extracc/0.5.0/main/extracc.spec.in Modified: branches/extracc/0.5.0/main/extracc.spec.in =================================================================== --- branches/extracc/0.5.0/main/extracc.spec.in 2010-06-10 22:38:32 UTC (rev 49) +++ branches/extracc/0.5.0/main/extracc.spec.in 2010-06-11 09:31:12 UTC (rev 50) @@ -7,7 +7,7 @@ Group: System Environment/Libraries License: LGPLv2 URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2/download +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cppunit-devel >= 1.10 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 22:38:38
|
Revision: 49 http://extracc.svn.sourceforge.net/extracc/?rev=49&view=rev Author: denis_arnaud Date: 2010-06-10 22:38:32 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.5.0] Fixed the extracc.spec source URL. Modified Paths: -------------- branches/extracc/0.5.0/main/extracc.spec.in Modified: branches/extracc/0.5.0/main/extracc.spec.in =================================================================== --- branches/extracc/0.5.0/main/extracc.spec.in 2010-06-10 22:38:27 UTC (rev 48) +++ branches/extracc/0.5.0/main/extracc.spec.in 2010-06-10 22:38:32 UTC (rev 49) @@ -7,7 +7,7 @@ Group: System Environment/Libraries License: LGPLv2 URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2/download BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cppunit-devel >= 1.10 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 22:38:33
|
Revision: 48 http://extracc.svn.sourceforge.net/extracc/?rev=48&view=rev Author: denis_arnaud Date: 2010-06-10 22:38:27 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.5.0] Fixed the extracc.spec source URL. Modified Paths: -------------- trunk/extracc/extracc.spec.in Modified: trunk/extracc/extracc.spec.in =================================================================== --- trunk/extracc/extracc.spec.in 2010-06-10 22:27:39 UTC (rev 47) +++ trunk/extracc/extracc.spec.in 2010-06-10 22:38:27 UTC (rev 48) @@ -7,7 +7,7 @@ Group: System Environment/Libraries License: LGPLv2 URL: http://sourceforge.net/projects/%{name}/ -Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2/download BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cppunit-devel >= 1.10 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 22:27:45
|
Revision: 47 http://extracc.svn.sourceforge.net/extracc/?rev=47&view=rev Author: denis_arnaud Date: 2010-06-10 22:27:39 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.5.0] Fixed the extracc-config script. Modified Paths: -------------- trunk/extracc/extracc-config.in trunk/extracc/extracppunit/Makefile.am Modified: trunk/extracc/extracc-config.in =================================================================== --- trunk/extracc/extracc-config.in 2010-06-10 22:25:40 UTC (rev 46) +++ trunk/extracc/extracc-config.in 2010-06-10 22:27:39 UTC (rev 47) @@ -64,9 +64,9 @@ --libs) if [ "${prefix}" != "/usr" ]; then - echo -L${libdir} -l@PACKAGE@-extracppunit + echo -L${libdir} -lextracppunit else - echo -l@PACKAGE@-extracppunit + echo -lextracppunit fi ;; Modified: trunk/extracc/extracppunit/Makefile.am =================================================================== --- trunk/extracc/extracppunit/Makefile.am 2010-06-10 22:25:40 UTC (rev 46) +++ trunk/extracc/extracppunit/Makefile.am 2010-06-10 22:27:39 UTC (rev 47) @@ -12,8 +12,9 @@ # libextracppunit_la_SOURCES = \ $(extracppunit_h_sources) $(extracppunit_cc_sources) -libextracppunit_la_CXXFLAGS = $(CXXFLAGS_OPT) $(CPPUNIT_CFLAGS) -libextracppunit_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION) +libextracppunit_la_CXXFLAGS = $(CPPUNIT_CFLAGS) +libextracppunit_la_LDFLAGS = $(CPPUNIT_LIBS) \ + -version-info $(GENERIC_LIBRARY_VERSION) # Header files This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 22:25:47
|
Revision: 46 http://extracc.svn.sourceforge.net/extracc/?rev=46&view=rev Author: denis_arnaud Date: 2010-06-10 22:25:40 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.5.0] Fixed the extracc-config script. Modified Paths: -------------- branches/extracc/0.5.0/main/extracc-config.in branches/extracc/0.5.0/main/extracppunit/Makefile.am Modified: branches/extracc/0.5.0/main/extracc-config.in =================================================================== --- branches/extracc/0.5.0/main/extracc-config.in 2010-06-10 22:13:23 UTC (rev 45) +++ branches/extracc/0.5.0/main/extracc-config.in 2010-06-10 22:25:40 UTC (rev 46) @@ -64,9 +64,9 @@ --libs) if [ "${prefix}" != "/usr" ]; then - echo -L${libdir} -l@PACKAGE@-extracppunit + echo -L${libdir} -lextracppunit else - echo -l@PACKAGE@-extracppunit + echo -lextracppunit fi ;; Modified: branches/extracc/0.5.0/main/extracppunit/Makefile.am =================================================================== --- branches/extracc/0.5.0/main/extracppunit/Makefile.am 2010-06-10 22:13:23 UTC (rev 45) +++ branches/extracc/0.5.0/main/extracppunit/Makefile.am 2010-06-10 22:25:40 UTC (rev 46) @@ -12,8 +12,9 @@ # libextracppunit_la_SOURCES = \ $(extracppunit_h_sources) $(extracppunit_cc_sources) -libextracppunit_la_CXXFLAGS = $(CXXFLAGS_OPT) $(CPPUNIT_CFLAGS) -libextracppunit_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION) +libextracppunit_la_CXXFLAGS = $(CPPUNIT_CFLAGS) +libextracppunit_la_LDFLAGS = $(CPPUNIT_LIBS) \ + -version-info $(GENERIC_LIBRARY_VERSION) # Header files This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 22:13:30
|
Revision: 45 http://extracc.svn.sourceforge.net/extracc/?rev=45&view=rev Author: denis_arnaud Date: 2010-06-10 22:13:23 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.5.0] Creation of the release 0.5.0 branch, from revision r43. Added Paths: ----------- branches/extracc/0.5.0/main/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 22:10:59
|
Revision: 44 http://extracc.svn.sourceforge.net/extracc/?rev=44&view=rev Author: denis_arnaud Date: 2010-06-10 22:10:50 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.5.0] Preparation of the release 0.5.0 branch. Added Paths: ----------- branches/extracc/0.5.0/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 22:09:43
|
Revision: 43 http://extracc.svn.sourceforge.net/extracc/?rev=43&view=rev Author: denis_arnaud Date: 2010-06-10 22:09:37 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Release 0.5.0] The header files (CppUnitCore.hpp) are now delivered directly in the extracppunit directory. Modified Paths: -------------- trunk/extracc/Makefile.am trunk/extracc/configure.ac trunk/extracc/extracc.spec.in trunk/extracc/extracppunit/Makefile.am trunk/extracc/extracppunit/sources.mk Modified: trunk/extracc/Makefile.am =================================================================== --- trunk/extracc/Makefile.am 2010-06-10 20:55:43 UTC (rev 42) +++ trunk/extracc/Makefile.am 2010-06-10 22:09:37 UTC (rev 43) @@ -1,4 +1,6 @@ +## top directory @SET_MAKE@ + AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) ACLOCAL_AMFLAGS = -I config @@ -9,6 +11,18 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \ config-h.in autogen.sh +EXTRA_DIST = @PACKAGE@.m4 $(install_sources) + +# Build in these directories: +SUBDIRS = extracppunit man + + +# Configuration helpers +bin_SCRIPTS = @PACKAGE@-config + +#pkgconfigdir = $(libdir)/pkgconfig +#pkgconfig_DATA = @PACKAGE@.pc + datadir = @datadir@ pkgdatadir = $(datadir)/@PACKAGE@ @@ -22,6 +36,7 @@ build/ant/text2ccxml/src/com/gb/bci/ant/taskdefs/TextToCCXml.java \ tools/cc-open-trac-ticket.py +# Targets install-data-local: $(addprefix $(DESTDIR)$(pkgdatadir)/,$(install_sources)) $(DESTDIR)$(pkgdatadir)/%: % $(mkinstalldirs) `dirname $@` @@ -29,12 +44,3 @@ uninstall-local: rm -rf $(DESTDIR)$(pkgdatadir)/* - -nobase_pkginclude_HEADERS = extracppunit/CppUnitCore.hpp - -EXTRA_DIST = @PACKAGE@.m4 $(install_sources) - -# Configuration helpers -bin_SCRIPTS = @PACKAGE@-config - -SUBDIRS = man extracppunit Modified: trunk/extracc/configure.ac =================================================================== --- trunk/extracc/configure.ac 2010-06-10 20:55:43 UTC (rev 42) +++ trunk/extracc/configure.ac 2010-06-10 22:09:37 UTC (rev 43) @@ -1,8 +1,8 @@ # Process this file with autoconf to produce a configure script #------------------------------------------------------------------- AC_PREREQ(2.59) -AC_COPYRIGHT([Copyright (C) 2009 Christophe Lacombe <dd...@us...>]) -AC_INIT([EXTRACC],[99.99.99],[cla...@am...],[extracc]) +AC_COPYRIGHT([Copyright (C) 2009-2010 Christophe Lacombe <dd...@us...>]) +AC_INIT([EXTRACC],[0.5.0],[cla...@am...],[extracc]) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE @@ -14,7 +14,7 @@ AC_SUBST(RPM_RELEASE) # Shared library versioning -GENERIC_LIBRARY_VERSION="99:99:99" +GENERIC_LIBRARY_VERSION="0:5:0" # | | | # +------+ | +---+ # | | | Modified: trunk/extracc/extracc.spec.in =================================================================== --- trunk/extracc/extracc.spec.in 2010-06-10 20:55:43 UTC (rev 42) +++ trunk/extracc/extracc.spec.in 2010-06-10 22:09:37 UTC (rev 43) @@ -1,6 +1,3 @@ -# -%define mydocs __tmp_docdir -# Name: @PACKAGE@ Version: @VERSION@ Release: @RPM_RELEASE@%{?dist} @@ -49,14 +46,10 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # Remove unpackaged files from the buildroot -rm -f $RPM_BUILD_ROOT%{_includedir}/%{name}/config.h -#rm -f $RPM_BUILD_ROOT%{_infodir}/dir -rm -f $RPM_BUILD_ROOT%{_libdir}/lib%{name}-extracppunit.la +rm -rf $RPM_BUILD_ROOT%{_includedir}/%{name} +rm -f $RPM_BUILD_ROOT%{_libdir}/libextracppunit.la # Set the executable bit of the Python scripts chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/tools/*.py -# chmod 644 doc/html/installdox doc/html/*.png doc/html/*.ico -#rm -rf %{mydocs} && mkdir -p %{mydocs} -#mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs} %clean rm -rf $RPM_BUILD_ROOT @@ -74,13 +67,13 @@ %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README -%{_libdir}/lib*.so.* +%{_libdir}/libextracppunit.so.* %files devel %defattr(-,root,root,-) -%{_includedir}/%{name} +%{_includedir}/extracppunit/ %{_bindir}/%{name}-config -%{_libdir}/lib%{name}-extracppunit.so +%{_libdir}/libextracppunit.so %{_datadir}/aclocal/%{name}.m4 %{_datadir}/%{name}/extracppunit/ %{_datadir}/%{name}/build/ @@ -89,6 +82,9 @@ %changelog +* Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.5.0-1 +- Upstream integration + * Mon Jun 10 2010 Denis Arnaud <den...@m4...> 0.4.0-1 - Upstream integration Modified: trunk/extracc/extracppunit/Makefile.am =================================================================== --- trunk/extracc/extracppunit/Makefile.am 2010-06-10 20:55:43 UTC (rev 42) +++ trunk/extracc/extracppunit/Makefile.am 2010-06-10 22:09:37 UTC (rev 43) @@ -1,15 +1,22 @@ ## extracppunit sub-directory include $(srcdir)/sources.mk +# AM_CPPFLAGS = -I$(top_srcdir) MAINTAINERCLEANFILES = Makefile.in -lib_LTLIBRARIES = libextracc-extracppunit.la +# +lib_LTLIBRARIES = libextracppunit.la -libextracc_extracppunit_la_SOURCES = \ - $(test_com_h_sources) $(test_com_cc_sources) -libextracc_extracppunit_la_CXXFLAGS = $(CXXFLAGS_OPT) $(CPPUNIT_CFLAGS) -libextracc_extracppunit_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION) +# +libextracppunit_la_SOURCES = \ + $(extracppunit_h_sources) $(extracppunit_cc_sources) +libextracppunit_la_CXXFLAGS = $(CXXFLAGS_OPT) $(CPPUNIT_CFLAGS) +libextracppunit_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION) -#extracc_extracppunit_LDFLAGS = libextracc-extracppunit.la + +# Header files +#pkgincludedir = $(includedir)/extracppunit +#pkginclude_HEADERS = $(extracppunit_h_sources) +nobase_pkginclude_HEADERS = $(top_srcdir)/extracppunit/CppUnitCore.hpp Modified: trunk/extracc/extracppunit/sources.mk =================================================================== --- trunk/extracc/extracppunit/sources.mk 2010-06-10 20:55:43 UTC (rev 42) +++ trunk/extracc/extracppunit/sources.mk 2010-06-10 22:09:37 UTC (rev 43) @@ -1,4 +1,6 @@ -test_com_h_sources = CppUnitCore.hpp \ - XmlOutputterHookForCC.hpp -test_com_cc_sources = CppUnitCore.cpp \ - XmlOutputterHookForCC.cpp +extracppunit_h_sources = \ + $(top_srcdir)/extracppunit/CppUnitCore.hpp \ + $(top_srcdir)/extracppunit/XmlOutputterHookForCC.hpp +extracppunit_cc_sources = \ + $(top_srcdir)/extracppunit/CppUnitCore.cpp \ + $(top_srcdir)/extracppunit/XmlOutputterHookForCC.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 20:55:51
|
Revision: 42 http://extracc.svn.sourceforge.net/extracc/?rev=42&view=rev Author: denis_arnaud Date: 2010-06-10 20:55:43 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.4.0] Fixed rpmlint warnings in the RPM specification file (extracc.spec). Modified Paths: -------------- branches/extracc/0.4.0/main/extracc.spec.in Modified: branches/extracc/0.4.0/main/extracc.spec.in =================================================================== --- branches/extracc/0.4.0/main/extracc.spec.in 2010-06-10 19:05:14 UTC (rev 41) +++ branches/extracc/0.4.0/main/extracc.spec.in 2010-06-10 20:55:43 UTC (rev 42) @@ -1,6 +1,3 @@ -# -%define mydocs __tmp_docdir -# Name: @PACKAGE@ Version: @VERSION@ Release: @RPM_RELEASE@%{?dist} @@ -50,13 +47,9 @@ make install DESTDIR=$RPM_BUILD_ROOT # Remove unpackaged files from the buildroot rm -f $RPM_BUILD_ROOT%{_includedir}/%{name}/config.h -#rm -f $RPM_BUILD_ROOT%{_infodir}/dir rm -f $RPM_BUILD_ROOT%{_libdir}/lib%{name}-extracppunit.la # Set the executable bit of the Python scripts chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/tools/*.py -# chmod 644 doc/html/installdox doc/html/*.png doc/html/*.ico -#rm -rf %{mydocs} && mkdir -p %{mydocs} -#mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs} %clean rm -rf $RPM_BUILD_ROOT This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 19:05:21
|
Revision: 41 http://extracc.svn.sourceforge.net/extracc/?rev=41&view=rev Author: denis_arnaud Date: 2010-06-10 19:05:14 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Packaging] Patched the RPM specification file (extracc.spec) and the manual page, in order to reduce the RPM packaging warnings. Modified Paths: -------------- trunk/extracc/extracc.spec.in trunk/extracc/man/extracc-config.1 Modified: trunk/extracc/extracc.spec.in =================================================================== --- trunk/extracc/extracc.spec.in 2010-06-10 19:04:22 UTC (rev 40) +++ trunk/extracc/extracc.spec.in 2010-06-10 19:05:14 UTC (rev 41) @@ -9,8 +9,8 @@ Group: System Environment/Libraries License: LGPLv2 -URL: http://%{name}.sourceforge.net -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +URL: http://sourceforge.net/projects/%{name}/ +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cppunit-devel >= 1.10 Modified: trunk/extracc/man/extracc-config.1 =================================================================== --- trunk/extracc/man/extracc-config.1 2010-06-10 19:04:22 UTC (rev 40) +++ trunk/extracc/man/extracc-config.1 2010-06-10 19:05:14 UTC (rev 41) @@ -12,7 +12,6 @@ by the .m4 macros for GNU autoconf that are included with \fIEXTRACC\fP. . .SH OPTIONS -.l \fIextracc-config\fP accepts the following options: .TP 8 .B \-\-version @@ -27,10 +26,9 @@ .B \-\-prefix Show the EXTRACC installation prefix. .SH SEE ALSO -.BR gtk-config (1), -.BR gnome-config (1) +.BR cppunit-config (1) .SH COPYRIGHT -Copyright \(co 2009 Denis Arnaud +Copyright \(co 2009-2010 Denis Arnaud Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 19:04:29
|
Revision: 40 http://extracc.svn.sourceforge.net/extracc/?rev=40&view=rev Author: denis_arnaud Date: 2010-06-10 19:04:22 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Branch 0.4.0] Patched the RPM specification file (extracc.spec) and the manual page, in order to reduce the RPM packaging warnings. Modified Paths: -------------- branches/extracc/0.4.0/main/extracc.spec.in branches/extracc/0.4.0/main/man/extracc-config.1 Modified: branches/extracc/0.4.0/main/extracc.spec.in =================================================================== --- branches/extracc/0.4.0/main/extracc.spec.in 2010-06-10 18:33:39 UTC (rev 39) +++ branches/extracc/0.4.0/main/extracc.spec.in 2010-06-10 19:04:22 UTC (rev 40) @@ -9,8 +9,8 @@ Group: System Environment/Libraries License: LGPLv2 -URL: http://%{name}.sourceforge.net -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +URL: http://sourceforge.net/projects/%{name}/ +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cppunit-devel >= 1.10 Modified: branches/extracc/0.4.0/main/man/extracc-config.1 =================================================================== --- branches/extracc/0.4.0/main/man/extracc-config.1 2010-06-10 18:33:39 UTC (rev 39) +++ branches/extracc/0.4.0/main/man/extracc-config.1 2010-06-10 19:04:22 UTC (rev 40) @@ -12,7 +12,6 @@ by the .m4 macros for GNU autoconf that are included with \fIEXTRACC\fP. . .SH OPTIONS -.l \fIextracc-config\fP accepts the following options: .TP 8 .B \-\-version @@ -27,10 +26,9 @@ .B \-\-prefix Show the EXTRACC installation prefix. .SH SEE ALSO -.BR gtk-config (1), -.BR gnome-config (1) +.BR cppunit-config (1) .SH COPYRIGHT -Copyright \(co 2009 Denis Arnaud +Copyright \(co 2009-2010 Denis Arnaud Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 18:33:48
|
Revision: 39 http://extracc.svn.sourceforge.net/extracc/?rev=39&view=rev Author: denis_arnaud Date: 2010-06-10 18:33:39 +0000 (Thu, 10 Jun 2010) Log Message: ----------- [Release] Created the main 0.4.0 release branch, from revision r36. Added Paths: ----------- branches/extracc/0.4.0/main/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 18:32:56
|
Revision: 38 http://extracc.svn.sourceforge.net/extracc/?rev=38&view=rev Author: denis_arnaud Date: 2010-06-10 18:32:50 +0000 (Thu, 10 Jun 2010) Log Message: ----------- Prepare for the main 0.4.0 branch creation. Added Paths: ----------- branches/extracc/0.4.0/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <den...@us...> - 2010-06-10 18:18:56
|
Revision: 37 http://extracc.svn.sourceforge.net/extracc/?rev=37&view=rev Author: denis_arnaud Date: 2010-06-10 18:18:47 +0000 (Thu, 10 Jun 2010) Log Message: ----------- Back to working revision (99.99.99). Modified Paths: -------------- trunk/extracc/configure.ac Modified: trunk/extracc/configure.ac =================================================================== --- trunk/extracc/configure.ac 2010-06-10 18:17:52 UTC (rev 36) +++ trunk/extracc/configure.ac 2010-06-10 18:18:47 UTC (rev 37) @@ -2,7 +2,7 @@ #------------------------------------------------------------------- AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (C) 2009 Christophe Lacombe <dd...@us...>]) -AC_INIT([EXTRACC],[0.4.0],[cla...@am...],[extracc]) +AC_INIT([EXTRACC],[99.99.99],[cla...@am...],[extracc]) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE @@ -14,7 +14,7 @@ AC_SUBST(RPM_RELEASE) # Shared library versioning -GENERIC_LIBRARY_VERSION="0:4:0" +GENERIC_LIBRARY_VERSION="99:99:99" # | | | # +------+ | +---+ # | | | This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |