Changeset b09709


Ignore:
Timestamp:
Oct 30, 2015, 11:44:33 AM (10 years ago)
Author:
Frederik Heber <heber@…>
Children:
ba6aa5
Parents:
315a1e
git-author:
Frederik Heber <heber@…> (09/28/15 08:38:58)
git-committer:
Frederik Heber <heber@…> (10/30/15 11:44:33)
Message:

Added Depends with libboost-dev to debian/control.

  • also we now sign the package.
  • FIX: added codepatterns-..-config.cpp to CLEANFILES.
  • fixed manpages of codepatterns-..-config/.
  • added debian/makeDebianPackage.sh as reminder script.
  • FIX: libcppunit-dev, libboost-program-options-dev, ..serialization-dev, and ..thread-dev was missing in Build-depends.
Files:
9 edited
1 moved

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r315a1e rb09709  
    1010        debian/control \
    1111        debian/copyright \
     12        debian/makeDebianPackage.sh \
    1213        debian/rules \
    1314        debian/source/format \
  • debian/changelog

    r315a1e rb09709  
     1libcodepatterns (1.3.0-1) UNRELEASED; urgency=low
     2
     3  * Introducing ObservedValue.
     4  * Using mutexes to protected Observer/Observables in multi-threaded codes.
     5
     6 -- Frederik Heber <heber@molecuilder.com>  Sat, 25 Jul 2015 18:42:00 +0100
     7
    18libcodepatterns (1.2.9-1) UNRELEASED; urgency=low
    29 
     
    411  * This is my first Debian package.
    512 
    6  -- Frederik Heber <heber@ins.uni-bonn.de>  Sat, 23 May 2015 09:48:00 +0100
     13 -- Frederik Heber <heber@molecuilder.com>  Sat, 23 May 2015 09:48:00 +0100
  • debian/control

    r315a1e rb09709  
    22Section: libs
    33Priority: optional
    4 Maintainer: Frederik Heber <heber@ins.uni-bonn.de>
     4Maintainer: Frederik Heber <heber@molecuilder.com>
    55Build-Depends: debhelper (>=9), cdbs, autoconf, automake (>=1.11),
    66 libboost-dev (>=1.46), libboost-program-options-dev (>=1.46),
    7  libboost-serialization-dev (>=1.46), libboost-system-dev (>=1.46),
    8  libboost-thread-dev (>=1.46)
     7 libboost-serialization-dev (>=1.46), libboost-thread-dev (>= 1.46),
     8 libcppunit-dev (>=1.12), doxygen (>= 1.7.6)
    99Build-Conflicts: autoconf2.13, automake1.4
    1010Standards-Version: 3.9.3
    11 Homepage: https://trac.ins.uni-bonn.de/projects/codepatterns
     11Homepage: https://www.molecuilder.com/projects/codepatterns
    1212
    1313Package: libcodepatterns
  • debian/makeDebianPackage.sh

    r315a1e rb09709  
    4141cores=4
    4242cd ${packagename}-${version}
    43 debuild -us -uc -j${cores}
     43debuild -j${cores}
    4444check debuild
    4545
  • libcodepatterns-debug.pc.in

    r315a1e rb09709  
    88Version: @PACKAGE_VERSION@
    99URL: @PACKAGE_URL@
    10 Libs: -L${libdir} -lCodePatterns-debug
     10Libs: -L${libdir} -lcodepatterns-debug
    1111Cflags: -I${includedir} -DMEMDEBUG
    1212##Requires: boost_thread >= 1.4.0
  • libcodepatterns.pc.in

    r315a1e rb09709  
    88Version: @PACKAGE_VERSION@
    99URL: @PACKAGE_URL@
    10 Libs: -L${libdir} -lCodePatterns
     10Libs: -L${libdir} -lcodepatterns
    1111Cflags: -I${includedir}
    1212##Requires: boost_thread >= 1.4.0
  • m4/ax_codepatterns.m4

    r315a1e rb09709  
    77AC_REQUIRE([BOOST_THREADS])
    88
    9 AC_ARG_WITH(codepatterns,[  --with-codepatterns=PFX   Prefix where CodePatterns is installed (optional)],
     9AC_ARG_WITH(codepatterns,[  --with-codepatterns=PFX   Prefix where libcodepatterns is installed (optional)],
    1010            codepatterns_prefix="$withval", codepatterns_prefix="")
    11 AC_ARG_WITH(codepatterns_include,[  --with-codepatterns_include=INCLUDE   Where CodePatterns' includes are installed (optional)],
     11AC_ARG_WITH(codepatterns_include,[  --with-codepatterns_include=INCLUDE   Where libcodepatterns' includes are installed (optional)],
    1212            codepatterns_include_prefix="$withval", codepatterns_include_prefix="")
    13 AC_ARG_WITH(cp_cv_codepatterns_libs,[  --with-cp_cv_codepatterns_libs=LIBPATH   Where CodePatterns' libs are installed (optional)],
     13AC_ARG_WITH(cp_cv_codepatterns_libs,[  --with-cp_cv_codepatterns_libs=LIBPATH   Where libcodepatterns' libs are installed (optional)],
    1414            cp_cv_codepatterns_libs_prefix="$withval", cp_cv_codepatterns_libs_prefix="")
    1515
     
    3535  #AC_MSG_NOTICE([PKG_CONFIG_PATH is $PKG_CONFIG_PATH.])
    3636  if test x$codepatterns_debug != xno; then
    37     codepatterns_libname="CodePatterns-debug"
    38     PKG_CHECK_MODULES([CodePatterns_debug], [CodePatterns >= $codepatterns_version_min], [
     37    codepatterns_libname="libcodepatterns-debug"
     38    PKG_CHECK_MODULES([libcodepatterns_debug], [libcodepatterns >= $codepatterns_version_min], [
    3939      codepatterns_pkgconfig=yes
    4040      CodePatterns_CONFIG="pkg-config $codepatterns_libname"
     
    5555
    5656  else
    57     codepatterns_libname="CodePatterns"
    58     PKG_CHECK_MODULES([CodePatterns], [CodePatterns >= $codepatterns_version_min], [
     57    codepatterns_libname="libcodepatterns"
     58    PKG_CHECK_MODULES([libcodepatterns], [libcodepatterns >= $codepatterns_version_min], [
    5959      codepatterns_pkgconfig=yes
    6060      CodePatterns_CONFIG="pkg-config $codepatterns_libname"
  • src/Makefile.am

    r315a1e rb09709  
    4949        version.hpp
    5050
     51CLEANFILES = \
     52        codepatterns-config.cpp \
     53        codepatterns-debug-config.cpp
    5154
    5255# this includes source files that need to be present at multiple points
  • src/manpages/codepatterns-config.1

    r315a1e rb09709  
    1 NAME
    2     codepatterns-config - prints CFLAGS and LDFLAGS for compiling CodePatterns
    3 SYNOPSIS
    4     codepatterns-config [OPTIONS]
    5 DESCRIPTION
    6     This http server implementation is taken from boost::asio.
    7 EXAMPLES
    8     The following prints the CFLAGS required for compilation
    9     codepatterns-config --cflags
     1.\" Process this file with
     2.\" groff -man -Tascii foo.1
     3.\"
     4.TH CODEPATTERNS-CONFIG 1 "MARCH 1995" Linux "User Manuals"
     5.SH NAME
     6codepatterns-config \- prints CFLAGS and LDFLAGS for compiling CodePatterns
     7.SH SYNOPSIS
     8.B codepatterns-config [OPTIONS]
     9.SH DESCRIPTION
     10.B codepatterns-config
     11This http server implementation is taken from boost::asio.
     12.SH EXAMPLES
     13The following prints the CFLAGS required for compilation
     14.B codepatterns-config --cflags
    1015
    11     And this prints the required LDFLAGS
    12     codepatterns-config --ldflags
     16And this prints the required LDFLAGS
     17.B codepatterns-config --ldflags
    1318
    14     Use
    15     codepatterns-config --help
    16     to see all available options.
    17 SEE ALSO
    18     None
    19 BUGS
    20     No known bugs.
    21 AUTHOR
    22    Frederik Heber <heber@ins.uni-bonn.de>
    23 COPYRIGHT
    24     (C) 2007-2015 Frederik Heber
     19Use
     20.B codepatterns-config --help
     21to see all available options.
     22.SH SEE ALSO
     23None
     24.SH BUGS
     25No known bugs.
     26.SH AUTHOR
     27Frederik Heber <heber@ins.uni-bonn.de>
     28.SH COPYRIGHT
     29(C) 2007-2015 Frederik Heber
  • src/manpages/codepatterns-debug-config.1

    r315a1e rb09709  
    1 NAME
    2     codepatterns-debug-config - prints CFLAGS and LDFLAGS for compiling CodePatterns
    3 SYNOPSIS
    4     codepatterns-debug-config [OPTIONS]
    5 DESCRIPTION
    6     This http server implementation is taken from boost::asio.
    7 EXAMPLES
    8     The following prints the CFLAGS required for compilation
    9     codepatterns-debug-config --cflags
     1.\" Process this file with
     2.\" groff -man -Tascii foo.1
     3.\"
     4.TH CODEPATTERNS-DEBUG-CONFIG 1 "MARCH 1995" Linux "User Manuals"
     5.SH NAME
     6codepatterns-debug-config \- prints CFLAGS and LDFLAGS for compiling CodePatterns
     7.SH SYNOPSIS
     8.B codepatterns-debug-config [OPTIONS]
     9.SH DESCRIPTION
     10.B codepatterns-debug-config
     11This http server implementation is taken from boost::asio.
     12.SH EXAMPLES
     13The following prints the CFLAGS required for compilation
     14.B codepatterns-debug-config --cflags
    1015
    11     And this prints the required LDFLAGS
    12     codepatterns-debug-config --ldflags
     16And this prints the required LDFLAGS
     17.B codepatterns-debug-config --ldflags
    1318
    14     Use
    15     codepatterns-debug-config --help
    16     to see all available options.
    17 SEE ALSO
    18     None
    19 BUGS
    20     No known bugs.
    21 AUTHOR
    22    Frederik Heber <heber@ins.uni-bonn.de>
    23 COPYRIGHT
    24     (C) 2007-2015 Frederik Heber
     19Use
     20.B codepatterns-debug-config --help
     21to see all available options.
     22.SH SEE ALSO
     23None
     24.SH BUGS
     25No known bugs.
     26.SH AUTHOR
     27Frederik Heber <heber@ins.uni-bonn.de>
     28.SH COPYRIGHT
     29(C) 2007-2015 Frederik Heber
Note: See TracChangeset for help on using the changeset viewer.