- Timestamp:
- Apr 19, 2012, 1:11:53 AM (13 years ago)
- Location:
- projects/uuwl/pbconf/devel
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
projects/uuwl/pbconf/devel/pbfilter/all.pbf
r1475 r1476 9 9 10 10 # PBSRC is replaced by the source package location after the repo 11 #filter PBSRC = src/%{name}-%{version}.tar.gz11 filter PBSRC = src/%{name}-%{version}.tar.gz 12 12 # Used if virtual name != real name (perl, ...) 13 13 #filter PBSRC = src/%{srcname}-%{version}.tar.gz … … 50 50 51 51 # PBDESC contains the description of the package 52 #filter PBDESC = Bla-Bla 52 filter PBDESC = UUWL is a library to help porting software from one Unix system to another one. This version focuses on SOlaris to Linux migration, but will be extended to support other migration later on. 53 53 54 54 # PBSUMMARY contains a short single line description of the package 55 #filter PBSUMMARY = Bla 55 filter PBSUMMARY = UUWL is the Unix to Unix Wrapper Library 56 56 57 57 # PBURL contains the URL of the Web site of the project 58 #filter PBURL = http://www.uuwl.org58 filter PBURL = http://uuwl.project-builder.org 59 59 60 60 # PBLOG is replaced by the changelog if value is yes 61 61 # and should be last as when used we need the %pb hash filled 62 #filter PBLOG = yes 63 62 filter PBLOG = yes -
projects/uuwl/pbconf/devel/uuwl.pb
r1475 r1476 9 9 # What is the project URL 10 10 # 11 #pburl uuwl = svn://svn.uuwl.org/uuwl/devel11 pburl uuwl = svn://uuwl.project-builder.org/uuwl/devel 12 12 #pburl uuwl = svn://svn+ssh.uuwl.org/uuwl/devel 13 13 #pburl uuwl = cvs://cvs.uuwl.org/uuwl/devel … … 18 18 19 19 # Repository 20 #pbrepo uuwl = ftp://ftp.uuwl.org20 pbrepo uuwl = ftp://ftp.project-builder.org 21 21 #pbml uuwl = uuwl-announce@lists.uuwl.org 22 22 #pbsmtp uuwl = localhost … … 30 30 # Packager label 31 31 # 32 #pbpackager uuwl = William Porte <bill@uuwl.org>32 pbpackager uuwl = Bruno Cornec <bruno@project-builder.org> 33 33 # 34 34 … … 93 93 # Global version/tag for the project 94 94 # 95 #projver uuwl = devel96 #projtag uuwl = 195 projver uuwl = devel 96 projtag uuwl = 1 97 97 98 98 # Hash of valid version names … … 101 101 # addrepo centos-5-x86_64 = http://packages.sw.be/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm,ftp://ftp.project-builder.org/centos/5/pb.repo 102 102 # addrepo centos-5-x86_64 = http://packages.sw.be/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm,ftp://ftp.project-builder.org/centos/5/pb.repo 103 #version uuwl = devel,stable 103 version uuwl = devel 104 104 105 105 # Is it a test version or a production version … … 118 118 #pkgtag uuwl = 3 119 119 # Hash of default package/package directory 120 #defpkgdir uuwl = dir-uuwl 120 defpkgdir uuwl = . 121 121 # Hash of additional package/package directory 122 122 #extpkgdir minor-pkg = dir-minor-pkg … … 124 124 # List of files per pkg on which to apply filters 125 125 # Files are mentioned relatively to pbroot/defpkgdir 126 #filteredfiles uuwl = Makefile.PL,configure.in,install.sh,uuwl.8 126 filteredfiles uuwl = Makefile 127 127 #supfiles uuwl = uuwl.init 128 128 -
projects/uuwl/pbconf/devel/uuwl/rpm/uuwl.spec
r1475 r1476 2 2 # $Id$ 3 3 # 4 # Used if virtual name != real name (perl, ...) - replace hash by percent in the below line 5 #define srcname PBPKG 4 %define major 0 5 %define libname %mklibname PBPKG %{major} 6 %define develname %mklibname PBPKG -d 6 7 7 8 Summary: PBSUMMARY 8 Summary(fr): french bla-bla 9 10 Name: PBREALPKG 9 Name: PBPKG 11 10 Version: PBVER 12 11 Release: PBTAGPBSUF … … 17 16 #PBPATCHSRC 18 17 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n) 19 #Requires: PBDEP 18 Requires: kernel-devel 20 19 21 20 %description 22 21 PBDESC 23 22 24 %description -l fr 25 french desc 23 %package -n %develname 24 Summary: Development files for %{name} 25 Provides: %{name}-devel 26 Requires: pkgconfig 27 Requires: %{libname} = %{version}-%{release} 28 29 %description -n %develname 30 This package contains libraries and header files for 31 developing applications that use %{name}. 32 33 %package -n %{libname} 34 Summary: Libraries for %{name} 35 36 %description -n %{libname} 37 The libraries for %{name}. 26 38 27 39 %prep 28 40 %setup -q 29 # Used if virtual name != real name (perl, ...)30 #%setup -q -n %{srcname}-%{version}31 #PBPATCHCMD32 41 33 42 %build 34 %configure43 #configure 35 44 make %{?_smp_mflags} 45 46 #check 47 #make check 36 48 37 49 %install … … 45 57 %defattr(-,root,root) 46 58 %doc ChangeLog 47 %doc INSTALL COPYING README AUTHORS NEWS 59 %doc LICENSE_LGPL-2.1 LICENSE_MIT AUTHORS 60 #INSTALL README 61 62 %files -n %{libname} 63 %defattr(-,root,root) 64 %doc ChangeLog 65 %doc LICENSE_LGPL-2.1 LICENSE_MIT AUTHORS 66 #%{_libdir}/*.so* 67 /usr/lib/*.so* 68 69 %files -n %{develname} 70 %defattr(-,root,root) 71 %doc ChangeLog 72 %doc LICENSE_LGPL-2.1 LICENSE_MIT AUTHORS 73 %{_includedir}/* 48 74 49 75 %changelog 50 76 PBLOG 51
Note:
See TracChangeset
for help on using the changeset viewer.