Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Several fixes #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sources along with signed hashes and a signed diff that adds all the necessary
Debian voodoo to allow automated building and packaging on their build farm.

see here for some screenshots:
[http://prof7bit.github.com/LazPackager/](http://prof7bit.github.com/LazPackager/)
[http://prof7bit.github.io/LazPackager/](http://prof7bit.github.io/LazPackager/)

How does it work?
-----------------
Expand Down
2 changes: 1 addition & 1 deletion frmlazpackageroptionsdeb.pas
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ TFDebianOptions = class(TForm)

implementation
uses
frmLazPackagerPreview;
frmLazPackagerPreview, SynEditTypes;

{$R *.lfm}

Expand Down
9 changes: 5 additions & 4 deletions lazpackagerdebian.pas
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ interface
+ TAB + 'lazbuild ?PROJECT?' + LF
+ LF
+ 'override_dh_auto_install:' + LF
+ TAB + 'install -d -m 755 $(ROOT)/usr/bin' + LF
+ TAB + 'install -s -m 755 ?EXECUTABLE? $(ROOT)/usr/bin' + LF
+ TAB + 'install -d -m 755 "$(ROOT)/usr/bin"' + LF
+ TAB + 'install -s -m 755 ?EXECUTABLE? "$(ROOT)/usr/bin"' + LF
+ LF
+ '%:' + LF
+ TAB + 'dh $@' + LF
Expand Down Expand Up @@ -149,7 +149,7 @@ procedure TPackagerDebian.Save;
procedure TPackagerDebian.Load;
begin
inherited Load;
Series := LoadValue(CONFNAME_DEB, 'series', 'precise');
Series := LoadValue(CONFNAME_DEB, 'series', 'focal');
PPA := LoadValue(CONFNAME_DEB, 'ppa', 'ppa:johndoe/use-your-own');

Control := LoadValue(CONFNAME_DEB, 'tpl_control', DEFAULT_CONTROL);
Expand Down Expand Up @@ -215,7 +215,8 @@ procedure TPackagerDebian.CreateDebianBuildScript(Binary, Sign, Upload: Boolean)

if Sign then begin
S += 'cd ..' + LF;
S += 'xterm -e "debsign *.changes"' + LF;
//S += 'xterm -e "debsign *.changes"' + LF;
S += 'debsign *.changes' + LF;
end;

if Upload then begin
Expand Down