Cross package maker. DEB/RPM generation or conversion. Derived from jordansissel/fpm.

⌈⌋ ⎇ branch:  cross package maker


Check-in [e7daa2b743]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:use accessors in the templates so the source can override them
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: e7daa2b74363f93f6dec01a0e13e1b1a86e7ffb5
User & Date: jjmadkisson@gmail.com 2011-01-06 02:33:50
Context
2011-01-06
02:34
actually require the new code check-in: a4fd8e4df7 user: jjmadkisson@gmail.com tags: trunk
02:33
use accessors in the templates so the source can override them check-in: e7daa2b743 user: jjmadkisson@gmail.com tags: trunk
02:32
constants for local directory names Things get weird when you're Dir.chdir-ing check-in: 903a330c9e user: jjmadkisson@gmail.com tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to templates/deb.erb.

1
2
3
4
5
6
7
8
9
10
11
12
13
Package: <%= @name %>
Version: <%= @version %>-<%= @iteration %>
Architecture: <%= @architecture %>
Maintainer: <%= @maintainer or "<unknown>" %>
<% if @dependencies.size > 0 %>
Depends: <%= @dependencies.join(", ") %>
<% end %>
Standards-Version: 3.9.1
Section: <%= @category or "unknown" %> 
Priority: extra
Homepage: <%= @url or "http://nourlgiven.example.com/" %>
Description: <%= @summary or "no summary given" %>
  <%= @summary or "no description given"%>
|
|
|
|
|
|


|

|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
Package: <%= name %>
Version: <%= version %>-<%= iteration %>
Architecture: <%= architecture %>
Maintainer: <%= maintainer or "<unknown>" %>
<% if dependencies.size > 0 %>
Depends: <%= dependencies.join(", ") %>
<% end %>
Standards-Version: 3.9.1
Section: <%= category or "unknown" %> 
Priority: extra
Homepage: <%= url or "http://nourlgiven.example.com/" %>
Description: <%= summary or "no summary given" %>
  <%= summary or "no description given"%>