ค้นหาเว็บไซต์

จัดทำแพ็คเกจแอปพลิเคชันและโปรแกรม PyGObject เป็นแพ็คเกจ ".deb" สำหรับ Linux Desktop – ตอนที่ 4


เราสานต่อซีรีส์การเขียนโปรแกรม PyGObject กับคุณบนเดสก์ท็อป Linux ในส่วน ที่ 4 ของซีรีส์นี้ เราจะอธิบายวิธีจัดแพ็คเกจโปรแกรมและแอปพลิเคชันที่เราสร้างขึ้นสำหรับ เดสก์ท็อป Linux ที่ใช้ PyGObject เป็นแพ็คเกจ Debian

แพ็คเกจ Debian (.deb) เป็นรูปแบบที่ใช้มากที่สุดในการติดตั้งโปรแกรมภายใต้ Linux ระบบ “dpkg ” ซึ่งเกี่ยวข้องกับแพ็คเกจ .deb คือ ค่าเริ่มต้นสำหรับการกระจาย Linux ที่ใช้ Debian ทั้งหมดเช่น Ubuntu และ Linux Mint นั่นเป็นเหตุผลที่เราจะอธิบายเฉพาะวิธีการจัดแพคเกจโปรแกรมของเราสำหรับ Debian เท่านั้น

สร้างแพ็คเกจ Debian จากแอปพลิเคชัน PyGObject ของคุณ

ขั้นแรก คุณควรมีความรู้พื้นฐานเกี่ยวกับการสร้างแพ็คเกจ Debian คำแนะนำต่อไปนี้จะช่วยคุณได้มาก

  1. ข้อมูลเบื้องต้นเกี่ยวกับบรรจุภัณฑ์ Debian

โดยสรุป หากคุณมีโปรเจ็กต์ชื่อ “myprogram ” โปรเจ็กต์นั้นจะต้องมีไฟล์และโฟลเดอร์ต่อไปนี้ คุณจึงจะจัดแพ็กเกจได้

  1. debian (โฟลเดอร์): โฟลเดอร์นี้รวมข้อมูลทั้งหมดเกี่ยวกับแพ็คเกจ Debian ที่แบ่งออกเป็นไฟล์ย่อยจำนวนมาก
  2. po (โฟลเดอร์): โฟลเดอร์ po มีไฟล์การแปลสำหรับโปรแกรม (เราจะอธิบายในส่วนที่ 5)
  3. myprogram (ไฟล์): นี่คือไฟล์ Python ที่เราสร้างโดยใช้ PyGObject ซึ่งเป็นไฟล์หลักของโปรเจ็กต์
  4. ui.glade (ไฟล์): ไฟล์อินเทอร์เฟซผู้ใช้แบบกราฟิก.. หากคุณสร้างอินเทอร์เฟซของแอปพลิเคชันโดยใช้ Glade คุณต้องรวมไฟล์นี้ไว้ใน
    โครงการของคุณ
  5. bMyprogram.desktop (ไฟล์): นี่เป็นไฟล์ที่รับผิดชอบในการแสดงแอปพลิเคชันในเมนูแอปพลิเคชัน
  6. setup.py (ไฟล์): ไฟล์นี้มีหน้าที่ในการติดตั้งโปรแกรม Python ใดๆ ลงในระบบภายในเครื่อง ซึ่งมีความสำคัญมากในโปรแกรม Python ใดๆ แต่ก็มีวิธีการใช้งานอื่นๆ อีกมากมายเช่นกัน

แน่นอน.. มีไฟล์และโฟลเดอร์อื่นๆ อีกมากมายที่คุณสามารถรวมไว้ในโปรเจ็กต์ของคุณ (จริงๆ แล้วคุณสามารถใส่อะไรก็ได้ที่คุณต้องการ) แต่นั่นเป็นไฟล์พื้นฐาน

ตอนนี้ เรามาเริ่มบรรจุโปรเจ็กต์กันดีกว่า สร้างโฟลเดอร์ใหม่ชื่อ “myprogram ” สร้างไฟล์ชื่อ “myprogram ” และเพิ่มโค้ดต่อไปนี้ลงไป

#!/usr/bin/python 
-*- coding: utf-8 -*- 

## Replace your name and email. 
My Name <[email > 

## Here you must add the license of the file, replace "MyProgram" with your program name. 
License: 
   MyProgram is free software: you can redistribute it and/or modify 
   it under the terms of the GNU General Public License as published by 
   the Free Software Foundation, either version 3 of the License, or 
   (at your option) any later version. 

   MyProgram is distributed in the hope that it will be useful, 
   but WITHOUT ANY WARRANTY; without even the implied warranty of 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
   GNU General Public License for more details. 

   You should have received a copy of the GNU General Public License 
   along with MyProgram.  If not, see <http://www.gnu.org/licenses/>. 

from gi.repository import Gtk 
import os 

class Handler: 
  
  def openterminal(self, button): 
    ## When the user clicks on the first button, the terminal will be opened. 
    os.system("x-terminal-emulator ") 
  
  def closeprogram(self, button): 
    Gtk.main_quit() 
    
Nothing new here.. We just imported the 'ui.glade' file. 
builder = Gtk.Builder() 
builder.add_from_file("/usr/lib/myprogram/ui.glade") 
builder.connect_signals(Handler()) 
window = builder.get_object("window1") 
window.connect("delete-event", Gtk.main_quit) 
window.show_all() 
Gtk.main()

สร้างไฟล์ ui.glade และกรอกโค้ดนี้

<?xml version="1.0" encoding="UTF-8"?> 
<!-- Generated with glade 3.16.1 --> 
<interface> 
  <requires lib="gtk+" version="3.10"/> 
  <object class="GtkWindow" id="window1"> 
    <property name="can_focus">False</property> 
    <property name="title" translatable="yes">My Program</property> 
    <property name="window_position">center</property> 
    <property name="icon_name">applications-utilities</property> 
    <property name="gravity">center</property> 
    <child> 
      <object class="GtkBox" id="box1"> 
        <property name="visible">True</property> 
        <property name="can_focus">False</property> 
        <property name="margin_left">5</property> 
        <property name="margin_right">5</property> 
        <property name="margin_top">5</property> 
        <property name="margin_bottom">5</property> 
        <property name="orientation">vertical</property> 
        <property name="homogeneous">True</property> 
        <child> 
          <object class="GtkLabel" id="label1"> 
            <property name="visible">True</property> 
            <property name="can_focus">False</property> 
            <property name="label" translatable="yes">Welcome to this Test Program !</property> 
          </object> 
          <packing> 
            <property name="expand">False</property> 
            <property name="fill">True</property> 
            <property name="position">0</property> 
          </packing> 
        </child> 
        <child> 
          <object class="GtkButton" id="button2"> 
            <property name="label" translatable="yes">Click on me to open the Terminal</property> 
            <property name="visible">True</property> 
            <property name="can_focus">True</property> 
            <property name="receives_default">True</property> 
            <signal name="clicked" handler="openterminal" swapped="no"/> 
          </object> 
          <packing> 
            <property name="expand">False</property> 
            <property name="fill">True</property> 
            <property name="position">1</property> 
          </packing> 
        </child> 
        <child> 
          <object class="GtkButton" id="button3"> 
            <property name="label">gtk-preferences</property> 
            <property name="visible">True</property> 
            <property name="can_focus">True</property> 
            <property name="receives_default">True</property> 
            <property name="use_stock">True</property> 
          </object> 
          <packing> 
            <property name="expand">False</property> 
            <property name="fill">True</property> 
            <property name="position">2</property> 
          </packing> 
        </child> 
        <child> 
          <object class="GtkButton" id="button4"> 
            <property name="label">gtk-about</property> 
            <property name="visible">True</property> 
            <property name="can_focus">True</property> 
            <property name="receives_default">True</property> 
            <property name="use_stock">True</property> 
          </object> 
          <packing> 
            <property name="expand">False</property> 
            <property name="fill">True</property> 
            <property name="position">3</property> 
          </packing> 
        </child> 
        <child> 
          <object class="GtkButton" id="button1"> 
            <property name="label">gtk-close</property> 
            <property name="visible">True</property> 
            <property name="can_focus">True</property> 
            <property name="receives_default">True</property> 
            <property name="use_stock">True</property> 
            <signal name="clicked" handler="closeprogram" swapped="no"/> 
          </object> 
          <packing> 
            <property name="expand">False</property> 
            <property name="fill">True</property> 
            <property name="position">4</property> 
          </packing> 
        </child> 
      </object> 
    </child> 
  </object> 
</interface>

จนถึงตอนนี้ยังไม่มีอะไรใหม่ .. เราเพิ่งสร้างไฟล์ Python และไฟล์อินเทอร์เฟซของมัน ตอนนี้ให้สร้างไฟล์ “setup.py ” ในโฟลเดอร์เดียวกัน และเพิ่มโค้ดต่อไปนี้ลงไป โดยจะมีการอธิบายทุกบรรทัดในความคิดเห็น

Here we imported the 'setup' module which allows us to install Python scripts to the local system beside performing some other tasks, you can find the documentation here: https://docs.python.org/2/distutils/apiref.html 
from distutils.core import setup 

setup(name = "myprogram", # Name of the program. 
      version = "1.0", # Version of the program. 
      description = "An easy-to-use web interface to create & share pastes easily", # You don't need any help here. 
      author = "TecMint", # Nor here. 
      author_email = "[email ",# Nor here :D 
      url = "http://example.com", # If you have a website for you program.. put it here. 
      license='GPLv3', # The license of the program. 
      scripts=['myprogram'], # This is the name of the main Python script file, in our case it's "myprogram", it's the file that we added under the "myprogram" folder. 

Here you can choose where do you want to install your files on the local system, the "myprogram" file will be automatically installed in its correct place later, so you have only to choose where do you want to install the optional files that you shape with the Python script 
      data_files = [ ("lib/myprogram", ["ui.glade"]), # This is going to install the "ui.glade" file under the /usr/lib/myprogram path. 
                     ("share/applications", ["myprogram.desktop"]) ] ) # And this is going to install the .desktop file under the /usr/share/applications folder, all the folder are automatically installed under the /usr folder in your root partition, you don't need to add "/usr/ to the path. 

ตอนนี้ให้สร้างไฟล์ “myprogram.desktop ” ในโฟลเดอร์เดียวกัน และเพิ่มโค้ดต่อไปนี้ ซึ่งมีคำอธิบายอยู่ในความคิดเห็นด้วย

This is the .desktop file, this file is the responsible file about showing your application in the applications menu in any desktop interface, it's important to add this file to your project, you can view more details about this file from here: https://developer.gnome.org/integration-guide/stable/desktop-files.html.en 
[Desktop Entry] 
The default name of the program. 
Name=My Program 
The name of the program in the Arabic language, this name will be used to display the application under the applications menu when the default language of the system is Arabic, use the languages codes to change the name for each language. 
Name[ar]=برنامجي 
Description of the file. 
Comment=A simple test program developed by me. 
Description of the file in Arabic. 
Comment[ar]=برنامج تجريبي بسيط تم تطويره بواسطتي. 
The command that's going to be executed when the application is launched from the applications menu, you can enter the name of the Python script or the full path if you want like /usr/bin/myprogram 
Exec=myprogram 
Do you want to run your program from the terminal? 
Terminal=false 
Leave this like that. 
Type=Application 
Enter the name of the icon you want to use for the application, you can enter a path for the icon as well like /usr/share/pixmaps/icon.png but make sure to include the icon.png file in your project folder first and in the setup.py file as well. Here we'll use the "system" icon for now. 
Icon=system 
The category of the file, you can view the available categories from the freedesktop website.
Categories=GNOME;GTK;Utility; 
StartupNotify=false 

ตอนนี้เราเกือบเสร็จแล้ว.. เราแค่ต้องสร้างไฟล์ขนาดเล็กภายใต้โฟลเดอร์ “debian ” เพื่อให้ข้อมูลเกี่ยวกับแพ็คเกจของเราสำหรับ “dpkg ” ระบบ.

เปิดโฟลเดอร์ “debian ” และสร้างไฟล์ต่อไปนี้

control
compat
changelog
rules

การควบคุม: ไฟล์นี้ให้ข้อมูลพื้นฐานเกี่ยวกับแพ็คเกจ Debian สำหรับรายละเอียดเพิ่มเติม โปรดไปที่ช่องควบคุมแพ็คเกจ Debian

Source: myprogram
Maintainer: My Name <[email > 
Section: utils 
Priority: optional 
Standards-Version: 3.9.2 
Build-Depends: debhelper (>= 9), python2.7 

Package: myprogram 
Architecture: all 
Depends: python-gi 
Description: My Program 
Here you can add a short description about your program.

ความเข้ากันได้: นี่เป็นเพียงไฟล์สำคัญสำหรับระบบ dpkg มันรวมเลขมหัศจรรย์ 9 ไว้อย่างนั้น

9

บันทึกการเปลี่ยนแปลง: คุณจะสามารถเพิ่มการเปลี่ยนแปลงที่คุณทำกับโปรแกรมได้ที่นี่ สำหรับข้อมูลเพิ่มเติม โปรดไปที่แหล่งที่มาของบันทึกการเปลี่ยนแปลงแพ็คเกจ Debian

myprogram (1.0) trusty; urgency=medium 

  * Add the new features here. 
  * Continue adding new changes here. 
  * And here. 

 -- My Name Here <[email >  Sat, 27 Dec 2014 21:36:33 +0200

กฎ: ไฟล์นี้มีหน้าที่รับผิดชอบในการรันกระบวนการติดตั้งบนเครื่องท้องถิ่นเพื่อติดตั้งแพ็คเกจ คุณสามารถดูข้อมูลเพิ่มเติมได้
เกี่ยวกับไฟล์นี้จากที่นี่: กฎเริ่มต้นของแพ็คเกจ Debian

แม้ว่าคุณจะไม่ต้องการอะไรอีกต่อไปสำหรับโปรแกรม Python ของคุณ

#!/usr/bin/make -f 
This file is responsible about running the installation process on the local machine to install the package, you can view more information about this file from here: https://www.debian.org/doc/manuals/maint-guide/dreq.en.html#defaultrules Though you won't need anything more for your Python program. 
%: 
    dh $@ 
override_dh_auto_install: 
    python setup.py install --root=debian/myprogram --install-layout=deb --install-scripts=/usr/bin/ # This is going to run the setup.py file to install the program as a Python script on the system, it's also going to install the "myprogram" script under /usr/bin/ using the --install-scripts option, DON'T FORGET TO REPLACE "myprogram" WITH YOUR PROGRAM NAME. 
override_dh_auto_build:

ตอนนี้เราได้สร้างไฟล์ที่จำเป็นทั้งหมดสำหรับโปรแกรมของเราเรียบร้อยแล้ว เรามาเริ่มบรรจุไฟล์กันดีกว่า ขั้นแรก ตรวจสอบให้แน่ใจว่าคุณได้ติดตั้งการขึ้นต่อกันบางอย่างสำหรับกระบวนการสร้างก่อนที่จะเริ่ม

sudo apt-get update
sudo apt-get install devscripts

ทีนี้ลองจินตนาการว่าโฟลเดอร์ “myprogram ” อยู่ในโฟลเดอร์หลักของคุณ (/home/user/myprogram) เพื่อจัดทำแพ็คเกจเป็นแพ็คเกจ Debian ให้รันคำสั่งต่อไปนี้

cd /home/user/myprogram
debuild -us -uc
ผลลัพธ์ตัวอย่าง
hanny@hanny-HP-Pavilion-15-Notebook-PC:~/Projects/myprogram$
debuild -us -uc dpkg-buildpackage -rfakeroot -D -us -uc
dpkg-buildpackage: source package myprogram
dpkg-buildpackage: source version 1.0
dpkg-buildpackage: source distribution trusty
dpkg-buildpackage: source changed by My Name Here
<[email >
dpkg-source --before-build myprogram
dpkg-buildpackage: host architecture i386
fakeroot debian/rules clean
dh clean
dh_testdir
dh_auto_clean
....
.....
Finished running lintian.

และนั่นมัน ! สร้างแพ็คเกจ Debian ของคุณสำเร็จแล้ว:

หากต้องการติดตั้งบนการกระจายแบบ Debian ให้รัน

sudo dpkg -i myprogram_1.0_all.deb

อย่าลืมแทนที่ไฟล์ด้านบนด้วยชื่อแพ็คเกจ หลังจากที่คุณติดตั้งแพ็คเกจแล้ว คุณสามารถเรียกใช้โปรแกรมได้จากเมนูแอปพลิเคชัน

และมันจะได้ผล..

นี่เป็นการสิ้นสุดส่วนที่ ที่ 4 ของซีรี่ส์เกี่ยวกับ PyGObject ของเรา.. ในบทเรียนถัดไป เราจะอธิบายวิธีแปลแอปพลิเคชัน PyGObject เป็นภาษาท้องถิ่นอย่างง่ายดาย จนกว่าจะถึงเวลาที่คอยติดตาม...