Accepting request 879491 from system:packagemanager
- Update to version 13.3.4 - Adapt patches to new upstream version: * remove debhelper-9.20150101-no-localized-manpages.patch * add debhelper-no-localized-manpages.patch OBS-URL: https://build.opensuse.org/request/show/879491 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/debhelper?expand=0&rev=7
This commit is contained in:
commit
5da9441272
@ -1,50 +0,0 @@
|
|||||||
Index: debhelper/Makefile
|
|
||||||
===================================================================
|
|
||||||
--- debhelper/Makefile.orig 2011-03-16 09:40:35.806209287 +0100
|
|
||||||
+++ debhelper/Makefile 2011-03-16 09:40:54.454930738 +0100
|
|
||||||
@@ -42,32 +42,11 @@
|
|
||||||
|
|
||||||
POD2MAN=pod2man --utf8 -c Debhelper -r "$(VERSION)"
|
|
||||||
|
|
||||||
-ifneq ($(USE_NLS),no)
|
|
||||||
-# l10n to be built is determined from .po files
|
|
||||||
-LANGS?=$(notdir $(basename $(wildcard man/po4a/po/*.po)))
|
|
||||||
-else
|
|
||||||
LANGS=
|
|
||||||
-endif
|
|
||||||
|
|
||||||
build: version debhelper.7
|
|
||||||
find . -maxdepth 1 -type f -perm /100 -name "dh*" \
|
|
||||||
-exec $(POD2MAN) {} {}.1 \;
|
|
||||||
-ifneq ($(USE_NLS),no)
|
|
||||||
- po4a --previous -L UTF-8 man/po4a/po4a.cfg
|
|
||||||
- set -e; \
|
|
||||||
- for lang in $(LANGS); do \
|
|
||||||
- dir=man/$$lang; \
|
|
||||||
- for file in $$dir/dh*.pod; do \
|
|
||||||
- prog=`basename $$file | sed 's/.pod//'`; \
|
|
||||||
- $(POD2MAN) $$file $$prog.$$lang.1; \
|
|
||||||
- done; \
|
|
||||||
- if [ -e $$dir/debhelper.pod ]; then \
|
|
||||||
- cat $$dir/debhelper.pod | \
|
|
||||||
- $(MAKEMANLIST) `find $$dir -type f -maxdepth 1 -name "dh_*.pod" | sort` | \
|
|
||||||
- $(POD2MAN) --name="debhelper" --section=7 > debhelper.$$lang.7; \
|
|
||||||
- fi; \
|
|
||||||
- done
|
|
||||||
-endif
|
|
||||||
|
|
||||||
version:
|
|
||||||
printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';\n1" > \
|
|
||||||
@@ -80,12 +59,6 @@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *.1 *.7 Debian/Debhelper/Dh_Version.pm
|
|
||||||
-ifneq ($(USE_NLS),no)
|
|
||||||
- po4a --previous --rm-translations --rm-backups man/po4a/po4a.cfg
|
|
||||||
-endif
|
|
||||||
- for lang in $(LANGS); do \
|
|
||||||
- if [ -e man/$$lang ]; then rmdir man/$$lang; fi; \
|
|
||||||
- done;
|
|
||||||
|
|
||||||
install:
|
|
||||||
install -d $(DESTDIR)$(PREFIX)/bin \
|
|
3
debhelper-debian-13.3.4.tar.gz
Normal file
3
debhelper-debian-13.3.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:16aba75e3dfeb5d88e8577a6f73084628ea7853a9b01d32151b7f35c2d69949b
|
||||||
|
size 1060818
|
30
debhelper-no-localized-manpages.patch
Normal file
30
debhelper-no-localized-manpages.patch
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
--- debhelper-debian-10.10.9.orig/Makefile 2017-11-19 12:06:36.000000000 +0100
|
||||||
|
+++ debhelper-debian-10.10.9/Makefile 2021-03-16 15:28:10.188324493 +0100
|
||||||
|
@@ -56,14 +56,8 @@
|
||||||
|
|
||||||
|
POD2MAN_FLAGS=--utf8 -c Debhelper -r "$(VERSION)"
|
||||||
|
|
||||||
|
-ifneq ($(USE_NLS),no)
|
||||||
|
-# l10n to be built is determined from .po files
|
||||||
|
-LANGS?=$(notdir $(basename $(wildcard man/po4a/po/*.po)))
|
||||||
|
-LANG_TARGETS = $(foreach L,$(LANGS),translated-$(L)-stamp)
|
||||||
|
-else
|
||||||
|
LANGS=
|
||||||
|
LANG_TARGETS =
|
||||||
|
-endif
|
||||||
|
|
||||||
|
build: $(LANG_TARGETS) version debhelper.7 debhelper-obsolete-compat.7 $(MANPAGES)
|
||||||
|
|
||||||
|
@@ -110,12 +104,6 @@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *-stamp *.1 *.7 lib/Debian/Debhelper/Dh_Version.pm
|
||||||
|
-ifneq ($(USE_NLS),no)
|
||||||
|
- $(PO4A) --previous --rm-translations --rm-backups man/po4a/po4a.cfg
|
||||||
|
-endif
|
||||||
|
- for lang in $(LANGS); do \
|
||||||
|
- if [ -e man/$$lang ]; then rmdir man/$$lang; fi; \
|
||||||
|
- done;
|
||||||
|
|
||||||
|
install:
|
||||||
|
install -d $(DESTDIR)$(PREFIX)/bin \
|
@ -1,13 +1,11 @@
|
|||||||
Index: debhelper/Makefile
|
--- debhelper-debian-10.10.9.orig/Makefile 2017-11-19 12:06:36.000000000 +0100
|
||||||
===================================================================
|
+++ debhelper-debian-10.10.9/Makefile 2021-03-16 15:18:03.115557862 +0100
|
||||||
--- debhelper.orig/Makefile
|
@@ -54,7 +54,7 @@
|
||||||
+++ debhelper/Makefile
|
|
||||||
@@ -38,7 +38,7 @@ VERSION=$(shell expr "`dpkg-parsechangel
|
|
||||||
|
|
||||||
PERLLIBDIR=$(shell perl -MConfig -e 'print $$Config{vendorlib}')/Debian/Debhelper
|
PREFIX=/usr
|
||||||
|
|
||||||
-POD2MAN=pod2man --utf8 -c Debhelper -r "$(VERSION)"
|
-POD2MAN_FLAGS=--utf8 -c Debhelper -r "$(VERSION)"
|
||||||
+POD2MAN=pod2man -c Debhelper -r "$(VERSION)"
|
+POD2MAN_FLAGS=-c Debhelper -r "$(VERSION)"
|
||||||
|
|
||||||
build: version debhelper.7
|
ifneq ($(USE_NLS),no)
|
||||||
find . -maxdepth 1 -type f -perm /100 -name "dh*" \
|
# l10n to be built is determined from .po files
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 16 14:41:10 UTC 2021 - Jan Baier <jbaier@suse.com>
|
||||||
|
|
||||||
|
- Update to version 13.3.4
|
||||||
|
- Adapt patches to new upstream version:
|
||||||
|
* remove debhelper-9.20150101-no-localized-manpages.patch
|
||||||
|
* add debhelper-no-localized-manpages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jul 24 16:42:15 UTC 2016 - p.drouand@gmail.com
|
||||||
|
|
||||||
|
- Update to version 9.20160709
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 4 17:24:25 UTC 2015 - p.drouand@gmail.com
|
Sun Jan 4 17:24:25 UTC 2015 - p.drouand@gmail.com
|
||||||
|
|
||||||
@ -108,7 +121,7 @@ Thu Mar 31 11:39:18 UTC 2011 - flichtenheld@astaro.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 17 15:32:12 UTC 2011 - mvyskocil@suse.cz
|
Thu Mar 17 15:32:12 UTC 2011 - mvyskocil@suse.cz
|
||||||
|
|
||||||
- split the u-a to separate spec file to reduce a build cycle
|
- split the u-a to separate spec file to reduce a build cycle
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 16 09:07:15 UTC 2011 - mvyskocil@suse.cz
|
Wed Mar 16 09:07:15 UTC 2011 - mvyskocil@suse.cz
|
||||||
@ -186,7 +199,7 @@ Thu Nov 12 09:14:55 UTC 2009 - wr@rosenauer.org
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 13 13:01:58 UTC 2009 - puzel@novell.com
|
Thu Aug 13 13:01:58 UTC 2009 - puzel@novell.com
|
||||||
|
|
||||||
- update to debhelper-7.3.12
|
- update to debhelper-7.3.12
|
||||||
* dh: Allow creation of new sequences (such as to handle a patch
|
* dh: Allow creation of new sequences (such as to handle a patch
|
||||||
target for quilt), by adding an add_command function to the
|
target for quilt), by adding an add_command function to the
|
||||||
sequence addon interface.
|
sequence addon interface.
|
||||||
@ -286,7 +299,7 @@ Fri Jul 3 10:48:44 CEST 2009 - puzel@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 12 09:03:44 CEST 2009 - puzel@suse.cz
|
Fri Jun 12 09:03:44 CEST 2009 - puzel@suse.cz
|
||||||
|
|
||||||
- update to debhelper-7.2.16
|
- update to debhelper-7.2.16
|
||||||
* dh_gconf: Add missed half of postrm fragment removal.
|
* dh_gconf: Add missed half of postrm fragment removal.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -297,7 +310,7 @@ Thu Jun 11 11:33:32 CEST 2009 - puzel@suse.cz
|
|||||||
* dh_compress: Avoid compressing .svg and .sgvz files, since these
|
* dh_compress: Avoid compressing .svg and .sgvz files, since these
|
||||||
might be used as images on a html page, and also to avoid needing
|
might be used as images on a html page, and also to avoid needing
|
||||||
to special case the .svgz extension when compressing svg.
|
to special case the .svgz extension when compressing svg.
|
||||||
* dh_scrollkeeper: Now a deprecated no-op.
|
* dh_scrollkeeper: Now a deprecated no-op.
|
||||||
* dh_gconf: Remove postrm fragment that handled schema migration
|
* dh_gconf: Remove postrm fragment that handled schema migration
|
||||||
from /etc to /usr.
|
from /etc to /usr.
|
||||||
|
|
||||||
@ -317,12 +330,12 @@ Wed May 13 12:05:11 CEST 2009 - puzel@suse.cz
|
|||||||
* dh_auto_configure: Add --skipdeps when running Makefile.PL,
|
* dh_auto_configure: Add --skipdeps when running Makefile.PL,
|
||||||
to prevent Module::Install from trying to download dependencies.
|
to prevent Module::Install from trying to download dependencies.
|
||||||
* Support debian/foo.os files to suppliment previous debian/foo.arch
|
* Support debian/foo.os files to suppliment previous debian/foo.arch
|
||||||
file support.
|
file support.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 11 14:56:30 CEST 2009 - puzel@suse.cz
|
Mon May 11 14:56:30 CEST 2009 - puzel@suse.cz
|
||||||
|
|
||||||
- update to debhelper-7.2.10
|
- update to debhelper-7.2.10
|
||||||
* Close COMPAT_IN filehandle.
|
* Close COMPAT_IN filehandle.
|
||||||
* dh_auto_configure: Clarify man page re adding configure
|
* dh_auto_configure: Clarify man page re adding configure
|
||||||
parameters.
|
parameters.
|
||||||
@ -334,7 +347,7 @@ Mon May 11 14:56:30 CEST 2009 - puzel@suse.cz
|
|||||||
Wed May 6 15:50:23 CEST 2009 - puzel@suse.cz
|
Wed May 6 15:50:23 CEST 2009 - puzel@suse.cz
|
||||||
|
|
||||||
- update to debhelper-7.2.9
|
- update to debhelper-7.2.9
|
||||||
* dh_fixperms: Ensure lintian overrides are mode 644.
|
* dh_fixperms: Ensure lintian overrides are mode 644.
|
||||||
* dh_fixperms: Fix permissions of OCaml .cmxs files.
|
* dh_fixperms: Fix permissions of OCaml .cmxs files.
|
||||||
* dh: Add --without to allow disabling sequence addons (particularly
|
* dh: Add --without to allow disabling sequence addons (particularly
|
||||||
useful to disable the default python-support addon).
|
useful to disable the default python-support addon).
|
||||||
@ -361,7 +374,7 @@ Thu Apr 16 11:55:35 CEST 2009 - puzel@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 6 15:23:19 CEST 2009 - puzel@suse.cz
|
Mon Apr 6 15:23:19 CEST 2009 - puzel@suse.cz
|
||||||
|
|
||||||
- add a hack to detect architecture correctly (bnc#469337)
|
- add a hack to detect architecture correctly (bnc#469337)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 16 16:43:15 CET 2009 - puzel@suse.cz
|
Mon Mar 16 16:43:15 CET 2009 - puzel@suse.cz
|
||||||
@ -426,14 +439,14 @@ Thu Dec 18 13:48:25 CET 2008 - puzel@suse.cz
|
|||||||
* dh_install(1): Order options alphabetically.
|
* dh_install(1): Order options alphabetically.
|
||||||
* Fix some docs that refered to --srcdir rather than --sourcedir.
|
* Fix some docs that refered to --srcdir rather than --sourcedir.
|
||||||
* Add Vcs-Browser field.
|
* Add Vcs-Browser field.
|
||||||
* Ignore unknown options in DH_OPTIONS.
|
* Ignore unknown options in DH_OPTIONS.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 29 17:28:46 CET 2008 - puzel@suse.cz
|
Wed Oct 29 17:28:46 CET 2008 - puzel@suse.cz
|
||||||
|
|
||||||
- update debhelper to 7.1.0
|
- update debhelper to 7.1.0
|
||||||
* dh_installchangelogs: Fall back to looking for changelog files ending
|
* dh_installchangelogs: Fall back to looking for changelog files ending
|
||||||
with ".txt".
|
with ".txt".
|
||||||
* dh_gencontrol: Ensure misc:Depends is set in substvars to avoid dpkg
|
* dh_gencontrol: Ensure misc:Depends is set in substvars to avoid dpkg
|
||||||
complaining about it when it's empty.
|
complaining about it when it's empty.
|
||||||
* dh: Fix typo in example.
|
* dh: Fix typo in example.
|
||||||
@ -514,7 +527,7 @@ Mon Jul 7 13:49:46 CEST 2008 - puzel@suse.cz
|
|||||||
|
|
||||||
- update dpkg to 1.14.19
|
- update dpkg to 1.14.19
|
||||||
* a lot of changes and bugfixes
|
* a lot of changes and bugfixes
|
||||||
* for complete changelog see program sources or
|
* for complete changelog see program sources or
|
||||||
/usr/share/doc/packages/deb/dpkg/changelog
|
/usr/share/doc/packages/deb/dpkg/changelog
|
||||||
* removed dpkg-gcc4.patch - compiles fine without it
|
* removed dpkg-gcc4.patch - compiles fine without it
|
||||||
* removed dpkg-make.patch, dpkg-automake.diff, dpkg-strip.patch
|
* removed dpkg-make.patch, dpkg-automake.diff, dpkg-strip.patch
|
||||||
@ -522,7 +535,7 @@ Mon Jul 7 13:49:46 CEST 2008 - puzel@suse.cz
|
|||||||
* removed dpkg_1.10.23-doc.patch - fixed in upstream
|
* removed dpkg_1.10.23-doc.patch - fixed in upstream
|
||||||
- update debhelper to 7.0.13
|
- update debhelper to 7.0.13
|
||||||
* a lot of changes and bugfixes
|
* a lot of changes and bugfixes
|
||||||
* for complete changelog see program sources or
|
* for complete changelog see program sources or
|
||||||
/usr/share/doc/packages/deb/debhelper/changelog
|
/usr/share/doc/packages/deb/debhelper/changelog
|
||||||
* debhelper-no-localized-manpages.diff - do not use po4a to generate
|
* debhelper-no-localized-manpages.diff - do not use po4a to generate
|
||||||
localized documentation
|
localized documentation
|
||||||
@ -542,7 +555,7 @@ Tue Jul 24 14:52:04 CEST 2007 - dmueller@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Apr 22 22:37:02 CEST 2007 - ro@suse.de
|
Sun Apr 22 22:37:02 CEST 2007 - ro@suse.de
|
||||||
|
|
||||||
- use texlive for building
|
- use texlive for building
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 30 08:49:13 CEST 2007 - aj@suse.de
|
Fri Mar 30 08:49:13 CEST 2007 - aj@suse.de
|
||||||
@ -567,7 +580,7 @@ Fri Jan 13 13:12:52 CET 2006 - schwab@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 21 01:21:54 CET 2005 - ro@suse.de
|
Wed Dec 21 01:21:54 CET 2005 - ro@suse.de
|
||||||
|
|
||||||
- remove unpackaged symlinks
|
- remove unpackaged symlinks
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 8 14:49:24 CEST 2005 - mjancar@suse.cz
|
Thu Sep 8 14:49:24 CEST 2005 - mjancar@suse.cz
|
||||||
@ -587,7 +600,7 @@ Fri Apr 8 13:50:27 CEST 2005 - uli@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 10 16:56:12 CET 2005 - rengelhard@suse.de
|
Thu Feb 10 16:56:12 CET 2005 - rengelhard@suse.de
|
||||||
|
|
||||||
- update dpkg to 1.10.27 (just translation updates)
|
- update dpkg to 1.10.27 (just translation updates)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 20 23:38:24 CET 2005 - ro@suse.de
|
Thu Jan 20 23:38:24 CET 2005 - ro@suse.de
|
||||||
@ -597,52 +610,52 @@ Thu Jan 20 23:38:24 CET 2005 - ro@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 12 15:45:21 CET 2005 - rengelha@suse.de
|
Wed Jan 12 15:45:21 CET 2005 - rengelha@suse.de
|
||||||
|
|
||||||
- update dpkg to 1.10.26
|
- update dpkg to 1.10.26
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 5 13:41:10 CET 2005 - rengelhard@suse.de
|
Wed Jan 5 13:41:10 CET 2005 - rengelhard@suse.de
|
||||||
|
|
||||||
- update debhelper to 4.2.30
|
- update debhelper to 4.2.30
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 4 11:11:22 CET 2005 - rengelhard@suse.de
|
Tue Jan 4 11:11:22 CET 2005 - rengelhard@suse.de
|
||||||
|
|
||||||
- update debhelper to 4.2.29
|
- update debhelper to 4.2.29
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 15 12:06:57 CET 2004 - rengelhard@suse.de
|
Wed Dec 15 12:06:57 CET 2004 - rengelhard@suse.de
|
||||||
|
|
||||||
- update debhelper to 4.2.28
|
- update debhelper to 4.2.28
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 13 09:16:46 CET 2004 - rengelhard@suse.de
|
Mon Dec 13 09:16:46 CET 2004 - rengelhard@suse.de
|
||||||
|
|
||||||
- update debhelper to 4.2.27
|
- update debhelper to 4.2.27
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 16 15:44:34 CET 2004 - rengelhard@suse.de
|
Tue Nov 16 15:44:34 CET 2004 - rengelhard@suse.de
|
||||||
|
|
||||||
- update dpkg to 1.10.25
|
- update dpkg to 1.10.25
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 11 10:42:02 CET 2004 - rengelhard@suse.de
|
Thu Nov 11 10:42:02 CET 2004 - rengelhard@suse.de
|
||||||
|
|
||||||
- update debhelper to 4.2.24
|
- update debhelper to 4.2.24
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 29 13:55:11 CEST 2004 - rengelhard@suse.de
|
Fri Oct 29 13:55:11 CEST 2004 - rengelhard@suse.de
|
||||||
|
|
||||||
- update debhelper to 4.2.23
|
- update debhelper to 4.2.23
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 27 12:15:38 CEST 2004 - rengelhard@suse.de
|
Wed Oct 27 12:15:38 CEST 2004 - rengelhard@suse.de
|
||||||
|
|
||||||
- update dpkg to 1.10.24
|
- update dpkg to 1.10.24
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 13 12:11:21 CEST 2004 - rengelhard@suse.de
|
Wed Oct 13 12:11:21 CEST 2004 - rengelhard@suse.de
|
||||||
|
|
||||||
- update debhelper to 4.2.21
|
- update debhelper to 4.2.21
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 8 00:06:37 CEST 2004 - ro@suse.de
|
Wed Sep 8 00:06:37 CEST 2004 - ro@suse.de
|
||||||
@ -836,12 +849,12 @@ Tue Oct 31 10:57:36 CET 2000 - cihlar@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 23 16:48:45 CEST 2000 - cihlar@suse.cz
|
Tue May 23 16:48:45 CEST 2000 - cihlar@suse.cz
|
||||||
|
|
||||||
- added files in /etc and /var to %files
|
- added files in /etc and /var to %files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 22 15:19:20 CEST 2000 - cihlar@suse.cz
|
Mon May 22 15:19:20 CEST 2000 - cihlar@suse.cz
|
||||||
|
|
||||||
- removed install-info and start-stop-daemon
|
- removed install-info and start-stop-daemon
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 15 17:20:51 CEST 2000 - schwab@suse.de
|
Mon May 15 17:20:51 CEST 2000 - schwab@suse.de
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package debhelper
|
# spec file for package debhelper
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -12,30 +12,30 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: debhelper
|
Name: debhelper
|
||||||
Version: 9.20150101
|
Version: 13.3.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Helper programs for debian/rules
|
Summary: Helper programs for debian/rules
|
||||||
License: GPL-2.0+
|
License: GPL-2.0-or-later
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
Url: http://kitenet.net/~joey/code/debhelper/
|
URL: https://salsa.debian.org/debian/debhelper
|
||||||
# http://ftp.de.debian.org/debian/pool/main/d/debhelper/
|
Source0: https://salsa.debian.org/debian/debhelper/-/archive/debian/%{version}/%{name}-debian-%{version}.tar.gz
|
||||||
Source0: debhelper_%{version}.tar.gz
|
|
||||||
# PATCH-FIX-UPSTREAM not build translated-manpages.
|
# PATCH-FIX-UPSTREAM not build translated-manpages.
|
||||||
Patch0: debhelper-9.20150101-no-localized-manpages.patch
|
Patch0: debhelper-no-localized-manpages.patch
|
||||||
# PATCH-FIX-UPSTREAM remove --utf8 since we only build En manpages.
|
# PATCH-FIX-UPSTREAM remove --utf8 since we only build En manpages.
|
||||||
Patch1: debhelper-pod2man-no-utf8.patch
|
Patch1: debhelper-pod2man-no-utf8.patch
|
||||||
|
Requires: dh-autoreconf > 10
|
||||||
Requires: dpkg
|
Requires: dpkg
|
||||||
|
Requires: strip-nondeterminism
|
||||||
|
Provides: deb:%{_bindir}/dh_install
|
||||||
|
BuildArch: noarch
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
Requires: perl = %{perl_version}
|
Requires: perl = %{perl_version}
|
||||||
%endif
|
%endif
|
||||||
Provides: deb:%{_bindir}/dh_install
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A collection of programs that can be used in a debian/rules file to
|
A collection of programs that can be used in a debian/rules file to
|
||||||
@ -46,7 +46,7 @@ menu system, debconf, doc-base, etc. Most debian packages use debhelper
|
|||||||
as part of their build process.
|
as part of their build process.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}
|
%setup -q -n %{name}-debian-%{version}
|
||||||
|
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} < 1130
|
%if 0%{?suse_version} && 0%{?suse_version} < 1130
|
||||||
@ -54,33 +54,20 @@ as part of their build process.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?_smp_mflags} VERSION='%{version}'
|
%make_build VERSION='%{version}'
|
||||||
|
|
||||||
%install
|
%install
|
||||||
# autoscripts
|
%make_install
|
||||||
install -d -m 755 %{buildroot}%{_datadir}/debhelper/autoscripts
|
|
||||||
install -m 644 autoscripts/* %{buildroot}%{_datadir}/debhelper/autoscripts
|
|
||||||
# perl modules:
|
|
||||||
install -d -m 755 %{buildroot}%{perl_vendorlib}/Debian/Debhelper
|
|
||||||
install -d -m 755 %{buildroot}%{perl_vendorlib}/Debian/Debhelper/Sequence
|
|
||||||
install -d -m 755 %{buildroot}%{perl_vendorlib}/Debian/Debhelper/Buildsystem
|
|
||||||
install -m 644 Debian/Debhelper/Buildsystem/*.pm %{buildroot}%{perl_vendorlib}/Debian/Debhelper/Buildsystem
|
|
||||||
install -m 644 Debian/Debhelper/Sequence/*.pm %{buildroot}%{perl_vendorlib}/Debian/Debhelper/Sequence
|
|
||||||
install -m 644 Debian/Debhelper/*.pm %{buildroot}%{perl_vendorlib}/Debian/Debhelper
|
|
||||||
# man pages:
|
# man pages:
|
||||||
install -d -m 755 %{buildroot}%{_mandir}/man1
|
install -d -m 755 %{buildroot}%{_mandir}/man1
|
||||||
install -d -m 755 %{buildroot}%{_mandir}/man7
|
install -d -m 755 %{buildroot}%{_mandir}/man7
|
||||||
install -m 644 *.1 %{buildroot}%{_mandir}/man1
|
install -m 644 *.1 %{buildroot}%{_mandir}/man1
|
||||||
install -m 644 debhelper.7 %{buildroot}%{_mandir}/man7
|
install -m 644 debhelper.7 %{buildroot}%{_mandir}/man7
|
||||||
# binaries:
|
|
||||||
install -d -m 755 %{buildroot}%{_bindir}
|
|
||||||
install -m 755 dh_*[^1-9] %{buildroot}%{_bindir}
|
|
||||||
install -m 755 dh %{buildroot}%{_bindir}
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc doc/* examples/* debian/changelog debian/copyright
|
%doc doc/* examples/* debian/changelog debian/copyright
|
||||||
%doc %{_mandir}/man*/*
|
%{_mandir}/man*/*
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_datadir}/debhelper
|
%{_datadir}/debhelper
|
||||||
%{perl_vendorlib}/Debian
|
%{perl_vendorlib}/Debian
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fd8d81d71d1bb0ba4b58c517465551231dd60811b98c867e4344bc55ec6a45f2
|
|
||||||
size 545089
|
|
Loading…
Reference in New Issue
Block a user