Skip to content
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit 869eea6

Browse files
committed
Add make target to regenerate debian files [skip ci]
1 parent 2933b6f commit 869eea6

File tree

4 files changed

+18
-49
lines changed

4 files changed

+18
-49
lines changed

scripts/ppa-packaging/libv8/debian/control

Lines changed: 6 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,21 @@
11
Source: libv8-5.4
22
Priority: optional
3-
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
4-
Uploaders: Jérémy Lal <kapouer@melix.org>,
5-
Jonas Smedegaard <dr@jones.dk>
3+
Maintainer: Bogdan Padalko <pinepain@gmail.com>
64
Build-Depends: cdbs,
7-
autotools-dev,
85
devscripts,
96
debhelper,
107
dh-buildinfo,
11-
libicu-dev,
12-
abi-compliance-checker
13-
Standards-Version: 3.9.6
8+
libicu-dev
9+
Standards-Version: 3.9.8
1410
Section: libs
15-
Homepage: http://code.google.com/p/v8/
16-
Vcs-Browser: http://anonscm.debian.org/git/collab-maint/libv8.git
17-
Vcs-Git: git://anonscm.debian.org/collab-maint/libv8.git
18-
19-
Package: libv8-dev
20-
Section: libdevel
21-
Architecture: i386 kfreebsd-i386 hurd-i386 amd64 kfreebsd-amd64 armel armhf mipsel mips
22-
Depends: libv8-5.4.420 (= ${binary:Version}), ${misc:Depends}
23-
Conflicts: libv8-legacy-dev, libv8-3.14-dev
24-
Replaces: libv8-legacy-dev, libv8-3.14-dev
25-
Description: V8 JavaScript engine - development files for latest branch
26-
V8 is a high performance JavaScript engine written in C++. It is used
27-
in the web browser Chromium.
28-
.
29-
This package provide development headers for latest V8 branch.
11+
Homepage: https://developers.google.com/v8/
12+
Vcs-Browser: https://github.com/pinepain/php-v8
13+
Vcs-Git: https://github.com/pinepain/php-v8.git
3014

3115
Package: libv8-5.4-dev
3216
Section: libdevel
3317
Architecture: i386 kfreebsd-i386 hurd-i386 amd64 kfreebsd-amd64 armel armhf mipsel mips
3418
Depends: libv8-5.4.420 (= ${binary:Version}), ${misc:Depends}
35-
Provides: libv8-legacy-dev, libv8-dev
36-
Conflicts: libv8-dev
37-
Replaces: libv8-dev
3819
Description: V8 JavaScript engine - development files for 5.4 branch
3920
V8 is a high performance JavaScript engine written in C++. It is used
4021
in the web browser Chromium.

scripts/ppa-packaging/libv8/debian/control.in

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,18 @@
11
Source: libv8-5.4
22
Priority: optional
3-
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
4-
Uploaders: Jérémy Lal <kapouer@melix.org>,
5-
Jonas Smedegaard <dr@jones.dk>
3+
Maintainer: Bogdan Padalko <pinepain@gmail.com>
64
Build-Depends: @cdbs@,
7-
libicu-dev,
8-
abi-compliance-checker
9-
Standards-Version: 3.9.6
5+
libicu-dev
6+
Standards-Version: 3.9.8
107
Section: libs
11-
Homepage: http://code.google.com/p/v8/
12-
Vcs-Browser: http://anonscm.debian.org/git/collab-maint/libv8.git
13-
Vcs-Git: git://anonscm.debian.org/collab-maint/libv8.git
14-
15-
Package: libv8-dev
16-
Section: libdevel
17-
Architecture: i386 kfreebsd-i386 hurd-i386 amd64 kfreebsd-amd64 armel armhf mipsel mips
18-
Depends: libv8-5.4.420 (= ${binary:Version}), ${misc:Depends}
19-
Conflicts: libv8-legacy-dev, libv8-3.14-dev
20-
Replaces: libv8-legacy-dev, libv8-3.14-dev
21-
Description: V8 JavaScript engine - development files for latest branch
22-
V8 is a high performance JavaScript engine written in C++. It is used
23-
in the web browser Chromium.
24-
.
25-
This package provide development headers for latest V8 branch.
8+
Homepage: https://developers.google.com/v8/
9+
Vcs-Browser: https://github.com/pinepain/php-v8
10+
Vcs-Git: https://github.com/pinepain/php-v8.git
2611

2712
Package: libv8-5.4-dev
2813
Section: libdevel
2914
Architecture: i386 kfreebsd-i386 hurd-i386 amd64 kfreebsd-amd64 armel armhf mipsel mips
3015
Depends: libv8-5.4.420 (= ${binary:Version}), ${misc:Depends}
31-
Provides: libv8-legacy-dev, libv8-dev
32-
Conflicts: libv8-dev
33-
Replaces: libv8-dev
3416
Description: V8 JavaScript engine - development files for 5.4 branch
3517
V8 is a high performance JavaScript engine written in C++. It is used
3618
in the web browser Chromium.

scripts/ppa-packaging/packaging-pecl.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ work/${NAME}_${VERSION}:
4646
source-build:
4747
$(MAKE) _build DEBUILD="debuild -S -sa"
4848

49+
source-clean:
50+
DEB_MAINTAINER_MODE=1 debuild clean
51+
4952
build:
5053
$(MAKE) _build DEBUILD=debuild
5154

scripts/ppa-packaging/packaging.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ work/${NAME}_${VERSION}:
3838
source-build:
3939
$(MAKE) _build DEBUILD="debuild -S -sa"
4040

41+
source-clean:
42+
DEB_MAINTAINER_MODE=1 debuild clean
43+
4144
build:
4245
$(MAKE) _build DEBUILD=debuild
4346

0 commit comments

Comments
 (0)