Changeset c3a99269 in rtems
- Timestamp:
- Oct 24, 2008, 1:48:31 PM (12 years ago)
- Branches:
- 4.8
- Children:
- b37ab14
- Parents:
- d6b8d5c
- Location:
- contrib/repo-conf
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/repo-conf/ChangeLog
rd6b8d5c rc3a99269 1 2008-10-01 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * aclocal/version.m4: Bump API to 4.10. 4 1 5 2007-02-18 Ralf Corsépius <ralf.corsepius@rtems.org> 2 6 -
contrib/repo-conf/Makefile.am
rd6b8d5c rc3a99269 12 12 sed -e 's,[@]RTEMS_API[@],@RTEMS_API@,' \ 13 13 -e 's,[@]OS_SUBDIR[@],@OS_SUBDIR@,' \ 14 -e 's,[@]OS_NAME[@],@OS_NAME@,' \ 14 15 < $(srcdir)/apt/sources.list.d/rtems.list.in \ 15 16 > apt/sources.list.d/rtems-@RTEMS_API@.list … … 27 28 -e 's,[@]RTEMS_API[@],@RTEMS_API@,' \ 28 29 -e 's,[@]OS_SUBDIR[@],@OS_SUBDIR@,' \ 30 -e 's,[@]OS_NAME[@],@OS_NAME@,' \ 29 31 < $(srcdir)/yum.repos.d/rtems.repo.in \ 30 32 > yum.repos.d/rtems-@RTEMS_API@.repo -
contrib/repo-conf/apt/sources.list.d/rtems.list.in
rd6b8d5c rc3a99269 9 9 ## uncomment the line below if you want to access the *-debuginfo*.rpms 10 10 # repomd-debug ftp://ftp.rtems.org/pub/rtems/linux/@RTEMS_API@ @OS_SUBDIR@$(VERSION)/$(ARCH)/debug 11 12 13 ## rtems/testing repos14 15 # repomd ftp://ftp.rtems.org/pub/rtems/linux/testing/@RTEMS_API@ @OS_SUBDIR@$(VERSION)/$(ARCH)16 17 ## uncomment the line below if you want to access the *.src.rpms18 # repomd-src ftp://ftp.rtems.org/pub/rtems/linux/testing/@RTEMS_API@ @OS_SUBDIR@$(VERSION)/SRPMS19 20 ## uncomment the line below if you want to access the *-debuginfo*.rpms21 # repomd-debug ftp://ftp.rtems.org/pub/rtems/linux/testing/@RTEMS_API@ @OS_SUBDIR@$(VERSION)/$(ARCH)/debug -
contrib/repo-conf/configure.ac
rd6b8d5c rc3a99269 3 3 4 4 AC_PREREQ(2.61) 5 AC_INIT([rtems-]_RTEMS_API[-repo-conf],[0.1 0],[http://www.rtems.org/bugzilla],5 AC_INIT([rtems-]_RTEMS_API[-repo-conf],[0.12],[http://www.rtems.org/bugzilla], 6 6 [rtems-]_RTEMS_API[-repo-conf]) 7 7 RTEMS_VERSIONING … … 10 10 AC_SUBST([RTEMS_API],[_RTEMS_API]) 11 11 AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip 1.10]) 12 12 13 AC_ARG_ENABLE(os_subdir,AS_HELP_STRING( 13 14 [--enable-os-subdir=<dir> ... os subdirectory]), … … 15 16 [os_subdir="fedora/"]) 16 17 AC_SUBST([OS_SUBDIR],[$os_subdir]) 18 19 case "$os_subdir" in 20 fedora/ ) os_name="Fedora";; 21 redhat/el ) os_name="CentOS";; 22 suse/ ) os_name="openSUSE";; 23 *) AC_MSG_ERROR([Invalid os-name]) 24 ;; 25 esac 26 AC_SUBST([OS_NAME],[$os_name]) 27 17 28 AC_CONFIG_FILES([Makefile]) 18 29 AC_OUTPUT -
contrib/repo-conf/yum.repos.d/rtems.repo.in
rd6b8d5c rc3a99269 1 1 [rtems-@RTEMS_API@] 2 name=RTEMS $releasever - $basearch - RTEMS2 name=RTEMS-@RTEMS_API@ for @OS_NAME@ $releasever - $basearch 3 3 baseurl= 4 4 http://www.rtems.org/ftp/pub/rtems/linux/@RTEMS_API@/@OS_SUBDIR@$releasever/$basearch … … 11 11 12 12 [rtems-@RTEMS_API@-source] 13 name= Fedora $releasever - $basearch - RTEMS sources13 name=RTEMS-@RTEMS_API@ for @OS_NAME@ $releasever - $basearch - source 14 14 baseurl= 15 15 http://www.rtems.org/ftp/pub/rtems/linux/@RTEMS_API@/@OS_SUBDIR@$releasever/SRPMS … … 21 21 file://@sysconfdir@/pki/rpm-gpg/gpg-pubkey-eac29b6f-3fe1f458 22 22 23 [rtems-@RTEMS_API@-debug ]24 name= Fedora $releasever - $basearch - RTEMS sources23 [rtems-@RTEMS_API@-debuginfo] 24 name=RTEMS-@RTEMS_API@ for @OS_NAME@ $releasever - $basearch - debuginfo 25 25 baseurl= 26 26 http://www.rtems.org/ftp/pub/rtems/linux/@RTEMS_API@/@OS_SUBDIR@$releasever/$basearch/debug
Note: See TracChangeset
for help on using the changeset viewer.