`
sillycat
  • 浏览: 2539411 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

ANT build Debian Package

 
阅读更多
ANT build Debian Package

Create a Repo https://github.com/luohuazju/ant-debian-deploy

On my Virtual Machine
> ant -version
Apache Ant(TM) version 1.8.2 compiled on December 3 2011

Host Machine
> ant -version
Apache Ant(TM) version 1.10.3 compiled on March 24 2018

Current nginx is installed on /usr/local/nginx-1.11.9

I add this nginx file to /etc/init.d to enable the nginx service
#!/bin/bash

### BEGIN INIT INFO
# Provides:          nginx
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the nginx web server
# Description:       starts nginx using start-stop-daemon
### END INIT INFO

# An init.d script that works under Ubuntu 12.04 FFS
# load with sudo /usr/sbin/update-rc.d -f nginx defaults

# CHANGE ME.
PATH=/usr/local/nginx-1.11.9/sbin:$PATH
DAEMON=/usr/local/nginx-1.11.9/sbin/nginx
NAME=nginx
DESC=nginx-1.11.9

test -x $DAEMON || exit 0

set -e

function start {
  echo -n "Starting $DESC: "
  start-stop-daemon --make --start --pidfile /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS
  echo "$NAME."
}

function stop {
  echo -n "Stopping $DESC: "
  $DAEMON -s stop
  echo "$NAME."
}

case "$1" in
  start)
    start
    ;;
  stop)
    stop
    ;;
  restart)
    stop
    start
    ;;
  *)
    N=/etc/init.d/$NAME
    echo "Usage: $N {start|stop|restart}" >&2
    exit 1
    ;;
esac

exit 0

Enable the permission
> sudo chmod a+x /etc/init.d/nginx

Then we can stop and start the nginx with our service command
> sudo service nginx stop

And then run this to enable the service command, it will add the service to the startup script
> sudo /usr/sbin/update-rc.d -f nginx defaults

Remove from the service
> sudo /usr/sbin/update-rc.d -f nginx remove

Debian Information
DEBIAN/control - basic information about the Service

DEBIAN/preinst - operations before installation, for example, stop the service first

DEBIAN/postinst - operations after installation, for example, start the service

Sample project is named as ant-debian-deploy.
The ANT task configuration build.xml
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="help" name="Sillycat Debian">

    <property name="build.dir" value="build" />
    <property name="sys.dir" value="${build.dir}/nginx/etc/init.d" />
    <property name="debian.dir" value="${build.dir}/nginx/DEBIAN" />
    <property name="app.dir" value="${build.dir}/nginx/usr/local" />
    <property name="build.deb" value="${build.dir}/build-deb" />
    <property name="package.name" value="nginx-1.11.9.deb" />
    <property name="debian.src" value="${build.dir}/nginx" />
    <property name="build.output.dir" value="dist" />
    <property name="nginx.dist" value="install" />

    <target name="clean">
            <echo message="Cleaning dist, package and modules folders" />
            <delete dir="${build.dir}" quiet="true" />
    </target>

    <target name="build" depends="clean">
        <!-- SYSTEM -->
        <copy todir="${sys.dir}">
            <fileset dir="debian/sys" />
        </copy>
        <!-- DEBIAN -->
        <copy todir="${debian.dir}">
            <fileset dir="debian/DEBIAN" />
        </copy>
        <!-- Application -->
        <mkdir dir="${app.dir}" />
        <gunzip src="${nginx.dist}/nginx-1.11.9-bin.tar.gz" dest="${nginx.dist}"/>
        <untar src="${nginx.dist}/nginx-1.11.9-bin.tar" dest="${app.dir}"/>
        <!-- Permission -->
        <chmod file="${debian.dir}/postinst" perm="775"/>
        <chmod file="${debian.dir}/preinst" perm="775"/>
        <chmod file="${app.dir}/nginx-1.11.9/sbin/nginx" perm="777"/>
        <chmod file="${sys.dir}/nginx" perm="777"/>
    </target>

    <target name="package" description="Package .deb file" depends="build">
            <mkdir dir="${build.deb}" />
            <exec executable="fakeroot">
                <arg value="dpkg" />
                <arg value="-b" />
                <arg value="${debian.src}" />
                <arg value="${build.deb}/${package.name}" />
            </exec>
    </target>

    <target name="release" description="Copy to dist" depends="package">
        <delete dir="${build.output.dir}" />
        <mkdir dir="${build.output.dir}" />

        <echo message="Moving ${package.name} to ${build.output.dir}" />
        <move file="${build.deb}/${package.name}" todir="${build.output.dir}" failonerror="true" />
    </target>

    <target name="help">
        <echo message=" =============================" />
        <echo message=" Usage: " />
        <echo message=" ant clean                       removes all the generated resources and classes" />
        <echo message=" ant dist                        creates a ready-to-be-packaged build folder" />
        <echo message=" ant package                     creates a DIP installer package" />
        <echo message="=============================" />
    </target>
</project>

Here is the steps to run the commands
# ant-debian-deploy

first find nginx-1.11.9-bin.tar.gz in the install directory

ant release to build the deb package

sudo dpkg -i dist/nginx-1.11.9.deb

In the debian/sys/nginx, that is the script to put into /etc/init.d/
#!/bin/bash

### BEGIN INIT INFO
# Provides:          nginx
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the nginx web server
# Description:       starts nginx using start-stop-daemon
### END INIT INFO

# An init.d script that works under Ubuntu 12.04 FFS
# load with sudo /usr/sbin/update-rc.d -f nginx defaults

# CHANGE ME.
PATH=/usr/local/nginx-1.11.9/sbin:$PATH
DAEMON=/usr/local/nginx-1.11.9/sbin/nginx
NAME=nginx
DESC=nginx-1.11.9

test -x $DAEMON || exit 0

set -e

function start {
  echo -n "Starting $DESC: "
  start-stop-daemon --make --start --pidfile /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS
  echo "$NAME."
}

function stop {
  echo -n "Stopping $DESC: "
  $DAEMON -s stop
  echo "$NAME."
}

case "$1" in
  start)
    start
    ;;
  stop)
    stop
    ;;
  restart)
    stop
    start
    ;;
  *)
    N=/etc/init.d/$NAME
    echo "Usage: $N {start|stop|restart}" >&2
    exit 1
    ;;
esac

exit 0

In the debian/DEBIAN/control
Package: nginx
Version: 1.11.9
Section: web
Priority: optional
Architecture: all
Essential: no
Depends:
Pre-Depends:
Recommends: mozilla | netscape
Maintainer: Sillycat
Description: Sillycat Pure Nginx

In the debian/DEBIAN/postinst
#!/bin/sh

if [ -x "/etc/init.d/nginx" ]; then
    update-rc.d nginx defaults >/dev/null
    if [ -e /var/run/nginx.pid ]; then
        echo "nginx is running, restarting...";        
        /etc/init.d/nginx restart
    else
        /etc/init.d/nginx start
    fi
fi

In the debian/DEBIAN/preinst, it is empty right now.


References:
https://stackoverflow.com/questions/6583115/create-debian-package-using-apache-ant
https://blog.kghost.info/2011/02/11/%E4%BD%BF%E7%94%A8fakeroot%E6%A8%A1%E6%8B%9Froot%E6%9D%83%E9%99%90%E6%89%A7%E8%A1%8C%E7%A8%8B%E5%BA%8F/
https://gist.github.com/squarism/3400259
https://github.com/JasonGiedymin/nginx-init-ubuntu
Debian
https://www.debian.org/doc/manuals/debian-faq/ch-pkg_basics.zh-cn.html
https://blog.csdn.net/sjin_1314/article/details/17394327
http://rocksaying.tw/archives/11239791.html
https://09jianfeng.github.io/2016/01/11/dpkg-deb%E6%89%93%E5%8C%85%E4%B8%80%E4%B8%AA%E5%85%B7%E6%9C%89root%E6%9D%83%E9%99%90%E7%9A%84App/
分享到:
评论

相关推荐

    debian package hwoto

    - 使用dpkg-buildpackage等工具进行打包。 5. **Debian包的安装与管理**:通过`dpkg`或`apt`等工具,Debian用户可以轻松安装、更新或删除软件包。 6. **Debian兼容的其他发行版**:许多基于Debian的Linux发行版如...

    debian package

    4. **构建包**:运行`debuild`或`dpkg-buildpackage`来构建软件包。 5. **签名包**:使用`debsign`对生成的包进行签名。 6. **上传**:将签名后的包上传到Debian的APT仓库或个人仓库。 理解并熟练使用Debian ...

    JDK Development Kit 20.0.1 - Linux x64 Debian Package

    JDK Development Kit 20.0.1 - Linux x64 Debian Package - jdk-20_linux-x64_bin

    deb-package:[移至主要仓库] Debian Package Builder for Miniflux

    Debian Package Builder for Miniflux,正如标题所示,是一个专门用于构建Debian软件包的工具,使得Miniflux能方便地在Debian及其衍生系统(如Ubuntu)上安装和管理。这个工具通常由开发者或高级用户使用,它简化了...

    JDK 17.0.7 downloads - Linux - x64 Debian Package

    **JDK 17.0.7 下载 - Linux - x64 Debian 包** Java Development Kit(JDK)是开发和运行Java应用程序所必需的软件包。JDK 17.0.7 是Java的一个重要版本,它包含了Java编译器、JVM(Java虚拟机)、Java库以及用于...

    action-debian-package:用于构建Debian软件包的GitHub动作

    用法- name : Build Debian package uses : dawidd6/action-debian-package@v1 with : # Optional, relative to workspace directory source_directory : lolcat # Optional, relative to workspace directory ...

    Debreate - Debian Package Builder:为基于Debian的系统创建可安装的软件包。-开源

    Debreate是一个实用工具,可帮助创建可安装的Debian软件包(.deb)。 该项目的目标是使基于DebianLinux发行版的开发更具吸引力,并具有易于打包应用程序,美术作品,媒体,主题等的界面。当前,它仅支持“二进制”...

    Debian Packaging Tutoria(Debian 打包教程)

    使用dpkg-buildpackage时,开发者需要提供一个名为DEBIAN的控制文件夹,其中包含控制文件,用于定义包的名称、版本、依赖关系等信息。 Debian打包教程详细介绍了如何准备源码、配置Makefile、编写规则文件(rules)...

    debian.11.3+debian-bullseye+debian-buster

    这个压缩包文件包含了三个不同版本的Debian操作系统镜像:debian.11.3、debian_bullseye和debian_buster。每个版本都有其独特的特性和改进,下面将详细讨论这些版本。 首先,我们来看`debian.11.3`,也被称为Debian...

    Debian Package Search-开源

    标题中的"Debian Package Search-开源"指的是一个用于在Debian操作系统中搜索和查询软件包的工具,且它是开源的。这意味着源代码对公众开放,允许用户自由地使用、修改和分发。这个工具可能是一个桌面应用程序,采用...

    debian参考手册,debian管理员使用

    - **APT**:Advanced Package Tool (APT) 是Debian及其衍生版本中最常用的软件包管理工具之一,提供了更为丰富的功能。 - **dselect**:这是一种更传统的软件包管理工具,仍然被一些用户所喜爱。 - **不停机系统升级...

    Debian Packer 1.2.1 For Windows x86 (Windows 平台下首款能对 Debian 数据包直接解包、封包的工具软件)

    这个系统主要由dpkg(Debian Package)和APT(Advanced Package Tool)组成。dpkg是基础层,负责处理单个软件包的安装、删除和查询,而APT则提供了图形化和命令行接口,用于从远程仓库自动下载和安装软件包。 **...

    build GTK3.16 in debian 8 (64bit)

    build GTK3.16 ,tested in debian 8 (64bit) os.

    xfireworks:Debian软件包的xfireworks源码。使用gbp clone。 然后使用gbp buildpackage

    xfireworks:Debian软件包的xfireworks源码。使用gbp clone。 然后使用gbp buildpackage

    debian (Debian GNU/Linux下的小康生活)

    - **1.4.2 包管理系统 APT**: Advanced Package Tool (APT) 是 Debian 及其衍生发行版中最常用的包管理工具,提供了高效便捷的软件包安装、升级和管理方式。 - **1.4.3 安全性**: Debian 对安全非常重视,有专门的...

    build-essential_11.3.tar.gz_ build-essenti_build-essentia_build-

    4. Debian Policy Manual:指导开发者遵循Debian软件包规范的文档。 对于Linux开发者来说,安装build-essential是必备的步骤,因为大多数开源软件都需要通过源代码编译来安装,这就需要这些基本的构建工具。通过这...

    Debian系统管理员参考手册 The Debian Administrator’s Handbook

    《Debian系统管理员参考手册》是由Raphaël Hertzog和Roland Mas撰写的一本详细的手册,主要面向希望深入了解Debian系统的管理员和用户。Debian是一个基于Linux内核的操作系统,以其强大的社区支持、多平台兼容性和...

    Debian 新维护者手册.pdf

    - **pbuilder和git-buildpackage**:使用这些高级工具可以更方便地构建软件包。 **7. 检查软件包中的错误:** 打包完成后,需要进行错误检查。 - **使用lintian**:这是一个检查软件包是否符合Debian政策的工具。 -...

    storm-debian-packaging:使用dpkg-buildpackage的Storm Debian包装

    风暴Debian包装 用于分布式实时计算系统的Debian打包。 这个项目的目标是提供一个灵活的工具来构建一个debian软件包,该软件包遵循debian标准并使用风暴发行版提供的默认配置。 打包的storm可以像在其他地方解压缩的...

    GNOME Debian Package Manager-开源

    GNOME Debian Package Manager(简称GDPM)是一款专为GNOME桌面环境设计的开源软件包管理器,它旨在简化Debian用户对系统软件包的操作。GDPM的出现是为了提供一种更加直观、用户友好的方式来替代传统的命令行工具,...

Global site tag (gtag.js) - Google Analytics