Hello community,

here is the log from the commit of package discount for openSUSE:Factory 
checked in at 2013-05-16 09:51:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/discount (Old)
 and      /work/SRC/openSUSE:Factory/.discount.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "discount"

Changes:
--------
New Changes file:

--- /dev/null   2013-05-15 01:32:43.420028506 +0200
+++ /work/SRC/openSUSE:Factory/.discount.new/discount.changes   2013-05-16 
09:51:08.000000000 +0200
@@ -0,0 +1,50 @@
+-------------------------------------------------------------------
+Tue Dec 18 10:40:20 UTC 2012 - [email protected]
+
+- correct license in spec file. It's actually BSD4c
+
+- changes from version 2.1.5a:
+  * MKD_NOSTYLE – treat <style> blocks as regular html.
+  * github flavored markdown support
+  * in the markdown program, add
+        -S flag (tell markdown to spit out style sections)
+        -n flag (tell markdown not to output generated text)
+
+- version 2.1.1.1 implements PHP markdown extra-style fenced code sections,
+  where your chunks of code are surrounded by ~~~ lines instead of being
+  indented 4 spaces.
+
+- changes from version 2.1.0:
+  * makepage now accepts markdown option flags a'la the markdown program (via
+   -Fxxxx, -fname, or in the MARKDOWN_FLAGS environment variable.)
+  * add a -E flag to theme to ignore context-sensitivity on <?theme xxx?> 
substitutions.
+
+-------------------------------------------------------------------
+Wed May 04 23:08:49 UTC 2011 - [email protected]
+
+- update to 2.0.9: no user-visible changes
+
+- changes from 2.0.8:
+  * changes and optimizations were made in table handling
+  * a collection of bug and documentation fixes were made
+
+- changes from 2.0.7:
+  * the PHP markdown-extra style footnotes were documented
+  * a new public function was added to modify the output that is generated for
+    them
+  * a few small typographical corrections were made to other manpages
+
+- changes from 2.0.6:
+  * support was added for PHP markdown extra footnotes
+
+- changes from 2.0.5:
+  * small tweaks to the table-of-contents generator
+  * a change to the arguments of linkyformat() for inside-tag formatting
+  * adds an expanded definition of CSS class names to include dashes and
+    underscores
+
+-------------------------------------------------------------------
+Sun Jan 16 00:17:08 CET 2011 - [email protected]
+
+- initial version (2.0.4)
+

New:
----
  discount-2.1.5a.tar.bz2
  discount-disable_ldconfig.patch
  discount.changes
  discount.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ discount.spec ++++++
#
# spec file for package discount
#
# Copyright (c) 2013 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           discount
Version:        2.1.5a
Release:        0
%define soname 2
Summary:        Markdown text to HTML converter
License:        BSD-4-Clause
Group:          Productivity/Text/Convertors
Source:         
http://www.pell.portland.or.us/~orc/Code/discount/discount-%{version}.tar.bz2
Patch1:         discount-disable_ldconfig.patch
Url:            http://www.pell.portland.or.us/~orc/Code/discount/
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  autoconf
BuildRequires:  automake
BuildRequires:  gcc
BuildRequires:  glibc-devel
BuildRequires:  libtool
BuildRequires:  make
Requires:       libmarkdown%{soname} = %{version}

%description
Discount is an implementation of John Gruber’s Markdown text to HTML language
with some extensions from PHP Markdown Extra, Pandoc, and other implementations
of Markdown.

%package -n libmarkdown%{soname}
Summary:        Markdown text to HTML converter library
Group:          Development/Libraries/C and C++

%description -n libmarkdown%{soname}
Discount is an implementation of John Gruber’s Markdown text to HTML language
with some extensions from PHP Markdown Extra, Pandoc, and other implementations
of Markdown.

%package -n libmarkdown-devel
Summary:        Markdown text to HTML converter library
Group:          Development/Libraries/C and C++
Requires:       libmarkdown%{soname} = %{version}

%description -n libmarkdown-devel
Discount is an implementation of John Gruber’s Markdown text to HTML language
with some extensions from PHP Markdown Extra, Pandoc, and other implementations
of Markdown.

%prep
%setup -q
%patch1

%build
CC="%__cc" \
CFLAGS="%{optflags}" \
./configure.sh \
    --prefix="%{_prefix}" \
    --execdir="%{_bindir}" \
    --confdir="%{_sysconfdir}" \
    --libdir="%{_libdir}" \
    --mandir="%{_mandir}" \
    --enable-all-features \
    --shared \
    --with-dl=BOTH

%__make %{?jobs:-j%{jobs}}

%install
%__install -d "%{buildroot}%{_bindir}"
%__install -d "%{buildroot}%{_mandir}"
%__install -d "%{buildroot}%{_libdir}"
%__install -d "%{buildroot}%{_includedir}"

%__make \
    DESTDIR="%{buildroot}" \
    install.everything

%clean
%{?buildroot:%__rm -rf "%{buildroot}"}

%post   -n libmarkdown%{soname} -p /sbin/ldconfig
%postun -n libmarkdown%{soname} -p /sbin/ldconfig

%files
%defattr(-,root,root)
%doc COPYRIGHT CREDITS README 
%{_bindir}/makepage
%{_bindir}/markdown
%{_bindir}/mkd2html
%{_bindir}/theme
%doc %{_mandir}/man1/*.1%{ext_man}
%doc %{_mandir}/man7/markdown.7%{ext_man}
%doc %{_mandir}/man7/mkd-extensions.7%{ext_man}

%files -n libmarkdown%{soname}
%defattr(-,root,root)
%{_libdir}/libmarkdown.so.%{soname}
%{_libdir}/libmarkdown.so.%{soname}.*

%files -n libmarkdown-devel
%defattr(-,root,root)
%{_includedir}/mkdio.h
%{_libdir}/libmarkdown.so
%{_mandir}/man3/*.3%{ext_man}

%changelog
++++++ discount-disable_ldconfig.patch ++++++
Index: configure.inc
===================================================================
--- configure.inc.orig
+++ configure.inc
@@ -1270,7 +1270,6 @@ __AC_ELF_LIBRARIAN() {
     if $AC_CC $_VFLAGS -o ngc$$.so ngc$$.c; then
        USE_SONAME=T
     fi
-    LDCONFIG=`AC_PATH=/sbin:/usr/sbin:/usr/local/sbin acLookFor ldconfig`
     __config_files="$__config_files librarian.sh"
     cat > librarian.sh << EOF
 #! /bin/sh
@@ -1304,7 +1303,6 @@ files)  echo "\$FULLNAME" "\$LIBNAME" "\
 install)$PROG_INSTALL -c \$FULLNAME "\$1"
        $PROG_LN_S -f \$FULLNAME \$1/\$LIBNAME.\$MAJOR
        $PROG_LN_S -f \$FULLNAME \$1/\$LIBNAME
-       test "$LDCONFIG" && $LDCONFIG "\$1"
        ;;
 esac
 EOF
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to