Changeset 3897 for lliurex-dpkg-provider
- Timestamp:
- Mar 10, 2017, 5:27:42 PM (4 years ago)
- Location:
- lliurex-dpkg-provider/trunk/fuentes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-dpkg-provider/trunk/fuentes/build.py
r3896 r3897 5 5 from jinja2 import Template 6 6 import os 7 import random 7 8 9 10 print random.random(),"!!!!!!!!!!!!!!!" 8 11 curdir=os.path.abspath(".") 9 12 os.system("ls -la %s"%curdir) 10 13 tpl_env = Environment(loader=FileSystemLoader(curdir+'/debian/')) 11 14 … … 45 48 46 49 47 f=open(curdir+"/debian/control","w") 48 f.write(content) 50 f=open(curdir+"/debian/substvars","w") 51 f.write("llx:conflicts=%s \n"%vars["CONFLICTS"]) 52 f.write("llx:provides=%s \n"%vars["CONFLICTS"]) 53 f.write("llx:depends=%s \n"%vars["DEPENDS"]) 49 54 f.close() 50 55 -
lliurex-dpkg-provider/trunk/fuentes/debian/control
r3892 r3897 9 9 Package: lliurex-dpkg-provider 10 10 Architecture: all 11 Conflicts: {{ CONFLICTS }}12 Provides: {{ PROVIDES }}13 Depends: {{ DEPENDS }}11 Conflicts: ${llx:conflicts} 12 Provides: ${llx:provides} 13 Depends: ${llx:depends} 14 14 Description: Lliurex Package Provider 15 15 This package foces other packages out without breaking any meta package. -
lliurex-dpkg-provider/trunk/fuentes/debian/rules
r3894 r3897 15 15 16 16 override_dh_auto_build: 17 ls -la $(CURDIR)/build.py18 17 python $(CURDIR)/build.py 19 18 dh_auto_build
Note: See TracChangeset
for help on using the changeset viewer.