Hello community, here is the log from the commit of package tilde for openSUSE:Factory checked in at 2015-02-20 12:01:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tilde (Old) and /work/SRC/openSUSE:Factory/.tilde.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tilde" Changes: -------- --- /work/SRC/openSUSE:Factory/tilde/tilde.changes 2014-07-29 16:48:49.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.tilde.new/tilde.changes 2015-02-20 12:01:51.000000000 +0100 @@ -1,0 +2,6 @@ +Thu Feb 19 19:20:25 UTC 2015 - [email protected] + +- Update to version 0.3.4 + * Re-release of version 0.3.4 to update the configure script. + +------------------------------------------------------------------- Old: ---- tilde-0.3.3.tar.bz2 New: ---- tilde-0.3.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tilde.spec ++++++ --- /var/tmp/diff_new_pack.H4JH7s/_old 2015-02-20 12:01:52.000000000 +0100 +++ /var/tmp/diff_new_pack.H4JH7s/_new 2015-02-20 12:01:52.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package tilde # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: tilde -Version: 0.3.3 +Version: 0.3.4 Release: 0 Summary: An intuitive text editor for the terminal License: GPL-3.0 ++++++ tilde-0.3.3.tar.bz2 -> tilde-0.3.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tilde-0.3.3/Changelog new/tilde-0.3.4/Changelog --- old/tilde-0.3.3/Changelog 2014-07-18 08:15:37.000000000 +0200 +++ new/tilde-0.3.4/Changelog 2015-02-12 08:14:40.000000000 +0100 @@ -1,3 +1,6 @@ +Version 0.3.4: + Re-release of version 0.3.4 to update the configure script. + Version 0.3.3: Bug fixes: - Warn users about attempting to write a read-only file. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tilde-0.3.3/configure new/tilde-0.3.4/configure --- old/tilde-0.3.3/configure 2014-07-18 08:15:37.000000000 +0200 +++ new/tilde-0.3.4/configure 2015-02-12 08:14:40.000000000 +0100 @@ -211,6 +211,15 @@ return 0; } EOF + if [ -z "$CC" ] ; then + for COMPILER in g++ clang++ + do + if test_link_cxx "working C++ compiler (${COMPILER})" CXX="${COMPILER}" ; then + CXX="${COMPILER}" + return + fi + done + fi test_link_cxx "working C++ compiler (${CXX-${MAKE} default})" || error "No working C++ compiler found. See config.log for errors." } @@ -685,7 +694,9 @@ do print_rules_${EXT} done -} > .Makefile +} > .Makefile.in + +cp .Makefile.in .Makefile echo "Using settings:" >> config.log grep '^[[:upper:]_]\+=' .Makefile >> config.log @@ -705,6 +716,8 @@ for EXT in ${EXTENSIONS} do basic_test_${EXT} + sed_rules_${EXT} >> .sedscript + sed -f .sedscript .Makefile.in > .Makefile done config diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tilde-0.3.3/man/tilde.1 new/tilde-0.3.4/man/tilde.1 --- old/tilde-0.3.3/man/tilde.1 2014-07-18 08:15:37.000000000 +0200 +++ new/tilde-0.3.4/man/tilde.1 2015-02-12 08:14:40.000000000 +0100 @@ -1,5 +1,5 @@ .\" Generated by manscript from tilde.1.txt -.TH "TILDE" "1" "2013/06/08" "0.3.3" "An intuitive terminal text editor" +.TH "TILDE" "1" "2013/06/08" "0.3.4" "An intuitive terminal text editor" .SH NAME tilde \- an intuitive text editor for the console/terminal .SH SYNOPSIS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tilde-0.3.3/src/main.cc new/tilde-0.3.4/src/main.cc --- old/tilde-0.3.3/src/main.cc 2014-07-18 08:15:37.000000000 +0200 +++ new/tilde-0.3.4/src/main.cc 2015-02-12 08:14:40.000000000 +0100 @@ -208,7 +208,7 @@ about_dialog = new message_dialog_t(45, "About", "Close", NULL); about_dialog->center_over(this); about_dialog->set_max_text_height(13); - about_dialog->set_message("Tilde - The intuitive text editor\n\nVersion 0.3.3\nCopyright (c) 2011-2012 G.P. Halkes\n\n" // @copyright + about_dialog->set_message("Tilde - The intuitive text editor\n\nVersion 0.3.4\nCopyright (c) 2011-2012 G.P. Halkes\n\n" // @copyright "The Tilde text editor is licensed under the GNU General Public License version 3. " "You should have received a copy of the GNU General Public License along with this program. " "If not, see <http://www.gnu.org/licenses/>."); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tilde-0.3.3/src/option.cc new/tilde-0.3.4/src/option.cc --- old/tilde-0.3.3/src/option.cc 2014-07-18 08:15:37.000000000 +0200 +++ new/tilde-0.3.4/src/option.cc 2015-02-12 08:14:40.000000000 +0100 @@ -331,7 +331,7 @@ } static void print_version(void) { - printf("Tilde version 0.3.3\n" + printf("Tilde version 0.3.4\n" "Copyright (c) 2011-2012 G.P. Halkes\n" // @copyright "Tilde is licensed under the GNU General Public License version 3\n"); printf("Library versions:\n" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
